\define extract(tiddler,start:"""ç-noStart-ç""",end:"""ç-noEnd-ç""",prefix:"""""",suffix:"""""",
limit:"yes",class:"", rmQuotes:'no' mode:"block")
<$vars start="""$start$""" end="""$end$""" prefix="""$prefix$""" suffix="""$suffix$""" startorend="""$start$""">
<$set name="tid" filter="[field:title[$tiddler$]]" value="""$tiddler$""" emptyValue=<<currentTiddler>>>
<$list variable="fulltext" filter="""[<tid>get[text]regexp<startorend>addprefix[ç-noStart-ç]addsuffix[ç-noEnd-ç]]""" emptyValue="ç-noStart-ç $start$ error: no text field $end$ ç-noEnd-ç">
<$list variable="beforeStart" emptyMessage="filter error"
filter="""[<fulltext>splitbefore<start>]""">
<$list variable="firstRest" filter="[<fulltext>removeprefix<beforeStart>]">
<span class="te-summary $class$">
<$macrocall $name="extractSnippet" rest=<<firstRest>> start=<<start>> end=<<end>> prefix=<<prefix>> suffix=<<suffix>> limit="$limit$" rmQuotes='$rmQuotes$' mode="$mode$"/>
</span>
</$list>
</$list>
</$list>
</$set>
</$vars>
\end
\define extractSnippet(rest,start,end,prefix,suffix,limit,rmQuotes,mode)
<$vars text="""$rest$""" start="""$start$""" end="""$end$""" prefix="""$prefix$""" suffix="""$suffix$""" startorend="""$start$""" linkstart="""$linkstart$""" linkend="""$linkend$""">
<$list variable="snippet" filter="""[<text>splitbefore<end>removesuffix<end>]""" emptyValue="summary empty">
<$set name="mymode" filter="""[[$mode$]removeprefix[block]]""" value="blockOutput" emptyValue="inlineOutput">
<$set name="snipify" filter="""[[$mode$]removeprefix[link]]""" value="linkedOutput" emptyValue=<<mymode>>>
<$set name="extracted" filter="""[[$rmQuotes$]removeprefix[no]]""" value=<<noQuotes>> emptyValue=<<removeQuotes>>>
<$macrocall $name=<<snipify>>/>
</$set>
</$set>
</$set>
<$list variable="newRest" filter="""[<text>removeprefix<snippet>removeprefix<end>]"""
emptyValue="never empty">
<$set name="unlimited" filter="""[[$limit$]removeprefix[y]]""" emptyValue="checkRest">
<$macrocall $name=<<unlimited>> rest=<<newRest>> start=<<start>> end=<<end>> prefix=<<prefix>> suffix=<<suffix>> limit="$limit$" rmQuotes='$rmQuotes$' mode="$mode$"/>
</$set>
</$list>
</$list>
</$vars>
\end
\define linkedOutput()
$(prefix)$[[$(extracted)$]]$(suffix)$
\end
\define inlineOutput()
$(prefix)$$(extracted)$$(suffix)$
\end
\define blockOutput()
<span>
$(prefix)$$(extracted)$$(suffix)$
</span>
\end
\define checkRest(rest,start,end,prefix,suffix,limit,rmQuotes,mode,linkstart,linkend)
<$set name="text" value="""$rest$""">
<$list variable="beforeStart" filter="""[<text>splitbefore[$start$]]""">
<$set name="proceed" filter="""[<beforeStart>removesuffix[$start$]] +[addsuffix[ç-TestPassed-ç]]"""
emptyValue="es">
<$set name="proceedto" filter="""[<proceed>removesuffix[ç-TestPassed-ç]regexp[es]]""" emptyValue="extractSnippet">
<$list variable="newRest" filter="""[<text>removeprefix<beforeStart>]""">
<$macrocall $name=<<proceedto>> rest=<<newRest>> start="""$start$""" end="""$end$""" prefix="""$prefix$""" suffix="""$suffix$""" limit="$limit$" rmQuotes='$rmQuotes$' mode="$mode$" linkstart=<<linkstart>> linkend=<<linkend>>/>
</$list>
</$set>
</$set>
</$list>
</$set>
\end
\define es()
<span class='summaryend'></span>
\end
\define removeQuotes()
<$vars output=$(snippet)$>
<<output>>
</$vars>
\end
\define noQuotes()
$(snippet)$
\end
<!-- !! Extract Macro Documentation
* Version: 0.9.2
* parameters
** tiddler – if not provided, the current tiddler is used
** start and end – text-identifiers that sourround the snippet you want to extract
** prefix and suffix – text to attach to the result
** limit – defaults to "yes" and produces one result, collects all matches if set to "no"
** class – CSS class(es) to append to the surrounding span
** rmQuotes – defaults to 'no', removes surrounding quotes (") when set to "yes"
** mode – defaults to "block", set to "inline" to omit surrounding tags, set to "link" to get links in inline mode
!!! Advantages
* find content to extract based on common markup or comments
* handle wiki syntax where start and end are the same, e.g. `''` or `//`
* ''start or end can be omitted when extracting the beginning or to the end of the text''
* to collect several snippets from the same tiddler set limit to "no"
-->
<!-- !!! FAQ
; The output is something like " end:" – what can I do?
: This happens, when you try to extract from the tiddler, where the extract macro is called: the macro call contains the start marker. Solutions:
* if you are using a filter, exclude the calling tiddler using ![tiddler]
* transclude the macrocall from somewhere else, e.g. from a field in the tiddler
; The list widget produces results only for tiddlers without spaces in the title?
: Lists need to be constructed carefully according to the examples below. Macro calls from lists with the parameter `tiddler=<<tiddler>>` and similar work only for titles without spaces.
* see: http://tid.li/tw5/hacks.html#Tweeting for a working example
* or: http://tid.li/tw5/numbers.html
; Can I use start or end markers containing " (quotes)?
: This will not work – but you can remove surrounding quotes by setting rmQuotes to "yes".
-->
<!-- !!! Procedure – How it Works
* get the text field of the tiddler
** cut off everything before the first start tag, including start tag
* extract a snippet from the rest
** ''put texts in variables to avoid problems with square brackets''
** cut after end tag, remove end tag
** prepend prefix, output snippet, append the suffix
* check, if limit is "no", else exit via es()
** es() prints an empty span which can be used for design purposes
* check the rest
** cut off everything before start tag, including start tag and save in //beforeStart// (contains all text if no start tag is found)
** try to remove start tag from beforeStart, if found, add a confirmation suffix
*** no start tag? => exit via es()
** if a start tag exists, proceed with extracting
!!! Missing – Ideas for Improvement
* allow users to specify an empty-message
* support for some kinds of transclusion (e.g. from a tiddler’s own fields)
* Possible optimisations (low priority)
** limit to a defined number of loops
** limit to a defined number of chars (possible with length param from 5.1.14?) – this might not be useful as tags could get cut in pieces.
-->
{
"tiddlers": {
"$:/Acknowledgements": {
"title": "$:/Acknowledgements",
"text": "TiddlyWiki incorporates code from these fine OpenSource projects:\n\n* [[The Stanford Javascript Crypto Library|http://bitwiseshiftleft.github.io/sjcl/]]\n* [[The Jasmine JavaScript Test Framework|http://pivotal.github.io/jasmine/]]\n* [[Normalize.css by Nicolas Gallagher|http://necolas.github.io/normalize.css/]]\n\nAnd media from these projects:\n\n* World flag icons from [[Wikipedia|http://commons.wikimedia.org/wiki/Category:SVG_flags_by_country]]\n"
},
"$:/core/copyright.txt": {
"title": "$:/core/copyright.txt",
"type": "text/plain",
"text": "TiddlyWiki created by Jeremy Ruston, (jeremy [at] jermolene [dot] com)\n\nCopyright (c) 2004-2007, Jeremy Ruston\nCopyright (c) 2007-2018, UnaMesa Association\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 'AS IS'\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
},
"$:/core/icon": {
"title": "$:/core/icon",
"tags": "$:/tags/Image",
"text": "<svg width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\"><path d=\"M64 0l54.56 32v64L64 128 9.44 96V32L64 0zm21.127 95.408c-3.578-.103-5.15-.094-6.974-3.152l-1.42.042c-1.653-.075-.964-.04-2.067-.097-1.844-.07-1.548-1.86-1.873-2.8-.52-3.202.687-6.43.65-9.632-.014-1.14-1.593-5.17-2.157-6.61-1.768.34-3.546.406-5.34.497-4.134-.01-8.24-.527-12.317-1.183-.8 3.35-3.16 8.036-1.21 11.44 2.37 3.52 4.03 4.495 6.61 4.707 2.572.212 3.16 3.18 2.53 4.242-.55.73-1.52.864-2.346 1.04l-1.65.08c-1.296-.046-2.455-.404-3.61-.955-1.93-1.097-3.925-3.383-5.406-5.024.345.658.55 1.938.24 2.53-.878 1.27-4.665 1.26-6.4.47-1.97-.89-6.73-7.162-7.468-11.86 1.96-3.78 4.812-7.07 6.255-11.186-3.146-2.05-4.83-5.384-4.61-9.16l.08-.44c-3.097.59-1.49.37-4.82.628-10.608-.032-19.935-7.37-14.68-18.774.34-.673.664-1.287 1.243-.994.466.237.4 1.18.166 2.227-3.005 13.627 11.67 13.732 20.69 11.21.89-.25 2.67-1.936 3.905-2.495 2.016-.91 4.205-1.282 6.376-1.55 5.4-.63 11.893 2.276 15.19 2.37 3.3.096 7.99-.805 10.87-.615 2.09.098 4.143.483 6.16 1.03 1.306-6.49 1.4-11.27 4.492-12.38 1.814.293 3.213 2.818 4.25 4.167 2.112-.086 4.12.46 6.115 1.066 3.61-.522 6.642-2.593 9.833-4.203-3.234 2.69-3.673 7.075-3.303 11.127.138 2.103-.444 4.386-1.164 6.54-1.348 3.507-3.95 7.204-6.97 7.014-1.14-.036-1.805-.695-2.653-1.4-.164 1.427-.81 2.7-1.434 3.96-1.44 2.797-5.203 4.03-8.687 7.016-3.484 2.985 1.114 13.65 2.23 15.594 1.114 1.94 4.226 2.652 3.02 4.406-.37.58-.936.785-1.54 1.01l-.82.11zm-40.097-8.85l.553.14c.694-.27 2.09.15 2.83.353-1.363-1.31-3.417-3.24-4.897-4.46-.485-1.47-.278-2.96-.174-4.46l.02-.123c-.582 1.205-1.322 2.376-1.72 3.645-.465 1.71 2.07 3.557 3.052 4.615l.336.3z\" fill-rule=\"evenodd\"/></svg>"
},
"$:/core/images/add-comment": {
"title": "$:/core/images/add-comment",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-add-comment tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\"><path d=\"M56 56H36a8 8 0 1 0 0 16h20v20a8 8 0 1 0 16 0V72h20a8 8 0 1 0 0-16H72V36a8 8 0 1 0-16 0v20zm-12.595 58.362c-6.683 7.659-20.297 12.903-36.006 12.903-2.196 0-4.35-.102-6.451-.3 9.652-3.836 17.356-12.24 21.01-22.874C8.516 94.28 0 79.734 0 63.5 0 33.953 28.206 10 63 10s63 23.953 63 53.5S97.794 117 63 117c-6.841 0-13.428-.926-19.595-2.638z\" fill-rule=\"evenodd\"/></svg>"
},
"$:/core/images/advanced-search-button": {
"title": "$:/core/images/advanced-search-button",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-advanced-search-button tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M74.5651535,87.9848361 C66.9581537,93.0488876 57.8237115,96 48,96 C21.490332,96 0,74.509668 0,48 C0,21.490332 21.490332,0 48,0 C74.509668,0 96,21.490332 96,48 C96,57.8541369 93.0305793,67.0147285 87.9377231,74.6357895 L122.284919,108.982985 C125.978897,112.676963 125.973757,118.65366 122.284271,122.343146 C118.593975,126.033442 112.613238,126.032921 108.92411,122.343793 L74.5651535,87.9848361 Z M48,80 C65.673112,80 80,65.673112 80,48 C80,30.326888 65.673112,16 48,16 C30.326888,16 16,30.326888 16,48 C16,65.673112 30.326888,80 48,80 Z\"></path>\n <circle cx=\"48\" cy=\"48\" r=\"8\"></circle>\n <circle cx=\"28\" cy=\"48\" r=\"8\"></circle>\n <circle cx=\"68\" cy=\"48\" r=\"8\"></circle>\n </g>\n</svg>"
},
"$:/core/images/auto-height": {
"title": "$:/core/images/auto-height",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-auto-height tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <path d=\"M67.9867828,114.356363 L67.9579626,99.8785426 C67.9550688,98.4248183 67.1636987,97.087107 65.8909901,96.3845863 L49.9251455,87.5716209 L47.992126,95.0735397 L79.8995411,95.0735397 C84.1215894,95.0735397 85.4638131,89.3810359 81.686497,87.4948823 L49.7971476,71.5713518 L48.0101917,79.1500092 L79.992126,79.1500092 C84.2093753,79.1500092 85.5558421,73.4676733 81.7869993,71.5753162 L49.805065,55.517008 L48.0101916,63.0917009 L79.9921259,63.0917015 C84.2035118,63.0917016 85.5551434,57.4217887 81.7966702,55.5218807 L65.7625147,47.4166161 L67.9579705,50.9864368 L67.9579705,35.6148245 L77.1715737,44.8284272 C78.7336709,46.3905243 81.2663308,46.3905243 82.8284279,44.8284271 C84.390525,43.2663299 84.390525,40.7336699 82.8284278,39.1715728 L66.8284271,23.1715728 C65.2663299,21.6094757 62.73367,21.6094757 61.1715729,23.1715729 L45.1715729,39.1715729 C43.6094757,40.73367 43.6094757,43.26633 45.1715729,44.8284271 C46.73367,46.3905243 49.26633,46.3905243 50.8284271,44.8284271 L59.9579705,35.6988837 L59.9579705,50.9864368 C59.9579705,52.495201 60.806922,53.8755997 62.1534263,54.5562576 L78.1875818,62.6615223 L79.9921261,55.0917015 L48.0101917,55.0917009 C43.7929424,55.0917008 42.4464755,60.7740368 46.2153183,62.6663939 L78.1972526,78.7247021 L79.992126,71.1500092 L48.0101917,71.1500092 C43.7881433,71.1500092 42.4459197,76.842513 46.2232358,78.7286665 L78.1125852,94.6521971 L79.8995411,87.0735397 L47.992126,87.0735397 C43.8588276,87.0735397 42.4404876,92.5780219 46.0591064,94.5754586 L62.024951,103.388424 L59.9579785,99.8944677 L59.9867142,114.32986 L50.8284271,105.171573 C49.26633,103.609476 46.73367,103.609476 45.1715729,105.171573 C43.6094757,106.73367 43.6094757,109.26633 45.1715729,110.828427 L61.1715729,126.828427 C62.73367,128.390524 65.2663299,128.390524 66.8284271,126.828427 L82.8284278,110.828427 C84.390525,109.26633 84.390525,106.73367 82.8284279,105.171573 C81.2663308,103.609476 78.7336709,103.609476 77.1715737,105.171573 L67.9867828,114.356363 L67.9867828,114.356363 Z M16,20 L112,20 C114.209139,20 116,18.209139 116,16 C116,13.790861 114.209139,12 112,12 L16,12 C13.790861,12 12,13.790861 12,16 C12,18.209139 13.790861,20 16,20 L16,20 Z\"></path>\n</svg>"
},
"$:/core/images/blank": {
"title": "$:/core/images/blank",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-blank tc-image-button\" viewBox=\"0 0 128 128\" width=\"22pt\" height=\"22pt\"></svg>"
},
"$:/core/images/bold": {
"title": "$:/core/images/bold",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-bold tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M41.1456583,51.8095238 L41.1456583,21.8711485 L67.4985994,21.8711485 C70.0084159,21.8711485 72.4285598,22.0802967 74.7591036,22.4985994 C77.0896475,22.9169022 79.1512515,23.6638602 80.9439776,24.7394958 C82.7367036,25.8151314 84.170863,27.3090474 85.2464986,29.2212885 C86.3221342,31.1335296 86.859944,33.5835518 86.859944,36.5714286 C86.859944,41.9496067 85.2465147,45.8337882 82.0196078,48.2240896 C78.792701,50.614391 74.6694929,51.8095238 69.6498599,51.8095238 L41.1456583,51.8095238 Z M13,0 L13,128 L75.0280112,128 C80.7647346,128 86.3519803,127.28292 91.789916,125.848739 C97.2278517,124.414559 102.068139,122.203563 106.310924,119.215686 C110.553709,116.22781 113.929959,112.373506 116.439776,107.652661 C118.949592,102.931816 120.204482,97.3445701 120.204482,90.8907563 C120.204482,82.8832466 118.262391,76.0411115 114.378151,70.3641457 C110.493911,64.6871798 104.607883,60.7133634 96.719888,58.442577 C102.456611,55.6937304 106.788968,52.1680887 109.717087,47.8655462 C112.645206,43.5630037 114.109244,38.1849062 114.109244,31.7310924 C114.109244,25.7553389 113.123259,20.7357813 111.151261,16.6722689 C109.179262,12.6087565 106.400578,9.35201972 102.815126,6.90196078 C99.2296739,4.45190185 94.927196,2.68908101 89.907563,1.61344538 C84.8879301,0.537809748 79.3305627,0 73.2352941,0 L13,0 Z M41.1456583,106.128852 L41.1456583,70.9915966 L71.8011204,70.9915966 C77.896389,70.9915966 82.7964334,72.3958776 86.5014006,75.2044818 C90.2063677,78.0130859 92.0588235,82.7039821 92.0588235,89.2773109 C92.0588235,92.6237329 91.4911355,95.3725383 90.3557423,97.5238095 C89.2203491,99.6750808 87.6965548,101.378145 85.7843137,102.633053 C83.8720726,103.887961 81.661077,104.784311 79.1512605,105.322129 C76.641444,105.859947 74.0121519,106.128852 71.2633053,106.128852 L41.1456583,106.128852 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/cancel-button": {
"title": "$:/core/images/cancel-button",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-cancel-button tc-image-button\" viewBox=\"0 0 128 128\" width=\"22pt\" height=\"22pt\">\n\t<g fill-rule=\"evenodd\">\n\t <path d=\"M64,76.3137085 L47.0294734,93.2842351 C43.9038742,96.4098343 38.8399231,96.4084656 35.7157288,93.2842712 C32.5978915,90.166434 32.5915506,85.0947409 35.7157649,81.9705266 L52.6862915,65 L35.7157649,48.0294734 C32.5901657,44.9038742 32.5915344,39.8399231 35.7157288,36.7157288 C38.833566,33.5978915 43.9052591,33.5915506 47.0294734,36.7157649 L64,53.6862915 L80.9705266,36.7157649 C84.0961258,33.5901657 89.1600769,33.5915344 92.2842712,36.7157288 C95.4021085,39.833566 95.4084494,44.9052591 92.2842351,48.0294734 L75.3137085,65 L92.2842351,81.9705266 C95.4098343,85.0961258 95.4084656,90.1600769 92.2842712,93.2842712 C89.166434,96.4021085 84.0947409,96.4084494 80.9705266,93.2842351 L64,76.3137085 Z M64,129 C99.346224,129 128,100.346224 128,65 C128,29.653776 99.346224,1 64,1 C28.653776,1 1.13686838e-13,29.653776 1.13686838e-13,65 C1.13686838e-13,100.346224 28.653776,129 64,129 Z M64,113 C90.509668,113 112,91.509668 112,65 C112,38.490332 90.509668,17 64,17 C37.490332,17 16,38.490332 16,65 C16,91.509668 37.490332,113 64,113 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/chevron-down": {
"title": "$:/core/images/chevron-down",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-chevron-down tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n\t<g fill-rule=\"evenodd\" transform=\"translate(64.000000, 40.500000) rotate(-270.000000) translate(-64.000000, -40.500000) translate(-22.500000, -26.500000)\">\n <path d=\"M112.743107,112.12741 C111.310627,113.561013 109.331747,114.449239 107.145951,114.449239 L27.9777917,114.449239 C23.6126002,114.449239 20.0618714,110.904826 20.0618714,106.532572 C20.0618714,102.169214 23.6059497,98.6159054 27.9777917,98.6159054 L99.2285381,98.6159054 L99.2285381,27.365159 C99.2285381,22.9999675 102.77295,19.4492387 107.145205,19.4492387 C111.508562,19.4492387 115.061871,22.993317 115.061871,27.365159 L115.061871,106.533318 C115.061871,108.71579 114.175869,110.694669 112.743378,112.127981 Z\" transform=\"translate(67.561871, 66.949239) rotate(-45.000000) translate(-67.561871, -66.949239) \"></path>\n <path d=\"M151.35638,112.12741 C149.923899,113.561013 147.94502,114.449239 145.759224,114.449239 L66.5910645,114.449239 C62.225873,114.449239 58.6751442,110.904826 58.6751442,106.532572 C58.6751442,102.169214 62.2192225,98.6159054 66.5910645,98.6159054 L137.841811,98.6159054 L137.841811,27.365159 C137.841811,22.9999675 141.386223,19.4492387 145.758478,19.4492387 C150.121835,19.4492387 153.675144,22.993317 153.675144,27.365159 L153.675144,106.533318 C153.675144,108.71579 152.789142,110.694669 151.356651,112.127981 Z\" transform=\"translate(106.175144, 66.949239) rotate(-45.000000) translate(-106.175144, -66.949239) \"></path>\n\t</g>\n</svg>"
},
"$:/core/images/chevron-left": {
"title": "$:/core/images/chevron-left",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-chevron-left tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\" version=\"1.1\">\n <g fill-rule=\"evenodd\" transform=\"translate(92.500000, 64.000000) rotate(-180.000000) translate(-92.500000, -64.000000) translate(6.000000, -3.000000)\">\n <path d=\"M112.743107,112.12741 C111.310627,113.561013 109.331747,114.449239 107.145951,114.449239 L27.9777917,114.449239 C23.6126002,114.449239 20.0618714,110.904826 20.0618714,106.532572 C20.0618714,102.169214 23.6059497,98.6159054 27.9777917,98.6159054 L99.2285381,98.6159054 L99.2285381,27.365159 C99.2285381,22.9999675 102.77295,19.4492387 107.145205,19.4492387 C111.508562,19.4492387 115.061871,22.993317 115.061871,27.365159 L115.061871,106.533318 C115.061871,108.71579 114.175869,110.694669 112.743378,112.127981 Z\" transform=\"translate(67.561871, 66.949239) rotate(-45.000000) translate(-67.561871, -66.949239) \"></path>\n <path d=\"M151.35638,112.12741 C149.923899,113.561013 147.94502,114.449239 145.759224,114.449239 L66.5910645,114.449239 C62.225873,114.449239 58.6751442,110.904826 58.6751442,106.532572 C58.6751442,102.169214 62.2192225,98.6159054 66.5910645,98.6159054 L137.841811,98.6159054 L137.841811,27.365159 C137.841811,22.9999675 141.386223,19.4492387 145.758478,19.4492387 C150.121835,19.4492387 153.675144,22.993317 153.675144,27.365159 L153.675144,106.533318 C153.675144,108.71579 152.789142,110.694669 151.356651,112.127981 Z\" transform=\"translate(106.175144, 66.949239) rotate(-45.000000) translate(-106.175144, -66.949239) \"></path>\n </g>\n</svg>"
},
"$:/core/images/chevron-right": {
"title": "$:/core/images/chevron-right",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-chevron-right tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\" transform=\"translate(-48.000000, -3.000000)\">\n <path d=\"M112.743107,112.12741 C111.310627,113.561013 109.331747,114.449239 107.145951,114.449239 L27.9777917,114.449239 C23.6126002,114.449239 20.0618714,110.904826 20.0618714,106.532572 C20.0618714,102.169214 23.6059497,98.6159054 27.9777917,98.6159054 L99.2285381,98.6159054 L99.2285381,27.365159 C99.2285381,22.9999675 102.77295,19.4492387 107.145205,19.4492387 C111.508562,19.4492387 115.061871,22.993317 115.061871,27.365159 L115.061871,106.533318 C115.061871,108.71579 114.175869,110.694669 112.743378,112.127981 Z\" transform=\"translate(67.561871, 66.949239) rotate(-45.000000) translate(-67.561871, -66.949239) \"></path>\n <path d=\"M151.35638,112.12741 C149.923899,113.561013 147.94502,114.449239 145.759224,114.449239 L66.5910645,114.449239 C62.225873,114.449239 58.6751442,110.904826 58.6751442,106.532572 C58.6751442,102.169214 62.2192225,98.6159054 66.5910645,98.6159054 L137.841811,98.6159054 L137.841811,27.365159 C137.841811,22.9999675 141.386223,19.4492387 145.758478,19.4492387 C150.121835,19.4492387 153.675144,22.993317 153.675144,27.365159 L153.675144,106.533318 C153.675144,108.71579 152.789142,110.694669 151.356651,112.127981 Z\" transform=\"translate(106.175144, 66.949239) rotate(-45.000000) translate(-106.175144, -66.949239) \"></path>\n </g>\n</svg>"
},
"$:/core/images/chevron-up": {
"title": "$:/core/images/chevron-up",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-chevron-up tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n\t<g fill-rule=\"evenodd\" transform=\"translate(64.000000, 89.500000) rotate(-90.000000) translate(-64.000000, -89.500000) translate(-22.500000, 22.500000)\">\n <path d=\"M112.743107,112.12741 C111.310627,113.561013 109.331747,114.449239 107.145951,114.449239 L27.9777917,114.449239 C23.6126002,114.449239 20.0618714,110.904826 20.0618714,106.532572 C20.0618714,102.169214 23.6059497,98.6159054 27.9777917,98.6159054 L99.2285381,98.6159054 L99.2285381,27.365159 C99.2285381,22.9999675 102.77295,19.4492387 107.145205,19.4492387 C111.508562,19.4492387 115.061871,22.993317 115.061871,27.365159 L115.061871,106.533318 C115.061871,108.71579 114.175869,110.694669 112.743378,112.127981 Z\" transform=\"translate(67.561871, 66.949239) rotate(-45.000000) translate(-67.561871, -66.949239) \"></path>\n <path d=\"M151.35638,112.12741 C149.923899,113.561013 147.94502,114.449239 145.759224,114.449239 L66.5910645,114.449239 C62.225873,114.449239 58.6751442,110.904826 58.6751442,106.532572 C58.6751442,102.169214 62.2192225,98.6159054 66.5910645,98.6159054 L137.841811,98.6159054 L137.841811,27.365159 C137.841811,22.9999675 141.386223,19.4492387 145.758478,19.4492387 C150.121835,19.4492387 153.675144,22.993317 153.675144,27.365159 L153.675144,106.533318 C153.675144,108.71579 152.789142,110.694669 151.356651,112.127981 Z\" transform=\"translate(106.175144, 66.949239) rotate(-45.000000) translate(-106.175144, -66.949239) \"></path>\n\t</g>\n</svg>"
},
"$:/core/images/clone-button": {
"title": "$:/core/images/clone-button",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-clone-button tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M32.2650915,96 L32.2650915,120.002359 C32.2650915,124.419334 35.8432884,128 40.2627323,128 L120.002359,128 C124.419334,128 128,124.421803 128,120.002359 L128,40.2627323 C128,35.8457573 124.421803,32.2650915 120.002359,32.2650915 L96,32.2650915 L96,48 L108.858899,48 C110.519357,48 111.853018,49.3405131 111.853018,50.9941198 L111.853018,108.858899 C111.853018,110.519357 110.512505,111.853018 108.858899,111.853018 L50.9941198,111.853018 C49.333661,111.853018 48,110.512505 48,108.858899 L48,96 L32.2650915,96 Z\"></path>\n <path d=\"M40,56 L32.0070969,56 C27.5881712,56 24,52.418278 24,48 C24,43.5907123 27.5848994,40 32.0070969,40 L40,40 L40,32.0070969 C40,27.5881712 43.581722,24 48,24 C52.4092877,24 56,27.5848994 56,32.0070969 L56,40 L63.9929031,40 C68.4118288,40 72,43.581722 72,48 C72,52.4092877 68.4151006,56 63.9929031,56 L56,56 L56,63.9929031 C56,68.4118288 52.418278,72 48,72 C43.5907123,72 40,68.4151006 40,63.9929031 L40,56 Z M7.9992458,0 C3.58138434,0 0,3.5881049 0,7.9992458 L0,88.0007542 C0,92.4186157 3.5881049,96 7.9992458,96 L88.0007542,96 C92.4186157,96 96,92.4118951 96,88.0007542 L96,7.9992458 C96,3.58138434 92.4118951,0 88.0007542,0 L7.9992458,0 Z M19.0010118,16 C17.3435988,16 16,17.336731 16,19.0010118 L16,76.9989882 C16,78.6564012 17.336731,80 19.0010118,80 L76.9989882,80 C78.6564012,80 80,78.663269 80,76.9989882 L80,19.0010118 C80,17.3435988 78.663269,16 76.9989882,16 L19.0010118,16 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/close-all-button": {
"title": "$:/core/images/close-all-button",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-close-all-button tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\" transform=\"translate(-23.000000, -23.000000)\">\n <path d=\"M43,131 L22.9976794,131 C18.5827987,131 15,127.418278 15,123 C15,118.590712 18.5806831,115 22.9976794,115 L43,115 L43,94.9976794 C43,90.5827987 46.581722,87 51,87 C55.4092877,87 59,90.5806831 59,94.9976794 L59,115 L79.0023206,115 C83.4172013,115 87,118.581722 87,123 C87,127.409288 83.4193169,131 79.0023206,131 L59,131 L59,151.002321 C59,155.417201 55.418278,159 51,159 C46.5907123,159 43,155.419317 43,151.002321 L43,131 Z\" transform=\"translate(51.000000, 123.000000) rotate(-45.000000) translate(-51.000000, -123.000000) \"></path>\n <path d=\"M43,59 L22.9976794,59 C18.5827987,59 15,55.418278 15,51 C15,46.5907123 18.5806831,43 22.9976794,43 L43,43 L43,22.9976794 C43,18.5827987 46.581722,15 51,15 C55.4092877,15 59,18.5806831 59,22.9976794 L59,43 L79.0023206,43 C83.4172013,43 87,46.581722 87,51 C87,55.4092877 83.4193169,59 79.0023206,59 L59,59 L59,79.0023206 C59,83.4172013 55.418278,87 51,87 C46.5907123,87 43,83.4193169 43,79.0023206 L43,59 Z\" transform=\"translate(51.000000, 51.000000) rotate(-45.000000) translate(-51.000000, -51.000000) \"></path>\n <path d=\"M115,59 L94.9976794,59 C90.5827987,59 87,55.418278 87,51 C87,46.5907123 90.5806831,43 94.9976794,43 L115,43 L115,22.9976794 C115,18.5827987 118.581722,15 123,15 C127.409288,15 131,18.5806831 131,22.9976794 L131,43 L151.002321,43 C155.417201,43 159,46.581722 159,51 C159,55.4092877 155.419317,59 151.002321,59 L131,59 L131,79.0023206 C131,83.4172013 127.418278,87 123,87 C118.590712,87 115,83.4193169 115,79.0023206 L115,59 Z\" transform=\"translate(123.000000, 51.000000) rotate(-45.000000) translate(-123.000000, -51.000000) \"></path>\n <path d=\"M115,131 L94.9976794,131 C90.5827987,131 87,127.418278 87,123 C87,118.590712 90.5806831,115 94.9976794,115 L115,115 L115,94.9976794 C115,90.5827987 118.581722,87 123,87 C127.409288,87 131,90.5806831 131,94.9976794 L131,115 L151.002321,115 C155.417201,115 159,118.581722 159,123 C159,127.409288 155.419317,131 151.002321,131 L131,131 L131,151.002321 C131,155.417201 127.418278,159 123,159 C118.590712,159 115,155.419317 115,151.002321 L115,131 Z\" transform=\"translate(123.000000, 123.000000) rotate(-45.000000) translate(-123.000000, -123.000000) \"></path>\n </g>\n</svg>"
},
"$:/core/images/close-button": {
"title": "$:/core/images/close-button",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-close-button tc-image-button\" viewBox=\"0 0 128 128\" width=\"22pt\" height=\"22pt\">\n <g fill-rule=\"evenodd\">\n <path d=\"M65.0864256,75.4091629 L14.9727349,125.522854 C11.8515951,128.643993 6.78104858,128.64922 3.65685425,125.525026 C0.539017023,122.407189 0.5336324,117.334539 3.65902635,114.209145 L53.7727171,64.0954544 L3.65902635,13.9817637 C0.537886594,10.8606239 0.532659916,5.79007744 3.65685425,2.6658831 C6.77469148,-0.451954124 11.8473409,-0.457338747 14.9727349,2.66805521 L65.0864256,52.7817459 L115.200116,2.66805521 C118.321256,-0.453084553 123.391803,-0.458311231 126.515997,2.6658831 C129.633834,5.78372033 129.639219,10.8563698 126.513825,13.9817637 L76.4001341,64.0954544 L126.513825,114.209145 C129.634965,117.330285 129.640191,122.400831 126.515997,125.525026 C123.39816,128.642863 118.32551,128.648248 115.200116,125.522854 L65.0864256,75.4091629 L65.0864256,75.4091629 Z\"></path>\n </g>\n</svg>\n"
},
"$:/core/images/close-others-button": {
"title": "$:/core/images/close-others-button",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-close-others-button tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M64,128 C99.346224,128 128,99.346224 128,64 C128,28.653776 99.346224,0 64,0 C28.653776,0 0,28.653776 0,64 C0,99.346224 28.653776,128 64,128 Z M64,112 C90.509668,112 112,90.509668 112,64 C112,37.490332 90.509668,16 64,16 C37.490332,16 16,37.490332 16,64 C16,90.509668 37.490332,112 64,112 Z M64,96 C81.673112,96 96,81.673112 96,64 C96,46.326888 81.673112,32 64,32 C46.326888,32 32,46.326888 32,64 C32,81.673112 46.326888,96 64,96 Z M64,80 C72.836556,80 80,72.836556 80,64 C80,55.163444 72.836556,48 64,48 C55.163444,48 48,55.163444 48,64 C48,72.836556 55.163444,80 64,80 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/copy-clipboard": {
"title": "$:/core/images/copy-clipboard",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-copy-clipboard tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n\t<g fill-rule=\"evenodd\">\n\t\t<rect x=\"40\" y=\"40\" width=\"33\" height=\"8\" rx=\"4\"></rect>\n\t\t<rect x=\"40\" y=\"82\" width=\"17\" height=\"8\" rx=\"4\"></rect>\n\t\t<rect x=\"40\" y=\"54\" width=\"17\" height=\"8\" rx=\"4\"></rect>\n\t\t<rect x=\"40\" y=\"96\" width=\"33\" height=\"8\" rx=\"4\"></rect>\n\t\t<rect x=\"40\" y=\"68\" width=\"12\" height=\"8\" rx=\"4\"></rect>\n\t\t<path d=\"M40,16 L23.9992458,16 C19.5813843,16 16,19.5907123 16,24 C16,24.0016363 16.0000005,24.0032725 16.0000015,24.0049086 C16.0000005,24.0065441 16,24.0081803 16,24.0098166 L16,119.990183 C16,119.99182 16.0000005,119.993456 16.0000015,119.995092 C16.0000005,119.996727 16,119.998364 16,120 C16,124.409288 19.5813843,128 23.9992458,128 L104.000754,128 C106.205061,128 108.203844,127.105595 109.652065,125.659342 C111.102424,124.21251 112,122.214511 112,120.007595 L112,103.992405 C112,99.5776607 108.418278,96 104,96 C99.5907123,96 96,99.5783218 96,103.992405 L96,112 L32,112 L32,32 L96,32 L96,40.0075946 C96,44.4223393 99.581722,48 104,48 C108.409288,48 112,44.4216782 112,40.0075946 L112,23.9924054 C112,21.7851587 111.104671,19.7871591 109.657101,18.3409203 C108.203844,16.8944047 106.205061,16 104.000754,16 L88,16 C88,11.5907123 84.4151006,8 79.9929031,8 L48.0070969,8 C43.5881712,8 40,11.581722 40,16 Z M44,14.9958262 C44,12.7889923 45.7964248,11 48.0000255,11 L79.9999745,11 C82.2091276,11 84,12.7965212 84,14.9958262 L84,19.0041738 C84,21.2110077 82.2035752,23 79.9999745,23 L48.0000255,23 C45.7908724,23 44,21.2034788 44,19.0041738 L44,14.9958262 Z\"></path>\n\t\t<rect x=\"62\" y=\"64\" width=\"66\" height=\"16\" rx=\"8\"></rect>\n\t\t<path d=\"M60.6568542,85.6568542 L76.6568542,69.6568543 L65.3431458,69.6568542 L81.3431458,85.6568542 C84.4673401,88.7810486 89.5326599,88.7810486 92.6568542,85.6568542 C95.7810486,82.5326599 95.7810486,77.4673401 92.6568542,74.3431458 L76.6568542,58.3431458 C73.5326599,55.2189514 68.4673401,55.2189514 65.3431458,58.3431457 L49.3431458,74.3431457 C46.2189514,77.4673401 46.2189514,82.5326599 49.3431457,85.6568542 C52.4673401,88.7810486 57.5326599,88.7810486 60.6568542,85.6568542 L60.6568542,85.6568542 Z\" transform=\"translate(71.000000, 72.000000) rotate(-90.000000) translate(-71.000000, -72.000000) \"></path>\n\t</g>\n</svg>"
},
"$:/core/images/delete-button": {
"title": "$:/core/images/delete-button",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-delete-button tc-image-button\" viewBox=\"0 0 128 128\" width=\"22pt\" height=\"22pt\">\n <g fill-rule=\"evenodd\" transform=\"translate(12.000000, 0.000000)\">\n <rect x=\"0\" y=\"11\" width=\"105\" height=\"16\" rx=\"8\"></rect>\n <rect x=\"28\" y=\"0\" width=\"48\" height=\"16\" rx=\"8\"></rect>\n <rect x=\"8\" y=\"16\" width=\"16\" height=\"112\" rx=\"8\"></rect>\n <rect x=\"8\" y=\"112\" width=\"88\" height=\"16\" rx=\"8\"></rect>\n <rect x=\"80\" y=\"16\" width=\"16\" height=\"112\" rx=\"8\"></rect>\n <rect x=\"56\" y=\"16\" width=\"16\" height=\"112\" rx=\"8\"></rect>\n <rect x=\"32\" y=\"16\" width=\"16\" height=\"112\" rx=\"8\"></rect>\n </g>\n</svg>"
},
"$:/core/images/done-button": {
"title": "$:/core/images/done-button",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-done-button tc-image-button\" viewBox=\"0 0 128 128\" width=\"22pt\" height=\"22pt\">\n <g fill-rule=\"evenodd\">\n <path d=\"M3.52445141,76.8322939 C2.07397484,75.3828178 1.17514421,73.3795385 1.17514421,71.1666288 L1.17514421,23.1836596 C1.17514421,18.7531992 4.75686621,15.1751442 9.17514421,15.1751442 C13.5844319,15.1751442 17.1751442,18.7606787 17.1751442,23.1836596 L17.1751442,63.1751442 L119.173716,63.1751442 C123.590457,63.1751442 127.175144,66.7568662 127.175144,71.1751442 C127.175144,75.5844319 123.592783,79.1751442 119.173716,79.1751442 L9.17657227,79.1751442 C6.96796403,79.1751442 4.9674142,78.279521 3.51911285,76.8315312 Z\" id=\"Rectangle-285\" transform=\"translate(64.175144, 47.175144) rotate(-45.000000) translate(-64.175144, -47.175144) \"></path>\n </g>\n</svg>"
},
"$:/core/images/down-arrow": {
"title": "$:/core/images/down-arrow",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-down-arrow tc-image-button\" viewBox=\"0 0 128 128\" width=\"22pt\" height=\"22pt\">\n <path d=\"M109.35638,81.3533152 C107.923899,82.7869182 105.94502,83.6751442 103.759224,83.6751442 L24.5910645,83.6751442 C20.225873,83.6751442 16.6751442,80.1307318 16.6751442,75.7584775 C16.6751442,71.3951199 20.2192225,67.8418109 24.5910645,67.8418109 L95.8418109,67.8418109 L95.8418109,-3.40893546 C95.8418109,-7.77412698 99.3862233,-11.3248558 103.758478,-11.3248558 C108.121835,-11.3248558 111.675144,-7.78077754 111.675144,-3.40893546 L111.675144,75.7592239 C111.675144,77.9416955 110.789142,79.9205745 109.356651,81.3538862 Z\" transform=\"translate(64.175144, 36.175144) rotate(45.000000) translate(-64.175144, -36.175144) \"></path>\n</svg>"
},
"$:/core/images/download-button": {
"title": "$:/core/images/download-button",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-download-button tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\"><g fill-rule=\"evenodd\"><path class=\"tc-image-download-button-ring\" d=\"M64,128 C99.346224,128 128,99.346224 128,64 C128,28.653776 99.346224,0 64,0 C28.653776,0 0,28.653776 0,64 C0,99.346224 28.653776,128 64,128 Z M64,112 C90.509668,112 112,90.509668 112,64 C112,37.490332 90.509668,16 64,16 C37.490332,16 16,37.490332 16,64 C16,90.509668 37.490332,112 64,112 Z\"/><path d=\"M34.3496823,66.4308767 L61.2415823,93.634668 C63.0411536,95.4551107 65.9588502,95.4551107 67.7584215,93.634668 L94.6503215,66.4308767 C96.4498928,64.610434 96.4498928,61.6588981 94.6503215,59.8384554 C93.7861334,58.9642445 92.6140473,58.4731195 91.3919019,58.4731195 L82.9324098,58.4731195 C80.3874318,58.4731195 78.3243078,56.3860674 78.3243078,53.8115729 L78.3243078,38.6615466 C78.3243078,36.0870521 76.2611837,34 73.7162058,34 L55.283798,34 C52.7388201,34 50.675696,36.0870521 50.675696,38.6615466 L50.675696,38.6615466 L50.675696,53.8115729 C50.675696,56.3860674 48.612572,58.4731195 46.0675941,58.4731195 L37.608102,58.4731195 C35.063124,58.4731195 33,60.5601716 33,63.134666 C33,64.3709859 33.4854943,65.5566658 34.3496823,66.4308767 L34.3496823,66.4308767 Z\"/></g></svg>"
},
"$:/core/images/edit-button": {
"title": "$:/core/images/edit-button",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-edit-button tc-image-button\" viewBox=\"0 0 128 128\" width=\"22pt\" height=\"22pt\">\n <g fill-rule=\"evenodd\">\n <path d=\"M116.870058,45.3431458 L108.870058,45.3431458 L108.870058,45.3431458 L108.870058,61.3431458 L116.870058,61.3431458 L116.870058,45.3431458 Z M124.870058,45.3431458 L127.649881,45.3431458 C132.066101,45.3431458 135.656854,48.9248678 135.656854,53.3431458 C135.656854,57.7524334 132.07201,61.3431458 127.649881,61.3431458 L124.870058,61.3431458 L124.870058,45.3431458 Z M100.870058,45.3431458 L15.6638275,45.3431458 C15.5064377,45.3431458 15.3501085,45.3476943 15.1949638,45.3566664 L15.1949638,45.3566664 C15.0628002,45.3477039 14.928279,45.3431458 14.7913977,45.3431458 C6.68160973,45.3431458 -8.34314575,53.3431458 -8.34314575,53.3431458 C-8.34314575,53.3431458 6.85614548,61.3431458 14.7913977,61.3431458 C14.9266533,61.3431458 15.0596543,61.3384973 15.190398,61.3293588 C15.3470529,61.3385075 15.5049057,61.3431458 15.6638275,61.3431458 L100.870058,61.3431458 L100.870058,45.3431458 L100.870058,45.3431458 Z\" transform=\"translate(63.656854, 53.343146) rotate(-45.000000) translate(-63.656854, -53.343146) \"></path>\n <path d=\"M35.1714596,124.189544 C41.9594858,123.613403 49.068777,121.917633 58.85987,118.842282 C60.6854386,118.268877 62.4306907,117.705515 65.1957709,116.802278 C81.1962861,111.575575 87.0734839,109.994907 93.9414474,109.655721 C102.29855,109.242993 107.795169,111.785371 111.520478,118.355045 C112.610163,120.276732 115.051363,120.951203 116.97305,119.861518 C118.894737,118.771832 119.569207,116.330633 118.479522,114.408946 C113.146151,105.003414 104.734907,101.112919 93.5468356,101.66546 C85.6716631,102.054388 79.4899908,103.716944 62.7116783,109.197722 C59.9734132,110.092199 58.2519873,110.64787 56.4625698,111.20992 C37.002649,117.322218 25.6914684,118.282267 16.8654804,112.957098 C14.9739614,111.815848 12.5154166,112.424061 11.3741667,114.31558 C10.2329168,116.207099 10.84113,118.665644 12.7326489,119.806894 C19.0655164,123.627836 26.4866335,124.926678 35.1714596,124.189544 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/erase": {
"title": "$:/core/images/erase",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-erase tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M60.0870401,127.996166 L123.102318,64.980888 C129.636723,58.4464827 129.629513,47.8655877 123.098967,41.3350425 L99.4657866,17.7018617 C92.927448,11.1635231 82.3486358,11.1698163 75.8199411,17.698511 L4.89768189,88.6207702 C-1.63672343,95.1551755 -1.6295126,105.736071 4.90103262,112.266616 L20.6305829,127.996166 L60.0870401,127.996166 Z M25.1375576,120.682546 L10.812569,106.357558 C7.5455063,103.090495 7.54523836,97.793808 10.8048093,94.5342371 L46.2691086,59.0699377 L81.7308914,94.5317205 L55.5800654,120.682546 L25.1375576,120.682546 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/excise": {
"title": "$:/core/images/excise",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-excise tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M56,107.313709 L53.6568542,109.656854 C50.5326599,112.781049 45.4673401,112.781049 42.3431457,109.656854 C39.2189514,106.53266 39.2189514,101.46734 42.3431458,98.3431457 L58.3431458,82.3431457 C61.4673401,79.2189514 66.5326599,79.2189514 69.6568542,82.3431458 L85.6568542,98.3431458 C88.7810486,101.46734 88.7810486,106.53266 85.6568542,109.656854 C82.5326599,112.781049 77.4673401,112.781049 74.3431458,109.656854 L72,107.313708 L72,121.597798 C72,125.133636 68.418278,128 64,128 C59.581722,128 56,125.133636 56,121.597798 L56,107.313709 Z M0,40.0070969 C0,35.5848994 3.59071231,32 8,32 C12.418278,32 16,35.5881712 16,40.0070969 L16,71.9929031 C16,76.4151006 12.4092877,80 8,80 C3.581722,80 0,76.4118288 0,71.9929031 L0,40.0070969 Z M32,40.0070969 C32,35.5848994 35.5907123,32 40,32 C44.418278,32 48,35.5881712 48,40.0070969 L48,71.9929031 C48,76.4151006 44.4092877,80 40,80 C35.581722,80 32,76.4118288 32,71.9929031 L32,40.0070969 Z M80,40.0070969 C80,35.5848994 83.5907123,32 88,32 C92.418278,32 96,35.5881712 96,40.0070969 L96,71.9929031 C96,76.4151006 92.4092877,80 88,80 C83.581722,80 80,76.4118288 80,71.9929031 L80,40.0070969 Z M56,8.00709688 C56,3.58489938 59.5907123,0 64,0 C68.418278,0 72,3.58817117 72,8.00709688 L72,39.9929031 C72,44.4151006 68.4092877,48 64,48 C59.581722,48 56,44.4118288 56,39.9929031 L56,8.00709688 Z M112,40.0070969 C112,35.5848994 115.590712,32 120,32 C124.418278,32 128,35.5881712 128,40.0070969 L128,71.9929031 C128,76.4151006 124.409288,80 120,80 C115.581722,80 112,76.4118288 112,71.9929031 L112,40.0070969 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/export-button": {
"title": "$:/core/images/export-button",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-export-button tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M8.00348646,127.999999 C8.00464867,128 8.00581094,128 8.00697327,128 L119.993027,128 C122.205254,128 124.207939,127.101378 125.657096,125.651198 L125.656838,125.65759 C127.104563,124.210109 128,122.21009 128,119.999949 L128,56.0000511 C128,51.5817449 124.409288,48 120,48 C115.581722,48 112,51.5797863 112,56.0000511 L112,112 L16,112 L16,56.0000511 C16,51.5817449 12.4092877,48 8,48 C3.581722,48 7.10542736e-15,51.5797863 7.10542736e-15,56.0000511 L7.10542736e-15,119.999949 C7.10542736e-15,124.418255 3.59071231,128 8,128 C8.00116233,128 8.0023246,128 8.00348681,127.999999 Z M56.6235633,27.3113724 L47.6580188,36.2769169 C44.5333664,39.4015692 39.4634864,39.4061295 36.339292,36.2819351 C33.2214548,33.1640979 33.2173444,28.0901742 36.3443103,24.9632084 L58.9616908,2.34582788 C60.5248533,0.782665335 62.5748436,0.000361191261 64.624516,2.38225238e-14 L64.6193616,0.00151809229 C66.6695374,0.000796251595 68.7211167,0.781508799 70.2854358,2.34582788 L92.9028163,24.9632084 C96.0274686,28.0878607 96.0320289,33.1577408 92.9078345,36.2819351 C89.7899973,39.3997724 84.7160736,39.4038827 81.5891078,36.2769169 L72.6235633,27.3113724 L72.6235633,88.5669606 C72.6235633,92.9781015 69.0418413,96.5662064 64.6235633,96.5662064 C60.2142756,96.5662064 56.6235633,92.984822 56.6235633,88.5669606 L56.6235633,27.3113724 L56.6235633,27.3113724 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/file": {
"title": "$:/core/images/file",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-file tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"nonzero\">\n <path d=\"M111.96811,30.5 L112,30.5 L112,119.999079 C112,124.417866 108.419113,128 104.000754,128 L23.9992458,128 C19.5813843,128 16,124.417687 16,119.999079 L16,8.00092105 C16,3.58213437 19.5808867,0 23.9992458,0 L81,0 L81,0.0201838424 C83.1589869,-0.071534047 85.3482153,0.707077645 86.9982489,2.35711116 L109.625176,24.9840387 C111.151676,26.510538 111.932942,28.4998414 111.96811,30.5 L111.96811,30.5 Z M81,8 L24,8 L24,120 L104,120 L104,30.5 L89.0003461,30.5 C84.5818769,30.5 81,26.9216269 81,22.4996539 L81,8 Z\"></path>\n <rect x=\"32\" y=\"36\" width=\"64\" height=\"8\" rx=\"4\"></rect>\n <rect x=\"32\" y=\"52\" width=\"64\" height=\"8\" rx=\"4\"></rect>\n <rect x=\"32\" y=\"68\" width=\"64\" height=\"8\" rx=\"4\"></rect>\n <rect x=\"32\" y=\"84\" width=\"64\" height=\"8\" rx=\"4\"></rect>\n <rect x=\"32\" y=\"100\" width=\"64\" height=\"8\" rx=\"4\"></rect>\n <rect x=\"32\" y=\"20\" width=\"40\" height=\"8\" rx=\"4\"></rect>\n </g>\n</svg>"
},
"$:/core/images/fixed-height": {
"title": "$:/core/images/fixed-height",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-fixed-height tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M60,35.6568542 L50.8284271,44.8284271 C49.26633,46.3905243 46.73367,46.3905243 45.1715729,44.8284271 C43.6094757,43.26633 43.6094757,40.73367 45.1715729,39.1715729 L61.1715729,23.1715729 C62.73367,21.6094757 65.2663299,21.6094757 66.8284271,23.1715728 L82.8284278,39.1715728 C84.390525,40.7336699 84.390525,43.2663299 82.8284279,44.8284271 C81.2663308,46.3905243 78.7336709,46.3905243 77.1715737,44.8284272 L68,35.6568539 L68,93.3431461 L77.1715737,84.1715728 C78.7336709,82.6094757 81.2663308,82.6094757 82.8284279,84.1715729 C84.390525,85.7336701 84.390525,88.2663301 82.8284278,89.8284272 L66.8284271,105.828427 C65.2663299,107.390524 62.73367,107.390524 61.1715729,105.828427 L45.1715729,89.8284271 C43.6094757,88.26633 43.6094757,85.73367 45.1715729,84.1715729 C46.73367,82.6094757 49.26633,82.6094757 50.8284271,84.1715729 L60,93.3431458 L60,35.6568542 L60,35.6568542 Z M16,116 L112,116 C114.209139,116 116,114.209139 116,112 C116,109.790861 114.209139,108 112,108 L16,108 C13.790861,108 12,109.790861 12,112 C12,114.209139 13.790861,116 16,116 L16,116 Z M16,20 L112,20 C114.209139,20 116,18.209139 116,16 C116,13.790861 114.209139,12 112,12 L16,12 C13.790861,12 12,13.790861 12,16 C12,18.209139 13.790861,20 16,20 L16,20 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/fold-all-button": {
"title": "$:/core/images/fold-all-button",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-fold-all tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <rect x=\"0\" y=\"0\" width=\"128\" height=\"16\" rx=\"8\"></rect>\n <rect x=\"0\" y=\"64\" width=\"128\" height=\"16\" rx=\"8\"></rect>\n <path d=\"M64.0292774,58.6235628 C61.9791013,58.6242848 59.9275217,57.8435723 58.3632024,56.279253 L35.7458219,33.6618725 C32.6211696,30.5372202 32.6166093,25.4673401 35.7408036,22.3431458 C38.8586409,19.2253085 43.9325646,19.2211982 47.0595304,22.348164 L64.0250749,39.3137085 L80.9906194,22.348164 C84.1152717,19.2235117 89.1851518,19.2189514 92.3093461,22.3431458 C95.4271834,25.460983 95.4312937,30.5349067 92.3043279,33.6618725 L69.6869474,56.279253 C68.1237851,57.8424153 66.0737951,58.6247195 64.0241231,58.6250809 Z\" transform=\"translate(64.024316, 39.313708) scale(1, -1) translate(-64.024316, -39.313708) \"></path>\n <path d=\"M64.0292774,123.621227 C61.9791013,123.621949 59.9275217,122.841236 58.3632024,121.276917 L35.7458219,98.6595365 C32.6211696,95.5348842 32.6166093,90.4650041 35.7408036,87.3408098 C38.8586409,84.2229725 43.9325646,84.2188622 47.0595304,87.345828 L64.0250749,104.311373 L80.9906194,87.345828 C84.1152717,84.2211757 89.1851518,84.2166154 92.3093461,87.3408098 C95.4271834,90.458647 95.4312937,95.5325707 92.3043279,98.6595365 L69.6869474,121.276917 C68.1237851,122.840079 66.0737951,123.622383 64.0241231,123.622745 Z\" transform=\"translate(64.024316, 104.311372) scale(1, -1) translate(-64.024316, -104.311372) \"></path>\n </g>\n</svg>"
},
"$:/core/images/fold-button": {
"title": "$:/core/images/fold-button",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-fold tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <rect x=\"0\" y=\"0\" width=\"128\" height=\"16\" rx=\"8\"></rect>\n <path d=\"M64.0292774,63.6235628 C61.9791013,63.6242848 59.9275217,62.8435723 58.3632024,61.279253 L35.7458219,38.6618725 C32.6211696,35.5372202 32.6166093,30.4673401 35.7408036,27.3431458 C38.8586409,24.2253085 43.9325646,24.2211982 47.0595304,27.348164 L64.0250749,44.3137085 L80.9906194,27.348164 C84.1152717,24.2235117 89.1851518,24.2189514 92.3093461,27.3431458 C95.4271834,30.460983 95.4312937,35.5349067 92.3043279,38.6618725 L69.6869474,61.279253 C68.1237851,62.8424153 66.0737951,63.6247195 64.0241231,63.6250809 Z\" transform=\"translate(64.024316, 44.313708) scale(1, -1) translate(-64.024316, -44.313708) \"></path>\n <path d=\"M64.0049614,105.998482 C61.9547853,105.999204 59.9032057,105.218491 58.3388864,103.654172 L35.7215059,81.0367916 C32.5968535,77.9121393 32.5922933,72.8422592 35.7164876,69.7180649 C38.8343248,66.6002276 43.9082485,66.5961173 47.0352144,69.7230831 L64.0007589,86.6886276 L80.9663034,69.7230831 C84.0909557,66.5984308 89.1608358,66.5938705 92.2850301,69.7180649 C95.4028673,72.8359021 95.4069777,77.9098258 92.2800119,81.0367916 L69.6626314,103.654172 C68.099469,105.217334 66.0494791,105.999639 63.999807,106 Z\" transform=\"translate(64.000000, 86.688628) scale(1, -1) translate(-64.000000, -86.688628) \"></path>\n </g>\n</svg>"
},
"$:/core/images/fold-others-button": {
"title": "$:/core/images/fold-others-button",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-fold-others tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <rect x=\"0\" y=\"56.0314331\" width=\"128\" height=\"16\" rx=\"8\"></rect>\n <path d=\"M101.657101,104.948818 C100.207918,103.498614 98.2051847,102.599976 95.9929031,102.599976 L72,102.599976 L72,78.6070725 C72,76.3964271 71.1036108,74.3936927 69.6545293,72.9441002 L69.6571005,72.9488183 C68.2079177,71.4986143 66.2051847,70.5999756 63.9929031,70.5999756 L32.0070969,70.5999756 C27.5881712,70.5999756 24,74.1816976 24,78.5999756 C24,83.0092633 27.5848994,86.5999756 32.0070969,86.5999756 L56,86.5999756 L56,110.592879 C56,112.803524 56.8963895,114.806259 58.3454713,116.255852 L58.3429,116.251133 C59.7920828,117.701337 61.7948156,118.599976 64.0070969,118.599976 L88,118.599976 L88,142.592879 C88,147.011804 91.581722,150.599976 96,150.599976 C100.409288,150.599976 104,147.015076 104,142.592879 L104,110.607072 C104,108.396427 103.103611,106.393693 101.654529,104.9441 Z\" transform=\"translate(64.000000, 110.599976) rotate(-45.000000) translate(-64.000000, -110.599976) \"></path>\n <path d=\"M101.725643,11.7488671 C100.27646,10.2986632 98.2737272,9.40002441 96.0614456,9.40002441 L72.0685425,9.40002441 L72.0685425,-14.5928787 C72.0685425,-16.8035241 71.1721533,-18.8062584 69.7230718,-20.255851 L69.725643,-20.2511329 C68.2764602,-21.7013368 66.2737272,-22.5999756 64.0614456,-22.5999756 L32.0756394,-22.5999756 C27.6567137,-22.5999756 24.0685425,-19.0182536 24.0685425,-14.5999756 C24.0685425,-10.1906879 27.6534419,-6.59997559 32.0756394,-6.59997559 L56.0685425,-6.59997559 L56.0685425,17.3929275 C56.0685425,19.6035732 56.964932,21.6063078 58.4140138,23.0559004 L58.4114425,23.0511823 C59.8606253,24.5013859 61.8633581,25.4000244 64.0756394,25.4000244 L88.0685425,25.4000244 L88.0685425,49.3929275 C88.0685425,53.8118532 91.6502645,57.4000244 96.0685425,57.4000244 C100.47783,57.4000244 104.068542,53.815125 104.068542,49.3929275 L104.068542,17.4071213 C104.068542,15.1964759 103.172153,13.1937416 101.723072,11.744149 Z\" transform=\"translate(64.068542, 17.400024) scale(1, -1) rotate(-45.000000) translate(-64.068542, -17.400024) \"></path>\n </g>\n</svg>"
},
"$:/core/images/folder": {
"title": "$:/core/images/folder",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-folder tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M55.6943257,128.000004 L7.99859666,128.000004 C3.5810937,128.000004 0,124.413822 0,119.996384 L0,48.0036243 C0,43.5833471 3.58387508,40.0000044 7.99859666,40.0000044 L16,40.0000044 L16,31.9999914 C16,27.5817181 19.5783731,24 24.0003461,24 L55.9996539,24 C60.4181231,24 64,27.5800761 64,31.9999914 L64,40.0000044 L104.001403,40.0000044 C108.418906,40.0000044 112,43.5861868 112,48.0036243 L112,59.8298353 L104,59.7475921 L104,51.9994189 C104,49.7887607 102.207895,48.0000044 99.9972215,48.0000044 L56,48.0000044 L56,36.0000255 C56,33.7898932 54.2072328,32 51.9957423,32 L28.0042577,32 C25.7890275,32 24,33.7908724 24,36.0000255 L24,48.0000044 L12.0027785,48.0000044 C9.78987688,48.0000044 8,49.7906032 8,51.9994189 L8,116.00059 C8,118.211248 9.79210499,120.000004 12.0027785,120.000004 L58.7630167,120.000004 L55.6943257,128.000004 L55.6943257,128.000004 Z\"></path>\n <path d=\"M23.8728955,55.5 L119.875702,55.5 C124.293205,55.5 126.87957,59.5532655 125.650111,64.5630007 L112.305967,118.936999 C111.077582,123.942356 106.497904,128 102.083183,128 L6.08037597,128 C1.66287302,128 -0.923492342,123.946735 0.305967145,118.936999 L13.650111,64.5630007 C14.878496,59.5576436 19.4581739,55.5 23.8728955,55.5 L23.8728955,55.5 L23.8728955,55.5 Z M25.6530124,64 L113.647455,64 C115.858129,64 117.151473,66.0930612 116.538306,68.6662267 L105.417772,115.333773 C104.803671,117.910859 102.515967,120 100.303066,120 L12.3086228,120 C10.0979492,120 8.8046054,117.906939 9.41777189,115.333773 L20.5383062,68.6662267 C21.1524069,66.0891409 23.4401107,64 25.6530124,64 L25.6530124,64 L25.6530124,64 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/full-screen-button": {
"title": "$:/core/images/full-screen-button",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-full-screen-button tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g>\n <g>\n <path d=\"M5.29777586e-31,8 C1.59060409e-15,3.581722 3.581722,0 8,0 L40,0 C44.418278,0 48,3.581722 48,8 C48,12.418278 44.418278,16 40,16 L16,16 L16,40 C16,44.418278 12.418278,48 8,48 C3.581722,48 -3.55271368e-15,44.418278 0,40 L3.55271368e-15,8 Z\"></path>\n </g>\n <g transform=\"translate(104.000000, 104.000000) rotate(-180.000000) translate(-104.000000, -104.000000) translate(80.000000, 80.000000)\">\n <path d=\"M5.29777586e-31,8 C1.59060409e-15,3.581722 3.581722,0 8,0 L40,0 C44.418278,0 48,3.581722 48,8 C48,12.418278 44.418278,16 40,16 L16,16 L16,40 C16,44.418278 12.418278,48 8,48 C3.581722,48 -3.55271368e-15,44.418278 0,40 L3.55271368e-15,8 Z\"></path>\n </g>\n <g transform=\"translate(24.000000, 104.000000) rotate(-90.000000) translate(-24.000000, -104.000000) translate(0.000000, 80.000000)\">\n <path d=\"M5.29777586e-31,8 C1.59060409e-15,3.581722 3.581722,0 8,0 L40,0 C44.418278,0 48,3.581722 48,8 C48,12.418278 44.418278,16 40,16 L16,16 L16,40 C16,44.418278 12.418278,48 8,48 C3.581722,48 -3.55271368e-15,44.418278 0,40 L3.55271368e-15,8 Z\"></path>\n </g>\n <g transform=\"translate(104.000000, 24.000000) rotate(90.000000) translate(-104.000000, -24.000000) translate(80.000000, 0.000000)\">\n <path d=\"M5.29777586e-31,8 C1.59060409e-15,3.581722 3.581722,0 8,0 L40,0 C44.418278,0 48,3.581722 48,8 C48,12.418278 44.418278,16 40,16 L16,16 L16,40 C16,44.418278 12.418278,48 8,48 C3.581722,48 -3.55271368e-15,44.418278 0,40 L3.55271368e-15,8 Z\"></path>\n </g>\n </g>\n</svg>"
},
"$:/core/images/github": {
"title": "$:/core/images/github",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-github tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M63.9383506,1.60695328 C28.6017227,1.60695328 -0.055756057,30.2970814 -0.055756057,65.6906208 C-0.055756057,94.003092 18.2804728,118.019715 43.7123154,126.493393 C46.9143781,127.083482 48.0812647,125.104717 48.0812647,123.405261 C48.0812647,121.886765 48.02626,117.85449 47.9948287,112.508284 C30.1929317,116.379268 26.4368926,103.916587 26.4368926,103.916587 C23.5255693,96.5129372 19.3294921,94.5420399 19.3294921,94.5420399 C13.5186324,90.5687739 19.7695302,90.6474524 19.7695302,90.6474524 C26.1933001,91.099854 29.5721638,97.2525155 29.5721638,97.2525155 C35.2808718,107.044059 44.5531024,104.215566 48.1991321,102.575118 C48.7806109,98.4366275 50.4346826,95.612068 52.2616263,94.0109598 C38.0507543,92.3941159 23.1091047,86.8944862 23.1091047,62.3389152 C23.1091047,55.3443933 25.6039634,49.6205298 29.6978889,45.1437211 C29.0378318,43.5229433 26.8415704,37.0044266 30.3265147,28.1845627 C30.3265147,28.1845627 35.6973364,26.4615028 47.9241083,34.7542205 C53.027764,33.330139 58.5046663,32.6220321 63.9462084,32.5944947 C69.3838216,32.6220321 74.856795,33.330139 79.9683085,34.7542205 C92.1872225,26.4615028 97.5501864,28.1845627 97.5501864,28.1845627 C101.042989,37.0044266 98.8467271,43.5229433 98.190599,45.1437211 C102.292382,49.6205298 104.767596,55.3443933 104.767596,62.3389152 C104.767596,86.9574291 89.8023734,92.3744463 75.5482834,93.9598188 C77.8427675,95.9385839 79.8897303,99.8489072 79.8897303,105.828476 C79.8897303,114.392635 79.8111521,121.304544 79.8111521,123.405261 C79.8111521,125.120453 80.966252,127.114954 84.2115327,126.489459 C109.623731,117.996111 127.944244,93.9952241 127.944244,65.6906208 C127.944244,30.2970814 99.2867652,1.60695328 63.9383506,1.60695328\"></path>\n </g>\n </svg>\n"
},
"$:/core/images/gitter": {
"title": "$:/core/images/gitter",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-gitter tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 18 25\">\n <rect x=\"15\" y=\"5\" width=\"2\" height=\"10\"></rect>\n <rect x=\"10\" y=\"5\" width=\"2\" height=\"20\"></rect>\n <rect x=\"5\" y=\"5\" width=\"2\" height=\"20\"></rect>\n <rect width=\"2\" height=\"15\"></rect>\n</svg>\n"
},
"$:/core/images/globe": {
"title": "$:/core/images/globe",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-globe tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M72.8111354,37.1275855 C72.8111354,37.9789875 72.8111354,38.8303894 72.8111354,39.6817913 C72.8111354,41.8784743 73.7885604,46.5631866 72.8111354,48.5143758 C71.3445471,51.4420595 68.1617327,52.0543531 66.4170946,54.3812641 C65.2352215,55.9575873 61.7987417,64.9821523 62.7262858,67.3005778 C66.6959269,77.2228204 74.26087,70.4881886 80.6887657,76.594328 C81.5527211,77.415037 83.5758191,78.8666631 83.985137,79.8899578 C87.2742852,88.1128283 76.4086873,94.8989524 87.7419325,106.189751 C88.9872885,107.430443 91.555495,102.372895 91.8205061,101.575869 C92.6726866,99.0129203 98.5458765,96.1267309 100.908882,94.5234439 C102.928056,93.1534443 105.782168,91.8557166 107.236936,89.7775886 C109.507391,86.5342557 108.717505,82.2640435 110.334606,79.0328716 C112.473794,74.7585014 114.163418,69.3979002 116.332726,65.0674086 C120.230862,57.2857361 121.054075,67.1596684 121.400359,67.5059523 C121.757734,67.8633269 122.411167,67.5059523 122.916571,67.5059523 C123.011132,67.5059523 124.364019,67.6048489 124.432783,67.5059523 C125.0832,66.5705216 123.390209,49.5852316 123.114531,48.2089091 C121.710578,41.1996597 116.17083,32.4278331 111.249523,27.7092761 C104.975994,21.6942076 104.160516,11.5121686 92.9912146,12.7547535 C92.7872931,12.7774397 87.906794,22.9027026 85.2136766,26.2672064 C81.486311,30.9237934 82.7434931,22.1144904 78.6876623,22.1144904 C78.6065806,22.1144904 77.5045497,22.0107615 77.4353971,22.1144904 C76.8488637,22.9942905 75.9952305,26.0101404 75.1288269,26.5311533 C74.8635477,26.6906793 73.4071369,26.2924966 73.2826811,26.5311533 C71.0401728,30.8313939 81.5394677,28.7427264 79.075427,34.482926 C76.7225098,39.9642538 72.747373,32.4860199 72.747373,43.0434079\"></path>\n <path d=\"M44.4668556,7.01044608 C54.151517,13.1403033 45.1489715,19.2084878 47.1611905,23.2253896 C48.8157833,26.5283781 51.4021933,28.6198851 48.8753629,33.038878 C46.8123257,36.6467763 42.0052989,37.0050492 39.251679,39.7621111 C36.2115749,42.8060154 33.7884281,48.7028116 32.4624592,52.6732691 C30.8452419,57.5158356 47.0088721,59.5388126 44.5246867,63.6811917 C43.1386839,65.9923513 37.7785192,65.1466282 36.0880227,63.8791519 C34.9234453,63.0059918 32.4946425,63.3331166 31.6713597,62.0997342 C29.0575851,58.1839669 29.4107339,54.0758543 28.0457962,49.9707786 C27.1076833,47.1493864 21.732611,47.8501656 20.2022714,49.3776393 C19.6790362,49.8998948 19.8723378,51.1703278 19.8723378,51.8829111 C19.8723378,57.1682405 26.9914913,55.1986414 26.9914913,58.3421973 C26.9914913,72.9792302 30.9191897,64.8771867 38.1313873,69.6793121 C48.1678018,76.3618966 45.9763926,76.981595 53.0777543,84.0829567 C56.7511941,87.7563965 60.8192437,87.7689005 62.503478,93.3767069 C64.1046972,98.7081071 53.1759798,98.7157031 50.786754,100.825053 C49.663965,101.816317 47.9736094,104.970571 46.5680513,105.439676 C44.7757187,106.037867 43.334221,105.93607 41.6242359,107.219093 C39.1967302,109.040481 37.7241465,112.151588 37.6034934,112.030935 C35.4555278,109.88297 34.0848666,96.5511248 33.7147244,93.7726273 C33.1258872,89.3524817 28.1241923,88.2337027 26.7275443,84.7420826 C25.1572737,80.8164061 28.2518481,75.223612 25.599097,70.9819941 C19.0797019,60.557804 13.7775712,56.4811506 10.2493953,44.6896152 C9.3074899,41.5416683 13.5912267,38.1609942 15.1264825,35.8570308 C17.0029359,33.0410312 17.7876232,30.0028946 19.8723378,27.2224065 C22.146793,24.1888519 40.8551166,9.46076832 43.8574051,8.63490613 L44.4668556,7.01044608 Z\"></path>\n <path d=\"M64,126 C98.2416545,126 126,98.2416545 126,64 C126,29.7583455 98.2416545,2 64,2 C29.7583455,2 2,29.7583455 2,64 C2,98.2416545 29.7583455,126 64,126 Z M64,120 C94.927946,120 120,94.927946 120,64 C120,33.072054 94.927946,8 64,8 C33.072054,8 8,33.072054 8,64 C8,94.927946 33.072054,120 64,120 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/heading-1": {
"title": "$:/core/images/heading-1",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-heading-1 tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M14,30 L27.25,30 L27.25,60.104 L61.7,60.104 L61.7,30 L74.95,30 L74.95,105.684 L61.7,105.684 L61.7,71.552 L27.25,71.552 L27.25,105.684 L14,105.684 L14,30 Z M84.3350766,43.78 C86.8790893,43.78 89.3523979,43.5680021 91.7550766,43.144 C94.1577553,42.7199979 96.3307336,42.0133383 98.2740766,41.024 C100.21742,40.0346617 101.87807,38.7626744 103.256077,37.208 C104.634084,35.6533256 105.535075,33.7453446 105.959077,31.484 L115.817077,31.484 L115.817077,105.684 L102.567077,105.684 L102.567077,53.32 L84.3350766,53.32 L84.3350766,43.78 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/heading-2": {
"title": "$:/core/images/heading-2",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-heading-2 tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M6,30 L19.25,30 L19.25,60.104 L53.7,60.104 L53.7,30 L66.95,30 L66.95,105.684 L53.7,105.684 L53.7,71.552 L19.25,71.552 L19.25,105.684 L6,105.684 L6,30 Z M125.519077,105.684 L74.8510766,105.684 C74.9217436,99.5359693 76.4057288,94.1653563 79.3030766,89.572 C82.2004244,84.9786437 86.1577182,80.986017 91.1750766,77.594 C93.5777553,75.8273245 96.0863969,74.113675 98.7010766,72.453 C101.315756,70.792325 103.718399,69.0080095 105.909077,67.1 C108.099754,65.1919905 109.901736,63.1250111 111.315077,60.899 C112.728417,58.6729889 113.47041,56.1113478 113.541077,53.214 C113.541077,51.8713266 113.382078,50.4403409 113.064077,48.921 C112.746075,47.4016591 112.127748,45.9883399 111.209077,44.681 C110.290405,43.3736601 109.018418,42.2783377 107.393077,41.395 C105.767735,40.5116622 103.647756,40.07 101.033077,40.07 C98.6303979,40.07 96.6340846,40.5469952 95.0440766,41.501 C93.4540687,42.4550048 92.1820814,43.762325 91.2280766,45.423 C90.2740719,47.083675 89.5674123,49.0446554 89.1080766,51.306 C88.648741,53.5673446 88.3837436,56.0053203 88.3130766,58.62 L76.2290766,58.62 C76.2290766,54.5213128 76.7767378,50.7230175 77.8720766,47.225 C78.9674154,43.7269825 80.610399,40.7060127 82.8010766,38.162 C84.9917542,35.6179873 87.6593942,33.6216739 90.8040766,32.173 C93.948759,30.7243261 97.6057224,30 101.775077,30 C106.297766,30 110.078395,30.7419926 113.117077,32.226 C116.155758,33.7100074 118.611401,35.5826554 120.484077,37.844 C122.356753,40.1053446 123.681739,42.5609868 124.459077,45.211 C125.236414,47.8610133 125.625077,50.3873213 125.625077,52.79 C125.625077,55.7580148 125.165748,58.4433213 124.247077,60.846 C123.328405,63.2486787 122.091751,65.4569899 120.537077,67.471 C118.982402,69.4850101 117.215753,71.3399915 115.237077,73.036 C113.2584,74.7320085 111.209087,76.3219926 109.089077,77.806 C106.969066,79.2900074 104.849087,80.7033266 102.729077,82.046 C100.609066,83.3886734 98.6480856,84.7313266 96.8460766,86.074 C95.0440676,87.4166734 93.47175,88.8123261 92.1290766,90.261 C90.7864032,91.7096739 89.8677458,93.2466585 89.3730766,94.872 L125.519077,94.872 L125.519077,105.684 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/heading-3": {
"title": "$:/core/images/heading-3",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-heading-3 tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M6,30 L19.25,30 L19.25,60.104 L53.7,60.104 L53.7,30 L66.95,30 L66.95,105.684 L53.7,105.684 L53.7,71.552 L19.25,71.552 L19.25,105.684 L6,105.684 L6,30 Z M94.8850766,62.224 C96.8637532,62.294667 98.8424001,62.1533351 100.821077,61.8 C102.799753,61.4466649 104.566402,60.8283378 106.121077,59.945 C107.675751,59.0616623 108.930072,57.8426744 109.884077,56.288 C110.838081,54.7333256 111.315077,52.8253446 111.315077,50.564 C111.315077,47.3839841 110.237421,44.8400095 108.082077,42.932 C105.926733,41.0239905 103.153094,40.07 99.7610766,40.07 C97.641066,40.07 95.8037511,40.4939958 94.2490766,41.342 C92.6944022,42.1900042 91.4047484,43.3383261 90.3800766,44.787 C89.3554048,46.2356739 88.5957458,47.860991 88.1010766,49.663 C87.6064075,51.465009 87.3944096,53.3199905 87.4650766,55.228 L75.3810766,55.228 C75.5224107,51.623982 76.1937373,48.2850154 77.3950766,45.211 C78.596416,42.1369846 80.2393995,39.4693446 82.3240766,37.208 C84.4087537,34.9466554 86.9350618,33.1800064 89.9030766,31.908 C92.8710915,30.6359936 96.2277246,30 99.9730766,30 C102.870424,30 105.714729,30.4239958 108.506077,31.272 C111.297424,32.1200042 113.806065,33.3566585 116.032077,34.982 C118.258088,36.6073415 120.042403,38.6743208 121.385077,41.183 C122.72775,43.6916792 123.399077,46.5713171 123.399077,49.822 C123.399077,53.5673521 122.551085,56.8356527 120.855077,59.627 C119.159068,62.4183473 116.509095,64.4499936 112.905077,65.722 L112.905077,65.934 C117.145098,66.7820042 120.448731,68.8843166 122.816077,72.241 C125.183422,75.5976835 126.367077,79.6786426 126.367077,84.484 C126.367077,88.017351 125.660417,91.1796527 124.247077,93.971 C122.833736,96.7623473 120.925755,99.129657 118.523077,101.073 C116.120398,103.016343 113.329093,104.517995 110.149077,105.578 C106.969061,106.638005 103.612428,107.168 100.079077,107.168 C95.7683884,107.168 92.005426,106.549673 88.7900766,105.313 C85.5747272,104.076327 82.8894207,102.327345 80.7340766,100.066 C78.5787325,97.8046554 76.9357489,95.0840159 75.8050766,91.904 C74.6744043,88.7239841 74.0737436,85.1906861 74.0030766,81.304 L86.0870766,81.304 C85.9457426,85.8266893 87.0587315,89.5896517 89.4260766,92.593 C91.7934218,95.5963483 95.3443863,97.098 100.079077,97.098 C104.107097,97.098 107.481396,95.9496782 110.202077,93.653 C112.922757,91.3563219 114.283077,88.0880212 114.283077,83.848 C114.283077,80.9506522 113.717749,78.6540085 112.587077,76.958 C111.456404,75.2619915 109.972419,73.9723378 108.135077,73.089 C106.297734,72.2056623 104.230755,71.6580011 101.934077,71.446 C99.6373985,71.2339989 97.2877553,71.163333 94.8850766,71.234 L94.8850766,62.224 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/heading-4": {
"title": "$:/core/images/heading-4",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-heading-4 tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M8,30 L21.25,30 L21.25,60.104 L55.7,60.104 L55.7,30 L68.95,30 L68.95,105.684 L55.7,105.684 L55.7,71.552 L21.25,71.552 L21.25,105.684 L8,105.684 L8,30 Z M84.5890766,78.548 L107.061077,78.548 L107.061077,45.9 L106.849077,45.9 L84.5890766,78.548 Z M128.049077,88.088 L118.509077,88.088 L118.509077,105.684 L107.061077,105.684 L107.061077,88.088 L75.2610766,88.088 L75.2610766,76.11 L107.061077,31.484 L118.509077,31.484 L118.509077,78.548 L128.049077,78.548 L128.049077,88.088 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/heading-5": {
"title": "$:/core/images/heading-5",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-heading-5 tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M6,30 L19.25,30 L19.25,60.104 L53.7,60.104 L53.7,30 L66.95,30 L66.95,105.684 L53.7,105.684 L53.7,71.552 L19.25,71.552 L19.25,105.684 L6,105.684 L6,30 Z M83.7550766,31.484 L122.127077,31.484 L122.127077,42.296 L92.7650766,42.296 L88.9490766,61.164 L89.1610766,61.376 C90.7864181,59.5386575 92.8533974,58.1430048 95.3620766,57.189 C97.8707558,56.2349952 100.361731,55.758 102.835077,55.758 C106.509762,55.758 109.795729,56.3763272 112.693077,57.613 C115.590424,58.8496729 118.0284,60.5809889 120.007077,62.807 C121.985753,65.0330111 123.487405,67.6653181 124.512077,70.704 C125.536748,73.7426819 126.049077,77.028649 126.049077,80.562 C126.049077,83.5300148 125.572081,86.5863176 124.618077,89.731 C123.664072,92.8756824 122.144754,95.7376538 120.060077,98.317 C117.9754,100.896346 115.30776,103.016325 112.057077,104.677 C108.806394,106.337675 104.919766,107.168 100.397077,107.168 C96.7930586,107.168 93.454092,106.691005 90.3800766,105.737 C87.3060613,104.782995 84.6030883,103.35201 82.2710766,101.444 C79.939065,99.5359905 78.0840835,97.1863473 76.7060766,94.395 C75.3280697,91.6036527 74.5684107,88.3353521 74.4270766,84.59 L86.5110766,84.59 C86.8644117,88.6180201 88.2423979,91.7096559 90.6450766,93.865 C93.0477553,96.0203441 96.2277235,97.098 100.185077,97.098 C102.729089,97.098 104.884401,96.6740042 106.651077,95.826 C108.417752,94.9779958 109.848738,93.8120074 110.944077,92.328 C112.039415,90.8439926 112.816741,89.1126766 113.276077,87.134 C113.735412,85.1553234 113.965077,83.0353446 113.965077,80.774 C113.965077,78.7246564 113.682413,76.763676 113.117077,74.891 C112.55174,73.018324 111.703749,71.3753404 110.573077,69.962 C109.442404,68.5486596 107.976086,67.4180042 106.174077,66.57 C104.372068,65.7219958 102.269755,65.298 99.8670766,65.298 C97.3230639,65.298 94.9380878,65.7749952 92.7120766,66.729 C90.4860655,67.6830048 88.8784149,69.4673203 87.8890766,72.082 L75.8050766,72.082 L83.7550766,31.484 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/heading-6": {
"title": "$:/core/images/heading-6",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-heading-6 tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M6,30 L19.25,30 L19.25,60.104 L53.7,60.104 L53.7,30 L66.95,30 L66.95,105.684 L53.7,105.684 L53.7,71.552 L19.25,71.552 L19.25,105.684 L6,105.684 L6,30 Z M112.587077,50.246 C112.304409,47.2073181 111.226753,44.751676 109.354077,42.879 C107.481401,41.006324 104.955093,40.07 101.775077,40.07 C99.584399,40.07 97.6940846,40.4763293 96.1040766,41.289 C94.5140687,42.1016707 93.1714154,43.1793266 92.0760766,44.522 C90.9807378,45.8646734 90.0974133,47.401658 89.4260766,49.133 C88.7547399,50.864342 88.2070787,52.6839905 87.7830766,54.592 C87.3590745,56.5000095 87.0587442,58.390324 86.8820766,60.263 C86.7054091,62.135676 86.5464107,63.8846585 86.4050766,65.51 L86.6170766,65.722 C88.2424181,62.7539852 90.4860623,60.5456739 93.3480766,59.097 C96.2100909,57.6483261 99.3017267,56.924 102.623077,56.924 C106.297762,56.924 109.583729,57.5599936 112.481077,58.832 C115.378424,60.1040064 117.834067,61.8529889 119.848077,64.079 C121.862087,66.3050111 123.399071,68.9373181 124.459077,71.976 C125.519082,75.0146819 126.049077,78.300649 126.049077,81.834 C126.049077,85.438018 125.466082,88.7769846 124.300077,91.851 C123.134071,94.9250154 121.455754,97.6103219 119.265077,99.907 C117.074399,102.203678 114.459758,103.987994 111.421077,105.26 C108.382395,106.532006 105.025762,107.168 101.351077,107.168 C95.9097161,107.168 91.4400941,106.16101 87.9420766,104.147 C84.4440591,102.13299 81.6880867,99.3770175 79.6740766,95.879 C77.6600666,92.3809825 76.2644138,88.2823568 75.4870766,83.583 C74.7097394,78.8836432 74.3210766,73.8133605 74.3210766,68.372 C74.3210766,63.9199777 74.7980719,59.4326893 75.7520766,54.91 C76.7060814,50.3873107 78.278399,46.2710186 80.4690766,42.561 C82.6597542,38.8509815 85.5393921,35.8300117 89.1080766,33.498 C92.6767611,31.1659883 97.0757171,30 102.305077,30 C105.273091,30 108.064397,30.4946617 110.679077,31.484 C113.293756,32.4733383 115.608067,33.8513245 117.622077,35.618 C119.636087,37.3846755 121.27907,39.5046543 122.551077,41.978 C123.823083,44.4513457 124.529743,47.2073181 124.671077,50.246 L112.587077,50.246 Z M100.927077,97.098 C103.117754,97.098 105.025735,96.6563378 106.651077,95.773 C108.276418,94.8896623 109.636738,93.7413404 110.732077,92.328 C111.827415,90.9146596 112.640074,89.271676 113.170077,87.399 C113.700079,85.526324 113.965077,83.6006766 113.965077,81.622 C113.965077,79.6433234 113.700079,77.7353425 113.170077,75.898 C112.640074,74.0606575 111.827415,72.4530069 110.732077,71.075 C109.636738,69.6969931 108.276418,68.5840042 106.651077,67.736 C105.025735,66.8879958 103.117754,66.464 100.927077,66.464 C98.736399,66.464 96.8107516,66.8703293 95.1500766,67.683 C93.4894017,68.4956707 92.0937489,69.5909931 90.9630766,70.969 C89.8324043,72.3470069 88.9844128,73.9546575 88.4190766,75.792 C87.8537405,77.6293425 87.5710766,79.5726564 87.5710766,81.622 C87.5710766,83.6713436 87.8537405,85.6146575 88.4190766,87.452 C88.9844128,89.2893425 89.8324043,90.9323261 90.9630766,92.381 C92.0937489,93.8296739 93.4894017,94.9779958 95.1500766,95.826 C96.8107516,96.6740042 98.736399,97.098 100.927077,97.098 L100.927077,97.098 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/help": {
"title": "$:/core/images/help",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-help tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M36.0548906,111.44117 C30.8157418,115.837088 20.8865444,118.803477 9.5,118.803477 C7.86465619,118.803477 6.25937294,118.742289 4.69372699,118.624467 C12.612543,115.984876 18.7559465,110.02454 21.0611049,102.609942 C8.74739781,92.845129 1.04940554,78.9359851 1.04940554,63.5 C1.04940554,33.9527659 29.2554663,10 64.0494055,10 C98.8433448,10 127.049406,33.9527659 127.049406,63.5 C127.049406,93.0472341 98.8433448,117 64.0494055,117 C53.9936953,117 44.48824,114.999337 36.0548906,111.44117 L36.0548906,111.44117 Z M71.4042554,77.5980086 C71.406883,77.2865764 71.4095079,76.9382011 71.4119569,76.5610548 C71.4199751,75.3262169 71.4242825,74.0811293 71.422912,72.9158546 C71.4215244,71.736154 71.4143321,70.709635 71.4001396,69.8743525 C71.4078362,68.5173028 71.9951951,67.7870427 75.1273009,65.6385471 C75.2388969,65.5619968 76.2124091,64.8981068 76.5126553,64.6910879 C79.6062455,62.5580654 81.5345849,60.9050204 83.2750652,58.5038955 C85.6146327,55.2762841 86.8327108,51.426982 86.8327108,46.8554323 C86.8327108,33.5625756 76.972994,24.9029551 65.3778484,24.9029551 C54.2752771,24.9029551 42.8794554,34.5115163 41.3121702,47.1975534 C40.9043016,50.4989536 43.2499725,53.50591 46.5513726,53.9137786 C49.8527728,54.3216471 52.8597292,51.9759763 53.2675978,48.6745761 C54.0739246,42.1479456 60.2395837,36.9492759 65.3778484,36.9492759 C70.6427674,36.9492759 74.78639,40.5885487 74.78639,46.8554323 C74.78639,50.4892974 73.6853224,52.008304 69.6746221,54.7736715 C69.4052605,54.9593956 68.448509,55.6118556 68.3131127,55.7047319 C65.6309785,57.5445655 64.0858213,58.803255 62.6123358,60.6352315 C60.5044618,63.2559399 59.3714208,66.3518252 59.3547527,69.9487679 C59.3684999,70.8407274 59.3752803,71.8084521 59.3765995,72.9300232 C59.3779294,74.0607297 59.3737237,75.2764258 59.36589,76.482835 C59.3634936,76.8518793 59.3609272,77.1924914 59.3583633,77.4963784 C59.3568319,77.6778944 59.3556368,77.8074256 59.3549845,77.8730928 C59.3219814,81.1994287 61.9917551,83.9227111 65.318091,83.9557142 C68.644427,83.9887173 71.3677093,81.3189435 71.4007124,77.9926076 C71.4014444,77.9187458 71.402672,77.7856841 71.4042554,77.5980086 Z M65.3778489,102.097045 C69.5359735,102.097045 72.9067994,98.7262189 72.9067994,94.5680944 C72.9067994,90.4099698 69.5359735,87.0391439 65.3778489,87.0391439 C61.2197243,87.0391439 57.8488984,90.4099698 57.8488984,94.5680944 C57.8488984,98.7262189 61.2197243,102.097045 65.3778489,102.097045 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/home-button": {
"title": "$:/core/images/home-button",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-home-button tc-image-button\" viewBox=\"0 0 128 128\" width=\"22pt\" height=\"22pt\">\n <g fill-rule=\"evenodd\">\n <path d=\"M112.9847,119.501583 C112.99485,119.336814 113,119.170705 113,119.003406 L113,67.56802 C116.137461,70.5156358 121.076014,70.4518569 124.133985,67.3938855 C127.25818,64.2696912 127.260618,59.2068102 124.131541,56.0777326 L70.3963143,2.34250601 C68.8331348,0.779326498 66.7828947,-0.000743167069 64.7337457,1.61675364e-05 C62.691312,-0.00409949529 60.6426632,0.777559815 59.077717,2.34250601 L33,28.420223 L33,28.420223 L33,8.00697327 C33,3.58484404 29.4092877,0 25,0 C20.581722,0 17,3.59075293 17,8.00697327 L17,44.420223 L5.3424904,56.0777326 C2.21694607,59.2032769 2.22220878,64.2760483 5.34004601,67.3938855 C8.46424034,70.5180798 13.5271213,70.5205187 16.6561989,67.3914411 L17,67.04764 L17,119.993027 C17,119.994189 17.0000002,119.995351 17.0000007,119.996514 C17.0000002,119.997675 17,119.998838 17,120 C17,124.418278 20.5881049,128 24.9992458,128 L105.000754,128 C109.418616,128 113,124.409288 113,120 C113,119.832611 112.99485,119.666422 112.9847,119.501583 Z M97,112 L97,51.5736087 L97,51.5736087 L64.7370156,19.3106244 L33,51.04764 L33,112 L97,112 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/import-button": {
"title": "$:/core/images/import-button",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-import-button tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M105.449437,94.2138951 C105.449437,94.2138951 110.049457,94.1897106 110.049457,99.4026111 C110.049457,104.615512 105.163246,104.615511 105.163246,104.615511 L45.0075072,105.157833 C45.0075072,105.157833 0.367531803,106.289842 0.367532368,66.6449212 C0.367532934,27.0000003 45.0428249,27.0000003 45.0428249,27.0000003 L105.532495,27.0000003 C105.532495,27.0000003 138.996741,25.6734987 138.996741,55.1771866 C138.996741,84.6808745 105.727102,82.8457535 105.727102,82.8457535 L56.1735087,82.8457535 C56.1735087,82.8457535 22.6899229,85.1500223 22.6899229,66.0913753 C22.6899229,47.0327282 56.1735087,49.3383013 56.1735087,49.3383013 L105.727102,49.3383013 C105.727102,49.3383013 111.245209,49.3383024 111.245209,54.8231115 C111.245209,60.3079206 105.727102,60.5074524 105.727102,60.5074524 L56.1735087,60.5074524 C56.1735087,60.5074524 37.48913,60.5074528 37.48913,66.6449195 C37.48913,72.7823862 56.1735087,71.6766023 56.1735087,71.6766023 L105.727102,71.6766029 C105.727102,71.6766029 127.835546,73.1411469 127.835546,55.1771866 C127.835546,35.5304025 105.727102,38.3035317 105.727102,38.3035317 L45.0428249,38.3035317 C45.0428249,38.3035317 11.5287276,38.3035313 11.5287276,66.6449208 C11.5287276,94.9863103 45.0428244,93.9579678 45.0428244,93.9579678 L105.449437,94.2138951 Z\" transform=\"translate(69.367532, 66.000000) rotate(-45.000000) translate(-69.367532, -66.000000) \"></path>\n </g>\n</svg>"
},
"$:/core/images/info-button": {
"title": "$:/core/images/info-button",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-info-button tc-image-button\" viewBox=\"0 0 128 128\" width=\"22pt\" height=\"22pt\">\n <g fill-rule=\"evenodd\">\n <g transform=\"translate(0.049406, 0.000000)\">\n <path d=\"M64,128 C99.346224,128 128,99.346224 128,64 C128,28.653776 99.346224,0 64,0 C28.653776,0 0,28.653776 0,64 C0,99.346224 28.653776,128 64,128 Z M64,112 C90.509668,112 112,90.509668 112,64 C112,37.490332 90.509668,16 64,16 C37.490332,16 16,37.490332 16,64 C16,90.509668 37.490332,112 64,112 Z\"></path>\n <circle cx=\"64\" cy=\"32\" r=\"8\"></circle>\n <rect x=\"56\" y=\"48\" width=\"16\" height=\"56\" rx=\"8\"></rect>\n </g>\n </g>\n</svg>"
},
"$:/core/images/italic": {
"title": "$:/core/images/italic",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-italic tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <polygon points=\"66.7114846 0 89.1204482 0 62.4089636 128 40 128\"></polygon>\n </g>\n</svg>"
},
"$:/core/images/left-arrow": {
"title": "$:/core/images/left-arrow",
"created": "20150315234410875",
"modified": "20150315235324760",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-left-arrow tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <path transform=\"rotate(135, 63.8945, 64.1752)\" d=\"m109.07576,109.35336c-1.43248,1.43361 -3.41136,2.32182 -5.59717,2.32182l-79.16816,0c-4.36519,0 -7.91592,-3.5444 -7.91592,-7.91666c0,-4.36337 3.54408,-7.91667 7.91592,-7.91667l71.25075,0l0,-71.25075c0,-4.3652 3.54442,-7.91592 7.91667,-7.91592c4.36336,0 7.91667,3.54408 7.91667,7.91592l0,79.16815c0,2.1825 -0.88602,4.16136 -2.3185,5.59467l-0.00027,-0.00056z\"/>\n</svg>\n"
},
"$:/core/images/line-width": {
"title": "$:/core/images/line-width",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-line-width tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M128,-97 L112.992786,-97 C112.452362,-97 112,-96.5522847 112,-96 C112,-95.4438648 112.444486,-95 112.992786,-95 L128,-95 L128,-97 Z M128,-78.6794919 L111.216185,-88.3696322 C110.748163,-88.6398444 110.132549,-88.4782926 109.856406,-88 C109.578339,-87.5183728 109.741342,-86.9117318 110.216185,-86.6375814 L128,-76.3700908 L128,-78.6794919 Z M78.6794919,-128 L88.3696322,-111.216185 C88.6437826,-110.741342 88.4816272,-110.134474 88,-109.856406 C87.5217074,-109.580264 86.9077936,-109.748163 86.6375814,-110.216185 L76.3700908,-128 L78.6794919,-128 Z M97,-128 L97,-112.992786 C97,-112.444486 96.5561352,-112 96,-112 C95.4477153,-112 95,-112.452362 95,-112.992786 L95,-128 L97,-128 Z M115.629909,-128 L105.362419,-110.216185 C105.088268,-109.741342 104.481627,-109.578339 104,-109.856406 C103.521707,-110.132549 103.360156,-110.748163 103.630368,-111.216185 L113.320508,-128 L115.629909,-128 Z M128,-113.320508 L111.216185,-103.630368 C110.741342,-103.356217 110.134474,-103.518373 109.856406,-104 C109.580264,-104.478293 109.748163,-105.092206 110.216185,-105.362419 L128,-115.629909 L128,-113.320508 Z M48,-96 C48,-96.5522847 48.4523621,-97 48.9927864,-97 L79.0072136,-97 C79.5555144,-97 80,-96.5561352 80,-96 C80,-95.4477153 79.5476379,-95 79.0072136,-95 L48.9927864,-95 C48.4444856,-95 48,-95.4438648 48,-96 Z M54.4307806,-120 C54.706923,-120.478293 55.3225377,-120.639844 55.7905589,-120.369632 L81.7838153,-105.362419 C82.2586577,-105.088268 82.4216611,-104.481627 82.1435935,-104 C81.8674512,-103.521707 81.2518365,-103.360156 80.7838153,-103.630368 L54.7905589,-118.637581 C54.3157165,-118.911732 54.152713,-119.518373 54.4307806,-120 Z M104,-82.1435935 C104.478293,-82.4197359 105.092206,-82.2518365 105.362419,-81.7838153 L120.369632,-55.7905589 C120.643783,-55.3157165 120.481627,-54.7088482 120,-54.4307806 C119.521707,-54.1546382 118.907794,-54.3225377 118.637581,-54.7905589 L103.630368,-80.7838153 C103.356217,-81.2586577 103.518373,-81.865526 104,-82.1435935 Z M96,-80 C96.5522847,-80 97,-79.5476379 97,-79.0072136 L97,-48.9927864 C97,-48.4444856 96.5561352,-48 96,-48 C95.4477153,-48 95,-48.4523621 95,-48.9927864 L95,-79.0072136 C95,-79.5555144 95.4438648,-80 96,-80 Z M88,-82.1435935 C88.4782926,-81.8674512 88.6398444,-81.2518365 88.3696322,-80.7838153 L73.3624186,-54.7905589 C73.0882682,-54.3157165 72.4816272,-54.152713 72,-54.4307806 C71.5217074,-54.706923 71.3601556,-55.3225377 71.6303678,-55.7905589 L86.6375814,-81.7838153 C86.9117318,-82.2586577 87.5183728,-82.4216611 88,-82.1435935 Z M82.1435935,-88 C82.4197359,-87.5217074 82.2518365,-86.9077936 81.7838153,-86.6375814 L55.7905589,-71.6303678 C55.3157165,-71.3562174 54.7088482,-71.5183728 54.4307806,-72 C54.1546382,-72.4782926 54.3225377,-73.0922064 54.7905589,-73.3624186 L80.7838153,-88.3696322 C81.2586577,-88.6437826 81.865526,-88.4816272 82.1435935,-88 Z M1.30626177e-08,-41.9868843 L15.0170091,-57.9923909 L20.7983821,-52.9749272 L44.7207091,-81.2095939 L73.4260467,-42.1002685 L85.984793,-56.6159488 L104.48741,-34.0310661 L127.969109,-47.4978019 L127.969109,7.99473128e-07 L1.30626177e-08,7.99473128e-07 L1.30626177e-08,-41.9868843 Z M96,-84 C102.627417,-84 108,-89.372583 108,-96 C108,-102.627417 102.627417,-108 96,-108 C89.372583,-108 84,-102.627417 84,-96 C84,-89.372583 89.372583,-84 96,-84 Z\"></path>\n <path d=\"M16,18 L112,18 C113.104569,18 114,17.1045695 114,16 C114,14.8954305 113.104569,14 112,14 L16,14 C14.8954305,14 14,14.8954305 14,16 C14,17.1045695 14.8954305,18 16,18 L16,18 Z M16,35 L112,35 C114.209139,35 116,33.209139 116,31 C116,28.790861 114.209139,27 112,27 L16,27 C13.790861,27 12,28.790861 12,31 C12,33.209139 13.790861,35 16,35 L16,35 Z M16,56 L112,56 C115.313708,56 118,53.3137085 118,50 C118,46.6862915 115.313708,44 112,44 L16,44 C12.6862915,44 10,46.6862915 10,50 C10,53.3137085 12.6862915,56 16,56 L16,56 Z M16,85 L112,85 C117.522847,85 122,80.5228475 122,75 C122,69.4771525 117.522847,65 112,65 L16,65 C10.4771525,65 6,69.4771525 6,75 C6,80.5228475 10.4771525,85 16,85 L16,85 Z M16,128 L112,128 C120.836556,128 128,120.836556 128,112 C128,103.163444 120.836556,96 112,96 L16,96 C7.163444,96 0,103.163444 0,112 C0,120.836556 7.163444,128 16,128 L16,128 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/link": {
"title": "$:/core/images/link",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-link tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M128.719999,57.568543 C130.219553,53.8628171 131.045202,49.8121445 131.045202,45.5685425 C131.045202,27.8915447 116.718329,13.5685425 99.0452364,13.5685425 L67.0451674,13.5685425 C49.3655063,13.5685425 35.0452019,27.8954305 35.0452019,45.5685425 C35.0452019,63.2455403 49.3720745,77.5685425 67.0451674,77.5685425 L99.0452364,77.5685425 C100.406772,77.5685425 101.748384,77.4835732 103.065066,77.3186499 C96.4792444,73.7895096 91.1190212,68.272192 87.7873041,61.5685425 L67.0506214,61.5685425 C58.2110723,61.5685425 51.0452019,54.4070414 51.0452019,45.5685425 C51.0452019,36.7319865 58.2005234,29.5685425 67.0506214,29.5685425 L99.0397824,29.5685425 C107.879331,29.5685425 115.045202,36.7300436 115.045202,45.5685425 C115.045202,48.9465282 113.99957,52.0800164 112.21335,54.6623005 C114.314383,56.4735917 117.050039,57.5685425 120.041423,57.5685425 L128.720003,57.5685425 Z\" transform=\"translate(83.045202, 45.568542) rotate(-225.000000) translate(-83.045202, -45.568542)\"></path>\n <path d=\"M-0.106255113,71.0452019 C-1.60580855,74.7509276 -2.43145751,78.8016001 -2.43145751,83.0452019 C-2.43145751,100.7222 11.8954151,115.045202 29.568508,115.045202 L61.568577,115.045202 C79.2482381,115.045202 93.5685425,100.718314 93.5685425,83.0452019 C93.5685425,65.3682041 79.2416699,51.0452019 61.568577,51.0452019 L29.568508,51.0452019 C28.206973,51.0452019 26.8653616,51.1301711 25.5486799,51.2950943 C32.1345,54.8242347 37.4947231,60.3415524 40.8264403,67.0452019 L61.563123,67.0452019 C70.4026721,67.0452019 77.5685425,74.206703 77.5685425,83.0452019 C77.5685425,91.8817579 70.413221,99.0452019 61.563123,99.0452019 L29.573962,99.0452019 C20.7344129,99.0452019 13.5685425,91.8837008 13.5685425,83.0452019 C13.5685425,79.6672162 14.6141741,76.533728 16.4003949,73.9514439 C14.2993609,72.1401527 11.5637054,71.0452019 8.5723215,71.0452019 L-0.106255113,71.0452019 Z\" transform=\"translate(45.568542, 83.045202) rotate(-225.000000) translate(-45.568542, -83.045202)\"></path>\n </g>\n</svg>"
},
"$:/core/images/linkify": {
"title": "$:/core/images/linkify",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-linkify-button tc-image-button\" viewBox=\"0 0 128 128\" width=\"22pt\" height=\"22pt\"><path d=\"M17.031 31.919H9.048V96.85h7.983v6.92H0V25h17.031v6.919zm24.66 0h-7.983V96.85h7.983v6.92H24.66V25h17.03v6.919zM67.77 56.422l11.975-3.903 2.306 7.096-12.063 3.903 7.628 10.379-6.12 4.435-7.63-10.467-7.45 10.2-5.943-4.523L58.1 63.518 45.95 59.35l2.306-7.096 12.064 4.17V43.825h7.45v12.596zM86.31 96.85h7.982V31.92H86.31V25h17.031v78.77H86.31v-6.92zm24.659 0h7.983V31.92h-7.983V25H128v78.77h-17.031v-6.92z\" fill-rule=\"evenodd\"/></svg>"
},
"$:/core/images/list-bullet": {
"title": "$:/core/images/list-bullet",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-list-bullet tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M11.6363636,40.2727273 C18.0629498,40.2727273 23.2727273,35.0629498 23.2727273,28.6363636 C23.2727273,22.2097775 18.0629498,17 11.6363636,17 C5.20977746,17 0,22.2097775 0,28.6363636 C0,35.0629498 5.20977746,40.2727273 11.6363636,40.2727273 Z M11.6363636,75.1818182 C18.0629498,75.1818182 23.2727273,69.9720407 23.2727273,63.5454545 C23.2727273,57.1188684 18.0629498,51.9090909 11.6363636,51.9090909 C5.20977746,51.9090909 0,57.1188684 0,63.5454545 C0,69.9720407 5.20977746,75.1818182 11.6363636,75.1818182 Z M11.6363636,110.090909 C18.0629498,110.090909 23.2727273,104.881132 23.2727273,98.4545455 C23.2727273,92.0279593 18.0629498,86.8181818 11.6363636,86.8181818 C5.20977746,86.8181818 0,92.0279593 0,98.4545455 C0,104.881132 5.20977746,110.090909 11.6363636,110.090909 Z M34.9090909,22.8181818 L128,22.8181818 L128,34.4545455 L34.9090909,34.4545455 L34.9090909,22.8181818 Z M34.9090909,57.7272727 L128,57.7272727 L128,69.3636364 L34.9090909,69.3636364 L34.9090909,57.7272727 Z M34.9090909,92.6363636 L128,92.6363636 L128,104.272727 L34.9090909,104.272727 L34.9090909,92.6363636 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/list-number": {
"title": "$:/core/images/list-number",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-list-number tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M33.8390805,22.3563218 L128,22.3563218 L128,34.1264368 L33.8390805,34.1264368 L33.8390805,22.3563218 Z M33.8390805,57.6666667 L128,57.6666667 L128,69.4367816 L33.8390805,69.4367816 L33.8390805,57.6666667 Z M33.8390805,92.9770115 L128,92.9770115 L128,104.747126 L33.8390805,104.747126 L33.8390805,92.9770115 Z M0.379509711,42.6307008 L0.379509711,40.4082314 L1.37821948,40.4082314 C2.20382368,40.4082314 2.82301754,40.268077 3.23581964,39.9877642 C3.64862174,39.7074513 3.85501969,39.0400498 3.85501969,37.9855395 L3.85501969,22.7686318 C3.85501969,21.3270228 3.66193774,20.4327047 3.27576803,20.0856507 C2.88959832,19.7385967 1.79768657,19.5650723 0,19.5650723 L0,17.4226919 C3.50215975,17.2758613 6.25191314,16.4683055 8.24934266,15 L10.3666074,15 L10.3666074,37.865406 C10.3666074,38.786434 10.5164123,39.4404875 10.8160268,39.8275862 C11.1156412,40.2146849 11.764796,40.4082314 12.7635108,40.4082314 L13.7622206,40.4082314 L13.7622206,42.6307008 L0.379509711,42.6307008 Z M0.0798967812,77.9873934 L0.0798967812,76.0852799 C7.27064304,69.5312983 10.8659622,63.5046623 10.8659622,58.005191 C10.8659622,56.4434479 10.5397203,55.195407 9.88722667,54.2610308 C9.23473303,53.3266546 8.36253522,52.8594735 7.27060709,52.8594735 C6.3784219,52.8594735 5.61608107,53.1764892 4.98356173,53.8105302 C4.35104238,54.4445712 4.03478745,55.1753759 4.03478745,56.0029663 C4.03478745,56.9773871 4.28113339,57.8316611 4.77383268,58.5658139 C4.88036225,58.7259926 4.93362624,58.8461249 4.93362624,58.9262143 C4.93362624,59.0730449 4.77383427,59.2065252 4.45424555,59.3266593 C4.2411864,59.4067486 3.70188852,59.6336652 2.83633573,60.0074156 C1.99741533,60.3811661 1.47809145,60.5680386 1.2783485,60.5680386 C1.03865696,60.5680386 0.765679018,60.1976307 0.459406492,59.4568039 C0.153133966,58.715977 0,57.9184322 0,57.0641453 C0,55.1153036 0.848894811,53.5202138 2.5467099,52.2788283 C4.24452499,51.0374428 6.34512352,50.4167594 8.84856852,50.4167594 C11.3120649,50.4167594 13.3793735,51.0874979 15.0505562,52.4289952 C16.7217389,53.7704924 17.5573177,55.5224215 17.5573177,57.684835 C17.5573177,58.9662652 17.2743527,60.2076321 16.7084144,61.4089729 C16.142476,62.6103138 14.7875733,64.4623531 12.6436656,66.9651465 C10.4997579,69.4679398 8.40914641,71.7804862 6.3717683,73.902855 L17.8169822,73.902855 L16.7982982,79.6292176 L14.6810335,79.6292176 C14.7609307,79.3489048 14.8008787,79.0952922 14.8008787,78.8683723 C14.8008787,78.4812736 14.7010087,78.237672 14.5012658,78.1375603 C14.3015228,78.0374485 13.9020429,77.9873934 13.3028141,77.9873934 L0.0798967812,77.9873934 Z M12.2042333,97.1935484 C13.9486551,97.2335931 15.4400468,97.8309175 16.6784531,98.9855395 C17.9168594,100.140162 18.5360532,101.75861 18.5360532,103.840934 C18.5360532,106.830938 17.4041935,109.233584 15.14044,111.048943 C12.8766866,112.864303 10.1402492,113.771969 6.93104577,113.771969 C4.92030005,113.771969 3.26245842,113.388213 1.95747114,112.62069 C0.652483855,111.853166 0,110.848727 0,109.607341 C0,108.833144 0.26964894,108.209124 0.808954909,107.735261 C1.34826088,107.261399 1.93749375,107.024472 2.57667119,107.024472 C3.21584864,107.024472 3.73850152,107.224692 4.14464552,107.625139 C4.55078953,108.025586 4.92696644,108.67964 5.27318756,109.587319 C5.73925445,110.855401 6.51158227,111.489433 7.59019421,111.489433 C8.85523291,111.489433 9.87723568,111.012241 10.6562332,110.057842 C11.4352307,109.103444 11.8247236,107.371536 11.8247236,104.862069 C11.8247236,103.153495 11.7048796,101.838714 11.4651881,100.917686 C11.2254966,99.9966584 10.6728827,99.5361513 9.80732989,99.5361513 C9.22141723,99.5361513 8.62219737,99.843156 8.00965231,100.457175 C7.51695303,100.951059 7.07752513,101.197998 6.69135542,101.197998 C6.3584505,101.197998 6.08880156,101.051169 5.88240051,100.757508 C5.67599946,100.463847 5.57280049,100.183539 5.57280049,99.916574 C5.57280049,99.5962164 5.67599946,99.3225818 5.88240051,99.0956618 C6.08880156,98.8687419 6.57150646,98.5016711 7.33052967,97.9944383 C10.2068282,96.0722929 11.6449559,93.9766521 11.6449559,91.7074527 C11.6449559,90.5194601 11.3386879,89.615131 10.7261429,88.9944383 C10.1135978,88.3737455 9.37455999,88.0634038 8.5090072,88.0634038 C7.71003539,88.0634038 6.98431355,88.3270274 6.33181991,88.8542825 C5.67932627,89.3815377 5.35308434,90.0122321 5.35308434,90.7463849 C5.35308434,91.3871 5.60608828,91.9810874 6.11210376,92.5283648 C6.28521432,92.7285883 6.3717683,92.8954387 6.3717683,93.028921 C6.3717683,93.1490551 5.80250943,93.4560598 4.6639746,93.9499444 C3.52543978,94.4438289 2.80970494,94.6907675 2.51674861,94.6907675 C2.10394651,94.6907675 1.76771758,94.3570667 1.50805174,93.6896552 C1.24838591,93.0222436 1.11855494,92.4082342 1.11855494,91.8476085 C1.11855494,90.0989901 2.04734573,88.6240327 3.90495518,87.4226919 C5.76256463,86.2213511 7.86982116,85.6206897 10.226788,85.6206897 C12.2907985,85.6206897 14.0784711,86.0678487 15.5898594,86.9621802 C17.1012478,87.8565117 17.8569306,89.0778566 17.8569306,90.6262514 C17.8569306,91.987771 17.2876717,93.2491599 16.1491369,94.4104561 C15.0106021,95.5717522 13.6956474,96.4994404 12.2042333,97.1935484 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/list": {
"title": "$:/core/images/list",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-list tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M0.719999312,185.568543 C2.21955287,181.862817 3.0452019,177.812144 3.0452019,173.568542 C3.0452019,155.891545 -11.2816707,141.568542 -28.9547636,141.568542 L-60.9548326,141.568542 C-78.6344937,141.568542 -92.9547981,155.895431 -92.9547981,173.568542 C-92.9547981,191.24554 -78.6279255,205.568542 -60.9548326,205.568542 L-28.9547636,205.568542 C-27.593228,205.568542 -26.2516158,205.483573 -24.9349335,205.31865 C-31.5207556,201.78951 -36.8809788,196.272192 -40.2126959,189.568542 L-60.9493786,189.568542 C-69.7889277,189.568542 -76.9547981,182.407041 -76.9547981,173.568542 C-76.9547981,164.731986 -69.7994766,157.568542 -60.9493786,157.568542 L-28.9602176,157.568542 C-20.1206685,157.568542 -12.9547981,164.730044 -12.9547981,173.568542 C-12.9547981,176.946528 -14.0004297,180.080016 -15.7866505,182.6623 C-13.6856165,184.473592 -10.949961,185.568542 -7.9585771,185.568542 L0.720002586,185.568542 Z\" transform=\"translate(-44.954798, 173.568542) rotate(-225.000000) translate(44.954798, -173.568542) \"></path>\n <path d=\"M87.7480315,128 L23.9992458,128 C19.5813843,128 16,124.409247 16,119.993027 L16,8.00697327 C16,3.58484404 19.5881049,0 23.9992458,0 L104.000754,0 C108.418616,0 112,3.59075293 112,8.00697327 L112,104 L91.2492027,104 C90.2848199,104 89.410573,104.391703 88.7768998,105.025201 C88.1373658,105.661376 87.7480315,106.53563 87.7480315,107.501171 L87.7480315,128 Z M95.7480315,127.879386 L111.627417,112 L95.7480315,112 L95.7480315,127.879386 Z M40,15.5089165 C40,13.5709954 41.5636015,12 43.4998101,12 L98.5001899,12 C100.433082,12 102,13.5614718 102,15.5089165 L102,16.4910835 C102,18.4290046 100.436399,20 98.5001899,20 L43.4998101,20 C41.5669183,20 40,18.4385282 40,16.4910835 L40,15.5089165 Z M32,22 C35.3137085,22 38,19.3137085 38,16 C38,12.6862915 35.3137085,10 32,10 C28.6862915,10 26,12.6862915 26,16 C26,19.3137085 28.6862915,22 32,22 Z M40,31.5089165 C40,29.5709954 41.5636015,28 43.4998101,28 L98.5001899,28 C100.433082,28 102,29.5614718 102,31.5089165 L102,32.4910835 C102,34.4290046 100.436399,36 98.5001899,36 L43.4998101,36 C41.5669183,36 40,34.4385282 40,32.4910835 L40,31.5089165 Z M40,47.5089165 C40,45.5709954 41.5636015,44 43.4998101,44 L98.5001899,44 C100.433082,44 102,45.5614718 102,47.5089165 L102,48.4910835 C102,50.4290046 100.436399,52 98.5001899,52 L43.4998101,52 C41.5669183,52 40,50.4385282 40,48.4910835 L40,47.5089165 Z M40,63.5089165 C40,61.5709954 41.5636015,60 43.4998101,60 L98.5001899,60 C100.433082,60 102,61.5614718 102,63.5089165 L102,64.4910835 C102,66.4290046 100.436399,68 98.5001899,68 L43.4998101,68 C41.5669183,68 40,66.4385282 40,64.4910835 L40,63.5089165 Z M40,79.5089165 C40,77.5709954 41.5636015,76 43.4998101,76 L98.5001899,76 C100.433082,76 102,77.5614718 102,79.5089165 L102,80.4910835 C102,82.4290046 100.436399,84 98.5001899,84 L43.4998101,84 C41.5669183,84 40,82.4385282 40,80.4910835 L40,79.5089165 Z M40,95.5089165 C40,93.5709954 41.5636015,92 43.4998101,92 L98.5001899,92 C100.433082,92 102,93.5614718 102,95.5089165 L102,96.4910835 C102,98.4290046 100.436399,100 98.5001899,100 L43.4998101,100 C41.5669183,100 40,98.4385282 40,96.4910835 L40,95.5089165 Z M40,111.508916 C40,109.570995 41.5680474,108 43.4972017,108 L76.5027983,108 C78.4342495,108 80,109.561472 80,111.508916 L80,112.491084 C80,114.429005 78.4319526,116 76.5027983,116 L43.4972017,116 C41.5657505,116 40,114.438528 40,112.491084 L40,111.508916 Z M32,38 C35.3137085,38 38,35.3137085 38,32 C38,28.6862915 35.3137085,26 32,26 C28.6862915,26 26,28.6862915 26,32 C26,35.3137085 28.6862915,38 32,38 Z M32,54 C35.3137085,54 38,51.3137085 38,48 C38,44.6862915 35.3137085,42 32,42 C28.6862915,42 26,44.6862915 26,48 C26,51.3137085 28.6862915,54 32,54 Z M32,70 C35.3137085,70 38,67.3137085 38,64 C38,60.6862915 35.3137085,58 32,58 C28.6862915,58 26,60.6862915 26,64 C26,67.3137085 28.6862915,70 32,70 Z M32,86 C35.3137085,86 38,83.3137085 38,80 C38,76.6862915 35.3137085,74 32,74 C28.6862915,74 26,76.6862915 26,80 C26,83.3137085 28.6862915,86 32,86 Z M32,102 C35.3137085,102 38,99.3137085 38,96 C38,92.6862915 35.3137085,90 32,90 C28.6862915,90 26,92.6862915 26,96 C26,99.3137085 28.6862915,102 32,102 Z M32,118 C35.3137085,118 38,115.313708 38,112 C38,108.686292 35.3137085,106 32,106 C28.6862915,106 26,108.686292 26,112 C26,115.313708 28.6862915,118 32,118 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/locked-padlock": {
"title": "$:/core/images/locked-padlock",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-locked-padlock tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M96.4723753,64 L105,64 L105,96.0097716 C105,113.673909 90.6736461,128 73.001193,128 L55.998807,128 C38.3179793,128 24,113.677487 24,96.0097716 L24,64 L32.0000269,64 C32.0028554,48.2766389 32.3030338,16.2688026 64.1594984,16.2688041 C95.9543927,16.2688056 96.4648869,48.325931 96.4723753,64 Z M80.5749059,64 L48.4413579,64 C48.4426205,47.71306 48.5829272,31.9999996 64.1595001,31.9999996 C79.8437473,31.9999996 81.1369461,48.1359182 80.5749059,64 Z M67.7315279,92.3641717 C70.8232551,91.0923621 73,88.0503841 73,84.5 C73,79.8055796 69.1944204,76 64.5,76 C59.8055796,76 56,79.8055796 56,84.5 C56,87.947435 58.0523387,90.9155206 61.0018621,92.2491029 L55.9067479,115.020857 L72.8008958,115.020857 L67.7315279,92.3641717 L67.7315279,92.3641717 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/mail": {
"title": "$:/core/images/mail",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-mail tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M122.826782,104.894066 C121.945525,105.22777 120.990324,105.41043 119.993027,105.41043 L8.00697327,105.41043 C7.19458381,105.41043 6.41045219,105.289614 5.67161357,105.064967 L5.67161357,105.064967 L39.8346483,70.9019325 L60.6765759,91.7438601 C61.6118278,92.679112 62.8865166,93.0560851 64.0946097,92.8783815 C65.2975108,93.0473238 66.5641085,92.6696979 67.4899463,91.7438601 L88.5941459,70.6396605 C88.6693095,70.7292352 88.7490098,70.8162939 88.8332479,70.9005321 L122.826782,104.894066 Z M127.903244,98.6568194 C127.966933,98.2506602 128,97.8343714 128,97.4103789 L128,33.410481 C128,32.7414504 127.917877,32.0916738 127.763157,31.4706493 L94.2292399,65.0045665 C94.3188145,65.0797417 94.4058701,65.1594458 94.4901021,65.2436778 L127.903244,98.6568194 Z M0.205060636,99.2178117 C0.0709009529,98.6370366 0,98.0320192 0,97.4103789 L0,33.410481 C0,32.694007 0.0944223363,31.9995312 0.27147538,31.3387595 L0.27147538,31.3387595 L34.1777941,65.2450783 L0.205060636,99.2178117 L0.205060636,99.2178117 Z M5.92934613,25.6829218 C6.59211333,25.5051988 7.28862283,25.4104299 8.00697327,25.4104299 L119.993027,25.4104299 C120.759109,25.4104299 121.500064,25.5178649 122.201605,25.7184927 L122.201605,25.7184927 L64.0832611,83.8368368 L5.92934613,25.6829218 L5.92934613,25.6829218 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/menu-button": {
"title": "$:/core/images/menu-button",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-menu-button tc-image-button\" viewBox=\"0 0 128 128\" width=\"22pt\" height=\"22pt\">\n <rect x=\"0\" y=\"16\" width=\"128\" height=\"16\" rx=\"8\"></rect>\n <rect x=\"0\" y=\"56\" width=\"128\" height=\"16\" rx=\"8\"></rect>\n <rect x=\"0\" y=\"96\" width=\"128\" height=\"16\" rx=\"8\"></rect>\n</svg>"
},
"$:/core/images/mono-block": {
"title": "$:/core/images/mono-block",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-mono-block tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M23.9653488,32.9670593 L24.3217888,32.9670593 C25.0766067,32.9670593 25.6497006,33.1592554 26.0410876,33.5436534 C26.4324747,33.9280514 26.6281653,34.4906619 26.6281653,35.2315017 C26.6281653,36.0562101 26.4219913,36.6502709 26.009637,37.0137017 C25.5972828,37.3771326 24.9158602,37.5588453 23.9653488,37.5588453 L17.6542639,37.5588453 C16.6897744,37.5588453 16.0048573,37.380627 15.5994921,37.0241852 C15.1941269,36.6677435 14.9914474,36.0701882 14.9914474,35.2315017 C14.9914474,34.4207713 15.1941269,33.8406885 15.5994921,33.4912358 C16.0048573,33.141783 16.6897744,32.9670593 17.6542639,32.9670593 L18.388111,32.9670593 L17.5284616,30.5139133 L8.47069195,30.5139133 L7.5691084,32.9670593 L8.30295547,32.9670593 C9.25346691,32.9670593 9.93488953,33.1452775 10.3472438,33.5017193 C10.759598,33.8581611 10.965772,34.4347494 10.965772,35.2315017 C10.965772,36.0562101 10.759598,36.6502709 10.3472438,37.0137017 C9.93488953,37.3771326 9.25346691,37.5588453 8.30295547,37.5588453 L2.89345418,37.5588453 C1.92896463,37.5588453 1.24404754,37.3771326 0.838682371,37.0137017 C0.433317198,36.6502709 0.230637652,36.0562101 0.230637652,35.2315017 C0.230637652,34.4906619 0.426328248,33.9280514 0.817715312,33.5436534 C1.20910238,33.1592554 1.78219626,32.9670593 2.53701417,32.9670593 L2.89345418,32.9670593 L8.51262607,17.3256331 L6.83526132,17.3256331 C5.88474988,17.3256331 5.20332727,17.1439204 4.79097304,16.7804895 C4.37861882,16.4170587 4.1724448,15.8299869 4.1724448,15.0192565 C4.1724448,14.1945481 4.37861882,13.6004873 4.79097304,13.2370565 C5.20332727,12.8736257 5.88474988,12.691913 6.83526132,12.691913 L14.6979086,12.691913 C15.9419603,12.691913 16.815579,13.3628521 17.318791,14.7047506 L17.318791,14.7676518 L23.9653488,32.9670593 Z M12.9786097,17.3256331 L9.9383861,26.1737321 L16.0188333,26.1737321 L12.9786097,17.3256331 Z M35.3809383,26.6979086 L35.3809383,33.0928616 L38.5259972,33.0928616 C40.7485166,33.0928616 42.3140414,32.8482484 43.2226185,32.3590146 C44.1311956,31.8697807 44.5854773,31.0520736 44.5854773,29.9058686 C44.5854773,28.7456855 44.1521624,27.9209895 43.2855197,27.4317556 C42.4188769,26.9425218 40.9022748,26.6979086 38.7356678,26.6979086 L35.3809383,26.6979086 Z M46.0741385,24.370565 C47.5977525,24.9296893 48.7159844,25.6949794 49.428868,26.666458 C50.1417516,27.6379366 50.498188,28.8784752 50.498188,30.388111 C50.498188,31.6601189 50.1906743,32.8202846 49.5756374,33.8686428 C48.9606006,34.917001 48.0799929,35.7766419 46.933788,36.4475911 C46.2628387,36.8389782 45.5115266,37.1220307 44.6798291,37.296757 C43.8481316,37.4714834 42.6704935,37.5588453 41.1468796,37.5588453 L39.3856466,37.5588453 L30.2020747,37.5588453 C29.2795194,37.5588453 28.6190637,37.3771326 28.2206876,37.0137017 C27.8223114,36.6502709 27.6231264,36.0562101 27.6231264,35.2315017 C27.6231264,34.4906619 27.811828,33.9280514 28.189237,33.5436534 C28.5666459,33.1592554 29.118773,32.9670593 29.8456347,32.9670593 L30.2020747,32.9670593 L30.2020747,17.3256331 L29.8456347,17.3256331 C29.118773,17.3256331 28.5666459,17.1299425 28.189237,16.7385554 C27.811828,16.3471683 27.6231264,15.7740744 27.6231264,15.0192565 C27.6231264,14.2085262 27.8258059,13.6179599 28.2311711,13.24754 C28.6365363,12.8771201 29.2934976,12.691913 30.2020747,12.691913 L39.8469219,12.691913 C42.796303,12.691913 45.0362615,13.2650068 46.5668644,14.4112118 C48.0974674,15.5574168 48.8627574,17.2347648 48.8627574,19.443306 C48.8627574,20.5335986 48.6286276,21.4945792 48.1603609,22.3262767 C47.6920943,23.1579742 46.9966938,23.8393968 46.0741385,24.370565 L46.0741385,24.370565 Z M35.3809383,17.1998307 L35.3809383,22.4835296 L38.2114913,22.4835296 C39.9307988,22.4835296 41.1433816,22.2808501 41.8492761,21.8754849 C42.5551706,21.4701197 42.9081126,20.7852027 42.9081126,19.8207131 C42.9081126,18.912136 42.5901154,18.2481858 41.9541114,17.8288425 C41.3181074,17.4094992 40.2872373,17.1998307 38.8614701,17.1998307 L35.3809383,17.1998307 Z M71.244119,13.3838259 C71.5236812,12.880614 71.8102281,12.5241775 72.1037684,12.3145059 C72.3973087,12.1048342 72.7677231,12 73.2150226,12 C73.8999499,12 74.3856819,12.1817127 74.6722332,12.5451435 C74.9587844,12.9085744 75.1020579,13.5305909 75.1020579,14.4112118 L75.143992,19.8626472 C75.143992,20.8271368 74.9867406,21.4771091 74.6722332,21.8125837 C74.3577257,22.1480584 73.7881263,22.3157932 72.9634178,22.3157932 C72.3763372,22.3157932 71.92555,22.1760142 71.6110425,21.896452 C71.2965351,21.6168898 71.0274605,21.0997075 70.8038107,20.3448896 C70.4403799,19.0169692 69.8602971,18.0629775 69.0635448,17.482886 C68.2667926,16.9027945 67.1625385,16.612753 65.7507494,16.612753 C63.5981206,16.612753 61.9487284,17.3396038 60.8025235,18.7933272 C59.6563185,20.2470506 59.0832246,22.3507245 59.0832246,25.104412 C59.0832246,27.8441215 59.6633074,29.9477954 60.8234905,31.4154969 C61.9836736,32.8831984 63.6400547,33.6170381 65.7926836,33.6170381 C67.2603851,33.6170381 68.878327,33.1278116 70.6465578,32.149344 C72.4147886,31.1708763 73.5295261,30.6816498 73.9908037,30.6816498 C74.53595,30.6816498 74.9937262,30.9122852 75.3641461,31.3735628 C75.734566,31.8348404 75.9197732,32.4079343 75.9197732,33.0928616 C75.9197732,34.3229353 74.836486,35.4831009 72.669879,36.5733935 C70.5032721,37.663686 68.0641285,38.2088241 65.3523753,38.2088241 C61.6901107,38.2088241 58.7267959,36.9997358 56.4623422,34.5815228 C54.1978885,32.1633099 53.0656786,29.0043046 53.0656786,25.104412 C53.0656786,21.3443006 54.2118664,18.22024 56.5042763,15.7321366 C58.7966863,13.2440331 61.7040894,12 65.226573,12 C66.2190187,12 67.1974717,12.1118232 68.1619613,12.3354729 C69.1264508,12.5591227 70.1538264,12.9085702 71.244119,13.3838259 L71.244119,13.3838259 Z M81.4645862,32.9670593 L81.4645862,17.3256331 L81.1081461,17.3256331 C80.3533282,17.3256331 79.7802344,17.1299425 79.3888473,16.7385554 C78.9974602,16.3471683 78.8017696,15.7740744 78.8017696,15.0192565 C78.8017696,14.2085262 79.0114381,13.6179599 79.4307814,13.24754 C79.8501247,12.8771201 80.5280528,12.691913 81.4645862,12.691913 L85.4063933,12.691913 L86.6434498,12.691913 C89.5648747,12.691913 91.7034933,12.8177141 93.0593699,13.06932 C94.4152465,13.320926 95.5684233,13.740263 96.5189347,14.3273436 C98.210286,15.3337675 99.5067362,16.7699967 100.408324,18.6360743 C101.309912,20.5021519 101.7607,22.6582429 101.7607,25.104412 C101.7607,27.6903623 101.247012,29.9512876 100.219621,31.8872557 C99.1922296,33.8232239 97.7350336,35.2874089 95.8479888,36.2798546 C94.9953241,36.7271541 93.9959043,37.0521403 92.8496993,37.2548229 C91.7034944,37.4575055 89.9981906,37.5588453 87.7337369,37.5588453 L85.4063933,37.5588453 L81.4645862,37.5588453 C80.5000966,37.5588453 79.8151795,37.380627 79.4098143,37.0241852 C79.0044492,36.6677435 78.8017696,36.0701882 78.8017696,35.2315017 C78.8017696,34.4906619 78.9974602,33.9280514 79.3888473,33.5436534 C79.7802344,33.1592554 80.3533282,32.9670593 81.1081461,32.9670593 L81.4645862,32.9670593 Z M86.8740874,17.2417648 L86.8740874,32.9670593 L88.0692098,32.9670593 C90.7110725,32.9670593 92.6609895,32.3205814 93.9190194,31.0276063 C95.1770492,29.7346312 95.8060547,27.7462749 95.8060547,25.0624779 C95.8060547,22.4206153 95.1665658,20.4497314 93.8875688,19.1497672 C92.6085718,17.849803 90.6831161,17.1998307 88.1111439,17.1998307 C87.7756693,17.1998307 87.5205727,17.2033252 87.3458463,17.2103142 C87.1711199,17.2173033 87.0138685,17.2277867 86.8740874,17.2417648 L86.8740874,17.2417648 Z M121.94052,17.1159625 L112.190837,17.1159625 L112.190837,22.4835296 L115.88104,22.4835296 L115.88104,22.2319249 C115.88104,21.4351727 116.055763,20.841112 116.405216,20.4497249 C116.754669,20.0583378 117.285829,19.8626472 117.998713,19.8626472 C118.627728,19.8626472 119.141415,20.0408655 119.539792,20.3973072 C119.938168,20.753749 120.137353,21.2045363 120.137353,21.7496826 C120.137353,21.7776388 120.144342,21.8684951 120.15832,22.0222543 C120.172298,22.1760135 120.179287,22.3297704 120.179287,22.4835296 L120.179287,26.8237109 C120.179287,27.7602442 120.011552,28.4311834 119.676077,28.8365486 C119.340603,29.2419138 118.795465,29.4445933 118.040647,29.4445933 C117.327763,29.4445933 116.789614,29.2558917 116.426183,28.8784827 C116.062752,28.5010738 115.88104,27.9419578 115.88104,27.201118 L115.88104,26.8237109 L112.190837,26.8237109 L112.190837,33.0928616 L121.94052,33.0928616 L121.94052,30.5977816 C121.94052,29.6612482 122.118738,28.9903091 122.47518,28.5849439 C122.831622,28.1795787 123.415199,27.9768992 124.225929,27.9768992 C125.022682,27.9768992 125.592281,28.1760842 125.934745,28.5744604 C126.277208,28.9728365 126.448438,29.6472701 126.448438,30.5977816 L126.448438,35.6718099 C126.448438,36.4266278 126.30167,36.9298322 126.008129,37.1814382 C125.714589,37.4330442 125.134506,37.5588453 124.267863,37.5588453 L107.095842,37.5588453 C106.173287,37.5588453 105.512831,37.3771326 105.114455,37.0137017 C104.716079,36.6502709 104.516894,36.0562101 104.516894,35.2315017 C104.516894,34.4906619 104.705595,33.9280514 105.083004,33.5436534 C105.460413,33.1592554 106.01254,32.9670593 106.739402,32.9670593 L107.095842,32.9670593 L107.095842,17.3256331 L106.739402,17.3256331 C106.026518,17.3256331 105.477886,17.126448 105.093488,16.7280719 C104.70909,16.3296957 104.516894,15.7600963 104.516894,15.0192565 C104.516894,14.2085262 104.719573,13.6179599 105.124938,13.24754 C105.530304,12.8771201 106.187265,12.691913 107.095842,12.691913 L124.267863,12.691913 C125.120528,12.691913 125.697116,12.8212085 125.997646,13.0798036 C126.298175,13.3383986 126.448438,13.8520864 126.448438,14.6208824 L126.448438,19.3175037 C126.448438,20.2680151 126.273714,20.9494377 125.924261,21.361792 C125.574808,21.7741462 125.008703,21.9803202 124.225929,21.9803202 C123.415199,21.9803202 122.831622,21.7706517 122.47518,21.3513084 C122.118738,20.9319652 121.94052,20.254037 121.94052,19.3175037 L121.94052,17.1159625 Z M19.7719369,47.6405477 C20.037521,47.1373358 20.3205734,46.7808993 20.6211028,46.5712277 C20.9216322,46.361556 21.295541,46.2567218 21.7428405,46.2567218 C22.4277678,46.2567218 22.9134998,46.4384345 23.2000511,46.8018653 C23.4866023,47.1652962 23.6298758,47.7873127 23.6298758,48.6679336 L23.6718099,54.119369 C23.6718099,55.0838586 23.5145586,55.7338309 23.2000511,56.0693055 C22.8855436,56.4047802 22.3089553,56.572515 21.4702687,56.572515 C20.8831881,56.572515 20.4254119,56.4292415 20.0969263,56.1426902 C19.7684407,55.856139 19.4993662,55.3424512 19.2896945,54.6016114 C18.9122856,53.2597129 18.3322027,52.3022267 17.5494286,51.7291243 C16.7666545,51.1560218 15.6693894,50.8694748 14.2576003,50.8694748 C12.1049715,50.8694748 10.4590738,51.5963256 9.31985785,53.050049 C8.18064193,54.5037724 7.61104252,56.6074463 7.61104252,59.3611338 C7.61104252,62.1148214 8.20859773,64.2429566 9.40372609,65.7456034 C10.5988544,67.2482501 12.2936748,67.9995623 14.488238,67.9995623 C14.9914499,67.9995623 15.5645438,67.9401562 16.2075368,67.8213423 C16.8505299,67.7025283 17.6053364,67.5173212 18.4719792,67.2657152 L18.4719792,63.9529198 L16.1027015,63.9529198 C15.1521901,63.9529198 14.4777564,63.7781961 14.0793803,63.4287433 C13.6810042,63.0792906 13.4818191,62.4992078 13.4818191,61.6884774 C13.4818191,60.8497908 13.6810042,60.2522356 14.0793803,59.8957938 C14.4777564,59.5393521 15.1521901,59.3611338 16.1027015,59.3611338 L23.6718099,59.3611338 C24.6502776,59.3611338 25.3386891,59.5358576 25.7370653,59.8853103 C26.1354414,60.2347631 26.3346265,60.8218348 26.3346265,61.6465433 C26.3346265,62.3873831 26.1354414,62.9569825 25.7370653,63.3553586 C25.3386891,63.7537347 24.7621008,63.9529198 24.0072829,63.9529198 L23.6718099,63.9529198 L23.6718099,68.9430799 L23.6718099,69.1946846 C23.6718099,69.6419841 23.6228873,69.9529924 23.5250405,70.1277188 C23.4271937,70.3024451 23.2315031,70.4806634 22.9379628,70.6623788 C22.1412106,71.1376345 20.8762107,71.5569715 19.1429251,71.9204023 C17.4096396,72.2838332 15.6554131,72.4655459 13.8801932,72.4655459 C10.2179286,72.4655459 7.25461383,71.2564576 4.99016011,68.8382446 C2.72570638,66.4200317 1.59349651,63.2610264 1.59349651,59.3611338 C1.59349651,55.6010224 2.73968428,52.4769618 5.03209423,49.9888583 C7.32450417,47.5007549 10.2319073,46.2567218 13.7543909,46.2567218 C14.7328585,46.2567218 15.7078171,46.368545 16.6792957,46.5921947 C17.6507743,46.8158445 18.6816444,47.165292 19.7719369,47.6405477 L19.7719369,47.6405477 Z M35.611576,51.5823548 L35.611576,56.4047785 L42.4678043,56.4047785 L42.4678043,51.5823548 L42.1323314,51.5823548 C41.3775135,51.5823548 40.8009251,51.3866642 40.402549,50.9952772 C40.0041729,50.6038901 39.8049878,50.0307962 39.8049878,49.2759783 C39.8049878,48.4512699 40.0111618,47.8572091 40.4235161,47.4937783 C40.8358703,47.1303474 41.5172929,46.9486347 42.4678043,46.9486347 L47.8773056,46.9486347 C48.8278171,46.9486347 49.5022507,47.1303474 49.9006269,47.4937783 C50.299003,47.8572091 50.498188,48.4512699 50.498188,49.2759783 C50.498188,50.0307962 50.3059919,50.6038901 49.9215939,50.9952772 C49.5371959,51.3866642 48.9745854,51.5823548 48.2337456,51.5823548 L47.8773056,51.5823548 L47.8773056,67.2237811 L48.2337456,67.2237811 C48.9885636,67.2237811 49.5616574,67.4159772 49.9530445,67.8003752 C50.3444316,68.1847732 50.5401222,68.7473837 50.5401222,69.4882235 C50.5401222,70.3129319 50.3374426,70.9069927 49.9320774,71.2704235 C49.5267123,71.6338543 48.8417952,71.815567 47.8773056,71.815567 L42.4678043,71.815567 C41.5033148,71.815567 40.8183977,71.6373488 40.4130325,71.280907 C40.0076674,70.9244652 39.8049878,70.32691 39.8049878,69.4882235 C39.8049878,68.7473837 40.0041729,68.1847732 40.402549,67.8003752 C40.8009251,67.4159772 41.3775135,67.2237811 42.1323314,67.2237811 L42.4678043,67.2237811 L42.4678043,61.0384986 L35.611576,61.0384986 L35.611576,67.2237811 L35.9470489,67.2237811 C36.7018668,67.2237811 37.2784552,67.4159772 37.6768313,67.8003752 C38.0752074,68.1847732 38.2743925,68.7473837 38.2743925,69.4882235 C38.2743925,70.3129319 38.0682185,70.9069927 37.6558642,71.2704235 C37.24351,71.6338543 36.5620874,71.815567 35.611576,71.815567 L30.2020747,71.815567 C29.2375851,71.815567 28.552668,71.6373488 28.1473029,71.280907 C27.7419377,70.9244652 27.5392581,70.32691 27.5392581,69.4882235 C27.5392581,68.7473837 27.7349487,68.1847732 28.1263358,67.8003752 C28.5177229,67.4159772 29.0908168,67.2237811 29.8456347,67.2237811 L30.2020747,67.2237811 L30.2020747,51.5823548 L29.8456347,51.5823548 C29.1047949,51.5823548 28.5421844,51.3866642 28.1577864,50.9952772 C27.7733884,50.6038901 27.5811923,50.0307962 27.5811923,49.2759783 C27.5811923,48.4512699 27.7803773,47.8572091 28.1787534,47.4937783 C28.5771296,47.1303474 29.2515632,46.9486347 30.2020747,46.9486347 L35.611576,46.9486347 C36.5481093,46.9486347 37.2260374,47.1303474 37.6453807,47.4937783 C38.064724,47.8572091 38.2743925,48.4512699 38.2743925,49.2759783 C38.2743925,50.0307962 38.0752074,50.6038901 37.6768313,50.9952772 C37.2784552,51.3866642 36.7018668,51.5823548 35.9470489,51.5823548 L35.611576,51.5823548 Z M67.365213,51.5823548 L67.365213,67.2237811 L70.887679,67.2237811 C71.8381904,67.2237811 72.519613,67.4019993 72.9319673,67.7584411 C73.3443215,68.1148829 73.5504955,68.6914712 73.5504955,69.4882235 C73.5504955,70.2989538 73.340827,70.8895201 72.9214837,71.25994 C72.5021404,71.6303599 71.8242123,71.815567 70.887679,71.815567 L58.4332458,71.815567 C57.4827343,71.815567 56.8013117,71.6338543 56.3889575,71.2704235 C55.9766033,70.9069927 55.7704292,70.3129319 55.7704292,69.4882235 C55.7704292,68.6774931 55.9731088,68.0974103 56.378474,67.7479575 C56.7838391,67.3985048 57.4687562,67.2237811 58.4332458,67.2237811 L61.9557117,67.2237811 L61.9557117,51.5823548 L58.4332458,51.5823548 C57.4827343,51.5823548 56.8013117,51.4006421 56.3889575,51.0372113 C55.9766033,50.6737805 55.7704292,50.0867087 55.7704292,49.2759783 C55.7704292,48.4512699 55.9731088,47.8641981 56.378474,47.5147453 C56.7838391,47.1652926 57.4687562,46.9905689 58.4332458,46.9905689 L70.887679,46.9905689 C71.8801247,46.9905689 72.5720308,47.1652926 72.9634178,47.5147453 C73.3548049,47.8641981 73.5504955,48.4512699 73.5504955,49.2759783 C73.5504955,50.0867087 73.347816,50.6737805 72.9424508,51.0372113 C72.5370856,51.4006421 71.8521685,51.5823548 70.887679,51.5823548 L67.365213,51.5823548 Z M97.8608265,51.5823548 L97.8608265,63.1771386 L97.8608265,63.5755127 C97.8608265,65.4485794 97.7385199,66.8044357 97.493903,67.6431222 C97.2492861,68.4818088 96.8404325,69.2296264 96.26733,69.8865976 C95.5264902,70.7392623 94.4991146,71.3822457 93.1851723,71.815567 C91.87123,72.2488884 90.2917273,72.4655459 88.4466169,72.4655459 C87.1466527,72.4655459 85.8921362,72.3397448 84.6830298,72.0881388 C83.4739233,71.8365328 82.3102631,71.4591296 81.1920144,70.9559176 C80.5769776,70.6763554 80.175113,70.31293 79.9864085,69.8656305 C79.797704,69.418331 79.7033532,68.6914802 79.7033532,67.6850564 L79.7033532,63.3658422 C79.7033532,62.1637247 79.8780769,61.3250508 80.2275297,60.849795 C80.5769824,60.3745393 81.185021,60.136915 82.0516638,60.136915 C83.2957156,60.136915 83.9806326,61.0524675 84.1064356,62.8835998 C84.1204137,63.2050963 84.1413806,63.4497096 84.1693368,63.6174469 C84.3370741,65.2389076 84.7144774,66.3466561 85.301558,66.9407258 C85.8886386,67.5347954 86.8251579,67.8318258 88.1111439,67.8318258 C89.7046484,67.8318258 90.8263749,67.4089943 91.476357,66.5633187 C92.126339,65.7176431 92.4513252,64.1765796 92.4513252,61.9400821 L92.4513252,51.5823548 L88.9288593,51.5823548 C87.9783478,51.5823548 87.2969252,51.4006421 86.884571,51.0372113 C86.4722168,50.6737805 86.2660427,50.0867087 86.2660427,49.2759783 C86.2660427,48.4512699 86.4652278,47.8641981 86.8636039,47.5147453 C87.26198,47.1652926 87.9503916,46.9905689 88.9288593,46.9905689 L99.6220595,46.9905689 C100.600527,46.9905689 101.288939,47.1652926 101.687315,47.5147453 C102.085691,47.8641981 102.284876,48.4512699 102.284876,49.2759783 C102.284876,50.0867087 102.078702,50.6737805 101.666348,51.0372113 C101.253994,51.4006421 100.572571,51.5823548 99.6220595,51.5823548 L97.8608265,51.5823548 Z M112.505343,51.5823548 L112.505343,57.9353738 L118.984165,51.4565525 C118.257303,51.3726838 117.747109,51.1665098 117.453569,50.8380242 C117.160029,50.5095387 117.013261,49.9888619 117.013261,49.2759783 C117.013261,48.4512699 117.212446,47.8572091 117.610822,47.4937783 C118.009198,47.1303474 118.683632,46.9486347 119.634143,46.9486347 L124.771073,46.9486347 C125.721584,46.9486347 126.396018,47.1303474 126.794394,47.4937783 C127.19277,47.8572091 127.391955,48.4512699 127.391955,49.2759783 C127.391955,50.0447743 127.19277,50.6213627 126.794394,51.0057607 C126.396018,51.3901587 125.812441,51.5823548 125.043645,51.5823548 L124.561402,51.5823548 L118.459988,57.641835 C119.592215,58.4805215 120.626579,59.5812811 121.563113,60.9441468 C122.499646,62.3070125 123.596911,64.400203 124.854941,67.2237811 L125.127513,67.2237811 L125.546854,67.2237811 C126.371563,67.2237811 126.98659,67.4124827 127.391955,67.7898917 C127.79732,68.1673006 128,68.7334056 128,69.4882235 C128,70.3129319 127.793826,70.9069927 127.381472,71.2704235 C126.969118,71.6338543 126.287695,71.815567 125.337183,71.815567 L122.758235,71.815567 C121.626008,71.815567 120.710456,71.0537715 120.01155,69.5301576 C119.885747,69.2505954 119.787902,69.026949 119.718012,68.8592117 C118.795456,66.9022764 117.949793,65.3926632 117.180997,64.3303269 C116.412201,63.2679906 115.510627,62.2965265 114.476247,61.4159056 L112.505343,63.302941 L112.505343,67.2237811 L112.840816,67.2237811 C113.595634,67.2237811 114.172222,67.4159772 114.570599,67.8003752 C114.968975,68.1847732 115.16816,68.7473837 115.16816,69.4882235 C115.16816,70.3129319 114.961986,70.9069927 114.549631,71.2704235 C114.137277,71.6338543 113.455855,71.815567 112.505343,71.815567 L107.095842,71.815567 C106.131352,71.815567 105.446435,71.6373488 105.04107,71.280907 C104.635705,70.9244652 104.433025,70.32691 104.433025,69.4882235 C104.433025,68.7473837 104.628716,68.1847732 105.020103,67.8003752 C105.41149,67.4159772 105.984584,67.2237811 106.739402,67.2237811 L107.095842,67.2237811 L107.095842,51.5823548 L106.739402,51.5823548 C105.998562,51.5823548 105.435952,51.3866642 105.051554,50.9952772 C104.667156,50.6038901 104.474959,50.0307962 104.474959,49.2759783 C104.474959,48.4512699 104.674145,47.8572091 105.072521,47.4937783 C105.470897,47.1303474 106.14533,46.9486347 107.095842,46.9486347 L112.505343,46.9486347 C113.441877,46.9486347 114.119805,47.1303474 114.539148,47.4937783 C114.958491,47.8572091 115.16816,48.4512699 115.16816,49.2759783 C115.16816,50.0307962 114.968975,50.6038901 114.570599,50.9952772 C114.172222,51.3866642 113.595634,51.5823548 112.840816,51.5823548 L112.505343,51.5823548 Z M13.439885,96.325622 L17.4445933,84.4372993 C17.6961993,83.6545252 18.0456468,83.0849258 18.4929463,82.728484 C18.9402458,82.3720422 19.5343065,82.193824 20.2751463,82.193824 L23.5460076,82.193824 C24.496519,82.193824 25.1779416,82.3755367 25.5902958,82.7389675 C26.0026501,83.1023984 26.2088241,83.6964591 26.2088241,84.5211676 C26.2088241,85.2759855 26.009639,85.8490794 25.6112629,86.2404664 C25.2128868,86.6318535 24.6362984,86.8275441 23.8814805,86.8275441 L23.5460076,86.8275441 L24.1330852,102.46897 L24.4895252,102.46897 C25.2443431,102.46897 25.8104481,102.661166 26.187857,103.045564 C26.565266,103.429962 26.7539676,103.992573 26.7539676,104.733413 C26.7539676,105.558121 26.5547826,106.152182 26.1564064,106.515613 C25.7580303,106.879044 25.0835967,107.060756 24.1330852,107.060756 L19.4154969,107.060756 C18.4649855,107.060756 17.7905518,106.882538 17.3921757,106.526096 C16.9937996,106.169654 16.7946145,105.572099 16.7946145,104.733413 C16.7946145,103.992573 16.9868106,103.429962 17.3712086,103.045564 C17.7556066,102.661166 18.325206,102.46897 19.0800239,102.46897 L19.4154969,102.46897 L19.1219581,89.6790642 L16.0607674,99.1981091 C15.8371177,99.9109927 15.5191204,100.42468 15.1067662,100.739188 C14.694412,101.053695 14.1248126,101.210947 13.3979509,101.210947 C12.6710892,101.210947 12.0945008,101.053695 11.6681685,100.739188 C11.2418362,100.42468 10.91685,99.9109927 10.6932002,99.1981091 L7.65297664,89.6790642 L7.35943781,102.46897 L7.69491075,102.46897 C8.44972866,102.46897 9.01932808,102.661166 9.40372609,103.045564 C9.78812409,103.429962 9.98032022,103.992573 9.98032022,104.733413 C9.98032022,105.558121 9.77764067,106.152182 9.3722755,106.515613 C8.96691032,106.879044 8.29597114,107.060756 7.35943781,107.060756 L2.62088241,107.060756 C1.68434908,107.060756 1.01340989,106.879044 0.608044719,106.515613 C0.202679546,106.152182 0,105.558121 0,104.733413 C0,103.992573 0.192196121,103.429962 0.57659413,103.045564 C0.960992139,102.661166 1.53059155,102.46897 2.28540946,102.46897 L2.62088241,102.46897 L3.22892713,86.8275441 L2.89345418,86.8275441 C2.13863627,86.8275441 1.56204791,86.6318535 1.16367179,86.2404664 C0.765295672,85.8490794 0.5661106,85.2759855 0.5661106,84.5211676 C0.5661106,83.6964591 0.772284622,83.1023984 1.18463885,82.7389675 C1.59699308,82.3755367 2.27841569,82.193824 3.22892713,82.193824 L6.49978838,82.193824 C7.22665007,82.193824 7.81022738,82.3685477 8.25053783,82.7180005 C8.69084827,83.0674532 9.05077919,83.6405471 9.33034138,84.4372993 L13.439885,96.325622 Z M43.8935644,98.3803938 L43.8935644,86.8275441 L42.7403761,86.8275441 C41.8178209,86.8275441 41.1573651,86.6458314 40.758989,86.2824006 C40.3606129,85.9189697 40.1614278,85.3318979 40.1614278,84.5211676 C40.1614278,83.7104372 40.3606129,83.119871 40.758989,82.7494511 C41.1573651,82.3790312 41.8178209,82.193824 42.7403761,82.193824 L48.6950209,82.193824 C49.6035981,82.193824 50.2605593,82.3790312 50.6659245,82.7494511 C51.0712897,83.119871 51.2739692,83.7104372 51.2739692,84.5211676 C51.2739692,85.2620074 51.0817731,85.8316068 50.6973751,86.2299829 C50.3129771,86.628359 49.7643445,86.8275441 49.051461,86.8275441 L48.6950209,86.8275441 L48.6950209,105.865634 C48.6950209,106.522605 48.6251315,106.934953 48.4853504,107.10269 C48.3455693,107.270428 48.0310665,107.354295 47.5418327,107.354295 L45.4451268,107.354295 C44.7741775,107.354295 44.3024234,107.284406 44.0298503,107.144625 C43.7572771,107.004843 43.5231473,106.76023 43.3274538,106.410777 L34.6051571,91.0838571 L34.6051571,102.46897 L35.8212466,102.46897 C36.7298237,102.46897 37.379796,102.643694 37.7711831,102.993147 C38.1625701,103.3426 38.3582607,103.922682 38.3582607,104.733413 C38.3582607,105.558121 38.1590757,106.152182 37.7606995,106.515613 C37.3623234,106.879044 36.7158456,107.060756 35.8212466,107.060756 L29.8037005,107.060756 C28.8951234,107.060756 28.2381621,106.879044 27.832797,106.515613 C27.4274318,106.152182 27.2247522,105.558121 27.2247522,104.733413 C27.2247522,103.992573 27.4134539,103.429962 27.7908629,103.045564 C28.1682718,102.661166 28.7273878,102.46897 29.4682276,102.46897 L29.8037005,102.46897 L29.8037005,86.8275441 L29.4682276,86.8275441 C28.755344,86.8275441 28.203217,86.628359 27.8118299,86.2299829 C27.4204428,85.8316068 27.2247522,85.2620074 27.2247522,84.5211676 C27.2247522,83.7104372 27.4309263,83.119871 27.8432805,82.7494511 C28.2556347,82.3790312 28.9091015,82.193824 29.8037005,82.193824 L33.2422983,82.193824 C34.0670067,82.193824 34.6261227,82.3021527 34.919663,82.5188134 C35.2132033,82.7354741 35.5416839,83.1722835 35.9051148,83.8292546 L43.8935644,98.3803938 Z M64.6604624,86.3662688 C62.8572863,86.3662688 61.4420239,87.0931196 60.4146329,88.546843 C59.3872418,90.0005663 58.873554,92.0203728 58.873554,94.6063231 C58.873554,97.1922733 59.3907363,99.2190688 60.4251164,100.68677 C61.4594965,102.154472 62.8712644,102.888312 64.6604624,102.888312 C66.4636385,102.888312 67.8823953,102.157966 68.9167754,100.697254 C69.9511555,99.2365414 70.4683378,97.2062514 70.4683378,94.6063231 C70.4683378,92.0203728 69.95465,90.0005663 68.9272589,88.546843 C67.8998679,87.0931196 66.4776166,86.3662688 64.6604624,86.3662688 L64.6604624,86.3662688 Z M64.6604624,81.501911 C68.0990773,81.501911 70.929602,82.7319662 73.1521214,85.1921135 C75.3746408,87.6522607 76.4858838,90.7902992 76.4858838,94.6063231 C76.4858838,98.4503032 75.3816297,101.595331 73.1730884,104.0415 C70.9645471,106.487669 68.1270335,107.710735 64.6604624,107.710735 C61.2358256,107.710735 58.4053009,106.477185 56.1688034,104.010049 C53.9323059,101.542913 52.8140739,98.4083688 52.8140739,94.6063231 C52.8140739,90.7763211 53.9218224,87.6347881 56.1373528,85.1816299 C58.3528831,82.7284717 61.1938912,81.501911 64.6604624,81.501911 L64.6604624,81.501911 Z M87.4611651,98.1707232 L87.4611651,102.46897 L89.6207722,102.46897 C90.5293493,102.46897 91.1758272,102.643694 91.5602252,102.993147 C91.9446232,103.3426 92.1368193,103.922682 92.1368193,104.733413 C92.1368193,105.558121 91.9411287,106.152182 91.5497417,106.515613 C91.1583546,106.879044 90.5153712,107.060756 89.6207722,107.060756 L82.3661697,107.060756 C81.4436145,107.060756 80.7831587,106.879044 80.3847826,106.515613 C79.9864065,106.152182 79.7872214,105.558121 79.7872214,104.733413 C79.7872214,103.992573 79.9759231,103.429962 80.353332,103.045564 C80.730741,102.661166 81.282868,102.46897 82.0097297,102.46897 L82.3661697,102.46897 L82.3661697,86.8275441 L82.0097297,86.8275441 C81.2968461,86.8275441 80.7482136,86.628359 80.3638155,86.2299829 C79.9794175,85.8316068 79.7872214,85.2620074 79.7872214,84.5211676 C79.7872214,83.7104372 79.989901,83.119871 80.3952661,82.7494511 C80.8006313,82.3790312 81.4575926,82.193824 82.3661697,82.193824 L91.0255652,82.193824 C94.450202,82.193824 97.0396079,82.8507853 98.7938606,84.1647276 C100.548113,85.4786699 101.425227,87.414609 101.425227,89.972603 C101.425227,92.6703781 100.551608,94.7111515 98.8043442,96.0949843 C97.0570805,97.4788171 94.4641801,98.1707232 91.0255652,98.1707232 L87.4611651,98.1707232 Z M87.4611651,86.8275441 L87.4611651,93.4531348 L90.4384875,93.4531348 C92.0879044,93.4531348 93.328443,93.1735768 94.1601405,92.6144525 C94.9918381,92.0553281 95.4076806,91.2166541 95.4076806,90.0984053 C95.4076806,89.0500471 94.9778602,88.2428234 94.1182064,87.67671 C93.2585527,87.1105966 92.031992,86.8275441 90.4384875,86.8275441 L87.4611651,86.8275441 Z M114.727851,107.396229 L113.092421,109.03166 C113.69348,108.835966 114.284046,108.689198 114.864137,108.591352 C115.444229,108.493505 116.013828,108.444582 116.572953,108.444582 C117.677223,108.444582 118.840883,108.608823 120.063968,108.937308 C121.287053,109.265794 122.031376,109.430034 122.29696,109.430034 C122.744259,109.430034 123.327837,109.279772 124.047709,108.979242 C124.767582,108.678713 125.253314,108.52845 125.50492,108.52845 C126.02211,108.52845 126.45193,108.727636 126.794394,109.126012 C127.136858,109.524388 127.308087,110.024098 127.308087,110.625156 C127.308087,111.421909 126.836333,112.099837 125.892811,112.658961 C124.949288,113.218086 123.792617,113.497643 122.422762,113.497643 C121.486229,113.497643 120.28413,113.277492 118.816428,112.837181 C117.348727,112.396871 116.286406,112.176719 115.629435,112.176719 C114.636989,112.176719 113.518757,112.449288 112.274706,112.994434 C111.030654,113.53958 110.261869,113.812149 109.968329,113.812149 C109.36727,113.812149 108.857077,113.612964 108.437734,113.214588 C108.01839,112.816212 107.808722,112.337469 107.808722,111.778345 C107.808722,111.386958 107.941512,110.971115 108.207096,110.530805 C108.47268,110.090494 108.94094,109.520895 109.611889,108.821989 L111.729562,106.683349 C109.395218,105.830685 107.536157,104.29661 106.152324,102.08108 C104.768491,99.8655494 104.076585,97.3180772 104.076585,94.4385866 C104.076585,90.6365409 105.180839,87.5299526 107.389381,85.1187288 C109.597922,82.7075049 112.442425,81.501911 115.922974,81.501911 C119.389545,81.501911 122.227059,82.7109994 124.4356,85.1292123 C126.644141,87.5474252 127.748395,90.650519 127.748395,94.4385866 C127.748395,98.2126762 126.65113,101.322759 124.456567,103.768928 C122.262004,106.215097 119.480402,107.438163 116.111677,107.438163 C115.888028,107.438163 115.660887,107.434669 115.430248,107.42768 C115.199609,107.420691 114.965479,107.410207 114.727851,107.396229 L114.727851,107.396229 Z M115.922974,86.3662688 C114.119798,86.3662688 112.704535,87.0931196 111.677144,88.546843 C110.649753,90.0005663 110.136065,92.0203728 110.136065,94.6063231 C110.136065,97.1922733 110.653248,99.2190688 111.687628,100.68677 C112.722008,102.154472 114.133776,102.888312 115.922974,102.888312 C117.72615,102.888312 119.144907,102.157966 120.179287,100.697254 C121.213667,99.2365414 121.730849,97.2062514 121.730849,94.6063231 C121.730849,92.0203728 121.217161,90.0005663 120.18977,88.546843 C119.162379,87.0931196 117.740128,86.3662688 115.922974,86.3662688 L115.922974,86.3662688 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/mono-line": {
"title": "$:/core/images/mono-line",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-mono-line tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M60.4374591,84.522627 L61.3450888,84.522627 C63.2671377,84.522627 64.7264493,85.0120303 65.7230673,85.9908515 C66.7196852,86.9696727 67.2179868,88.4022896 67.2179868,90.288745 C67.2179868,92.3887615 66.6929905,93.9014625 65.6429823,94.8268935 C64.5929741,95.7523244 62.857817,96.215033 60.4374591,96.215033 L44.3670747,96.215033 C41.9111232,96.215033 40.1670679,95.7612227 39.1348565,94.8535884 C38.102645,93.9459542 37.586547,92.424355 37.586547,90.288745 C37.586547,88.2243221 38.102645,86.747214 39.1348565,85.8573766 C40.1670679,84.9675391 41.9111232,84.522627 44.3670747,84.522627 L46.235724,84.522627 L44.0467348,78.2759992 L20.9822627,78.2759992 L18.6864935,84.522627 L20.5551429,84.522627 C22.9755008,84.522627 24.7106579,84.9764373 25.7606661,85.8840716 C26.8106743,86.7917058 27.3356705,88.2599156 27.3356705,90.288745 C27.3356705,92.3887615 26.8106743,93.9014625 25.7606661,94.8268935 C24.7106579,95.7523244 22.9755008,96.215033 20.5551429,96.215033 L6.78052766,96.215033 C4.32457622,96.215033 2.58052094,95.7523244 1.54830946,94.8268935 C0.516097994,93.9014625 0,92.3887615 0,90.288745 C0,88.4022896 0.498301511,86.9696727 1.49491948,85.9908515 C2.49153745,85.0120303 3.95084902,84.522627 5.87289797,84.522627 L6.78052766,84.522627 L21.0890427,44.6937008 L16.8178442,44.6937008 C14.3974863,44.6937008 12.6623292,44.2309922 11.612321,43.3055613 C10.5623128,42.3801303 10.0373165,40.8852258 10.0373165,38.8208028 C10.0373165,36.7207864 10.5623128,35.2080854 11.612321,34.2826544 C12.6623292,33.3572234 14.3974863,32.8945149 16.8178442,32.8945149 L36.8390873,32.8945149 C40.0069087,32.8945149 42.231469,34.6029772 43.512835,38.0199531 L43.512835,38.180123 L60.4374591,84.522627 Z M32.4611088,44.6937008 L24.7195615,67.224273 L40.2026561,67.224273 L32.4611088,44.6937008 Z M89.5058233,68.5590225 L89.5058233,84.8429669 L97.5143205,84.8429669 C103.173687,84.8429669 107.160099,84.22009 109.473676,82.9743176 C111.787254,81.7285451 112.944025,79.6463566 112.944025,76.7276897 C112.944025,73.7734293 111.840643,71.6734444 109.633846,70.4276719 C107.427049,69.1818994 103.565213,68.5590225 98.0482204,68.5590225 L89.5058233,68.5590225 Z M116.734714,62.6327346 C120.614405,64.0564746 123.461842,66.0051894 125.277111,68.4789376 C127.092379,70.9526857 128,74.1115614 128,77.9556593 C128,81.1946677 127.216955,84.1488838 125.650841,86.8183962 C124.084727,89.4879087 121.84237,91.676876 118.923703,93.385364 C117.215215,94.3819819 115.302093,95.1027395 113.18428,95.5476582 C111.066467,95.9925769 108.06776,96.215033 104.188068,96.215033 L99.7033098,96.215033 L76.3184979,96.215033 C73.9693269,96.215033 72.2875593,95.7523244 71.2731446,94.8268935 C70.2587299,93.9014625 69.7515301,92.3887615 69.7515301,90.288745 C69.7515301,88.4022896 70.2320352,86.9696727 71.1930596,85.9908515 C72.1540841,85.0120303 73.5600062,84.522627 75.4108682,84.522627 L76.3184979,84.522627 L76.3184979,44.6937008 L75.4108682,44.6937008 C73.5600062,44.6937008 72.1540841,44.1953993 71.1930596,43.1987813 C70.2320352,42.2021633 69.7515301,40.7428518 69.7515301,38.8208028 C69.7515301,36.7563799 70.2676281,35.2525771 71.2998396,34.3093494 C72.3320511,33.3661217 74.0049204,32.8945149 76.3184979,32.8945149 L100.877889,32.8945149 C108.388118,32.8945149 114.09189,34.3538264 117.989378,37.2724934 C121.886867,40.1911603 123.835581,44.4623161 123.835581,50.0860889 C123.835581,52.8623819 123.239399,55.3093982 122.047017,57.4272114 C120.854635,59.5450246 119.083885,61.2801816 116.734714,62.6327346 L116.734714,62.6327346 Z M89.5058233,44.3733609 L89.5058233,57.8276363 L96.7134708,57.8276363 C101.091471,57.8276363 104.179161,57.3115383 105.976633,56.2793268 C107.774104,55.2471153 108.672827,53.50306 108.672827,51.0471086 C108.672827,48.7335312 107.863087,47.0428653 106.243583,45.9750604 C104.624078,44.9072554 101.999097,44.3733609 98.3685602,44.3733609 L89.5058233,44.3733609 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/new-button": {
"title": "$:/core/images/new-button",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-new-button tc-image-button\" viewBox=\"0 0 128 128\" width=\"22pt\" height=\"22pt\">\n <g fill-rule=\"evenodd\">\n <path d=\"M56,72 L8.00697327,72 C3.59075293,72 0,68.418278 0,64 C0,59.5907123 3.58484404,56 8.00697327,56 L56,56 L56,8.00697327 C56,3.59075293 59.581722,0 64,0 C68.4092877,0 72,3.58484404 72,8.00697327 L72,56 L119.993027,56 C124.409247,56 128,59.581722 128,64 C128,68.4092877 124.415156,72 119.993027,72 L72,72 L72,119.993027 C72,124.409247 68.418278,128 64,128 C59.5907123,128 56,124.415156 56,119.993027 L56,72 L56,72 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/new-here-button": {
"title": "$:/core/images/new-here-button",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-new-here-button tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n \t<g transform=\"translate(52.233611, 64.389922) rotate(75.000000) translate(-52.233611, -64.389922) translate(-7.734417, 3.702450)\">\n\t <path d=\"M18.9270186,45.959338 L18.9080585,49.6521741 C18.8884833,53.4648378 21.0574548,58.7482162 23.7526408,61.4434022 L78.5671839,116.257945 C81.2617332,118.952495 85.6348701,118.950391 88.3334363,116.251825 L115.863237,88.7220241 C118.555265,86.0299959 118.564544,81.6509578 115.869358,78.9557717 L61.0548144,24.1412286 C58.3602652,21.4466794 53.0787224,19.2788426 49.2595808,19.3006519 L25.9781737,19.4336012 C22.1633003,19.4553862 19.0471195,22.5673232 19.0275223,26.3842526 L18.9871663,34.2443819 C19.0818862,34.255617 19.1779758,34.2665345 19.2754441,34.2771502 C22.6891275,34.6489512 27.0485594,34.2348566 31.513244,33.2285542 C31.7789418,32.8671684 32.075337,32.5211298 32.4024112,32.1940556 C34.8567584,29.7397084 38.3789778,29.0128681 41.4406288,30.0213822 C41.5958829,29.9543375 41.7503946,29.8866669 41.9041198,29.8183808 L42.1110981,30.2733467 C43.1114373,30.6972371 44.0473796,31.3160521 44.8614145,32.1300869 C48.2842088,35.5528813 48.2555691,41.130967 44.7974459,44.5890903 C41.4339531,47.952583 36.0649346,48.0717177 32.6241879,44.9262969 C27.8170558,45.8919233 23.0726921,46.2881596 18.9270186,45.959338 Z\"></path>\n\t <path d=\"M45.4903462,38.8768094 C36.7300141,42.6833154 26.099618,44.7997354 18.1909048,43.9383587 C7.2512621,42.7468685 1.50150083,35.8404432 4.66865776,24.7010202 C7.51507386,14.6896965 15.4908218,6.92103848 24.3842626,4.38423012 C34.1310219,1.60401701 42.4070208,6.15882777 42.4070209,16.3101169 L34.5379395,16.310117 C34.5379394,11.9285862 31.728784,10.3825286 26.5666962,11.8549876 C20.2597508,13.6540114 14.3453742,19.4148216 12.2444303,26.8041943 C10.4963869,32.9523565 12.6250796,35.5092726 19.0530263,36.2093718 C25.5557042,36.9176104 35.0513021,34.9907189 42.7038419,31.5913902 L42.7421786,31.6756595 C44.3874154,31.5384763 47.8846101,37.3706354 45.9274416,38.6772897 L45.9302799,38.6835285 C45.9166992,38.6895612 45.9031139,38.6955897 45.8895238,38.7016142 C45.8389288,38.7327898 45.7849056,38.7611034 45.7273406,38.7863919 C45.6506459,38.8200841 45.571574,38.8501593 45.4903462,38.8768094 Z\"></path>\n </g>\n <rect x=\"96\" y=\"80\" width=\"16\" height=\"48\" rx=\"8\"></rect>\n <rect x=\"80\" y=\"96\" width=\"48\" height=\"16\" rx=\"8\"></rect>\n </g>\n </g>\n</svg>"
},
"$:/core/images/new-image-button": {
"title": "$:/core/images/new-image-button",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-new-image-button tc-image-button\" viewBox=\"0 0 128 128\" width=\"22pt\" height=\"22pt\">\n <g fill-rule=\"evenodd\">\n <path d=\"M81.3619177,73.6270062 L97.1875317,46.2162388 C97.91364,44.9585822 97.4824378,43.3533085 96.2260476,42.6279312 L46.2162388,13.7547547 C44.9585822,13.0286463 43.3533085,13.4598485 42.6279312,14.7162388 L30.0575956,36.4886988 L40.0978909,31.2276186 C43.1404959,29.6333041 46.8692155,31.3421319 47.6479264,34.6877101 L51.2545483,52.3903732 L61.1353556,53.2399953 C63.2899974,53.4346096 65.1046382,54.9309951 65.706105,57.0091178 C65.7395572,57.1246982 65.8069154,57.3539875 65.9047035,57.6813669 C66.0696435,58.2335608 66.2581528,58.852952 66.4667073,59.5238092 C67.0618822,61.4383079 67.6960725,63.3742727 68.3393254,65.2021174 C68.5462918,65.7902259 68.7511789,66.3583016 68.953259,66.9034738 C69.5777086,68.5881157 70.1617856,70.0172008 70.6783305,71.110045 C70.9334784,71.6498566 71.1627732,72.0871602 71.4035746,72.5373068 C71.6178999,72.7492946 71.9508843,72.9623307 72.4151452,73.1586945 C73.5561502,73.6412938 75.1990755,73.899146 77.0720271,73.9171651 C77.9355886,73.9254732 78.7819239,73.8832103 79.5638842,73.8072782 C80.0123946,73.7637257 80.3172916,73.7224469 80.4352582,73.7027375 C80.7503629,73.6500912 81.0598053,73.6256267 81.3619177,73.6270062 L81.3619177,73.6270062 L81.3619177,73.6270062 L81.3619177,73.6270062 Z M37.4707881,2.64867269 C38.9217993,0.135447653 42.1388058,-0.723707984 44.6486727,0.725364314 L108.293614,37.4707881 C110.806839,38.9217993 111.665994,42.1388058 110.216922,44.6486727 L73.4714982,108.293614 C72.0204871,110.806839 68.8034805,111.665994 66.2936136,110.216922 L2.64867269,73.4714982 C0.135447653,72.0204871 -0.723707984,68.8034805 0.725364314,66.2936136 L37.4707881,2.64867269 L37.4707881,2.64867269 L37.4707881,2.64867269 L37.4707881,2.64867269 Z M80.3080975,53.1397764 C82.8191338,54.5895239 86.0299834,53.7291793 87.4797308,51.218143 C88.9294783,48.7071068 88.0691338,45.4962571 85.5580975,44.0465097 C83.0470612,42.5967622 79.8362116,43.4571068 78.3864641,45.968143 C76.9367166,48.4791793 77.7970612,51.6900289 80.3080975,53.1397764 L80.3080975,53.1397764 L80.3080975,53.1397764 L80.3080975,53.1397764 Z M96,112 L88.0070969,112 C83.5881712,112 80,108.418278 80,104 C80,99.5907123 83.5848994,96 88.0070969,96 L96,96 L96,88.0070969 C96,83.5881712 99.581722,80 104,80 C108.409288,80 112,83.5848994 112,88.0070969 L112,96 L119.992903,96 C124.411829,96 128,99.581722 128,104 C128,108.409288 124.415101,112 119.992903,112 L112,112 L112,119.992903 C112,124.411829 108.418278,128 104,128 C99.5907123,128 96,124.415101 96,119.992903 L96,112 L96,112 Z M33.3471097,51.7910932 C40.7754579,59.7394511 42.3564368,62.4818351 40.7958321,65.1848818 C39.2352273,67.8879286 26.9581062,62.8571718 24.7019652,66.7649227 C22.4458242,70.6726735 23.7947046,70.0228006 22.2648667,72.6725575 L41.9944593,84.0634431 C41.9944593,84.0634431 36.3904568,75.8079231 37.7602356,73.4353966 C40.2754811,69.0788636 46.5298923,72.1787882 48.1248275,69.4162793 C50.538989,65.234829 43.0222016,59.7770885 33.3471097,51.7910932 L33.3471097,51.7910932 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/new-journal-button": {
"title": "$:/core/images/new-journal-button",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-new-journal-button tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M102.545455,112.818182 L102.545455,124.636364 L102.545455,124.636364 L102.545455,124.636364 C102.545455,125.941761 103.630828,127 104.969697,127 L111.030303,127 C112.369172,127 113.454545,125.941761 113.454545,124.636364 L113.454545,112.818182 L125.575758,112.818182 C126.914626,112.818182 128,111.759982 128,110.454545 L128,104.545455 C128,103.240018 126.914626,102.181818 125.575758,102.181818 L113.454545,102.181818 L113.454545,90.3636364 C113.454545,89.0582 112.369172,88 111.030303,88 L104.969697,88 L104.969697,88 C103.630828,88 102.545455,89.0582 102.545455,90.3636364 L102.545455,102.181818 L90.4242424,102.181818 L90.4242424,102.181818 C89.0853705,102.181818 88,103.240018 88,104.545455 L88,110.454545 L88,110.454545 L88,110.454545 C88,111.759982 89.0853705,112.818182 90.4242424,112.818182 L102.545455,112.818182 Z\"></path>\n <g transform=\"translate(59.816987, 64.316987) rotate(30.000000) translate(-59.816987, -64.316987) translate(20.316987, 12.816987)\">\n <g transform=\"translate(0.000000, 0.000000)\">\n <path d=\"M9.99631148,0 C4.4755011,0 -2.27373675e-13,4.48070044 -2.27373675e-13,9.99759461 L-2.27373675e-13,91.6128884 C-2.27373675e-13,97.1344074 4.46966773,101.610483 9.99631148,101.610483 L68.9318917,101.610483 C74.4527021,101.610483 78.9282032,97.1297826 78.9282032,91.6128884 L78.9282032,9.99759461 C78.9282032,4.47607557 74.4585355,0 68.9318917,0 L9.99631148,0 Z M20.8885263,26 C24.2022348,26 26.8885263,23.3137085 26.8885263,20 C26.8885263,16.6862915 24.2022348,14 20.8885263,14 C17.5748178,14 14.8885263,16.6862915 14.8885263,20 C14.8885263,23.3137085 17.5748178,26 20.8885263,26 Z M57.3033321,25.6783342 C60.6170406,25.6783342 63.3033321,22.9920427 63.3033321,19.6783342 C63.3033321,16.3646258 60.6170406,13.6783342 57.3033321,13.6783342 C53.9896236,13.6783342 51.3033321,16.3646258 51.3033321,19.6783342 C51.3033321,22.9920427 53.9896236,25.6783342 57.3033321,25.6783342 Z\"></path>\n <text font-family=\"Helvetica\" font-size=\"47.1724138\" font-weight=\"bold\" fill=\"#FFFFFF\">\n <tspan x=\"42\" y=\"77.4847912\" text-anchor=\"middle\"><<now \"DD\">></tspan>\n </text>\n </g>\n </g>\n </g>\n</svg>"
},
"$:/core/images/opacity": {
"title": "$:/core/images/opacity",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-opacity tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M102.361773,65 C101.833691,67.051742 101.183534,69.0544767 100.419508,71 L82.5835324,71 C83.7602504,69.1098924 84.7666304,67.1027366 85.581205,65 L102.361773,65 Z M102.834311,63 C103.256674,61.0388326 103.568427,59.0365486 103.762717,57 L87.6555706,57 C87.3692052,59.0609452 86.9083652,61.0660782 86.2884493,63 L102.834311,63 Z M99.5852583,73 C98.6682925,75.0747721 97.6196148,77.0783056 96.4498253,79 L75.8124196,79 C77.8387053,77.2115633 79.6621163,75.1985844 81.2437158,73 L99.5852583,73 Z M95.1689122,81 C93.7449202,83.1155572 92.1695234,85.1207336 90.458251,87 L60.4614747,87 C65.1836162,85.86248 69.5430327,83.794147 73.3347255,81 L95.1689122,81 Z M87.6555706,47 L103.762717,47 C101.246684,20.6269305 79.0321807,0 52,0 C23.281193,0 0,23.281193 0,52 C0,77.2277755 17.9651296,98.2595701 41.8000051,103 L62.1999949,103 C67.8794003,101.870444 73.2255333,99.8158975 78.074754,97 L39,97 L39,95 L81.2493857,95 C83.8589242,93.2215015 86.2981855,91.2116653 88.5376609,89 L39,89 L39,87 L43.5385253,87 C27.7389671,83.1940333 16,68.967908 16,52 C16,32.117749 32.117749,16 52,16 C70.1856127,16 85.2217929,29.4843233 87.6555706,47 Z M87.8767787,49 L103.914907,49 C103.971379,49.9928025 104,50.9930589 104,52 C104,53.0069411 103.971379,54.0071975 103.914907,55 L87.8767787,55 C87.958386,54.0107999 88,53.0102597 88,52 C88,50.9897403 87.958386,49.9892001 87.8767787,49 Z\"></path>\n <path d=\"M76,128 C104.718807,128 128,104.718807 128,76 C128,47.281193 104.718807,24 76,24 C47.281193,24 24,47.281193 24,76 C24,104.718807 47.281193,128 76,128 L76,128 Z M76,112 C95.882251,112 112,95.882251 112,76 C112,56.117749 95.882251,40 76,40 C56.117749,40 40,56.117749 40,76 C40,95.882251 56.117749,112 76,112 L76,112 Z\"></path>\n <path d=\"M37,58 L90,58 L90,62 L37,62 L37,58 L37,58 Z M40,50 L93,50 L93,54 L40,54 L40,50 L40,50 Z M40,42 L93,42 L93,46 L40,46 L40,42 L40,42 Z M32,66 L85,66 L85,70 L32,70 L32,66 L32,66 Z M30,74 L83,74 L83,78 L30,78 L30,74 L30,74 Z M27,82 L80,82 L80,86 L27,86 L27,82 L27,82 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/open-window": {
"title": "$:/core/images/open-window",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-open-window tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M16,112 L104.993898,112 C108.863261,112 112,115.590712 112,120 C112,124.418278 108.858091,128 104.993898,128 L7.00610161,128 C3.13673853,128 0,124.409288 0,120 C0,119.998364 4.30952878e-07,119.996727 1.29273572e-06,119.995091 C4.89579306e-07,119.993456 0,119.99182 0,119.990183 L0,24.0098166 C0,19.586117 3.59071231,16 8,16 C12.418278,16 16,19.5838751 16,24.0098166 L16,112 Z\"></path>\n <path d=\"M96,43.1959595 L96,56 C96,60.418278 99.581722,64 104,64 C108.418278,64 112,60.418278 112,56 L112,24 C112,19.5907123 108.415101,16 103.992903,16 L72.0070969,16 C67.5881712,16 64,19.581722 64,24 C64,28.4092877 67.5848994,32 72.0070969,32 L84.5685425,32 L48.2698369,68.2987056 C45.1421332,71.4264093 45.1434327,76.4904296 48.267627,79.614624 C51.3854642,82.7324612 56.4581306,82.7378289 59.5835454,79.6124141 L96,43.1959595 Z M32,7.9992458 C32,3.58138434 35.5881049,0 39.9992458,0 L120.000754,0 C124.418616,0 128,3.5881049 128,7.9992458 L128,88.0007542 C128,92.4186157 124.411895,96 120.000754,96 L39.9992458,96 C35.5813843,96 32,92.4118951 32,88.0007542 L32,7.9992458 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/options-button": {
"title": "$:/core/images/options-button",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-options-button tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M110.48779,76.0002544 C109.354214,80.4045063 107.611262,84.5641217 105.354171,88.3838625 L105.354171,88.3838625 L112.07833,95.1080219 C115.20107,98.2307613 115.210098,103.299824 112.089164,106.420759 L106.420504,112.089418 C103.301049,115.208874 98.2346851,115.205502 95.1077675,112.078585 L88.3836082,105.354425 C84.5638673,107.611516 80.4042519,109.354468 76,110.488045 L76,110.488045 L76,119.993281 C76,124.409501 72.4220153,128.000254 68.0083475,128.000254 L59.9916525,128.000254 C55.5800761,128.000254 52,124.41541 52,119.993281 L52,110.488045 C47.5957481,109.354468 43.4361327,107.611516 39.6163918,105.354425 L32.8922325,112.078585 C29.7694931,115.201324 24.7004301,115.210353 21.5794957,112.089418 L15.9108363,106.420759 C12.7913807,103.301303 12.7947522,98.2349395 15.9216697,95.1080219 L22.6458291,88.3838625 C20.3887383,84.5641217 18.6457859,80.4045063 17.5122098,76.0002544 L8.00697327,76.0002544 C3.59075293,76.0002544 2.19088375e-16,72.4222697 4.89347582e-16,68.0086019 L9.80228577e-16,59.9919069 C1.25035972e-15,55.5803305 3.58484404,52.0002544 8.00697327,52.0002544 L17.5122098,52.0002544 C18.6457859,47.5960025 20.3887383,43.4363871 22.6458291,39.6166462 L15.9216697,32.8924868 C12.7989304,29.7697475 12.7899019,24.7006845 15.9108363,21.5797501 L21.5794957,15.9110907 C24.6989513,12.7916351 29.7653149,12.7950065 32.8922325,15.9219241 L39.6163918,22.6460835 C43.4361327,20.3889927 47.5957481,18.6460403 52,17.5124642 L52,8.00722764 C52,3.5910073 55.5779847,0.000254375069 59.9916525,0.000254375069 L68.0083475,0.000254375069 C72.4199239,0.000254375069 76,3.58509841 76,8.00722764 L76,17.5124642 C80.4042519,18.6460403 84.5638673,20.3889927 88.3836082,22.6460835 L95.1077675,15.9219241 C98.2305069,12.7991848 103.29957,12.7901562 106.420504,15.9110907 L112.089164,21.5797501 C115.208619,24.6992057 115.205248,29.7655693 112.07833,32.8924868 L105.354171,39.6166462 L105.354171,39.6166462 C107.611262,43.4363871 109.354214,47.5960025 110.48779,52.0002544 L119.993027,52.0002544 C124.409247,52.0002544 128,55.5782391 128,59.9919069 L128,68.0086019 C128,72.4201783 124.415156,76.0002544 119.993027,76.0002544 L110.48779,76.0002544 L110.48779,76.0002544 Z M64,96.0002544 C81.673112,96.0002544 96,81.6733664 96,64.0002544 C96,46.3271424 81.673112,32.0002544 64,32.0002544 C46.326888,32.0002544 32,46.3271424 32,64.0002544 C32,81.6733664 46.326888,96.0002544 64,96.0002544 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/paint": {
"title": "$:/core/images/paint",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-paint tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M83.5265806,76.1907935 C90.430962,69.2864121 91.8921169,59.0000433 87.9100453,50.6642209 L125.812763,12.7615036 C128.732035,9.84223095 128.72611,5.10322984 125.812796,2.18991592 C122.893542,-0.729338085 118.161775,-0.730617045 115.241209,2.18994966 L77.3384914,40.092667 C69.002669,36.1105954 58.7163002,37.5717503 51.8119188,44.4761317 L83.5265806,76.1907935 L83.5265806,76.1907935 L83.5265806,76.1907935 L83.5265806,76.1907935 Z M80.8836921,78.8336819 L49.1690303,47.1190201 C49.1690303,47.1190201 8.50573364,81.242543 0,80.2820711 C0,80.2820711 3.78222974,85.8744423 6.82737483,88.320684 C20.8514801,82.630792 44.1526049,63.720771 44.1526049,63.720771 L44.8144806,64.3803375 C44.8144806,64.3803375 19.450356,90.2231043 9.18040433,92.0477601 C10.4017154,93.4877138 13.5343883,96.1014812 15.4269991,97.8235871 C20.8439164,96.3356979 50.1595367,69.253789 50.1595367,69.253789 L50.8214124,69.9133555 L18.4136144,100.936036 L23.6993903,106.221812 L56.1060358,75.2002881 L56.7679115,75.8598546 C56.7679115,75.8598546 28.9040131,106.396168 28.0841366,108.291555 C28.0841366,108.291555 34.1159238,115.144621 35.6529617,116.115796 C36.3545333,113.280171 63.5365402,82.6307925 63.5365402,82.6307925 L64.1984159,83.290359 C64.1984159,83.290359 43.6013016,107.04575 39.2343772,120.022559 C42.443736,123.571575 46.7339155,125.159692 50.1595362,126.321151 C47.9699978,114.504469 80.8836921,78.8336819 80.8836921,78.8336819 L80.8836921,78.8336819 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/palette": {
"title": "$:/core/images/palette",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-palette tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M80.2470434,39.1821571 C75.0645698,38.2680897 69.6261555,37.7814854 64.0193999,37.7814854 C28.6624616,37.7814854 0,57.1324214 0,81.0030106 C0,90.644534 4.67604329,99.5487133 12.5805659,106.738252 C23.5031767,91.1899067 26.3405471,72.3946229 36.8885698,63.5622337 C52.0716764,50.8486559 63.4268694,55.7343343 63.4268694,55.7343343 L80.2470434,39.1821571 Z M106.781666,48.8370714 C119.830962,56.749628 128.0388,68.229191 128.0388,81.0030106 C128.0388,90.3534932 128.557501,98.4142085 116.165191,106.082518 C105.367708,112.763955 112.341384,99.546808 104.321443,95.1851533 C96.3015017,90.8234987 84.3749007,96.492742 86.1084305,103.091059 C89.3087234,115.272303 105.529892,114.54645 92.4224435,119.748569 C79.3149955,124.950687 74.2201582,124.224536 64.0193999,124.224536 C56.1979176,124.224536 48.7040365,123.277578 41.7755684,121.544216 C51.620343,117.347916 69.6563669,109.006202 75.129737,102.088562 C82.7876655,92.4099199 87.3713218,80.0000002 83.3235694,72.4837191 C83.1303943,72.1250117 94.5392656,60.81569 106.781666,48.8370714 Z M1.13430476,123.866563 C0.914084026,123.867944 0.693884185,123.868637 0.473712455,123.868637 C33.9526848,108.928928 22.6351223,59.642592 59.2924543,59.6425917 C59.6085574,61.0606542 59.9358353,62.5865065 60.3541977,64.1372318 C34.4465025,59.9707319 36.7873124,112.168427 1.13429588,123.866563 L1.13430476,123.866563 Z M1.84669213,123.859694 C40.7185279,123.354338 79.9985412,101.513051 79.9985401,79.0466836 C70.7284906,79.0466835 65.9257264,75.5670082 63.1833375,71.1051511 C46.585768,64.1019718 32.81846,116.819636 1.84665952,123.859695 L1.84669213,123.859694 Z M67.1980193,59.8524981 C62.748213,63.9666823 72.0838429,76.2846822 78.5155805,71.1700593 C89.8331416,59.8524993 112.468264,37.2173758 123.785825,25.8998146 C135.103386,14.5822535 123.785825,3.26469247 112.468264,14.5822535 C101.150703,25.8998144 78.9500931,48.9868127 67.1980193,59.8524981 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/permalink-button": {
"title": "$:/core/images/permalink-button",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-permalink-button tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M80.4834582,48 L73.0956761,80 L73.0956761,80 L47.5165418,80 L54.9043239,48 L80.4834582,48 Z M84.1773493,32 L89.8007299,7.64246248 C90.7941633,3.33942958 95.0918297,0.64641956 99.3968675,1.64031585 C103.693145,2.63218977 106.385414,6.93288901 105.390651,11.2416793 L100.598215,32 L104.000754,32 C108.411895,32 112,35.581722 112,40 C112,44.4092877 108.418616,48 104.000754,48 L96.9043239,48 L89.5165418,80 L104.000754,80 C108.411895,80 112,83.581722 112,88 C112,92.4092877 108.418616,96 104.000754,96 L85.8226507,96 L80.1992701,120.357538 C79.2058367,124.66057 74.9081703,127.35358 70.6031325,126.359684 C66.3068546,125.36781 63.6145865,121.067111 64.6093491,116.758321 L69.401785,96 L43.8226507,96 L38.1992701,120.357538 C37.2058367,124.66057 32.9081703,127.35358 28.6031325,126.359684 C24.3068546,125.36781 21.6145865,121.067111 22.6093491,116.758321 L27.401785,96 L23.9992458,96 C19.5881049,96 16,92.418278 16,88 C16,83.5907123 19.5813843,80 23.9992458,80 L31.0956761,80 L38.4834582,48 L23.9992458,48 C19.5881049,48 16,44.418278 16,40 C16,35.5907123 19.5813843,32 23.9992458,32 L42.1773493,32 L47.8007299,7.64246248 C48.7941633,3.33942958 53.0918297,0.64641956 57.3968675,1.64031585 C61.6931454,2.63218977 64.3854135,6.93288901 63.3906509,11.2416793 L58.598215,32 L84.1773493,32 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/permaview-button": {
"title": "$:/core/images/permaview-button",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-permaview-button tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M81.4834582,48 L79.6365127,56 L79.6365127,56 L74.0573784,56 L75.9043239,48 L81.4834582,48 Z M85.1773493,32 L90.8007299,7.64246248 C91.7941633,3.33942958 96.0918297,0.64641956 100.396867,1.64031585 C104.693145,2.63218977 107.385414,6.93288901 106.390651,11.2416793 L101.598215,32 L104.000754,32 C108.411895,32 112,35.581722 112,40 C112,44.4092877 108.418616,48 104.000754,48 L97.9043239,48 L96.0573784,56 L104.000754,56 C108.411895,56 112,59.581722 112,64 C112,68.4092877 108.418616,72 104.000754,72 L92.3634873,72 L90.5165418,80 L104.000754,80 C108.411895,80 112,83.581722 112,88 C112,92.4092877 108.418616,96 104.000754,96 L86.8226507,96 L81.1992701,120.357538 C80.2058367,124.66057 75.9081703,127.35358 71.6031325,126.359684 C67.3068546,125.36781 64.6145865,121.067111 65.6093491,116.758321 L70.401785,96 L64.8226507,96 L59.1992701,120.357538 C58.2058367,124.66057 53.9081703,127.35358 49.6031325,126.359684 C45.3068546,125.36781 42.6145865,121.067111 43.6093491,116.758321 L48.401785,96 L42.8226507,96 L37.1992701,120.357538 C36.2058367,124.66057 31.9081703,127.35358 27.6031325,126.359684 C23.3068546,125.36781 20.6145865,121.067111 21.6093491,116.758321 L26.401785,96 L23.9992458,96 C19.5881049,96 16,92.418278 16,88 C16,83.5907123 19.5813843,80 23.9992458,80 L30.0956761,80 L31.9426216,72 L23.9992458,72 C19.5881049,72 16,68.418278 16,64 C16,59.5907123 19.5813843,56 23.9992458,56 L35.6365127,56 L37.4834582,48 L23.9992458,48 C19.5881049,48 16,44.418278 16,40 C16,35.5907123 19.5813843,32 23.9992458,32 L41.1773493,32 L46.8007299,7.64246248 C47.7941633,3.33942958 52.0918297,0.64641956 56.3968675,1.64031585 C60.6931454,2.63218977 63.3854135,6.93288901 62.3906509,11.2416793 L57.598215,32 L63.1773493,32 L68.8007299,7.64246248 C69.7941633,3.33942958 74.0918297,0.64641956 78.3968675,1.64031585 C82.6931454,2.63218977 85.3854135,6.93288901 84.3906509,11.2416793 L79.598215,32 L85.1773493,32 Z M53.9043239,48 L52.0573784,56 L57.6365127,56 L59.4834582,48 L53.9043239,48 Z M75.9426216,72 L74.0956761,80 L74.0956761,80 L68.5165418,80 L70.3634873,72 L75.9426216,72 L75.9426216,72 Z M48.3634873,72 L46.5165418,80 L52.0956761,80 L53.9426216,72 L48.3634873,72 L48.3634873,72 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/picture": {
"title": "$:/core/images/picture",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-picture tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M112,68.2332211 L112,20.0027785 C112,17.7898769 110.207895,16 107.997221,16 L20.0027785,16 C17.7898769,16 16,17.792105 16,20.0027785 L16,58.312373 L25.2413115,43.7197989 C28.041793,39.297674 34.2643908,38.7118128 37.8410347,42.5335275 L56.0882845,63.1470817 L69.7748997,56.7400579 C72.766567,55.3552503 76.3013751,55.9473836 78.678437,58.2315339 C78.8106437,58.3585731 79.0742301,58.609836 79.4527088,58.9673596 C80.0910923,59.570398 80.8117772,60.2441563 81.598127,60.9705595 C83.8422198,63.043576 86.1541548,65.1151944 88.3956721,67.0372264 C89.1168795,67.6556396 89.8200801,68.2492007 90.5021258,68.8146755 C92.6097224,70.5620551 94.4693308,72.0029474 95.9836366,73.0515697 C96.7316295,73.5695379 97.3674038,73.9719282 98.0281481,74.3824999 C98.4724987,74.4989557 99.0742374,74.5263881 99.8365134,74.4317984 C101.709944,74.1993272 104.074502,73.2878514 106.559886,71.8846196 C107.705822,71.2376318 108.790494,70.5370325 109.764561,69.8410487 C110.323259,69.4418522 110.694168,69.1550757 110.834827,69.0391868 C111.210545,68.7296319 111.600264,68.4615815 112,68.2332211 L112,68.2332211 Z M0,8.00697327 C0,3.58484404 3.59075293,0 8.00697327,0 L119.993027,0 C124.415156,0 128,3.59075293 128,8.00697327 L128,119.993027 C128,124.415156 124.409247,128 119.993027,128 L8.00697327,128 C3.58484404,128 0,124.409247 0,119.993027 L0,8.00697327 L0,8.00697327 Z M95,42 C99.418278,42 103,38.418278 103,34 C103,29.581722 99.418278,26 95,26 C90.581722,26 87,29.581722 87,34 C87,38.418278 90.581722,42 95,42 L95,42 Z M32,76 C47.8587691,80.8294182 52.0345556,83.2438712 52.0345556,88 C52.0345556,92.7561288 32,95.4712486 32,102.347107 C32,109.222965 33.2849191,107.337637 33.2849191,112 L67.999999,112 C67.999999,112 54.3147136,105.375255 54.3147136,101.200691 C54.3147136,93.535181 64.9302432,92.860755 64.9302432,88 C64.9302432,80.6425555 50.8523779,79.167282 32,76 L32,76 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/plugin-generic-language": {
"title": "$:/core/images/plugin-generic-language",
"tags": "$:/tags/Image",
"text": "<svg width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M61.2072232,68.1369825 C56.8829239,70.9319564 54.2082892,74.793177 54.2082892,79.0581634 C54.2082892,86.9638335 63.3980995,93.4821994 75.2498076,94.3940006 C77.412197,98.2964184 83.8475284,101.178858 91.5684735,101.403106 C86.4420125,100.27851 82.4506393,97.6624107 80.9477167,94.3948272 C92.8046245,93.4861461 102,86.9662269 102,79.0581634 C102,70.5281905 91.3014611,63.6132813 78.1041446,63.6132813 C71.5054863,63.6132813 65.5315225,65.3420086 61.2072232,68.1369825 Z M74.001066,53.9793443 C69.6767667,56.7743182 63.7028029,58.5030456 57.1041446,58.5030456 C54.4851745,58.5030456 51.9646095,58.2307276 49.6065315,57.7275105 C46.2945155,59.9778212 41.2235699,61.4171743 35.5395922,61.4171743 C35.4545771,61.4171743 35.3696991,61.4168523 35.2849622,61.4162104 C39.404008,60.5235193 42.7961717,58.6691298 44.7630507,56.286533 C37.8379411,53.5817651 33.2082892,48.669413 33.2082892,43.0581634 C33.2082892,34.5281905 43.9068281,27.6132812 57.1041446,27.6132812 C70.3014611,27.6132812 81,34.5281905 81,43.0581634 C81,47.3231498 78.3253653,51.1843704 74.001066,53.9793443 Z M64,0 L118.5596,32 L118.5596,96 L64,128 L9.44039956,96 L9.44039956,32 L64,0 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/plugin-generic-plugin": {
"title": "$:/core/images/plugin-generic-plugin",
"tags": "$:/tags/Image",
"text": "<svg width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M40.3972881,76.4456988 L40.3972881,95.3404069 L54.5170166,95.3404069 L54.5170166,95.3404069 C54.5165526,95.3385183 54.516089,95.3366295 54.515626,95.3347404 C54.6093153,95.3385061 54.7034848,95.3404069 54.7980982,95.3404069 C58.6157051,95.3404069 61.710487,92.245625 61.710487,88.4280181 C61.710487,86.6197822 61.01617,84.9737128 59.8795929,83.7418666 L59.8795929,83.7418666 C59.8949905,83.7341665 59.9104102,83.7265043 59.925852,83.7188798 C58.8840576,82.5086663 58.2542926,80.9336277 58.2542926,79.2114996 C58.2542926,75.3938927 61.3490745,72.2991108 65.1666814,72.2991108 C68.9842884,72.2991108 72.0790703,75.3938927 72.0790703,79.2114996 C72.0790703,81.1954221 71.2432806,82.9841354 69.9045961,84.2447446 L69.9045961,84.2447446 C69.9333407,84.2629251 69.9619885,84.281245 69.9905383,84.2997032 L69.9905383,84.2997032 C69.1314315,85.4516923 68.6228758,86.8804654 68.6228758,88.4280181 C68.6228758,91.8584969 71.1218232,94.7053153 74.3986526,95.2474079 C74.3913315,95.2784624 74.3838688,95.3094624 74.3762652,95.3404069 L95.6963988,95.3404069 L95.6963988,75.5678578 L95.6963988,75.5678578 C95.6466539,75.5808558 95.5967614,75.5934886 95.5467242,75.6057531 C95.5504899,75.5120637 95.5523907,75.4178943 95.5523907,75.3232809 C95.5523907,71.505674 92.4576088,68.4108921 88.6400019,68.4108921 C86.831766,68.4108921 85.1856966,69.105209 83.9538504,70.2417862 L83.9538504,70.2417862 C83.9461503,70.2263886 83.938488,70.2109688 83.9308636,70.1955271 C82.7206501,71.2373215 81.1456115,71.8670865 79.4234834,71.8670865 C75.6058765,71.8670865 72.5110946,68.7723046 72.5110946,64.9546976 C72.5110946,61.1370907 75.6058765,58.0423088 79.4234834,58.0423088 C81.4074059,58.0423088 83.1961192,58.8780985 84.4567284,60.2167829 L84.4567284,60.2167829 C84.4749089,60.1880383 84.4932288,60.1593906 84.511687,60.1308407 L84.511687,60.1308407 C85.6636761,60.9899475 87.0924492,61.4985032 88.6400019,61.4985032 C92.0704807,61.4985032 94.9172991,58.9995558 95.4593917,55.7227265 C95.538755,55.7414363 95.6177614,55.761071 95.6963988,55.7816184 L95.6963988,40.0412962 L74.3762652,40.0412962 L74.3762652,40.0412962 C74.3838688,40.0103516 74.3913315,39.9793517 74.3986526,39.9482971 L74.3986526,39.9482971 C71.1218232,39.4062046 68.6228758,36.5593862 68.6228758,33.1289073 C68.6228758,31.5813547 69.1314315,30.1525815 69.9905383,29.0005925 C69.9619885,28.9821342 69.9333407,28.9638143 69.9045961,28.9456339 C71.2432806,27.6850247 72.0790703,25.8963113 72.0790703,23.9123888 C72.0790703,20.0947819 68.9842884,17 65.1666814,17 C61.3490745,17 58.2542926,20.0947819 58.2542926,23.9123888 C58.2542926,25.6345169 58.8840576,27.2095556 59.925852,28.419769 L59.925852,28.419769 C59.9104102,28.4273935 59.8949905,28.4350558 59.8795929,28.4427558 C61.01617,29.674602 61.710487,31.3206715 61.710487,33.1289073 C61.710487,36.9465143 58.6157051,40.0412962 54.7980982,40.0412962 C54.7034848,40.0412962 54.6093153,40.0393953 54.515626,40.0356296 L54.515626,40.0356296 C54.516089,40.0375187 54.5165526,40.0394075 54.5170166,40.0412962 L40.3972881,40.0412962 L40.3972881,52.887664 L40.3972881,52.887664 C40.4916889,53.3430132 40.5412962,53.8147625 40.5412962,54.2980982 C40.5412962,58.1157051 37.4465143,61.210487 33.6289073,61.210487 C32.0813547,61.210487 30.6525815,60.7019313 29.5005925,59.8428245 C29.4821342,59.8713744 29.4638143,59.9000221 29.4456339,59.9287667 C28.1850247,58.5900823 26.3963113,57.7542926 24.4123888,57.7542926 C20.5947819,57.7542926 17.5,60.8490745 17.5,64.6666814 C17.5,68.4842884 20.5947819,71.5790703 24.4123888,71.5790703 C26.134517,71.5790703 27.7095556,70.9493053 28.919769,69.9075109 L28.919769,69.9075109 C28.9273935,69.9229526 28.9350558,69.9383724 28.9427558,69.95377 C30.174602,68.8171928 31.8206715,68.1228758 33.6289073,68.1228758 C37.4465143,68.1228758 40.5412962,71.2176578 40.5412962,75.0352647 C40.5412962,75.5186004 40.4916889,75.9903496 40.3972881,76.4456988 Z M64,0 L118.5596,32 L118.5596,96 L64,128 L9.44039956,96 L9.44039956,32 L64,0 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/plugin-generic-theme": {
"title": "$:/core/images/plugin-generic-theme",
"tags": "$:/tags/Image",
"text": "<svg width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M29.4078519,91.4716406 L51.4693474,69.4101451 L51.4646675,69.4054652 C50.5969502,68.5377479 50.5929779,67.1348725 51.4693474,66.2585029 C52.3396494,65.3882009 53.7499654,65.3874786 54.6163097,66.2538229 L64.0805963,75.7181095 C64.9483136,76.5858268 64.9522859,77.9887022 64.0759163,78.8650718 C63.2056143,79.7353737 61.7952984,79.736096 60.9289541,78.8697517 L60.9242741,78.8650718 L60.9242741,78.8650718 L38.8627786,100.926567 C36.2518727,103.537473 32.0187578,103.537473 29.4078519,100.926567 C26.796946,98.3156614 26.796946,94.0825465 29.4078519,91.4716406 Z M60.8017407,66.3810363 C58.3659178,63.6765806 56.3370667,61.2899536 54.9851735,59.5123615 C48.1295381,50.4979488 44.671561,55.2444054 40.7586738,59.5123614 C36.8457866,63.7803174 41.789473,67.2384487 38.0759896,70.2532832 C34.3625062,73.2681177 34.5917646,74.3131575 28.3243876,68.7977024 C22.0570105,63.2822473 21.6235306,61.7636888 24.5005999,58.6166112 C27.3776691,55.4695337 29.7823103,60.4247912 35.6595047,54.8320442 C41.5366991,49.2392972 36.5996215,44.2825646 36.5996215,44.2825646 C36.5996215,44.2825646 48.8365511,19.267683 65.1880231,21.1152173 C81.5394952,22.9627517 59.0022276,18.7228947 53.3962199,38.3410355 C50.9960082,46.7405407 53.8429162,44.7613399 58.3941742,48.3090467 C59.7875202,49.3951602 64.4244828,52.7100463 70.1884353,56.9943417 L90.8648751,36.3179019 L92.4795866,31.5515482 L100.319802,26.8629752 L103.471444,30.0146174 L98.782871,37.8548326 L94.0165173,39.4695441 L73.7934912,59.6925702 C86.4558549,69.2403631 102.104532,81.8392557 102.104532,86.4016913 C102.104533,93.6189834 99.0337832,97.9277545 92.5695848,95.5655717 C87.8765989,93.8506351 73.8015497,80.3744087 63.8173444,69.668717 L60.9242741,72.5617873 L57.7726319,69.4101451 L60.8017407,66.3810363 L60.8017407,66.3810363 Z M63.9533761,1.42108547e-13 L118.512977,32 L118.512977,96 L63.9533761,128 L9.39377563,96 L9.39377563,32 L63.9533761,1.42108547e-13 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/preview-closed": {
"title": "$:/core/images/preview-closed",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-preview-closed tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M0.0881363238,64 C-0.210292223,65.8846266 0.249135869,67.8634737 1.4664206,69.4579969 C16.2465319,88.8184886 39.1692554,100.414336 64,100.414336 C88.8307446,100.414336 111.753468,88.8184886 126.533579,69.4579969 C127.750864,67.8634737 128.210292,65.8846266 127.911864,64 C110.582357,78.4158332 88.3036732,87.0858436 64,87.0858436 C39.6963268,87.0858436 17.4176431,78.4158332 0.0881363238,64 Z\"></path>\n <rect x=\"62\" y=\"96\" width=\"4\" height=\"16\" rx=\"4\"></rect>\n <rect transform=\"translate(80.000000, 101.000000) rotate(-5.000000) translate(-80.000000, -101.000000) \" x=\"78\" y=\"93\" width=\"4\" height=\"16\" rx=\"4\"></rect>\n <rect transform=\"translate(48.000000, 101.000000) rotate(-355.000000) translate(-48.000000, -101.000000) \" x=\"46\" y=\"93\" width=\"4\" height=\"16\" rx=\"4\"></rect>\n <rect transform=\"translate(32.000000, 96.000000) rotate(-350.000000) translate(-32.000000, -96.000000) \" x=\"30\" y=\"88\" width=\"4\" height=\"16\" rx=\"4\"></rect>\n <rect transform=\"translate(96.000000, 96.000000) rotate(-10.000000) translate(-96.000000, -96.000000) \" x=\"94\" y=\"88\" width=\"4\" height=\"16\" rx=\"4\"></rect>\n <rect transform=\"translate(112.000000, 88.000000) rotate(-20.000000) translate(-112.000000, -88.000000) \" x=\"110\" y=\"80\" width=\"4\" height=\"16\" rx=\"4\"></rect>\n <rect transform=\"translate(16.000000, 88.000000) rotate(-340.000000) translate(-16.000000, -88.000000) \" x=\"14\" y=\"80\" width=\"4\" height=\"16\" rx=\"4\"></rect>\n </g>\n</svg>"
},
"$:/core/images/preview-open": {
"title": "$:/core/images/preview-open",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-preview-open tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M64.1099282,99.5876785 C39.2791836,99.5876785 16.3564602,87.9918313 1.57634884,68.6313396 C-0.378878622,66.070184 -0.378878622,62.5174945 1.57634884,59.9563389 C16.3564602,40.5958472 39.2791836,29 64.1099282,29 C88.9406729,29 111.863396,40.5958472 126.643508,59.9563389 C128.598735,62.5174945 128.598735,66.070184 126.643508,68.6313396 C111.863396,87.9918313 88.9406729,99.5876785 64.1099282,99.5876785 Z M110.213805,67.5808331 C111.654168,66.0569335 111.654168,63.9430665 110.213805,62.4191669 C99.3257042,50.8995835 82.4391647,44 64.1470385,44 C45.8549124,44 28.9683729,50.8995835 18.0802717,62.4191669 C16.6399094,63.9430665 16.6399094,66.0569335 18.0802717,67.5808331 C28.9683729,79.1004165 45.8549124,86 64.1470385,86 C82.4391647,86 99.3257042,79.1004165 110.213805,67.5808331 Z\"></path>\n <path d=\"M63.5,88 C76.4786916,88 87,77.4786916 87,64.5 C87,51.5213084 76.4786916,41 63.5,41 C50.5213084,41 40,51.5213084 40,64.5 C40,77.4786916 50.5213084,88 63.5,88 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/print-button": {
"title": "$:/core/images/print-button",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-print-button tc-image-button\" viewBox=\"0 0 128 128\" width=\"22pt\" height=\"22pt\">\n <g fill-rule=\"evenodd\">\n <path d=\"M112,71 L112,30.5 L111.96811,30.5 L111.96811,30.5 C111.932942,28.4998414 111.151676,26.510538 109.625176,24.9840387 L86.9982489,2.35711116 C85.3482153,0.707077645 83.1589869,-0.071534047 81,0.0201838424 L81,0 L23.9992458,0 C19.5808867,0 16,3.58213437 16,8.00092105 L16,71 L24,71 L24,8 L81,8 L81,22.4996539 C81,26.9216269 84.5818769,30.5 89.0003461,30.5 L104,30.5 L104,71 L112,71 Z\"></path>\n <rect x=\"32\" y=\"36\" width=\"64\" height=\"8\" rx=\"4\"></rect>\n <rect x=\"32\" y=\"52\" width=\"64\" height=\"8\" rx=\"4\"></rect>\n <rect x=\"32\" y=\"20\" width=\"40\" height=\"8\" rx=\"4\"></rect>\n <path d=\"M0,80.0054195 C0,71.1658704 7.15611005,64 16.0008841,64 L111.999116,64 C120.83616,64 128,71.1553215 128,80.0054195 L128,111.99458 C128,120.83413 120.84389,128 111.999116,128 L16.0008841,128 C7.16383982,128 0,120.844679 0,111.99458 L0,80.0054195 Z M104,96 C108.418278,96 112,92.418278 112,88 C112,83.581722 108.418278,80 104,80 C99.581722,80 96,83.581722 96,88 C96,92.418278 99.581722,96 104,96 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/quote": {
"title": "$:/core/images/quote",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-quote tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M51.2188077,117.712501 L51.2188077,62.1993386 L27.4274524,62.1993386 C27.4274524,53.3075754 29.1096526,45.797753 32.4741035,39.669646 C35.8385544,33.541539 42.0867267,28.9154883 51.2188077,25.7913554 L51.2188077,2 C43.7689521,2.96127169 36.8599155,5.18417913 30.4914905,8.668789 C24.1230656,12.1533989 18.6559149,16.5391352 14.0898743,21.8261295 C9.52383382,27.1131238 5.97919764,33.2411389 3.45585945,40.2103586 C0.932521268,47.1795784 -0.208971741,54.6293222 0.0313461819,62.5598136 L0.0313461819,117.712501 L51.2188077,117.712501 Z M128,117.712501 L128,62.1993386 L104.208645,62.1993386 C104.208645,53.3075754 105.890845,45.797753 109.255296,39.669646 C112.619747,33.541539 118.867919,28.9154883 128,25.7913554 L128,2 C120.550144,2.96127169 113.641108,5.18417913 107.272683,8.668789 C100.904258,12.1533989 95.4371072,16.5391352 90.8710666,21.8261295 C86.3050261,27.1131238 82.7603899,33.2411389 80.2370517,40.2103586 C77.7137136,47.1795784 76.5722206,54.6293222 76.8125385,62.5598136 L76.8125385,117.712501 L128,117.712501 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/refresh-button": {
"title": "$:/core/images/refresh-button",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-refresh-button tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M106.369002,39.4325143 C116.529932,60.3119371 112.939592,86.1974934 95.5979797,103.539105 C73.7286194,125.408466 38.2713806,125.408466 16.4020203,103.539105 C-5.46734008,81.6697449 -5.46734008,46.2125061 16.4020203,24.3431458 C19.5262146,21.2189514 24.5915344,21.2189514 27.7157288,24.3431458 C30.8399231,27.4673401 30.8399231,32.5326599 27.7157288,35.6568542 C12.0947571,51.2778259 12.0947571,76.6044251 27.7157288,92.2253967 C43.3367004,107.846368 68.6632996,107.846368 84.2842712,92.2253967 C97.71993,78.7897379 99.5995262,58.1740623 89.9230597,42.729491 L83.4844861,54.9932839 C81.4307001,58.9052072 76.5945372,60.4115251 72.682614,58.3577391 C68.7706907,56.3039532 67.2643728,51.4677903 69.3181587,47.555867 L84.4354914,18.7613158 C86.4966389,14.8353707 91.3577499,13.3347805 95.273202,15.415792 L124.145886,30.7612457 C128.047354,32.8348248 129.52915,37.6785572 127.455571,41.5800249 C125.381992,45.4814927 120.53826,46.9632892 116.636792,44.8897102 L106.369002,39.4325143 Z M98.1470904,27.0648707 C97.9798954,26.8741582 97.811187,26.6843098 97.6409651,26.4953413 L98.6018187,26.1987327 L98.1470904,27.0648707 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/right-arrow": {
"title": "$:/core/images/right-arrow",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-right-arrow tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <path d=\"M80.3563798,109.353315 C78.9238993,110.786918 76.9450203,111.675144 74.7592239,111.675144 L-4.40893546,111.675144 C-8.77412698,111.675144 -12.3248558,108.130732 -12.3248558,103.758478 C-12.3248558,99.3951199 -8.78077754,95.8418109 -4.40893546,95.8418109 L66.8418109,95.8418109 L66.8418109,24.5910645 C66.8418109,20.225873 70.3862233,16.6751442 74.7584775,16.6751442 C79.1218352,16.6751442 82.6751442,20.2192225 82.6751442,24.5910645 L82.6751442,103.759224 C82.6751442,105.941695 81.7891419,107.920575 80.3566508,109.353886 Z\" transform=\"translate(35.175144, 64.175144) rotate(-45.000000) translate(-35.175144, -64.175144) \"></path>\n</svg>"
},
"$:/core/images/rotate-left": {
"title": "$:/core/images/rotate-left",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-rotate-left tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\"><g fill-rule=\"evenodd\"><rect width=\"32\" height=\"80\" rx=\"8\"/><rect x=\"48\" y=\"96\" width=\"80\" height=\"32\" rx=\"8\"/><path d=\"M61.32 36.65c19.743 2.45 35.023 19.287 35.023 39.693a4 4 0 0 1-8 0c0-15.663-11.254-28.698-26.117-31.46l3.916 3.916a4 4 0 1 1-5.657 5.657L49.172 43.142a4 4 0 0 1 0-5.657l11.313-11.313a4 4 0 1 1 5.657 5.656l-4.821 4.822z\"/></g></svg>"
},
"$:/core/images/save-button": {
"title": "$:/core/images/save-button",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-save-button tc-image-button\" viewBox=\"0 0 128 128\" width=\"22pt\" height=\"22pt\">\n <g fill-rule=\"evenodd\">\n <path d=\"M120.78304,34.329058 C125.424287,43.1924006 128.049406,53.2778608 128.049406,63.9764502 C128.049406,99.3226742 99.3956295,127.97645 64.0494055,127.97645 C28.7031816,127.97645 0.0494055385,99.3226742 0.0494055385,63.9764502 C0.0494055385,28.6302262 28.7031816,-0.0235498012 64.0494055,-0.0235498012 C82.8568763,-0.0235498012 99.769563,8.08898558 111.479045,21.0056358 L114.159581,18.3250998 C117.289194,15.1954866 122.356036,15.1939641 125.480231,18.3181584 C128.598068,21.4359957 128.601317,26.5107804 125.473289,29.6388083 L120.78304,34.329058 Z M108.72451,46.3875877 C110.870571,51.8341374 112.049406,57.767628 112.049406,63.9764502 C112.049406,90.4861182 90.5590735,111.97645 64.0494055,111.97645 C37.5397375,111.97645 16.0494055,90.4861182 16.0494055,63.9764502 C16.0494055,37.4667822 37.5397375,15.9764502 64.0494055,15.9764502 C78.438886,15.9764502 91.3495036,22.308215 100.147097,32.3375836 L58.9411255,73.5435552 L41.975581,56.5780107 C38.8486152,53.4510448 33.7746915,53.4551552 30.6568542,56.5729924 C27.5326599,59.6971868 27.5372202,64.7670668 30.6618725,67.8917192 L53.279253,90.5090997 C54.8435723,92.073419 56.8951519,92.8541315 58.9380216,92.8558261 C60.987971,92.8559239 63.0389578,92.0731398 64.6049211,90.5071765 L108.72451,46.3875877 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/size": {
"title": "$:/core/images/size",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-size tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <path d=\"M92.3431458,26 L83.1715729,35.1715729 C81.6094757,36.73367 81.6094757,39.26633 83.1715729,40.8284271 C84.73367,42.3905243 87.26633,42.3905243 88.8284271,40.8284271 L104.828427,24.8284271 C106.390524,23.26633 106.390524,20.73367 104.828427,19.1715729 L88.8284271,3.17157288 C87.26633,1.60947571 84.73367,1.60947571 83.1715729,3.17157288 C81.6094757,4.73367004 81.6094757,7.26632996 83.1715729,8.82842712 L92.3431457,18 L22,18 C19.790861,18 18,19.790861 18,22 L18,92.3431458 L8.82842712,83.1715729 C7.26632996,81.6094757 4.73367004,81.6094757 3.17157288,83.1715729 C1.60947571,84.73367 1.60947571,87.26633 3.17157288,88.8284271 L19.1715729,104.828427 C20.73367,106.390524 23.26633,106.390524 24.8284271,104.828427 L40.8284271,88.8284271 C42.3905243,87.26633 42.3905243,84.73367 40.8284271,83.1715729 C39.26633,81.6094757 36.73367,81.6094757 35.1715729,83.1715729 L26,92.3431458 L26,22 L22,26 L92.3431458,26 L92.3431458,26 Z M112,52 L112,116 L116,112 L52,112 C49.790861,112 48,113.790861 48,116 C48,118.209139 49.790861,120 52,120 L116,120 C118.209139,120 120,118.209139 120,116 L120,52 C120,49.790861 118.209139,48 116,48 C113.790861,48 112,49.790861 112,52 L112,52 Z\"></path>\n</svg>"
},
"$:/core/images/spiral": {
"title": "$:/core/images/spiral",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-spiral tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"nonzero\">\n <path d=\"M64.534 68.348c3.39 0 6.097-2.62 6.476-5.968l-4.755-.538 4.75.583c.377-3.07-1.194-6.054-3.89-7.78-2.757-1.773-6.34-2.01-9.566-.7-3.46 1.403-6.14 4.392-7.35 8.148l-.01.026c-1.3 4.08-.72 8.64 1.58 12.52 2.5 4.2 6.77 7.2 11.76 8.27 5.37 1.15 11.11-.05 15.83-3.31 5.04-3.51 8.46-9.02 9.45-15.3 1.05-6.7-.72-13.63-4.92-19.19l.02.02c-4.42-5.93-11.2-9.82-18.78-10.78-7.96-1.01-16.13 1.31-22.59 6.43-6.81 5.39-11.18 13.41-12.11 22.26-.98 9.27 1.87 18.65 7.93 26.02 6.32 7.69 15.6 12.56 25.74 13.48 10.54.96 21.15-2.42 29.45-9.4l.01-.01c8.58-7.25 13.94-17.78 14.86-29.21.94-11.84-2.96-23.69-10.86-32.9-8.19-9.5-19.95-15.36-32.69-16.27-13.16-.94-26.24 3.49-36.34 12.34l.01-.01c-10.41 9.08-16.78 22.1-17.68 36.15-.93 14.44 4.03 28.77 13.79 39.78 10.03 11.32 24.28 18.2 39.6 19.09 15.73.92 31.31-4.56 43.24-15.234 12.23-10.954 19.61-26.44 20.5-43.074.14-2.64-1.89-4.89-4.52-5.03-2.64-.14-4.89 1.88-5.03 4.52-.75 14.1-7 27.2-17.33 36.45-10.03 8.98-23.11 13.58-36.3 12.81-12.79-.75-24.67-6.48-33-15.89-8.07-9.11-12.17-20.94-11.41-32.827.74-11.52 5.942-22.15 14.43-29.54l.01-.01c8.18-7.17 18.74-10.75 29.35-9.998 10.21.726 19.6 5.41 26.11 12.96 6.24 7.273 9.32 16.61 8.573 25.894-.718 8.9-4.88 17.064-11.504 22.66l.01-.007c-6.36 5.342-14.44 7.92-22.425 7.19-7.604-.68-14.52-4.314-19.21-10.027-4.44-5.4-6.517-12.23-5.806-18.94.67-6.3 3.76-11.977 8.54-15.766 4.46-3.54 10.05-5.128 15.44-4.44 5.03.63 9.46 3.18 12.32 7.01l.02.024c2.65 3.5 3.75 7.814 3.1 11.92-.59 3.71-2.58 6.925-5.45 8.924-2.56 1.767-5.61 2.403-8.38 1.81-2.42-.516-4.42-1.92-5.53-3.79-.93-1.56-1.15-3.3-.69-4.75l-4.56-1.446L59.325 65c.36-1.12 1.068-1.905 1.84-2.22.25-.103.48-.14.668-.13.06.006.11.015.14.025.01 0 .01 0-.01-.01-.02-.015-.054-.045-.094-.088-.06-.064-.12-.145-.17-.244-.15-.29-.23-.678-.18-1.11l-.005.04c.15-1.332 1.38-2.523 3.035-2.523-2.65 0-4.79 2.144-4.79 4.787s2.14 4.785 4.78 4.785z\"></path>\n </g>\n</svg>"
},
"$:/core/images/stamp": {
"title": "$:/core/images/stamp",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-stamp tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M49.7334301,64 L16.0098166,64 C11.5838751,64 8,67.5829053 8,72.002643 L8,74.4986785 L8,97 L120,97 L120,74.4986785 L120,72.002643 C120,67.5737547 116.413883,64 111.990183,64 L78.2665699,64 C76.502049,60.7519149 75.5,57.0311962 75.5,53.0769231 C75.5,46.6017951 78.1869052,40.7529228 82.5087769,36.5800577 C85.3313113,32.7688808 87,28.0549983 87,22.952183 C87,10.2760423 76.7025492,0 64,0 C51.2974508,0 41,10.2760423 41,22.952183 C41,28.0549983 42.6686887,32.7688808 45.4912231,36.5800577 C49.8130948,40.7529228 52.5,46.6017951 52.5,53.0769231 C52.5,57.0311962 51.497951,60.7519149 49.7334301,64 Z M8,104 L120,104 L120,112 L8,112 L8,104 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/star-filled": {
"title": "$:/core/images/star-filled",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-star-filled tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"nonzero\">\n <path d=\"M61.8361286,96.8228569 L99.1627704,124.110219 C101.883827,126.099427 105.541968,123.420868 104.505636,120.198072 L90.2895569,75.9887263 L89.0292911,79.8977279 L126.314504,52.5528988 C129.032541,50.5595011 127.635256,46.2255025 124.273711,46.2229134 L78.1610486,46.1873965 L81.4604673,48.6032923 L67.1773543,4.41589688 C66.1361365,1.19470104 61.6144265,1.19470104 60.5732087,4.41589688 L46.2900957,48.6032923 L49.5895144,46.1873965 L3.47685231,46.2229134 C0.115307373,46.2255025 -1.28197785,50.5595011 1.43605908,52.5528988 L38.7212719,79.8977279 L37.4610061,75.9887263 L23.2449266,120.198072 C22.2085954,123.420868 25.8667356,126.099427 28.5877926,124.110219 L65.9144344,96.8228569 L61.8361286,96.8228569 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/storyview-classic": {
"title": "$:/core/images/storyview-classic",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-storyview-classic tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M8.00697327,0 C3.58484404,0 0,3.59075293 0,8.00697327 L0,119.993027 C0,124.415156 3.59075293,128 8.00697327,128 L119.993027,128 C124.415156,128 128,124.409247 128,119.993027 L128,8.00697327 C128,3.58484404 124.409247,0 119.993027,0 L8.00697327,0 L8.00697327,0 Z M23.9992458,16 C19.5813843,16 16,19.5776607 16,23.9924054 L16,40.0075946 C16,44.4216782 19.5881049,48 23.9992458,48 L104.000754,48 C108.418616,48 112,44.4223393 112,40.0075946 L112,23.9924054 C112,19.5783218 108.411895,16 104.000754,16 L23.9992458,16 L23.9992458,16 Z M23.9992458,64 C19.5813843,64 16,67.5907123 16,72 C16,76.418278 19.5881049,80 23.9992458,80 L104.000754,80 C108.418616,80 112,76.4092877 112,72 C112,67.581722 108.411895,64 104.000754,64 L23.9992458,64 L23.9992458,64 Z M23.9992458,96 C19.5813843,96 16,99.5907123 16,104 C16,108.418278 19.5881049,112 23.9992458,112 L104.000754,112 C108.418616,112 112,108.409288 112,104 C112,99.581722 108.411895,96 104.000754,96 L23.9992458,96 L23.9992458,96 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/storyview-pop": {
"title": "$:/core/images/storyview-pop",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-storyview-pop tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M8.00697327,0 C3.58484404,0 0,3.59075293 0,8.00697327 L0,119.993027 C0,124.415156 3.59075293,128 8.00697327,128 L119.993027,128 C124.415156,128 128,124.409247 128,119.993027 L128,8.00697327 C128,3.58484404 124.409247,0 119.993027,0 L8.00697327,0 L8.00697327,0 Z M23.9992458,16 C19.5813843,16 16,19.5776607 16,23.9924054 L16,40.0075946 C16,44.4216782 19.5881049,48 23.9992458,48 L104.000754,48 C108.418616,48 112,44.4223393 112,40.0075946 L112,23.9924054 C112,19.5783218 108.411895,16 104.000754,16 L23.9992458,16 L23.9992458,16 Z M16.0098166,56 C11.586117,56 8,59.5776607 8,63.9924054 L8,80.0075946 C8,84.4216782 11.5838751,88 16.0098166,88 L111.990183,88 C116.413883,88 120,84.4223393 120,80.0075946 L120,63.9924054 C120,59.5783218 116.416125,56 111.990183,56 L16.0098166,56 L16.0098166,56 Z M23.9992458,96 C19.5813843,96 16,99.5907123 16,104 C16,108.418278 19.5881049,112 23.9992458,112 L104.000754,112 C108.418616,112 112,108.409288 112,104 C112,99.581722 108.411895,96 104.000754,96 L23.9992458,96 L23.9992458,96 Z M23.9992458,64 C19.5813843,64 16,67.5907123 16,72 C16,76.418278 19.5881049,80 23.9992458,80 L104.000754,80 C108.418616,80 112,76.4092877 112,72 C112,67.581722 108.411895,64 104.000754,64 L23.9992458,64 L23.9992458,64 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/storyview-zoomin": {
"title": "$:/core/images/storyview-zoomin",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-storyview-zoomin tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M8.00697327,0 C3.58484404,0 0,3.59075293 0,8.00697327 L0,119.993027 C0,124.415156 3.59075293,128 8.00697327,128 L119.993027,128 C124.415156,128 128,124.409247 128,119.993027 L128,8.00697327 C128,3.58484404 124.409247,0 119.993027,0 L8.00697327,0 L8.00697327,0 Z M23.9992458,16 C19.5813843,16 16,19.578055 16,24.0085154 L16,71.9914846 C16,76.4144655 19.5881049,80 23.9992458,80 L104.000754,80 C108.418616,80 112,76.421945 112,71.9914846 L112,24.0085154 C112,19.5855345 108.411895,16 104.000754,16 L23.9992458,16 L23.9992458,16 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/strikethrough": {
"title": "$:/core/images/strikethrough",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-strikethrough tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M92.793842,38.7255689 L108.215529,38.7255689 C107.987058,31.985687 106.70193,26.1883331 104.360107,21.3333333 C102.018284,16.4783336 98.8197436,12.4516001 94.7643909,9.25301205 C90.7090382,6.05442399 85.9969032,3.71263572 80.6278447,2.22757697 C75.2587862,0.742518233 69.4328739,0 63.1499331,0 C57.552404,0 52.0977508,0.713959839 46.7858099,2.14190094 C41.473869,3.56984203 36.7331757,5.74027995 32.5635877,8.65327979 C28.3939997,11.5662796 25.0526676,15.2788708 22.5394913,19.7911647 C20.026315,24.3034585 18.7697456,29.6438781 18.7697456,35.8125837 C18.7697456,41.4101128 19.883523,46.0651309 22.1111111,49.7777778 C24.3386992,53.4904246 27.3087722,56.5176144 31.021419,58.8594378 C34.7340659,61.2012612 38.9321497,63.0861151 43.6157965,64.5140562 C48.2994433,65.9419973 53.068695,67.1985666 57.9236948,68.2838019 C62.7786945,69.3690371 67.5479462,70.4256977 72.231593,71.4538153 C76.9152398,72.4819329 81.1133237,73.8241773 84.8259705,75.480589 C88.5386174,77.1370007 91.5086903,79.2788802 93.7362784,81.9062918 C95.9638666,84.5337035 97.0776439,87.9607107 97.0776439,92.1874163 C97.0776439,96.6425926 96.1637753,100.298067 94.3360107,103.153949 C92.5082461,106.009831 90.109341,108.265944 87.1392236,109.922356 C84.1691061,111.578768 80.827774,112.749662 77.1151272,113.435074 C73.4024803,114.120485 69.7184476,114.463186 66.0629183,114.463186 C61.4935068,114.463186 57.0383974,113.892018 52.6974565,112.749665 C48.3565156,111.607312 44.5582492,109.836692 41.3025435,107.437751 C38.0468378,105.03881 35.4194656,101.983062 33.4203481,98.270415 C31.4212305,94.5577681 30.4216867,90.1312171 30.4216867,84.9906292 L15,84.9906292 C15,92.4159229 16.3422445,98.8415614 19.0267738,104.267738 C21.711303,109.693914 25.3667774,114.149023 29.9933066,117.633199 C34.6198357,121.117376 39.9888137,123.71619 46.1004016,125.429719 C52.2119895,127.143248 58.6947448,128 65.5488621,128 C71.1463912,128 76.7723948,127.343157 82.4270415,126.029451 C88.0816882,124.715745 93.1936407,122.602424 97.7630522,119.689424 C102.332464,116.776425 106.073613,113.006717 108.986613,108.380187 C111.899613,103.753658 113.356091,98.1847715 113.356091,91.6733601 C113.356091,85.6188899 112.242314,80.5926126 110.014726,76.5943775 C107.787137,72.5961424 104.817065,69.2833688 101.104418,66.6559572 C97.3917708,64.0285455 93.193687,61.9437828 88.5100402,60.4016064 C83.8263934,58.85943 79.0571416,57.5171855 74.2021419,56.3748327 C69.3471422,55.2324798 64.5778904,54.1758192 59.8942436,53.2048193 C55.2105968,52.2338193 51.012513,51.0058084 47.2998661,49.5207497 C43.5872193,48.0356909 40.6171463,46.1222786 38.3895582,43.7804552 C36.1619701,41.4386318 35.0481928,38.3828836 35.0481928,34.6131191 C35.0481928,30.6148841 35.8192694,27.273552 37.3614458,24.5890228 C38.9036222,21.9044935 40.9598265,19.762614 43.5301205,18.1633199 C46.1004145,16.5640259 49.041929,15.4216902 52.3547523,14.7362784 C55.6675757,14.0508667 59.0374661,13.708166 62.4645248,13.708166 C70.9179361,13.708166 77.8576257,15.6786952 83.2838019,19.6198126 C88.709978,23.56093 91.8799597,29.9294518 92.793842,38.7255689 L92.793842,38.7255689 Z\"></path>\n <rect x=\"5\" y=\"54\" width=\"118\" height=\"16\"></rect>\n </g>\n</svg>"
},
"$:/core/images/subscript": {
"title": "$:/core/images/subscript",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-subscript tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M2.27170276,16 L22.1825093,16 L43.8305003,49.6746527 L66.4138983,16 L85.1220387,16 L53.5854592,61.9685735 L87.3937414,111.411516 L67.0820462,111.411516 L43.295982,74.9306422 L19.1090291,111.411516 L0,111.411516 L33.8082822,61.9685735 L2.27170276,16 Z M127.910914,128.411516 L85.3276227,128.411516 C85.3870139,123.24448 86.6342108,118.730815 89.0692508,114.870386 C91.5042907,111.009956 94.8301491,107.654403 99.0469256,104.803624 C101.066227,103.318844 103.174584,101.878629 105.372059,100.482935 C107.569534,99.0872413 109.588805,97.5876355 111.429933,95.9840726 C113.271061,94.3805097 114.785514,92.6433426 115.973338,90.7725192 C117.161163,88.9016958 117.784761,86.7487964 117.844152,84.3137564 C117.844152,83.1853233 117.710524,81.9826691 117.443264,80.7057579 C117.176003,79.4288467 116.656338,78.2410402 115.884252,77.1423026 C115.112166,76.0435651 114.04314,75.123015 112.677142,74.3806248 C111.311144,73.6382345 109.529434,73.267045 107.331959,73.267045 C105.312658,73.267045 103.634881,73.6679297 102.298579,74.4697112 C100.962276,75.2714926 99.8932503,76.3702137 99.0914688,77.7659073 C98.2896874,79.161601 97.6957841,80.8096826 97.3097412,82.7102016 C96.9236982,84.6107206 96.7009845,86.6596869 96.6415933,88.857162 L86.4857457,88.857162 C86.4857457,85.4124713 86.9460207,82.2202411 87.8665846,79.2803758 C88.7871485,76.3405105 90.1679736,73.801574 92.0091014,71.6634901 C93.8502292,69.5254062 96.092214,67.8476295 98.7351233,66.6301095 C101.378033,65.4125895 104.451482,64.8038386 107.955564,64.8038386 C111.756602,64.8038386 114.933984,65.4274371 117.487807,66.6746527 C120.041629,67.9218683 122.105443,69.4957119 123.67931,71.3962309 C125.253178,73.2967499 126.366746,75.3605638 127.02005,77.5877345 C127.673353,79.8149053 128,81.9381095 128,83.9574109 C128,86.4518421 127.613963,88.7086746 126.841877,90.727976 C126.069791,92.7472774 125.03046,94.6032252 123.723854,96.2958749 C122.417247,97.9885247 120.932489,99.5475208 119.269534,100.97291 C117.60658,102.398299 115.884261,103.734582 114.102524,104.981797 C112.320788,106.229013 110.539078,107.416819 108.757341,108.545253 C106.975605,109.673686 105.327523,110.802102 103.813047,111.930535 C102.298571,113.058968 100.977136,114.231927 99.8487031,115.449447 C98.7202699,116.666967 97.9481956,117.958707 97.5324571,119.324705 L127.910914,119.324705 L127.910914,128.411516 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/superscript": {
"title": "$:/core/images/superscript",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-superscript tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M2.27170276,16 L22.1825093,16 L43.8305003,49.6746527 L66.4138983,16 L85.1220387,16 L53.5854592,61.9685735 L87.3937414,111.411516 L67.0820462,111.411516 L43.295982,74.9306422 L19.1090291,111.411516 L0,111.411516 L33.8082822,61.9685735 L2.27170276,16 Z M127.910914,63.4115159 L85.3276227,63.4115159 C85.3870139,58.2444799 86.6342108,53.7308149 89.0692508,49.8703857 C91.5042907,46.0099565 94.8301491,42.654403 99.0469256,39.8036245 C101.066227,38.318844 103.174584,36.8786285 105.372059,35.4829349 C107.569534,34.0872413 109.588805,32.5876355 111.429933,30.9840726 C113.271061,29.3805097 114.785514,27.6433426 115.973338,25.7725192 C117.161163,23.9016958 117.784761,21.7487964 117.844152,19.3137564 C117.844152,18.1853233 117.710524,16.9826691 117.443264,15.7057579 C117.176003,14.4288467 116.656338,13.2410402 115.884252,12.1423026 C115.112166,11.0435651 114.04314,10.123015 112.677142,9.38062477 C111.311144,8.63823453 109.529434,8.26704499 107.331959,8.26704499 C105.312658,8.26704499 103.634881,8.6679297 102.298579,9.46971115 C100.962276,10.2714926 99.8932503,11.3702137 99.0914688,12.7659073 C98.2896874,14.161601 97.6957841,15.8096826 97.3097412,17.7102016 C96.9236982,19.6107206 96.7009845,21.6596869 96.6415933,23.857162 L86.4857457,23.857162 C86.4857457,20.4124713 86.9460207,17.2202411 87.8665846,14.2803758 C88.7871485,11.3405105 90.1679736,8.80157397 92.0091014,6.6634901 C93.8502292,4.52540622 96.092214,2.84762946 98.7351233,1.63010947 C101.378033,0.412589489 104.451482,-0.196161372 107.955564,-0.196161372 C111.756602,-0.196161372 114.933984,0.427437071 117.487807,1.67465266 C120.041629,2.92186826 122.105443,4.49571195 123.67931,6.39623095 C125.253178,8.29674995 126.366746,10.3605638 127.02005,12.5877345 C127.673353,14.8149053 128,16.9381095 128,18.9574109 C128,21.4518421 127.613963,23.7086746 126.841877,25.727976 C126.069791,27.7472774 125.03046,29.6032252 123.723854,31.2958749 C122.417247,32.9885247 120.932489,34.5475208 119.269534,35.97291 C117.60658,37.3982993 115.884261,38.7345816 114.102524,39.9817972 C112.320788,41.2290128 110.539078,42.4168194 108.757341,43.5452525 C106.975605,44.6736857 105.327523,45.8021019 103.813047,46.9305351 C102.298571,48.0589682 100.977136,49.2319272 99.8487031,50.4494472 C98.7202699,51.6669672 97.9481956,52.9587068 97.5324571,54.3247048 L127.910914,54.3247048 L127.910914,63.4115159 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/tag-button": {
"title": "$:/core/images/tag-button",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-tag-button tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M18.1643182,47.6600756 L18.1677196,51.7651887 C18.1708869,55.5878829 20.3581578,60.8623899 23.0531352,63.5573673 L84.9021823,125.406414 C87.5996731,128.103905 91.971139,128.096834 94.6717387,125.396234 L125.766905,94.3010679 C128.473612,91.5943612 128.472063,87.2264889 125.777085,84.5315115 L63.9280381,22.6824644 C61.2305472,19.9849735 55.9517395,17.801995 52.1318769,17.8010313 L25.0560441,17.7942007 C21.2311475,17.7932358 18.1421354,20.8872832 18.1452985,24.7049463 L18.1535504,34.6641936 C18.2481119,34.6754562 18.3439134,34.6864294 18.4409623,34.6971263 C22.1702157,35.1081705 26.9295004,34.6530132 31.806204,33.5444844 C32.1342781,33.0700515 32.5094815,32.6184036 32.9318197,32.1960654 C35.6385117,29.4893734 39.5490441,28.718649 42.94592,29.8824694 C43.0432142,29.8394357 43.1402334,29.7961748 43.2369683,29.7526887 L43.3646982,30.0368244 C44.566601,30.5115916 45.6933052,31.2351533 46.6655958,32.2074439 C50.4612154,36.0030635 50.4663097,42.1518845 46.6769742,45.94122 C43.0594074,49.5587868 37.2914155,49.7181264 33.4734256,46.422636 C28.1082519,47.5454734 22.7987486,48.0186448 18.1643182,47.6600756 Z\"></path>\n <path d=\"M47.6333528,39.5324628 L47.6562932,39.5834939 C37.9670934,43.9391617 26.0718874,46.3819521 17.260095,45.4107025 C5.27267473,44.0894301 -1.02778744,36.4307276 2.44271359,24.0779512 C5.56175386,12.9761516 14.3014034,4.36129832 24.0466405,1.54817001 C34.7269254,-1.53487574 43.7955833,3.51606438 43.7955834,14.7730751 L35.1728168,14.7730752 C35.1728167,9.91428944 32.0946059,8.19982862 26.4381034,9.83267419 C19.5270911,11.8276553 13.046247,18.2159574 10.7440788,26.4102121 C8.82861123,33.2280582 11.161186,36.0634845 18.2047888,36.8398415 C25.3302805,37.6252244 35.7353482,35.4884477 44.1208333,31.7188498 L44.1475077,31.7781871 C44.159701,31.7725635 44.1718402,31.7671479 44.1839238,31.7619434 C45.9448098,31.0035157 50.4503245,38.3109156 47.7081571,39.5012767 C47.6834429,39.512005 47.6585061,39.5223987 47.6333528,39.5324628 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/theme-button": {
"title": "$:/core/images/theme-button",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-theme-button tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M55.854113,66.9453198 C54.3299482,65.1432292 53.0133883,63.518995 51.9542746,62.1263761 C40.8899947,47.578055 35.3091807,55.2383404 28.9941893,62.1263758 C22.6791979,69.0144112 30.6577916,74.5954741 24.6646171,79.4611023 C18.6714426,84.3267304 19.0414417,86.0133155 8.92654943,77.1119468 C-1.18834284,68.2105781 -1.88793412,65.7597832 2.7553553,60.6807286 C7.39864472,55.601674 11.2794845,63.5989423 20.7646627,54.5728325 C30.2498409,45.5467226 22.2819131,37.5470737 22.2819131,37.5470737 C22.2819131,37.5470737 42.0310399,-2.82433362 68.4206088,0.157393922 C94.8101776,3.13912147 58.4373806,-3.70356506 49.3898693,27.958066 C45.5161782,41.5139906 50.1107906,38.3197672 57.4560458,44.0453955 C59.1625767,45.3756367 63.8839488,48.777453 70.127165,53.3625321 C63.9980513,59.2416709 58.9704753,64.0315459 55.854113,66.9453198 Z M67.4952439,79.8919946 C83.5082212,96.9282402 105.237121,117.617674 112.611591,120.312493 C123.044132,124.12481 128.000001,117.170903 128,105.522947 C127.999999,98.3705516 104.170675,78.980486 84.0760493,63.7529565 C76.6683337,70.9090328 70.7000957,76.7055226 67.4952439,79.8919946 Z\"></path>\n <path d=\"M58.2852966,138.232794 L58.2852966,88.3943645 C56.318874,88.3923153 54.7254089,86.7952906 54.7254089,84.8344788 C54.7254089,82.8684071 56.3175932,81.2745911 58.2890859,81.2745911 L79.6408336,81.2745911 C81.608998,81.2745911 83.2045105,82.8724076 83.2045105,84.8344788 C83.2045105,86.7992907 81.614366,88.3923238 79.6446228,88.3943645 L79.6446228,88.3943646 L79.6446228,138.232794 C79.6446228,144.131009 74.8631748,148.912457 68.9649597,148.912457 C63.0667446,148.912457 58.2852966,144.131009 58.2852966,138.232794 Z M65.405072,-14.8423767 L72.5248474,-14.8423767 L76.0847351,-0.690681892 L72.5248474,6.51694947 L72.5248474,81.2745911 L65.405072,81.2745911 L65.405072,6.51694947 L61.8451843,-0.690681892 L65.405072,-14.8423767 Z\" transform=\"translate(68.964960, 67.035040) rotate(45.000000) translate(-68.964960, -67.035040) \"></path>\n </g>\n</svg>"
},
"$:/core/images/timestamp-off": {
"title": "$:/core/images/timestamp-off",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-timestamp-off tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M58.25 11C26.08 11 0 37.082 0 69.25s26.08 58.25 58.25 58.25c32.175 0 58.25-26.082 58.25-58.25S90.425 11 58.25 11zm0 100.5C34.914 111.5 16 92.586 16 69.25 16 45.92 34.914 27 58.25 27s42.25 18.92 42.25 42.25c0 23.336-18.914 42.25-42.25 42.25zM49.704 10c-2.762 0-5-2.24-5-5-.004-2.756 2.238-5 5-5H66.69c2.762 0 5.002 2.24 5 5 .006 2.757-2.238 5-5 5H49.705z\"/><path d=\"M58.25 35.88c-18.777 0-33.998 15.224-33.998 33.998 0 18.773 15.22 34.002 33.998 34.002 18.784 0 34.002-15.23 34.002-34.002 0-18.774-15.218-33.998-34.002-33.998zm-3.03 50.123H44.196v-34H55.22v34zm16.976 0H61.17v-34h11.025v34z\"/>\n </g>\n</svg>\n"
},
"$:/core/images/timestamp-on": {
"title": "$:/core/images/timestamp-on",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-timestamp-on tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M58.25 11C26.08 11 0 37.082 0 69.25s26.08 58.25 58.25 58.25c32.175 0 58.25-26.082 58.25-58.25S90.425 11 58.25 11zm0 100.5C34.914 111.5 16 92.586 16 69.25 16 45.92 34.914 27 58.25 27s42.25 18.92 42.25 42.25c0 23.336-18.914 42.25-42.25 42.25zM49.704 10c-2.762 0-5-2.24-5-5-.004-2.756 2.238-5 5-5H66.69c2.762 0 5.002 2.24 5 5 .006 2.757-2.238 5-5 5H49.705z\"/><path d=\"M13.41 27.178c-2.116 1.775-5.27 1.498-7.045-.613-1.772-2.11-1.498-5.27.616-7.047l9.95-8.348c2.115-1.774 5.27-1.5 7.045.618 1.775 2.108 1.498 5.27-.616 7.043l-9.95 8.348zM102.983 27.178c2.116 1.775 5.27 1.498 7.045-.613 1.772-2.11 1.498-5.27-.616-7.047l-9.95-8.348c-2.114-1.774-5.27-1.5-7.044.618-1.775 2.108-1.498 5.27.616 7.043l9.95 8.348zM65.097 71.072c0 3.826-3.09 6.928-6.897 6.928-3.804.006-6.9-3.102-6.903-6.928 0 0 4.76-39.072 6.903-39.072s6.897 39.072 6.897 39.072z\"/>\n </g>\n</svg>\n"
},
"$:/core/images/tip": {
"title": "$:/core/images/tip",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-tip tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M64,128.241818 C99.346224,128.241818 128,99.5880417 128,64.2418177 C128,28.8955937 99.346224,0.241817675 64,0.241817675 C28.653776,0.241817675 0,28.8955937 0,64.2418177 C0,99.5880417 28.653776,128.241818 64,128.241818 Z M75.9358659,91.4531941 C75.3115438,95.581915 70.2059206,98.8016748 64,98.8016748 C57.7940794,98.8016748 52.6884562,95.581915 52.0641341,91.4531941 C54.3299053,94.0502127 58.8248941,95.8192805 64,95.8192805 C69.1751059,95.8192805 73.6700947,94.0502127 75.9358659,91.4531941 L75.9358659,91.4531941 Z M75.9358659,95.9453413 C75.3115438,100.074062 70.2059206,103.293822 64,103.293822 C57.7940794,103.293822 52.6884562,100.074062 52.0641341,95.9453413 C54.3299053,98.5423599 58.8248941,100.311428 64,100.311428 C69.1751059,100.311428 73.6700947,98.5423599 75.9358659,95.9453413 L75.9358659,95.9453413 Z M75.9358659,100.40119 C75.3115438,104.529911 70.2059206,107.74967 64,107.74967 C57.7940794,107.74967 52.6884562,104.529911 52.0641341,100.40119 C54.3299053,102.998208 58.8248941,104.767276 64,104.767276 C69.1751059,104.767276 73.6700947,102.998208 75.9358659,100.40119 L75.9358659,100.40119 Z M75.9358659,104.893337 C75.3115438,109.022058 70.2059206,112.241818 64,112.241818 C57.7940794,112.241818 52.6884562,109.022058 52.0641341,104.893337 C54.3299053,107.490356 58.8248941,109.259423 64,109.259423 C69.1751059,109.259423 73.6700947,107.490356 75.9358659,104.893337 L75.9358659,104.893337 Z M64.3010456,24.2418177 C75.9193117,24.2418188 88.0000013,32.0619847 88,48.4419659 C87.9999987,64.8219472 75.9193018,71.7540963 75.9193021,83.5755932 C75.9193022,89.4486648 70.0521957,92.8368862 63.9999994,92.8368862 C57.947803,92.8368862 51.9731007,89.8295115 51.9731007,83.5755932 C51.9731007,71.1469799 39.9999998,65.4700602 40,48.4419647 C40.0000002,31.4138691 52.6827796,24.2418166 64.3010456,24.2418177 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/transcludify": {
"title": "$:/core/images/transcludify",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-transcludify-button tc-image-button\" viewBox=\"0 0 128 128\" width=\"22pt\" height=\"22pt\"><path d=\"M0 59.482c.591 0 1.36-.089 2.306-.266a10.417 10.417 0 0 0 2.75-.932 6.762 6.762 0 0 0 2.306-1.907c.651-.828.976-1.863.976-3.104V35.709c0-2.01.414-3.74 1.242-5.19.828-1.448 1.833-2.66 3.016-3.636s2.425-1.7 3.726-2.173c1.3-.473 2.424-.71 3.37-.71h8.073v7.451h-4.88c-1.241 0-2.232.207-2.97.621-.74.414-1.302.932-1.686 1.552a4.909 4.909 0 0 0-.71 1.996c-.089.71-.133 1.39-.133 2.04v16.677c0 1.715-.325 3.134-.976 4.258-.65 1.123-1.434 2.025-2.35 2.705-.917.68-1.863 1.168-2.839 1.464-.976.296-1.818.473-2.528.532v.178c.71.059 1.552.207 2.528.443.976.237 1.922.68 2.839 1.33.916.651 1.7 1.583 2.35 2.795.65 1.212.976 2.853.976 4.923v16.144c0 .65.044 1.33.133 2.04.089.71.325 1.375.71 1.996.384.621.946 1.139 1.685 1.553.74.414 1.73.62 2.972.62h4.879v7.452h-8.073c-.946 0-2.07-.237-3.37-.71-1.301-.473-2.543-1.197-3.726-2.173-1.183-.976-2.188-2.188-3.016-3.637-.828-1.449-1.242-3.179-1.242-5.19V74.119c0-1.42-.325-2.572-.976-3.46-.65-.886-1.419-1.581-2.306-2.084a8.868 8.868 0 0 0-2.75-1.02C1.36 67.377.591 67.288 0 67.288v-7.806zm24.66 0c.591 0 1.36-.089 2.306-.266a10.417 10.417 0 0 0 2.75-.932 6.762 6.762 0 0 0 2.306-1.907c.65-.828.976-1.863.976-3.104V35.709c0-2.01.414-3.74 1.242-5.19.828-1.448 1.833-2.66 3.016-3.636s2.425-1.7 3.726-2.173c1.3-.473 2.424-.71 3.37-.71h8.073v7.451h-4.88c-1.241 0-2.232.207-2.97.621-.74.414-1.302.932-1.686 1.552a4.909 4.909 0 0 0-.71 1.996c-.089.71-.133 1.39-.133 2.04v16.677c0 1.715-.325 3.134-.976 4.258-.65 1.123-1.434 2.025-2.35 2.705-.917.68-1.863 1.168-2.839 1.464-.976.296-1.818.473-2.528.532v.178c.71.059 1.552.207 2.528.443.976.237 1.922.68 2.839 1.33.916.651 1.7 1.583 2.35 2.795.65 1.212.976 2.853.976 4.923v16.144c0 .65.044 1.33.133 2.04.089.71.325 1.375.71 1.996.384.621.946 1.139 1.685 1.553.74.414 1.73.62 2.972.62h4.879v7.452h-8.073c-.946 0-2.07-.237-3.37-.71-1.301-.473-2.543-1.197-3.726-2.173-1.183-.976-2.188-2.188-3.016-3.637-.828-1.449-1.242-3.179-1.242-5.19V74.119c0-1.42-.325-2.572-.976-3.46-.65-.886-1.419-1.581-2.306-2.084a8.868 8.868 0 0 0-2.75-1.02c-.946-.177-1.715-.266-2.306-.266v-7.806zm43.965-3.538L80.6 52.041l2.306 7.097-12.063 3.903 7.628 10.378-6.12 4.435-7.63-10.467-7.45 10.201-5.943-4.524 7.628-10.023-12.152-4.17 2.306-7.096 12.064 4.17V43.347h7.451v12.596zm34.425 11.344c-.65 0-1.449.089-2.395.266-.946.177-1.863.488-2.75.931a6.356 6.356 0 0 0-2.262 1.908c-.62.828-.931 1.862-.931 3.104v17.564c0 2.01-.414 3.74-1.242 5.189-.828 1.449-1.833 2.661-3.016 3.637s-2.425 1.7-3.726 2.173c-1.3.473-2.424.71-3.37.71h-8.073v-7.451h4.88c1.241 0 2.232-.207 2.97-.621.74-.414 1.302-.932 1.686-1.553a4.9 4.9 0 0 0 .71-1.995c.089-.71.133-1.39.133-2.04V72.432c0-1.715.325-3.134.976-4.258.65-1.124 1.434-2.01 2.35-2.661.917-.65 1.863-1.124 2.839-1.42.976-.295 1.818-.502 2.528-.62v-.178c-.71-.059-1.552-.207-2.528-.443-.976-.237-1.922-.68-2.839-1.33-.916-.651-1.7-1.583-2.35-2.795-.65-1.212-.976-2.853-.976-4.923V37.66c0-.651-.044-1.331-.133-2.04a4.909 4.909 0 0 0-.71-1.997c-.384-.62-.946-1.138-1.685-1.552-.74-.414-1.73-.62-2.972-.62h-4.879V24h8.073c.946 0 2.07.237 3.37.71 1.301.473 2.543 1.197 3.726 2.173 1.183.976 2.188 2.188 3.016 3.637.828 1.449 1.242 3.178 1.242 5.189v16.943c0 1.419.31 2.572.931 3.46a6.897 6.897 0 0 0 2.262 2.084 8.868 8.868 0 0 0 2.75 1.02c.946.177 1.745.266 2.395.266v7.806zm24.66 0c-.65 0-1.449.089-2.395.266-.946.177-1.863.488-2.75.931a6.356 6.356 0 0 0-2.262 1.908c-.62.828-.931 1.862-.931 3.104v17.564c0 2.01-.414 3.74-1.242 5.189-.828 1.449-1.833 2.661-3.016 3.637s-2.425 1.7-3.726 2.173c-1.3.473-2.424.71-3.37.71h-8.073v-7.451h4.88c1.241 0 2.232-.207 2.97-.621.74-.414 1.302-.932 1.686-1.553a4.9 4.9 0 0 0 .71-1.995c.089-.71.133-1.39.133-2.04V72.432c0-1.715.325-3.134.976-4.258.65-1.124 1.434-2.01 2.35-2.661.917-.65 1.863-1.124 2.839-1.42.976-.295 1.818-.502 2.528-.62v-.178c-.71-.059-1.552-.207-2.528-.443-.976-.237-1.922-.68-2.839-1.33-.916-.651-1.7-1.583-2.35-2.795-.65-1.212-.976-2.853-.976-4.923V37.66c0-.651-.044-1.331-.133-2.04a4.909 4.909 0 0 0-.71-1.997c-.384-.62-.946-1.138-1.685-1.552-.74-.414-1.73-.62-2.972-.62h-4.879V24h8.073c.946 0 2.07.237 3.37.71 1.301.473 2.543 1.197 3.726 2.173 1.183.976 2.188 2.188 3.016 3.637.828 1.449 1.242 3.178 1.242 5.189v16.943c0 1.419.31 2.572.931 3.46a6.897 6.897 0 0 0 2.262 2.084 8.868 8.868 0 0 0 2.75 1.02c.946.177 1.745.266 2.395.266v7.806z\" fill-rule=\"evenodd\"/></svg>\n"
},
"$:/core/images/twitter": {
"title": "$:/core/images/twitter",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-twitter tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M41.6263422,115.803477 C27.0279663,115.803477 13.4398394,111.540813 1.99987456,104.234833 C4.02221627,104.472643 6.08004574,104.594302 8.16644978,104.594302 C20.277456,104.594302 31.4238403,100.47763 40.270894,93.5715185 C28.9590538,93.3635501 19.4123842,85.9189246 16.1230832,75.6885328 C17.7011365,75.9892376 19.320669,76.1503787 20.9862896,76.1503787 C23.344152,76.1503787 25.6278127,75.8359011 27.7971751,75.247346 C15.9709927,72.8821073 7.06079851,62.4745062 7.06079851,49.9982394 C7.06079851,49.8898938 7.06079851,49.7820074 7.06264203,49.67458 C10.5482779,51.6032228 14.5339687,52.7615103 18.7717609,52.8951059 C11.8355159,48.277565 7.2714207,40.3958845 7.2714207,31.4624258 C7.2714207,26.7434257 8.54621495,22.3200804 10.7713439,18.5169676 C23.5211299,34.0957738 42.568842,44.3472839 64.0532269,45.4210985 C63.6126256,43.5365285 63.3835682,41.5711584 63.3835682,39.5529928 C63.3835682,25.3326379 74.95811,13.8034766 89.2347917,13.8034766 C96.6697089,13.8034766 103.387958,16.930807 108.103682,21.9353619 C113.991886,20.780288 119.52429,18.6372496 124.518847,15.6866694 C122.588682,21.6993889 118.490075,26.7457211 113.152623,29.9327334 C118.381769,29.3102055 123.363882,27.926045 127.999875,25.8780385 C124.534056,31.0418981 120.151087,35.5772616 115.100763,39.2077561 C115.150538,40.3118708 115.175426,41.4224128 115.175426,42.538923 C115.175426,76.5663154 89.1744164,115.803477 41.6263422,115.803477\"></path>\n </g>\n</svg>\n"
},
"$:/core/images/underline": {
"title": "$:/core/images/underline",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-underline tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M7,117.421488 L121.247934,117.421488 L121.247934,128 L7,128 L7,117.421488 Z M104.871212,98.8958333 L104.871212,0 L88.6117424,0 L88.6117424,55.8560606 C88.6117424,60.3194668 88.0060035,64.432115 86.7945076,68.1941288 C85.5830116,71.9561425 83.7657949,75.239885 81.342803,78.0454545 C78.9198111,80.8510241 75.8911167,83.0189317 72.2566288,84.5492424 C68.6221409,86.0795531 64.3182067,86.844697 59.344697,86.844697 C53.0959284,86.844697 48.1862552,85.0593613 44.6155303,81.4886364 C41.0448054,77.9179114 39.2594697,73.0720003 39.2594697,66.9507576 L39.2594697,0 L23,0 L23,65.0378788 C23,70.3939662 23.5419769,75.2717583 24.625947,79.6714015 C25.709917,84.0710447 27.5908957,87.864883 30.2689394,91.0530303 C32.9469831,94.2411776 36.4538925,96.6960141 40.7897727,98.4176136 C45.125653,100.139213 50.545422,101 57.0492424,101 C64.3182182,101 70.630655,99.5653553 75.9867424,96.6960227 C81.3428298,93.8266902 85.742407,89.33147 89.1856061,83.2102273 L89.5681818,83.2102273 L89.5681818,98.8958333 L104.871212,98.8958333 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/unfold-all-button": {
"title": "$:/core/images/unfold-all-button",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-unfold-all tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <rect x=\"0\" y=\"0\" width=\"128\" height=\"16\" rx=\"8\"></rect>\n <rect x=\"0\" y=\"64\" width=\"128\" height=\"16\" rx=\"8\"></rect>\n <path d=\"M85.598226,8.34884273 C84.1490432,6.89863875 82.1463102,6 79.9340286,6 L47.9482224,6 C43.5292967,6 39.9411255,9.581722 39.9411255,14 C39.9411255,18.4092877 43.5260249,22 47.9482224,22 L71.9411255,22 L71.9411255,45.9929031 C71.9411255,50.4118288 75.5228475,54 79.9411255,54 C84.3504132,54 87.9411255,50.4151006 87.9411255,45.9929031 L87.9411255,14.0070969 C87.9411255,11.7964515 87.0447363,9.79371715 85.5956548,8.34412458 Z\" transform=\"translate(63.941125, 30.000000) scale(1, -1) rotate(-45.000000) translate(-63.941125, -30.000000) \"></path>\n <path d=\"M85.6571005,72.2899682 C84.2079177,70.8397642 82.2051847,69.9411255 79.9929031,69.9411255 L48.0070969,69.9411255 C43.5881712,69.9411255 40,73.5228475 40,77.9411255 C40,82.3504132 43.5848994,85.9411255 48.0070969,85.9411255 L72,85.9411255 L72,109.934029 C72,114.352954 75.581722,117.941125 80,117.941125 C84.4092877,117.941125 88,114.356226 88,109.934029 L88,77.9482224 C88,75.737577 87.1036108,73.7348426 85.6545293,72.2852501 Z\" transform=\"translate(64.000000, 93.941125) scale(1, -1) rotate(-45.000000) translate(-64.000000, -93.941125) \"></path>\n </g>\n</svg>"
},
"$:/core/images/unfold-button": {
"title": "$:/core/images/unfold-button",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-unfold tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <rect x=\"0\" y=\"0\" width=\"128\" height=\"16\" rx=\"8\"></rect>\n <path d=\"M85.598226,11.3488427 C84.1490432,9.89863875 82.1463102,9 79.9340286,9 L47.9482224,9 C43.5292967,9 39.9411255,12.581722 39.9411255,17 C39.9411255,21.4092877 43.5260249,25 47.9482224,25 L71.9411255,25 L71.9411255,48.9929031 C71.9411255,53.4118288 75.5228475,57 79.9411255,57 C84.3504132,57 87.9411255,53.4151006 87.9411255,48.9929031 L87.9411255,17.0070969 C87.9411255,14.7964515 87.0447363,12.7937171 85.5956548,11.3441246 Z\" transform=\"translate(63.941125, 33.000000) scale(1, -1) rotate(-45.000000) translate(-63.941125, -33.000000) \"></path>\n <path d=\"M85.6571005,53.4077172 C84.2079177,51.9575133 82.2051847,51.0588745 79.9929031,51.0588745 L48.0070969,51.0588745 C43.5881712,51.0588745 40,54.6405965 40,59.0588745 C40,63.4681622 43.5848994,67.0588745 48.0070969,67.0588745 L72,67.0588745 L72,91.0517776 C72,95.4707033 75.581722,99.0588745 80,99.0588745 C84.4092877,99.0588745 88,95.4739751 88,91.0517776 L88,59.0659714 C88,56.855326 87.1036108,54.8525917 85.6545293,53.4029991 Z\" transform=\"translate(64.000000, 75.058875) scale(1, -1) rotate(-45.000000) translate(-64.000000, -75.058875) \"></path>\n </g>\n</svg>"
},
"$:/core/images/unlocked-padlock": {
"title": "$:/core/images/unlocked-padlock",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-unlocked-padlock tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M48.6266053,64 L105,64 L105,96.0097716 C105,113.673909 90.6736461,128 73.001193,128 L55.998807,128 C38.3179793,128 24,113.677487 24,96.0097716 L24,64 L30.136303,64 C19.6806213,51.3490406 2.77158986,28.2115132 25.8366966,8.85759246 C50.4723026,-11.8141335 71.6711028,13.2108337 81.613302,25.0594855 C91.5555012,36.9081373 78.9368488,47.4964439 69.1559674,34.9513593 C59.375086,22.4062748 47.9893192,10.8049522 35.9485154,20.9083862 C23.9077117,31.0118202 34.192312,43.2685325 44.7624679,55.8655518 C47.229397,58.805523 48.403443,61.5979188 48.6266053,64 Z M67.7315279,92.3641717 C70.8232551,91.0923621 73,88.0503841 73,84.5 C73,79.8055796 69.1944204,76 64.5,76 C59.8055796,76 56,79.8055796 56,84.5 C56,87.947435 58.0523387,90.9155206 61.0018621,92.2491029 L55.9067479,115.020857 L72.8008958,115.020857 L67.7315279,92.3641717 L67.7315279,92.3641717 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/up-arrow": {
"title": "$:/core/images/up-arrow",
"created": "20150316000544368",
"modified": "20150316000831867",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-up-arrow tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n<path transform=\"rotate(-135, 63.8945, 64.1752)\" d=\"m109.07576,109.35336c-1.43248,1.43361 -3.41136,2.32182 -5.59717,2.32182l-79.16816,0c-4.36519,0 -7.91592,-3.5444 -7.91592,-7.91666c0,-4.36337 3.54408,-7.91667 7.91592,-7.91667l71.25075,0l0,-71.25074c0,-4.3652 3.54442,-7.91592 7.91667,-7.91592c4.36336,0 7.91667,3.54408 7.91667,7.91592l0,79.16815c0,2.1825 -0.88602,4.16136 -2.3185,5.59467l-0.00027,-0.00056l0.00001,-0.00001z\" />\n</svg>\n \n"
},
"$:/core/images/video": {
"title": "$:/core/images/video",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-video tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M64,12 C29.0909091,12 8.72727273,14.9166667 5.81818182,17.8333333 C2.90909091,20.75 1.93784382e-15,41.1666667 0,64.5 C1.93784382e-15,87.8333333 2.90909091,108.25 5.81818182,111.166667 C8.72727273,114.083333 29.0909091,117 64,117 C98.9090909,117 119.272727,114.083333 122.181818,111.166667 C125.090909,108.25 128,87.8333333 128,64.5 C128,41.1666667 125.090909,20.75 122.181818,17.8333333 C119.272727,14.9166667 98.9090909,12 64,12 Z M54.9161194,44.6182253 C51.102648,42.0759111 48.0112186,43.7391738 48.0112186,48.3159447 L48.0112186,79.6840553 C48.0112186,84.2685636 51.109784,85.9193316 54.9161194,83.3817747 L77.0838806,68.6032672 C80.897352,66.0609529 80.890216,61.9342897 77.0838806,59.3967328 L54.9161194,44.6182253 Z\"></path>\n </g>\n</svg>"
},
"$:/core/images/warning": {
"title": "$:/core/images/warning",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-warning tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M57.0717968,11 C60.1509982,5.66666667 67.8490018,5.66666667 70.9282032,11 L126.353829,107 C129.433031,112.333333 125.584029,119 119.425626,119 L8.57437416,119 C2.41597129,119 -1.43303051,112.333333 1.64617093,107 L57.0717968,11 Z M64,37 C59.581722,37 56,40.5820489 56,44.9935776 L56,73.0064224 C56,77.4211534 59.5907123,81 64,81 C68.418278,81 72,77.4179511 72,73.0064224 L72,44.9935776 C72,40.5788466 68.4092877,37 64,37 Z M64,104 C68.418278,104 72,100.418278 72,96 C72,91.581722 68.418278,88 64,88 C59.581722,88 56,91.581722 56,96 C56,100.418278 59.581722,104 64,104 Z\"></path>\n </g>\n</svg>"
},
"$:/language/Buttons/AdvancedSearch/Caption": {
"title": "$:/language/Buttons/AdvancedSearch/Caption",
"text": "advanced search"
},
"$:/language/Buttons/AdvancedSearch/Hint": {
"title": "$:/language/Buttons/AdvancedSearch/Hint",
"text": "Advanced search"
},
"$:/language/Buttons/Cancel/Caption": {
"title": "$:/language/Buttons/Cancel/Caption",
"text": "cancel"
},
"$:/language/Buttons/Cancel/Hint": {
"title": "$:/language/Buttons/Cancel/Hint",
"text": "Discard changes to this tiddler"
},
"$:/language/Buttons/Clone/Caption": {
"title": "$:/language/Buttons/Clone/Caption",
"text": "clone"
},
"$:/language/Buttons/Clone/Hint": {
"title": "$:/language/Buttons/Clone/Hint",
"text": "Clone this tiddler"
},
"$:/language/Buttons/Close/Caption": {
"title": "$:/language/Buttons/Close/Caption",
"text": "close"
},
"$:/language/Buttons/Close/Hint": {
"title": "$:/language/Buttons/Close/Hint",
"text": "Close this tiddler"
},
"$:/language/Buttons/CloseAll/Caption": {
"title": "$:/language/Buttons/CloseAll/Caption",
"text": "close all"
},
"$:/language/Buttons/CloseAll/Hint": {
"title": "$:/language/Buttons/CloseAll/Hint",
"text": "Close all tiddlers"
},
"$:/language/Buttons/CloseOthers/Caption": {
"title": "$:/language/Buttons/CloseOthers/Caption",
"text": "close others"
},
"$:/language/Buttons/CloseOthers/Hint": {
"title": "$:/language/Buttons/CloseOthers/Hint",
"text": "Close other tiddlers"
},
"$:/language/Buttons/ControlPanel/Caption": {
"title": "$:/language/Buttons/ControlPanel/Caption",
"text": "control panel"
},
"$:/language/Buttons/ControlPanel/Hint": {
"title": "$:/language/Buttons/ControlPanel/Hint",
"text": "Open control panel"
},
"$:/language/Buttons/CopyToClipboard/Caption": {
"title": "$:/language/Buttons/CopyToClipboard/Caption",
"text": "copy to clipboard"
},
"$:/language/Buttons/CopyToClipboard/Hint": {
"title": "$:/language/Buttons/CopyToClipboard/Hint",
"text": "Copy this text to the clipboard"
},
"$:/language/Buttons/Delete/Caption": {
"title": "$:/language/Buttons/Delete/Caption",
"text": "delete"
},
"$:/language/Buttons/Delete/Hint": {
"title": "$:/language/Buttons/Delete/Hint",
"text": "Delete this tiddler"
},
"$:/language/Buttons/Edit/Caption": {
"title": "$:/language/Buttons/Edit/Caption",
"text": "edit"
},
"$:/language/Buttons/Edit/Hint": {
"title": "$:/language/Buttons/Edit/Hint",
"text": "Edit this tiddler"
},
"$:/language/Buttons/Encryption/Caption": {
"title": "$:/language/Buttons/Encryption/Caption",
"text": "encryption"
},
"$:/language/Buttons/Encryption/Hint": {
"title": "$:/language/Buttons/Encryption/Hint",
"text": "Set or clear a password for saving this wiki"
},
"$:/language/Buttons/Encryption/ClearPassword/Caption": {
"title": "$:/language/Buttons/Encryption/ClearPassword/Caption",
"text": "clear password"
},
"$:/language/Buttons/Encryption/ClearPassword/Hint": {
"title": "$:/language/Buttons/Encryption/ClearPassword/Hint",
"text": "Clear the password and save this wiki without encryption"
},
"$:/language/Buttons/Encryption/SetPassword/Caption": {
"title": "$:/language/Buttons/Encryption/SetPassword/Caption",
"text": "set password"
},
"$:/language/Buttons/Encryption/SetPassword/Hint": {
"title": "$:/language/Buttons/Encryption/SetPassword/Hint",
"text": "Set a password for saving this wiki with encryption"
},
"$:/language/Buttons/ExportPage/Caption": {
"title": "$:/language/Buttons/ExportPage/Caption",
"text": "export all"
},
"$:/language/Buttons/ExportPage/Hint": {
"title": "$:/language/Buttons/ExportPage/Hint",
"text": "Export all tiddlers"
},
"$:/language/Buttons/ExportTiddler/Caption": {
"title": "$:/language/Buttons/ExportTiddler/Caption",
"text": "export tiddler"
},
"$:/language/Buttons/ExportTiddler/Hint": {
"title": "$:/language/Buttons/ExportTiddler/Hint",
"text": "Export tiddler"
},
"$:/language/Buttons/ExportTiddlers/Caption": {
"title": "$:/language/Buttons/ExportTiddlers/Caption",
"text": "export tiddlers"
},
"$:/language/Buttons/ExportTiddlers/Hint": {
"title": "$:/language/Buttons/ExportTiddlers/Hint",
"text": "Export tiddlers"
},
"$:/language/Buttons/SidebarSearch/Hint": {
"title": "$:/language/Buttons/SidebarSearch/Hint",
"text": "Select the sidebar search field"
},
"$:/language/Buttons/Fold/Caption": {
"title": "$:/language/Buttons/Fold/Caption",
"text": "fold tiddler"
},
"$:/language/Buttons/Fold/Hint": {
"title": "$:/language/Buttons/Fold/Hint",
"text": "Fold the body of this tiddler"
},
"$:/language/Buttons/Fold/FoldBar/Caption": {
"title": "$:/language/Buttons/Fold/FoldBar/Caption",
"text": "fold-bar"
},
"$:/language/Buttons/Fold/FoldBar/Hint": {
"title": "$:/language/Buttons/Fold/FoldBar/Hint",
"text": "Optional bars to fold and unfold tiddlers"
},
"$:/language/Buttons/Unfold/Caption": {
"title": "$:/language/Buttons/Unfold/Caption",
"text": "unfold tiddler"
},
"$:/language/Buttons/Unfold/Hint": {
"title": "$:/language/Buttons/Unfold/Hint",
"text": "Unfold the body of this tiddler"
},
"$:/language/Buttons/FoldOthers/Caption": {
"title": "$:/language/Buttons/FoldOthers/Caption",
"text": "fold other tiddlers"
},
"$:/language/Buttons/FoldOthers/Hint": {
"title": "$:/language/Buttons/FoldOthers/Hint",
"text": "Fold the bodies of other opened tiddlers"
},
"$:/language/Buttons/FoldAll/Caption": {
"title": "$:/language/Buttons/FoldAll/Caption",
"text": "fold all tiddlers"
},
"$:/language/Buttons/FoldAll/Hint": {
"title": "$:/language/Buttons/FoldAll/Hint",
"text": "Fold the bodies of all opened tiddlers"
},
"$:/language/Buttons/UnfoldAll/Caption": {
"title": "$:/language/Buttons/UnfoldAll/Caption",
"text": "unfold all tiddlers"
},
"$:/language/Buttons/UnfoldAll/Hint": {
"title": "$:/language/Buttons/UnfoldAll/Hint",
"text": "Unfold the bodies of all opened tiddlers"
},
"$:/language/Buttons/FullScreen/Caption": {
"title": "$:/language/Buttons/FullScreen/Caption",
"text": "full-screen"
},
"$:/language/Buttons/FullScreen/Hint": {
"title": "$:/language/Buttons/FullScreen/Hint",
"text": "Enter or leave full-screen mode"
},
"$:/language/Buttons/Help/Caption": {
"title": "$:/language/Buttons/Help/Caption",
"text": "help"
},
"$:/language/Buttons/Help/Hint": {
"title": "$:/language/Buttons/Help/Hint",
"text": "Show help panel"
},
"$:/language/Buttons/Import/Caption": {
"title": "$:/language/Buttons/Import/Caption",
"text": "import"
},
"$:/language/Buttons/Import/Hint": {
"title": "$:/language/Buttons/Import/Hint",
"text": "Import many types of file including text, image, TiddlyWiki or JSON"
},
"$:/language/Buttons/Info/Caption": {
"title": "$:/language/Buttons/Info/Caption",
"text": "info"
},
"$:/language/Buttons/Info/Hint": {
"title": "$:/language/Buttons/Info/Hint",
"text": "Show information for this tiddler"
},
"$:/language/Buttons/Home/Caption": {
"title": "$:/language/Buttons/Home/Caption",
"text": "home"
},
"$:/language/Buttons/Home/Hint": {
"title": "$:/language/Buttons/Home/Hint",
"text": "Open the default tiddlers"
},
"$:/language/Buttons/Language/Caption": {
"title": "$:/language/Buttons/Language/Caption",
"text": "language"
},
"$:/language/Buttons/Language/Hint": {
"title": "$:/language/Buttons/Language/Hint",
"text": "Choose the user interface language"
},
"$:/language/Buttons/Manager/Caption": {
"title": "$:/language/Buttons/Manager/Caption",
"text": "tiddler manager"
},
"$:/language/Buttons/Manager/Hint": {
"title": "$:/language/Buttons/Manager/Hint",
"text": "Open tiddler manager"
},
"$:/language/Buttons/More/Caption": {
"title": "$:/language/Buttons/More/Caption",
"text": "more"
},
"$:/language/Buttons/More/Hint": {
"title": "$:/language/Buttons/More/Hint",
"text": "More actions"
},
"$:/language/Buttons/NewHere/Caption": {
"title": "$:/language/Buttons/NewHere/Caption",
"text": "new here"
},
"$:/language/Buttons/NewHere/Hint": {
"title": "$:/language/Buttons/NewHere/Hint",
"text": "Create a new tiddler tagged with this one"
},
"$:/language/Buttons/NewJournal/Caption": {
"title": "$:/language/Buttons/NewJournal/Caption",
"text": "new journal"
},
"$:/language/Buttons/NewJournal/Hint": {
"title": "$:/language/Buttons/NewJournal/Hint",
"text": "Create a new journal tiddler"
},
"$:/language/Buttons/NewJournalHere/Caption": {
"title": "$:/language/Buttons/NewJournalHere/Caption",
"text": "new journal here"
},
"$:/language/Buttons/NewJournalHere/Hint": {
"title": "$:/language/Buttons/NewJournalHere/Hint",
"text": "Create a new journal tiddler tagged with this one"
},
"$:/language/Buttons/NewImage/Caption": {
"title": "$:/language/Buttons/NewImage/Caption",
"text": "new image"
},
"$:/language/Buttons/NewImage/Hint": {
"title": "$:/language/Buttons/NewImage/Hint",
"text": "Create a new image tiddler"
},
"$:/language/Buttons/NewMarkdown/Caption": {
"title": "$:/language/Buttons/NewMarkdown/Caption",
"text": "new Markdown tiddler"
},
"$:/language/Buttons/NewMarkdown/Hint": {
"title": "$:/language/Buttons/NewMarkdown/Hint",
"text": "Create a new Markdown tiddler"
},
"$:/language/Buttons/NewTiddler/Caption": {
"title": "$:/language/Buttons/NewTiddler/Caption",
"text": "new tiddler"
},
"$:/language/Buttons/NewTiddler/Hint": {
"title": "$:/language/Buttons/NewTiddler/Hint",
"text": "Create a new tiddler"
},
"$:/language/Buttons/OpenWindow/Caption": {
"title": "$:/language/Buttons/OpenWindow/Caption",
"text": "open in new window"
},
"$:/language/Buttons/OpenWindow/Hint": {
"title": "$:/language/Buttons/OpenWindow/Hint",
"text": "Open tiddler in new window"
},
"$:/language/Buttons/Palette/Caption": {
"title": "$:/language/Buttons/Palette/Caption",
"text": "palette"
},
"$:/language/Buttons/Palette/Hint": {
"title": "$:/language/Buttons/Palette/Hint",
"text": "Choose the colour palette"
},
"$:/language/Buttons/Permalink/Caption": {
"title": "$:/language/Buttons/Permalink/Caption",
"text": "permalink"
},
"$:/language/Buttons/Permalink/Hint": {
"title": "$:/language/Buttons/Permalink/Hint",
"text": "Set browser address bar to a direct link to this tiddler"
},
"$:/language/Buttons/Permaview/Caption": {
"title": "$:/language/Buttons/Permaview/Caption",
"text": "permaview"
},
"$:/language/Buttons/Permaview/Hint": {
"title": "$:/language/Buttons/Permaview/Hint",
"text": "Set browser address bar to a direct link to all the tiddlers in this story"
},
"$:/language/Buttons/Print/Caption": {
"title": "$:/language/Buttons/Print/Caption",
"text": "print page"
},
"$:/language/Buttons/Print/Hint": {
"title": "$:/language/Buttons/Print/Hint",
"text": "Print the current page"
},
"$:/language/Buttons/Refresh/Caption": {
"title": "$:/language/Buttons/Refresh/Caption",
"text": "refresh"
},
"$:/language/Buttons/Refresh/Hint": {
"title": "$:/language/Buttons/Refresh/Hint",
"text": "Perform a full refresh of the wiki"
},
"$:/language/Buttons/Save/Caption": {
"title": "$:/language/Buttons/Save/Caption",
"text": "ok"
},
"$:/language/Buttons/Save/Hint": {
"title": "$:/language/Buttons/Save/Hint",
"text": "Confirm changes to this tiddler"
},
"$:/language/Buttons/SaveWiki/Caption": {
"title": "$:/language/Buttons/SaveWiki/Caption",
"text": "save changes"
},
"$:/language/Buttons/SaveWiki/Hint": {
"title": "$:/language/Buttons/SaveWiki/Hint",
"text": "Save changes"
},
"$:/language/Buttons/StoryView/Caption": {
"title": "$:/language/Buttons/StoryView/Caption",
"text": "storyview"
},
"$:/language/Buttons/StoryView/Hint": {
"title": "$:/language/Buttons/StoryView/Hint",
"text": "Choose the story visualisation"
},
"$:/language/Buttons/HideSideBar/Caption": {
"title": "$:/language/Buttons/HideSideBar/Caption",
"text": "hide sidebar"
},
"$:/language/Buttons/HideSideBar/Hint": {
"title": "$:/language/Buttons/HideSideBar/Hint",
"text": "Hide sidebar"
},
"$:/language/Buttons/ShowSideBar/Caption": {
"title": "$:/language/Buttons/ShowSideBar/Caption",
"text": "show sidebar"
},
"$:/language/Buttons/ShowSideBar/Hint": {
"title": "$:/language/Buttons/ShowSideBar/Hint",
"text": "Show sidebar"
},
"$:/language/Buttons/TagManager/Caption": {
"title": "$:/language/Buttons/TagManager/Caption",
"text": "tag manager"
},
"$:/language/Buttons/TagManager/Hint": {
"title": "$:/language/Buttons/TagManager/Hint",
"text": "Open tag manager"
},
"$:/language/Buttons/Timestamp/Caption": {
"title": "$:/language/Buttons/Timestamp/Caption",
"text": "timestamps"
},
"$:/language/Buttons/Timestamp/Hint": {
"title": "$:/language/Buttons/Timestamp/Hint",
"text": "Choose whether modifications update timestamps"
},
"$:/language/Buttons/Timestamp/On/Caption": {
"title": "$:/language/Buttons/Timestamp/On/Caption",
"text": "timestamps are on"
},
"$:/language/Buttons/Timestamp/On/Hint": {
"title": "$:/language/Buttons/Timestamp/On/Hint",
"text": "Update timestamps when tiddlers are modified"
},
"$:/language/Buttons/Timestamp/Off/Caption": {
"title": "$:/language/Buttons/Timestamp/Off/Caption",
"text": "timestamps are off"
},
"$:/language/Buttons/Timestamp/Off/Hint": {
"title": "$:/language/Buttons/Timestamp/Off/Hint",
"text": "Don't update timestamps when tiddlers are modified"
},
"$:/language/Buttons/Theme/Caption": {
"title": "$:/language/Buttons/Theme/Caption",
"text": "theme"
},
"$:/language/Buttons/Theme/Hint": {
"title": "$:/language/Buttons/Theme/Hint",
"text": "Choose the display theme"
},
"$:/language/Buttons/Bold/Caption": {
"title": "$:/language/Buttons/Bold/Caption",
"text": "bold"
},
"$:/language/Buttons/Bold/Hint": {
"title": "$:/language/Buttons/Bold/Hint",
"text": "Apply bold formatting to selection"
},
"$:/language/Buttons/Clear/Caption": {
"title": "$:/language/Buttons/Clear/Caption",
"text": "clear"
},
"$:/language/Buttons/Clear/Hint": {
"title": "$:/language/Buttons/Clear/Hint",
"text": "Clear image to solid colour"
},
"$:/language/Buttons/EditorHeight/Caption": {
"title": "$:/language/Buttons/EditorHeight/Caption",
"text": "editor height"
},
"$:/language/Buttons/EditorHeight/Caption/Auto": {
"title": "$:/language/Buttons/EditorHeight/Caption/Auto",
"text": "Automatically adjust height to fit content"
},
"$:/language/Buttons/EditorHeight/Caption/Fixed": {
"title": "$:/language/Buttons/EditorHeight/Caption/Fixed",
"text": "Fixed height:"
},
"$:/language/Buttons/EditorHeight/Hint": {
"title": "$:/language/Buttons/EditorHeight/Hint",
"text": "Choose the height of the text editor"
},
"$:/language/Buttons/Excise/Caption": {
"title": "$:/language/Buttons/Excise/Caption",
"text": "excise"
},
"$:/language/Buttons/Excise/Caption/Excise": {
"title": "$:/language/Buttons/Excise/Caption/Excise",
"text": "Perform excision"
},
"$:/language/Buttons/Excise/Caption/MacroName": {
"title": "$:/language/Buttons/Excise/Caption/MacroName",
"text": "Macro name:"
},
"$:/language/Buttons/Excise/Caption/NewTitle": {
"title": "$:/language/Buttons/Excise/Caption/NewTitle",
"text": "Title of new tiddler:"
},
"$:/language/Buttons/Excise/Caption/Replace": {
"title": "$:/language/Buttons/Excise/Caption/Replace",
"text": "Replace excised text with:"
},
"$:/language/Buttons/Excise/Caption/Replace/Macro": {
"title": "$:/language/Buttons/Excise/Caption/Replace/Macro",
"text": "macro"
},
"$:/language/Buttons/Excise/Caption/Replace/Link": {
"title": "$:/language/Buttons/Excise/Caption/Replace/Link",
"text": "link"
},
"$:/language/Buttons/Excise/Caption/Replace/Transclusion": {
"title": "$:/language/Buttons/Excise/Caption/Replace/Transclusion",
"text": "transclusion"
},
"$:/language/Buttons/Excise/Caption/Tag": {
"title": "$:/language/Buttons/Excise/Caption/Tag",
"text": "Tag new tiddler with the title of this tiddler"
},
"$:/language/Buttons/Excise/Caption/TiddlerExists": {
"title": "$:/language/Buttons/Excise/Caption/TiddlerExists",
"text": "Warning: tiddler already exists"
},
"$:/language/Buttons/Excise/Hint": {
"title": "$:/language/Buttons/Excise/Hint",
"text": "Excise the selected text into a new tiddler"
},
"$:/language/Buttons/Heading1/Caption": {
"title": "$:/language/Buttons/Heading1/Caption",
"text": "heading 1"
},
"$:/language/Buttons/Heading1/Hint": {
"title": "$:/language/Buttons/Heading1/Hint",
"text": "Apply heading level 1 formatting to lines containing selection"
},
"$:/language/Buttons/Heading2/Caption": {
"title": "$:/language/Buttons/Heading2/Caption",
"text": "heading 2"
},
"$:/language/Buttons/Heading2/Hint": {
"title": "$:/language/Buttons/Heading2/Hint",
"text": "Apply heading level 2 formatting to lines containing selection"
},
"$:/language/Buttons/Heading3/Caption": {
"title": "$:/language/Buttons/Heading3/Caption",
"text": "heading 3"
},
"$:/language/Buttons/Heading3/Hint": {
"title": "$:/language/Buttons/Heading3/Hint",
"text": "Apply heading level 3 formatting to lines containing selection"
},
"$:/language/Buttons/Heading4/Caption": {
"title": "$:/language/Buttons/Heading4/Caption",
"text": "heading 4"
},
"$:/language/Buttons/Heading4/Hint": {
"title": "$:/language/Buttons/Heading4/Hint",
"text": "Apply heading level 4 formatting to lines containing selection"
},
"$:/language/Buttons/Heading5/Caption": {
"title": "$:/language/Buttons/Heading5/Caption",
"text": "heading 5"
},
"$:/language/Buttons/Heading5/Hint": {
"title": "$:/language/Buttons/Heading5/Hint",
"text": "Apply heading level 5 formatting to lines containing selection"
},
"$:/language/Buttons/Heading6/Caption": {
"title": "$:/language/Buttons/Heading6/Caption",
"text": "heading 6"
},
"$:/language/Buttons/Heading6/Hint": {
"title": "$:/language/Buttons/Heading6/Hint",
"text": "Apply heading level 6 formatting to lines containing selection"
},
"$:/language/Buttons/Italic/Caption": {
"title": "$:/language/Buttons/Italic/Caption",
"text": "italic"
},
"$:/language/Buttons/Italic/Hint": {
"title": "$:/language/Buttons/Italic/Hint",
"text": "Apply italic formatting to selection"
},
"$:/language/Buttons/LineWidth/Caption": {
"title": "$:/language/Buttons/LineWidth/Caption",
"text": "line width"
},
"$:/language/Buttons/LineWidth/Hint": {
"title": "$:/language/Buttons/LineWidth/Hint",
"text": "Set line width for painting"
},
"$:/language/Buttons/Link/Caption": {
"title": "$:/language/Buttons/Link/Caption",
"text": "link"
},
"$:/language/Buttons/Link/Hint": {
"title": "$:/language/Buttons/Link/Hint",
"text": "Create wikitext link"
},
"$:/language/Buttons/Linkify/Caption": {
"title": "$:/language/Buttons/Linkify/Caption",
"text": "wikilink"
},
"$:/language/Buttons/Linkify/Hint": {
"title": "$:/language/Buttons/Linkify/Hint",
"text": "Wrap selection in square brackets"
},
"$:/language/Buttons/ListBullet/Caption": {
"title": "$:/language/Buttons/ListBullet/Caption",
"text": "bulleted list"
},
"$:/language/Buttons/ListBullet/Hint": {
"title": "$:/language/Buttons/ListBullet/Hint",
"text": "Apply bulleted list formatting to lines containing selection"
},
"$:/language/Buttons/ListNumber/Caption": {
"title": "$:/language/Buttons/ListNumber/Caption",
"text": "numbered list"
},
"$:/language/Buttons/ListNumber/Hint": {
"title": "$:/language/Buttons/ListNumber/Hint",
"text": "Apply numbered list formatting to lines containing selection"
},
"$:/language/Buttons/MonoBlock/Caption": {
"title": "$:/language/Buttons/MonoBlock/Caption",
"text": "monospaced block"
},
"$:/language/Buttons/MonoBlock/Hint": {
"title": "$:/language/Buttons/MonoBlock/Hint",
"text": "Apply monospaced block formatting to lines containing selection"
},
"$:/language/Buttons/MonoLine/Caption": {
"title": "$:/language/Buttons/MonoLine/Caption",
"text": "monospaced"
},
"$:/language/Buttons/MonoLine/Hint": {
"title": "$:/language/Buttons/MonoLine/Hint",
"text": "Apply monospaced character formatting to selection"
},
"$:/language/Buttons/Opacity/Caption": {
"title": "$:/language/Buttons/Opacity/Caption",
"text": "opacity"
},
"$:/language/Buttons/Opacity/Hint": {
"title": "$:/language/Buttons/Opacity/Hint",
"text": "Set painting opacity"
},
"$:/language/Buttons/Paint/Caption": {
"title": "$:/language/Buttons/Paint/Caption",
"text": "paint colour"
},
"$:/language/Buttons/Paint/Hint": {
"title": "$:/language/Buttons/Paint/Hint",
"text": "Set painting colour"
},
"$:/language/Buttons/Picture/Caption": {
"title": "$:/language/Buttons/Picture/Caption",
"text": "picture"
},
"$:/language/Buttons/Picture/Hint": {
"title": "$:/language/Buttons/Picture/Hint",
"text": "Insert picture"
},
"$:/language/Buttons/Preview/Caption": {
"title": "$:/language/Buttons/Preview/Caption",
"text": "preview"
},
"$:/language/Buttons/Preview/Hint": {
"title": "$:/language/Buttons/Preview/Hint",
"text": "Show preview pane"
},
"$:/language/Buttons/PreviewType/Caption": {
"title": "$:/language/Buttons/PreviewType/Caption",
"text": "preview type"
},
"$:/language/Buttons/PreviewType/Hint": {
"title": "$:/language/Buttons/PreviewType/Hint",
"text": "Choose preview type"
},
"$:/language/Buttons/Quote/Caption": {
"title": "$:/language/Buttons/Quote/Caption",
"text": "quote"
},
"$:/language/Buttons/Quote/Hint": {
"title": "$:/language/Buttons/Quote/Hint",
"text": "Apply quoted text formatting to lines containing selection"
},
"$:/language/Buttons/RotateLeft/Caption": {
"title": "$:/language/Buttons/RotateLeft/Caption",
"text": "rotate left"
},
"$:/language/Buttons/RotateLeft/Hint": {
"title": "$:/language/Buttons/RotateLeft/Hint",
"text": "Rotate image left by 90 degrees"
},
"$:/language/Buttons/Size/Caption": {
"title": "$:/language/Buttons/Size/Caption",
"text": "image size"
},
"$:/language/Buttons/Size/Caption/Height": {
"title": "$:/language/Buttons/Size/Caption/Height",
"text": "Height:"
},
"$:/language/Buttons/Size/Caption/Resize": {
"title": "$:/language/Buttons/Size/Caption/Resize",
"text": "Resize image"
},
"$:/language/Buttons/Size/Caption/Width": {
"title": "$:/language/Buttons/Size/Caption/Width",
"text": "Width:"
},
"$:/language/Buttons/Size/Hint": {
"title": "$:/language/Buttons/Size/Hint",
"text": "Set image size"
},
"$:/language/Buttons/Stamp/Caption": {
"title": "$:/language/Buttons/Stamp/Caption",
"text": "stamp"
},
"$:/language/Buttons/Stamp/Caption/New": {
"title": "$:/language/Buttons/Stamp/Caption/New",
"text": "Add your own"
},
"$:/language/Buttons/Stamp/Hint": {
"title": "$:/language/Buttons/Stamp/Hint",
"text": "Insert a preconfigured snippet of text"
},
"$:/language/Buttons/Stamp/New/Title": {
"title": "$:/language/Buttons/Stamp/New/Title",
"text": "Name as shown in menu"
},
"$:/language/Buttons/Stamp/New/Text": {
"title": "$:/language/Buttons/Stamp/New/Text",
"text": "Text of snippet. (Remember to add a descriptive title in the caption field)."
},
"$:/language/Buttons/Strikethrough/Caption": {
"title": "$:/language/Buttons/Strikethrough/Caption",
"text": "strikethrough"
},
"$:/language/Buttons/Strikethrough/Hint": {
"title": "$:/language/Buttons/Strikethrough/Hint",
"text": "Apply strikethrough formatting to selection"
},
"$:/language/Buttons/Subscript/Caption": {
"title": "$:/language/Buttons/Subscript/Caption",
"text": "subscript"
},
"$:/language/Buttons/Subscript/Hint": {
"title": "$:/language/Buttons/Subscript/Hint",
"text": "Apply subscript formatting to selection"
},
"$:/language/Buttons/Superscript/Caption": {
"title": "$:/language/Buttons/Superscript/Caption",
"text": "superscript"
},
"$:/language/Buttons/Superscript/Hint": {
"title": "$:/language/Buttons/Superscript/Hint",
"text": "Apply superscript formatting to selection"
},
"$:/language/Buttons/ToggleSidebar/Hint": {
"title": "$:/language/Buttons/ToggleSidebar/Hint",
"text": "Toggle the sidebar visibility"
},
"$:/language/Buttons/Transcludify/Caption": {
"title": "$:/language/Buttons/Transcludify/Caption",
"text": "transclusion"
},
"$:/language/Buttons/Transcludify/Hint": {
"title": "$:/language/Buttons/Transcludify/Hint",
"text": "Wrap selection in curly brackets"
},
"$:/language/Buttons/Underline/Caption": {
"title": "$:/language/Buttons/Underline/Caption",
"text": "underline"
},
"$:/language/Buttons/Underline/Hint": {
"title": "$:/language/Buttons/Underline/Hint",
"text": "Apply underline formatting to selection"
},
"$:/language/ControlPanel/Advanced/Caption": {
"title": "$:/language/ControlPanel/Advanced/Caption",
"text": "Advanced"
},
"$:/language/ControlPanel/Advanced/Hint": {
"title": "$:/language/ControlPanel/Advanced/Hint",
"text": "Internal information about this TiddlyWiki"
},
"$:/language/ControlPanel/Appearance/Caption": {
"title": "$:/language/ControlPanel/Appearance/Caption",
"text": "Appearance"
},
"$:/language/ControlPanel/Appearance/Hint": {
"title": "$:/language/ControlPanel/Appearance/Hint",
"text": "Ways to customise the appearance of your TiddlyWiki."
},
"$:/language/ControlPanel/Basics/AnimDuration/Prompt": {
"title": "$:/language/ControlPanel/Basics/AnimDuration/Prompt",
"text": "Animation duration:"
},
"$:/language/ControlPanel/Basics/Caption": {
"title": "$:/language/ControlPanel/Basics/Caption",
"text": "Basics"
},
"$:/language/ControlPanel/Basics/DefaultTiddlers/BottomHint": {
"title": "$:/language/ControlPanel/Basics/DefaultTiddlers/BottomHint",
"text": "Use [[double square brackets]] for titles with spaces. Or you can choose to <$button set=\"$:/DefaultTiddlers\" setTo=\"[list[$:/StoryList]]\">retain story ordering</$button>"
},
"$:/language/ControlPanel/Basics/DefaultTiddlers/Prompt": {
"title": "$:/language/ControlPanel/Basics/DefaultTiddlers/Prompt",
"text": "Default tiddlers:"
},
"$:/language/ControlPanel/Basics/DefaultTiddlers/TopHint": {
"title": "$:/language/ControlPanel/Basics/DefaultTiddlers/TopHint",
"text": "Choose which tiddlers are displayed at startup:"
},
"$:/language/ControlPanel/Basics/Language/Prompt": {
"title": "$:/language/ControlPanel/Basics/Language/Prompt",
"text": "Hello! Current language:"
},
"$:/language/ControlPanel/Basics/NewJournal/Title/Prompt": {
"title": "$:/language/ControlPanel/Basics/NewJournal/Title/Prompt",
"text": "Title of new journal tiddlers"
},
"$:/language/ControlPanel/Basics/NewJournal/Text/Prompt": {
"title": "$:/language/ControlPanel/Basics/NewJournal/Text/Prompt",
"text": "Text for new journal tiddlers"
},
"$:/language/ControlPanel/Basics/NewJournal/Tags/Prompt": {
"title": "$:/language/ControlPanel/Basics/NewJournal/Tags/Prompt",
"text": "Tags for new journal tiddlers"
},
"$:/language/ControlPanel/Basics/NewTiddler/Title/Prompt": {
"title": "$:/language/ControlPanel/Basics/NewTiddler/Title/Prompt",
"text": "Title of new tiddlers"
},
"$:/language/ControlPanel/Basics/OverriddenShadowTiddlers/Prompt": {
"title": "$:/language/ControlPanel/Basics/OverriddenShadowTiddlers/Prompt",
"text": "Number of overridden shadow tiddlers:"
},
"$:/language/ControlPanel/Basics/ShadowTiddlers/Prompt": {
"title": "$:/language/ControlPanel/Basics/ShadowTiddlers/Prompt",
"text": "Number of shadow tiddlers:"
},
"$:/language/ControlPanel/Basics/Subtitle/Prompt": {
"title": "$:/language/ControlPanel/Basics/Subtitle/Prompt",
"text": "Subtitle:"
},
"$:/language/ControlPanel/Basics/SystemTiddlers/Prompt": {
"title": "$:/language/ControlPanel/Basics/SystemTiddlers/Prompt",
"text": "Number of system tiddlers:"
},
"$:/language/ControlPanel/Basics/Tags/Prompt": {
"title": "$:/language/ControlPanel/Basics/Tags/Prompt",
"text": "Number of tags:"
},
"$:/language/ControlPanel/Basics/Tiddlers/Prompt": {
"title": "$:/language/ControlPanel/Basics/Tiddlers/Prompt",
"text": "Number of tiddlers:"
},
"$:/language/ControlPanel/Basics/Title/Prompt": {
"title": "$:/language/ControlPanel/Basics/Title/Prompt",
"text": "Title of this ~TiddlyWiki:"
},
"$:/language/ControlPanel/Basics/Username/Prompt": {
"title": "$:/language/ControlPanel/Basics/Username/Prompt",
"text": "Username for signing edits:"
},
"$:/language/ControlPanel/Basics/Version/Prompt": {
"title": "$:/language/ControlPanel/Basics/Version/Prompt",
"text": "~TiddlyWiki version:"
},
"$:/language/ControlPanel/EditorTypes/Caption": {
"title": "$:/language/ControlPanel/EditorTypes/Caption",
"text": "Editor Types"
},
"$:/language/ControlPanel/EditorTypes/Editor/Caption": {
"title": "$:/language/ControlPanel/EditorTypes/Editor/Caption",
"text": "Editor"
},
"$:/language/ControlPanel/EditorTypes/Hint": {
"title": "$:/language/ControlPanel/EditorTypes/Hint",
"text": "These tiddlers determine which editor is used to edit specific tiddler types."
},
"$:/language/ControlPanel/EditorTypes/Type/Caption": {
"title": "$:/language/ControlPanel/EditorTypes/Type/Caption",
"text": "Type"
},
"$:/language/ControlPanel/Info/Caption": {
"title": "$:/language/ControlPanel/Info/Caption",
"text": "Info"
},
"$:/language/ControlPanel/Info/Hint": {
"title": "$:/language/ControlPanel/Info/Hint",
"text": "Information about this TiddlyWiki"
},
"$:/language/ControlPanel/KeyboardShortcuts/Add/Prompt": {
"title": "$:/language/ControlPanel/KeyboardShortcuts/Add/Prompt",
"text": "Type shortcut here"
},
"$:/language/ControlPanel/KeyboardShortcuts/Add/Caption": {
"title": "$:/language/ControlPanel/KeyboardShortcuts/Add/Caption",
"text": "add shortcut"
},
"$:/language/ControlPanel/KeyboardShortcuts/Caption": {
"title": "$:/language/ControlPanel/KeyboardShortcuts/Caption",
"text": "Keyboard Shortcuts"
},
"$:/language/ControlPanel/KeyboardShortcuts/Hint": {
"title": "$:/language/ControlPanel/KeyboardShortcuts/Hint",
"text": "Manage keyboard shortcut assignments"
},
"$:/language/ControlPanel/KeyboardShortcuts/NoShortcuts/Caption": {
"title": "$:/language/ControlPanel/KeyboardShortcuts/NoShortcuts/Caption",
"text": "No keyboard shortcuts assigned"
},
"$:/language/ControlPanel/KeyboardShortcuts/Remove/Hint": {
"title": "$:/language/ControlPanel/KeyboardShortcuts/Remove/Hint",
"text": "remove keyboard shortcut"
},
"$:/language/ControlPanel/KeyboardShortcuts/Platform/All": {
"title": "$:/language/ControlPanel/KeyboardShortcuts/Platform/All",
"text": "All platforms"
},
"$:/language/ControlPanel/KeyboardShortcuts/Platform/Mac": {
"title": "$:/language/ControlPanel/KeyboardShortcuts/Platform/Mac",
"text": "Macintosh platform only"
},
"$:/language/ControlPanel/KeyboardShortcuts/Platform/NonMac": {
"title": "$:/language/ControlPanel/KeyboardShortcuts/Platform/NonMac",
"text": "Non-Macintosh platforms only"
},
"$:/language/ControlPanel/KeyboardShortcuts/Platform/Linux": {
"title": "$:/language/ControlPanel/KeyboardShortcuts/Platform/Linux",
"text": "Linux platform only"
},
"$:/language/ControlPanel/KeyboardShortcuts/Platform/NonLinux": {
"title": "$:/language/ControlPanel/KeyboardShortcuts/Platform/NonLinux",
"text": "Non-Linux platforms only"
},
"$:/language/ControlPanel/KeyboardShortcuts/Platform/Windows": {
"title": "$:/language/ControlPanel/KeyboardShortcuts/Platform/Windows",
"text": "Windows platform only"
},
"$:/language/ControlPanel/KeyboardShortcuts/Platform/NonWindows": {
"title": "$:/language/ControlPanel/KeyboardShortcuts/Platform/NonWindows",
"text": "Non-Windows platforms only"
},
"$:/language/ControlPanel/LoadedModules/Caption": {
"title": "$:/language/ControlPanel/LoadedModules/Caption",
"text": "Loaded Modules"
},
"$:/language/ControlPanel/LoadedModules/Hint": {
"title": "$:/language/ControlPanel/LoadedModules/Hint",
"text": "These are the currently loaded tiddler modules linked to their source tiddlers. Any italicised modules lack a source tiddler, typically because they were setup during the boot process."
},
"$:/language/ControlPanel/Palette/Caption": {
"title": "$:/language/ControlPanel/Palette/Caption",
"text": "Palette"
},
"$:/language/ControlPanel/Palette/Editor/Clone/Caption": {
"title": "$:/language/ControlPanel/Palette/Editor/Clone/Caption",
"text": "clone"
},
"$:/language/ControlPanel/Palette/Editor/Clone/Prompt": {
"title": "$:/language/ControlPanel/Palette/Editor/Clone/Prompt",
"text": "It is recommended that you clone this shadow palette before editing it"
},
"$:/language/ControlPanel/Palette/Editor/Delete/Hint": {
"title": "$:/language/ControlPanel/Palette/Editor/Delete/Hint",
"text": "delete this entry from the current palette"
},
"$:/language/ControlPanel/Palette/Editor/Names/External/Show": {
"title": "$:/language/ControlPanel/Palette/Editor/Names/External/Show",
"text": "Show color names that are not part of the current palette"
},
"$:/language/ControlPanel/Palette/Editor/Prompt/Modified": {
"title": "$:/language/ControlPanel/Palette/Editor/Prompt/Modified",
"text": "This shadow palette has been modified"
},
"$:/language/ControlPanel/Palette/Editor/Prompt": {
"title": "$:/language/ControlPanel/Palette/Editor/Prompt",
"text": "Editing"
},
"$:/language/ControlPanel/Palette/Editor/Reset/Caption": {
"title": "$:/language/ControlPanel/Palette/Editor/Reset/Caption",
"text": "reset"
},
"$:/language/ControlPanel/Palette/HideEditor/Caption": {
"title": "$:/language/ControlPanel/Palette/HideEditor/Caption",
"text": "hide editor"
},
"$:/language/ControlPanel/Palette/Prompt": {
"title": "$:/language/ControlPanel/Palette/Prompt",
"text": "Current palette:"
},
"$:/language/ControlPanel/Palette/ShowEditor/Caption": {
"title": "$:/language/ControlPanel/Palette/ShowEditor/Caption",
"text": "show editor"
},
"$:/language/ControlPanel/Parsing/Caption": {
"title": "$:/language/ControlPanel/Parsing/Caption",
"text": "Parsing"
},
"$:/language/ControlPanel/Parsing/Hint": {
"title": "$:/language/ControlPanel/Parsing/Hint",
"text": "Here you can globally disable/enable wiki parser rules. For changes to take effect, save and reload your wiki. Disabling certain parser rules can prevent <$text text=\"TiddlyWiki\"/> from functioning correctly. Use [[safe mode|https://tiddlywiki.com/#SafeMode]] to restore normal operation."
},
"$:/language/ControlPanel/Parsing/Block/Caption": {
"title": "$:/language/ControlPanel/Parsing/Block/Caption",
"text": "Block Parse Rules"
},
"$:/language/ControlPanel/Parsing/Inline/Caption": {
"title": "$:/language/ControlPanel/Parsing/Inline/Caption",
"text": "Inline Parse Rules"
},
"$:/language/ControlPanel/Parsing/Pragma/Caption": {
"title": "$:/language/ControlPanel/Parsing/Pragma/Caption",
"text": "Pragma Parse Rules"
},
"$:/language/ControlPanel/Plugins/Add/Caption": {
"title": "$:/language/ControlPanel/Plugins/Add/Caption",
"text": "Get more plugins"
},
"$:/language/ControlPanel/Plugins/Add/Hint": {
"title": "$:/language/ControlPanel/Plugins/Add/Hint",
"text": "Install plugins from the official library"
},
"$:/language/ControlPanel/Plugins/AlreadyInstalled/Hint": {
"title": "$:/language/ControlPanel/Plugins/AlreadyInstalled/Hint",
"text": "This plugin is already installed at version <$text text=<<installedVersion>>/>"
},
"$:/language/ControlPanel/Plugins/Caption": {
"title": "$:/language/ControlPanel/Plugins/Caption",
"text": "Plugins"
},
"$:/language/ControlPanel/Plugins/Disable/Caption": {
"title": "$:/language/ControlPanel/Plugins/Disable/Caption",
"text": "disable"
},
"$:/language/ControlPanel/Plugins/Disable/Hint": {
"title": "$:/language/ControlPanel/Plugins/Disable/Hint",
"text": "Disable this plugin when reloading page"
},
"$:/language/ControlPanel/Plugins/Disabled/Status": {
"title": "$:/language/ControlPanel/Plugins/Disabled/Status",
"text": "(disabled)"
},
"$:/language/ControlPanel/Plugins/Empty/Hint": {
"title": "$:/language/ControlPanel/Plugins/Empty/Hint",
"text": "None"
},
"$:/language/ControlPanel/Plugins/Enable/Caption": {
"title": "$:/language/ControlPanel/Plugins/Enable/Caption",
"text": "enable"
},
"$:/language/ControlPanel/Plugins/Enable/Hint": {
"title": "$:/language/ControlPanel/Plugins/Enable/Hint",
"text": "Enable this plugin when reloading page"
},
"$:/language/ControlPanel/Plugins/Install/Caption": {
"title": "$:/language/ControlPanel/Plugins/Install/Caption",
"text": "install"
},
"$:/language/ControlPanel/Plugins/Installed/Hint": {
"title": "$:/language/ControlPanel/Plugins/Installed/Hint",
"text": "Currently installed plugins:"
},
"$:/language/ControlPanel/Plugins/Languages/Caption": {
"title": "$:/language/ControlPanel/Plugins/Languages/Caption",
"text": "Languages"
},
"$:/language/ControlPanel/Plugins/Languages/Hint": {
"title": "$:/language/ControlPanel/Plugins/Languages/Hint",
"text": "Language pack plugins"
},
"$:/language/ControlPanel/Plugins/NoInfoFound/Hint": {
"title": "$:/language/ControlPanel/Plugins/NoInfoFound/Hint",
"text": "No ''\"<$text text=<<currentTab>>/>\"'' found"
},
"$:/language/ControlPanel/Plugins/NotInstalled/Hint": {
"title": "$:/language/ControlPanel/Plugins/NotInstalled/Hint",
"text": "This plugin is not currently installed"
},
"$:/language/ControlPanel/Plugins/OpenPluginLibrary": {
"title": "$:/language/ControlPanel/Plugins/OpenPluginLibrary",
"text": "open plugin library"
},
"$:/language/ControlPanel/Plugins/ClosePluginLibrary": {
"title": "$:/language/ControlPanel/Plugins/ClosePluginLibrary",
"text": "close plugin library"
},
"$:/language/ControlPanel/Plugins/Plugins/Caption": {
"title": "$:/language/ControlPanel/Plugins/Plugins/Caption",
"text": "Plugins"
},
"$:/language/ControlPanel/Plugins/Plugins/Hint": {
"title": "$:/language/ControlPanel/Plugins/Plugins/Hint",
"text": "Plugins"
},
"$:/language/ControlPanel/Plugins/Reinstall/Caption": {
"title": "$:/language/ControlPanel/Plugins/Reinstall/Caption",
"text": "reinstall"
},
"$:/language/ControlPanel/Plugins/Themes/Caption": {
"title": "$:/language/ControlPanel/Plugins/Themes/Caption",
"text": "Themes"
},
"$:/language/ControlPanel/Plugins/Themes/Hint": {
"title": "$:/language/ControlPanel/Plugins/Themes/Hint",
"text": "Theme plugins"
},
"$:/language/ControlPanel/Saving/Caption": {
"title": "$:/language/ControlPanel/Saving/Caption",
"text": "Saving"
},
"$:/language/ControlPanel/Saving/DownloadSaver/AutoSave/Description": {
"title": "$:/language/ControlPanel/Saving/DownloadSaver/AutoSave/Description",
"text": "Permit automatic saving for the download saver"
},
"$:/language/ControlPanel/Saving/DownloadSaver/AutoSave/Hint": {
"title": "$:/language/ControlPanel/Saving/DownloadSaver/AutoSave/Hint",
"text": "Enable Autosave for Download Saver"
},
"$:/language/ControlPanel/Saving/DownloadSaver/Caption": {
"title": "$:/language/ControlPanel/Saving/DownloadSaver/Caption",
"text": "Download Saver"
},
"$:/language/ControlPanel/Saving/DownloadSaver/Hint": {
"title": "$:/language/ControlPanel/Saving/DownloadSaver/Hint",
"text": "These settings apply to the HTML5-compatible download saver"
},
"$:/language/ControlPanel/Saving/General/Caption": {
"title": "$:/language/ControlPanel/Saving/General/Caption",
"text": "General"
},
"$:/language/ControlPanel/Saving/General/Hint": {
"title": "$:/language/ControlPanel/Saving/General/Hint",
"text": "These settings apply to all the loaded savers"
},
"$:/language/ControlPanel/Saving/Hint": {
"title": "$:/language/ControlPanel/Saving/Hint",
"text": "Settings used for saving the entire TiddlyWiki as a single file via a saver module"
},
"$:/language/ControlPanel/Saving/GitService/Branch": {
"title": "$:/language/ControlPanel/Saving/GitService/Branch",
"text": "Target branch for saving"
},
"$:/language/ControlPanel/Saving/GitService/CommitMessage": {
"title": "$:/language/ControlPanel/Saving/GitService/CommitMessage",
"text": "Saved by TiddlyWiki"
},
"$:/language/ControlPanel/Saving/GitService/Description": {
"title": "$:/language/ControlPanel/Saving/GitService/Description",
"text": "These settings are only used when saving to <<service-name>>"
},
"$:/language/ControlPanel/Saving/GitService/Filename": {
"title": "$:/language/ControlPanel/Saving/GitService/Filename",
"text": "Filename of target file (e.g. `index.html`)"
},
"$:/language/ControlPanel/Saving/GitService/Path": {
"title": "$:/language/ControlPanel/Saving/GitService/Path",
"text": "Path to target file (e.g. `/wiki/`)"
},
"$:/language/ControlPanel/Saving/GitService/Repo": {
"title": "$:/language/ControlPanel/Saving/GitService/Repo",
"text": "Target repository (e.g. `Jermolene/TiddlyWiki5`)"
},
"$:/language/ControlPanel/Saving/GitService/ServerURL": {
"title": "$:/language/ControlPanel/Saving/GitService/ServerURL",
"text": "Server API URL"
},
"$:/language/ControlPanel/Saving/GitService/UserName": {
"title": "$:/language/ControlPanel/Saving/GitService/UserName",
"text": "Username"
},
"$:/language/ControlPanel/Saving/GitService/GitHub/Caption": {
"title": "$:/language/ControlPanel/Saving/GitService/GitHub/Caption",
"text": "~GitHub Saver"
},
"$:/language/ControlPanel/Saving/GitService/GitHub/Password": {
"title": "$:/language/ControlPanel/Saving/GitService/GitHub/Password",
"text": "Password, OAUTH token, or personal access token (see [[GitHub help page|https://help.github.com/en/articles/creating-a-personal-access-token-for-the-command-line]] for details)"
},
"$:/language/ControlPanel/Saving/GitService/GitLab/Caption": {
"title": "$:/language/ControlPanel/Saving/GitService/GitLab/Caption",
"text": "~GitLab Saver"
},
"$:/language/ControlPanel/Saving/GitService/GitLab/Password": {
"title": "$:/language/ControlPanel/Saving/GitService/GitLab/Password",
"text": "Personal access token for API (see [[GitLab help page|https://docs.gitlab.com/ee/user/profile/personal_access_tokens.html]] for details)"
},
"$:/language/ControlPanel/Saving/TiddlySpot/Advanced/Heading": {
"title": "$:/language/ControlPanel/Saving/TiddlySpot/Advanced/Heading",
"text": "Advanced Settings"
},
"$:/language/ControlPanel/Saving/TiddlySpot/BackupDir": {
"title": "$:/language/ControlPanel/Saving/TiddlySpot/BackupDir",
"text": "Backup Directory"
},
"$:/language/ControlPanel/Saving/TiddlySpot/Backups": {
"title": "$:/language/ControlPanel/Saving/TiddlySpot/Backups",
"text": "Backups"
},
"$:/language/ControlPanel/Saving/TiddlySpot/Caption": {
"title": "$:/language/ControlPanel/Saving/TiddlySpot/Caption",
"text": "~TiddlySpot Saver"
},
"$:/language/ControlPanel/Saving/TiddlySpot/Description": {
"title": "$:/language/ControlPanel/Saving/TiddlySpot/Description",
"text": "These settings are only used when saving to http://tiddlyspot.com or a compatible remote server"
},
"$:/language/ControlPanel/Saving/TiddlySpot/Filename": {
"title": "$:/language/ControlPanel/Saving/TiddlySpot/Filename",
"text": "Upload Filename"
},
"$:/language/ControlPanel/Saving/TiddlySpot/Heading": {
"title": "$:/language/ControlPanel/Saving/TiddlySpot/Heading",
"text": "~TiddlySpot"
},
"$:/language/ControlPanel/Saving/TiddlySpot/Hint": {
"title": "$:/language/ControlPanel/Saving/TiddlySpot/Hint",
"text": "//The server URL defaults to `http://<wikiname>.tiddlyspot.com/store.cgi` and can be changed to use a custom server address, e.g. `http://example.com/store.php`.//"
},
"$:/language/ControlPanel/Saving/TiddlySpot/Password": {
"title": "$:/language/ControlPanel/Saving/TiddlySpot/Password",
"text": "Password"
},
"$:/language/ControlPanel/Saving/TiddlySpot/ServerURL": {
"title": "$:/language/ControlPanel/Saving/TiddlySpot/ServerURL",
"text": "Server URL"
},
"$:/language/ControlPanel/Saving/TiddlySpot/UploadDir": {
"title": "$:/language/ControlPanel/Saving/TiddlySpot/UploadDir",
"text": "Upload Directory"
},
"$:/language/ControlPanel/Saving/TiddlySpot/UserName": {
"title": "$:/language/ControlPanel/Saving/TiddlySpot/UserName",
"text": "Wiki Name"
},
"$:/language/ControlPanel/Settings/AutoSave/Caption": {
"title": "$:/language/ControlPanel/Settings/AutoSave/Caption",
"text": "Autosave"
},
"$:/language/ControlPanel/Settings/AutoSave/Disabled/Description": {
"title": "$:/language/ControlPanel/Settings/AutoSave/Disabled/Description",
"text": "Do not save changes automatically"
},
"$:/language/ControlPanel/Settings/AutoSave/Enabled/Description": {
"title": "$:/language/ControlPanel/Settings/AutoSave/Enabled/Description",
"text": "Save changes automatically"
},
"$:/language/ControlPanel/Settings/AutoSave/Hint": {
"title": "$:/language/ControlPanel/Settings/AutoSave/Hint",
"text": "Attempt to automatically save changes during editing when using a supporting saver"
},
"$:/language/ControlPanel/Settings/CamelCase/Caption": {
"title": "$:/language/ControlPanel/Settings/CamelCase/Caption",
"text": "Camel Case Wiki Links"
},
"$:/language/ControlPanel/Settings/CamelCase/Hint": {
"title": "$:/language/ControlPanel/Settings/CamelCase/Hint",
"text": "You can globally disable automatic linking of ~CamelCase phrases. Requires reload to take effect"
},
"$:/language/ControlPanel/Settings/CamelCase/Description": {
"title": "$:/language/ControlPanel/Settings/CamelCase/Description",
"text": "Enable automatic ~CamelCase linking"
},
"$:/language/ControlPanel/Settings/Caption": {
"title": "$:/language/ControlPanel/Settings/Caption",
"text": "Settings"
},
"$:/language/ControlPanel/Settings/EditorToolbar/Caption": {
"title": "$:/language/ControlPanel/Settings/EditorToolbar/Caption",
"text": "Editor Toolbar"
},
"$:/language/ControlPanel/Settings/EditorToolbar/Hint": {
"title": "$:/language/ControlPanel/Settings/EditorToolbar/Hint",
"text": "Enable or disable the editor toolbar:"
},
"$:/language/ControlPanel/Settings/EditorToolbar/Description": {
"title": "$:/language/ControlPanel/Settings/EditorToolbar/Description",
"text": "Show editor toolbar"
},
"$:/language/ControlPanel/Settings/InfoPanelMode/Caption": {
"title": "$:/language/ControlPanel/Settings/InfoPanelMode/Caption",
"text": "Tiddler Info Panel Mode"
},
"$:/language/ControlPanel/Settings/InfoPanelMode/Hint": {
"title": "$:/language/ControlPanel/Settings/InfoPanelMode/Hint",
"text": "Control when the tiddler info panel closes:"
},
"$:/language/ControlPanel/Settings/InfoPanelMode/Popup/Description": {
"title": "$:/language/ControlPanel/Settings/InfoPanelMode/Popup/Description",
"text": "Tiddler info panel closes automatically"
},
"$:/language/ControlPanel/Settings/InfoPanelMode/Sticky/Description": {
"title": "$:/language/ControlPanel/Settings/InfoPanelMode/Sticky/Description",
"text": "Tiddler info panel stays open until explicitly closed"
},
"$:/language/ControlPanel/Settings/Hint": {
"title": "$:/language/ControlPanel/Settings/Hint",
"text": "These settings let you customise the behaviour of TiddlyWiki."
},
"$:/language/ControlPanel/Settings/NavigationAddressBar/Caption": {
"title": "$:/language/ControlPanel/Settings/NavigationAddressBar/Caption",
"text": "Navigation Address Bar"
},
"$:/language/ControlPanel/Settings/NavigationAddressBar/Hint": {
"title": "$:/language/ControlPanel/Settings/NavigationAddressBar/Hint",
"text": "Behaviour of the browser address bar when navigating to a tiddler:"
},
"$:/language/ControlPanel/Settings/NavigationAddressBar/No/Description": {
"title": "$:/language/ControlPanel/Settings/NavigationAddressBar/No/Description",
"text": "Do not update the address bar"
},
"$:/language/ControlPanel/Settings/NavigationAddressBar/Permalink/Description": {
"title": "$:/language/ControlPanel/Settings/NavigationAddressBar/Permalink/Description",
"text": "Include the target tiddler"
},
"$:/language/ControlPanel/Settings/NavigationAddressBar/Permaview/Description": {
"title": "$:/language/ControlPanel/Settings/NavigationAddressBar/Permaview/Description",
"text": "Include the target tiddler and the current story sequence"
},
"$:/language/ControlPanel/Settings/NavigationHistory/Caption": {
"title": "$:/language/ControlPanel/Settings/NavigationHistory/Caption",
"text": "Navigation History"
},
"$:/language/ControlPanel/Settings/NavigationHistory/Hint": {
"title": "$:/language/ControlPanel/Settings/NavigationHistory/Hint",
"text": "Update browser history when navigating to a tiddler:"
},
"$:/language/ControlPanel/Settings/NavigationHistory/No/Description": {
"title": "$:/language/ControlPanel/Settings/NavigationHistory/No/Description",
"text": "Do not update history"
},
"$:/language/ControlPanel/Settings/NavigationHistory/Yes/Description": {
"title": "$:/language/ControlPanel/Settings/NavigationHistory/Yes/Description",
"text": "Update history"
},
"$:/language/ControlPanel/Settings/NavigationPermalinkviewMode/Caption": {
"title": "$:/language/ControlPanel/Settings/NavigationPermalinkviewMode/Caption",
"text": "Permalink/permaview Mode"
},
"$:/language/ControlPanel/Settings/NavigationPermalinkviewMode/Hint": {
"title": "$:/language/ControlPanel/Settings/NavigationPermalinkviewMode/Hint",
"text": "Choose how permalink/permaview is handled:"
},
"$:/language/ControlPanel/Settings/NavigationPermalinkviewMode/CopyToClipboard/Description": {
"title": "$:/language/ControlPanel/Settings/NavigationPermalinkviewMode/CopyToClipboard/Description",
"text": "Copy permalink/permaview URL to clipboard"
},
"$:/language/ControlPanel/Settings/NavigationPermalinkviewMode/UpdateAddressBar/Description": {
"title": "$:/language/ControlPanel/Settings/NavigationPermalinkviewMode/UpdateAddressBar/Description",
"text": "Update address bar with permalink/permaview URL"
},
"$:/language/ControlPanel/Settings/PerformanceInstrumentation/Caption": {
"title": "$:/language/ControlPanel/Settings/PerformanceInstrumentation/Caption",
"text": "Performance Instrumentation"
},
"$:/language/ControlPanel/Settings/PerformanceInstrumentation/Hint": {
"title": "$:/language/ControlPanel/Settings/PerformanceInstrumentation/Hint",
"text": "Displays performance statistics in the browser developer console. Requires reload to take effect"
},
"$:/language/ControlPanel/Settings/PerformanceInstrumentation/Description": {
"title": "$:/language/ControlPanel/Settings/PerformanceInstrumentation/Description",
"text": "Enable performance instrumentation"
},
"$:/language/ControlPanel/Settings/ToolbarButtonStyle/Caption": {
"title": "$:/language/ControlPanel/Settings/ToolbarButtonStyle/Caption",
"text": "Toolbar Button Style"
},
"$:/language/ControlPanel/Settings/ToolbarButtonStyle/Hint": {
"title": "$:/language/ControlPanel/Settings/ToolbarButtonStyle/Hint",
"text": "Choose the style for toolbar buttons:"
},
"$:/language/ControlPanel/Settings/ToolbarButtonStyle/Styles/Borderless": {
"title": "$:/language/ControlPanel/Settings/ToolbarButtonStyle/Styles/Borderless",
"text": "Borderless"
},
"$:/language/ControlPanel/Settings/ToolbarButtonStyle/Styles/Boxed": {
"title": "$:/language/ControlPanel/Settings/ToolbarButtonStyle/Styles/Boxed",
"text": "Boxed"
},
"$:/language/ControlPanel/Settings/ToolbarButtonStyle/Styles/Rounded": {
"title": "$:/language/ControlPanel/Settings/ToolbarButtonStyle/Styles/Rounded",
"text": "Rounded"
},
"$:/language/ControlPanel/Settings/ToolbarButtons/Caption": {
"title": "$:/language/ControlPanel/Settings/ToolbarButtons/Caption",
"text": "Toolbar Buttons"
},
"$:/language/ControlPanel/Settings/ToolbarButtons/Hint": {
"title": "$:/language/ControlPanel/Settings/ToolbarButtons/Hint",
"text": "Default toolbar button appearance:"
},
"$:/language/ControlPanel/Settings/ToolbarButtons/Icons/Description": {
"title": "$:/language/ControlPanel/Settings/ToolbarButtons/Icons/Description",
"text": "Include icon"
},
"$:/language/ControlPanel/Settings/ToolbarButtons/Text/Description": {
"title": "$:/language/ControlPanel/Settings/ToolbarButtons/Text/Description",
"text": "Include text"
},
"$:/language/ControlPanel/Settings/DefaultSidebarTab/Caption": {
"title": "$:/language/ControlPanel/Settings/DefaultSidebarTab/Caption",
"text": "Default Sidebar Tab"
},
"$:/language/ControlPanel/Settings/DefaultSidebarTab/Hint": {
"title": "$:/language/ControlPanel/Settings/DefaultSidebarTab/Hint",
"text": "Specify which sidebar tab is displayed by default"
},
"$:/language/ControlPanel/Settings/DefaultMoreSidebarTab/Caption": {
"title": "$:/language/ControlPanel/Settings/DefaultMoreSidebarTab/Caption",
"text": "Default More Sidebar Tab"
},
"$:/language/ControlPanel/Settings/DefaultMoreSidebarTab/Hint": {
"title": "$:/language/ControlPanel/Settings/DefaultMoreSidebarTab/Hint",
"text": "Specify which More sidebar tab is displayed by default"
},
"$:/language/ControlPanel/Settings/LinkToBehaviour/Caption": {
"title": "$:/language/ControlPanel/Settings/LinkToBehaviour/Caption",
"text": "Tiddler Opening Behaviour"
},
"$:/language/ControlPanel/Settings/LinkToBehaviour/InsideRiver/Hint": {
"title": "$:/language/ControlPanel/Settings/LinkToBehaviour/InsideRiver/Hint",
"text": "Navigation from //within// the story river"
},
"$:/language/ControlPanel/Settings/LinkToBehaviour/OutsideRiver/Hint": {
"title": "$:/language/ControlPanel/Settings/LinkToBehaviour/OutsideRiver/Hint",
"text": "Navigation from //outside// the story river"
},
"$:/language/ControlPanel/Settings/LinkToBehaviour/OpenAbove": {
"title": "$:/language/ControlPanel/Settings/LinkToBehaviour/OpenAbove",
"text": "Open above the current tiddler"
},
"$:/language/ControlPanel/Settings/LinkToBehaviour/OpenBelow": {
"title": "$:/language/ControlPanel/Settings/LinkToBehaviour/OpenBelow",
"text": "Open below the current tiddler"
},
"$:/language/ControlPanel/Settings/LinkToBehaviour/OpenAtTop": {
"title": "$:/language/ControlPanel/Settings/LinkToBehaviour/OpenAtTop",
"text": "Open at the top of the story river"
},
"$:/language/ControlPanel/Settings/LinkToBehaviour/OpenAtBottom": {
"title": "$:/language/ControlPanel/Settings/LinkToBehaviour/OpenAtBottom",
"text": "Open at the bottom of the story river"
},
"$:/language/ControlPanel/Settings/TitleLinks/Caption": {
"title": "$:/language/ControlPanel/Settings/TitleLinks/Caption",
"text": "Tiddler Titles"
},
"$:/language/ControlPanel/Settings/TitleLinks/Hint": {
"title": "$:/language/ControlPanel/Settings/TitleLinks/Hint",
"text": "Optionally display tiddler titles as links"
},
"$:/language/ControlPanel/Settings/TitleLinks/No/Description": {
"title": "$:/language/ControlPanel/Settings/TitleLinks/No/Description",
"text": "Do not display tiddler titles as links"
},
"$:/language/ControlPanel/Settings/TitleLinks/Yes/Description": {
"title": "$:/language/ControlPanel/Settings/TitleLinks/Yes/Description",
"text": "Display tiddler titles as links"
},
"$:/language/ControlPanel/Settings/MissingLinks/Caption": {
"title": "$:/language/ControlPanel/Settings/MissingLinks/Caption",
"text": "Wiki Links"
},
"$:/language/ControlPanel/Settings/MissingLinks/Hint": {
"title": "$:/language/ControlPanel/Settings/MissingLinks/Hint",
"text": "Choose whether to link to tiddlers that do not exist yet"
},
"$:/language/ControlPanel/Settings/MissingLinks/Description": {
"title": "$:/language/ControlPanel/Settings/MissingLinks/Description",
"text": "Enable links to missing tiddlers"
},
"$:/language/ControlPanel/StoryView/Caption": {
"title": "$:/language/ControlPanel/StoryView/Caption",
"text": "Story View"
},
"$:/language/ControlPanel/StoryView/Prompt": {
"title": "$:/language/ControlPanel/StoryView/Prompt",
"text": "Current view:"
},
"$:/language/ControlPanel/Stylesheets/Caption": {
"title": "$:/language/ControlPanel/Stylesheets/Caption",
"text": "Stylesheets"
},
"$:/language/ControlPanel/Stylesheets/Expand/Caption": {
"title": "$:/language/ControlPanel/Stylesheets/Expand/Caption",
"text": "Expand All"
},
"$:/language/ControlPanel/Stylesheets/Hint": {
"title": "$:/language/ControlPanel/Stylesheets/Hint",
"text": "This is the rendered CSS of the current stylesheet tiddlers tagged with <<tag \"$:/tags/Stylesheet\">>"
},
"$:/language/ControlPanel/Stylesheets/Restore/Caption": {
"title": "$:/language/ControlPanel/Stylesheets/Restore/Caption",
"text": "Restore"
},
"$:/language/ControlPanel/Theme/Caption": {
"title": "$:/language/ControlPanel/Theme/Caption",
"text": "Theme"
},
"$:/language/ControlPanel/Theme/Prompt": {
"title": "$:/language/ControlPanel/Theme/Prompt",
"text": "Current theme:"
},
"$:/language/ControlPanel/TiddlerFields/Caption": {
"title": "$:/language/ControlPanel/TiddlerFields/Caption",
"text": "Tiddler Fields"
},
"$:/language/ControlPanel/TiddlerFields/Hint": {
"title": "$:/language/ControlPanel/TiddlerFields/Hint",
"text": "This is the full set of TiddlerFields in use in this wiki (including system tiddlers but excluding shadow tiddlers)."
},
"$:/language/ControlPanel/Toolbars/Caption": {
"title": "$:/language/ControlPanel/Toolbars/Caption",
"text": "Toolbars"
},
"$:/language/ControlPanel/Toolbars/EditToolbar/Caption": {
"title": "$:/language/ControlPanel/Toolbars/EditToolbar/Caption",
"text": "Edit Toolbar"
},
"$:/language/ControlPanel/Toolbars/EditToolbar/Hint": {
"title": "$:/language/ControlPanel/Toolbars/EditToolbar/Hint",
"text": "Choose which buttons are displayed for tiddlers in edit mode. Drag and drop to change the ordering"
},
"$:/language/ControlPanel/Toolbars/Hint": {
"title": "$:/language/ControlPanel/Toolbars/Hint",
"text": "Select which toolbar buttons are displayed"
},
"$:/language/ControlPanel/Toolbars/PageControls/Caption": {
"title": "$:/language/ControlPanel/Toolbars/PageControls/Caption",
"text": "Page Toolbar"
},
"$:/language/ControlPanel/Toolbars/PageControls/Hint": {
"title": "$:/language/ControlPanel/Toolbars/PageControls/Hint",
"text": "Choose which buttons are displayed on the main page toolbar. Drag and drop to change the ordering"
},
"$:/language/ControlPanel/Toolbars/EditorToolbar/Caption": {
"title": "$:/language/ControlPanel/Toolbars/EditorToolbar/Caption",
"text": "Editor Toolbar"
},
"$:/language/ControlPanel/Toolbars/EditorToolbar/Hint": {
"title": "$:/language/ControlPanel/Toolbars/EditorToolbar/Hint",
"text": "Choose which buttons are displayed in the editor toolbar. Note that some buttons will only appear when editing tiddlers of a certain type. Drag and drop to change the ordering"
},
"$:/language/ControlPanel/Toolbars/ViewToolbar/Caption": {
"title": "$:/language/ControlPanel/Toolbars/ViewToolbar/Caption",
"text": "View Toolbar"
},
"$:/language/ControlPanel/Toolbars/ViewToolbar/Hint": {
"title": "$:/language/ControlPanel/Toolbars/ViewToolbar/Hint",
"text": "Choose which buttons are displayed for tiddlers in view mode. Drag and drop to change the ordering"
},
"$:/language/ControlPanel/Tools/Download/Full/Caption": {
"title": "$:/language/ControlPanel/Tools/Download/Full/Caption",
"text": "Download full wiki"
},
"$:/language/Date/DaySuffix/1": {
"title": "$:/language/Date/DaySuffix/1",
"text": "st"
},
"$:/language/Date/DaySuffix/2": {
"title": "$:/language/Date/DaySuffix/2",
"text": "nd"
},
"$:/language/Date/DaySuffix/3": {
"title": "$:/language/Date/DaySuffix/3",
"text": "rd"
},
"$:/language/Date/DaySuffix/4": {
"title": "$:/language/Date/DaySuffix/4",
"text": "th"
},
"$:/language/Date/DaySuffix/5": {
"title": "$:/language/Date/DaySuffix/5",
"text": "th"
},
"$:/language/Date/DaySuffix/6": {
"title": "$:/language/Date/DaySuffix/6",
"text": "th"
},
"$:/language/Date/DaySuffix/7": {
"title": "$:/language/Date/DaySuffix/7",
"text": "th"
},
"$:/language/Date/DaySuffix/8": {
"title": "$:/language/Date/DaySuffix/8",
"text": "th"
},
"$:/language/Date/DaySuffix/9": {
"title": "$:/language/Date/DaySuffix/9",
"text": "th"
},
"$:/language/Date/DaySuffix/10": {
"title": "$:/language/Date/DaySuffix/10",
"text": "th"
},
"$:/language/Date/DaySuffix/11": {
"title": "$:/language/Date/DaySuffix/11",
"text": "th"
},
"$:/language/Date/DaySuffix/12": {
"title": "$:/language/Date/DaySuffix/12",
"text": "th"
},
"$:/language/Date/DaySuffix/13": {
"title": "$:/language/Date/DaySuffix/13",
"text": "th"
},
"$:/language/Date/DaySuffix/14": {
"title": "$:/language/Date/DaySuffix/14",
"text": "th"
},
"$:/language/Date/DaySuffix/15": {
"title": "$:/language/Date/DaySuffix/15",
"text": "th"
},
"$:/language/Date/DaySuffix/16": {
"title": "$:/language/Date/DaySuffix/16",
"text": "th"
},
"$:/language/Date/DaySuffix/17": {
"title": "$:/language/Date/DaySuffix/17",
"text": "th"
},
"$:/language/Date/DaySuffix/18": {
"title": "$:/language/Date/DaySuffix/18",
"text": "th"
},
"$:/language/Date/DaySuffix/19": {
"title": "$:/language/Date/DaySuffix/19",
"text": "th"
},
"$:/language/Date/DaySuffix/20": {
"title": "$:/language/Date/DaySuffix/20",
"text": "th"
},
"$:/language/Date/DaySuffix/21": {
"title": "$:/language/Date/DaySuffix/21",
"text": "st"
},
"$:/language/Date/DaySuffix/22": {
"title": "$:/language/Date/DaySuffix/22",
"text": "nd"
},
"$:/language/Date/DaySuffix/23": {
"title": "$:/language/Date/DaySuffix/23",
"text": "rd"
},
"$:/language/Date/DaySuffix/24": {
"title": "$:/language/Date/DaySuffix/24",
"text": "th"
},
"$:/language/Date/DaySuffix/25": {
"title": "$:/language/Date/DaySuffix/25",
"text": "th"
},
"$:/language/Date/DaySuffix/26": {
"title": "$:/language/Date/DaySuffix/26",
"text": "th"
},
"$:/language/Date/DaySuffix/27": {
"title": "$:/language/Date/DaySuffix/27",
"text": "th"
},
"$:/language/Date/DaySuffix/28": {
"title": "$:/language/Date/DaySuffix/28",
"text": "th"
},
"$:/language/Date/DaySuffix/29": {
"title": "$:/language/Date/DaySuffix/29",
"text": "th"
},
"$:/language/Date/DaySuffix/30": {
"title": "$:/language/Date/DaySuffix/30",
"text": "th"
},
"$:/language/Date/DaySuffix/31": {
"title": "$:/language/Date/DaySuffix/31",
"text": "st"
},
"$:/language/Date/Long/Day/0": {
"title": "$:/language/Date/Long/Day/0",
"text": "Sunday"
},
"$:/language/Date/Long/Day/1": {
"title": "$:/language/Date/Long/Day/1",
"text": "Monday"
},
"$:/language/Date/Long/Day/2": {
"title": "$:/language/Date/Long/Day/2",
"text": "Tuesday"
},
"$:/language/Date/Long/Day/3": {
"title": "$:/language/Date/Long/Day/3",
"text": "Wednesday"
},
"$:/language/Date/Long/Day/4": {
"title": "$:/language/Date/Long/Day/4",
"text": "Thursday"
},
"$:/language/Date/Long/Day/5": {
"title": "$:/language/Date/Long/Day/5",
"text": "Friday"
},
"$:/language/Date/Long/Day/6": {
"title": "$:/language/Date/Long/Day/6",
"text": "Saturday"
},
"$:/language/Date/Long/Month/1": {
"title": "$:/language/Date/Long/Month/1",
"text": "January"
},
"$:/language/Date/Long/Month/2": {
"title": "$:/language/Date/Long/Month/2",
"text": "February"
},
"$:/language/Date/Long/Month/3": {
"title": "$:/language/Date/Long/Month/3",
"text": "March"
},
"$:/language/Date/Long/Month/4": {
"title": "$:/language/Date/Long/Month/4",
"text": "April"
},
"$:/language/Date/Long/Month/5": {
"title": "$:/language/Date/Long/Month/5",
"text": "May"
},
"$:/language/Date/Long/Month/6": {
"title": "$:/language/Date/Long/Month/6",
"text": "June"
},
"$:/language/Date/Long/Month/7": {
"title": "$:/language/Date/Long/Month/7",
"text": "July"
},
"$:/language/Date/Long/Month/8": {
"title": "$:/language/Date/Long/Month/8",
"text": "August"
},
"$:/language/Date/Long/Month/9": {
"title": "$:/language/Date/Long/Month/9",
"text": "September"
},
"$:/language/Date/Long/Month/10": {
"title": "$:/language/Date/Long/Month/10",
"text": "October"
},
"$:/language/Date/Long/Month/11": {
"title": "$:/language/Date/Long/Month/11",
"text": "November"
},
"$:/language/Date/Long/Month/12": {
"title": "$:/language/Date/Long/Month/12",
"text": "December"
},
"$:/language/Date/Period/am": {
"title": "$:/language/Date/Period/am",
"text": "am"
},
"$:/language/Date/Period/pm": {
"title": "$:/language/Date/Period/pm",
"text": "pm"
},
"$:/language/Date/Short/Day/0": {
"title": "$:/language/Date/Short/Day/0",
"text": "Sun"
},
"$:/language/Date/Short/Day/1": {
"title": "$:/language/Date/Short/Day/1",
"text": "Mon"
},
"$:/language/Date/Short/Day/2": {
"title": "$:/language/Date/Short/Day/2",
"text": "Tue"
},
"$:/language/Date/Short/Day/3": {
"title": "$:/language/Date/Short/Day/3",
"text": "Wed"
},
"$:/language/Date/Short/Day/4": {
"title": "$:/language/Date/Short/Day/4",
"text": "Thu"
},
"$:/language/Date/Short/Day/5": {
"title": "$:/language/Date/Short/Day/5",
"text": "Fri"
},
"$:/language/Date/Short/Day/6": {
"title": "$:/language/Date/Short/Day/6",
"text": "Sat"
},
"$:/language/Date/Short/Month/1": {
"title": "$:/language/Date/Short/Month/1",
"text": "Jan"
},
"$:/language/Date/Short/Month/2": {
"title": "$:/language/Date/Short/Month/2",
"text": "Feb"
},
"$:/language/Date/Short/Month/3": {
"title": "$:/language/Date/Short/Month/3",
"text": "Mar"
},
"$:/language/Date/Short/Month/4": {
"title": "$:/language/Date/Short/Month/4",
"text": "Apr"
},
"$:/language/Date/Short/Month/5": {
"title": "$:/language/Date/Short/Month/5",
"text": "May"
},
"$:/language/Date/Short/Month/6": {
"title": "$:/language/Date/Short/Month/6",
"text": "Jun"
},
"$:/language/Date/Short/Month/7": {
"title": "$:/language/Date/Short/Month/7",
"text": "Jul"
},
"$:/language/Date/Short/Month/8": {
"title": "$:/language/Date/Short/Month/8",
"text": "Aug"
},
"$:/language/Date/Short/Month/9": {
"title": "$:/language/Date/Short/Month/9",
"text": "Sep"
},
"$:/language/Date/Short/Month/10": {
"title": "$:/language/Date/Short/Month/10",
"text": "Oct"
},
"$:/language/Date/Short/Month/11": {
"title": "$:/language/Date/Short/Month/11",
"text": "Nov"
},
"$:/language/Date/Short/Month/12": {
"title": "$:/language/Date/Short/Month/12",
"text": "Dec"
},
"$:/language/RelativeDate/Future/Days": {
"title": "$:/language/RelativeDate/Future/Days",
"text": "<<period>> days from now"
},
"$:/language/RelativeDate/Future/Hours": {
"title": "$:/language/RelativeDate/Future/Hours",
"text": "<<period>> hours from now"
},
"$:/language/RelativeDate/Future/Minutes": {
"title": "$:/language/RelativeDate/Future/Minutes",
"text": "<<period>> minutes from now"
},
"$:/language/RelativeDate/Future/Months": {
"title": "$:/language/RelativeDate/Future/Months",
"text": "<<period>> months from now"
},
"$:/language/RelativeDate/Future/Second": {
"title": "$:/language/RelativeDate/Future/Second",
"text": "1 second from now"
},
"$:/language/RelativeDate/Future/Seconds": {
"title": "$:/language/RelativeDate/Future/Seconds",
"text": "<<period>> seconds from now"
},
"$:/language/RelativeDate/Future/Years": {
"title": "$:/language/RelativeDate/Future/Years",
"text": "<<period>> years from now"
},
"$:/language/RelativeDate/Past/Days": {
"title": "$:/language/RelativeDate/Past/Days",
"text": "<<period>> days ago"
},
"$:/language/RelativeDate/Past/Hours": {
"title": "$:/language/RelativeDate/Past/Hours",
"text": "<<period>> hours ago"
},
"$:/language/RelativeDate/Past/Minutes": {
"title": "$:/language/RelativeDate/Past/Minutes",
"text": "<<period>> minutes ago"
},
"$:/language/RelativeDate/Past/Months": {
"title": "$:/language/RelativeDate/Past/Months",
"text": "<<period>> months ago"
},
"$:/language/RelativeDate/Past/Second": {
"title": "$:/language/RelativeDate/Past/Second",
"text": "1 second ago"
},
"$:/language/RelativeDate/Past/Seconds": {
"title": "$:/language/RelativeDate/Past/Seconds",
"text": "<<period>> seconds ago"
},
"$:/language/RelativeDate/Past/Years": {
"title": "$:/language/RelativeDate/Past/Years",
"text": "<<period>> years ago"
},
"$:/language/Docs/ModuleTypes/allfilteroperator": {
"title": "$:/language/Docs/ModuleTypes/allfilteroperator",
"text": "A sub-operator for the ''all'' filter operator."
},
"$:/language/Docs/ModuleTypes/animation": {
"title": "$:/language/Docs/ModuleTypes/animation",
"text": "Animations that may be used with the RevealWidget."
},
"$:/language/Docs/ModuleTypes/authenticator": {
"title": "$:/language/Docs/ModuleTypes/authenticator",
"text": "Defines how requests are authenticated by the built-in HTTP server."
},
"$:/language/Docs/ModuleTypes/bitmapeditoroperation": {
"title": "$:/language/Docs/ModuleTypes/bitmapeditoroperation",
"text": "A bitmap editor toolbar operation."
},
"$:/language/Docs/ModuleTypes/command": {
"title": "$:/language/Docs/ModuleTypes/command",
"text": "Commands that can be executed under Node.js."
},
"$:/language/Docs/ModuleTypes/config": {
"title": "$:/language/Docs/ModuleTypes/config",
"text": "Data to be inserted into `$tw.config`."
},
"$:/language/Docs/ModuleTypes/filteroperator": {
"title": "$:/language/Docs/ModuleTypes/filteroperator",
"text": "Individual filter operator methods."
},
"$:/language/Docs/ModuleTypes/global": {
"title": "$:/language/Docs/ModuleTypes/global",
"text": "Global data to be inserted into `$tw`."
},
"$:/language/Docs/ModuleTypes/info": {
"title": "$:/language/Docs/ModuleTypes/info",
"text": "Publishes system information via the [[$:/temp/info-plugin]] pseudo-plugin."
},
"$:/language/Docs/ModuleTypes/isfilteroperator": {
"title": "$:/language/Docs/ModuleTypes/isfilteroperator",
"text": "Operands for the ''is'' filter operator."
},
"$:/language/Docs/ModuleTypes/library": {
"title": "$:/language/Docs/ModuleTypes/library",
"text": "Generic module type for general purpose JavaScript modules."
},
"$:/language/Docs/ModuleTypes/macro": {
"title": "$:/language/Docs/ModuleTypes/macro",
"text": "JavaScript macro definitions."
},
"$:/language/Docs/ModuleTypes/parser": {
"title": "$:/language/Docs/ModuleTypes/parser",
"text": "Parsers for different content types."
},
"$:/language/Docs/ModuleTypes/route": {
"title": "$:/language/Docs/ModuleTypes/route",
"text": "Defines how individual URL patterns are handled by the built-in HTTP server."
},
"$:/language/Docs/ModuleTypes/saver": {
"title": "$:/language/Docs/ModuleTypes/saver",
"text": "Savers handle different methods for saving files from the browser."
},
"$:/language/Docs/ModuleTypes/startup": {
"title": "$:/language/Docs/ModuleTypes/startup",
"text": "Startup functions."
},
"$:/language/Docs/ModuleTypes/storyview": {
"title": "$:/language/Docs/ModuleTypes/storyview",
"text": "Story views customise the animation and behaviour of list widgets."
},
"$:/language/Docs/ModuleTypes/texteditoroperation": {
"title": "$:/language/Docs/ModuleTypes/texteditoroperation",
"text": "A text editor toolbar operation."
},
"$:/language/Docs/ModuleTypes/tiddlerdeserializer": {
"title": "$:/language/Docs/ModuleTypes/tiddlerdeserializer",
"text": "Converts different content types into tiddlers."
},
"$:/language/Docs/ModuleTypes/tiddlerfield": {
"title": "$:/language/Docs/ModuleTypes/tiddlerfield",
"text": "Defines the behaviour of an individual tiddler field."
},
"$:/language/Docs/ModuleTypes/tiddlermethod": {
"title": "$:/language/Docs/ModuleTypes/tiddlermethod",
"text": "Adds methods to the `$tw.Tiddler` prototype."
},
"$:/language/Docs/ModuleTypes/upgrader": {
"title": "$:/language/Docs/ModuleTypes/upgrader",
"text": "Applies upgrade processing to tiddlers during an upgrade/import."
},
"$:/language/Docs/ModuleTypes/utils": {
"title": "$:/language/Docs/ModuleTypes/utils",
"text": "Adds methods to `$tw.utils`."
},
"$:/language/Docs/ModuleTypes/utils-node": {
"title": "$:/language/Docs/ModuleTypes/utils-node",
"text": "Adds Node.js-specific methods to `$tw.utils`."
},
"$:/language/Docs/ModuleTypes/widget": {
"title": "$:/language/Docs/ModuleTypes/widget",
"text": "Widgets encapsulate DOM rendering and refreshing."
},
"$:/language/Docs/ModuleTypes/wikimethod": {
"title": "$:/language/Docs/ModuleTypes/wikimethod",
"text": "Adds methods to `$tw.Wiki`."
},
"$:/language/Docs/ModuleTypes/wikirule": {
"title": "$:/language/Docs/ModuleTypes/wikirule",
"text": "Individual parser rules for the main WikiText parser."
},
"$:/language/Docs/PaletteColours/alert-background": {
"title": "$:/language/Docs/PaletteColours/alert-background",
"text": "Alert background"
},
"$:/language/Docs/PaletteColours/alert-border": {
"title": "$:/language/Docs/PaletteColours/alert-border",
"text": "Alert border"
},
"$:/language/Docs/PaletteColours/alert-highlight": {
"title": "$:/language/Docs/PaletteColours/alert-highlight",
"text": "Alert highlight"
},
"$:/language/Docs/PaletteColours/alert-muted-foreground": {
"title": "$:/language/Docs/PaletteColours/alert-muted-foreground",
"text": "Alert muted foreground"
},
"$:/language/Docs/PaletteColours/background": {
"title": "$:/language/Docs/PaletteColours/background",
"text": "General background"
},
"$:/language/Docs/PaletteColours/blockquote-bar": {
"title": "$:/language/Docs/PaletteColours/blockquote-bar",
"text": "Blockquote bar"
},
"$:/language/Docs/PaletteColours/button-background": {
"title": "$:/language/Docs/PaletteColours/button-background",
"text": "Default button background"
},
"$:/language/Docs/PaletteColours/button-border": {
"title": "$:/language/Docs/PaletteColours/button-border",
"text": "Default button border"
},
"$:/language/Docs/PaletteColours/button-foreground": {
"title": "$:/language/Docs/PaletteColours/button-foreground",
"text": "Default button foreground"
},
"$:/language/Docs/PaletteColours/dirty-indicator": {
"title": "$:/language/Docs/PaletteColours/dirty-indicator",
"text": "Unsaved changes indicator"
},
"$:/language/Docs/PaletteColours/code-background": {
"title": "$:/language/Docs/PaletteColours/code-background",
"text": "Code background"
},
"$:/language/Docs/PaletteColours/code-border": {
"title": "$:/language/Docs/PaletteColours/code-border",
"text": "Code border"
},
"$:/language/Docs/PaletteColours/code-foreground": {
"title": "$:/language/Docs/PaletteColours/code-foreground",
"text": "Code foreground"
},
"$:/language/Docs/PaletteColours/download-background": {
"title": "$:/language/Docs/PaletteColours/download-background",
"text": "Download button background"
},
"$:/language/Docs/PaletteColours/download-foreground": {
"title": "$:/language/Docs/PaletteColours/download-foreground",
"text": "Download button foreground"
},
"$:/language/Docs/PaletteColours/dragger-background": {
"title": "$:/language/Docs/PaletteColours/dragger-background",
"text": "Dragger background"
},
"$:/language/Docs/PaletteColours/dragger-foreground": {
"title": "$:/language/Docs/PaletteColours/dragger-foreground",
"text": "Dragger foreground"
},
"$:/language/Docs/PaletteColours/dropdown-background": {
"title": "$:/language/Docs/PaletteColours/dropdown-background",
"text": "Dropdown background"
},
"$:/language/Docs/PaletteColours/dropdown-border": {
"title": "$:/language/Docs/PaletteColours/dropdown-border",
"text": "Dropdown border"
},
"$:/language/Docs/PaletteColours/dropdown-tab-background-selected": {
"title": "$:/language/Docs/PaletteColours/dropdown-tab-background-selected",
"text": "Dropdown tab background for selected tabs"
},
"$:/language/Docs/PaletteColours/dropdown-tab-background": {
"title": "$:/language/Docs/PaletteColours/dropdown-tab-background",
"text": "Dropdown tab background"
},
"$:/language/Docs/PaletteColours/dropzone-background": {
"title": "$:/language/Docs/PaletteColours/dropzone-background",
"text": "Dropzone background"
},
"$:/language/Docs/PaletteColours/external-link-background-hover": {
"title": "$:/language/Docs/PaletteColours/external-link-background-hover",
"text": "External link background hover"
},
"$:/language/Docs/PaletteColours/external-link-background-visited": {
"title": "$:/language/Docs/PaletteColours/external-link-background-visited",
"text": "External link background visited"
},
"$:/language/Docs/PaletteColours/external-link-background": {
"title": "$:/language/Docs/PaletteColours/external-link-background",
"text": "External link background"
},
"$:/language/Docs/PaletteColours/external-link-foreground-hover": {
"title": "$:/language/Docs/PaletteColours/external-link-foreground-hover",
"text": "External link foreground hover"
},
"$:/language/Docs/PaletteColours/external-link-foreground-visited": {
"title": "$:/language/Docs/PaletteColours/external-link-foreground-visited",
"text": "External link foreground visited"
},
"$:/language/Docs/PaletteColours/external-link-foreground": {
"title": "$:/language/Docs/PaletteColours/external-link-foreground",
"text": "External link foreground"
},
"$:/language/Docs/PaletteColours/foreground": {
"title": "$:/language/Docs/PaletteColours/foreground",
"text": "General foreground"
},
"$:/language/Docs/PaletteColours/message-background": {
"title": "$:/language/Docs/PaletteColours/message-background",
"text": "Message box background"
},
"$:/language/Docs/PaletteColours/message-border": {
"title": "$:/language/Docs/PaletteColours/message-border",
"text": "Message box border"
},
"$:/language/Docs/PaletteColours/message-foreground": {
"title": "$:/language/Docs/PaletteColours/message-foreground",
"text": "Message box foreground"
},
"$:/language/Docs/PaletteColours/modal-backdrop": {
"title": "$:/language/Docs/PaletteColours/modal-backdrop",
"text": "Modal backdrop"
},
"$:/language/Docs/PaletteColours/modal-background": {
"title": "$:/language/Docs/PaletteColours/modal-background",
"text": "Modal background"
},
"$:/language/Docs/PaletteColours/modal-border": {
"title": "$:/language/Docs/PaletteColours/modal-border",
"text": "Modal border"
},
"$:/language/Docs/PaletteColours/modal-footer-background": {
"title": "$:/language/Docs/PaletteColours/modal-footer-background",
"text": "Modal footer background"
},
"$:/language/Docs/PaletteColours/modal-footer-border": {
"title": "$:/language/Docs/PaletteColours/modal-footer-border",
"text": "Modal footer border"
},
"$:/language/Docs/PaletteColours/modal-header-border": {
"title": "$:/language/Docs/PaletteColours/modal-header-border",
"text": "Modal header border"
},
"$:/language/Docs/PaletteColours/muted-foreground": {
"title": "$:/language/Docs/PaletteColours/muted-foreground",
"text": "General muted foreground"
},
"$:/language/Docs/PaletteColours/notification-background": {
"title": "$:/language/Docs/PaletteColours/notification-background",
"text": "Notification background"
},
"$:/language/Docs/PaletteColours/notification-border": {
"title": "$:/language/Docs/PaletteColours/notification-border",
"text": "Notification border"
},
"$:/language/Docs/PaletteColours/page-background": {
"title": "$:/language/Docs/PaletteColours/page-background",
"text": "Page background"
},
"$:/language/Docs/PaletteColours/pre-background": {
"title": "$:/language/Docs/PaletteColours/pre-background",
"text": "Preformatted code background"
},
"$:/language/Docs/PaletteColours/pre-border": {
"title": "$:/language/Docs/PaletteColours/pre-border",
"text": "Preformatted code border"
},
"$:/language/Docs/PaletteColours/primary": {
"title": "$:/language/Docs/PaletteColours/primary",
"text": "General primary"
},
"$:/language/Docs/PaletteColours/select-tag-background": {
"title": "$:/language/Docs/PaletteColours/select-tag-background",
"text": "`<select>` element background"
},
"$:/language/Docs/PaletteColours/select-tag-foreground": {
"title": "$:/language/Docs/PaletteColours/select-tag-foreground",
"text": "`<select>` element text"
},
"$:/language/Docs/PaletteColours/sidebar-button-foreground": {
"title": "$:/language/Docs/PaletteColours/sidebar-button-foreground",
"text": "Sidebar button foreground"
},
"$:/language/Docs/PaletteColours/sidebar-controls-foreground-hover": {
"title": "$:/language/Docs/PaletteColours/sidebar-controls-foreground-hover",
"text": "Sidebar controls foreground hover"
},
"$:/language/Docs/PaletteColours/sidebar-controls-foreground": {
"title": "$:/language/Docs/PaletteColours/sidebar-controls-foreground",
"text": "Sidebar controls foreground"
},
"$:/language/Docs/PaletteColours/sidebar-foreground-shadow": {
"title": "$:/language/Docs/PaletteColours/sidebar-foreground-shadow",
"text": "Sidebar foreground shadow"
},
"$:/language/Docs/PaletteColours/sidebar-foreground": {
"title": "$:/language/Docs/PaletteColours/sidebar-foreground",
"text": "Sidebar foreground"
},
"$:/language/Docs/PaletteColours/sidebar-muted-foreground-hover": {
"title": "$:/language/Docs/PaletteColours/sidebar-muted-foreground-hover",
"text": "Sidebar muted foreground hover"
},
"$:/language/Docs/PaletteColours/sidebar-muted-foreground": {
"title": "$:/language/Docs/PaletteColours/sidebar-muted-foreground",
"text": "Sidebar muted foreground"
},
"$:/language/Docs/PaletteColours/sidebar-tab-background-selected": {
"title": "$:/language/Docs/PaletteColours/sidebar-tab-background-selected",
"text": "Sidebar tab background for selected tabs"
},
"$:/language/Docs/PaletteColours/sidebar-tab-background": {
"title": "$:/language/Docs/PaletteColours/sidebar-tab-background",
"text": "Sidebar tab background"
},
"$:/language/Docs/PaletteColours/sidebar-tab-border-selected": {
"title": "$:/language/Docs/PaletteColours/sidebar-tab-border-selected",
"text": "Sidebar tab border for selected tabs"
},
"$:/language/Docs/PaletteColours/sidebar-tab-border": {
"title": "$:/language/Docs/PaletteColours/sidebar-tab-border",
"text": "Sidebar tab border"
},
"$:/language/Docs/PaletteColours/sidebar-tab-divider": {
"title": "$:/language/Docs/PaletteColours/sidebar-tab-divider",
"text": "Sidebar tab divider"
},
"$:/language/Docs/PaletteColours/sidebar-tab-foreground-selected": {
"title": "$:/language/Docs/PaletteColours/sidebar-tab-foreground-selected",
"text": "Sidebar tab foreground for selected tabs"
},
"$:/language/Docs/PaletteColours/sidebar-tab-foreground": {
"title": "$:/language/Docs/PaletteColours/sidebar-tab-foreground",
"text": "Sidebar tab foreground"
},
"$:/language/Docs/PaletteColours/sidebar-tiddler-link-foreground-hover": {
"title": "$:/language/Docs/PaletteColours/sidebar-tiddler-link-foreground-hover",
"text": "Sidebar tiddler link foreground hover"
},
"$:/language/Docs/PaletteColours/sidebar-tiddler-link-foreground": {
"title": "$:/language/Docs/PaletteColours/sidebar-tiddler-link-foreground",
"text": "Sidebar tiddler link foreground"
},
"$:/language/Docs/PaletteColours/site-title-foreground": {
"title": "$:/language/Docs/PaletteColours/site-title-foreground",
"text": "Site title foreground"
},
"$:/language/Docs/PaletteColours/static-alert-foreground": {
"title": "$:/language/Docs/PaletteColours/static-alert-foreground",
"text": "Static alert foreground"
},
"$:/language/Docs/PaletteColours/tab-background-selected": {
"title": "$:/language/Docs/PaletteColours/tab-background-selected",
"text": "Tab background for selected tabs"
},
"$:/language/Docs/PaletteColours/tab-background": {
"title": "$:/language/Docs/PaletteColours/tab-background",
"text": "Tab background"
},
"$:/language/Docs/PaletteColours/tab-border-selected": {
"title": "$:/language/Docs/PaletteColours/tab-border-selected",
"text": "Tab border for selected tabs"
},
"$:/language/Docs/PaletteColours/tab-border": {
"title": "$:/language/Docs/PaletteColours/tab-border",
"text": "Tab border"
},
"$:/language/Docs/PaletteColours/tab-divider": {
"title": "$:/language/Docs/PaletteColours/tab-divider",
"text": "Tab divider"
},
"$:/language/Docs/PaletteColours/tab-foreground-selected": {
"title": "$:/language/Docs/PaletteColours/tab-foreground-selected",
"text": "Tab foreground for selected tabs"
},
"$:/language/Docs/PaletteColours/tab-foreground": {
"title": "$:/language/Docs/PaletteColours/tab-foreground",
"text": "Tab foreground"
},
"$:/language/Docs/PaletteColours/table-border": {
"title": "$:/language/Docs/PaletteColours/table-border",
"text": "Table border"
},
"$:/language/Docs/PaletteColours/table-footer-background": {
"title": "$:/language/Docs/PaletteColours/table-footer-background",
"text": "Table footer background"
},
"$:/language/Docs/PaletteColours/table-header-background": {
"title": "$:/language/Docs/PaletteColours/table-header-background",
"text": "Table header background"
},
"$:/language/Docs/PaletteColours/tag-background": {
"title": "$:/language/Docs/PaletteColours/tag-background",
"text": "Tag background"
},
"$:/language/Docs/PaletteColours/tag-foreground": {
"title": "$:/language/Docs/PaletteColours/tag-foreground",
"text": "Tag foreground"
},
"$:/language/Docs/PaletteColours/tiddler-background": {
"title": "$:/language/Docs/PaletteColours/tiddler-background",
"text": "Tiddler background"
},
"$:/language/Docs/PaletteColours/tiddler-border": {
"title": "$:/language/Docs/PaletteColours/tiddler-border",
"text": "Tiddler border"
},
"$:/language/Docs/PaletteColours/tiddler-controls-foreground-hover": {
"title": "$:/language/Docs/PaletteColours/tiddler-controls-foreground-hover",
"text": "Tiddler controls foreground hover"
},
"$:/language/Docs/PaletteColours/tiddler-controls-foreground-selected": {
"title": "$:/language/Docs/PaletteColours/tiddler-controls-foreground-selected",
"text": "Tiddler controls foreground for selected controls"
},
"$:/language/Docs/PaletteColours/tiddler-controls-foreground": {
"title": "$:/language/Docs/PaletteColours/tiddler-controls-foreground",
"text": "Tiddler controls foreground"
},
"$:/language/Docs/PaletteColours/tiddler-editor-background": {
"title": "$:/language/Docs/PaletteColours/tiddler-editor-background",
"text": "Tiddler editor background"
},
"$:/language/Docs/PaletteColours/tiddler-editor-border-image": {
"title": "$:/language/Docs/PaletteColours/tiddler-editor-border-image",
"text": "Tiddler editor border image"
},
"$:/language/Docs/PaletteColours/tiddler-editor-border": {
"title": "$:/language/Docs/PaletteColours/tiddler-editor-border",
"text": "Tiddler editor border"
},
"$:/language/Docs/PaletteColours/tiddler-editor-fields-even": {
"title": "$:/language/Docs/PaletteColours/tiddler-editor-fields-even",
"text": "Tiddler editor background for even fields"
},
"$:/language/Docs/PaletteColours/tiddler-editor-fields-odd": {
"title": "$:/language/Docs/PaletteColours/tiddler-editor-fields-odd",
"text": "Tiddler editor background for odd fields"
},
"$:/language/Docs/PaletteColours/tiddler-info-background": {
"title": "$:/language/Docs/PaletteColours/tiddler-info-background",
"text": "Tiddler info panel background"
},
"$:/language/Docs/PaletteColours/tiddler-info-border": {
"title": "$:/language/Docs/PaletteColours/tiddler-info-border",
"text": "Tiddler info panel border"
},
"$:/language/Docs/PaletteColours/tiddler-info-tab-background": {
"title": "$:/language/Docs/PaletteColours/tiddler-info-tab-background",
"text": "Tiddler info panel tab background"
},
"$:/language/Docs/PaletteColours/tiddler-link-background": {
"title": "$:/language/Docs/PaletteColours/tiddler-link-background",
"text": "Tiddler link background"
},
"$:/language/Docs/PaletteColours/tiddler-link-foreground": {
"title": "$:/language/Docs/PaletteColours/tiddler-link-foreground",
"text": "Tiddler link foreground"
},
"$:/language/Docs/PaletteColours/tiddler-subtitle-foreground": {
"title": "$:/language/Docs/PaletteColours/tiddler-subtitle-foreground",
"text": "Tiddler subtitle foreground"
},
"$:/language/Docs/PaletteColours/tiddler-title-foreground": {
"title": "$:/language/Docs/PaletteColours/tiddler-title-foreground",
"text": "Tiddler title foreground"
},
"$:/language/Docs/PaletteColours/toolbar-new-button": {
"title": "$:/language/Docs/PaletteColours/toolbar-new-button",
"text": "Toolbar 'new tiddler' button foreground"
},
"$:/language/Docs/PaletteColours/toolbar-options-button": {
"title": "$:/language/Docs/PaletteColours/toolbar-options-button",
"text": "Toolbar 'options' button foreground"
},
"$:/language/Docs/PaletteColours/toolbar-save-button": {
"title": "$:/language/Docs/PaletteColours/toolbar-save-button",
"text": "Toolbar 'save' button foreground"
},
"$:/language/Docs/PaletteColours/toolbar-info-button": {
"title": "$:/language/Docs/PaletteColours/toolbar-info-button",
"text": "Toolbar 'info' button foreground"
},
"$:/language/Docs/PaletteColours/toolbar-edit-button": {
"title": "$:/language/Docs/PaletteColours/toolbar-edit-button",
"text": "Toolbar 'edit' button foreground"
},
"$:/language/Docs/PaletteColours/toolbar-close-button": {
"title": "$:/language/Docs/PaletteColours/toolbar-close-button",
"text": "Toolbar 'close' button foreground"
},
"$:/language/Docs/PaletteColours/toolbar-delete-button": {
"title": "$:/language/Docs/PaletteColours/toolbar-delete-button",
"text": "Toolbar 'delete' button foreground"
},
"$:/language/Docs/PaletteColours/toolbar-cancel-button": {
"title": "$:/language/Docs/PaletteColours/toolbar-cancel-button",
"text": "Toolbar 'cancel' button foreground"
},
"$:/language/Docs/PaletteColours/toolbar-done-button": {
"title": "$:/language/Docs/PaletteColours/toolbar-done-button",
"text": "Toolbar 'done' button foreground"
},
"$:/language/Docs/PaletteColours/untagged-background": {
"title": "$:/language/Docs/PaletteColours/untagged-background",
"text": "Untagged pill background"
},
"$:/language/Docs/PaletteColours/very-muted-foreground": {
"title": "$:/language/Docs/PaletteColours/very-muted-foreground",
"text": "Very muted foreground"
},
"$:/language/EditTemplate/Body/External/Hint": {
"title": "$:/language/EditTemplate/Body/External/Hint",
"text": "This tiddler shows content stored outside of the main TiddlyWiki file. You can edit the tags and fields but cannot directly edit the content itself"
},
"$:/language/EditTemplate/Body/Placeholder": {
"title": "$:/language/EditTemplate/Body/Placeholder",
"text": "Type the text for this tiddler"
},
"$:/language/EditTemplate/Body/Preview/Type/Output": {
"title": "$:/language/EditTemplate/Body/Preview/Type/Output",
"text": "output"
},
"$:/language/EditTemplate/Field/Remove/Caption": {
"title": "$:/language/EditTemplate/Field/Remove/Caption",
"text": "remove field"
},
"$:/language/EditTemplate/Field/Remove/Hint": {
"title": "$:/language/EditTemplate/Field/Remove/Hint",
"text": "Remove field"
},
"$:/language/EditTemplate/Field/Dropdown/Caption": {
"title": "$:/language/EditTemplate/Field/Dropdown/Caption",
"text": "field list"
},
"$:/language/EditTemplate/Field/Dropdown/Hint": {
"title": "$:/language/EditTemplate/Field/Dropdown/Hint",
"text": "Show field list"
},
"$:/language/EditTemplate/Fields/Add/Button": {
"title": "$:/language/EditTemplate/Fields/Add/Button",
"text": "add"
},
"$:/language/EditTemplate/Fields/Add/Name/Placeholder": {
"title": "$:/language/EditTemplate/Fields/Add/Name/Placeholder",
"text": "field name"
},
"$:/language/EditTemplate/Fields/Add/Prompt": {
"title": "$:/language/EditTemplate/Fields/Add/Prompt",
"text": "Add a new field:"
},
"$:/language/EditTemplate/Fields/Add/Value/Placeholder": {
"title": "$:/language/EditTemplate/Fields/Add/Value/Placeholder",
"text": "field value"
},
"$:/language/EditTemplate/Fields/Add/Dropdown/System": {
"title": "$:/language/EditTemplate/Fields/Add/Dropdown/System",
"text": "System fields"
},
"$:/language/EditTemplate/Fields/Add/Dropdown/User": {
"title": "$:/language/EditTemplate/Fields/Add/Dropdown/User",
"text": "User fields"
},
"$:/language/EditTemplate/Shadow/Warning": {
"title": "$:/language/EditTemplate/Shadow/Warning",
"text": "This is a shadow tiddler. Any changes you make will override the default version from the plugin <<pluginLink>>"
},
"$:/language/EditTemplate/Shadow/OverriddenWarning": {
"title": "$:/language/EditTemplate/Shadow/OverriddenWarning",
"text": "This is a modified shadow tiddler. You can revert to the default version in the plugin <<pluginLink>> by deleting this tiddler"
},
"$:/language/EditTemplate/Tags/Add/Button": {
"title": "$:/language/EditTemplate/Tags/Add/Button",
"text": "add"
},
"$:/language/EditTemplate/Tags/Add/Placeholder": {
"title": "$:/language/EditTemplate/Tags/Add/Placeholder",
"text": "tag name"
},
"$:/language/EditTemplate/Tags/Dropdown/Caption": {
"title": "$:/language/EditTemplate/Tags/Dropdown/Caption",
"text": "tag list"
},
"$:/language/EditTemplate/Tags/Dropdown/Hint": {
"title": "$:/language/EditTemplate/Tags/Dropdown/Hint",
"text": "Show tag list"
},
"$:/language/EditTemplate/Title/BadCharacterWarning": {
"title": "$:/language/EditTemplate/Title/BadCharacterWarning",
"text": "Warning: avoid using any of the characters <<bad-chars>> in tiddler titles"
},
"$:/language/EditTemplate/Title/Exists/Prompt": {
"title": "$:/language/EditTemplate/Title/Exists/Prompt",
"text": "Target tiddler already exists"
},
"$:/language/EditTemplate/Title/Relink/Prompt": {
"title": "$:/language/EditTemplate/Title/Relink/Prompt",
"text": "Update ''<$text text=<<fromTitle>>/>'' to ''<$text text=<<toTitle>>/>'' in the //tags// and //list// fields of other tiddlers"
},
"$:/language/EditTemplate/Title/References/Prompt": {
"title": "$:/language/EditTemplate/Title/References/Prompt",
"text": "The following references to this tiddler will not be automatically updated:"
},
"$:/language/EditTemplate/Type/Dropdown/Caption": {
"title": "$:/language/EditTemplate/Type/Dropdown/Caption",
"text": "content type list"
},
"$:/language/EditTemplate/Type/Dropdown/Hint": {
"title": "$:/language/EditTemplate/Type/Dropdown/Hint",
"text": "Show content type list"
},
"$:/language/EditTemplate/Type/Delete/Caption": {
"title": "$:/language/EditTemplate/Type/Delete/Caption",
"text": "delete content type"
},
"$:/language/EditTemplate/Type/Delete/Hint": {
"title": "$:/language/EditTemplate/Type/Delete/Hint",
"text": "Delete content type"
},
"$:/language/EditTemplate/Type/Placeholder": {
"title": "$:/language/EditTemplate/Type/Placeholder",
"text": "content type"
},
"$:/language/EditTemplate/Type/Prompt": {
"title": "$:/language/EditTemplate/Type/Prompt",
"text": "Type:"
},
"$:/language/Exporters/StaticRiver": {
"title": "$:/language/Exporters/StaticRiver",
"text": "Static HTML"
},
"$:/language/Exporters/JsonFile": {
"title": "$:/language/Exporters/JsonFile",
"text": "JSON file"
},
"$:/language/Exporters/CsvFile": {
"title": "$:/language/Exporters/CsvFile",
"text": "CSV file"
},
"$:/language/Exporters/TidFile": {
"title": "$:/language/Exporters/TidFile",
"text": "\".tid\" file"
},
"$:/language/Docs/Fields/_canonical_uri": {
"title": "$:/language/Docs/Fields/_canonical_uri",
"text": "The full URI of an external image tiddler"
},
"$:/language/Docs/Fields/bag": {
"title": "$:/language/Docs/Fields/bag",
"text": "The name of the bag from which a tiddler came"
},
"$:/language/Docs/Fields/caption": {
"title": "$:/language/Docs/Fields/caption",
"text": "The text to be displayed on a tab or button"
},
"$:/language/Docs/Fields/color": {
"title": "$:/language/Docs/Fields/color",
"text": "The CSS color value associated with a tiddler"
},
"$:/language/Docs/Fields/component": {
"title": "$:/language/Docs/Fields/component",
"text": "The name of the component responsible for an [[alert tiddler|AlertMechanism]]"
},
"$:/language/Docs/Fields/current-tiddler": {
"title": "$:/language/Docs/Fields/current-tiddler",
"text": "Used to cache the top tiddler in a [[history list|HistoryMechanism]]"
},
"$:/language/Docs/Fields/created": {
"title": "$:/language/Docs/Fields/created",
"text": "The date a tiddler was created"
},
"$:/language/Docs/Fields/creator": {
"title": "$:/language/Docs/Fields/creator",
"text": "The name of the person who created a tiddler"
},
"$:/language/Docs/Fields/dependents": {
"title": "$:/language/Docs/Fields/dependents",
"text": "For a plugin, lists the dependent plugin titles"
},
"$:/language/Docs/Fields/description": {
"title": "$:/language/Docs/Fields/description",
"text": "The descriptive text for a plugin, or a modal dialogue"
},
"$:/language/Docs/Fields/draft.of": {
"title": "$:/language/Docs/Fields/draft.of",
"text": "For draft tiddlers, contains the title of the tiddler of which this is a draft"
},
"$:/language/Docs/Fields/draft.title": {
"title": "$:/language/Docs/Fields/draft.title",
"text": "For draft tiddlers, contains the proposed new title of the tiddler"
},
"$:/language/Docs/Fields/footer": {
"title": "$:/language/Docs/Fields/footer",
"text": "The footer text for a wizard"
},
"$:/language/Docs/Fields/hack-to-give-us-something-to-compare-against": {
"title": "$:/language/Docs/Fields/hack-to-give-us-something-to-compare-against",
"text": "A temporary storage field used in [[$:/core/templates/static.content]]"
},
"$:/language/Docs/Fields/hide-body": {
"title": "$:/language/Docs/Fields/hide-body",
"text": "The view template will hide bodies of tiddlers if set to: ''yes''"
},
"$:/language/Docs/Fields/icon": {
"title": "$:/language/Docs/Fields/icon",
"text": "The title of the tiddler containing the icon associated with a tiddler"
},
"$:/language/Docs/Fields/library": {
"title": "$:/language/Docs/Fields/library",
"text": "Indicates that a tiddler should be saved as a JavaScript library if set to: ''yes''"
},
"$:/language/Docs/Fields/list": {
"title": "$:/language/Docs/Fields/list",
"text": "An ordered list of tiddler titles associated with a tiddler"
},
"$:/language/Docs/Fields/list-before": {
"title": "$:/language/Docs/Fields/list-before",
"text": "If set, the title of a tiddler before which this tiddler should be added to the ordered list of tiddler titles, or at the start of the list if this field is present but empty"
},
"$:/language/Docs/Fields/list-after": {
"title": "$:/language/Docs/Fields/list-after",
"text": "If set, the title of the tiddler after which this tiddler should be added to the ordered list of tiddler titles, or at the end of the list if this field is present but empty"
},
"$:/language/Docs/Fields/modified": {
"title": "$:/language/Docs/Fields/modified",
"text": "The date and time at which a tiddler was last modified"
},
"$:/language/Docs/Fields/modifier": {
"title": "$:/language/Docs/Fields/modifier",
"text": "The tiddler title associated with the person who last modified a tiddler"
},
"$:/language/Docs/Fields/name": {
"title": "$:/language/Docs/Fields/name",
"text": "The human readable name associated with a plugin tiddler"
},
"$:/language/Docs/Fields/plugin-priority": {
"title": "$:/language/Docs/Fields/plugin-priority",
"text": "A numerical value indicating the priority of a plugin tiddler"
},
"$:/language/Docs/Fields/plugin-type": {
"title": "$:/language/Docs/Fields/plugin-type",
"text": "The type of plugin in a plugin tiddler"
},
"$:/language/Docs/Fields/revision": {
"title": "$:/language/Docs/Fields/revision",
"text": "The revision of the tiddler held at the server"
},
"$:/language/Docs/Fields/released": {
"title": "$:/language/Docs/Fields/released",
"text": "Date of a TiddlyWiki release"
},
"$:/language/Docs/Fields/source": {
"title": "$:/language/Docs/Fields/source",
"text": "The source URL associated with a tiddler"
},
"$:/language/Docs/Fields/subtitle": {
"title": "$:/language/Docs/Fields/subtitle",
"text": "The subtitle text for a wizard"
},
"$:/language/Docs/Fields/tags": {
"title": "$:/language/Docs/Fields/tags",
"text": "A list of tags associated with a tiddler"
},
"$:/language/Docs/Fields/text": {
"title": "$:/language/Docs/Fields/text",
"text": "The body text of a tiddler"
},
"$:/language/Docs/Fields/title": {
"title": "$:/language/Docs/Fields/title",
"text": "The unique name of a tiddler"
},
"$:/language/Docs/Fields/toc-link": {
"title": "$:/language/Docs/Fields/toc-link",
"text": "Suppresses the tiddler's link in a Table of Contents tree if set to: ''no''"
},
"$:/language/Docs/Fields/type": {
"title": "$:/language/Docs/Fields/type",
"text": "The content type of a tiddler"
},
"$:/language/Docs/Fields/version": {
"title": "$:/language/Docs/Fields/version",
"text": "Version information for a plugin"
},
"$:/language/Filters/AllTiddlers": {
"title": "$:/language/Filters/AllTiddlers",
"text": "All tiddlers except system tiddlers"
},
"$:/language/Filters/RecentSystemTiddlers": {
"title": "$:/language/Filters/RecentSystemTiddlers",
"text": "Recently modified tiddlers, including system tiddlers"
},
"$:/language/Filters/RecentTiddlers": {
"title": "$:/language/Filters/RecentTiddlers",
"text": "Recently modified tiddlers"
},
"$:/language/Filters/AllTags": {
"title": "$:/language/Filters/AllTags",
"text": "All tags except system tags"
},
"$:/language/Filters/Missing": {
"title": "$:/language/Filters/Missing",
"text": "Missing tiddlers"
},
"$:/language/Filters/Drafts": {
"title": "$:/language/Filters/Drafts",
"text": "Draft tiddlers"
},
"$:/language/Filters/Orphans": {
"title": "$:/language/Filters/Orphans",
"text": "Orphan tiddlers"
},
"$:/language/Filters/SystemTiddlers": {
"title": "$:/language/Filters/SystemTiddlers",
"text": "System tiddlers"
},
"$:/language/Filters/ShadowTiddlers": {
"title": "$:/language/Filters/ShadowTiddlers",
"text": "Shadow tiddlers"
},
"$:/language/Filters/OverriddenShadowTiddlers": {
"title": "$:/language/Filters/OverriddenShadowTiddlers",
"text": "Overridden shadow tiddlers"
},
"$:/language/Filters/SessionTiddlers": {
"title": "$:/language/Filters/SessionTiddlers",
"text": "Tiddlers modified since the wiki was loaded"
},
"$:/language/Filters/SystemTags": {
"title": "$:/language/Filters/SystemTags",
"text": "System tags"
},
"$:/language/Filters/StoryList": {
"title": "$:/language/Filters/StoryList",
"text": "Tiddlers in the story river, excluding <$text text=\"$:/AdvancedSearch\"/>"
},
"$:/language/Filters/TypedTiddlers": {
"title": "$:/language/Filters/TypedTiddlers",
"text": "Non wiki-text tiddlers"
},
"GettingStarted": {
"title": "GettingStarted",
"text": "\\define lingo-base() $:/language/ControlPanel/Basics/\nWelcome to ~TiddlyWiki and the ~TiddlyWiki community\n\nBefore you start storing important information in ~TiddlyWiki it is vital to make sure that you can reliably save changes. See https://tiddlywiki.com/#GettingStarted for details\n\n!! Set up this ~TiddlyWiki\n\n<div class=\"tc-control-panel\">\n\n|<$link to=\"$:/SiteTitle\"><<lingo Title/Prompt>></$link> |<$edit-text tiddler=\"$:/SiteTitle\" default=\"\" tag=\"input\"/> |\n|<$link to=\"$:/SiteSubtitle\"><<lingo Subtitle/Prompt>></$link> |<$edit-text tiddler=\"$:/SiteSubtitle\" default=\"\" tag=\"input\"/> |\n|<$link to=\"$:/DefaultTiddlers\"><<lingo DefaultTiddlers/Prompt>></$link> |<<lingo DefaultTiddlers/TopHint>><br> <$edit tag=\"textarea\" tiddler=\"$:/DefaultTiddlers\"/><br>//<<lingo DefaultTiddlers/BottomHint>>// |\n</div>\n\nSee the [[control panel|$:/ControlPanel]] for more options.\n"
},
"$:/language/Help/build": {
"title": "$:/language/Help/build",
"description": "Automatically run configured commands",
"text": "Build the specified build targets for the current wiki. If no build targets are specified then all available targets will be built.\n\n```\n--build <target> [<target> ...]\n```\n\nBuild targets are defined in the `tiddlywiki.info` file of a wiki folder.\n\n"
},
"$:/language/Help/clearpassword": {
"title": "$:/language/Help/clearpassword",
"description": "Clear a password for subsequent crypto operations",
"text": "Clear the password for subsequent crypto operations\n\n```\n--clearpassword\n```\n"
},
"$:/language/Help/default": {
"title": "$:/language/Help/default",
"text": "\\define commandTitle()\n$:/language/Help/$(command)$\n\\end\n```\nusage: tiddlywiki [<wikifolder>] [--<command> [<args>...]...]\n```\n\nAvailable commands:\n\n<ul>\n<$list filter=\"[commands[]sort[title]]\" variable=\"command\">\n<li><$link to=<<commandTitle>>><$macrocall $name=\"command\" $type=\"text/plain\" $output=\"text/plain\"/></$link>: <$transclude tiddler=<<commandTitle>> field=\"description\"/></li>\n</$list>\n</ul>\n\nTo get detailed help on a command:\n\n```\ntiddlywiki --help <command>\n```\n"
},
"$:/language/Help/deletetiddlers": {
"title": "$:/language/Help/deletetiddlers",
"description": "Deletes a group of tiddlers",
"text": "<<.from-version \"5.1.20\">> Deletes a group of tiddlers identified by a filter.\n\n```\n--deletetiddlers <filter>\n```\n"
},
"$:/language/Help/editions": {
"title": "$:/language/Help/editions",
"description": "Lists the available editions of TiddlyWiki",
"text": "Lists the names and descriptions of the available editions. You can create a new wiki of a specified edition with the `--init` command.\n\n```\n--editions\n```\n"
},
"$:/language/Help/fetch": {
"title": "$:/language/Help/fetch",
"description": "Fetch tiddlers from wiki by URL",
"text": "Fetch one or more files over HTTP/HTTPS, and import the tiddlers matching a filter, optionally transforming the incoming titles.\n\n```\n--fetch file <url> <import-filter> <transform-filter>\n--fetch files <url-filter> <import-filter> <transform-filter>\n--fetch raw-file <url> <transform-filter>\n--fetch raw-files <url-filter> <transform-filter>\n```\n\nThe \"file\" and \"files\" variants fetch the specified files and attempt to import the tiddlers within them (the same processing as if the files were dragged into the browser window). The \"raw-file\" and \"raw-files\" variants fetch the specified files and then store the raw file data in tiddlers, without applying the import logic.\n\nWith the \"file\" and \"raw-file\" variants only a single file is fetched and the first parameter is the URL of the file to read.\n\nWith the \"files\" and \"raw-files\" variants, multiple files are fetched and the first parameter is a filter yielding a list of URLs of the files to read. For example, given a set of tiddlers tagged \"remote-server\" that have a field \"url\" the filter `[tag[remote-server]get[url]]` will retrieve all the available URLs.\n\nFor the \"file\" and \"files\" variants, the `<import-filter>` parameter specifies a filter determining which tiddlers are imported. It defaults to `[all[tiddlers]]` if not provided.\n\nFor all variants, the `<transform-filter>` parameter specifies an optional filter that transforms the titles of the imported tiddlers. For example, `[addprefix[$:/myimports/]]` would add the prefix `$:/myimports/` to each title.\n\nPreceding the `--fetch` command with `--verbose` will output progress information during the import.\n\nNote that TiddlyWiki will not fetch an older version of an already loaded plugin.\n\nThe following example retrieves all the non-system tiddlers from https://tiddlywiki.com and saves them to a JSON file:\n\n```\ntiddlywiki --verbose --fetch file \"https://tiddlywiki.com/\" \"[!is[system]]\" \"\" --rendertiddler \"$:/core/templates/exporters/JsonFile\" output.json text/plain \"\" exportFilter \"[!is[system]]\"\n```\n\nThe following example retrieves the \"favicon\" file from tiddlywiki.com and saves it in a file called \"output.ico\". Note that the intermediate tiddler \"Icon Tiddler\" is quoted in the \"--fetch\" command because it is being used as a transformation filter to replace the default title, while there are no quotes for the \"--savetiddler\" command because it is being used directly as a title.\n\n```\ntiddlywiki --verbose --fetch raw-file \"https://tiddlywiki.com/favicon.ico\" \"[[Icon Tiddler]]\" --savetiddler \"Icon Tiddler\" output.ico\n```\n\n"
},
"$:/language/Help/help": {
"title": "$:/language/Help/help",
"description": "Display help for TiddlyWiki commands",
"text": "Displays help text for a command:\n\n```\n--help [<command>]\n```\n\nIf the command name is omitted then a list of available commands is displayed.\n"
},
"$:/language/Help/import": {
"title": "$:/language/Help/import",
"description": "Import tiddlers from a file",
"text": "Import tiddlers from TiddlyWiki (`.html`), `.tiddler`, `.tid`, `.json` or other local files. The deserializer must be explicitly specified, unlike the `load` command which infers the deserializer from the file extension.\n\n```\n--import <filepath> <deserializer> [<title>] [<encoding>]\n```\n\nThe deserializers in the core include:\n\n* application/javascript\n* application/json\n* application/x-tiddler\n* application/x-tiddler-html-div\n* application/x-tiddlers\n* text/html\n* text/plain\n\nThe title of the imported tiddler defaults to the filename.\n\nThe encoding defaults to \"utf8\", but can be \"base64\" for importing binary files.\n\nNote that TiddlyWiki will not import an older version of an already loaded plugin.\n"
},
"$:/language/Help/init": {
"title": "$:/language/Help/init",
"description": "Initialise a new wiki folder",
"text": "Initialise an empty [[WikiFolder|WikiFolders]] with a copy of the specified edition.\n\n```\n--init <edition> [<edition> ...]\n```\n\nFor example:\n\n```\ntiddlywiki ./MyWikiFolder --init empty\n```\n\nNote:\n\n* The wiki folder directory will be created if necessary\n* The \"edition\" defaults to ''empty''\n* The init command will fail if the wiki folder is not empty\n* The init command removes any `includeWikis` definitions in the edition's `tiddlywiki.info` file\n* When multiple editions are specified, editions initialised later will overwrite any files shared with earlier editions (so, the final `tiddlywiki.info` file will be copied from the last edition)\n* `--editions` returns a list of available editions\n"
},
"$:/language/Help/listen": {
"title": "$:/language/Help/listen",
"description": "Provides an HTTP server interface to TiddlyWiki",
"text": "Serves a wiki over HTTP.\n\nThe listen command uses NamedCommandParameters:\n\n```\n--listen [<name>=<value>]...\n```\n\nAll parameters are optional with safe defaults, and can be specified in any order. The recognised parameters are:\n\n* ''host'' - optional hostname to serve from (defaults to \"127.0.0.1\" aka \"localhost\")\n* ''path-prefix'' - optional prefix for paths\n* ''port'' - port number on which to listen; non-numeric values are interpreted as a system environment variable from which the port number is extracted (defaults to \"8080\")\n* ''credentials'' - pathname of credentials CSV file (relative to wiki folder)\n* ''anon-username'' - the username for signing edits for anonymous users\n* ''username'' - optional username for basic authentication\n* ''password'' - optional password for basic authentication\n* ''authenticated-user-header'' - optional name of header to be used for trusted authentication\n* ''readers'' - comma separated list of principals allowed to read from this wiki\n* ''writers'' - comma separated list of principals allowed to write to this wiki\n* ''csrf-disable'' - set to \"yes\" to disable CSRF checks (defaults to \"no\")\n* ''root-tiddler'' - the tiddler to serve at the root (defaults to \"$:/core/save/all\")\n* ''root-render-type'' - the content type to which the root tiddler should be rendered (defaults to \"text/plain\")\n* ''root-serve-type'' - the content type with which the root tiddler should be served (defaults to \"text/html\")\n* ''tls-cert'' - pathname of TLS certificate file (relative to wiki folder)\n* ''tls-key'' - pathname of TLS key file (relative to wiki folder)\n* ''debug-level'' - optional debug level; set to \"debug\" to view request details (defaults to \"none\")\n* ''gzip'' - set to \"yes\" to enable gzip compression for some http endpoints (defaults to \"no\")\n\nFor information on opening up your instance to the entire local network, and possible security concerns, see the WebServer tiddler at TiddlyWiki.com.\n\n"
},
"$:/language/Help/load": {
"title": "$:/language/Help/load",
"description": "Load tiddlers from a file",
"text": "Load tiddlers from TiddlyWiki (`.html`), `.tiddler`, `.tid`, `.json` or other local files. The processing applied to incoming files is determined by the file extension. Use the alternative `import` command if you need to specify the deserializer and encoding explicitly.\n\n```\n--load <filepath> [noerror]\n--load <dirpath> [noerror]\n```\n\nBy default, the load command raises an error if no tiddlers are found. The error can be suppressed by providing the optional \"noerror\" parameter.\n\nTo load tiddlers from an encrypted TiddlyWiki file you should first specify the password with the PasswordCommand. For example:\n\n```\ntiddlywiki ./MyWiki --password pa55w0rd --load my_encrypted_wiki.html\n```\n\nNote that TiddlyWiki will not load an older version of an already loaded plugin.\n"
},
"$:/language/Help/makelibrary": {
"title": "$:/language/Help/makelibrary",
"description": "Construct library plugin required by upgrade process",
"text": "Constructs the `$:/UpgradeLibrary` tiddler for the upgrade process.\n\nThe upgrade library is formatted as an ordinary plugin tiddler with the plugin type `library`. It contains a copy of each of the plugins, themes and language packs available within the TiddlyWiki5 repository.\n\nThis command is intended for internal use; it is only relevant to users constructing a custom upgrade procedure.\n\n```\n--makelibrary <title>\n```\n\nThe title argument defaults to `$:/UpgradeLibrary`.\n"
},
"$:/language/Help/notfound": {
"title": "$:/language/Help/notfound",
"text": "No such help item"
},
"$:/language/Help/output": {
"title": "$:/language/Help/output",
"description": "Set the base output directory for subsequent commands",
"text": "Sets the base output directory for subsequent commands. The default output directory is the `output` subdirectory of the edition directory.\n\n```\n--output <pathname>\n```\n\nIf the specified pathname is relative then it is resolved relative to the current working directory. For example `--output .` sets the output directory to the current working directory.\n\n"
},
"$:/language/Help/password": {
"title": "$:/language/Help/password",
"description": "Set a password for subsequent crypto operations",
"text": "Set a password for subsequent crypto operations\n\n```\n--password <password>\n```\n\n''Note'': This should not be used for serving TiddlyWiki with password protection. Instead, see the password option under the [[ServerCommand]].\n"
},
"$:/language/Help/render": {
"title": "$:/language/Help/render",
"description": "Renders individual tiddlers to files",
"text": "Render individual tiddlers identified by a filter and save the results to the specified files.\n\nOptionally, the title of a template tiddler can be specified. In this case, instead of directly rendering each tiddler, the template tiddler is rendered with the \"currentTiddler\" variable set to the title of the tiddler that is being rendered.\n\nA name and value for an additional variable may optionally also be specified.\n\n```\n--render <tiddler-filter> [<filename-filter>] [<render-type>] [<template>] [<name>] [<value>]\n```\n\n* ''tiddler-filter'': A filter identifying the tiddler(s) to be rendered\n* ''filename-filter'': Optional filter transforming tiddler titles into pathnames. If omitted, defaults to `[is[tiddler]addsuffix[.html]]`, which uses the unchanged tiddler title as the filename\n* ''render-type'': Optional render type: `text/html` (the default) returns the full HTML text and `text/plain` just returns the text content (ie it ignores HTML tags and other unprintable material)\n* ''template'': Optional template through which each tiddler is rendered\n* ''name'': Name of optional variable\n* ''value'': Value of optional variable\n\nBy default, the filename is resolved relative to the `output` subdirectory of the edition directory. The `--output` command can be used to direct output to a different directory.\n\nNotes:\n\n* The output directory is not cleared of any existing files\n* Any missing directories in the path to the filename are automatically created.\n* When referring to a tiddler with spaces in its title, take care to use both the quotes required by your shell and also TiddlyWiki's double square brackets : `--render \"[[Motovun Jack.jpg]]\"`\n* The filename filter is evaluated with the selected items being set to the title of the tiddler currently being rendered, allowing the title to be used as the basis for computing the filename. For example `[encodeuricomponent[]addprefix[static/]]` applies URI encoding to each title, and then adds the prefix `static/`\n* The `--render` command is a more flexible replacement for both the `--rendertiddler` and `--rendertiddlers` commands, which are deprecated\n\nExamples:\n\n* `--render \"[!is[system]]\" \"[encodeuricomponent[]addprefix[tiddlers/]addsuffix[.html]]\"` -- renders all non-system tiddlers as files in the subdirectory \"tiddlers\" with URL-encoded titles and the extension HTML\n\n"
},
"$:/language/Help/rendertiddler": {
"title": "$:/language/Help/rendertiddler",
"description": "Render an individual tiddler as a specified ContentType",
"text": "(Note: The `--rendertiddler` command is deprecated in favour of the new, more flexible `--render` command)\n\nRender an individual tiddler as a specified ContentType, defaulting to `text/html` and save it to the specified filename.\n\nOptionally the title of a template tiddler can be specified, in which case the template tiddler is rendered with the \"currentTiddler\" variable set to the tiddler that is being rendered (the first parameter value).\n\nA name and value for an additional variable may optionally also be specified.\n\n```\n--rendertiddler <title> <filename> [<type>] [<template>] [<name>] [<value>]\n```\n\nBy default, the filename is resolved relative to the `output` subdirectory of the edition directory. The `--output` command can be used to direct output to a different directory.\n\nAny missing directories in the path to the filename are automatically created.\n\nFor example, the following command saves all tiddlers matching the filter `[tag[done]]` to a JSON file titled `output.json` by employing the core template `$:/core/templates/exporters/JsonFile`.\n\n```\n--rendertiddler \"$:/core/templates/exporters/JsonFile\" output.json text/plain \"\" exportFilter \"[tag[done]]\"\n```\n"
},
"$:/language/Help/rendertiddlers": {
"title": "$:/language/Help/rendertiddlers",
"description": "Render tiddlers matching a filter to a specified ContentType",
"text": "(Note: The `--rendertiddlers` command is deprecated in favour of the new, more flexible `--render` command)\n\nRender a set of tiddlers matching a filter to separate files of a specified ContentType (defaults to `text/html`) and extension (defaults to `.html`).\n\n```\n--rendertiddlers <filter> <template> <pathname> [<type>] [<extension>] [\"noclean\"]\n```\n\nFor example:\n\n```\n--rendertiddlers [!is[system]] $:/core/templates/static.tiddler.html ./static text/plain\n```\n\nBy default, the pathname is resolved relative to the `output` subdirectory of the edition directory. The `--output` command can be used to direct output to a different directory.\n\nAny files in the target directory are deleted unless the ''noclean'' flag is specified. The target directory is recursively created if it is missing.\n"
},
"$:/language/Help/save": {
"title": "$:/language/Help/save",
"description": "Saves individual raw tiddlers to files",
"text": "Saves individual tiddlers identified by a filter in their raw text or binary format to the specified files.\n\n```\n--save <tiddler-filter> <filename-filter>\n```\n\n* ''tiddler-filter'': A filter identifying the tiddler(s) to be saved\n* ''filename-filter'': Optional filter transforming tiddler titles into pathnames. If omitted, defaults to `[is[tiddler]]`, which uses the unchanged tiddler title as the filename\n\nBy default, the filename is resolved relative to the `output` subdirectory of the edition directory. The `--output` command can be used to direct output to a different directory.\n\nNotes:\n\n* The output directory is not cleared of any existing files\n* Any missing directories in the path to the filename are automatically created.\n* When saving a tiddler with spaces in its title, take care to use both the quotes required by your shell and also TiddlyWiki's double square brackets : `--save \"[[Motovun Jack.jpg]]\"`\n* The filename filter is evaluated with the selected items being set to the title of the tiddler currently being saved, allowing the title to be used as the basis for computing the filename. For example `[encodeuricomponent[]addprefix[static/]]` applies URI encoding to each title, and then adds the prefix `static/`\n* The `--save` command is a more flexible replacement for both the `--savetiddler` and `--savetiddlers` commands, which are deprecated\n\nExamples:\n\n* `--save \"[!is[system]is[image]]\" \"[encodeuricomponent[]addprefix[tiddlers/]]\"` -- saves all non-system image tiddlers as files in the subdirectory \"tiddlers\" with URL-encoded titles\n"
},
"$:/language/Help/savetiddler": {
"title": "$:/language/Help/savetiddler",
"description": "Saves a raw tiddler to a file",
"text": "(Note: The `--savetiddler` command is deprecated in favour of the new, more flexible `--save` command)\n\nSaves an individual tiddler in its raw text or binary format to the specified filename.\n\n```\n--savetiddler <title> <filename>\n```\n\nBy default, the filename is resolved relative to the `output` subdirectory of the edition directory. The `--output` command can be used to direct output to a different directory.\n\nAny missing directories in the path to the filename are automatically created.\n"
},
"$:/language/Help/savetiddlers": {
"title": "$:/language/Help/savetiddlers",
"description": "Saves a group of raw tiddlers to a directory",
"text": "(Note: The `--savetiddlers` command is deprecated in favour of the new, more flexible `--save` command)\n\nSaves a group of tiddlers in their raw text or binary format to the specified directory.\n\n```\n--savetiddlers <filter> <pathname> [\"noclean\"]\n```\n\nBy default, the pathname is resolved relative to the `output` subdirectory of the edition directory. The `--output` command can be used to direct output to a different directory.\n\nThe output directory is cleared of existing files before saving the specified files. The deletion can be disabled by specifying the ''noclean'' flag.\n\nAny missing directories in the pathname are automatically created.\n"
},
"$:/language/Help/savewikifolder": {
"title": "$:/language/Help/savewikifolder",
"description": "Saves a wiki to a new wiki folder",
"text": "<<.from-version \"5.1.20\">> Saves the current wiki as a wiki folder, including tiddlers, plugins and configuration:\n\n```\n--savewikifolder <wikifolderpath> [<filter>]\n```\n\n* The target wiki folder must be empty or non-existent\n* The filter specifies which tiddlers should be included. It is optional, defaulting to `[all[tiddlers]]`\n* Plugins from the official plugin library are replaced with references to those plugins in the `tiddlywiki.info` file\n* Custom plugins are unpacked into their own folder\n\nA common usage is to convert a TiddlyWiki HTML file into a wiki folder:\n\n```\ntiddlywiki --load ./mywiki.html --savewikifolder ./mywikifolder\n```\n"
},
"$:/language/Help/server": {
"title": "$:/language/Help/server",
"description": "Provides an HTTP server interface to TiddlyWiki (deprecated in favour of the new listen command)",
"text": "Legacy command to serve a wiki over HTTP.\n\n```\n--server <port> <root-tiddler> <root-render-type> <root-serve-type> <username> <password> <host> <path-prefix> <debug-level>\n```\n\nThe parameters are:\n\n* ''port'' - port number on which to listen; non-numeric values are interpreted as a system environment variable from which the port number is extracted (defaults to \"8080\")\n* ''root-tiddler'' - the tiddler to serve at the root (defaults to \"$:/core/save/all\")\n* ''root-render-type'' - the content type to which the root tiddler should be rendered (defaults to \"text/plain\")\n* ''root-serve-type'' - the content type with which the root tiddler should be served (defaults to \"text/html\")\n* ''username'' - the default username for signing edits\n* ''password'' - optional password for basic authentication\n* ''host'' - optional hostname to serve from (defaults to \"127.0.0.1\" aka \"localhost\")\n* ''path-prefix'' - optional prefix for paths\n* ''debug-level'' - optional debug level; set to \"debug\" to view request details (defaults to \"none\")\n\nIf the password parameter is specified then the browser will prompt the user for the username and password. Note that the password is transmitted in plain text so this implementation should only be used on a trusted network or over HTTPS.\n\nFor example:\n\n```\n--server 8080 $:/core/save/all text/plain text/html MyUserName passw0rd\n```\n\nThe username and password can be specified as empty strings if you need to set the hostname or pathprefix and don't want to require a password.\n\n\n```\n--server 8080 $:/core/save/all text/plain text/html \"\" \"\" 192.168.0.245\n```\n\nUsing an address like this exposes your system to the local network. For information on opening up your instance to the entire local network, and possible security concerns, see the WebServer tiddler at TiddlyWiki.com.\n\nTo run multiple TiddlyWiki servers at the same time you'll need to put each one on a different port. It can be useful to use an environment variable to pass the port number to the Node.js process. This example references an environment variable called \"MY_PORT_NUMBER\":\n\n```\n--server MY_PORT_NUMBER $:/core/save/all text/plain text/html MyUserName passw0rd\n```\n"
},
"$:/language/Help/setfield": {
"title": "$:/language/Help/setfield",
"description": "Prepares external tiddlers for use",
"text": "//Note that this command is experimental and may change or be replaced before being finalised//\n\nSets the specified field of a group of tiddlers to the result of wikifying a template tiddler with the `currentTiddler` variable set to the tiddler.\n\n```\n--setfield <filter> <fieldname> <templatetitle> <rendertype>\n```\n\nThe parameters are:\n\n* ''filter'' - filter identifying the tiddlers to be affected\n* ''fieldname'' - the field to modify (defaults to \"text\")\n* ''templatetitle'' - the tiddler to wikify into the specified field. If blank or missing then the specified field is deleted\n* ''rendertype'' - the text type to render (defaults to \"text/plain\"; \"text/html\" can be used to include HTML tags)\n"
},
"$:/language/Help/unpackplugin": {
"title": "$:/language/Help/unpackplugin",
"description": "Unpack the payload tiddlers from a plugin",
"text": "Extract the payload tiddlers from a plugin, creating them as ordinary tiddlers:\n\n```\n--unpackplugin <title>\n```\n"
},
"$:/language/Help/verbose": {
"title": "$:/language/Help/verbose",
"description": "Triggers verbose output mode",
"text": "Triggers verbose output, useful for debugging\n\n```\n--verbose\n```\n"
},
"$:/language/Help/version": {
"title": "$:/language/Help/version",
"description": "Displays the version number of TiddlyWiki",
"text": "Displays the version number of TiddlyWiki.\n\n```\n--version\n```\n"
},
"$:/language/Import/Imported/Hint": {
"title": "$:/language/Import/Imported/Hint",
"text": "The following tiddlers were imported:"
},
"$:/language/Import/Listing/Cancel/Caption": {
"title": "$:/language/Import/Listing/Cancel/Caption",
"text": "Cancel"
},
"$:/language/Import/Listing/Hint": {
"title": "$:/language/Import/Listing/Hint",
"text": "These tiddlers are ready to import:"
},
"$:/language/Import/Listing/Import/Caption": {
"title": "$:/language/Import/Listing/Import/Caption",
"text": "Import"
},
"$:/language/Import/Listing/Select/Caption": {
"title": "$:/language/Import/Listing/Select/Caption",
"text": "Select"
},
"$:/language/Import/Listing/Status/Caption": {
"title": "$:/language/Import/Listing/Status/Caption",
"text": "Status"
},
"$:/language/Import/Listing/Title/Caption": {
"title": "$:/language/Import/Listing/Title/Caption",
"text": "Title"
},
"$:/language/Import/Listing/Preview": {
"title": "$:/language/Import/Listing/Preview",
"text": "Preview:"
},
"$:/language/Import/Listing/Preview/Text": {
"title": "$:/language/Import/Listing/Preview/Text",
"text": "Text"
},
"$:/language/Import/Listing/Preview/TextRaw": {
"title": "$:/language/Import/Listing/Preview/TextRaw",
"text": "Text (Raw)"
},
"$:/language/Import/Listing/Preview/Fields": {
"title": "$:/language/Import/Listing/Preview/Fields",
"text": "Fields"
},
"$:/language/Import/Listing/Preview/Diff": {
"title": "$:/language/Import/Listing/Preview/Diff",
"text": "Diff"
},
"$:/language/Import/Listing/Preview/DiffFields": {
"title": "$:/language/Import/Listing/Preview/DiffFields",
"text": "Diff (Fields)"
},
"$:/language/Import/Upgrader/Plugins/Suppressed/Incompatible": {
"title": "$:/language/Import/Upgrader/Plugins/Suppressed/Incompatible",
"text": "Blocked incompatible or obsolete plugin"
},
"$:/language/Import/Upgrader/Plugins/Suppressed/Version": {
"title": "$:/language/Import/Upgrader/Plugins/Suppressed/Version",
"text": "Blocked plugin (due to incoming <<incoming>> being older than existing <<existing>>)"
},
"$:/language/Import/Upgrader/Plugins/Upgraded": {
"title": "$:/language/Import/Upgrader/Plugins/Upgraded",
"text": "Upgraded plugin from <<incoming>> to <<upgraded>>"
},
"$:/language/Import/Upgrader/State/Suppressed": {
"title": "$:/language/Import/Upgrader/State/Suppressed",
"text": "Blocked temporary state tiddler"
},
"$:/language/Import/Upgrader/System/Suppressed": {
"title": "$:/language/Import/Upgrader/System/Suppressed",
"text": "Blocked system tiddler"
},
"$:/language/Import/Upgrader/System/Warning": {
"title": "$:/language/Import/Upgrader/System/Warning",
"text": "Core module tiddler"
},
"$:/language/Import/Upgrader/System/Alert": {
"title": "$:/language/Import/Upgrader/System/Alert",
"text": "You are about to import a tiddler that will overwrite a core module tiddler. This is not recommended as it may make the system unstable"
},
"$:/language/Import/Upgrader/ThemeTweaks/Created": {
"title": "$:/language/Import/Upgrader/ThemeTweaks/Created",
"text": "Migrated theme tweak from <$text text=<<from>>/>"
},
"$:/language/AboveStory/ClassicPlugin/Warning": {
"title": "$:/language/AboveStory/ClassicPlugin/Warning",
"text": "It looks like you are trying to load a plugin designed for ~TiddlyWiki Classic. Please note that [[these plugins do not work with TiddlyWiki version 5.x.x|https://tiddlywiki.com/#TiddlyWikiClassic]]. ~TiddlyWiki Classic plugins detected:"
},
"$:/language/BinaryWarning/Prompt": {
"title": "$:/language/BinaryWarning/Prompt",
"text": "This tiddler contains binary data"
},
"$:/language/ClassicWarning/Hint": {
"title": "$:/language/ClassicWarning/Hint",
"text": "This tiddler is written in TiddlyWiki Classic wiki text format, which is not fully compatible with TiddlyWiki version 5. See https://tiddlywiki.com/static/Upgrading.html for more details."
},
"$:/language/ClassicWarning/Upgrade/Caption": {
"title": "$:/language/ClassicWarning/Upgrade/Caption",
"text": "upgrade"
},
"$:/language/CloseAll/Button": {
"title": "$:/language/CloseAll/Button",
"text": "close all"
},
"$:/language/ColourPicker/Recent": {
"title": "$:/language/ColourPicker/Recent",
"text": "Recent:"
},
"$:/language/ConfirmCancelTiddler": {
"title": "$:/language/ConfirmCancelTiddler",
"text": "Do you wish to discard changes to the tiddler \"<$text text=<<title>>/>\"?"
},
"$:/language/ConfirmDeleteTiddler": {
"title": "$:/language/ConfirmDeleteTiddler",
"text": "Do you wish to delete the tiddler \"<$text text=<<title>>/>\"?"
},
"$:/language/ConfirmOverwriteTiddler": {
"title": "$:/language/ConfirmOverwriteTiddler",
"text": "Do you wish to overwrite the tiddler \"<$text text=<<title>>/>\"?"
},
"$:/language/ConfirmEditShadowTiddler": {
"title": "$:/language/ConfirmEditShadowTiddler",
"text": "You are about to edit a ShadowTiddler. Any changes will override the default system making future upgrades non-trivial. Are you sure you want to edit \"<$text text=<<title>>/>\"?"
},
"$:/language/Count": {
"title": "$:/language/Count",
"text": "count"
},
"$:/language/DefaultNewTiddlerTitle": {
"title": "$:/language/DefaultNewTiddlerTitle",
"text": "New Tiddler"
},
"$:/language/Diffs/CountMessage": {
"title": "$:/language/Diffs/CountMessage",
"text": "<<diff-count>> differences"
},
"$:/language/DropMessage": {
"title": "$:/language/DropMessage",
"text": "Drop here (or use the 'Escape' key to cancel)"
},
"$:/language/Encryption/Cancel": {
"title": "$:/language/Encryption/Cancel",
"text": "Cancel"
},
"$:/language/Encryption/ConfirmClearPassword": {
"title": "$:/language/Encryption/ConfirmClearPassword",
"text": "Do you wish to clear the password? This will remove the encryption applied when saving this wiki"
},
"$:/language/Encryption/PromptSetPassword": {
"title": "$:/language/Encryption/PromptSetPassword",
"text": "Set a new password for this TiddlyWiki"
},
"$:/language/Encryption/Username": {
"title": "$:/language/Encryption/Username",
"text": "Username"
},
"$:/language/Encryption/Password": {
"title": "$:/language/Encryption/Password",
"text": "Password"
},
"$:/language/Encryption/RepeatPassword": {
"title": "$:/language/Encryption/RepeatPassword",
"text": "Repeat password"
},
"$:/language/Encryption/PasswordNoMatch": {
"title": "$:/language/Encryption/PasswordNoMatch",
"text": "Passwords do not match"
},
"$:/language/Encryption/SetPassword": {
"title": "$:/language/Encryption/SetPassword",
"text": "Set password"
},
"$:/language/Error/Caption": {
"title": "$:/language/Error/Caption",
"text": "Error"
},
"$:/language/Error/EditConflict": {
"title": "$:/language/Error/EditConflict",
"text": "File changed on server"
},
"$:/language/Error/Filter": {
"title": "$:/language/Error/Filter",
"text": "Filter error"
},
"$:/language/Error/FilterSyntax": {
"title": "$:/language/Error/FilterSyntax",
"text": "Syntax error in filter expression"
},
"$:/language/Error/IsFilterOperator": {
"title": "$:/language/Error/IsFilterOperator",
"text": "Filter Error: Unknown operand for the 'is' filter operator"
},
"$:/language/Error/LoadingPluginLibrary": {
"title": "$:/language/Error/LoadingPluginLibrary",
"text": "Error loading plugin library"
},
"$:/language/Error/RecursiveTransclusion": {
"title": "$:/language/Error/RecursiveTransclusion",
"text": "Recursive transclusion error in transclude widget"
},
"$:/language/Error/RetrievingSkinny": {
"title": "$:/language/Error/RetrievingSkinny",
"text": "Error retrieving skinny tiddler list"
},
"$:/language/Error/SavingToTWEdit": {
"title": "$:/language/Error/SavingToTWEdit",
"text": "Error saving to TWEdit"
},
"$:/language/Error/WhileSaving": {
"title": "$:/language/Error/WhileSaving",
"text": "Error while saving"
},
"$:/language/Error/XMLHttpRequest": {
"title": "$:/language/Error/XMLHttpRequest",
"text": "XMLHttpRequest error code"
},
"$:/language/InternalJavaScriptError/Title": {
"title": "$:/language/InternalJavaScriptError/Title",
"text": "Internal JavaScript Error"
},
"$:/language/InternalJavaScriptError/Hint": {
"title": "$:/language/InternalJavaScriptError/Hint",
"text": "Well, this is embarrassing. It is recommended that you restart TiddlyWiki by refreshing your browser"
},
"$:/language/InvalidFieldName": {
"title": "$:/language/InvalidFieldName",
"text": "Illegal characters in field name \"<$text text=<<fieldName>>/>\". Fields can only contain lowercase letters, digits and the characters underscore (`_`), hyphen (`-`) and period (`.`)"
},
"$:/language/LazyLoadingWarning": {
"title": "$:/language/LazyLoadingWarning",
"text": "<p>Trying to load external content from ''<$text text={{!!_canonical_uri}}/>''</p><p>If this message doesn't disappear, either the tiddler content type doesn't match the type of the external content, or you may be using a browser that doesn't support external content for wikis loaded as standalone files. See https://tiddlywiki.com/#ExternalText</p>"
},
"$:/language/LoginToTiddlySpace": {
"title": "$:/language/LoginToTiddlySpace",
"text": "Login to TiddlySpace"
},
"$:/language/Manager/Controls/FilterByTag/None": {
"title": "$:/language/Manager/Controls/FilterByTag/None",
"text": "(none)"
},
"$:/language/Manager/Controls/FilterByTag/Prompt": {
"title": "$:/language/Manager/Controls/FilterByTag/Prompt",
"text": "Filter by tag:"
},
"$:/language/Manager/Controls/Order/Prompt": {
"title": "$:/language/Manager/Controls/Order/Prompt",
"text": "Reverse order"
},
"$:/language/Manager/Controls/Search/Placeholder": {
"title": "$:/language/Manager/Controls/Search/Placeholder",
"text": "Search"
},
"$:/language/Manager/Controls/Search/Prompt": {
"title": "$:/language/Manager/Controls/Search/Prompt",
"text": "Search:"
},
"$:/language/Manager/Controls/Show/Option/Tags": {
"title": "$:/language/Manager/Controls/Show/Option/Tags",
"text": "tags"
},
"$:/language/Manager/Controls/Show/Option/Tiddlers": {
"title": "$:/language/Manager/Controls/Show/Option/Tiddlers",
"text": "tiddlers"
},
"$:/language/Manager/Controls/Show/Prompt": {
"title": "$:/language/Manager/Controls/Show/Prompt",
"text": "Show:"
},
"$:/language/Manager/Controls/Sort/Prompt": {
"title": "$:/language/Manager/Controls/Sort/Prompt",
"text": "Sort by:"
},
"$:/language/Manager/Item/Colour": {
"title": "$:/language/Manager/Item/Colour",
"text": "Colour"
},
"$:/language/Manager/Item/Fields": {
"title": "$:/language/Manager/Item/Fields",
"text": "Fields"
},
"$:/language/Manager/Item/Icon/None": {
"title": "$:/language/Manager/Item/Icon/None",
"text": "(none)"
},
"$:/language/Manager/Item/Icon": {
"title": "$:/language/Manager/Item/Icon",
"text": "Icon"
},
"$:/language/Manager/Item/RawText": {
"title": "$:/language/Manager/Item/RawText",
"text": "Raw text"
},
"$:/language/Manager/Item/Tags": {
"title": "$:/language/Manager/Item/Tags",
"text": "Tags"
},
"$:/language/Manager/Item/Tools": {
"title": "$:/language/Manager/Item/Tools",
"text": "Tools"
},
"$:/language/Manager/Item/WikifiedText": {
"title": "$:/language/Manager/Item/WikifiedText",
"text": "Wikified text"
},
"$:/language/MissingTiddler/Hint": {
"title": "$:/language/MissingTiddler/Hint",
"text": "Missing tiddler \"<$text text=<<currentTiddler>>/>\" -- click {{||$:/core/ui/Buttons/edit}} to create"
},
"$:/language/No": {
"title": "$:/language/No",
"text": "No"
},
"$:/language/OfficialPluginLibrary": {
"title": "$:/language/OfficialPluginLibrary",
"text": "Official ~TiddlyWiki Plugin Library"
},
"$:/language/OfficialPluginLibrary/Hint": {
"title": "$:/language/OfficialPluginLibrary/Hint",
"text": "The official ~TiddlyWiki plugin library at tiddlywiki.com. Plugins, themes and language packs are maintained by the core team."
},
"$:/language/PluginReloadWarning": {
"title": "$:/language/PluginReloadWarning",
"text": "Please save {{$:/core/ui/Buttons/save-wiki}} and reload {{$:/core/ui/Buttons/refresh}} to allow changes to plugins to take effect"
},
"$:/language/RecentChanges/DateFormat": {
"title": "$:/language/RecentChanges/DateFormat",
"text": "DDth MMM YYYY"
},
"$:/language/SystemTiddler/Tooltip": {
"title": "$:/language/SystemTiddler/Tooltip",
"text": "This is a system tiddler"
},
"$:/language/SystemTiddlers/Include/Prompt": {
"title": "$:/language/SystemTiddlers/Include/Prompt",
"text": "Include system tiddlers"
},
"$:/language/TagManager/Colour/Heading": {
"title": "$:/language/TagManager/Colour/Heading",
"text": "Colour"
},
"$:/language/TagManager/Count/Heading": {
"title": "$:/language/TagManager/Count/Heading",
"text": "Count"
},
"$:/language/TagManager/Icon/Heading": {
"title": "$:/language/TagManager/Icon/Heading",
"text": "Icon"
},
"$:/language/TagManager/Info/Heading": {
"title": "$:/language/TagManager/Info/Heading",
"text": "Info"
},
"$:/language/TagManager/Tag/Heading": {
"title": "$:/language/TagManager/Tag/Heading",
"text": "Tag"
},
"$:/language/Tiddler/DateFormat": {
"title": "$:/language/Tiddler/DateFormat",
"text": "DDth MMM YYYY at hh12:0mmam"
},
"$:/language/UnsavedChangesWarning": {
"title": "$:/language/UnsavedChangesWarning",
"text": "You have unsaved changes in TiddlyWiki"
},
"$:/language/Yes": {
"title": "$:/language/Yes",
"text": "Yes"
},
"$:/language/Modals/Download": {
"title": "$:/language/Modals/Download",
"subtitle": "Download changes",
"footer": "<$button message=\"tm-close-tiddler\">Close</$button>",
"help": "https://tiddlywiki.com/static/DownloadingChanges.html",
"text": "Your browser only supports manual saving.\n\nTo save your modified wiki, right click on the download link below and select \"Download file\" or \"Save file\", and then choose the folder and filename.\n\n//You can marginally speed things up by clicking the link with the control key (Windows) or the options/alt key (Mac OS X). You will not be prompted for the folder or filename, but your browser is likely to give it an unrecognisable name -- you may need to rename the file to include an `.html` extension before you can do anything useful with it.//\n\nOn smartphones that do not allow files to be downloaded you can instead bookmark the link, and then sync your bookmarks to a desktop computer from where the wiki can be saved normally.\n"
},
"$:/language/Modals/SaveInstructions": {
"title": "$:/language/Modals/SaveInstructions",
"subtitle": "Save your work",
"footer": "<$button message=\"tm-close-tiddler\">Close</$button>",
"help": "https://tiddlywiki.com/static/SavingChanges.html",
"text": "Your changes to this wiki need to be saved as a ~TiddlyWiki HTML file.\n\n!!! Desktop browsers\n\n# Select ''Save As'' from the ''File'' menu\n# Choose a filename and location\n#* Some browsers also require you to explicitly specify the file saving format as ''Webpage, HTML only'' or similar\n# Close this tab\n\n!!! Smartphone browsers\n\n# Create a bookmark to this page\n#* If you've got iCloud or Google Sync set up then the bookmark will automatically sync to your desktop where you can open it and save it as above\n# Close this tab\n\n//If you open the bookmark again in Mobile Safari you will see this message again. If you want to go ahead and use the file, just click the ''close'' button below//\n"
},
"$:/config/NewJournal/Title": {
"title": "$:/config/NewJournal/Title",
"text": "DDth MMM YYYY"
},
"$:/config/NewJournal/Text": {
"title": "$:/config/NewJournal/Text",
"text": ""
},
"$:/config/NewJournal/Tags": {
"title": "$:/config/NewJournal/Tags",
"text": "Journal"
},
"$:/language/Notifications/Save/Done": {
"title": "$:/language/Notifications/Save/Done",
"text": "Saved wiki"
},
"$:/language/Notifications/Save/Starting": {
"title": "$:/language/Notifications/Save/Starting",
"text": "Starting to save wiki"
},
"$:/language/Notifications/CopiedToClipboard/Succeeded": {
"title": "$:/language/Notifications/CopiedToClipboard/Succeeded",
"text": "Copied to clipboard!"
},
"$:/language/Notifications/CopiedToClipboard/Failed": {
"title": "$:/language/Notifications/CopiedToClipboard/Failed",
"text": "Failed to copy to clipboard!"
},
"$:/language/Search/DefaultResults/Caption": {
"title": "$:/language/Search/DefaultResults/Caption",
"text": "List"
},
"$:/language/Search/Filter/Caption": {
"title": "$:/language/Search/Filter/Caption",
"text": "Filter"
},
"$:/language/Search/Filter/Hint": {
"title": "$:/language/Search/Filter/Hint",
"text": "Search via a [[filter expression|https://tiddlywiki.com/static/Filters.html]]"
},
"$:/language/Search/Filter/Matches": {
"title": "$:/language/Search/Filter/Matches",
"text": "//<small><<resultCount>> matches</small>//"
},
"$:/language/Search/Matches": {
"title": "$:/language/Search/Matches",
"text": "//<small><<resultCount>> matches</small>//"
},
"$:/language/Search/Matches/All": {
"title": "$:/language/Search/Matches/All",
"text": "All matches:"
},
"$:/language/Search/Matches/Title": {
"title": "$:/language/Search/Matches/Title",
"text": "Title matches:"
},
"$:/language/Search/Search": {
"title": "$:/language/Search/Search",
"text": "Search"
},
"$:/language/Search/Search/TooShort": {
"title": "$:/language/Search/Search/TooShort",
"text": "Search text too short"
},
"$:/language/Search/Shadows/Caption": {
"title": "$:/language/Search/Shadows/Caption",
"text": "Shadows"
},
"$:/language/Search/Shadows/Hint": {
"title": "$:/language/Search/Shadows/Hint",
"text": "Search for shadow tiddlers"
},
"$:/language/Search/Shadows/Matches": {
"title": "$:/language/Search/Shadows/Matches",
"text": "//<small><<resultCount>> matches</small>//"
},
"$:/language/Search/Standard/Caption": {
"title": "$:/language/Search/Standard/Caption",
"text": "Standard"
},
"$:/language/Search/Standard/Hint": {
"title": "$:/language/Search/Standard/Hint",
"text": "Search for standard tiddlers"
},
"$:/language/Search/Standard/Matches": {
"title": "$:/language/Search/Standard/Matches",
"text": "//<small><<resultCount>> matches</small>//"
},
"$:/language/Search/System/Caption": {
"title": "$:/language/Search/System/Caption",
"text": "System"
},
"$:/language/Search/System/Hint": {
"title": "$:/language/Search/System/Hint",
"text": "Search for system tiddlers"
},
"$:/language/Search/System/Matches": {
"title": "$:/language/Search/System/Matches",
"text": "//<small><<resultCount>> matches</small>//"
},
"$:/language/SideBar/All/Caption": {
"title": "$:/language/SideBar/All/Caption",
"text": "All"
},
"$:/language/SideBar/Contents/Caption": {
"title": "$:/language/SideBar/Contents/Caption",
"text": "Contents"
},
"$:/language/SideBar/Drafts/Caption": {
"title": "$:/language/SideBar/Drafts/Caption",
"text": "Drafts"
},
"$:/language/SideBar/Explorer/Caption": {
"title": "$:/language/SideBar/Explorer/Caption",
"text": "Explorer"
},
"$:/language/SideBar/Missing/Caption": {
"title": "$:/language/SideBar/Missing/Caption",
"text": "Missing"
},
"$:/language/SideBar/More/Caption": {
"title": "$:/language/SideBar/More/Caption",
"text": "More"
},
"$:/language/SideBar/Open/Caption": {
"title": "$:/language/SideBar/Open/Caption",
"text": "Open"
},
"$:/language/SideBar/Orphans/Caption": {
"title": "$:/language/SideBar/Orphans/Caption",
"text": "Orphans"
},
"$:/language/SideBar/Recent/Caption": {
"title": "$:/language/SideBar/Recent/Caption",
"text": "Recent"
},
"$:/language/SideBar/Shadows/Caption": {
"title": "$:/language/SideBar/Shadows/Caption",
"text": "Shadows"
},
"$:/language/SideBar/System/Caption": {
"title": "$:/language/SideBar/System/Caption",
"text": "System"
},
"$:/language/SideBar/Tags/Caption": {
"title": "$:/language/SideBar/Tags/Caption",
"text": "Tags"
},
"$:/language/SideBar/Tags/Untagged/Caption": {
"title": "$:/language/SideBar/Tags/Untagged/Caption",
"text": "untagged"
},
"$:/language/SideBar/Tools/Caption": {
"title": "$:/language/SideBar/Tools/Caption",
"text": "Tools"
},
"$:/language/SideBar/Types/Caption": {
"title": "$:/language/SideBar/Types/Caption",
"text": "Types"
},
"$:/SiteSubtitle": {
"title": "$:/SiteSubtitle",
"text": "a non-linear personal web notebook"
},
"$:/SiteTitle": {
"title": "$:/SiteTitle",
"text": "My ~TiddlyWiki"
},
"$:/language/Snippets/ListByTag": {
"title": "$:/language/Snippets/ListByTag",
"tags": "$:/tags/TextEditor/Snippet",
"caption": "List of tiddlers by tag",
"text": "<<list-links \"[tag[task]sort[title]]\">>\n"
},
"$:/language/Snippets/MacroDefinition": {
"title": "$:/language/Snippets/MacroDefinition",
"tags": "$:/tags/TextEditor/Snippet",
"caption": "Macro definition",
"text": "\\define macroName(param1:\"default value\",param2)\nText of the macro\n\\end\n"
},
"$:/language/Snippets/Table4x3": {
"title": "$:/language/Snippets/Table4x3",
"tags": "$:/tags/TextEditor/Snippet",
"caption": "Table with 4 columns by 3 rows",
"text": "|! |!Alpha |!Beta |!Gamma |!Delta |\n|!One | | | | |\n|!Two | | | | |\n|!Three | | | | |\n"
},
"$:/language/Snippets/TableOfContents": {
"title": "$:/language/Snippets/TableOfContents",
"tags": "$:/tags/TextEditor/Snippet",
"caption": "Table of Contents",
"text": "<div class=\"tc-table-of-contents\">\n\n<<toc-selective-expandable 'TableOfContents'>>\n\n</div>"
},
"$:/language/ThemeTweaks/ThemeTweaks": {
"title": "$:/language/ThemeTweaks/ThemeTweaks",
"text": "Theme Tweaks"
},
"$:/language/ThemeTweaks/ThemeTweaks/Hint": {
"title": "$:/language/ThemeTweaks/ThemeTweaks/Hint",
"text": "You can tweak certain aspects of the ''Vanilla'' theme."
},
"$:/language/ThemeTweaks/Options": {
"title": "$:/language/ThemeTweaks/Options",
"text": "Options"
},
"$:/language/ThemeTweaks/Options/SidebarLayout": {
"title": "$:/language/ThemeTweaks/Options/SidebarLayout",
"text": "Sidebar layout"
},
"$:/language/ThemeTweaks/Options/SidebarLayout/Fixed-Fluid": {
"title": "$:/language/ThemeTweaks/Options/SidebarLayout/Fixed-Fluid",
"text": "Fixed story, fluid sidebar"
},
"$:/language/ThemeTweaks/Options/SidebarLayout/Fluid-Fixed": {
"title": "$:/language/ThemeTweaks/Options/SidebarLayout/Fluid-Fixed",
"text": "Fluid story, fixed sidebar"
},
"$:/language/ThemeTweaks/Options/StickyTitles": {
"title": "$:/language/ThemeTweaks/Options/StickyTitles",
"text": "Sticky titles"
},
"$:/language/ThemeTweaks/Options/StickyTitles/Hint": {
"title": "$:/language/ThemeTweaks/Options/StickyTitles/Hint",
"text": "Causes tiddler titles to \"stick\" to the top of the browser window"
},
"$:/language/ThemeTweaks/Options/CodeWrapping": {
"title": "$:/language/ThemeTweaks/Options/CodeWrapping",
"text": "Wrap long lines in code blocks"
},
"$:/language/ThemeTweaks/Settings": {
"title": "$:/language/ThemeTweaks/Settings",
"text": "Settings"
},
"$:/language/ThemeTweaks/Settings/FontFamily": {
"title": "$:/language/ThemeTweaks/Settings/FontFamily",
"text": "Font family"
},
"$:/language/ThemeTweaks/Settings/CodeFontFamily": {
"title": "$:/language/ThemeTweaks/Settings/CodeFontFamily",
"text": "Code font family"
},
"$:/language/ThemeTweaks/Settings/EditorFontFamily": {
"title": "$:/language/ThemeTweaks/Settings/EditorFontFamily",
"text": "Editor font family"
},
"$:/language/ThemeTweaks/Settings/BackgroundImage": {
"title": "$:/language/ThemeTweaks/Settings/BackgroundImage",
"text": "Page background image"
},
"$:/language/ThemeTweaks/Settings/BackgroundImageAttachment": {
"title": "$:/language/ThemeTweaks/Settings/BackgroundImageAttachment",
"text": "Page background image attachment"
},
"$:/language/ThemeTweaks/Settings/BackgroundImageAttachment/Scroll": {
"title": "$:/language/ThemeTweaks/Settings/BackgroundImageAttachment/Scroll",
"text": "Scroll with tiddlers"
},
"$:/language/ThemeTweaks/Settings/BackgroundImageAttachment/Fixed": {
"title": "$:/language/ThemeTweaks/Settings/BackgroundImageAttachment/Fixed",
"text": "Fixed to window"
},
"$:/language/ThemeTweaks/Settings/BackgroundImageSize": {
"title": "$:/language/ThemeTweaks/Settings/BackgroundImageSize",
"text": "Page background image size"
},
"$:/language/ThemeTweaks/Settings/BackgroundImageSize/Auto": {
"title": "$:/language/ThemeTweaks/Settings/BackgroundImageSize/Auto",
"text": "Auto"
},
"$:/language/ThemeTweaks/Settings/BackgroundImageSize/Cover": {
"title": "$:/language/ThemeTweaks/Settings/BackgroundImageSize/Cover",
"text": "Cover"
},
"$:/language/ThemeTweaks/Settings/BackgroundImageSize/Contain": {
"title": "$:/language/ThemeTweaks/Settings/BackgroundImageSize/Contain",
"text": "Contain"
},
"$:/language/ThemeTweaks/Metrics": {
"title": "$:/language/ThemeTweaks/Metrics",
"text": "Sizes"
},
"$:/language/ThemeTweaks/Metrics/FontSize": {
"title": "$:/language/ThemeTweaks/Metrics/FontSize",
"text": "Font size"
},
"$:/language/ThemeTweaks/Metrics/LineHeight": {
"title": "$:/language/ThemeTweaks/Metrics/LineHeight",
"text": "Line height"
},
"$:/language/ThemeTweaks/Metrics/BodyFontSize": {
"title": "$:/language/ThemeTweaks/Metrics/BodyFontSize",
"text": "Font size for tiddler body"
},
"$:/language/ThemeTweaks/Metrics/BodyLineHeight": {
"title": "$:/language/ThemeTweaks/Metrics/BodyLineHeight",
"text": "Line height for tiddler body"
},
"$:/language/ThemeTweaks/Metrics/StoryLeft": {
"title": "$:/language/ThemeTweaks/Metrics/StoryLeft",
"text": "Story left position"
},
"$:/language/ThemeTweaks/Metrics/StoryLeft/Hint": {
"title": "$:/language/ThemeTweaks/Metrics/StoryLeft/Hint",
"text": "how far the left margin of the story river<br>(tiddler area) is from the left of the page"
},
"$:/language/ThemeTweaks/Metrics/StoryTop": {
"title": "$:/language/ThemeTweaks/Metrics/StoryTop",
"text": "Story top position"
},
"$:/language/ThemeTweaks/Metrics/StoryTop/Hint": {
"title": "$:/language/ThemeTweaks/Metrics/StoryTop/Hint",
"text": "how far the top margin of the story river<br>is from the top of the page"
},
"$:/language/ThemeTweaks/Metrics/StoryRight": {
"title": "$:/language/ThemeTweaks/Metrics/StoryRight",
"text": "Story right"
},
"$:/language/ThemeTweaks/Metrics/StoryRight/Hint": {
"title": "$:/language/ThemeTweaks/Metrics/StoryRight/Hint",
"text": "how far the left margin of the sidebar <br>is from the left of the page"
},
"$:/language/ThemeTweaks/Metrics/StoryWidth": {
"title": "$:/language/ThemeTweaks/Metrics/StoryWidth",
"text": "Story width"
},
"$:/language/ThemeTweaks/Metrics/StoryWidth/Hint": {
"title": "$:/language/ThemeTweaks/Metrics/StoryWidth/Hint",
"text": "the overall width of the story river"
},
"$:/language/ThemeTweaks/Metrics/TiddlerWidth": {
"title": "$:/language/ThemeTweaks/Metrics/TiddlerWidth",
"text": "Tiddler width"
},
"$:/language/ThemeTweaks/Metrics/TiddlerWidth/Hint": {
"title": "$:/language/ThemeTweaks/Metrics/TiddlerWidth/Hint",
"text": "within the story river"
},
"$:/language/ThemeTweaks/Metrics/SidebarBreakpoint": {
"title": "$:/language/ThemeTweaks/Metrics/SidebarBreakpoint",
"text": "Sidebar breakpoint"
},
"$:/language/ThemeTweaks/Metrics/SidebarBreakpoint/Hint": {
"title": "$:/language/ThemeTweaks/Metrics/SidebarBreakpoint/Hint",
"text": "the minimum page width at which the story<br>river and sidebar will appear side by side"
},
"$:/language/ThemeTweaks/Metrics/SidebarWidth": {
"title": "$:/language/ThemeTweaks/Metrics/SidebarWidth",
"text": "Sidebar width"
},
"$:/language/ThemeTweaks/Metrics/SidebarWidth/Hint": {
"title": "$:/language/ThemeTweaks/Metrics/SidebarWidth/Hint",
"text": "the width of the sidebar in fluid-fixed layout"
},
"$:/language/TiddlerInfo/Advanced/Caption": {
"title": "$:/language/TiddlerInfo/Advanced/Caption",
"text": "Advanced"
},
"$:/language/TiddlerInfo/Advanced/PluginInfo/Empty/Hint": {
"title": "$:/language/TiddlerInfo/Advanced/PluginInfo/Empty/Hint",
"text": "none"
},
"$:/language/TiddlerInfo/Advanced/PluginInfo/Heading": {
"title": "$:/language/TiddlerInfo/Advanced/PluginInfo/Heading",
"text": "Plugin Details"
},
"$:/language/TiddlerInfo/Advanced/PluginInfo/Hint": {
"title": "$:/language/TiddlerInfo/Advanced/PluginInfo/Hint",
"text": "This plugin contains the following shadow tiddlers:"
},
"$:/language/TiddlerInfo/Advanced/ShadowInfo/Heading": {
"title": "$:/language/TiddlerInfo/Advanced/ShadowInfo/Heading",
"text": "Shadow Status"
},
"$:/language/TiddlerInfo/Advanced/ShadowInfo/NotShadow/Hint": {
"title": "$:/language/TiddlerInfo/Advanced/ShadowInfo/NotShadow/Hint",
"text": "The tiddler <$link to=<<infoTiddler>>><$text text=<<infoTiddler>>/></$link> is not a shadow tiddler"
},
"$:/language/TiddlerInfo/Advanced/ShadowInfo/Shadow/Hint": {
"title": "$:/language/TiddlerInfo/Advanced/ShadowInfo/Shadow/Hint",
"text": "The tiddler <$link to=<<infoTiddler>>><$text text=<<infoTiddler>>/></$link> is a shadow tiddler"
},
"$:/language/TiddlerInfo/Advanced/ShadowInfo/Shadow/Source": {
"title": "$:/language/TiddlerInfo/Advanced/ShadowInfo/Shadow/Source",
"text": "It is defined in the plugin <$link to=<<pluginTiddler>>><$text text=<<pluginTiddler>>/></$link>"
},
"$:/language/TiddlerInfo/Advanced/ShadowInfo/OverriddenShadow/Hint": {
"title": "$:/language/TiddlerInfo/Advanced/ShadowInfo/OverriddenShadow/Hint",
"text": "It is overridden by an ordinary tiddler"
},
"$:/language/TiddlerInfo/Fields/Caption": {
"title": "$:/language/TiddlerInfo/Fields/Caption",
"text": "Fields"
},
"$:/language/TiddlerInfo/List/Caption": {
"title": "$:/language/TiddlerInfo/List/Caption",
"text": "List"
},
"$:/language/TiddlerInfo/List/Empty": {
"title": "$:/language/TiddlerInfo/List/Empty",
"text": "This tiddler does not have a list"
},
"$:/language/TiddlerInfo/Listed/Caption": {
"title": "$:/language/TiddlerInfo/Listed/Caption",
"text": "Listed"
},
"$:/language/TiddlerInfo/Listed/Empty": {
"title": "$:/language/TiddlerInfo/Listed/Empty",
"text": "This tiddler is not listed by any others"
},
"$:/language/TiddlerInfo/References/Caption": {
"title": "$:/language/TiddlerInfo/References/Caption",
"text": "References"
},
"$:/language/TiddlerInfo/References/Empty": {
"title": "$:/language/TiddlerInfo/References/Empty",
"text": "No tiddlers link to this one"
},
"$:/language/TiddlerInfo/Tagging/Caption": {
"title": "$:/language/TiddlerInfo/Tagging/Caption",
"text": "Tagging"
},
"$:/language/TiddlerInfo/Tagging/Empty": {
"title": "$:/language/TiddlerInfo/Tagging/Empty",
"text": "No tiddlers are tagged with this one"
},
"$:/language/TiddlerInfo/Tools/Caption": {
"title": "$:/language/TiddlerInfo/Tools/Caption",
"text": "Tools"
},
"$:/language/Docs/Types/application/javascript": {
"title": "$:/language/Docs/Types/application/javascript",
"description": "JavaScript code",
"name": "application/javascript",
"group": "Developer",
"group-sort": "2"
},
"$:/language/Docs/Types/application/json": {
"title": "$:/language/Docs/Types/application/json",
"description": "JSON data",
"name": "application/json",
"group": "Developer",
"group-sort": "2"
},
"$:/language/Docs/Types/application/x-tiddler-dictionary": {
"title": "$:/language/Docs/Types/application/x-tiddler-dictionary",
"description": "Data dictionary",
"name": "application/x-tiddler-dictionary",
"group": "Developer",
"group-sort": "2"
},
"$:/language/Docs/Types/image/gif": {
"title": "$:/language/Docs/Types/image/gif",
"description": "GIF image",
"name": "image/gif",
"group": "Image",
"group-sort": "1"
},
"$:/language/Docs/Types/image/jpeg": {
"title": "$:/language/Docs/Types/image/jpeg",
"description": "JPEG image",
"name": "image/jpeg",
"group": "Image",
"group-sort": "1"
},
"$:/language/Docs/Types/image/png": {
"title": "$:/language/Docs/Types/image/png",
"description": "PNG image",
"name": "image/png",
"group": "Image",
"group-sort": "1"
},
"$:/language/Docs/Types/image/svg+xml": {
"title": "$:/language/Docs/Types/image/svg+xml",
"description": "Structured Vector Graphics image",
"name": "image/svg+xml",
"group": "Image",
"group-sort": "1"
},
"$:/language/Docs/Types/image/x-icon": {
"title": "$:/language/Docs/Types/image/x-icon",
"description": "ICO format icon file",
"name": "image/x-icon",
"group": "Image",
"group-sort": "1"
},
"$:/language/Docs/Types/text/css": {
"title": "$:/language/Docs/Types/text/css",
"description": "Static stylesheet",
"name": "text/css",
"group": "Developer",
"group-sort": "2"
},
"$:/language/Docs/Types/text/html": {
"title": "$:/language/Docs/Types/text/html",
"description": "HTML markup",
"name": "text/html",
"group": "Text",
"group-sort": "0"
},
"$:/language/Docs/Types/text/plain": {
"title": "$:/language/Docs/Types/text/plain",
"description": "Plain text",
"name": "text/plain",
"group": "Text",
"group-sort": "0"
},
"$:/language/Docs/Types/text/vnd.tiddlywiki": {
"title": "$:/language/Docs/Types/text/vnd.tiddlywiki",
"description": "TiddlyWiki 5",
"name": "text/vnd.tiddlywiki",
"group": "Text",
"group-sort": "0"
},
"$:/language/Docs/Types/text/x-tiddlywiki": {
"title": "$:/language/Docs/Types/text/x-tiddlywiki",
"description": "TiddlyWiki Classic",
"name": "text/x-tiddlywiki",
"group": "Text",
"group-sort": "0"
},
"$:/languages/en-GB/icon": {
"title": "$:/languages/en-GB/icon",
"type": "image/svg+xml",
"text": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 60 30\" width=\"1200\" height=\"600\">\n<clipPath id=\"t\">\n\t<path d=\"M30,15 h30 v15 z v15 h-30 z h-30 v-15 z v-15 h30 z\"/>\n</clipPath>\n<path d=\"M0,0 v30 h60 v-30 z\" fill=\"#00247d\"/>\n<path d=\"M0,0 L60,30 M60,0 L0,30\" stroke=\"#fff\" stroke-width=\"6\"/>\n<path d=\"M0,0 L60,30 M60,0 L0,30\" clip-path=\"url(#t)\" stroke=\"#cf142b\" stroke-width=\"4\"/>\n<path d=\"M30,0 v30 M0,15 h60\" stroke=\"#fff\" stroke-width=\"10\"/>\n<path d=\"M30,0 v30 M0,15 h60\" stroke=\"#cf142b\" stroke-width=\"6\"/>\n</svg>\n"
},
"$:/languages/en-GB": {
"title": "$:/languages/en-GB",
"name": "en-GB",
"description": "English (British)",
"author": "JeremyRuston",
"core-version": ">=5.0.0\"",
"text": "Stub pseudo-plugin for the default language"
},
"$:/core/modules/commander.js": {
"title": "$:/core/modules/commander.js",
"text": "/*\\\ntitle: $:/core/modules/commander.js\ntype: application/javascript\nmodule-type: global\n\nThe $tw.Commander class is a command interpreter\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nParse a sequence of commands\n\tcommandTokens: an array of command string tokens\n\twiki: reference to the wiki store object\n\tstreams: {output:, error:}, each of which has a write(string) method\n\tcallback: a callback invoked as callback(err) where err is null if there was no error\n*/\nvar Commander = function(commandTokens,callback,wiki,streams) {\n\tvar path = require(\"path\");\n\tthis.commandTokens = commandTokens;\n\tthis.nextToken = 0;\n\tthis.callback = callback;\n\tthis.wiki = wiki;\n\tthis.streams = streams;\n\tthis.outputPath = path.resolve($tw.boot.wikiPath,$tw.config.wikiOutputSubDir);\n};\n\n/*\nLog a string if verbose flag is set\n*/\nCommander.prototype.log = function(str) {\n\tif(this.verbose) {\n\t\tthis.streams.output.write(str + \"\\n\");\n\t}\n};\n\n/*\nWrite a string if verbose flag is set\n*/\nCommander.prototype.write = function(str) {\n\tif(this.verbose) {\n\t\tthis.streams.output.write(str);\n\t}\n};\n\n/*\nAdd a string of tokens to the command queue\n*/\nCommander.prototype.addCommandTokens = function(commandTokens) {\n\tvar params = commandTokens.slice(0);\n\tparams.unshift(0);\n\tparams.unshift(this.nextToken);\n\tArray.prototype.splice.apply(this.commandTokens,params);\n};\n\n/*\nExecute the sequence of commands and invoke a callback on completion\n*/\nCommander.prototype.execute = function() {\n\tthis.executeNextCommand();\n};\n\n/*\nExecute the next command in the sequence\n*/\nCommander.prototype.executeNextCommand = function() {\n\tvar self = this;\n\t// Invoke the callback if there are no more commands\n\tif(this.nextToken >= this.commandTokens.length) {\n\t\tthis.callback(null);\n\t} else {\n\t\t// Get and check the command token\n\t\tvar commandName = this.commandTokens[this.nextToken++];\n\t\tif(commandName.substr(0,2) !== \"--\") {\n\t\t\tthis.callback(\"Missing command: \" + commandName);\n\t\t} else {\n\t\t\tcommandName = commandName.substr(2); // Trim off the --\n\t\t\t// Accumulate the parameters to the command\n\t\t\tvar params = [];\n\t\t\twhile(this.nextToken < this.commandTokens.length && \n\t\t\t\tthis.commandTokens[this.nextToken].substr(0,2) !== \"--\") {\n\t\t\t\tparams.push(this.commandTokens[this.nextToken++]);\n\t\t\t}\n\t\t\t// Get the command info\n\t\t\tvar command = $tw.commands[commandName],\n\t\t\t\tc,err;\n\t\t\tif(!command) {\n\t\t\t\tthis.callback(\"Unknown command: \" + commandName);\n\t\t\t} else {\n\t\t\t\tif(this.verbose) {\n\t\t\t\t\tthis.streams.output.write(\"Executing command: \" + commandName + \" \" + params.join(\" \") + \"\\n\");\n\t\t\t\t}\n\t\t\t\t// Parse named parameters if required\n\t\t\t\tif(command.info.namedParameterMode) {\n\t\t\t\t\tparams = this.extractNamedParameters(params,command.info.mandatoryParameters);\n\t\t\t\t\tif(typeof params === \"string\") {\n\t\t\t\t\t\treturn this.callback(params);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif(command.info.synchronous) {\n\t\t\t\t\t// Synchronous command\n\t\t\t\t\tc = new command.Command(params,this);\n\t\t\t\t\terr = c.execute();\n\t\t\t\t\tif(err) {\n\t\t\t\t\t\tthis.callback(err);\n\t\t\t\t\t} else {\n\t\t\t\t\t\tthis.executeNextCommand();\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\t// Asynchronous command\n\t\t\t\t\tc = new command.Command(params,this,function(err) {\n\t\t\t\t\t\tif(err) {\n\t\t\t\t\t\t\tself.callback(err);\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tself.executeNextCommand();\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t\terr = c.execute();\n\t\t\t\t\tif(err) {\n\t\t\t\t\t\tthis.callback(err);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n};\n\n/*\nGiven an array of parameter strings `params` in name:value format, and an array of mandatory parameter names in `mandatoryParameters`, returns a hashmap of values or a string if error\n*/\nCommander.prototype.extractNamedParameters = function(params,mandatoryParameters) {\n\tmandatoryParameters = mandatoryParameters || [];\n\tvar errors = [],\n\t\tparamsByName = Object.create(null);\n\t// Extract the parameters\n\t$tw.utils.each(params,function(param) {\n\t\tvar index = param.indexOf(\"=\");\n\t\tif(index < 1) {\n\t\t\terrors.push(\"malformed named parameter: '\" + param + \"'\");\n\t\t}\n\t\tparamsByName[param.slice(0,index)] = $tw.utils.trim(param.slice(index+1));\n\t});\n\t// Check the mandatory parameters are present\n\t$tw.utils.each(mandatoryParameters,function(mandatoryParameter) {\n\t\tif(!$tw.utils.hop(paramsByName,mandatoryParameter)) {\n\t\t\terrors.push(\"missing mandatory parameter: '\" + mandatoryParameter + \"'\");\n\t\t}\n\t});\n\t// Return any errors\n\tif(errors.length > 0) {\n\t\treturn errors.join(\" and\\n\");\n\t} else {\n\t\treturn paramsByName;\t\t\n\t}\n};\n\nCommander.initCommands = function(moduleType) {\n\tmoduleType = moduleType || \"command\";\n\t$tw.commands = {};\n\t$tw.modules.forEachModuleOfType(moduleType,function(title,module) {\n\t\tvar c = $tw.commands[module.info.name] = {};\n\t\t// Add the methods defined by the module\n\t\tfor(var f in module) {\n\t\t\tif($tw.utils.hop(module,f)) {\n\t\t\t\tc[f] = module[f];\n\t\t\t}\n\t\t}\n\t});\n};\n\nexports.Commander = Commander;\n\n})();\n",
"type": "application/javascript",
"module-type": "global"
},
"$:/core/modules/commands/build.js": {
"title": "$:/core/modules/commands/build.js",
"text": "/*\\\ntitle: $:/core/modules/commands/build.js\ntype: application/javascript\nmodule-type: command\n\nCommand to build a build target\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.info = {\n\tname: \"build\",\n\tsynchronous: true\n};\n\nvar Command = function(params,commander) {\n\tthis.params = params;\n\tthis.commander = commander;\n};\n\nCommand.prototype.execute = function() {\n\t// Get the build targets defined in the wiki\n\tvar buildTargets = $tw.boot.wikiInfo.build;\n\tif(!buildTargets) {\n\t\treturn \"No build targets defined\";\n\t}\n\t// Loop through each of the specified targets\n\tvar targets;\n\tif(this.params.length > 0) {\n\t\ttargets = this.params;\n\t} else {\n\t\ttargets = Object.keys(buildTargets);\n\t}\n\tfor(var targetIndex=0; targetIndex<targets.length; targetIndex++) {\n\t\tvar target = targets[targetIndex],\n\t\t\tcommands = buildTargets[target];\n\t\tif(!commands) {\n\t\t\treturn \"Build target '\" + target + \"' not found\";\n\t\t}\n\t\t// Add the commands to the queue\n\t\tthis.commander.addCommandTokens(commands);\n\t}\n\treturn null;\n};\n\nexports.Command = Command;\n\n})();\n",
"type": "application/javascript",
"module-type": "command"
},
"$:/core/modules/commands/clearpassword.js": {
"title": "$:/core/modules/commands/clearpassword.js",
"text": "/*\\\ntitle: $:/core/modules/commands/clearpassword.js\ntype: application/javascript\nmodule-type: command\n\nClear password for crypto operations\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.info = {\n\tname: \"clearpassword\",\n\tsynchronous: true\n};\n\nvar Command = function(params,commander,callback) {\n\tthis.params = params;\n\tthis.commander = commander;\n\tthis.callback = callback;\n};\n\nCommand.prototype.execute = function() {\n\t$tw.crypto.setPassword(null);\n\treturn null;\n};\n\nexports.Command = Command;\n\n})();\n",
"type": "application/javascript",
"module-type": "command"
},
"$:/core/modules/commands/deletetiddlers.js": {
"title": "$:/core/modules/commands/deletetiddlers.js",
"text": "/*\\\ntitle: $:/core/modules/commands/deletetiddlers.js\ntype: application/javascript\nmodule-type: command\n\nCommand to delete tiddlers\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.info = {\n\tname: \"deletetiddlers\",\n\tsynchronous: true\n};\n\nvar Command = function(params,commander,callback) {\n\tthis.params = params;\n\tthis.commander = commander;\n\tthis.callback = callback;\n};\n\nCommand.prototype.execute = function() {\n\tif(this.params.length < 1) {\n\t\treturn \"Missing filter\";\n\t}\n\tvar self = this,\n\t\twiki = this.commander.wiki,\n\t\tfilter = this.params[0],\n\t\ttiddlers = wiki.filterTiddlers(filter);\n\t$tw.utils.each(tiddlers,function(title) {\n\t\twiki.deleteTiddler(title);\n\t});\n\treturn null;\n};\n\nexports.Command = Command;\n\n})();\n",
"type": "application/javascript",
"module-type": "command"
},
"$:/core/modules/commands/editions.js": {
"title": "$:/core/modules/commands/editions.js",
"text": "/*\\\ntitle: $:/core/modules/commands/editions.js\ntype: application/javascript\nmodule-type: command\n\nCommand to list the available editions\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.info = {\n\tname: \"editions\",\n\tsynchronous: true\n};\n\nvar Command = function(params,commander) {\n\tthis.params = params;\n\tthis.commander = commander;\n};\n\nCommand.prototype.execute = function() {\n\tvar self = this;\n\t// Output the list\n\tthis.commander.streams.output.write(\"Available editions:\\n\\n\");\n\tvar editionInfo = $tw.utils.getEditionInfo();\n\t$tw.utils.each(editionInfo,function(info,name) {\n\t\tself.commander.streams.output.write(\" \" + name + \": \" + info.description + \"\\n\");\n\t});\n\tthis.commander.streams.output.write(\"\\n\");\n\treturn null;\n};\n\nexports.Command = Command;\n\n})();\n",
"type": "application/javascript",
"module-type": "command"
},
"$:/core/modules/commands/fetch.js": {
"title": "$:/core/modules/commands/fetch.js",
"text": "/*\\\ntitle: $:/core/modules/commands/fetch.js\ntype: application/javascript\nmodule-type: command\n\nCommands to fetch external tiddlers\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.info = {\n\tname: \"fetch\",\n\tsynchronous: false\n};\n\nvar Command = function(params,commander,callback) {\n\tthis.params = params;\n\tthis.commander = commander;\n\tthis.callback = callback;\n};\n\nCommand.prototype.execute = function() {\n\tif(this.params.length < 2) {\n\t\treturn \"Missing subcommand and url\";\n\t}\n\tswitch(this.params[0]) {\n\t\tcase \"raw-file\":\n\t\t\treturn this.fetchFiles({\n\t\t\t\traw: true,\n\t\t\t\turl: this.params[1],\n\t\t\t\ttransformFilter: this.params[2] || \"\",\n\t\t\t\tcallback: this.callback\n\t\t\t});\n\t\t\tbreak;\n\t\tcase \"file\":\n\t\t\treturn this.fetchFiles({\n\t\t\t\turl: this.params[1],\n\t\t\t\timportFilter: this.params[2],\n\t\t\t\ttransformFilter: this.params[3] || \"\",\n\t\t\t\tcallback: this.callback\n\t\t\t});\n\t\t\tbreak;\n\t\tcase \"raw-files\":\n\t\t\treturn this.fetchFiles({\n\t\t\t\traw: true,\n\t\t\t\turlFilter: this.params[1],\n\t\t\t\ttransformFilter: this.params[2] || \"\",\n\t\t\t\tcallback: this.callback\n\t\t\t});\n\t\t\tbreak;\n\t\tcase \"files\":\n\t\t\treturn this.fetchFiles({\n\t\t\t\turlFilter: this.params[1],\n\t\t\t\timportFilter: this.params[2],\n\t\t\t\ttransformFilter: this.params[3] || \"\",\n\t\t\t\tcallback: this.callback\n\t\t\t});\n\t\t\tbreak;\n\t}\n\treturn null;\n};\n\nCommand.prototype.fetchFiles = function(options) {\n\tvar self = this;\n\t// Get the list of URLs\n\tvar urls;\n\tif(options.url) {\n\t\turls = [options.url]\n\t} else if(options.urlFilter) {\n\t\turls = $tw.wiki.filterTiddlers(options.urlFilter);\n\t} else {\n\t\treturn \"Missing URL\";\n\t}\n\t// Process each URL in turn\n\tvar next = 0;\n\tvar getNextFile = function(err) {\n\t\tif(err) {\n\t\t\treturn options.callback(err);\n\t\t}\n\t\tif(next < urls.length) {\n\t\t\tself.fetchFile(urls[next++],options,getNextFile);\n\t\t} else {\n\t\t\toptions.callback(null);\n\t\t}\n\t};\n\tgetNextFile(null);\n\t// Success\n\treturn null;\n};\n\nCommand.prototype.fetchFile = function(url,options,callback,redirectCount) {\n\tif(redirectCount > 10) {\n\t\treturn callback(\"Error too many redirects retrieving \" + url);\n\t}\n\tvar self = this,\n\t\tlib = url.substr(0,8) === \"https://\" ? require(\"https\") : require(\"http\");\n\tlib.get(url).on(\"response\",function(response) {\n\t var type = (response.headers[\"content-type\"] || \"\").split(\";\")[0],\n\t \tdata = [];\n\t self.commander.write(\"Reading \" + url + \": \");\n\t response.on(\"data\",function(chunk) {\n\t data.push(chunk);\n\t self.commander.write(\".\");\n\t });\n\t response.on(\"end\",function() {\n\t self.commander.write(\"\\n\");\n\t if(response.statusCode === 200) {\n\t\t self.processBody(Buffer.concat(data),type,options,url);\n\t\t callback(null);\n\t } else {\n\t \tif(response.statusCode === 302 || response.statusCode === 303 || response.statusCode === 307) {\n\t \t\treturn self.fetchFile(response.headers.location,options,callback,redirectCount + 1);\n\t \t} else {\n\t\t \treturn callback(\"Error \" + response.statusCode + \" retrieving \" + url)\t \t\t\n\t \t}\n\t }\n\t \t});\n\t \tresponse.on(\"error\",function(e) {\n\t\t\tconsole.log(\"Error on GET request: \" + e);\n\t\t\tcallback(e);\n\t \t});\n\t});\n\treturn null;\n};\n\nCommand.prototype.processBody = function(body,type,options,url) {\n\tvar self = this;\n\t// Collect the tiddlers in a wiki\n\tvar incomingWiki = new $tw.Wiki();\n\tif(options.raw) {\n\t\tvar typeInfo = type ? $tw.config.contentTypeInfo[type] : null,\n\t\t\tencoding = typeInfo ? typeInfo.encoding : \"utf8\";\n\t\tincomingWiki.addTiddler(new $tw.Tiddler({\n\t\t\ttitle: url,\n\t\t\ttype: type,\n\t\t\ttext: body.toString(encoding)\n\t\t}));\n\t} else {\n\t\t// Deserialise the file to extract the tiddlers\n\t\tvar tiddlers = this.commander.wiki.deserializeTiddlers(type || \"text/html\",body.toString(\"utf8\"),{});\n\t\t$tw.utils.each(tiddlers,function(tiddler) {\n\t\t\tincomingWiki.addTiddler(new $tw.Tiddler(tiddler));\n\t\t});\n\t}\n\t// Filter the tiddlers to select the ones we want\n\tvar filteredTitles = incomingWiki.filterTiddlers(options.importFilter || \"[all[tiddlers]]\");\n\t// Import the selected tiddlers\n\tvar count = 0;\n\tincomingWiki.each(function(tiddler,title) {\n\t\tif(filteredTitles.indexOf(title) !== -1) {\n\t\t\tvar newTiddler;\n\t\t\tif(options.transformFilter) {\n\t\t\t\tvar transformedTitle = (incomingWiki.filterTiddlers(options.transformFilter,null,self.commander.wiki.makeTiddlerIterator([title])) || [\"\"])[0];\n\t\t\t\tif(transformedTitle) {\n\t\t\t\t\tself.commander.log(\"Importing \" + title + \" as \" + transformedTitle)\n\t\t\t\t\tnewTiddler = new $tw.Tiddler(tiddler,{title: transformedTitle});\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tself.commander.log(\"Importing \" + title)\n\t\t\t\tnewTiddler = tiddler;\n\t\t\t}\n\t\t\tself.commander.wiki.importTiddler(newTiddler);\n\t\t\tcount++;\n\t\t}\n\t});\n\tself.commander.log(\"Imported \" + count + \" tiddlers\")\n};\n\nexports.Command = Command;\n\n})();\n",
"type": "application/javascript",
"module-type": "command"
},
"$:/core/modules/commands/help.js": {
"title": "$:/core/modules/commands/help.js",
"text": "/*\\\ntitle: $:/core/modules/commands/help.js\ntype: application/javascript\nmodule-type: command\n\nHelp command\n\n\\*/\n(function(){\n\n/*jshint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.info = {\n\tname: \"help\",\n\tsynchronous: true\n};\n\nvar Command = function(params,commander) {\n\tthis.params = params;\n\tthis.commander = commander;\n};\n\nCommand.prototype.execute = function() {\n\tvar subhelp = this.params[0] || \"default\",\n\t\thelpBase = \"$:/language/Help/\",\n\t\ttext;\n\tif(!this.commander.wiki.getTiddler(helpBase + subhelp)) {\n\t\tsubhelp = \"notfound\";\n\t}\n\t// Wikify the help as formatted text (ie block elements generate newlines)\n\ttext = this.commander.wiki.renderTiddler(\"text/plain-formatted\",helpBase + subhelp);\n\t// Remove any leading linebreaks\n\ttext = text.replace(/^(\\r?\\n)*/g,\"\");\n\tthis.commander.streams.output.write(text);\n};\n\nexports.Command = Command;\n\n})();\n",
"type": "application/javascript",
"module-type": "command"
},
"$:/core/modules/commands/import.js": {
"title": "$:/core/modules/commands/import.js",
"text": "/*\\\ntitle: $:/core/modules/commands/import.js\ntype: application/javascript\nmodule-type: command\n\nCommand to import tiddlers from a file\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.info = {\n\tname: \"import\",\n\tsynchronous: true\n};\n\nvar Command = function(params,commander,callback) {\n\tthis.params = params;\n\tthis.commander = commander;\n\tthis.callback = callback;\n};\n\nCommand.prototype.execute = function() {\n\tvar self = this,\n\t\tfs = require(\"fs\"),\n\t\tpath = require(\"path\");\n\tif(this.params.length < 2) {\n\t\treturn \"Missing parameters\";\n\t}\n\tvar filename = self.params[0],\n\t\tdeserializer = self.params[1],\n\t\ttitle = self.params[2] || filename,\n\t\tencoding = self.params[3] || \"utf8\",\n\t\ttext = fs.readFileSync(filename,encoding),\n\t\ttiddlers = this.commander.wiki.deserializeTiddlers(null,text,{title: title},{deserializer: deserializer});\n\t$tw.utils.each(tiddlers,function(tiddler) {\n\t\tself.commander.wiki.importTiddler(new $tw.Tiddler(tiddler));\n\t});\n\tthis.commander.log(tiddlers.length + \" tiddler(s) imported\");\n\treturn null;\n};\n\nexports.Command = Command;\n\n})();\n",
"type": "application/javascript",
"module-type": "command"
},
"$:/core/modules/commands/init.js": {
"title": "$:/core/modules/commands/init.js",
"text": "/*\\\ntitle: $:/core/modules/commands/init.js\ntype: application/javascript\nmodule-type: command\n\nCommand to initialise an empty wiki folder\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.info = {\n\tname: \"init\",\n\tsynchronous: true\n};\n\nvar Command = function(params,commander) {\n\tthis.params = params;\n\tthis.commander = commander;\n};\n\nCommand.prototype.execute = function() {\n\tvar fs = require(\"fs\"),\n\t\tpath = require(\"path\");\n\t// Check that we don't already have a valid wiki folder\n\tif($tw.boot.wikiTiddlersPath || ($tw.utils.isDirectory($tw.boot.wikiPath) && !$tw.utils.isDirectoryEmpty($tw.boot.wikiPath))) {\n\t\treturn \"Wiki folder is not empty\";\n\t}\n\t// Loop through each of the specified editions\n\tvar editions = this.params.length > 0 ? this.params : [\"empty\"];\n\tfor(var editionIndex=0; editionIndex<editions.length; editionIndex++) {\n\t\tvar editionName = editions[editionIndex];\n\t\t// Check the edition exists\n\t\tvar editionPath = $tw.findLibraryItem(editionName,$tw.getLibraryItemSearchPaths($tw.config.editionsPath,$tw.config.editionsEnvVar));\n\t\tif(!$tw.utils.isDirectory(editionPath)) {\n\t\t\treturn \"Edition '\" + editionName + \"' not found\";\n\t\t}\n\t\t// Copy the edition content\n\t\tvar err = $tw.utils.copyDirectory(editionPath,$tw.boot.wikiPath);\n\t\tif(!err) {\n\t\t\tthis.commander.streams.output.write(\"Copied edition '\" + editionName + \"' to \" + $tw.boot.wikiPath + \"\\n\");\n\t\t} else {\n\t\t\treturn err;\n\t\t}\n\t}\n\t// Tweak the tiddlywiki.info to remove any included wikis\n\tvar packagePath = $tw.boot.wikiPath + \"/tiddlywiki.info\",\n\t\tpackageJson = JSON.parse(fs.readFileSync(packagePath));\n\tdelete packageJson.includeWikis;\n\tfs.writeFileSync(packagePath,JSON.stringify(packageJson,null,$tw.config.preferences.jsonSpaces));\n\treturn null;\n};\n\nexports.Command = Command;\n\n})();\n",
"type": "application/javascript",
"module-type": "command"
},
"$:/core/modules/commands/listen.js": {
"title": "$:/core/modules/commands/listen.js",
"text": "/*\\\ntitle: $:/core/modules/commands/listen.js\ntype: application/javascript\nmodule-type: command\n\nListen for HTTP requests and serve tiddlers\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Server = require(\"$:/core/modules/server/server.js\").Server;\n\nexports.info = {\n\tname: \"listen\",\n\tsynchronous: true,\n\tnamedParameterMode: true,\n\tmandatoryParameters: [],\n};\n\nvar Command = function(params,commander,callback) {\n\tvar self = this;\n\tthis.params = params;\n\tthis.commander = commander;\n\tthis.callback = callback;\n};\n\nCommand.prototype.execute = function() {\n\tvar self = this;\n\tif(!$tw.boot.wikiTiddlersPath) {\n\t\t$tw.utils.warning(\"Warning: Wiki folder '\" + $tw.boot.wikiPath + \"' does not exist or is missing a tiddlywiki.info file\");\n\t}\n\t// Set up server\n\tthis.server = new Server({\n\t\twiki: this.commander.wiki,\n\t\tvariables: self.params\n\t});\n\tvar nodeServer = this.server.listen();\n\t$tw.hooks.invokeHook(\"th-server-command-post-start\",this.server,nodeServer,\"tiddlywiki\");\n\treturn null;\n};\n\nexports.Command = Command;\n\n})();\n",
"type": "application/javascript",
"module-type": "command"
},
"$:/core/modules/commands/load.js": {
"title": "$:/core/modules/commands/load.js",
"text": "/*\\\ntitle: $:/core/modules/commands/load.js\ntype: application/javascript\nmodule-type: command\n\nCommand to load tiddlers from a file or directory\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.info = {\n\tname: \"load\",\n\tsynchronous: false\n};\n\nvar Command = function(params,commander,callback) {\n\tthis.params = params;\n\tthis.commander = commander;\n\tthis.callback = callback;\n};\n\nCommand.prototype.execute = function() {\n\tvar self = this,\n\t\tfs = require(\"fs\"),\n\t\tpath = require(\"path\");\n\tif(this.params.length < 1) {\n\t\treturn \"Missing filename\";\n\t}\n\tvar tiddlers = $tw.loadTiddlersFromPath(self.params[0]),\n\t\tcount = 0;\n\t$tw.utils.each(tiddlers,function(tiddlerInfo) {\n\t\t$tw.utils.each(tiddlerInfo.tiddlers,function(tiddler) {\n\t\t\tself.commander.wiki.importTiddler(new $tw.Tiddler(tiddler));\n\t\t\tcount++;\n\t\t});\n\t});\n\tif(!count && self.params[1] !== \"noerror\") {\n\t\tself.callback(\"No tiddlers found in file \\\"\" + self.params[0] + \"\\\"\");\n\t} else {\n\t\tself.callback(null);\n\t}\n\treturn null;\n};\n\nexports.Command = Command;\n\n})();\n",
"type": "application/javascript",
"module-type": "command"
},
"$:/core/modules/commands/makelibrary.js": {
"title": "$:/core/modules/commands/makelibrary.js",
"text": "/*\\\ntitle: $:/core/modules/commands/makelibrary.js\ntype: application/javascript\nmodule-type: command\n\nCommand to pack all of the plugins in the library into a plugin tiddler of type \"library\"\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.info = {\n\tname: \"makelibrary\",\n\tsynchronous: true\n};\n\nvar UPGRADE_LIBRARY_TITLE = \"$:/UpgradeLibrary\";\n\nvar Command = function(params,commander,callback) {\n\tthis.params = params;\n\tthis.commander = commander;\n\tthis.callback = callback;\n};\n\nCommand.prototype.execute = function() {\n\tvar wiki = this.commander.wiki,\n\t\tfs = require(\"fs\"),\n\t\tpath = require(\"path\"),\n\t\tupgradeLibraryTitle = this.params[0] || UPGRADE_LIBRARY_TITLE,\n\t\ttiddlers = {};\n\t// Collect up the library plugins\n\tvar collectPlugins = function(folder) {\n\t\t\tvar pluginFolders = fs.readdirSync(folder);\n\t\t\tfor(var p=0; p<pluginFolders.length; p++) {\n\t\t\t\tif(!$tw.boot.excludeRegExp.test(pluginFolders[p])) {\n\t\t\t\t\tpluginFields = $tw.loadPluginFolder(path.resolve(folder,\"./\" + pluginFolders[p]));\n\t\t\t\t\tif(pluginFields && pluginFields.title) {\n\t\t\t\t\t\ttiddlers[pluginFields.title] = pluginFields;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\tcollectPublisherPlugins = function(folder) {\n\t\t\tvar publisherFolders = fs.readdirSync(folder);\n\t\t\tfor(var t=0; t<publisherFolders.length; t++) {\n\t\t\t\tif(!$tw.boot.excludeRegExp.test(publisherFolders[t])) {\n\t\t\t\t\tcollectPlugins(path.resolve(folder,\"./\" + publisherFolders[t]));\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\tcollectPublisherPlugins(path.resolve($tw.boot.corePath,$tw.config.pluginsPath));\n\tcollectPublisherPlugins(path.resolve($tw.boot.corePath,$tw.config.themesPath));\n\tcollectPlugins(path.resolve($tw.boot.corePath,$tw.config.languagesPath));\n\t// Save the upgrade library tiddler\n\tvar pluginFields = {\n\t\ttitle: upgradeLibraryTitle,\n\t\ttype: \"application/json\",\n\t\t\"plugin-type\": \"library\",\n\t\t\"text\": JSON.stringify({tiddlers: tiddlers},null,$tw.config.preferences.jsonSpaces)\n\t};\n\twiki.addTiddler(new $tw.Tiddler(pluginFields));\n\treturn null;\n};\n\nexports.Command = Command;\n\n})();\n",
"type": "application/javascript",
"module-type": "command"
},
"$:/core/modules/commands/output.js": {
"title": "$:/core/modules/commands/output.js",
"text": "/*\\\ntitle: $:/core/modules/commands/output.js\ntype: application/javascript\nmodule-type: command\n\nCommand to set the default output location (defaults to current working directory)\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.info = {\n\tname: \"output\",\n\tsynchronous: true\n};\n\nvar Command = function(params,commander,callback) {\n\tthis.params = params;\n\tthis.commander = commander;\n\tthis.callback = callback;\n};\n\nCommand.prototype.execute = function() {\n\tvar fs = require(\"fs\"),\n\t\tpath = require(\"path\");\n\tif(this.params.length < 1) {\n\t\treturn \"Missing output path\";\n\t}\n\tthis.commander.outputPath = path.resolve(process.cwd(),this.params[0]);\n\treturn null;\n};\n\nexports.Command = Command;\n\n})();\n",
"type": "application/javascript",
"module-type": "command"
},
"$:/core/modules/commands/password.js": {
"title": "$:/core/modules/commands/password.js",
"text": "/*\\\ntitle: $:/core/modules/commands/password.js\ntype: application/javascript\nmodule-type: command\n\nSave password for crypto operations\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.info = {\n\tname: \"password\",\n\tsynchronous: true\n};\n\nvar Command = function(params,commander,callback) {\n\tthis.params = params;\n\tthis.commander = commander;\n\tthis.callback = callback;\n};\n\nCommand.prototype.execute = function() {\n\tif(this.params.length < 1) {\n\t\treturn \"Missing password\";\n\t}\n\t$tw.crypto.setPassword(this.params[0]);\n\treturn null;\n};\n\nexports.Command = Command;\n\n})();\n",
"type": "application/javascript",
"module-type": "command"
},
"$:/core/modules/commands/render.js": {
"title": "$:/core/modules/commands/render.js",
"text": "/*\\\ntitle: $:/core/modules/commands/render.js\ntype: application/javascript\nmodule-type: command\n\nRender individual tiddlers and save the results to the specified files\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar widget = require(\"$:/core/modules/widgets/widget.js\");\n\nexports.info = {\n\tname: \"render\",\n\tsynchronous: true\n};\n\nvar Command = function(params,commander,callback) {\n\tthis.params = params;\n\tthis.commander = commander;\n\tthis.callback = callback;\n};\n\nCommand.prototype.execute = function() {\n\tif(this.params.length < 1) {\n\t\treturn \"Missing tiddler filter\";\n\t}\n\tvar self = this,\n\t\tfs = require(\"fs\"),\n\t\tpath = require(\"path\"),\n\t\twiki = this.commander.wiki,\n\t\ttiddlerFilter = this.params[0],\n\t\tfilenameFilter = this.params[1] || \"[is[tiddler]addsuffix[.html]]\",\n\t\ttype = this.params[2] || \"text/html\",\n\t\ttemplate = this.params[3],\n\t\tvarName = this.params[4],\n\t\tvarValue = this.params[5],\n\t\ttiddlers = wiki.filterTiddlers(tiddlerFilter);\n\t$tw.utils.each(tiddlers,function(title) {\n\t\tvar parser = wiki.parseTiddler(template || title),\n\t\t\tvariables = {currentTiddler: title};\n\t\tif(varName) {\n\t\t\tvariables[varName] = varValue || \"\";\n\t\t}\n\t\tvar widgetNode = wiki.makeWidget(parser,{variables: variables}),\n\t\t\tcontainer = $tw.fakeDocument.createElement(\"div\");\n\t\twidgetNode.render(container,null);\n\t\tvar text = type === \"text/html\" ? container.innerHTML : container.textContent,\n\t\t\tfilepath = path.resolve(self.commander.outputPath,wiki.filterTiddlers(filenameFilter,$tw.rootWidget,wiki.makeTiddlerIterator([title]))[0]);\n\t\tif(self.commander.verbose) {\n\t\t\tconsole.log(\"Rendering \\\"\" + title + \"\\\" to \\\"\" + filepath + \"\\\"\");\n\t\t}\n\t\t$tw.utils.createFileDirectories(filepath);\n\t\tfs.writeFileSync(filepath,text,\"utf8\");\n\t});\n\treturn null;\n};\n\nexports.Command = Command;\n\n})();\n",
"type": "application/javascript",
"module-type": "command"
},
"$:/core/modules/commands/rendertiddler.js": {
"title": "$:/core/modules/commands/rendertiddler.js",
"text": "/*\\\ntitle: $:/core/modules/commands/rendertiddler.js\ntype: application/javascript\nmodule-type: command\n\nCommand to render a tiddler and save it to a file\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.info = {\n\tname: \"rendertiddler\",\n\tsynchronous: false\n};\n\nvar Command = function(params,commander,callback) {\n\tthis.params = params;\n\tthis.commander = commander;\n\tthis.callback = callback;\n};\n\nCommand.prototype.execute = function() {\n\tif(this.params.length < 2) {\n\t\treturn \"Missing filename\";\n\t}\n\tvar self = this,\n\t\tfs = require(\"fs\"),\n\t\tpath = require(\"path\"),\n\t\ttitle = this.params[0],\n\t\tfilename = path.resolve(this.commander.outputPath,this.params[1]),\n\t\ttype = this.params[2] || \"text/html\",\n\t\ttemplate = this.params[3],\n\t\tname = this.params[4],\n\t\tvalue = this.params[5],\n\t\tvariables = {};\n\t$tw.utils.createFileDirectories(filename);\n\tif(template) {\n\t\tvariables.currentTiddler = title;\n\t\ttitle = template;\n\t}\n\tif(name && value) {\n\t\tvariables[name] = value;\n\t}\n\tfs.writeFile(filename,this.commander.wiki.renderTiddler(type,title,{variables: variables}),\"utf8\",function(err) {\n\t\tself.callback(err);\n\t});\n\treturn null;\n};\n\nexports.Command = Command;\n\n})();\n",
"type": "application/javascript",
"module-type": "command"
},
"$:/core/modules/commands/rendertiddlers.js": {
"title": "$:/core/modules/commands/rendertiddlers.js",
"text": "/*\\\ntitle: $:/core/modules/commands/rendertiddlers.js\ntype: application/javascript\nmodule-type: command\n\nCommand to render several tiddlers to a folder of files\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar widget = require(\"$:/core/modules/widgets/widget.js\");\n\nexports.info = {\n\tname: \"rendertiddlers\",\n\tsynchronous: true\n};\n\nvar Command = function(params,commander,callback) {\n\tthis.params = params;\n\tthis.commander = commander;\n\tthis.callback = callback;\n};\n\nCommand.prototype.execute = function() {\n\tif(this.params.length < 2) {\n\t\treturn \"Missing filename\";\n\t}\n\tvar self = this,\n\t\tfs = require(\"fs\"),\n\t\tpath = require(\"path\"),\n\t\twiki = this.commander.wiki,\n\t\tfilter = this.params[0],\n\t\ttemplate = this.params[1],\n\t\toutputPath = this.commander.outputPath,\n\t\tpathname = path.resolve(outputPath,this.params[2]),\t\t\n\t\ttype = this.params[3] || \"text/html\",\n\t\textension = this.params[4] || \".html\",\n\t\tdeleteDirectory = (this.params[5] || \"\").toLowerCase() !== \"noclean\",\n\t\ttiddlers = wiki.filterTiddlers(filter);\n\tif(deleteDirectory) {\n\t\t$tw.utils.deleteDirectory(pathname);\n\t}\n\t$tw.utils.each(tiddlers,function(title) {\n\t\tvar parser = wiki.parseTiddler(template),\n\t\t\twidgetNode = wiki.makeWidget(parser,{variables: {currentTiddler: title}}),\n\t\t\tcontainer = $tw.fakeDocument.createElement(\"div\");\n\t\twidgetNode.render(container,null);\n\t\tvar text = type === \"text/html\" ? container.innerHTML : container.textContent,\n\t\t\texportPath = null;\n\t\tif($tw.utils.hop($tw.macros,\"tv-get-export-path\")) {\n\t\t\tvar macroPath = $tw.macros[\"tv-get-export-path\"].run.apply(self,[title]);\n\t\t\tif(macroPath) {\n\t\t\t\texportPath = path.resolve(outputPath,macroPath + extension);\n\t\t\t}\n\t\t}\n\t\tvar finalPath = exportPath || path.resolve(pathname,encodeURIComponent(title) + extension);\n\t\t$tw.utils.createFileDirectories(finalPath);\n\t\tfs.writeFileSync(finalPath,text,\"utf8\");\n\t});\n\treturn null;\n};\n\nexports.Command = Command;\n\n})();\n",
"type": "application/javascript",
"module-type": "command"
},
"$:/core/modules/commands/save.js": {
"title": "$:/core/modules/commands/save.js",
"text": "/*\\\ntitle: $:/core/modules/commands/save.js\ntype: application/javascript\nmodule-type: command\n\nSaves individual tiddlers in their raw text or binary format to the specified files\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.info = {\n\tname: \"save\",\n\tsynchronous: true\n};\n\nvar Command = function(params,commander,callback) {\n\tthis.params = params;\n\tthis.commander = commander;\n\tthis.callback = callback;\n};\n\nCommand.prototype.execute = function() {\n\tif(this.params.length < 1) {\n\t\treturn \"Missing filename filter\";\n\t}\n\tvar self = this,\n\t\tfs = require(\"fs\"),\n\t\tpath = require(\"path\"),\n\t\twiki = this.commander.wiki,\n\t\ttiddlerFilter = this.params[0],\n\t\tfilenameFilter = this.params[1] || \"[is[tiddler]]\",\n\t\ttiddlers = wiki.filterTiddlers(tiddlerFilter);\n\t$tw.utils.each(tiddlers,function(title) {\n\t\tvar tiddler = self.commander.wiki.getTiddler(title),\n\t\t\ttype = tiddler.fields.type || \"text/vnd.tiddlywiki\",\n\t\t\tcontentTypeInfo = $tw.config.contentTypeInfo[type] || {encoding: \"utf8\"},\n\t\t\tfilepath = path.resolve(self.commander.outputPath,wiki.filterTiddlers(filenameFilter,$tw.rootWidget,wiki.makeTiddlerIterator([title]))[0]);\n\t\tif(self.commander.verbose) {\n\t\t\tconsole.log(\"Saving \\\"\" + title + \"\\\" to \\\"\" + filepath + \"\\\"\");\n\t\t}\n\t\t$tw.utils.createFileDirectories(filepath);\n\t\tfs.writeFileSync(filepath,tiddler.fields.text,contentTypeInfo.encoding);\n\t});\n\treturn null;\n};\n\nexports.Command = Command;\n\n})();\n",
"type": "application/javascript",
"module-type": "command"
},
"$:/core/modules/commands/savelibrarytiddlers.js": {
"title": "$:/core/modules/commands/savelibrarytiddlers.js",
"text": "/*\\\ntitle: $:/core/modules/commands/savelibrarytiddlers.js\ntype: application/javascript\nmodule-type: command\n\nCommand to save the subtiddlers of a bundle tiddler as a series of JSON files\n\n--savelibrarytiddlers <tiddler> <pathname> <skinnylisting>\n\nThe tiddler identifies the bundle tiddler that contains the subtiddlers.\n\nThe pathname specifies the pathname to the folder in which the JSON files should be saved. The filename is the URL encoded title of the subtiddler.\n\nThe skinnylisting specifies the title of the tiddler to which a JSON catalogue of the subtiddlers will be saved. The JSON file contains the same data as the bundle tiddler but with the `text` field removed.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.info = {\n\tname: \"savelibrarytiddlers\",\n\tsynchronous: true\n};\n\nvar Command = function(params,commander,callback) {\n\tthis.params = params;\n\tthis.commander = commander;\n\tthis.callback = callback;\n};\n\nCommand.prototype.execute = function() {\n\tif(this.params.length < 2) {\n\t\treturn \"Missing filename\";\n\t}\n\tvar self = this,\n\t\tfs = require(\"fs\"),\n\t\tpath = require(\"path\"),\n\t\tcontainerTitle = this.params[0],\n\t\tfilter = this.params[1],\n\t\tbasepath = this.params[2],\n\t\tskinnyListTitle = this.params[3];\n\t// Get the container tiddler as data\n\tvar containerData = self.commander.wiki.getTiddlerDataCached(containerTitle,undefined);\n\tif(!containerData) {\n\t\treturn \"'\" + containerTitle + \"' is not a tiddler bundle\";\n\t}\n\t// Filter the list of plugins\n\tvar pluginList = [];\n\t$tw.utils.each(containerData.tiddlers,function(tiddler,title) {\n\t\tpluginList.push(title);\n\t});\n\tvar filteredPluginList;\n\tif(filter) {\n\t\tfilteredPluginList = self.commander.wiki.filterTiddlers(filter,null,self.commander.wiki.makeTiddlerIterator(pluginList));\n\t} else {\n\t\tfilteredPluginList = pluginList;\n\t}\n\t// Iterate through the plugins\n\tvar skinnyList = [];\n\t$tw.utils.each(filteredPluginList,function(title) {\n\t\tvar tiddler = containerData.tiddlers[title];\n\t\t// Save each JSON file and collect the skinny data\n\t\tvar pathname = path.resolve(self.commander.outputPath,basepath + encodeURIComponent(title) + \".json\");\n\t\t$tw.utils.createFileDirectories(pathname);\n\t\tfs.writeFileSync(pathname,JSON.stringify(tiddler,null,$tw.config.preferences.jsonSpaces),\"utf8\");\n\t\t// Collect the skinny list data\n\t\tvar pluginTiddlers = JSON.parse(tiddler.text),\n\t\t\treadmeContent = (pluginTiddlers.tiddlers[title + \"/readme\"] || {}).text,\n\t\t\ticonTiddler = pluginTiddlers.tiddlers[title + \"/icon\"] || {},\n\t\t\ticonType = iconTiddler.type,\n\t\t\ticonText = iconTiddler.text,\n\t\t\ticonContent;\n\t\tif(iconType && iconText) {\n\t\t\ticonContent = $tw.utils.makeDataUri(iconText,iconType);\n\t\t}\n\t\tskinnyList.push($tw.utils.extend({},tiddler,{text: undefined, readme: readmeContent, icon: iconContent}));\n\t});\n\t// Save the catalogue tiddler\n\tif(skinnyListTitle) {\n\t\tself.commander.wiki.setTiddlerData(skinnyListTitle,skinnyList);\n\t}\n\treturn null;\n};\n\nexports.Command = Command;\n\n})();\n",
"type": "application/javascript",
"module-type": "command"
},
"$:/core/modules/commands/savetiddler.js": {
"title": "$:/core/modules/commands/savetiddler.js",
"text": "/*\\\ntitle: $:/core/modules/commands/savetiddler.js\ntype: application/javascript\nmodule-type: command\n\nCommand to save the content of a tiddler to a file\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.info = {\n\tname: \"savetiddler\",\n\tsynchronous: false\n};\n\nvar Command = function(params,commander,callback) {\n\tthis.params = params;\n\tthis.commander = commander;\n\tthis.callback = callback;\n};\n\nCommand.prototype.execute = function() {\n\tif(this.params.length < 2) {\n\t\treturn \"Missing filename\";\n\t}\n\tvar self = this,\n\t\tfs = require(\"fs\"),\n\t\tpath = require(\"path\"),\n\t\ttitle = this.params[0],\n\t\tfilename = path.resolve(this.commander.outputPath,this.params[1]),\n\t\ttiddler = this.commander.wiki.getTiddler(title);\n\tif(tiddler) {\n\t\tvar type = tiddler.fields.type || \"text/vnd.tiddlywiki\",\n\t\t\tcontentTypeInfo = $tw.config.contentTypeInfo[type] || {encoding: \"utf8\"};\n\t\t$tw.utils.createFileDirectories(filename);\n\t\tfs.writeFile(filename,tiddler.fields.text,contentTypeInfo.encoding,function(err) {\n\t\t\tself.callback(err);\n\t\t});\n\t} else {\n\t\treturn \"Missing tiddler: \" + title;\n\t}\n\treturn null;\n};\n\nexports.Command = Command;\n\n})();\n",
"type": "application/javascript",
"module-type": "command"
},
"$:/core/modules/commands/savetiddlers.js": {
"title": "$:/core/modules/commands/savetiddlers.js",
"text": "/*\\\ntitle: $:/core/modules/commands/savetiddlers.js\ntype: application/javascript\nmodule-type: command\n\nCommand to save several tiddlers to a folder of files\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar widget = require(\"$:/core/modules/widgets/widget.js\");\n\nexports.info = {\n\tname: \"savetiddlers\",\n\tsynchronous: true\n};\n\nvar Command = function(params,commander,callback) {\n\tthis.params = params;\n\tthis.commander = commander;\n\tthis.callback = callback;\n};\n\nCommand.prototype.execute = function() {\n\tif(this.params.length < 1) {\n\t\treturn \"Missing filename\";\n\t}\n\tvar self = this,\n\t\tfs = require(\"fs\"),\n\t\tpath = require(\"path\"),\n\t\twiki = this.commander.wiki,\n\t\tfilter = this.params[0],\n\t\tpathname = path.resolve(this.commander.outputPath,this.params[1]),\n\t\tdeleteDirectory = (this.params[2] || \"\").toLowerCase() !== \"noclean\",\n\t\ttiddlers = wiki.filterTiddlers(filter);\n\tif(deleteDirectory) {\n\t\t$tw.utils.deleteDirectory(pathname);\n\t}\n\t$tw.utils.createDirectory(pathname);\n\t$tw.utils.each(tiddlers,function(title) {\n\t\tvar tiddler = self.commander.wiki.getTiddler(title),\n\t\t\ttype = tiddler.fields.type || \"text/vnd.tiddlywiki\",\n\t\t\tcontentTypeInfo = $tw.config.contentTypeInfo[type] || {encoding: \"utf8\"},\n\t\t\tfilename = path.resolve(pathname,encodeURIComponent(title));\n\t\tfs.writeFileSync(filename,tiddler.fields.text,contentTypeInfo.encoding);\n\t});\n\treturn null;\n};\n\nexports.Command = Command;\n\n})();\n",
"type": "application/javascript",
"module-type": "command"
},
"$:/core/modules/commands/savewikifolder.js": {
"title": "$:/core/modules/commands/savewikifolder.js",
"text": "/*\\\ntitle: $:/core/modules/commands/savewikifolder.js\ntype: application/javascript\nmodule-type: command\n\nCommand to save the current wiki as a wiki folder\n\n--savewikifolder <wikifolderpath> [<filter>]\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.info = {\n\tname: \"savewikifolder\",\n\tsynchronous: true\n};\n\nvar fs,path;\nif($tw.node) {\n\tfs = require(\"fs\");\n\tpath = require(\"path\");\n}\n\nvar Command = function(params,commander,callback) {\n\tthis.params = params;\n\tthis.commander = commander;\n\tthis.callback = callback;\n};\n\nCommand.prototype.execute = function() {\n\tif(this.params.length < 1) {\n\t\treturn \"Missing wiki folder path\";\n\t}\n\tvar wikifoldermaker = new WikiFolderMaker(this.params[0],this.params[1],this.commander);\n\treturn wikifoldermaker.save();\n};\n\nfunction WikiFolderMaker(wikiFolderPath,wikiFilter,commander) {\n\tthis.wikiFolderPath = wikiFolderPath;\n\tthis.wikiFilter = wikiFilter || \"[all[tiddlers]]\";\n\tthis.commander = commander;\n\tthis.wiki = commander.wiki;\n\tthis.savedPaths = []; // So that we can detect filename clashes\n}\n\nWikiFolderMaker.prototype.log = function(str) {\n\tif(this.commander.verbose) {\n\t\tconsole.log(str);\n\t}\n};\n\nWikiFolderMaker.prototype.tiddlersToIgnore = [\n\t\"$:/boot/boot.css\",\n\t\"$:/boot/boot.js\",\n\t\"$:/boot/bootprefix.js\",\n\t\"$:/core\",\n\t\"$:/library/sjcl.js\",\n\t\"$:/temp/info-plugin\"\n];\n\n/*\nReturns null if successful, or an error string if there was an error\n*/\nWikiFolderMaker.prototype.save = function() {\n\tvar self = this;\n\t// Check that the output directory doesn't exist\n\tif(fs.existsSync(this.wikiFolderPath) && !$tw.utils.isDirectoryEmpty(this.wikiFolderPath)) {\n\t\treturn \"The unpackwiki command requires that the output wiki folder be empty\";\n\t}\n\t// Get the tiddlers from the source wiki\n\tvar tiddlerTitles = this.wiki.filterTiddlers(this.wikiFilter);\n\t// Initialise a new tiddlwiki.info file\n\tvar newWikiInfo = {};\n\t// Process each incoming tiddler in turn\n\t$tw.utils.each(tiddlerTitles,function(title) {\n\t\tvar tiddler = self.wiki.getTiddler(title);\n\t\tif(tiddler) {\n\t\t\tif(self.tiddlersToIgnore.indexOf(title) !== -1) {\n\t\t\t\t// Ignore the core plugin and the ephemeral info plugin\n\t\t\t\tself.log(\"Ignoring tiddler: \" + title);\n\t\t\t} else {\n\t\t\t\tvar type = tiddler.fields.type,\n\t\t\t\t\tpluginType = tiddler.fields[\"plugin-type\"];\n\t\t\t\tif(type === \"application/json\" && pluginType) {\n\t\t\t\t\t// Plugin tiddler\n\t\t\t\t\tvar libraryDetails = self.findPluginInLibrary(title);\n\t\t\t\t\tif(libraryDetails) {\n\t\t\t\t\t\t// A plugin from the core library\n\t\t\t\t\t\tself.log(\"Adding built-in plugin: \" + libraryDetails.name);\n\t\t\t\t\t\tnewWikiInfo[libraryDetails.type] = newWikiInfo[libraryDetails.type] || [];\n\t\t\t\t\t\t$tw.utils.pushTop(newWikiInfo[libraryDetails.type],libraryDetails.name);\n\t\t\t\t\t} else {\n\t\t\t\t\t\t// A custom plugin\n\t\t\t\t\t\tself.log(\"Processing custom plugin: \" + title);\n\t\t\t\t\t\tself.saveCustomPlugin(tiddler);\n\t\t\t\t\t}\t\t\t\t\n\t\t\t\t} else {\n\t\t\t\t\t// Ordinary tiddler\n\t\t\t\t\tself.saveTiddler(\"tiddlers\",tiddler);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t});\n\t// Save the tiddlywiki.info file\n\tthis.saveJSONFile(\"tiddlywiki.info\",newWikiInfo);\n\tself.log(\"Writing tiddlywiki.info: \" + JSON.stringify(newWikiInfo,null,$tw.config.preferences.jsonSpaces));\n\treturn null;\n};\n\n/*\nTest whether the specified tiddler is a plugin in the plugin library\n*/\nWikiFolderMaker.prototype.findPluginInLibrary = function(title) {\n\tvar parts = title.split(\"/\"),\n\t\tpluginPath, type, name;\n\tif(parts[0] === \"$:\") {\n\t\tif(parts[1] === \"languages\" && parts.length === 3) {\n\t\t\tpluginPath = \"languages\" + path.sep + parts[2];\n\t\t\ttype = parts[1];\n\t\t\tname = parts[2];\n\t\t} else if(parts[1] === \"plugins\" || parts[1] === \"themes\" && parts.length === 4) {\n\t\t\tpluginPath = parts[1] + path.sep + parts[2] + path.sep + parts[3];\n\t\t\ttype = parts[1];\n\t\t\tname = parts[2] + \"/\" + parts[3];\n\t\t}\n\t}\n\tif(pluginPath && type && name) {\n\t\tpluginPath = path.resolve($tw.boot.bootPath,\"..\",pluginPath);\n\t\tif(fs.existsSync(pluginPath)) {\n\t\t\treturn {\n\t\t\t\tpluginPath: pluginPath,\n\t\t\t\ttype: type,\n\t\t\t\tname: name\n\t\t\t};\n\t\t}\n\t}\n\treturn false;\n};\n\nWikiFolderMaker.prototype.saveCustomPlugin = function(pluginTiddler) {\n\tvar self = this,\n\t\tpluginTitle = pluginTiddler.fields.title,\n\t\ttitleParts = pluginTitle.split(\"/\"),\n\t\tdirectory = $tw.utils.generateTiddlerFilepath(titleParts[titleParts.length - 1],{\n\t\t\tdirectory: path.resolve(this.wikiFolderPath,pluginTiddler.fields[\"plugin-type\"] + \"s\")\n\t\t}),\n\t\tpluginInfo = pluginTiddler.getFieldStrings({exclude: [\"text\",\"type\"]});\n\tthis.saveJSONFile(directory + path.sep + \"plugin.info\",pluginInfo);\n\tself.log(\"Writing \" + directory + path.sep + \"plugin.info: \" + JSON.stringify(pluginInfo,null,$tw.config.preferences.jsonSpaces));\n\tvar pluginTiddlers = JSON.parse(pluginTiddler.fields.text).tiddlers; // A hashmap of tiddlers in the plugin\n\t$tw.utils.each(pluginTiddlers,function(tiddler) {\n\t\tself.saveTiddler(directory,new $tw.Tiddler(tiddler));\n\t});\n};\n\nWikiFolderMaker.prototype.saveTiddler = function(directory,tiddler) {\n\tvar fileInfo = $tw.utils.generateTiddlerFileInfo(tiddler,{\n\t\tdirectory: path.resolve(this.wikiFolderPath,directory),\n\t\twiki: this.wiki\n\t});\n\t$tw.utils.saveTiddlerToFileSync(tiddler,fileInfo);\n};\n\nWikiFolderMaker.prototype.saveJSONFile = function(filename,json) {\n\tthis.saveTextFile(filename,JSON.stringify(json,null,$tw.config.preferences.jsonSpaces));\n};\n\nWikiFolderMaker.prototype.saveTextFile = function(filename,data) {\n\tthis.saveFile(filename,\"utf8\",data);\n};\n\nWikiFolderMaker.prototype.saveFile = function(filename,encoding,data) {\n\tvar filepath = path.resolve(this.wikiFolderPath,filename);\n\t$tw.utils.createFileDirectories(filepath);\n\tfs.writeFileSync(filepath,data,encoding);\n};\n\nexports.Command = Command;\n\n})();\n",
"type": "application/javascript",
"module-type": "command"
},
"$:/core/modules/commands/server.js": {
"title": "$:/core/modules/commands/server.js",
"text": "/*\\\ntitle: $:/core/modules/commands/server.js\ntype: application/javascript\nmodule-type: command\n\nDeprecated legacy command for serving tiddlers\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Server = require(\"$:/core/modules/server/server.js\").Server;\n\nexports.info = {\n\tname: \"server\",\n\tsynchronous: true\n};\n\nvar Command = function(params,commander,callback) {\n\tvar self = this;\n\tthis.params = params;\n\tthis.commander = commander;\n\tthis.callback = callback;\n};\n\nCommand.prototype.execute = function() {\n\tif(!$tw.boot.wikiTiddlersPath) {\n\t\t$tw.utils.warning(\"Warning: Wiki folder '\" + $tw.boot.wikiPath + \"' does not exist or is missing a tiddlywiki.info file\");\n\t}\n\t// Set up server\n\tthis.server = new Server({\n\t\twiki: this.commander.wiki,\n\t\tvariables: {\n\t\t\tport: this.params[0],\n\t\t\thost: this.params[6],\n\t\t\t\"root-tiddler\": this.params[1],\n\t\t\t\"root-render-type\": this.params[2],\n\t\t\t\"root-serve-type\": this.params[3],\n\t\t\tusername: this.params[4],\n\t\t\tpassword: this.params[5],\n\t\t\t\"path-prefix\": this.params[7],\n\t\t\t\"debug-level\": this.params[8]\n\t\t}\n\t});\n\tvar nodeServer = this.server.listen();\n\t$tw.hooks.invokeHook(\"th-server-command-post-start\",this.server,nodeServer,\"tiddlywiki\");\n\treturn null;\n};\n\nexports.Command = Command;\n\n})();\n",
"type": "application/javascript",
"module-type": "command"
},
"$:/core/modules/commands/setfield.js": {
"title": "$:/core/modules/commands/setfield.js",
"text": "/*\\\ntitle: $:/core/modules/commands/setfield.js\ntype: application/javascript\nmodule-type: command\n\nCommand to modify selected tiddlers to set a field to the text of a template tiddler that has been wikified with the selected tiddler as the current tiddler.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar widget = require(\"$:/core/modules/widgets/widget.js\");\n\nexports.info = {\n\tname: \"setfield\",\n\tsynchronous: true\n};\n\nvar Command = function(params,commander,callback) {\n\tthis.params = params;\n\tthis.commander = commander;\n\tthis.callback = callback;\n};\n\nCommand.prototype.execute = function() {\n\tif(this.params.length < 4) {\n\t\treturn \"Missing parameters\";\n\t}\n\tvar self = this,\n\t\twiki = this.commander.wiki,\n\t\tfilter = this.params[0],\n\t\tfieldname = this.params[1] || \"text\",\n\t\ttemplatetitle = this.params[2],\n\t\trendertype = this.params[3] || \"text/plain\",\n\t\ttiddlers = wiki.filterTiddlers(filter);\n\t$tw.utils.each(tiddlers,function(title) {\n\t\tvar parser = wiki.parseTiddler(templatetitle),\n\t\t\tnewFields = {},\n\t\t\ttiddler = wiki.getTiddler(title);\n\t\tif(parser) {\n\t\t\tvar widgetNode = wiki.makeWidget(parser,{variables: {currentTiddler: title}});\n\t\t\tvar container = $tw.fakeDocument.createElement(\"div\");\n\t\t\twidgetNode.render(container,null);\n\t\t\tnewFields[fieldname] = rendertype === \"text/html\" ? container.innerHTML : container.textContent;\n\t\t} else {\n\t\t\tnewFields[fieldname] = undefined;\n\t\t}\n\t\twiki.addTiddler(new $tw.Tiddler(tiddler,newFields));\n\t});\n\treturn null;\n};\n\nexports.Command = Command;\n\n})();\n",
"type": "application/javascript",
"module-type": "command"
},
"$:/core/modules/commands/unpackplugin.js": {
"title": "$:/core/modules/commands/unpackplugin.js",
"text": "/*\\\ntitle: $:/core/modules/commands/unpackplugin.js\ntype: application/javascript\nmodule-type: command\n\nCommand to extract the shadow tiddlers from within a plugin\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.info = {\n\tname: \"unpackplugin\",\n\tsynchronous: true\n};\n\nvar Command = function(params,commander,callback) {\n\tthis.params = params;\n\tthis.commander = commander;\n\tthis.callback = callback;\n};\n\nCommand.prototype.execute = function() {\n\tif(this.params.length < 1) {\n\t\treturn \"Missing plugin name\";\n\t}\n\tvar self = this,\n\t\ttitle = this.params[0],\n\t\tpluginData = this.commander.wiki.getTiddlerDataCached(title);\n\tif(!pluginData) {\n\t\treturn \"Plugin '\" + title + \"' not found\";\n\t}\n\t$tw.utils.each(pluginData.tiddlers,function(tiddler) {\n\t\tself.commander.wiki.addTiddler(new $tw.Tiddler(tiddler));\n\t});\n\treturn null;\n};\n\nexports.Command = Command;\n\n})();\n",
"type": "application/javascript",
"module-type": "command"
},
"$:/core/modules/commands/verbose.js": {
"title": "$:/core/modules/commands/verbose.js",
"text": "/*\\\ntitle: $:/core/modules/commands/verbose.js\ntype: application/javascript\nmodule-type: command\n\nVerbose command\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.info = {\n\tname: \"verbose\",\n\tsynchronous: true\n};\n\nvar Command = function(params,commander) {\n\tthis.params = params;\n\tthis.commander = commander;\n};\n\nCommand.prototype.execute = function() {\n\tthis.commander.verbose = true;\n\t// Output the boot message log\n\tthis.commander.streams.output.write(\"Boot log:\\n \" + $tw.boot.logMessages.join(\"\\n \") + \"\\n\");\n\treturn null; // No error\n};\n\nexports.Command = Command;\n\n})();\n",
"type": "application/javascript",
"module-type": "command"
},
"$:/core/modules/commands/version.js": {
"title": "$:/core/modules/commands/version.js",
"text": "/*\\\ntitle: $:/core/modules/commands/version.js\ntype: application/javascript\nmodule-type: command\n\nVersion command\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.info = {\n\tname: \"version\",\n\tsynchronous: true\n};\n\nvar Command = function(params,commander) {\n\tthis.params = params;\n\tthis.commander = commander;\n};\n\nCommand.prototype.execute = function() {\n\tthis.commander.streams.output.write($tw.version + \"\\n\");\n\treturn null; // No error\n};\n\nexports.Command = Command;\n\n})();\n",
"type": "application/javascript",
"module-type": "command"
},
"$:/core/modules/config.js": {
"title": "$:/core/modules/config.js",
"text": "/*\\\ntitle: $:/core/modules/config.js\ntype: application/javascript\nmodule-type: config\n\nCore configuration constants\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.preferences = {};\n\nexports.preferences.notificationDuration = 3 * 1000;\nexports.preferences.jsonSpaces = 4;\n\nexports.textPrimitives = {\n\tupperLetter: \"[A-Z\\u00c0-\\u00d6\\u00d8-\\u00de\\u0150\\u0170]\",\n\tlowerLetter: \"[a-z\\u00df-\\u00f6\\u00f8-\\u00ff\\u0151\\u0171]\",\n\tanyLetter: \"[A-Za-z0-9\\u00c0-\\u00d6\\u00d8-\\u00de\\u00df-\\u00f6\\u00f8-\\u00ff\\u0150\\u0170\\u0151\\u0171]\",\n\tblockPrefixLetters:\t\"[A-Za-z0-9-_\\u00c0-\\u00d6\\u00d8-\\u00de\\u00df-\\u00f6\\u00f8-\\u00ff\\u0150\\u0170\\u0151\\u0171]\"\n};\n\nexports.textPrimitives.unWikiLink = \"~\";\nexports.textPrimitives.wikiLink = exports.textPrimitives.upperLetter + \"+\" +\n\texports.textPrimitives.lowerLetter + \"+\" +\n\texports.textPrimitives.upperLetter +\n\texports.textPrimitives.anyLetter + \"*\";\n\nexports.htmlEntities = {quot:34, amp:38, apos:39, lt:60, gt:62, nbsp:160, iexcl:161, cent:162, pound:163, curren:164, yen:165, brvbar:166, sect:167, uml:168, copy:169, ordf:170, laquo:171, not:172, shy:173, reg:174, macr:175, deg:176, plusmn:177, sup2:178, sup3:179, acute:180, micro:181, para:182, middot:183, cedil:184, sup1:185, ordm:186, raquo:187, frac14:188, frac12:189, frac34:190, iquest:191, Agrave:192, Aacute:193, Acirc:194, Atilde:195, Auml:196, Aring:197, AElig:198, Ccedil:199, Egrave:200, Eacute:201, Ecirc:202, Euml:203, Igrave:204, Iacute:205, Icirc:206, Iuml:207, ETH:208, Ntilde:209, Ograve:210, Oacute:211, Ocirc:212, Otilde:213, Ouml:214, times:215, Oslash:216, Ugrave:217, Uacute:218, Ucirc:219, Uuml:220, Yacute:221, THORN:222, szlig:223, agrave:224, aacute:225, acirc:226, atilde:227, auml:228, aring:229, aelig:230, ccedil:231, egrave:232, eacute:233, ecirc:234, euml:235, igrave:236, iacute:237, icirc:238, iuml:239, eth:240, ntilde:241, ograve:242, oacute:243, ocirc:244, otilde:245, ouml:246, divide:247, oslash:248, ugrave:249, uacute:250, ucirc:251, uuml:252, yacute:253, thorn:254, yuml:255, OElig:338, oelig:339, Scaron:352, scaron:353, Yuml:376, fnof:402, circ:710, tilde:732, Alpha:913, Beta:914, Gamma:915, Delta:916, Epsilon:917, Zeta:918, Eta:919, Theta:920, Iota:921, Kappa:922, Lambda:923, Mu:924, Nu:925, Xi:926, Omicron:927, Pi:928, Rho:929, Sigma:931, Tau:932, Upsilon:933, Phi:934, Chi:935, Psi:936, Omega:937, alpha:945, beta:946, gamma:947, delta:948, epsilon:949, zeta:950, eta:951, theta:952, iota:953, kappa:954, lambda:955, mu:956, nu:957, xi:958, omicron:959, pi:960, rho:961, sigmaf:962, sigma:963, tau:964, upsilon:965, phi:966, chi:967, psi:968, omega:969, thetasym:977, upsih:978, piv:982, ensp:8194, emsp:8195, thinsp:8201, zwnj:8204, zwj:8205, lrm:8206, rlm:8207, ndash:8211, mdash:8212, lsquo:8216, rsquo:8217, sbquo:8218, ldquo:8220, rdquo:8221, bdquo:8222, dagger:8224, Dagger:8225, bull:8226, hellip:8230, permil:8240, prime:8242, Prime:8243, lsaquo:8249, rsaquo:8250, oline:8254, frasl:8260, euro:8364, image:8465, weierp:8472, real:8476, trade:8482, alefsym:8501, larr:8592, uarr:8593, rarr:8594, darr:8595, harr:8596, crarr:8629, lArr:8656, uArr:8657, rArr:8658, dArr:8659, hArr:8660, forall:8704, part:8706, exist:8707, empty:8709, nabla:8711, isin:8712, notin:8713, ni:8715, prod:8719, sum:8721, minus:8722, lowast:8727, radic:8730, prop:8733, infin:8734, ang:8736, and:8743, or:8744, cap:8745, cup:8746, int:8747, there4:8756, sim:8764, cong:8773, asymp:8776, ne:8800, equiv:8801, le:8804, ge:8805, sub:8834, sup:8835, nsub:8836, sube:8838, supe:8839, oplus:8853, otimes:8855, perp:8869, sdot:8901, lceil:8968, rceil:8969, lfloor:8970, rfloor:8971, lang:9001, rang:9002, loz:9674, spades:9824, clubs:9827, hearts:9829, diams:9830 };\n\nexports.htmlVoidElements = \"area,base,br,col,command,embed,hr,img,input,keygen,link,meta,param,source,track,wbr\".split(\",\");\n\nexports.htmlBlockElements = \"address,article,aside,audio,blockquote,canvas,dd,div,dl,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,hr,li,noscript,ol,output,p,pre,section,table,tfoot,ul,video\".split(\",\");\n\nexports.htmlUnsafeElements = \"script\".split(\",\");\n\n})();\n",
"type": "application/javascript",
"module-type": "config"
},
"$:/core/modules/deserializers.js": {
"title": "$:/core/modules/deserializers.js",
"text": "/*\\\ntitle: $:/core/modules/deserializers.js\ntype: application/javascript\nmodule-type: tiddlerdeserializer\n\nFunctions to deserialise tiddlers from a block of text\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nUtility function to parse an old-style tiddler DIV in a *.tid file. It looks like this:\n\n<div title=\"Title\" creator=\"JoeBloggs\" modifier=\"JoeBloggs\" created=\"201102111106\" modified=\"201102111310\" tags=\"myTag [[my long tag]]\">\n<pre>The text of the tiddler (without the expected HTML encoding).\n</pre>\n</div>\n\nNote that the field attributes are HTML encoded, but that the body of the <PRE> tag is not encoded.\n\nWhen these tiddler DIVs are encountered within a TiddlyWiki HTML file then the body is encoded in the usual way.\n*/\nvar parseTiddlerDiv = function(text /* [,fields] */) {\n\t// Slot together the default results\n\tvar result = {};\n\tif(arguments.length > 1) {\n\t\tfor(var f=1; f<arguments.length; f++) {\n\t\t\tvar fields = arguments[f];\n\t\t\tfor(var t in fields) {\n\t\t\t\tresult[t] = fields[t];\t\t\n\t\t\t}\n\t\t}\n\t}\n\t// Parse the DIV body\n\tvar startRegExp = /^\\s*<div\\s+([^>]*)>(\\s*<pre>)?/gi,\n\t\tendRegExp,\n\t\tmatch = startRegExp.exec(text);\n\tif(match) {\n\t\t// Old-style DIVs don't have the <pre> tag\n\t\tif(match[2]) {\n\t\t\tendRegExp = /<\\/pre>\\s*<\\/div>\\s*$/gi;\n\t\t} else {\n\t\t\tendRegExp = /<\\/div>\\s*$/gi;\n\t\t}\n\t\tvar endMatch = endRegExp.exec(text);\n\t\tif(endMatch) {\n\t\t\t// Extract the text\n\t\t\tresult.text = text.substring(match.index + match[0].length,endMatch.index);\n\t\t\t// Process the attributes\n\t\t\tvar attrRegExp = /\\s*([^=\\s]+)\\s*=\\s*(?:\"([^\"]*)\"|'([^']*)')/gi,\n\t\t\t\tattrMatch;\n\t\t\tdo {\n\t\t\t\tattrMatch = attrRegExp.exec(match[1]);\n\t\t\t\tif(attrMatch) {\n\t\t\t\t\tvar name = attrMatch[1];\n\t\t\t\t\tvar value = attrMatch[2] !== undefined ? attrMatch[2] : attrMatch[3];\n\t\t\t\t\tresult[name] = value;\n\t\t\t\t}\n\t\t\t} while(attrMatch);\n\t\t\treturn result;\n\t\t}\n\t}\n\treturn undefined;\n};\n\nexports[\"application/x-tiddler-html-div\"] = function(text,fields) {\n\treturn [parseTiddlerDiv(text,fields)];\n};\n\nexports[\"application/json\"] = function(text,fields) {\n\tvar incoming,\n\t\tresults = [];\n\ttry {\n\t\tincoming = JSON.parse(text);\n\t} catch(e) {\n\t\tincoming = [{\n\t\t\ttitle: \"JSON error: \" + e,\n\t\t\ttext: \"\"\n\t\t}]\n\t}\n\tif(!$tw.utils.isArray(incoming)) {\n\t\tincoming = [incoming];\n\t}\n\tfor(var t=0; t<incoming.length; t++) {\n\t\tvar incomingFields = incoming[t],\n\t\t\tfields = {};\n\t\tfor(var f in incomingFields) {\n\t\t\tif(typeof incomingFields[f] === \"string\") {\n\t\t\t\tfields[f] = incomingFields[f];\n\t\t\t}\n\t\t}\n\t\tresults.push(fields);\n\t}\n\treturn results;\n};\n\n/*\nParse an HTML file into tiddlers. There are three possibilities:\n# A TiddlyWiki classic HTML file containing `text/x-tiddlywiki` tiddlers\n# A TiddlyWiki5 HTML file containing `text/vnd.tiddlywiki` tiddlers\n# An ordinary HTML file\n*/\nexports[\"text/html\"] = function(text,fields) {\n\t// Check if we've got a store area\n\tvar storeAreaMarkerRegExp = /<div id=[\"']?storeArea['\"]?( style=[\"']?display:none;[\"']?)?>/gi,\n\t\tmatch = storeAreaMarkerRegExp.exec(text);\n\tif(match) {\n\t\t// If so, it's either a classic TiddlyWiki file or an unencrypted TW5 file\n\t\t// First read the normal tiddlers\n\t\tvar results = deserializeTiddlyWikiFile(text,storeAreaMarkerRegExp.lastIndex,!!match[1],fields);\n\t\t// Then any system tiddlers\n\t\tvar systemAreaMarkerRegExp = /<div id=[\"']?systemArea['\"]?( style=[\"']?display:none;[\"']?)?>/gi,\n\t\t\tsysMatch = systemAreaMarkerRegExp.exec(text);\n\t\tif(sysMatch) {\n\t\t\tresults.push.apply(results,deserializeTiddlyWikiFile(text,systemAreaMarkerRegExp.lastIndex,!!sysMatch[1],fields));\n\t\t}\n\t\treturn results;\n\t} else {\n\t\t// Check whether we've got an encrypted file\n\t\tvar encryptedStoreArea = $tw.utils.extractEncryptedStoreArea(text);\n\t\tif(encryptedStoreArea) {\n\t\t\t// If so, attempt to decrypt it using the current password\n\t\t\treturn $tw.utils.decryptStoreArea(encryptedStoreArea);\n\t\t} else {\n\t\t\t// It's not a TiddlyWiki so we'll return the entire HTML file as a tiddler\n\t\t\treturn deserializeHtmlFile(text,fields);\n\t\t}\n\t}\n};\n\nfunction deserializeHtmlFile(text,fields) {\n\tvar result = {};\n\t$tw.utils.each(fields,function(value,name) {\n\t\tresult[name] = value;\n\t});\n\tresult.text = text;\n\tresult.type = \"text/html\";\n\treturn [result];\n}\n\nfunction deserializeTiddlyWikiFile(text,storeAreaEnd,isTiddlyWiki5,fields) {\n\tvar results = [],\n\t\tendOfDivRegExp = /(<\\/div>\\s*)/gi,\n\t\tstartPos = storeAreaEnd,\n\t\tdefaultType = isTiddlyWiki5 ? undefined : \"text/x-tiddlywiki\";\n\tendOfDivRegExp.lastIndex = startPos;\n\tvar match = endOfDivRegExp.exec(text);\n\twhile(match) {\n\t\tvar endPos = endOfDivRegExp.lastIndex,\n\t\t\ttiddlerFields = parseTiddlerDiv(text.substring(startPos,endPos),fields,{type: defaultType});\n\t\tif(!tiddlerFields) {\n\t\t\tbreak;\n\t\t}\n\t\t$tw.utils.each(tiddlerFields,function(value,name) {\n\t\t\tif(typeof value === \"string\") {\n\t\t\t\ttiddlerFields[name] = $tw.utils.htmlDecode(value);\n\t\t\t}\n\t\t});\n\t\tif(tiddlerFields.text !== null) {\n\t\t\tresults.push(tiddlerFields);\n\t\t}\n\t\tstartPos = endPos;\n\t\tmatch = endOfDivRegExp.exec(text);\n\t}\n\treturn results;\n}\n\n})();\n",
"type": "application/javascript",
"module-type": "tiddlerdeserializer"
},
"$:/core/modules/editor/engines/framed.js": {
"title": "$:/core/modules/editor/engines/framed.js",
"text": "/*\\\ntitle: $:/core/modules/editor/engines/framed.js\ntype: application/javascript\nmodule-type: library\n\nText editor engine based on a simple input or textarea within an iframe. This is done so that the selection is preserved even when clicking away from the textarea\n\n\\*/\n(function(){\n\n/*jslint node: true,browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar HEIGHT_VALUE_TITLE = \"$:/config/TextEditor/EditorHeight/Height\";\n\nfunction FramedEngine(options) {\n\t// Save our options\n\toptions = options || {};\n\tthis.widget = options.widget;\n\tthis.value = options.value;\n\tthis.parentNode = options.parentNode;\n\tthis.nextSibling = options.nextSibling;\n\t// Create our hidden dummy text area for reading styles\n\tthis.dummyTextArea = this.widget.document.createElement(\"textarea\");\n\tif(this.widget.editClass) {\n\t\tthis.dummyTextArea.className = this.widget.editClass;\n\t}\n\tthis.dummyTextArea.setAttribute(\"hidden\",\"true\");\n\tthis.parentNode.insertBefore(this.dummyTextArea,this.nextSibling);\n\tthis.widget.domNodes.push(this.dummyTextArea);\n\t// Create the iframe\n\tthis.iframeNode = this.widget.document.createElement(\"iframe\");\n\tthis.parentNode.insertBefore(this.iframeNode,this.nextSibling);\n\tthis.iframeDoc = this.iframeNode.contentWindow.document;\n\t// (Firefox requires us to put some empty content in the iframe)\n\tthis.iframeDoc.open();\n\tthis.iframeDoc.write(\"\");\n\tthis.iframeDoc.close();\n\t// Style the iframe\n\tthis.iframeNode.className = this.dummyTextArea.className;\n\tthis.iframeNode.style.border = \"none\";\n\tthis.iframeNode.style.padding = \"0\";\n\tthis.iframeNode.style.resize = \"none\";\n\tthis.iframeNode.style[\"background-color\"] = this.widget.wiki.extractTiddlerDataItem(this.widget.wiki.getTiddlerText(\"$:/palette\"),\"tiddler-editor-background\");\n\tthis.iframeDoc.body.style.margin = \"0\";\n\tthis.iframeDoc.body.style.padding = \"0\";\n\tthis.widget.domNodes.push(this.iframeNode);\n\t// Construct the textarea or input node\n\tvar tag = this.widget.editTag;\n\tif($tw.config.htmlUnsafeElements.indexOf(tag) !== -1) {\n\t\ttag = \"input\";\n\t}\n\tthis.domNode = this.iframeDoc.createElement(tag);\n\t// Set the text\n\tif(this.widget.editTag === \"textarea\") {\n\t\tthis.domNode.appendChild(this.iframeDoc.createTextNode(this.value));\n\t} else {\n\t\tthis.domNode.value = this.value;\n\t}\n\t// Set the attributes\n\tif(this.widget.editType) {\n\t\tthis.domNode.setAttribute(\"type\",this.widget.editType);\n\t}\n\tif(this.widget.editPlaceholder) {\n\t\tthis.domNode.setAttribute(\"placeholder\",this.widget.editPlaceholder);\n\t}\n\tif(this.widget.editSize) {\n\t\tthis.domNode.setAttribute(\"size\",this.widget.editSize);\n\t}\n\tif(this.widget.editRows) {\n\t\tthis.domNode.setAttribute(\"rows\",this.widget.editRows);\n\t}\n\tif(this.widget.editTabIndex) {\n\t\tthis.iframeNode.setAttribute(\"tabindex\",this.widget.editTabIndex);\n\t}\n\t// Copy the styles from the dummy textarea\n\tthis.copyStyles();\n\t// Add event listeners\n\t$tw.utils.addEventListeners(this.domNode,[\n\t\t{name: \"click\",handlerObject: this,handlerMethod: \"handleClickEvent\"},\n\t\t{name: \"focus\",handlerObject: this,handlerMethod: \"handleFocusEvent\"},\n\t\t{name: \"input\",handlerObject: this,handlerMethod: \"handleInputEvent\"},\n\t\t{name: \"keydown\",handlerObject: this.widget,handlerMethod: \"handleKeydownEvent\"}\n\t]);\n\t// Insert the element into the DOM\n\tthis.iframeDoc.body.appendChild(this.domNode);\n}\n\n/*\nCopy styles from the dummy text area to the textarea in the iframe\n*/\nFramedEngine.prototype.copyStyles = function() {\n\t// Copy all styles\n\t$tw.utils.copyStyles(this.dummyTextArea,this.domNode);\n\t// Override the ones that should not be set the same as the dummy textarea\n\tthis.domNode.style.display = \"block\";\n\tthis.domNode.style.width = \"100%\";\n\tthis.domNode.style.margin = \"0\";\n\tthis.domNode.style[\"background-color\"] = this.widget.wiki.extractTiddlerDataItem(this.widget.wiki.getTiddlerText(\"$:/palette\"),\"tiddler-editor-background\");\n\t// In Chrome setting -webkit-text-fill-color overrides the placeholder text colour\n\tthis.domNode.style[\"-webkit-text-fill-color\"] = \"currentcolor\";\n};\n\n/*\nSet the text of the engine if it doesn't currently have focus\n*/\nFramedEngine.prototype.setText = function(text,type) {\n\tif(!this.domNode.isTiddlyWikiFakeDom) {\n\t\tif(this.domNode.ownerDocument.activeElement !== this.domNode) {\n\t\t\tthis.domNode.value = text;\n\t\t}\n\t\t// Fix the height if needed\n\t\tthis.fixHeight();\n\t}\n};\n\n/*\nGet the text of the engine\n*/\nFramedEngine.prototype.getText = function() {\n\treturn this.domNode.value;\n};\n\n/*\nFix the height of textarea to fit content\n*/\nFramedEngine.prototype.fixHeight = function() {\n\t// Make sure styles are updated\n\tthis.copyStyles();\n\t// Adjust height\n\tif(this.widget.editTag === \"textarea\") {\n\t\tif(this.widget.editAutoHeight) {\n\t\t\tif(this.domNode && !this.domNode.isTiddlyWikiFakeDom) {\n\t\t\t\tvar newHeight = $tw.utils.resizeTextAreaToFit(this.domNode,this.widget.editMinHeight);\n\t\t\t\tthis.iframeNode.style.height = (newHeight + 14) + \"px\"; // +14 for the border on the textarea\n\t\t\t}\n\t\t} else {\n\t\t\tvar fixedHeight = parseInt(this.widget.wiki.getTiddlerText(HEIGHT_VALUE_TITLE,\"400px\"),10);\n\t\t\tfixedHeight = Math.max(fixedHeight,20);\n\t\t\tthis.domNode.style.height = fixedHeight + \"px\";\n\t\t\tthis.iframeNode.style.height = (fixedHeight + 14) + \"px\";\n\t\t}\n\t}\n};\n\n/*\nFocus the engine node\n*/\nFramedEngine.prototype.focus = function() {\n\tif(this.domNode.focus && this.domNode.select) {\n\t\tthis.domNode.focus();\n\t\tthis.domNode.select();\n\t}\n};\n\t\n/*\nHandle the focus event\n*/\nFramedEngine.prototype.handleFocusEvent = function(event) {\n\tthis.widget.cancelPopups();\n\treturn true;\n};\n\n/*\nHandle a click\n*/\nFramedEngine.prototype.handleClickEvent = function(event) {\n\tthis.fixHeight();\n\treturn true;\n};\n\n/*\nHandle a dom \"input\" event which occurs when the text has changed\n*/\nFramedEngine.prototype.handleInputEvent = function(event) {\n\tthis.widget.saveChanges(this.getText());\n\tthis.fixHeight();\n\treturn true;\n};\n\n/*\nCreate a blank structure representing a text operation\n*/\nFramedEngine.prototype.createTextOperation = function() {\n\tvar operation = {\n\t\ttext: this.domNode.value,\n\t\tselStart: this.domNode.selectionStart,\n\t\tselEnd: this.domNode.selectionEnd,\n\t\tcutStart: null,\n\t\tcutEnd: null,\n\t\treplacement: null,\n\t\tnewSelStart: null,\n\t\tnewSelEnd: null\n\t};\n\toperation.selection = operation.text.substring(operation.selStart,operation.selEnd);\n\treturn operation;\n};\n\n/*\nExecute a text operation\n*/\nFramedEngine.prototype.executeTextOperation = function(operation) {\n\t// Perform the required changes to the text area and the underlying tiddler\n\tvar newText = operation.text;\n\tif(operation.replacement !== null) {\n\t\tnewText = operation.text.substring(0,operation.cutStart) + operation.replacement + operation.text.substring(operation.cutEnd);\n\t\t// Attempt to use a execCommand to modify the value of the control\n\t\tif(this.iframeDoc.queryCommandSupported(\"insertText\") && this.iframeDoc.queryCommandSupported(\"delete\") && !$tw.browser.isFirefox) {\n\t\t\tthis.domNode.focus();\n\t\t\tthis.domNode.setSelectionRange(operation.cutStart,operation.cutEnd);\n\t\t\tif(operation.replacement === \"\") {\n\t\t\t\tthis.iframeDoc.execCommand(\"delete\",false,\"\");\n\t\t\t} else {\n\t\t\t\tthis.iframeDoc.execCommand(\"insertText\",false,operation.replacement);\n\t\t\t}\n\t\t} else {\n\t\t\tthis.domNode.value = newText;\n\t\t}\n\t\tthis.domNode.focus();\n\t\tthis.domNode.setSelectionRange(operation.newSelStart,operation.newSelEnd);\n\t}\n\tthis.domNode.focus();\n\treturn newText;\n};\n\nexports.FramedEngine = FramedEngine;\n\n})();\n",
"type": "application/javascript",
"module-type": "library"
},
"$:/core/modules/editor/engines/simple.js": {
"title": "$:/core/modules/editor/engines/simple.js",
"text": "/*\\\ntitle: $:/core/modules/editor/engines/simple.js\ntype: application/javascript\nmodule-type: library\n\nText editor engine based on a simple input or textarea tag\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar HEIGHT_VALUE_TITLE = \"$:/config/TextEditor/EditorHeight/Height\";\n\nfunction SimpleEngine(options) {\n\t// Save our options\n\toptions = options || {};\n\tthis.widget = options.widget;\n\tthis.value = options.value;\n\tthis.parentNode = options.parentNode;\n\tthis.nextSibling = options.nextSibling;\n\t// Construct the textarea or input node\n\tvar tag = this.widget.editTag;\n\tif($tw.config.htmlUnsafeElements.indexOf(tag) !== -1) {\n\t\ttag = \"input\";\n\t}\n\tthis.domNode = this.widget.document.createElement(tag);\n\t// Set the text\n\tif(this.widget.editTag === \"textarea\") {\n\t\tthis.domNode.appendChild(this.widget.document.createTextNode(this.value));\n\t} else {\n\t\tthis.domNode.value = this.value;\n\t}\n\t// Set the attributes\n\tif(this.widget.editType) {\n\t\tthis.domNode.setAttribute(\"type\",this.widget.editType);\n\t}\n\tif(this.widget.editPlaceholder) {\n\t\tthis.domNode.setAttribute(\"placeholder\",this.widget.editPlaceholder);\n\t}\n\tif(this.widget.editSize) {\n\t\tthis.domNode.setAttribute(\"size\",this.widget.editSize);\n\t}\n\tif(this.widget.editRows) {\n\t\tthis.domNode.setAttribute(\"rows\",this.widget.editRows);\n\t}\n\tif(this.widget.editClass) {\n\t\tthis.domNode.className = this.widget.editClass;\n\t}\n\tif(this.widget.editTabIndex) {\n\t\tthis.domNode.setAttribute(\"tabindex\",this.widget.editTabIndex);\n\t}\n\t// Add an input event handler\n\t$tw.utils.addEventListeners(this.domNode,[\n\t\t{name: \"focus\", handlerObject: this, handlerMethod: \"handleFocusEvent\"},\n\t\t{name: \"input\", handlerObject: this, handlerMethod: \"handleInputEvent\"}\n\t]);\n\t// Insert the element into the DOM\n\tthis.parentNode.insertBefore(this.domNode,this.nextSibling);\n\tthis.widget.domNodes.push(this.domNode);\n}\n\n/*\nSet the text of the engine if it doesn't currently have focus\n*/\nSimpleEngine.prototype.setText = function(text,type) {\n\tif(!this.domNode.isTiddlyWikiFakeDom) {\n\t\tif(this.domNode.ownerDocument.activeElement !== this.domNode || text === \"\") {\n\t\t\tthis.domNode.value = text;\n\t\t}\n\t\t// Fix the height if needed\n\t\tthis.fixHeight();\n\t}\n};\n\n/*\nGet the text of the engine\n*/\nSimpleEngine.prototype.getText = function() {\n\treturn this.domNode.value;\n};\n\n/*\nFix the height of textarea to fit content\n*/\nSimpleEngine.prototype.fixHeight = function() {\n\tif(this.widget.editTag === \"textarea\") {\n\t\tif(this.widget.editAutoHeight) {\n\t\t\tif(this.domNode && !this.domNode.isTiddlyWikiFakeDom) {\n\t\t\t\t$tw.utils.resizeTextAreaToFit(this.domNode,this.widget.editMinHeight);\n\t\t\t}\n\t\t} else {\n\t\t\tvar fixedHeight = parseInt(this.widget.wiki.getTiddlerText(HEIGHT_VALUE_TITLE,\"400px\"),10);\n\t\t\tfixedHeight = Math.max(fixedHeight,20);\n\t\t\tthis.domNode.style.height = fixedHeight + \"px\";\n\t\t}\n\t}\n};\n\n/*\nFocus the engine node\n*/\nSimpleEngine.prototype.focus = function() {\n\tif(this.domNode.focus && this.domNode.select) {\n\t\tthis.domNode.focus();\n\t\tthis.domNode.select();\n\t}\n};\n\n/*\nHandle a dom \"input\" event which occurs when the text has changed\n*/\nSimpleEngine.prototype.handleInputEvent = function(event) {\n\tthis.widget.saveChanges(this.getText());\n\tthis.fixHeight();\n\treturn true;\n};\n\n/*\nHandle a dom \"focus\" event\n*/\nSimpleEngine.prototype.handleFocusEvent = function(event) {\n\tthis.widget.cancelPopups();\n\tif(this.widget.editFocusPopup) {\n\t\t$tw.popup.triggerPopup({\n\t\t\tdomNode: this.domNode,\n\t\t\ttitle: this.widget.editFocusPopup,\n\t\t\twiki: this.widget.wiki,\n\t\t\tforce: true\n\t\t});\n\t}\n\treturn true;\n};\n\n/*\nCreate a blank structure representing a text operation\n*/\nSimpleEngine.prototype.createTextOperation = function() {\n\treturn null;\n};\n\n/*\nExecute a text operation\n*/\nSimpleEngine.prototype.executeTextOperation = function(operation) {\n};\n\nexports.SimpleEngine = SimpleEngine;\n\n})();\n",
"type": "application/javascript",
"module-type": "library"
},
"$:/core/modules/editor/factory.js": {
"title": "$:/core/modules/editor/factory.js",
"text": "/*\\\ntitle: $:/core/modules/editor/factory.js\ntype: application/javascript\nmodule-type: library\n\nFactory for constructing text editor widgets with specified engines for the toolbar and non-toolbar cases\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar DEFAULT_MIN_TEXT_AREA_HEIGHT = \"100px\"; // Minimum height of textareas in pixels\n\n// Configuration tiddlers\nvar HEIGHT_MODE_TITLE = \"$:/config/TextEditor/EditorHeight/Mode\";\nvar ENABLE_TOOLBAR_TITLE = \"$:/config/TextEditor/EnableToolbar\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nfunction editTextWidgetFactory(toolbarEngine,nonToolbarEngine) {\n\n\tvar EditTextWidget = function(parseTreeNode,options) {\n\t\t// Initialise the editor operations if they've not been done already\n\t\tif(!this.editorOperations) {\n\t\t\tEditTextWidget.prototype.editorOperations = {};\n\t\t\t$tw.modules.applyMethods(\"texteditoroperation\",this.editorOperations);\n\t\t}\n\t\tthis.initialise(parseTreeNode,options);\n\t};\n\n\t/*\n\tInherit from the base widget class\n\t*/\n\tEditTextWidget.prototype = new Widget();\n\n\t/*\n\tRender this widget into the DOM\n\t*/\n\tEditTextWidget.prototype.render = function(parent,nextSibling) {\n\t\t// Save the parent dom node\n\t\tthis.parentDomNode = parent;\n\t\t// Compute our attributes\n\t\tthis.computeAttributes();\n\t\t// Execute our logic\n\t\tthis.execute();\n\t\t// Create the wrapper for the toolbar and render its content\n\t\tif(this.editShowToolbar) {\n\t\t\tthis.toolbarNode = this.document.createElement(\"div\");\n\t\t\tthis.toolbarNode.className = \"tc-editor-toolbar\";\n\t\t\tparent.insertBefore(this.toolbarNode,nextSibling);\n\t\t\tthis.renderChildren(this.toolbarNode,null);\n\t\t\tthis.domNodes.push(this.toolbarNode);\n\t\t}\n\t\t// Create our element\n\t\tvar editInfo = this.getEditInfo(),\n\t\t\tEngine = this.editShowToolbar ? toolbarEngine : nonToolbarEngine;\n\t\tthis.engine = new Engine({\n\t\t\t\twidget: this,\n\t\t\t\tvalue: editInfo.value,\n\t\t\t\ttype: editInfo.type,\n\t\t\t\tparentNode: parent,\n\t\t\t\tnextSibling: nextSibling\n\t\t\t});\n\t\t// Call the postRender hook\n\t\tif(this.postRender) {\n\t\t\tthis.postRender();\n\t\t}\n\t\t// Fix height\n\t\tthis.engine.fixHeight();\n\t\t// Focus if required\n\t\tif(this.editFocus === \"true\" || this.editFocus === \"yes\") {\n\t\t\tthis.engine.focus();\n\t\t}\n\t\t// Add widget message listeners\n\t\tthis.addEventListeners([\n\t\t\t{type: \"tm-edit-text-operation\", handler: \"handleEditTextOperationMessage\"}\n\t\t]);\n\t};\n\n\t/*\n\tGet the tiddler being edited and current value\n\t*/\n\tEditTextWidget.prototype.getEditInfo = function() {\n\t\t// Get the edit value\n\t\tvar self = this,\n\t\t\tvalue,\n\t\t\ttype = \"text/plain\",\n\t\t\tupdate;\n\t\tif(this.editIndex) {\n\t\t\tvalue = this.wiki.extractTiddlerDataItem(this.editTitle,this.editIndex,this.editDefault);\n\t\t\tupdate = function(value) {\n\t\t\t\tvar data = self.wiki.getTiddlerData(self.editTitle,{});\n\t\t\t\tif(data[self.editIndex] !== value) {\n\t\t\t\t\tdata[self.editIndex] = value;\n\t\t\t\t\tself.wiki.setTiddlerData(self.editTitle,data);\n\t\t\t\t}\n\t\t\t};\n\t\t} else {\n\t\t\t// Get the current tiddler and the field name\n\t\t\tvar tiddler = this.wiki.getTiddler(this.editTitle);\n\t\t\tif(tiddler) {\n\t\t\t\t// If we've got a tiddler, the value to display is the field string value\n\t\t\t\tvalue = tiddler.getFieldString(this.editField);\n\t\t\t\tif(this.editField === \"text\") {\n\t\t\t\t\ttype = tiddler.fields.type || \"text/vnd.tiddlywiki\";\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t// Otherwise, we need to construct a default value for the editor\n\t\t\t\tswitch(this.editField) {\n\t\t\t\t\tcase \"text\":\n\t\t\t\t\t\tvalue = \"Type the text for the tiddler '\" + this.editTitle + \"'\";\n\t\t\t\t\t\ttype = \"text/vnd.tiddlywiki\";\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase \"title\":\n\t\t\t\t\t\tvalue = this.editTitle;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tdefault:\n\t\t\t\t\t\tvalue = \"\";\n\t\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t\tif(this.editDefault !== undefined) {\n\t\t\t\t\tvalue = this.editDefault;\n\t\t\t\t}\n\t\t\t}\n\t\t\tupdate = function(value) {\n\t\t\t\tvar tiddler = self.wiki.getTiddler(self.editTitle),\n\t\t\t\t\tupdateFields = {\n\t\t\t\t\t\ttitle: self.editTitle\n\t\t\t\t\t};\n\t\t\t\tupdateFields[self.editField] = value;\n\t\t\t\tself.wiki.addTiddler(new $tw.Tiddler(self.wiki.getCreationFields(),tiddler,updateFields,self.wiki.getModificationFields()));\n\t\t\t};\n\t\t}\n\t\tif(this.editType) {\n\t\t\ttype = this.editType;\n\t\t}\n\t\treturn {value: value || \"\", type: type, update: update};\n\t};\n\n\t/*\n\tHandle an edit text operation message from the toolbar\n\t*/\n\tEditTextWidget.prototype.handleEditTextOperationMessage = function(event) {\n\t\t// Prepare information about the operation\n\t\tvar operation = this.engine.createTextOperation();\n\t\t// Invoke the handler for the selected operation\n\t\tvar handler = this.editorOperations[event.param];\n\t\tif(handler) {\n\t\t\thandler.call(this,event,operation);\n\t\t}\n\t\t// Execute the operation via the engine\n\t\tvar newText = this.engine.executeTextOperation(operation);\n\t\t// Fix the tiddler height and save changes\n\t\tthis.engine.fixHeight();\n\t\tthis.saveChanges(newText);\n\t};\n\n\t/*\n\tCompute the internal state of the widget\n\t*/\n\tEditTextWidget.prototype.execute = function() {\n\t\t// Get our parameters\n\t\tthis.editTitle = this.getAttribute(\"tiddler\",this.getVariable(\"currentTiddler\"));\n\t\tthis.editField = this.getAttribute(\"field\",\"text\");\n\t\tthis.editIndex = this.getAttribute(\"index\");\n\t\tthis.editDefault = this.getAttribute(\"default\");\n\t\tthis.editClass = this.getAttribute(\"class\");\n\t\tthis.editPlaceholder = this.getAttribute(\"placeholder\");\n\t\tthis.editSize = this.getAttribute(\"size\");\n\t\tthis.editRows = this.getAttribute(\"rows\");\n\t\tthis.editAutoHeight = this.wiki.getTiddlerText(HEIGHT_MODE_TITLE,\"auto\");\n\t\tthis.editAutoHeight = this.getAttribute(\"autoHeight\",this.editAutoHeight === \"auto\" ? \"yes\" : \"no\") === \"yes\";\n\t\tthis.editMinHeight = this.getAttribute(\"minHeight\",DEFAULT_MIN_TEXT_AREA_HEIGHT);\n\t\tthis.editFocusPopup = this.getAttribute(\"focusPopup\");\n\t\tthis.editFocus = this.getAttribute(\"focus\");\n\t\tthis.editTabIndex = this.getAttribute(\"tabindex\");\n\t\t// Get the default editor element tag and type\n\t\tvar tag,type;\n\t\tif(this.editField === \"text\") {\n\t\t\ttag = \"textarea\";\n\t\t} else {\n\t\t\ttag = \"input\";\n\t\t\tvar fieldModule = $tw.Tiddler.fieldModules[this.editField];\n\t\t\tif(fieldModule && fieldModule.editTag) {\n\t\t\t\ttag = fieldModule.editTag;\n\t\t\t}\n\t\t\tif(fieldModule && fieldModule.editType) {\n\t\t\t\ttype = fieldModule.editType;\n\t\t\t}\n\t\t\ttype = type || \"text\";\n\t\t}\n\t\t// Get the rest of our parameters\n\t\tthis.editTag = this.getAttribute(\"tag\",tag) || \"input\";\n\t\tthis.editType = this.getAttribute(\"type\",type);\n\t\t// Make the child widgets\n\t\tthis.makeChildWidgets();\n\t\t// Determine whether to show the toolbar\n\t\tthis.editShowToolbar = this.wiki.getTiddlerText(ENABLE_TOOLBAR_TITLE,\"yes\");\n\t\tthis.editShowToolbar = (this.editShowToolbar === \"yes\") && !!(this.children && this.children.length > 0) && (!this.document.isTiddlyWikiFakeDom);\n\t};\n\n\t/*\n\tSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n\t*/\n\tEditTextWidget.prototype.refresh = function(changedTiddlers) {\n\t\tvar changedAttributes = this.computeAttributes();\n\t\t// Completely rerender if any of our attributes have changed\n\t\tif(changedAttributes.tiddler || changedAttributes.field || changedAttributes.index || changedAttributes[\"default\"] || changedAttributes[\"class\"] || changedAttributes.placeholder || changedAttributes.size || changedAttributes.autoHeight || changedAttributes.minHeight || changedAttributes.focusPopup || changedAttributes.rows || changedAttributes.tabindex || changedTiddlers[HEIGHT_MODE_TITLE] || changedTiddlers[ENABLE_TOOLBAR_TITLE]) {\n\t\t\tthis.refreshSelf();\n\t\t\treturn true;\n\t\t} else if(changedTiddlers[this.editTitle]) {\n\t\t\tvar editInfo = this.getEditInfo();\n\t\t\tthis.updateEditor(editInfo.value,editInfo.type);\n\t\t}\n\t\tthis.engine.fixHeight();\n\t\tif(this.editShowToolbar) {\n\t\t\treturn this.refreshChildren(changedTiddlers);\n\t\t} else {\n\t\t\treturn false;\n\t\t}\n\t};\n\n\t/*\n\tUpdate the editor with new text. This method is separate from updateEditorDomNode()\n\tso that subclasses can override updateEditor() and still use updateEditorDomNode()\n\t*/\n\tEditTextWidget.prototype.updateEditor = function(text,type) {\n\t\tthis.updateEditorDomNode(text,type);\n\t};\n\n\t/*\n\tUpdate the editor dom node with new text\n\t*/\n\tEditTextWidget.prototype.updateEditorDomNode = function(text,type) {\n\t\tthis.engine.setText(text,type);\n\t};\n\n\t/*\n\tSave changes back to the tiddler store\n\t*/\n\tEditTextWidget.prototype.saveChanges = function(text) {\n\t\tvar editInfo = this.getEditInfo();\n\t\tif(text !== editInfo.value) {\n\t\t\teditInfo.update(text);\n\t\t}\n\t};\n\n\t/*\n\tCancel Popups\n\t*/\n\tEditTextWidget.prototype.cancelPopups = function() {\n\t\t$tw.popup.cancel(0,this.engine.domNode);\n\t};\n\n\t/*\n\tHandle a dom \"keydown\" event, which we'll bubble up to our container for the keyboard widgets benefit\n\t*/\n\tEditTextWidget.prototype.handleKeydownEvent = function(event) {\n\t\t// Check for a keyboard shortcut\n\t\tif(this.toolbarNode) {\n\t\t\tvar shortcutElements = this.toolbarNode.querySelectorAll(\"[data-tw-keyboard-shortcut]\");\n\t\t\tfor(var index=0; index<shortcutElements.length; index++) {\n\t\t\t\tvar el = shortcutElements[index],\n\t\t\t\t\tshortcutData = el.getAttribute(\"data-tw-keyboard-shortcut\"),\n\t\t\t\t\tkeyInfoArray = $tw.keyboardManager.parseKeyDescriptors(shortcutData,{\n\t\t\t\t\t\twiki: this.wiki\n\t\t\t\t\t});\n\t\t\t\tif($tw.keyboardManager.checkKeyDescriptors(event,keyInfoArray)) {\n\t\t\t\t\tvar clickEvent = this.document.createEvent(\"Events\");\n\t\t\t\t clickEvent.initEvent(\"click\",true,false);\n\t\t\t\t el.dispatchEvent(clickEvent);\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t// Propogate the event to the container\n\t\tif(this.propogateKeydownEvent(event)) {\n\t\t\t// Ignore the keydown if it was already handled\n\t\t\tevent.preventDefault();\n\t\t\tevent.stopPropagation();\n\t\t\treturn true;\n\t\t}\n\t\t// Otherwise, process the keydown normally\n\t\treturn false;\n\t};\n\n\t/*\n\tPropogate keydown events to our container for the keyboard widgets benefit\n\t*/\n\tEditTextWidget.prototype.propogateKeydownEvent = function(event) {\n\t\tvar newEvent = this.document.createEventObject ? this.document.createEventObject() : this.document.createEvent(\"Events\");\n\t\tif(newEvent.initEvent) {\n\t\t\tnewEvent.initEvent(\"keydown\", true, true);\n\t\t}\n\t\tnewEvent.keyCode = event.keyCode;\n\t\tnewEvent.which = event.which;\n\t\tnewEvent.metaKey = event.metaKey;\n\t\tnewEvent.ctrlKey = event.ctrlKey;\n\t\tnewEvent.altKey = event.altKey;\n\t\tnewEvent.shiftKey = event.shiftKey;\n\t\treturn !this.parentDomNode.dispatchEvent(newEvent);\n\t};\n\n\treturn EditTextWidget;\n\n}\n\nexports.editTextWidgetFactory = editTextWidgetFactory;\n\n})();\n",
"type": "application/javascript",
"module-type": "library"
},
"$:/core/modules/editor/operations/bitmap/clear.js": {
"title": "$:/core/modules/editor/operations/bitmap/clear.js",
"text": "/*\\\ntitle: $:/core/modules/editor/operations/bitmap/clear.js\ntype: application/javascript\nmodule-type: bitmapeditoroperation\n\nBitmap editor operation to clear the image\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports[\"clear\"] = function(event) {\n\tvar ctx = this.canvasDomNode.getContext(\"2d\");\n\tctx.globalAlpha = 1;\n\tctx.fillStyle = event.paramObject.colour || \"white\";\n\tctx.fillRect(0,0,this.canvasDomNode.width,this.canvasDomNode.height);\n\t// Save changes\n\tthis.strokeEnd();\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "bitmapeditoroperation"
},
"$:/core/modules/editor/operations/bitmap/resize.js": {
"title": "$:/core/modules/editor/operations/bitmap/resize.js",
"text": "/*\\\ntitle: $:/core/modules/editor/operations/bitmap/resize.js\ntype: application/javascript\nmodule-type: bitmapeditoroperation\n\nBitmap editor operation to resize the image\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports[\"resize\"] = function(event) {\n\t// Get the new width\n\tvar newWidth = parseInt(event.paramObject.width || this.canvasDomNode.width,10),\n\t\tnewHeight = parseInt(event.paramObject.height || this.canvasDomNode.height,10);\n\t// Update if necessary\n\tif(newWidth > 0 && newHeight > 0 && !(newWidth === this.currCanvas.width && newHeight === this.currCanvas.height)) {\n\t\tthis.changeCanvasSize(newWidth,newHeight);\n\t}\n\t// Update the input controls\n\tthis.refreshToolbar();\n\t// Save the image into the tiddler\n\tthis.saveChanges();\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "bitmapeditoroperation"
},
"$:/core/modules/editor/operations/bitmap/rotate-left.js": {
"title": "$:/core/modules/editor/operations/bitmap/rotate-left.js",
"text": "/*\\\ntitle: $:/core/modules/editor/operations/bitmap/rotate-left.js\ntype: application/javascript\nmodule-type: bitmapeditoroperation\n\nBitmap editor operation to rotate the image left by 90 degrees\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports[\"rotate-left\"] = function(event) {\n\t// Rotate the canvas left by 90 degrees\n\tthis.rotateCanvasLeft();\n\t// Update the input controls\n\tthis.refreshToolbar();\n\t// Save the image into the tiddler\n\tthis.saveChanges();\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "bitmapeditoroperation"
},
"$:/core/modules/editor/operations/text/excise.js": {
"title": "$:/core/modules/editor/operations/text/excise.js",
"text": "/*\\\ntitle: $:/core/modules/editor/operations/text/excise.js\ntype: application/javascript\nmodule-type: texteditoroperation\n\nText editor operation to excise the selection to a new tiddler\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports[\"excise\"] = function(event,operation) {\n\tvar editTiddler = this.wiki.getTiddler(this.editTitle),\n\t\teditTiddlerTitle = this.editTitle;\n\tif(editTiddler && editTiddler.fields[\"draft.of\"]) {\n\t\teditTiddlerTitle = editTiddler.fields[\"draft.of\"];\n\t}\n\tvar excisionTitle = event.paramObject.title || this.wiki.generateNewTitle(\"New Excision\");\n\tthis.wiki.addTiddler(new $tw.Tiddler(\n\t\tthis.wiki.getCreationFields(),\n\t\tthis.wiki.getModificationFields(),\n\t\t{\n\t\t\ttitle: excisionTitle,\n\t\t\ttext: operation.selection,\n\t\t\ttags: event.paramObject.tagnew === \"yes\" ? [editTiddlerTitle] : []\n\t\t}\n\t));\n\toperation.replacement = excisionTitle;\n\tswitch(event.paramObject.type || \"transclude\") {\n\t\tcase \"transclude\":\n\t\t\toperation.replacement = \"{{\" + operation.replacement+ \"}}\";\n\t\t\tbreak;\n\t\tcase \"link\":\n\t\t\toperation.replacement = \"[[\" + operation.replacement+ \"]]\";\n\t\t\tbreak;\n\t\tcase \"macro\":\n\t\t\toperation.replacement = \"<<\" + (event.paramObject.macro || \"translink\") + \" \\\"\\\"\\\"\" + operation.replacement + \"\\\"\\\"\\\">>\";\n\t\t\tbreak;\n\t}\n\toperation.cutStart = operation.selStart;\n\toperation.cutEnd = operation.selEnd;\n\toperation.newSelStart = operation.selStart;\n\toperation.newSelEnd = operation.selStart + operation.replacement.length;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "texteditoroperation"
},
"$:/core/modules/editor/operations/text/make-link.js": {
"title": "$:/core/modules/editor/operations/text/make-link.js",
"text": "/*\\\ntitle: $:/core/modules/editor/operations/text/make-link.js\ntype: application/javascript\nmodule-type: texteditoroperation\n\nText editor operation to make a link\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports[\"make-link\"] = function(event,operation) {\n\tif(operation.selection) {\n\t\toperation.replacement = \"[[\" + operation.selection + \"|\" + event.paramObject.text + \"]]\";\n\t\toperation.cutStart = operation.selStart;\n\t\toperation.cutEnd = operation.selEnd;\n\t} else {\n\t\toperation.replacement = \"[[\" + event.paramObject.text + \"]]\";\n\t\toperation.cutStart = operation.selStart;\n\t\toperation.cutEnd = operation.selEnd;\n\t}\n\toperation.newSelStart = operation.selStart + operation.replacement.length;\n\toperation.newSelEnd = operation.newSelStart;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "texteditoroperation"
},
"$:/core/modules/editor/operations/text/prefix-lines.js": {
"title": "$:/core/modules/editor/operations/text/prefix-lines.js",
"text": "/*\\\ntitle: $:/core/modules/editor/operations/text/prefix-lines.js\ntype: application/javascript\nmodule-type: texteditoroperation\n\nText editor operation to add a prefix to the selected lines\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports[\"prefix-lines\"] = function(event,operation) {\n\t// Cut just past the preceding line break, or the start of the text\n\toperation.cutStart = $tw.utils.findPrecedingLineBreak(operation.text,operation.selStart);\n\t// Cut to just past the following line break, or to the end of the text\n\toperation.cutEnd = $tw.utils.findFollowingLineBreak(operation.text,operation.selEnd);\n\t// Compose the required prefix\n\tvar prefix = $tw.utils.repeat(event.paramObject.character,event.paramObject.count);\n\t// Process each line\n\tvar lines = operation.text.substring(operation.cutStart,operation.cutEnd).split(/\\r?\\n/mg);\n\t$tw.utils.each(lines,function(line,index) {\n\t\t// Remove and count any existing prefix characters\n\t\tvar count = 0;\n\t\twhile(line.charAt(0) === event.paramObject.character) {\n\t\t\tline = line.substring(1);\n\t\t\tcount++;\n\t\t}\n\t\t// Remove any whitespace\n\t\twhile(line.charAt(0) === \" \") {\n\t\t\tline = line.substring(1);\n\t\t}\n\t\t// We're done if we removed the exact required prefix, otherwise add it\n\t\tif(count !== event.paramObject.count) {\n\t\t\t// Apply the prefix\n\t\t\tline = prefix + \" \" + line;\n\t\t}\n\t\t// Save the modified line\n\t\tlines[index] = line;\n\t});\n\t// Stitch the replacement text together and set the selection\n\toperation.replacement = lines.join(\"\\n\");\n\tif(lines.length === 1) {\n\t\toperation.newSelStart = operation.cutStart + operation.replacement.length;\n\t\toperation.newSelEnd = operation.newSelStart;\n\t} else {\n\t\toperation.newSelStart = operation.cutStart;\n\t\toperation.newSelEnd = operation.newSelStart + operation.replacement.length;\n\t}\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "texteditoroperation"
},
"$:/core/modules/editor/operations/text/replace-all.js": {
"title": "$:/core/modules/editor/operations/text/replace-all.js",
"text": "/*\\\ntitle: $:/core/modules/editor/operations/text/replace-all.js\ntype: application/javascript\nmodule-type: texteditoroperation\n\nText editor operation to replace the entire text\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports[\"replace-all\"] = function(event,operation) {\n\toperation.cutStart = 0;\n\toperation.cutEnd = operation.text.length;\n\toperation.replacement = event.paramObject.text;\n\toperation.newSelStart = 0;\n\toperation.newSelEnd = operation.replacement.length;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "texteditoroperation"
},
"$:/core/modules/editor/operations/text/replace-selection.js": {
"title": "$:/core/modules/editor/operations/text/replace-selection.js",
"text": "/*\\\ntitle: $:/core/modules/editor/operations/text/replace-selection.js\ntype: application/javascript\nmodule-type: texteditoroperation\n\nText editor operation to replace the selection\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports[\"replace-selection\"] = function(event,operation) {\n\toperation.replacement = event.paramObject.text;\n\toperation.cutStart = operation.selStart;\n\toperation.cutEnd = operation.selEnd;\n\toperation.newSelStart = operation.selStart;\n\toperation.newSelEnd = operation.selStart + operation.replacement.length;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "texteditoroperation"
},
"$:/core/modules/editor/operations/text/save-selection.js": {
"title": "$:/core/modules/editor/operations/text/save-selection.js",
"text": "/*\\\ntitle: $:/core/modules/editor/operations/text/save-selection.js\ntype: application/javascript\nmodule-type: texteditoroperation\n\nText editor operation to save the current selection in a specified tiddler\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports[\"save-selection\"] = function(event,operation) {\n\tvar tiddler = event.paramObject.tiddler,\n\t\tfield = event.paramObject.field || \"text\";\n\tif(tiddler && field) {\n\t\tthis.wiki.setText(tiddler,field,null,operation.text.substring(operation.selStart,operation.selEnd));\n\t}\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "texteditoroperation"
},
"$:/core/modules/editor/operations/text/wrap-lines.js": {
"title": "$:/core/modules/editor/operations/text/wrap-lines.js",
"text": "/*\\\ntitle: $:/core/modules/editor/operations/text/wrap-lines.js\ntype: application/javascript\nmodule-type: texteditoroperation\n\nText editor operation to wrap the selected lines with a prefix and suffix\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports[\"wrap-lines\"] = function(event,operation) {\n\t// Cut just past the preceding line break, or the start of the text\n\toperation.cutStart = $tw.utils.findPrecedingLineBreak(operation.text,operation.selStart);\n\t// Cut to just past the following line break, or to the end of the text\n\toperation.cutEnd = $tw.utils.findFollowingLineBreak(operation.text,operation.selEnd);\n\t// Add the prefix and suffix\n\toperation.replacement = event.paramObject.prefix + \"\\n\" +\n\t\t\t\toperation.text.substring(operation.cutStart,operation.cutEnd) + \"\\n\" +\n\t\t\t\tevent.paramObject.suffix + \"\\n\";\n\toperation.newSelStart = operation.cutStart + event.paramObject.prefix.length + 1;\n\toperation.newSelEnd = operation.newSelStart + (operation.cutEnd - operation.cutStart);\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "texteditoroperation"
},
"$:/core/modules/editor/operations/text/wrap-selection.js": {
"title": "$:/core/modules/editor/operations/text/wrap-selection.js",
"text": "/*\\\ntitle: $:/core/modules/editor/operations/text/wrap-selection.js\ntype: application/javascript\nmodule-type: texteditoroperation\n\nText editor operation to wrap the selection with the specified prefix and suffix\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports[\"wrap-selection\"] = function(event,operation) {\n\tif(operation.selStart === operation.selEnd) {\n\t\t// No selection; check if we're within the prefix/suffix\n\t\tif(operation.text.substring(operation.selStart - event.paramObject.prefix.length,operation.selStart + event.paramObject.suffix.length) === event.paramObject.prefix + event.paramObject.suffix) {\n\t\t\t// Remove the prefix and suffix\n\t\t\toperation.cutStart = operation.selStart - event.paramObject.prefix.length;\n\t\t\toperation.cutEnd = operation.selEnd + event.paramObject.suffix.length;\n\t\t\toperation.replacement = \"\";\n\t\t\toperation.newSelStart = operation.cutStart;\n\t\t\toperation.newSelEnd = operation.newSelStart;\n\t\t} else {\n\t\t\t// Wrap the cursor instead\n\t\t\toperation.cutStart = operation.selStart;\n\t\t\toperation.cutEnd = operation.selEnd;\n\t\t\toperation.replacement = event.paramObject.prefix + event.paramObject.suffix;\n\t\t\toperation.newSelStart = operation.selStart + event.paramObject.prefix.length;\n\t\t\toperation.newSelEnd = operation.newSelStart;\n\t\t}\n\t} else if(operation.text.substring(operation.selStart,operation.selStart + event.paramObject.prefix.length) === event.paramObject.prefix && operation.text.substring(operation.selEnd - event.paramObject.suffix.length,operation.selEnd) === event.paramObject.suffix) {\n\t\t// Prefix and suffix are already present, so remove them\n\t\toperation.cutStart = operation.selStart;\n\t\toperation.cutEnd = operation.selEnd;\n\t\toperation.replacement = operation.selection.substring(event.paramObject.prefix.length,operation.selection.length - event.paramObject.suffix.length);\n\t\toperation.newSelStart = operation.selStart;\n\t\toperation.newSelEnd = operation.selStart + operation.replacement.length;\n\t} else {\n\t\t// Add the prefix and suffix\n\t\toperation.cutStart = operation.selStart;\n\t\toperation.cutEnd = operation.selEnd;\n\t\toperation.replacement = event.paramObject.prefix + operation.selection + event.paramObject.suffix;\n\t\toperation.newSelStart = operation.selStart;\n\t\toperation.newSelEnd = operation.selStart + operation.replacement.length;\n\t}\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "texteditoroperation"
},
"$:/core/modules/filters/addprefix.js": {
"title": "$:/core/modules/filters/addprefix.js",
"text": "/*\\\ntitle: $:/core/modules/filters/addprefix.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator for adding a prefix to each title in the list. This is\nespecially useful in contexts where only a filter expression is allowed\nand macro substitution isn't available.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.addprefix = function(source,operator,options) {\n\tvar results = [];\n\tsource(function(tiddler,title) {\n\t\tresults.push(operator.operand + title);\n\t});\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/addsuffix.js": {
"title": "$:/core/modules/filters/addsuffix.js",
"text": "/*\\\ntitle: $:/core/modules/filters/addsuffix.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator for adding a suffix to each title in the list. This is\nespecially useful in contexts where only a filter expression is allowed\nand macro substitution isn't available.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.addsuffix = function(source,operator,options) {\n\tvar results = [];\n\tsource(function(tiddler,title) {\n\t\tresults.push(title + operator.operand);\n\t});\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/after.js": {
"title": "$:/core/modules/filters/after.js",
"text": "/*\\\ntitle: $:/core/modules/filters/after.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator returning the tiddler from the current list that is after the tiddler named in the operand.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.after = function(source,operator,options) {\n\tvar results = [];\n\tsource(function(tiddler,title) {\n\t\tresults.push(title);\n\t});\n\tvar index = results.indexOf(operator.operand);\n\tif(index === -1 || index > (results.length - 2)) {\n\t\treturn [];\n\t} else {\n\t\treturn [results[index + 1]];\n\t}\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/all/current.js": {
"title": "$:/core/modules/filters/all/current.js",
"text": "/*\\\ntitle: $:/core/modules/filters/all/current.js\ntype: application/javascript\nmodule-type: allfilteroperator\n\nFilter function for [all[current]]\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.current = function(source,prefix,options) {\n\tvar currTiddlerTitle = options.widget && options.widget.getVariable(\"currentTiddler\");\n\tif(currTiddlerTitle) {\n\t\treturn [currTiddlerTitle];\n\t} else {\n\t\treturn [];\n\t}\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "allfilteroperator"
},
"$:/core/modules/filters/all/missing.js": {
"title": "$:/core/modules/filters/all/missing.js",
"text": "/*\\\ntitle: $:/core/modules/filters/all/missing.js\ntype: application/javascript\nmodule-type: allfilteroperator\n\nFilter function for [all[missing]]\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.missing = function(source,prefix,options) {\n\treturn options.wiki.getMissingTitles();\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "allfilteroperator"
},
"$:/core/modules/filters/all/orphans.js": {
"title": "$:/core/modules/filters/all/orphans.js",
"text": "/*\\\ntitle: $:/core/modules/filters/all/orphans.js\ntype: application/javascript\nmodule-type: allfilteroperator\n\nFilter function for [all[orphans]]\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.orphans = function(source,prefix,options) {\n\treturn options.wiki.getOrphanTitles();\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "allfilteroperator"
},
"$:/core/modules/filters/all/shadows.js": {
"title": "$:/core/modules/filters/all/shadows.js",
"text": "/*\\\ntitle: $:/core/modules/filters/all/shadows.js\ntype: application/javascript\nmodule-type: allfilteroperator\n\nFilter function for [all[shadows]]\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.shadows = function(source,prefix,options) {\n\treturn options.wiki.allShadowTitles();\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "allfilteroperator"
},
"$:/core/modules/filters/all/tags.js": {
"title": "$:/core/modules/filters/all/tags.js",
"text": "/*\\\ntitle: $:/core/modules/filters/all/tags.js\ntype: application/javascript\nmodule-type: allfilteroperator\n\nFilter function for [all[tags]]\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.tags = function(source,prefix,options) {\n\treturn Object.keys(options.wiki.getTagMap());\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "allfilteroperator"
},
"$:/core/modules/filters/all/tiddlers.js": {
"title": "$:/core/modules/filters/all/tiddlers.js",
"text": "/*\\\ntitle: $:/core/modules/filters/all/tiddlers.js\ntype: application/javascript\nmodule-type: allfilteroperator\n\nFilter function for [all[tiddlers]]\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.tiddlers = function(source,prefix,options) {\n\treturn options.wiki.allTitles();\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "allfilteroperator"
},
"$:/core/modules/filters/all.js": {
"title": "$:/core/modules/filters/all.js",
"text": "/*\\\ntitle: $:/core/modules/filters/all.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator for selecting tiddlers\n\n[all[shadows+tiddlers]]\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar allFilterOperators;\n\nfunction getAllFilterOperators() {\n\tif(!allFilterOperators) {\n\t\tallFilterOperators = {};\n\t\t$tw.modules.applyMethods(\"allfilteroperator\",allFilterOperators);\n\t}\n\treturn allFilterOperators;\n}\n\n/*\nExport our filter function\n*/\nexports.all = function(source,operator,options) {\n\t// Get our suboperators\n\tvar allFilterOperators = getAllFilterOperators();\n\t// Cycle through the suboperators accumulating their results\n\tvar results = [],\n\t\tsubops = operator.operand.split(\"+\");\n\t// Check for common optimisations\n\tif(subops.length === 1 && subops[0] === \"\") {\n\t\treturn source;\n\t} else if(subops.length === 1 && subops[0] === \"tiddlers\") {\n\t\treturn options.wiki.each;\n\t} else if(subops.length === 1 && subops[0] === \"shadows\") {\n\t\treturn options.wiki.eachShadow;\n\t} else if(subops.length === 2 && subops[0] === \"tiddlers\" && subops[1] === \"shadows\") {\n\t\treturn options.wiki.eachTiddlerPlusShadows;\n\t} else if(subops.length === 2 && subops[0] === \"shadows\" && subops[1] === \"tiddlers\") {\n\t\treturn options.wiki.eachShadowPlusTiddlers;\n\t}\n\t// Do it the hard way\n\tfor(var t=0; t<subops.length; t++) {\n\t\tvar subop = allFilterOperators[subops[t]];\n\t\tif(subop) {\n\t\t\t$tw.utils.pushTop(results,subop(source,operator.prefix,options));\n\t\t}\n\t}\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/backlinks.js": {
"title": "$:/core/modules/filters/backlinks.js",
"text": "/*\\\ntitle: $:/core/modules/filters/backlinks.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator for returning all the backlinks from a tiddler\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.backlinks = function(source,operator,options) {\n\tvar results = [];\n\tsource(function(tiddler,title) {\n\t\t$tw.utils.pushTop(results,options.wiki.getTiddlerBacklinks(title));\n\t});\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/before.js": {
"title": "$:/core/modules/filters/before.js",
"text": "/*\\\ntitle: $:/core/modules/filters/before.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator returning the tiddler from the current list that is before the tiddler named in the operand.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.before = function(source,operator,options) {\n\tvar results = [];\n\tsource(function(tiddler,title) {\n\t\tresults.push(title);\n\t});\n\tvar index = results.indexOf(operator.operand);\n\tif(index <= 0) {\n\t\treturn [];\n\t} else {\n\t\treturn [results[index - 1]];\n\t}\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/commands.js": {
"title": "$:/core/modules/filters/commands.js",
"text": "/*\\\ntitle: $:/core/modules/filters/commands.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator for returning the names of the commands available in this wiki\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.commands = function(source,operator,options) {\n\tvar results = [];\n\t$tw.utils.each($tw.commands,function(commandInfo,name) {\n\t\tresults.push(name);\n\t});\n\tresults.sort();\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/contains.js": {
"title": "$:/core/modules/filters/contains.js",
"text": "/*\\\ntitle: $:/core/modules/filters/contains.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator for finding values in array fields\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.contains = function(source,operator,options) {\n\tvar results = [],\n\t\tfieldname = (operator.suffix || \"list\").toLowerCase();\n\tif(operator.prefix === \"!\") {\n\t\tsource(function(tiddler,title) {\n\t\t\tif(tiddler) {\n\t\t\t\tvar list = tiddler.getFieldList(fieldname);\n\t\t\t\tif(list.indexOf(operator.operand) === -1) {\n\t\t\t\t\tresults.push(title);\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tresults.push(title);\n\t\t\t}\n\t\t});\n\t} else {\n\t\tsource(function(tiddler,title) {\n\t\t\tif(tiddler) {\n\t\t\t\tvar list = tiddler.getFieldList(fieldname);\n\t\t\t\tif(list.indexOf(operator.operand) !== -1) {\n\t\t\t\t\tresults.push(title);\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t}\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/count.js": {
"title": "$:/core/modules/filters/count.js",
"text": "/*\\\ntitle: $:/core/modules/filters/count.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator returning the number of entries in the current list.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.count = function(source,operator,options) {\n\tvar count = 0;\n\tsource(function(tiddler,title) {\n\t\tcount++;\n\t});\n\treturn [count + \"\"];\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/days.js": {
"title": "$:/core/modules/filters/days.js",
"text": "/*\\\ntitle: $:/core/modules/filters/days.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator that selects tiddlers with a specified date field within a specified date interval.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.days = function(source,operator,options) {\n\tvar results = [],\n\t\tfieldName = operator.suffix || \"modified\",\n\t\tdayInterval = (parseInt(operator.operand,10)||0),\n\t\tdayIntervalSign = $tw.utils.sign(dayInterval),\n\t\ttargetTimeStamp = (new Date()).setHours(0,0,0,0) + 1000*60*60*24*dayInterval,\n\t\tisWithinDays = function(dateField) {\n\t\t\tvar sign = $tw.utils.sign(targetTimeStamp - (new Date(dateField)).setHours(0,0,0,0));\n\t\t\treturn sign === 0 || sign === dayIntervalSign;\n\t\t};\n\n\tif(operator.prefix === \"!\") {\n\t\ttargetTimeStamp = targetTimeStamp - 1000*60*60*24*dayIntervalSign;\n\t\tsource(function(tiddler,title) {\n\t\t\tif(tiddler && tiddler.fields[fieldName]) {\n\t\t\t\tif(!isWithinDays($tw.utils.parseDate(tiddler.fields[fieldName]))) {\n\t\t\t\t\tresults.push(title);\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t} else {\n\t\tsource(function(tiddler,title) {\n\t\t\tif(tiddler && tiddler.fields[fieldName]) {\n\t\t\t\tif(isWithinDays($tw.utils.parseDate(tiddler.fields[fieldName]))) {\n\t\t\t\t\tresults.push(title);\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t}\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/each.js": {
"title": "$:/core/modules/filters/each.js",
"text": "/*\\\ntitle: $:/core/modules/filters/each.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator that selects one tiddler for each unique value of the specified field.\nWith suffix \"list\", selects all tiddlers that are values in a specified list field.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.each = function(source,operator,options) {\n\tvar results =[] ,\n\tvalue,values = {},\n\tfield = operator.operand || \"title\";\n\tif(operator.suffix === \"value\" && field === \"title\") {\n\t\tsource(function(tiddler,title) {\n\t\t\tif(!$tw.utils.hop(values,title)) {\n\t\t\t\tvalues[title] = true;\n\t\t\t\tresults.push(title);\n\t\t\t}\n\t\t});\n\t} else if(operator.suffix !== \"list-item\") {\n\t\tif(field === \"title\") {\n\t\t\tsource(function(tiddler,title) {\n\t\t\t\tif(tiddler && !$tw.utils.hop(values,title)) {\n\t\t\t\t\tvalues[title] = true;\n\t\t\t\t\tresults.push(title);\n\t\t\t\t}\n\t\t\t});\n\t\t} else {\n\t\t\tsource(function(tiddler,title) {\n\t\t\t\tif(tiddler) {\n\t\t\t\t\tvalue = tiddler.getFieldString(field);\n\t\t\t\t\tif(!$tw.utils.hop(values,value)) {\n\t\t\t\t\t\tvalues[value] = true;\n\t\t\t\t\t\tresults.push(title);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\t} else {\n\t\tsource(function(tiddler,title) {\n\t\t\tif(tiddler) {\n\t\t\t\t$tw.utils.each(\n\t\t\t\t\toptions.wiki.getTiddlerList(title,field),\n\t\t\t\t\tfunction(value) {\n\t\t\t\t\t\tif(!$tw.utils.hop(values,value)) {\n\t\t\t\t\t\t\tvalues[value] = true;\n\t\t\t\t\t\t\tresults.push(value);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t);\n\t\t\t}\n\t\t});\n\t}\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/eachday.js": {
"title": "$:/core/modules/filters/eachday.js",
"text": "/*\\\ntitle: $:/core/modules/filters/eachday.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator that selects one tiddler for each unique day covered by the specified date field\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.eachday = function(source,operator,options) {\n\tvar results = [],\n\t\tvalues = [],\n\t\tfieldName = operator.operand || \"modified\";\n\t// Function to convert a date/time to a date integer\n\tvar toDate = function(value) {\n\t\tvalue = (new Date(value)).setHours(0,0,0,0);\n\t\treturn value+0;\n\t};\n\tsource(function(tiddler,title) {\n\t\tif(tiddler && tiddler.fields[fieldName]) {\n\t\t\tvar value = toDate($tw.utils.parseDate(tiddler.fields[fieldName]));\n\t\t\tif(values.indexOf(value) === -1) {\n\t\t\t\tvalues.push(value);\n\t\t\t\tresults.push(title);\n\t\t\t}\n\t\t}\n\t});\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/editiondescription.js": {
"title": "$:/core/modules/filters/editiondescription.js",
"text": "/*\\\ntitle: $:/core/modules/filters/editiondescription.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator for returning the descriptions of the specified edition names\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.editiondescription = function(source,operator,options) {\n\tvar results = [],\n\t\teditionInfo = $tw.utils.getEditionInfo();\n\tif(editionInfo) {\n\t\tsource(function(tiddler,title) {\n\t\t\tif($tw.utils.hop(editionInfo,title)) {\n\t\t\t\tresults.push(editionInfo[title].description || \"\");\t\t\t\t\n\t\t\t}\n\t\t});\n\t}\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/editions.js": {
"title": "$:/core/modules/filters/editions.js",
"text": "/*\\\ntitle: $:/core/modules/filters/editions.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator for returning the names of the available editions in this wiki\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.editions = function(source,operator,options) {\n\tvar results = [],\n\t\teditionInfo = $tw.utils.getEditionInfo();\n\tif(editionInfo) {\n\t\t$tw.utils.each(editionInfo,function(info,name) {\n\t\t\tresults.push(name);\n\t\t});\n\t}\n\tresults.sort();\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/else.js": {
"title": "$:/core/modules/filters/else.js",
"text": "/*\\\ntitle: $:/core/modules/filters/else.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator for replacing an empty input list with a constant, passing a non-empty input list straight through\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.else = function(source,operator,options) {\n\tvar results = [];\n\tsource(function(tiddler,title) {\n\t\tresults.push(title);\n\t});\n\tif(results.length === 0) {\n\t\treturn [operator.operand];\n\t} else {\n\t\treturn results;\n\t}\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/decodeuricomponent.js": {
"title": "$:/core/modules/filters/decodeuricomponent.js",
"text": "/*\\\ntitle: $:/core/modules/filters/decodeuricomponent.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator for applying decodeURIComponent() to each item.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter functions\n*/\n\nexports.decodeuricomponent = function(source,operator,options) {\n\tvar results = [];\n\tsource(function(tiddler,title) {\n\t\tvar value = title;\n\t\ttry {\n\t\t\tvalue = decodeURIComponent(title);\n\t\t} catch(e) {\n\t\t}\n\t\tresults.push(value);\n\t});\n\treturn results;\n};\n\nexports.encodeuricomponent = function(source,operator,options) {\n\tvar results = [];\n\tsource(function(tiddler,title) {\n\t\tresults.push(encodeURIComponent(title));\n\t});\n\treturn results;\n};\n\nexports.decodeuri = function(source,operator,options) {\n\tvar results = [];\n\tsource(function(tiddler,title) {\n\t\tvar value = title;\n\t\ttry {\n\t\t\tvalue = decodeURI(title);\n\t\t} catch(e) {\n\t\t}\n\t\tresults.push(value);\n\t});\n\treturn results;\n};\n\nexports.encodeuri = function(source,operator,options) {\n\tvar results = [];\n\tsource(function(tiddler,title) {\n\t\tresults.push(encodeURI(title));\n\t});\n\treturn results;\n};\n\nexports.decodehtml = function(source,operator,options) {\n\tvar results = [];\n\tsource(function(tiddler,title) {\n\t\tresults.push($tw.utils.htmlDecode(title));\n\t});\n\treturn results;\n};\n\nexports.encodehtml = function(source,operator,options) {\n\tvar results = [];\n\tsource(function(tiddler,title) {\n\t\tresults.push($tw.utils.htmlEncode(title));\n\t});\n\treturn results;\n};\n\nexports.stringify = function(source,operator,options) {\n\tvar results = [];\n\tsource(function(tiddler,title) {\n\t\tresults.push($tw.utils.stringify(title));\n\t});\n\treturn results;\n};\n\nexports.jsonstringify = function(source,operator,options) {\n\tvar results = [];\n\tsource(function(tiddler,title) {\n\t\tresults.push($tw.utils.jsonStringify(title));\n\t});\n\treturn results;\n};\n\nexports.escaperegexp = function(source,operator,options) {\n\tvar results = [];\n\tsource(function(tiddler,title) {\n\t\tresults.push($tw.utils.escapeRegExp(title));\n\t});\n\treturn results;\n};\n\nexports.escapecss = function(source,operator,options) {\n\tvar results = [];\n\tsource(function(tiddler,title) {\n\t\t// escape any character with a special meaning in CSS using CSS.escape()\n\t\tresults.push(CSS.escape(title));\n\t});\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/enlist.js": {
"title": "$:/core/modules/filters/enlist.js",
"text": "/*\\\ntitle: $:/core/modules/filters/enlist.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator returning its operand parsed as a list\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.enlist = function(source,operator,options) {\n\tvar allowDuplicates = false;\n\tswitch(operator.suffix) {\n\t\tcase \"raw\":\n\t\t\tallowDuplicates = true;\n\t\t\tbreak;\n\t\tcase \"dedupe\":\n\t\t\tallowDuplicates = false;\n\t\t\tbreak;\n\t}\n\tvar list = $tw.utils.parseStringArray(operator.operand,allowDuplicates);\n\tif(operator.prefix === \"!\") {\n\t\tvar results = [];\n\t\tsource(function(tiddler,title) {\n\t\t\tif(list.indexOf(title) === -1) {\n\t\t\t\tresults.push(title);\n\t\t\t}\n\t\t});\n\t\treturn results;\n\t} else {\n\t\treturn list;\n\t}\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/field.js": {
"title": "$:/core/modules/filters/field.js",
"text": "/*\\\ntitle: $:/core/modules/filters/field.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator for comparing fields for equality\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.field = function(source,operator,options) {\n\tvar results = [],indexedResults,\n\t\tfieldname = (operator.suffix || operator.operator || \"title\").toLowerCase();\n\tif(operator.prefix === \"!\") {\n\t\tif(operator.regexp) {\n\t\t\tsource(function(tiddler,title) {\n\t\t\t\tif(tiddler) {\n\t\t\t\t\tvar text = tiddler.getFieldString(fieldname);\n\t\t\t\t\tif(text !== null && !operator.regexp.exec(text)) {\n\t\t\t\t\t\tresults.push(title);\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tresults.push(title);\n\t\t\t\t}\n\t\t\t});\n\t\t} else {\n\t\t\tsource(function(tiddler,title) {\n\t\t\t\tif(tiddler) {\n\t\t\t\t\tvar text = tiddler.getFieldString(fieldname);\n\t\t\t\t\tif(text !== null && text !== operator.operand) {\n\t\t\t\t\t\tresults.push(title);\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tresults.push(title);\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\t} else {\n\t\tif(operator.regexp) {\n\t\t\tsource(function(tiddler,title) {\n\t\t\t\tif(tiddler) {\n\t\t\t\t\tvar text = tiddler.getFieldString(fieldname);\n\t\t\t\t\tif(text !== null && !!operator.regexp.exec(text)) {\n\t\t\t\t\t\tresults.push(title);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t});\n\t\t} else {\n\t\t\tif(source.byField) {\n\t\t\t\tindexedResults = source.byField(fieldname,operator.operand);\n\t\t\t\tif(indexedResults) {\n\t\t\t\t\treturn indexedResults\n\t\t\t\t}\n\t\t\t}\n\t\t\tsource(function(tiddler,title) {\n\t\t\t\tif(tiddler) {\n\t\t\t\t\tvar text = tiddler.getFieldString(fieldname);\n\t\t\t\t\tif(text !== null && text === operator.operand) {\n\t\t\t\t\t\tresults.push(title);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\t}\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/fields.js": {
"title": "$:/core/modules/filters/fields.js",
"text": "/*\\\ntitle: $:/core/modules/filters/fields.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator for returning the names of the fields on the selected tiddlers\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.fields = function(source,operator,options) {\n\tvar results = [];\n\tsource(function(tiddler,title) {\n\t\tif(tiddler) {\n\t\t\tfor(var fieldName in tiddler.fields) {\n\t\t\t\t$tw.utils.pushTop(results,fieldName);\n\t\t\t}\n\t\t}\n\t});\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/get.js": {
"title": "$:/core/modules/filters/get.js",
"text": "/*\\\ntitle: $:/core/modules/filters/get.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator for replacing tiddler titles by the value of the field specified in the operand.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.get = function(source,operator,options) {\n\tvar results = [];\n\tsource(function(tiddler,title) {\n\t\tif(tiddler) {\n\t\t\tvar value = tiddler.getFieldString(operator.operand);\n\t\t\tif(value) {\n\t\t\t\tresults.push(value);\n\t\t\t}\n\t\t}\n\t});\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/getindex.js": {
"title": "$:/core/modules/filters/getindex.js",
"text": "/*\\\ntitle: $:/core/modules/filters/getindex.js\ntype: application/javascript\nmodule-type: filteroperator\n\nreturns the value at a given index of datatiddlers\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.getindex = function(source,operator,options) {\n\tvar data,title,results = [];\n\tif(operator.operand){\n\t\tsource(function(tiddler,title) {\n\t\t\ttitle = tiddler ? tiddler.fields.title : title;\n\t\t\tdata = options.wiki.extractTiddlerDataItem(tiddler,operator.operand);\n\t\t\tif(data) {\n\t\t\t\tresults.push(data);\n\t\t\t}\n\t\t});\n\t}\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/getvariable.js": {
"title": "$:/core/modules/filters/getvariable.js",
"text": "/*\\\ntitle: $:/core/modules/filters/getvariable.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator for replacing input values by the value of the variable with the same name, or blank if the variable is missing\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.getvariable = function(source,operator,options) {\n\tvar results = [];\n\tsource(function(tiddler,title) {\n\t\tresults.push(options.widget.getVariable(title) || \"\");\n\t});\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/has.js": {
"title": "$:/core/modules/filters/has.js",
"text": "/*\\\ntitle: $:/core/modules/filters/has.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator for checking if a tiddler has the specified field\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.has = function(source,operator,options) {\n\tvar results = [],\n\t\tinvert = operator.prefix === \"!\";\n\n\tif(operator.suffix === \"field\") {\n\t\tif(invert) {\n\t\t\tsource(function(tiddler,title) {\n\t\t\t\tif(!tiddler || (tiddler && (!$tw.utils.hop(tiddler.fields,operator.operand)))) {\n\t\t\t\t\tresults.push(title);\n\t\t\t\t}\n\t\t\t});\n\t\t} else {\n\t\t\tsource(function(tiddler,title) {\n\t\t\t\tif(tiddler && $tw.utils.hop(tiddler.fields,operator.operand)) {\n\t\t\t\t\tresults.push(title);\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\t} else {\n\t\tif(invert) {\n\t\t\tsource(function(tiddler,title) {\n\t\t\t\tif(!tiddler || !$tw.utils.hop(tiddler.fields,operator.operand) || (tiddler.fields[operator.operand] === \"\")) {\n\t\t\t\t\tresults.push(title);\n\t\t\t\t}\n\t\t\t});\n\t\t} else {\n\t\t\tsource(function(tiddler,title) {\n\t\t\t\tif(tiddler && $tw.utils.hop(tiddler.fields,operator.operand) && !(tiddler.fields[operator.operand] === \"\" || tiddler.fields[operator.operand].length === 0)) {\n\t\t\t\t\tresults.push(title);\n\t\t\t\t}\n\t\t\t});\t\t\t\t\n\t\t}\n\t}\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/haschanged.js": {
"title": "$:/core/modules/filters/haschanged.js",
"text": "/*\\\ntitle: $:/core/modules/filters/haschanged.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator returns tiddlers from the list that have a non-zero changecount.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.haschanged = function(source,operator,options) {\n\tvar results = [];\n\tif(operator.prefix === \"!\") {\n\t\tsource(function(tiddler,title) {\n\t\t\tif(options.wiki.getChangeCount(title) === 0) {\n\t\t\t\tresults.push(title);\n\t\t\t}\n\t\t});\n\t} else {\n\t\tsource(function(tiddler,title) {\n\t\t\tif(options.wiki.getChangeCount(title) > 0) {\n\t\t\t\tresults.push(title);\n\t\t\t}\n\t\t});\n\t}\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/indexes.js": {
"title": "$:/core/modules/filters/indexes.js",
"text": "/*\\\ntitle: $:/core/modules/filters/indexes.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator for returning the indexes of a data tiddler\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.indexes = function(source,operator,options) {\n\tvar results = [];\n\tsource(function(tiddler,title) {\n\t\tvar data = options.wiki.getTiddlerDataCached(title);\n\t\tif(data) {\n\t\t\t$tw.utils.pushTop(results,Object.keys(data));\n\t\t}\n\t});\n\tresults.sort();\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/insertbefore.js": {
"title": "$:/core/modules/filters/insertbefore.js",
"text": "/*\\\ntitle: $:/core/modules/filters/insertbefore.js\ntype: application/javascript\nmodule-type: filteroperator\n\nInsert an item before another item in a list\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nOrder a list\n*/\nexports.insertbefore = function(source,operator,options) {\n\tvar results = [];\n\tsource(function(tiddler,title) {\n\t\tresults.push(title);\n\t});\n\tvar target = options.widget && options.widget.getVariable(operator.suffix || \"currentTiddler\");\n\tif(target !== operator.operand) {\n\t\t// Remove the entry from the list if it is present\n\t\tvar pos = results.indexOf(operator.operand);\n\t\tif(pos !== -1) {\n\t\t\tresults.splice(pos,1);\n\t\t}\n\t\t// Insert the entry before the target marker\n\t\tpos = results.indexOf(target);\n\t\tif(pos !== -1) {\n\t\t\tresults.splice(pos,0,operator.operand);\n\t\t} else {\n\t\t\tresults.push(operator.operand);\n\t\t}\n\t}\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/is/blank.js": {
"title": "$:/core/modules/filters/is/blank.js",
"text": "/*\\\ntitle: $:/core/modules/filters/is/blank.js\ntype: application/javascript\nmodule-type: isfilteroperator\n\nFilter function for [is[blank]]\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.blank = function(source,prefix,options) {\n\tvar results = [];\n\tif(prefix === \"!\") {\n\t\tsource(function(tiddler,title) {\n\t\t\tif(title) {\n\t\t\t\tresults.push(title);\n\t\t\t}\n\t\t});\n\t} else {\n\t\tsource(function(tiddler,title) {\n\t\t\tif(!title) {\n\t\t\t\tresults.push(title);\n\t\t\t}\n\t\t});\n\t}\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "isfilteroperator"
},
"$:/core/modules/filters/is/current.js": {
"title": "$:/core/modules/filters/is/current.js",
"text": "/*\\\ntitle: $:/core/modules/filters/is/current.js\ntype: application/javascript\nmodule-type: isfilteroperator\n\nFilter function for [is[current]]\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.current = function(source,prefix,options) {\n\tvar results = [],\n\t\tcurrTiddlerTitle = options.widget && options.widget.getVariable(\"currentTiddler\");\n\tif(prefix === \"!\") {\n\t\tsource(function(tiddler,title) {\n\t\t\tif(title !== currTiddlerTitle) {\n\t\t\t\tresults.push(title);\n\t\t\t}\n\t\t});\n\t} else {\n\t\tsource(function(tiddler,title) {\n\t\t\tif(title === currTiddlerTitle) {\n\t\t\t\tresults.push(title);\n\t\t\t}\n\t\t});\n\t}\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "isfilteroperator"
},
"$:/core/modules/filters/is/image.js": {
"title": "$:/core/modules/filters/is/image.js",
"text": "/*\\\ntitle: $:/core/modules/filters/is/image.js\ntype: application/javascript\nmodule-type: isfilteroperator\n\nFilter function for [is[image]]\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.image = function(source,prefix,options) {\n\tvar results = [];\n\tif(prefix === \"!\") {\n\t\tsource(function(tiddler,title) {\n\t\t\tif(!options.wiki.isImageTiddler(title)) {\n\t\t\t\tresults.push(title);\n\t\t\t}\n\t\t});\n\t} else {\n\t\tsource(function(tiddler,title) {\n\t\t\tif(options.wiki.isImageTiddler(title)) {\n\t\t\t\tresults.push(title);\n\t\t\t}\n\t\t});\n\t}\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "isfilteroperator"
},
"$:/core/modules/filters/is/missing.js": {
"title": "$:/core/modules/filters/is/missing.js",
"text": "/*\\\ntitle: $:/core/modules/filters/is/missing.js\ntype: application/javascript\nmodule-type: isfilteroperator\n\nFilter function for [is[missing]]\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.missing = function(source,prefix,options) {\n\tvar results = [];\n\tif(prefix === \"!\") {\n\t\tsource(function(tiddler,title) {\n\t\t\tif(options.wiki.tiddlerExists(title)) {\n\t\t\t\tresults.push(title);\n\t\t\t}\n\t\t});\n\t} else {\n\t\tsource(function(tiddler,title) {\n\t\t\tif(!options.wiki.tiddlerExists(title)) {\n\t\t\t\tresults.push(title);\n\t\t\t}\n\t\t});\n\t}\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "isfilteroperator"
},
"$:/core/modules/filters/is/orphan.js": {
"title": "$:/core/modules/filters/is/orphan.js",
"text": "/*\\\ntitle: $:/core/modules/filters/is/orphan.js\ntype: application/javascript\nmodule-type: isfilteroperator\n\nFilter function for [is[orphan]]\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.orphan = function(source,prefix,options) {\n\tvar results = [],\n\t\torphanTitles = options.wiki.getOrphanTitles();\n\tif(prefix === \"!\") {\n\t\tsource(function(tiddler,title) {\n\t\t\tif(orphanTitles.indexOf(title) === -1) {\n\t\t\t\tresults.push(title);\n\t\t\t}\n\t\t});\n\t} else {\n\t\tsource(function(tiddler,title) {\n\t\t\tif(orphanTitles.indexOf(title) !== -1) {\n\t\t\t\tresults.push(title);\n\t\t\t}\n\t\t});\n\t}\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "isfilteroperator"
},
"$:/core/modules/filters/is/shadow.js": {
"title": "$:/core/modules/filters/is/shadow.js",
"text": "/*\\\ntitle: $:/core/modules/filters/is/shadow.js\ntype: application/javascript\nmodule-type: isfilteroperator\n\nFilter function for [is[shadow]]\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.shadow = function(source,prefix,options) {\n\tvar results = [];\n\tif(prefix === \"!\") {\n\t\tsource(function(tiddler,title) {\n\t\t\tif(!options.wiki.isShadowTiddler(title)) {\n\t\t\t\tresults.push(title);\n\t\t\t}\n\t\t});\n\t} else {\n\t\tsource(function(tiddler,title) {\n\t\t\tif(options.wiki.isShadowTiddler(title)) {\n\t\t\t\tresults.push(title);\n\t\t\t}\n\t\t});\n\t}\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "isfilteroperator"
},
"$:/core/modules/filters/is/system.js": {
"title": "$:/core/modules/filters/is/system.js",
"text": "/*\\\ntitle: $:/core/modules/filters/is/system.js\ntype: application/javascript\nmodule-type: isfilteroperator\n\nFilter function for [is[system]]\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.system = function(source,prefix,options) {\n\tvar results = [];\n\tif(prefix === \"!\") {\n\t\tsource(function(tiddler,title) {\n\t\t\tif(!options.wiki.isSystemTiddler(title)) {\n\t\t\t\tresults.push(title);\n\t\t\t}\n\t\t});\n\t} else {\n\t\tsource(function(tiddler,title) {\n\t\t\tif(options.wiki.isSystemTiddler(title)) {\n\t\t\t\tresults.push(title);\n\t\t\t}\n\t\t});\n\t}\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "isfilteroperator"
},
"$:/core/modules/filters/is/tag.js": {
"title": "$:/core/modules/filters/is/tag.js",
"text": "/*\\\ntitle: $:/core/modules/filters/is/tag.js\ntype: application/javascript\nmodule-type: isfilteroperator\n\nFilter function for [is[tag]]\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.tag = function(source,prefix,options) {\n\tvar results = [],\n\t\ttagMap = options.wiki.getTagMap();\n\tif(prefix === \"!\") {\n\t\tsource(function(tiddler,title) {\n\t\t\tif(!$tw.utils.hop(tagMap,title)) {\n\t\t\t\tresults.push(title);\n\t\t\t}\n\t\t});\n\t} else {\n\t\tsource(function(tiddler,title) {\n\t\t\tif($tw.utils.hop(tagMap,title)) {\n\t\t\t\tresults.push(title);\n\t\t\t}\n\t\t});\n\t}\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "isfilteroperator"
},
"$:/core/modules/filters/is/tiddler.js": {
"title": "$:/core/modules/filters/is/tiddler.js",
"text": "/*\\\ntitle: $:/core/modules/filters/is/tiddler.js\ntype: application/javascript\nmodule-type: isfilteroperator\n\nFilter function for [is[tiddler]]\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.tiddler = function(source,prefix,options) {\n\tvar results = [];\n\tif(prefix === \"!\") {\n\t\tsource(function(tiddler,title) {\n\t\t\tif(!options.wiki.tiddlerExists(title)) {\n\t\t\t\tresults.push(title);\n\t\t\t}\n\t\t});\n\t} else {\n\t\tsource(function(tiddler,title) {\n\t\t\tif(options.wiki.tiddlerExists(title)) {\n\t\t\t\tresults.push(title);\n\t\t\t}\n\t\t});\n\t}\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "isfilteroperator"
},
"$:/core/modules/filters/is/variable.js": {
"title": "$:/core/modules/filters/is/variable.js",
"text": "/*\\\ntitle: $:/core/modules/filters/is/variable.js\ntype: application/javascript\nmodule-type: isfilteroperator\n\nFilter function for [is[variable]]\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.variable = function(source,prefix,options) {\n\tvar results = [];\n\tif(prefix === \"!\") {\n\t\tsource(function(tiddler,title) {\n\t\t\tif(!(title in options.widget.variables)) {\n\t\t\t\tresults.push(title);\n\t\t\t}\n\t\t});\n\t} else {\n\t\tsource(function(tiddler,title) {\n\t\t\tif(title in options.widget.variables) {\n\t\t\t\tresults.push(title);\n\t\t\t}\n\t\t});\n\t}\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "isfilteroperator"
},
"$:/core/modules/filters/is.js": {
"title": "$:/core/modules/filters/is.js",
"text": "/*\\\ntitle: $:/core/modules/filters/is.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator for checking tiddler properties\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar isFilterOperators;\n\nfunction getIsFilterOperators() {\n\tif(!isFilterOperators) {\n\t\tisFilterOperators = {};\n\t\t$tw.modules.applyMethods(\"isfilteroperator\",isFilterOperators);\n\t}\n\treturn isFilterOperators;\n}\n\n/*\nExport our filter function\n*/\nexports.is = function(source,operator,options) {\n\t// Dispatch to the correct isfilteroperator\n\tvar isFilterOperators = getIsFilterOperators();\n\tif(operator.operand) {\n\t\tvar isFilterOperator = isFilterOperators[operator.operand];\n\t\tif(isFilterOperator) {\n\t\t\treturn isFilterOperator(source,operator.prefix,options);\n\t\t} else {\n\t\t\treturn [$tw.language.getString(\"Error/IsFilterOperator\")];\n\t\t}\n\t} else {\n\t\t// Return all tiddlers if the operand is missing\n\t\tvar results = [];\n\t\tsource(function(tiddler,title) {\n\t\t\tresults.push(title);\n\t\t});\n\t\treturn results;\n\t}\n};\n\n})();",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/limit.js": {
"title": "$:/core/modules/filters/limit.js",
"text": "/*\\\ntitle: $:/core/modules/filters/limit.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator for chopping the results to a specified maximum number of entries\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.limit = function(source,operator,options) {\n\tvar results = [];\n\t// Convert to an array\n\tsource(function(tiddler,title) {\n\t\tresults.push(title);\n\t});\n\t// Slice the array if necessary\n\tvar limit = Math.min(results.length,parseInt(operator.operand,10));\n\tif(operator.prefix === \"!\") {\n\t\tresults = results.slice(-limit);\n\t} else {\n\t\tresults = results.slice(0,limit);\n\t}\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/links.js": {
"title": "$:/core/modules/filters/links.js",
"text": "/*\\\ntitle: $:/core/modules/filters/links.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator for returning all the links from a tiddler\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.links = function(source,operator,options) {\n\tvar results = [];\n\tsource(function(tiddler,title) {\n\t\t$tw.utils.pushTop(results,options.wiki.getTiddlerLinks(title));\n\t});\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/list.js": {
"title": "$:/core/modules/filters/list.js",
"text": "/*\\\ntitle: $:/core/modules/filters/list.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator returning the tiddlers whose title is listed in the operand tiddler\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.list = function(source,operator,options) {\n\tvar results = [],\n\t\ttr = $tw.utils.parseTextReference(operator.operand),\n\t\tcurrTiddlerTitle = options.widget && options.widget.getVariable(\"currentTiddler\"),\n\t\tlist = options.wiki.getTiddlerList(tr.title || currTiddlerTitle,tr.field,tr.index);\n\tif(operator.prefix === \"!\") {\n\t\tsource(function(tiddler,title) {\n\t\t\tif(list.indexOf(title) === -1) {\n\t\t\t\tresults.push(title);\n\t\t\t}\n\t\t});\n\t} else {\n\t\tresults = list;\n\t}\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/listed.js": {
"title": "$:/core/modules/filters/listed.js",
"text": "/*\\\ntitle: $:/core/modules/filters/listed.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator returning all tiddlers that have the selected tiddlers in a list\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.listed = function(source,operator,options) {\n\tvar field = operator.operand || \"list\",\n\t\tresults = [];\n\tsource(function(tiddler,title) {\n\t\t$tw.utils.pushTop(results,options.wiki.findListingsOfTiddler(title,field));\n\t});\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/listops.js": {
"title": "$:/core/modules/filters/listops.js",
"text": "/*\\\ntitle: $:/core/modules/filters/listops.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operators for manipulating the current selection list\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nOrder a list\n*/\nexports.order = function(source,operator,options) {\n\tvar results = [];\n\tif(operator.operand.toLowerCase() === \"reverse\") {\n\t\tsource(function(tiddler,title) {\n\t\t\tresults.unshift(title);\n\t\t});\n\t} else {\n\t\tsource(function(tiddler,title) {\n\t\t\tresults.push(title);\n\t\t});\n\t}\n\treturn results;\n};\n\n/*\nReverse list\n*/\nexports.reverse = function(source,operator,options) {\n\tvar results = [];\n\tsource(function(tiddler,title) {\n\t\tresults.unshift(title);\n\t});\n\treturn results;\n};\n\n/*\nFirst entry/entries in list\n*/\nexports.first = function(source,operator,options) {\n\tvar count = $tw.utils.getInt(operator.operand,1),\n\t\tresults = [];\n\tsource(function(tiddler,title) {\n\t\tresults.push(title);\n\t});\n\treturn results.slice(0,count);\n};\n\n/*\nLast entry/entries in list\n*/\nexports.last = function(source,operator,options) {\n\tvar count = $tw.utils.getInt(operator.operand,1),\n\t\tresults = [];\n\tsource(function(tiddler,title) {\n\t\tresults.push(title);\n\t});\n\treturn results.slice(-count);\n};\n\n/*\nAll but the first entry/entries of the list\n*/\nexports.rest = function(source,operator,options) {\n\tvar count = $tw.utils.getInt(operator.operand,1),\n\t\tresults = [];\n\tsource(function(tiddler,title) {\n\t\tresults.push(title);\n\t});\n\treturn results.slice(count);\n};\nexports.butfirst = exports.rest;\nexports.bf = exports.rest;\n\n/*\nAll but the last entry/entries of the list\n*/\nexports.butlast = function(source,operator,options) {\n\tvar count = $tw.utils.getInt(operator.operand,1),\n\t\tresults = [];\n\tsource(function(tiddler,title) {\n\t\tresults.push(title);\n\t});\n\treturn results.slice(0,-count);\n};\nexports.bl = exports.butlast;\n\n/*\nThe nth member of the list\n*/\nexports.nth = function(source,operator,options) {\n\tvar count = $tw.utils.getInt(operator.operand,1),\n\t\tresults = [];\n\tsource(function(tiddler,title) {\n\t\tresults.push(title);\n\t});\n\treturn results.slice(count - 1,count);\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/lookup.js": {
"title": "$:/core/modules/filters/lookup.js",
"text": "/*\\\ntitle: $:/core/modules/filters/lookup.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator that looks up values via a title prefix\n\n[lookup:<field>[<prefix>]]\n\nPrepends the prefix to the selected items and returns the specified field value\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.lookup = function(source,operator,options) {\n\tvar results = [];\n\tsource(function(tiddler,title) {\n\t\tresults.push(options.wiki.getTiddlerText(operator.operand + title) || options.wiki.getTiddlerText(operator.operand + operator.suffix));\n\t});\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/match.js": {
"title": "$:/core/modules/filters/match.js",
"text": "/*\\\ntitle: $:/core/modules/filters/match.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator for checking if a title matches a string\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.match = function(source,operator,options) {\n\tvar results = [],\n\t\tsuffixes = (operator.suffixes || [])[0] || [];\n\tif(suffixes.indexOf(\"caseinsensitive\") !== -1) {\n\t\tif(operator.prefix === \"!\") {\n\t\t\tsource(function(tiddler,title) {\n\t\t\t\tif(title.toLowerCase() !== (operator.operand || \"\").toLowerCase()) {\n\t\t\t\t\tresults.push(title);\n\t\t\t\t}\n\t\t\t});\n\t\t} else {\n\t\t\tsource(function(tiddler,title) {\n\t\t\t\tif(title.toLowerCase() === (operator.operand || \"\").toLowerCase()) {\n\t\t\t\t\tresults.push(title);\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\t} else {\n\t\tif(operator.prefix === \"!\") {\n\t\t\tsource(function(tiddler,title) {\n\t\t\t\tif(title !== operator.operand) {\n\t\t\t\t\tresults.push(title);\n\t\t\t\t}\n\t\t\t});\n\t\t} else {\n\t\t\tsource(function(tiddler,title) {\n\t\t\t\tif(title === operator.operand) {\n\t\t\t\t\tresults.push(title);\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\t}\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/math.js": {
"title": "$:/core/modules/filters/math.js",
"text": "/*\\\ntitle: $:/core/modules/filters/math.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operators for math. Unary/binary operators work on each item in turn, and return a new item list.\n\nSum/product/maxall/minall operate on the entire list, returning a single item.\n\nNote that strings are converted to numbers automatically. Trailing non-digits are ignored.\n\n* \"\" converts to 0\n* \"12kk\" converts to 12\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.negate = makeNumericBinaryOperator(\n\tfunction(a) {return -a}\n);\n\nexports.abs = makeNumericBinaryOperator(\n\tfunction(a) {return Math.abs(a)}\n);\n\nexports.ceil = makeNumericBinaryOperator(\n\tfunction(a) {return Math.ceil(a)}\n);\n\nexports.floor = makeNumericBinaryOperator(\n\tfunction(a) {return Math.floor(a)}\n);\n\nexports.round = makeNumericBinaryOperator(\n\tfunction(a) {return Math.round(a)}\n);\n\nexports.trunc = makeNumericBinaryOperator(\n\tfunction(a) {return Math.trunc(a)}\n);\n\nexports.untrunc = makeNumericBinaryOperator(\n\tfunction(a) {return Math.ceil(Math.abs(a)) * Math.sign(a)}\n);\n\nexports.sign = makeNumericBinaryOperator(\n\tfunction(a) {return Math.sign(a)}\n);\n\nexports.add = makeNumericBinaryOperator(\n\tfunction(a,b) {return a + b;}\n);\n\nexports.subtract = makeNumericBinaryOperator(\n\tfunction(a,b) {return a - b;}\n);\n\nexports.multiply = makeNumericBinaryOperator(\n\tfunction(a,b) {return a * b;}\n);\n\nexports.divide = makeNumericBinaryOperator(\n\tfunction(a,b) {return a / b;}\n);\n\nexports.remainder = makeNumericBinaryOperator(\n\tfunction(a,b) {return a % b;}\n);\n\nexports.max = makeNumericBinaryOperator(\n\tfunction(a,b) {return Math.max(a,b);}\n);\n\nexports.min = makeNumericBinaryOperator(\n\tfunction(a,b) {return Math.min(a,b);}\n);\n\nexports.fixed = makeNumericBinaryOperator(\n\tfunction(a,b) {return Number.prototype.toFixed.call(a,Math.min(Math.max(b,0),100));}\n);\n\nexports.precision = makeNumericBinaryOperator(\n\tfunction(a,b) {return Number.prototype.toPrecision.call(a,Math.min(Math.max(b,1),100));}\n);\n\nexports.exponential = makeNumericBinaryOperator(\n\tfunction(a,b) {return Number.prototype.toExponential.call(a,Math.min(Math.max(b,0),100));}\n);\n\nexports.sum = makeNumericReducingOperator(\n\tfunction(accumulator,value) {return accumulator + value},\n\t0 // Initial value\n);\n\nexports.product = makeNumericReducingOperator(\n\tfunction(accumulator,value) {return accumulator * value},\n\t1 // Initial value\n);\n\nexports.maxall = makeNumericReducingOperator(\n\tfunction(accumulator,value) {return Math.max(accumulator,value)},\n\t-Infinity // Initial value\n);\n\nexports.minall = makeNumericReducingOperator(\n\tfunction(accumulator,value) {return Math.min(accumulator,value)},\n\tInfinity // Initial value\n);\n\nfunction makeNumericBinaryOperator(fnCalc) {\n\treturn function(source,operator,options) {\n\t\tvar result = [],\n\t\t\tnumOperand = parseNumber(operator.operand);\n\t\tsource(function(tiddler,title) {\n\t\t\tresult.push(stringifyNumber(fnCalc(parseNumber(title),numOperand)));\n\t\t});\n\t\treturn result;\n\t};\n}\n\nfunction makeNumericReducingOperator(fnCalc,initialValue) {\n\tinitialValue = initialValue || 0;\n\treturn function(source,operator,options) {\n\t\tvar result = [];\n\t\tsource(function(tiddler,title) {\n\t\t\tresult.push(title);\n\t\t});\n\t\treturn [stringifyNumber(result.reduce(function(accumulator,currentValue) {\n\t\t\treturn fnCalc(accumulator,parseNumber(currentValue));\n\t\t},initialValue))];\n\t};\n}\n\nfunction parseNumber(str) {\n\treturn parseFloat(str) || 0;\n}\n\nfunction stringifyNumber(num) {\n\treturn num + \"\";\n}\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/minlength.js": {
"title": "$:/core/modules/filters/minlength.js",
"text": "/*\\\ntitle: $:/core/modules/filters/minlength.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator for filtering out titles that don't meet the minimum length in the operand\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.minlength = function(source,operator,options) {\n\tvar results = [],\n\t\tminLength = parseInt(operator.operand || \"\",10) || 0;\n\tsource(function(tiddler,title) {\n\t\tif(title.length >= minLength) {\n\t\t\tresults.push(title);\n\t\t}\n\t});\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/modules.js": {
"title": "$:/core/modules/filters/modules.js",
"text": "/*\\\ntitle: $:/core/modules/filters/modules.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator for returning the titles of the modules of a given type in this wiki\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.modules = function(source,operator,options) {\n\tvar results = [];\n\tsource(function(tiddler,title) {\n\t\t$tw.utils.each($tw.modules.types[title],function(moduleInfo,moduleName) {\n\t\t\tresults.push(moduleName);\n\t\t});\n\t});\n\tresults.sort();\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/moduletypes.js": {
"title": "$:/core/modules/filters/moduletypes.js",
"text": "/*\\\ntitle: $:/core/modules/filters/moduletypes.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator for returning the names of the module types in this wiki\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.moduletypes = function(source,operator,options) {\n\tvar results = [];\n\t$tw.utils.each($tw.modules.types,function(moduleInfo,type) {\n\t\tresults.push(type);\n\t});\n\tresults.sort();\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/next.js": {
"title": "$:/core/modules/filters/next.js",
"text": "/*\\\ntitle: $:/core/modules/filters/next.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator returning the tiddler whose title occurs next in the list supplied in the operand tiddler\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.next = function(source,operator,options) {\n\tvar results = [],\n\t\tlist = options.wiki.getTiddlerList(operator.operand);\n\tsource(function(tiddler,title) {\n\t\tvar match = list.indexOf(title);\n\t\t// increment match and then test if result is in range\n\t\tmatch++;\n\t\tif(match > 0 && match < list.length) {\n\t\t\tresults.push(list[match]);\n\t\t}\n\t});\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/plugintiddlers.js": {
"title": "$:/core/modules/filters/plugintiddlers.js",
"text": "/*\\\ntitle: $:/core/modules/filters/plugintiddlers.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator for returning the titles of the shadow tiddlers within a plugin\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.plugintiddlers = function(source,operator,options) {\n\tvar results = [];\n\tsource(function(tiddler,title) {\n\t\tvar pluginInfo = options.wiki.getPluginInfo(title) || options.wiki.getTiddlerDataCached(title,{tiddlers:[]});\n\t\tif(pluginInfo && pluginInfo.tiddlers) {\n\t\t\t$tw.utils.each(pluginInfo.tiddlers,function(fields,title) {\n\t\t\t\tresults.push(title);\n\t\t\t});\n\t\t}\n\t});\n\tresults.sort();\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/prefix.js": {
"title": "$:/core/modules/filters/prefix.js",
"text": "/*\\\ntitle: $:/core/modules/filters/prefix.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator for checking if a title starts with a prefix\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.prefix = function(source,operator,options) {\n\tvar results = [];\n\tif(operator.prefix === \"!\") {\n\t\tsource(function(tiddler,title) {\n\t\t\tif(title.substr(0,operator.operand.length) !== operator.operand) {\n\t\t\t\tresults.push(title);\n\t\t\t}\n\t\t});\n\t} else {\n\t\tsource(function(tiddler,title) {\n\t\t\tif(title.substr(0,operator.operand.length) === operator.operand) {\n\t\t\t\tresults.push(title);\n\t\t\t}\n\t\t});\n\t}\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/previous.js": {
"title": "$:/core/modules/filters/previous.js",
"text": "/*\\\ntitle: $:/core/modules/filters/previous.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator returning the tiddler whose title occurs immediately prior in the list supplied in the operand tiddler\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.previous = function(source,operator,options) {\n\tvar results = [],\n\t\tlist = options.wiki.getTiddlerList(operator.operand);\n\tsource(function(tiddler,title) {\n\t\tvar match = list.indexOf(title);\n\t\t// increment match and then test if result is in range\n\t\tmatch--;\n\t\tif(match >= 0) {\n\t\t\tresults.push(list[match]);\n\t\t}\n\t});\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/range.js": {
"title": "$:/core/modules/filters/range.js",
"text": "/*\\\ntitle: $:/core/modules/filters/range.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator for generating a numeric range.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.range = function(source,operator,options) {\n\tvar results = [];\n\t// Split the operand into numbers delimited by these symbols\n\tvar parts = operator.operand.split(/[,:;]/g),\n\t\tbeg, end, inc, i, fixed = 0;\n\tfor (i=0; i<parts.length; i++) {\n\t\t// Validate real number\n\t\tif(!/^\\s*[+-]?((\\d+(\\.\\d*)?)|(\\.\\d+))\\s*$/.test(parts[i])) {\n\t\t\treturn [\"range: bad number \\\"\" + parts[i] + \"\\\"\"];\n\t\t}\n\t\t// Count digits; the most precise number determines decimal places in output.\n\t\tvar frac = /\\.\\d+/.exec(parts[i]);\n\t\tif(frac) {\n\t\t\tfixed = Math.max(fixed,frac[0].length-1);\n\t\t}\n\t\tparts[i] = parseFloat(parts[i]);\n\t}\n\tswitch(parts.length) {\n\t\tcase 1:\n\t\t\tend = parts[0];\n\t\t\tif (end >= 1) {\n\t\t\t\tbeg = 1;\n\t\t\t}\n\t\t\telse if (end <= -1) {\n\t\t\t\tbeg = -1;\n\t\t\t}\n\t\t\telse {\n\t\t\t\treturn [];\n\t\t\t}\n\t\t\tinc = 1;\n\t\t\tbreak;\n\t\tcase 2:\n\t\t\tbeg = parts[0];\n\t\t\tend = parts[1];\n\t\t\tinc = 1;\n\t\t\tbreak;\n\t\tcase 3:\n\t\t\tbeg = parts[0];\n\t\t\tend = parts[1];\n\t\t\tinc = Math.abs(parts[2]);\n\t\t\tbreak;\n\t}\n\tif(inc === 0) {\n\t\treturn [\"range: increment 0 causes infinite loop\"];\n\t}\n\t// May need to count backwards\n\tvar direction = ((end < beg) ? -1 : 1);\n\tinc *= direction;\n\t// Estimate number of resulting elements\n\tif((end - beg) / inc > 10000) {\n\t\treturn [\"range: too many steps (over 10K)\"];\n\t}\n\t// Avoid rounding error on last step\n\tend += direction * 0.5 * Math.pow(0.1,fixed);\n\tvar safety = 10010;\n\t// Enumerate the range\n\tif (end<beg) {\n\t\tfor(i=beg; i>end; i+=inc) {\n\t\t\tresults.push(i.toFixed(fixed));\n\t\t\tif(--safety<0) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t} else {\n\t\tfor(i=beg; i<end; i+=inc) {\n\t\t\tresults.push(i.toFixed(fixed));\n\t\t\tif(--safety<0) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\tif(safety<0) {\n\t\treturn [\"range: unexpectedly large output\"];\n\t}\n\t// Reverse?\n\tif(operator.prefix === \"!\") {\n\t\tresults.reverse();\n\t}\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/regexp.js": {
"title": "$:/core/modules/filters/regexp.js",
"text": "/*\\\ntitle: $:/core/modules/filters/regexp.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator for regexp matching\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.regexp = function(source,operator,options) {\n\tvar results = [],\n\t\tfieldname = (operator.suffix || \"title\").toLowerCase(),\n\t\tregexpString, regexp, flags = \"\", match,\n\t\tgetFieldString = function(tiddler,title) {\n\t\t\tif(tiddler) {\n\t\t\t\treturn tiddler.getFieldString(fieldname);\n\t\t\t} else if(fieldname === \"title\") {\n\t\t\t\treturn title;\n\t\t\t} else {\n\t\t\t\treturn null;\n\t\t\t}\n\t\t};\n\t// Process flags and construct regexp\n\tregexpString = operator.operand;\n\tmatch = /^\\(\\?([gim]+)\\)/.exec(regexpString);\n\tif(match) {\n\t\tflags = match[1];\n\t\tregexpString = regexpString.substr(match[0].length);\n\t} else {\n\t\tmatch = /\\(\\?([gim]+)\\)$/.exec(regexpString);\n\t\tif(match) {\n\t\t\tflags = match[1];\n\t\t\tregexpString = regexpString.substr(0,regexpString.length - match[0].length);\n\t\t}\n\t}\n\ttry {\n\t\tregexp = new RegExp(regexpString,flags);\n\t} catch(e) {\n\t\treturn [\"\" + e];\n\t}\n\t// Process the incoming tiddlers\n\tif(operator.prefix === \"!\") {\n\t\tsource(function(tiddler,title) {\n\t\t\tvar text = getFieldString(tiddler,title);\n\t\t\tif(text !== null) {\n\t\t\t\tif(!regexp.exec(text)) {\n\t\t\t\t\tresults.push(title);\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t} else {\n\t\tsource(function(tiddler,title) {\n\t\t\tvar text = getFieldString(tiddler,title);\n\t\t\tif(text !== null) {\n\t\t\t\tif(!!regexp.exec(text)) {\n\t\t\t\t\tresults.push(title);\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t}\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/removeprefix.js": {
"title": "$:/core/modules/filters/removeprefix.js",
"text": "/*\\\ntitle: $:/core/modules/filters/removeprefix.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator for removing a prefix from each title in the list. Titles that do not start with the prefix are removed.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.removeprefix = function(source,operator,options) {\n\tvar results = [];\n\tsource(function(tiddler,title) {\n\t\tif(title.substr(0,operator.operand.length) === operator.operand) {\n\t\t\tresults.push(title.substr(operator.operand.length));\n\t\t}\n\t});\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/removesuffix.js": {
"title": "$:/core/modules/filters/removesuffix.js",
"text": "/*\\\ntitle: $:/core/modules/filters/removesuffix.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator for removing a suffix from each title in the list. Titles that do not end with the suffix are removed.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.removesuffix = function(source,operator,options) {\n\tvar results = [];\n\tsource(function(tiddler,title) {\n\t\tif(title && title.substr(-operator.operand.length) === operator.operand) {\n\t\t\tresults.push(title.substr(0,title.length - operator.operand.length));\n\t\t}\n\t});\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/sameday.js": {
"title": "$:/core/modules/filters/sameday.js",
"text": "/*\\\ntitle: $:/core/modules/filters/sameday.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator that selects tiddlers with a modified date field on the same day as the provided value.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.sameday = function(source,operator,options) {\n\tvar results = [],\n\t\tfieldName = operator.suffix || \"modified\",\n\t\ttargetDate = (new Date($tw.utils.parseDate(operator.operand))).setHours(0,0,0,0);\n\t// Function to convert a date/time to a date integer\n\tsource(function(tiddler,title) {\n\t\tif(tiddler) {\n\t\t\tif(tiddler.getFieldDay(fieldName) === targetDate) {\n\t\t\t\tresults.push(title);\n\t\t\t}\n\t\t}\n\t});\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/search.js": {
"title": "$:/core/modules/filters/search.js",
"text": "/*\\\ntitle: $:/core/modules/filters/search.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator for searching for the text in the operand tiddler\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.search = function(source,operator,options) {\n\tvar invert = operator.prefix === \"!\";\n\tif(operator.suffixes) {\n\t\tvar hasFlag = function(flag) {\n\t\t\t\treturn (operator.suffixes[1] || []).indexOf(flag) !== -1;\n\t\t\t},\n\t\t\texcludeFields = false,\n\t\t\tfieldList = operator.suffixes[0] || [],\n\t\t\tfirstField = fieldList[0] || \"\", \n\t\t\tfirstChar = firstField.charAt(0),\n\t\t\tfields;\n\t\tif(firstChar === \"-\") {\n\t\t\tfields = [firstField.slice(1)].concat(fieldList.slice(1));\n\t\t\texcludeFields = true;\n\t\t} else if(fieldList[0] === \"*\"){\n\t\t\tfields = [];\n\t\t\texcludeFields = true;\n\t\t} else {\n\t\t\tfields = fieldList.slice(0);\n\t\t}\n\t\treturn options.wiki.search(operator.operand,{\n\t\t\tsource: source,\n\t\t\tinvert: invert,\n\t\t\tfield: fields,\n\t\t\texcludeField: excludeFields,\n\t\t\tcaseSensitive: hasFlag(\"casesensitive\"),\n\t\t\tliteral: hasFlag(\"literal\"),\n\t\t\twhitespace: hasFlag(\"whitespace\"),\n\t\t\tanchored: hasFlag(\"anchored\"),\n\t\t\tregexp: hasFlag(\"regexp\"),\n\t\t\twords: hasFlag(\"words\")\n\t\t});\n\t} else {\n\t\treturn options.wiki.search(operator.operand,{\n\t\t\tsource: source,\n\t\t\tinvert: invert\n\t\t});\n\t}\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/shadowsource.js": {
"title": "$:/core/modules/filters/shadowsource.js",
"text": "/*\\\ntitle: $:/core/modules/filters/shadowsource.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator for returning the source plugins for shadow tiddlers\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.shadowsource = function(source,operator,options) {\n\tvar results = [];\n\tsource(function(tiddler,title) {\n\t\tvar source = options.wiki.getShadowSource(title);\n\t\tif(source) {\n\t\t\t$tw.utils.pushTop(results,source);\n\t\t}\n\t});\n\tresults.sort();\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/sort.js": {
"title": "$:/core/modules/filters/sort.js",
"text": "/*\\\ntitle: $:/core/modules/filters/sort.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator for sorting\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.sort = function(source,operator,options) {\n\tvar results = prepare_results(source);\n\toptions.wiki.sortTiddlers(results,operator.operand || \"title\",operator.prefix === \"!\",false,false);\n\treturn results;\n};\n\nexports.nsort = function(source,operator,options) {\n\tvar results = prepare_results(source);\n\toptions.wiki.sortTiddlers(results,operator.operand || \"title\",operator.prefix === \"!\",false,true);\n\treturn results;\n};\n\nexports.sortan = function(source, operator, options) {\n\tvar results = prepare_results(source);\n\toptions.wiki.sortTiddlers(results, operator.operand || \"title\", operator.prefix === \"!\",false,false,true);\n\treturn results;\n};\n\nexports.sortcs = function(source,operator,options) {\n\tvar results = prepare_results(source);\n\toptions.wiki.sortTiddlers(results,operator.operand || \"title\",operator.prefix === \"!\",true,false);\n\treturn results;\n};\n\nexports.nsortcs = function(source,operator,options) {\n\tvar results = prepare_results(source);\n\toptions.wiki.sortTiddlers(results,operator.operand || \"title\",operator.prefix === \"!\",true,true);\n\treturn results;\n};\n\nvar prepare_results = function (source) {\n\tvar results = [];\n\tsource(function(tiddler,title) {\n\t\tresults.push(title);\n\t});\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/splitbefore.js": {
"title": "$:/core/modules/filters/splitbefore.js",
"text": "/*\\\ntitle: $:/core/modules/filters/splitbefore.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator that splits each result on the first occurance of the specified separator and returns the unique values.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.splitbefore = function(source,operator,options) {\n\tvar results = [];\n\tsource(function(tiddler,title) {\n\t\tvar parts = title.split(operator.operand);\n\t\tif(parts.length === 1) {\n\t\t\t$tw.utils.pushTop(results,parts[0]);\n\t\t} else {\n\t\t\t$tw.utils.pushTop(results,parts[0] + operator.operand);\n\t\t}\n\t});\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/storyviews.js": {
"title": "$:/core/modules/filters/storyviews.js",
"text": "/*\\\ntitle: $:/core/modules/filters/storyviews.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator for returning the names of the story views in this wiki\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.storyviews = function(source,operator,options) {\n\tvar results = [],\n\t\tstoryviews = {};\n\t$tw.modules.applyMethods(\"storyview\",storyviews);\n\t$tw.utils.each(storyviews,function(info,name) {\n\t\tresults.push(name);\n\t});\n\tresults.sort();\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/strings.js": {
"title": "$:/core/modules/filters/strings.js",
"text": "/*\\\ntitle: $:/core/modules/filters/strings.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operators for strings. Unary/binary operators work on each item in turn, and return a new item list.\n\nSum/product/maxall/minall operate on the entire list, returning a single item.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.length = makeStringBinaryOperator(\n\tfunction(a) {return [\"\" + (\"\" + a).length];}\n);\n\nexports.uppercase = makeStringBinaryOperator(\n\tfunction(a) {return [(\"\" + a).toUpperCase()];}\n);\n\nexports.lowercase = makeStringBinaryOperator(\n\tfunction(a) {return [(\"\" + a).toLowerCase()];}\n);\n\nexports.sentencecase = makeStringBinaryOperator(\n\tfunction(a) {return [$tw.utils.toSentenceCase(a)];}\n);\n\nexports.titlecase = makeStringBinaryOperator(\n\tfunction(a) {return [$tw.utils.toTitleCase(a)];}\n);\n\nexports.trim = makeStringBinaryOperator(\n\tfunction(a) {return [$tw.utils.trim(a)];}\n);\n\nexports.split = makeStringBinaryOperator(\n\tfunction(a,b) {return (\"\" + a).split(b);}\n);\n\nexports.join = makeStringReducingOperator(\n\tfunction(accumulator,value,operand) {\n\t\tif(accumulator === null) {\n\t\t\treturn value;\n\t\t} else {\n\t\t\treturn accumulator + operand + value;\n\t\t}\n\t},null\n);\n\nfunction makeStringBinaryOperator(fnCalc) {\n\treturn function(source,operator,options) {\n\t\tvar result = [];\n\t\tsource(function(tiddler,title) {\n\t\t\tArray.prototype.push.apply(result,fnCalc(title,operator.operand || \"\"));\n\t\t});\n\t\treturn result;\n\t};\n}\n\nfunction makeStringReducingOperator(fnCalc,initialValue) {\n\treturn function(source,operator,options) {\n\t\tvar result = [];\n\t\tsource(function(tiddler,title) {\n\t\t\tresult.push(title);\n\t\t});\n\t\treturn [result.reduce(function(accumulator,currentValue) {\n\t\t\treturn fnCalc(accumulator,currentValue,operator.operand || \"\");\n\t\t},initialValue)];\n\t};\n}\n\nexports.splitregexp = function(source,operator,options) {\n\tvar result = [],\n\t\tsuffix = operator.suffix || \"\",\n\t\tflags = (suffix.indexOf(\"m\") !== -1 ? \"m\" : \"\") + (suffix.indexOf(\"i\") !== -1 ? \"i\" : \"\"),\n\t\tregExp;\n\ttry {\n\t\tregExp = new RegExp(operator.operand || \"\",flags);\t\t\n\t} catch(ex) {\n\t\treturn [\"RegExp error: \" + ex];\n\t}\n\tsource(function(tiddler,title) {\n\t\tArray.prototype.push.apply(result,title.split(regExp));\n\t});\t\t\n\treturn result;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/subfilter.js": {
"title": "$:/core/modules/filters/subfilter.js",
"text": "/*\\\ntitle: $:/core/modules/filters/subfilter.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator returning its operand evaluated as a filter\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.subfilter = function(source,operator,options) {\n\tvar list = options.wiki.filterTiddlers(operator.operand,options.widget,source);\n\tif(operator.prefix === \"!\") {\n\t\tvar results = [];\n\t\tsource(function(tiddler,title) {\n\t\t\tif(list.indexOf(title) === -1) {\n\t\t\t\tresults.push(title);\n\t\t\t}\n\t\t});\n\t\treturn results;\n\t} else {\n\t\treturn list;\n\t}\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/subtiddlerfields.js": {
"title": "$:/core/modules/filters/subtiddlerfields.js",
"text": "/*\\\ntitle: $:/core/modules/filters/subtiddlerfields.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator for returning the names of the fields on the selected subtiddlers of the plugin named in the operand\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.subtiddlerfields = function(source,operator,options) {\n\tvar results = [];\n\tsource(function(tiddler,title) {\n\t\tvar subtiddler = options.wiki.getSubTiddler(operator.operand,title);\n\t\tif(subtiddler) {\n\t\t\tfor(var fieldName in subtiddler.fields) {\n\t\t\t\t$tw.utils.pushTop(results,fieldName);\n\t\t\t}\n\t\t}\n\t});\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/suffix.js": {
"title": "$:/core/modules/filters/suffix.js",
"text": "/*\\\ntitle: $:/core/modules/filters/suffix.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator for checking if a title ends with a suffix\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.suffix = function(source,operator,options) {\n\tvar results = [];\n\tif(operator.prefix === \"!\") {\n\t\tsource(function(tiddler,title) {\n\t\t\tif(title.substr(-operator.operand.length) !== operator.operand) {\n\t\t\t\tresults.push(title);\n\t\t\t}\n\t\t});\n\t} else {\n\t\tsource(function(tiddler,title) {\n\t\t\tif(title.substr(-operator.operand.length) === operator.operand) {\n\t\t\t\tresults.push(title);\n\t\t\t}\n\t\t});\n\t}\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/tag.js": {
"title": "$:/core/modules/filters/tag.js",
"text": "/*\\\ntitle: $:/core/modules/filters/tag.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator for checking for the presence of a tag\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.tag = function(source,operator,options) {\n\tvar results = [],indexedResults;\n\tif((operator.suffix || \"\").toLowerCase() === \"strict\" && !operator.operand) {\n\t\t// New semantics:\n\t\t// Always return copy of input if operator.operand is missing\n\t\tsource(function(tiddler,title) {\n\t\t\tresults.push(title);\n\t\t});\n\t} else {\n\t\t// Old semantics:\n\t\tvar tiddlers;\n\t\tif(operator.prefix === \"!\") {\n\t\t\t// Returns a copy of the input if operator.operand is missing\n\t\t\ttiddlers = options.wiki.getTiddlersWithTag(operator.operand);\n\t\t\tsource(function(tiddler,title) {\n\t\t\t\tif(tiddlers.indexOf(title) === -1) {\n\t\t\t\t\tresults.push(title);\n\t\t\t\t}\n\t\t\t});\n\t\t} else {\n\t\t\t// Returns empty results if operator.operand is missing\n\t\t\tif(source.byTag) {\n\t\t\t\tindexedResults = source.byTag(operator.operand);\n\t\t\t\tif(indexedResults) {\n\t\t\t\t\treturn indexedResults;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\ttiddlers = options.wiki.getTiddlersWithTag(operator.operand);\n\t\t\t\tsource(function(tiddler,title) {\n\t\t\t\t\tif(tiddlers.indexOf(title) !== -1) {\n\t\t\t\t\t\tresults.push(title);\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t\tresults = options.wiki.sortByList(results,operator.operand);\n\t\t\t}\n\t\t}\t\t\n\t}\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/tagging.js": {
"title": "$:/core/modules/filters/tagging.js",
"text": "/*\\\ntitle: $:/core/modules/filters/tagging.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator returning all tiddlers that are tagged with the selected tiddlers\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.tagging = function(source,operator,options) {\n\tvar results = [];\n\tsource(function(tiddler,title) {\n\t\t$tw.utils.pushTop(results,options.wiki.getTiddlersWithTag(title));\n\t});\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/tags.js": {
"title": "$:/core/modules/filters/tags.js",
"text": "/*\\\ntitle: $:/core/modules/filters/tags.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator returning all the tags of the selected tiddlers\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.tags = function(source,operator,options) {\n\tvar tags = {};\n\tsource(function(tiddler,title) {\n\t\tvar t, length;\n\t\tif(tiddler && tiddler.fields.tags) {\n\t\t\tfor(t=0, length=tiddler.fields.tags.length; t<length; t++) {\n\t\t\t\ttags[tiddler.fields.tags[t]] = true;\n\t\t\t}\n\t\t}\n\t});\n\treturn Object.keys(tags);\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/then.js": {
"title": "$:/core/modules/filters/then.js",
"text": "/*\\\ntitle: $:/core/modules/filters/then.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator for replacing any titles with a constant\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.then = function(source,operator,options) {\n\tvar results = [];\n\tsource(function(tiddler,title) {\n\t\tresults.push(operator.operand);\n\t});\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/title.js": {
"title": "$:/core/modules/filters/title.js",
"text": "/*\\\ntitle: $:/core/modules/filters/title.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator for comparing title fields for equality\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.title = function(source,operator,options) {\n\tvar results = [];\n\tif(operator.prefix === \"!\") {\n\t\tsource(function(tiddler,title) {\n\t\t\tif(tiddler && tiddler.fields.title !== operator.operand) {\n\t\t\t\tresults.push(title);\n\t\t\t}\n\t\t});\n\t} else {\n\t\tresults.push(operator.operand);\n\t}\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/untagged.js": {
"title": "$:/core/modules/filters/untagged.js",
"text": "/*\\\ntitle: $:/core/modules/filters/untagged.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator returning all the selected tiddlers that are untagged\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.untagged = function(source,operator,options) {\n\tvar results = [];\n\tif(operator.prefix === \"!\") {\n\t\tsource(function(tiddler,title) {\n\t\t\tif(tiddler && $tw.utils.isArray(tiddler.fields.tags) && tiddler.fields.tags.length > 0) {\n\t\t\t\t$tw.utils.pushTop(results,title);\n\t\t\t}\n\t\t});\n\t} else {\n\t\tsource(function(tiddler,title) {\n\t\t\tif(!tiddler || !tiddler.hasField(\"tags\") || ($tw.utils.isArray(tiddler.fields.tags) && tiddler.fields.tags.length === 0)) {\n\t\t\t\t$tw.utils.pushTop(results,title);\n\t\t\t}\n\t\t});\n\t}\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/variables.js": {
"title": "$:/core/modules/filters/variables.js",
"text": "/*\\\ntitle: $:/core/modules/filters/variables.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator for returning the names of the active variables\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.variables = function(source,operator,options) {\n\tvar names = [];\n\tfor(var variable in options.widget.variables) {\n\t\tnames.push(variable);\n\t}\n\treturn names.sort();\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/wikiparserrules.js": {
"title": "$:/core/modules/filters/wikiparserrules.js",
"text": "/*\\\ntitle: $:/core/modules/filters/wikiparserrules.js\ntype: application/javascript\nmodule-type: filteroperator\n\nFilter operator for returning the names of the wiki parser rules in this wiki\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter function\n*/\nexports.wikiparserrules = function(source,operator,options) {\n\tvar results = [],\n\t\toperand = operator.operand;\n\t$tw.utils.each($tw.modules.types.wikirule,function(mod) {\n\t\tvar exp = mod.exports;\n\t\tif(!operand || exp.types[operand]) {\n\t\t\tresults.push(exp.name);\n\t\t}\n\t});\n\tresults.sort();\n\treturn results;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters/x-listops.js": {
"title": "$:/core/modules/filters/x-listops.js",
"text": "/*\\\ntitle: $:/core/modules/filters/x-listops.js\ntype: application/javascript\nmodule-type: filteroperator\n\nExtended filter operators to manipulate the current list.\n\n\\*/\n(function () {\n\n /*jslint node: true, browser: true */\n /*global $tw: false */\n \"use strict\";\n\n /*\n Fetch titles from the current list\n */\n var prepare_results = function (source) {\n var results = [];\n source(function (tiddler, title) {\n results.push(title);\n });\n return results;\n };\n\n /*\n Moves a number of items from the tail of the current list before the item named in the operand\n */\n exports.putbefore = function (source, operator) {\n var results = prepare_results(source),\n index = results.indexOf(operator.operand),\n count = $tw.utils.getInt(operator.suffix,1);\n return (index === -1) ?\n results.slice(0, -1) :\n results.slice(0, index).concat(results.slice(-count)).concat(results.slice(index, -count));\n };\n\n /*\n Moves a number of items from the tail of the current list after the item named in the operand\n */\n exports.putafter = function (source, operator) {\n var results = prepare_results(source),\n index = results.indexOf(operator.operand),\n count = $tw.utils.getInt(operator.suffix,1);\n return (index === -1) ?\n results.slice(0, -1) :\n results.slice(0, index + 1).concat(results.slice(-count)).concat(results.slice(index + 1, -count));\n };\n\n /*\n Replaces the item named in the operand with a number of items from the tail of the current list\n */\n exports.replace = function (source, operator) {\n var results = prepare_results(source),\n index = results.indexOf(operator.operand),\n count = $tw.utils.getInt(operator.suffix,1);\n return (index === -1) ?\n results.slice(0, -count) :\n results.slice(0, index).concat(results.slice(-count)).concat(results.slice(index + 1, -count));\n };\n\n /*\n Moves a number of items from the tail of the current list to the head of the list\n */\n exports.putfirst = function (source, operator) {\n var results = prepare_results(source),\n count = $tw.utils.getInt(operator.suffix,1);\n return results.slice(-count).concat(results.slice(0, -count));\n };\n\n /*\n Moves a number of items from the head of the current list to the tail of the list\n */\n exports.putlast = function (source, operator) {\n var results = prepare_results(source),\n count = $tw.utils.getInt(operator.suffix,1);\n return results.slice(count).concat(results.slice(0, count));\n };\n\n /*\n Moves the item named in the operand a number of places forward or backward in the list\n */\n exports.move = function (source, operator) {\n var results = prepare_results(source),\n index = results.indexOf(operator.operand),\n count = $tw.utils.getInt(operator.suffix,1),\n marker = results.splice(index, 1),\n offset = (index + count) > 0 ? index + count : 0;\n return results.slice(0, offset).concat(marker).concat(results.slice(offset));\n };\n\n /*\n Returns the items from the current list that are after the item named in the operand\n */\n exports.allafter = function (source, operator) {\n var results = prepare_results(source),\n index = results.indexOf(operator.operand);\n return (index === -1) ? [] :\n (operator.suffix) ? results.slice(index) :\n results.slice(index + 1);\n };\n\n /*\n Returns the items from the current list that are before the item named in the operand\n */\n exports.allbefore = function (source, operator) {\n var results = prepare_results(source),\n index = results.indexOf(operator.operand);\n return (index === -1) ? [] :\n (operator.suffix) ? results.slice(0, index + 1) :\n results.slice(0, index);\n };\n\n /*\n Appends the items listed in the operand array to the tail of the current list\n */\n exports.append = function (source, operator) {\n var append = $tw.utils.parseStringArray(operator.operand, \"true\"),\n results = prepare_results(source),\n count = parseInt(operator.suffix) || append.length;\n return (append.length === 0) ? results :\n (operator.prefix) ? results.concat(append.slice(-count)) :\n results.concat(append.slice(0, count));\n };\n\n /*\n Prepends the items listed in the operand array to the head of the current list\n */\n exports.prepend = function (source, operator) {\n var prepend = $tw.utils.parseStringArray(operator.operand, \"true\"),\n results = prepare_results(source),\n count = $tw.utils.getInt(operator.suffix,prepend.length);\n return (prepend.length === 0) ? results :\n (operator.prefix) ? prepend.slice(-count).concat(results) :\n prepend.slice(0, count).concat(results);\n };\n\n /*\n Returns all items from the current list except the items listed in the operand array\n */\n exports.remove = function (source, operator) {\n var array = $tw.utils.parseStringArray(operator.operand, \"true\"),\n results = prepare_results(source),\n count = parseInt(operator.suffix) || array.length,\n p,\n len,\n index;\n len = array.length - 1;\n for (p = 0; p < count; ++p) {\n if (operator.prefix) {\n index = results.indexOf(array[len - p]);\n } else {\n index = results.indexOf(array[p]);\n }\n if (index !== -1) {\n results.splice(index, 1);\n }\n }\n return results;\n };\n\n /*\n Returns all items from the current list sorted in the order of the items in the operand array\n */\n exports.sortby = function (source, operator) {\n var results = prepare_results(source);\n if (!results || results.length < 2) {\n return results;\n }\n var lookup = $tw.utils.parseStringArray(operator.operand, \"true\");\n results.sort(function (a, b) {\n return lookup.indexOf(a) - lookup.indexOf(b);\n });\n return results;\n };\n\n /*\n Removes all duplicate items from the current list\n */\n exports.unique = function (source, operator) {\n var results = prepare_results(source);\n var set = results.reduce(function (a, b) {\n if (a.indexOf(b) < 0) {\n a.push(b);\n }\n return a;\n }, []);\n return set;\n };\n})();\n",
"type": "application/javascript",
"module-type": "filteroperator"
},
"$:/core/modules/filters.js": {
"title": "$:/core/modules/filters.js",
"text": "/*\\\ntitle: $:/core/modules/filters.js\ntype: application/javascript\nmodule-type: wikimethod\n\nAdds tiddler filtering methods to the $tw.Wiki object.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nParses an operation (i.e. a run) within a filter string\n\toperators: Array of array of operator nodes into which results should be inserted\n\tfilterString: filter string\n\tp: start position within the string\nReturns the new start position, after the parsed operation\n*/\nfunction parseFilterOperation(operators,filterString,p) {\n\tvar nextBracketPos, operator;\n\t// Skip the starting square bracket\n\tif(filterString.charAt(p++) !== \"[\") {\n\t\tthrow \"Missing [ in filter expression\";\n\t}\n\t// Process each operator in turn\n\tdo {\n\t\toperator = {};\n\t\t// Check for an operator prefix\n\t\tif(filterString.charAt(p) === \"!\") {\n\t\t\toperator.prefix = filterString.charAt(p++);\n\t\t}\n\t\t// Get the operator name\n\t\tnextBracketPos = filterString.substring(p).search(/[\\[\\{<\\/]/);\n\t\tif(nextBracketPos === -1) {\n\t\t\tthrow \"Missing [ in filter expression\";\n\t\t}\n\t\tnextBracketPos += p;\n\t\tvar bracket = filterString.charAt(nextBracketPos);\n\t\toperator.operator = filterString.substring(p,nextBracketPos);\n\t\t// Any suffix?\n\t\tvar colon = operator.operator.indexOf(':');\n\t\tif(colon > -1) {\n\t\t\t// The raw suffix for older filters\n\t\t\toperator.suffix = operator.operator.substring(colon + 1);\n\t\t\toperator.operator = operator.operator.substring(0,colon) || \"field\";\n\t\t\t// The processed suffix for newer filters\n\t\t\toperator.suffixes = [];\n\t\t\t$tw.utils.each(operator.suffix.split(\":\"),function(subsuffix) {\n\t\t\t\toperator.suffixes.push([]);\n\t\t\t\t$tw.utils.each(subsuffix.split(\",\"),function(entry) {\n\t\t\t\t\tentry = $tw.utils.trim(entry);\n\t\t\t\t\tif(entry) {\n\t\t\t\t\t\toperator.suffixes[operator.suffixes.length - 1].push(entry); \n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t});\n\t\t}\n\t\t// Empty operator means: title\n\t\telse if(operator.operator === \"\") {\n\t\t\toperator.operator = \"title\";\n\t\t}\n\n\t\tp = nextBracketPos + 1;\n\t\tswitch (bracket) {\n\t\t\tcase \"{\": // Curly brackets\n\t\t\t\toperator.indirect = true;\n\t\t\t\tnextBracketPos = filterString.indexOf(\"}\",p);\n\t\t\t\tbreak;\n\t\t\tcase \"[\": // Square brackets\n\t\t\t\tnextBracketPos = filterString.indexOf(\"]\",p);\n\t\t\t\tbreak;\n\t\t\tcase \"<\": // Angle brackets\n\t\t\t\toperator.variable = true;\n\t\t\t\tnextBracketPos = filterString.indexOf(\">\",p);\n\t\t\t\tbreak;\n\t\t\tcase \"/\": // regexp brackets\n\t\t\t\tvar rex = /^((?:[^\\\\\\/]*|\\\\.)*)\\/(?:\\(([mygi]+)\\))?/g,\n\t\t\t\t\trexMatch = rex.exec(filterString.substring(p));\n\t\t\t\tif(rexMatch) {\n\t\t\t\t\toperator.regexp = new RegExp(rexMatch[1], rexMatch[2]);\n// DEPRECATION WARNING\nconsole.log(\"WARNING: Filter\",operator.operator,\"has a deprecated regexp operand\",operator.regexp);\n\t\t\t\t\tnextBracketPos = p + rex.lastIndex - 1;\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tthrow \"Unterminated regular expression in filter expression\";\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t}\n\n\t\tif(nextBracketPos === -1) {\n\t\t\tthrow \"Missing closing bracket in filter expression\";\n\t\t}\n\t\tif(!operator.regexp) {\n\t\t\toperator.operand = filterString.substring(p,nextBracketPos);\n\t\t}\n\t\tp = nextBracketPos + 1;\n\n\t\t// Push this operator\n\t\toperators.push(operator);\n\t} while(filterString.charAt(p) !== \"]\");\n\t// Skip the ending square bracket\n\tif(filterString.charAt(p++) !== \"]\") {\n\t\tthrow \"Missing ] in filter expression\";\n\t}\n\t// Return the parsing position\n\treturn p;\n}\n\n/*\nParse a filter string\n*/\nexports.parseFilter = function(filterString) {\n\tfilterString = filterString || \"\";\n\tvar results = [], // Array of arrays of operator nodes {operator:,operand:}\n\t\tp = 0, // Current position in the filter string\n\t\tmatch;\n\tvar whitespaceRegExp = /(\\s+)/mg,\n\t\toperandRegExp = /((?:\\+|\\-|~|=)?)(?:(\\[)|(?:\"([^\"]*)\")|(?:'([^']*)')|([^\\s\\[\\]]+))/mg;\n\twhile(p < filterString.length) {\n\t\t// Skip any whitespace\n\t\twhitespaceRegExp.lastIndex = p;\n\t\tmatch = whitespaceRegExp.exec(filterString);\n\t\tif(match && match.index === p) {\n\t\t\tp = p + match[0].length;\n\t\t}\n\t\t// Match the start of the operation\n\t\tif(p < filterString.length) {\n\t\t\toperandRegExp.lastIndex = p;\n\t\t\tmatch = operandRegExp.exec(filterString);\n\t\t\tif(!match || match.index !== p) {\n\t\t\t\tthrow $tw.language.getString(\"Error/FilterSyntax\");\n\t\t\t}\n\t\t\tvar operation = {\n\t\t\t\tprefix: \"\",\n\t\t\t\toperators: []\n\t\t\t};\n\t\t\tif(match[1]) {\n\t\t\t\toperation.prefix = match[1];\n\t\t\t\tp++;\n\t\t\t}\n\t\t\tif(match[2]) { // Opening square bracket\n\t\t\t\tp = parseFilterOperation(operation.operators,filterString,p);\n\t\t\t} else {\n\t\t\t\tp = match.index + match[0].length;\n\t\t\t}\n\t\t\tif(match[3] || match[4] || match[5]) { // Double quoted string, single quoted string or unquoted title\n\t\t\t\toperation.operators.push(\n\t\t\t\t\t{operator: \"title\", operand: match[3] || match[4] || match[5]}\n\t\t\t\t);\n\t\t\t}\n\t\t\tresults.push(operation);\n\t\t}\n\t}\n\treturn results;\n};\n\nexports.getFilterOperators = function() {\n\tif(!this.filterOperators) {\n\t\t$tw.Wiki.prototype.filterOperators = {};\n\t\t$tw.modules.applyMethods(\"filteroperator\",this.filterOperators);\n\t}\n\treturn this.filterOperators;\n};\n\nexports.filterTiddlers = function(filterString,widget,source) {\n\tvar fn = this.compileFilter(filterString);\n\treturn fn.call(this,source,widget);\n};\n\n/*\nCompile a filter into a function with the signature fn(source,widget) where:\nsource: an iterator function for the source tiddlers, called source(iterator), where iterator is called as iterator(tiddler,title)\nwidget: an optional widget node for retrieving the current tiddler etc.\n*/\nexports.compileFilter = function(filterString) {\n\tvar filterParseTree;\n\ttry {\n\t\tfilterParseTree = this.parseFilter(filterString);\n\t} catch(e) {\n\t\treturn function(source,widget) {\n\t\t\treturn [$tw.language.getString(\"Error/Filter\") + \": \" + e];\n\t\t};\n\t}\n\t// Get the hashmap of filter operator functions\n\tvar filterOperators = this.getFilterOperators();\n\t// Assemble array of functions, one for each operation\n\tvar operationFunctions = [];\n\t// Step through the operations\n\tvar self = this;\n\t$tw.utils.each(filterParseTree,function(operation) {\n\t\t// Create a function for the chain of operators in the operation\n\t\tvar operationSubFunction = function(source,widget) {\n\t\t\tvar accumulator = source,\n\t\t\t\tresults = [],\n\t\t\t\tcurrTiddlerTitle = widget && widget.getVariable(\"currentTiddler\");\n\t\t\t$tw.utils.each(operation.operators,function(operator) {\n\t\t\t\tvar operand = operator.operand,\n\t\t\t\t\toperatorFunction;\n\t\t\t\tif(!operator.operator) {\n\t\t\t\t\toperatorFunction = filterOperators.title;\n\t\t\t\t} else if(!filterOperators[operator.operator]) {\n\t\t\t\t\toperatorFunction = filterOperators.field;\n\t\t\t\t} else {\n\t\t\t\t\toperatorFunction = filterOperators[operator.operator];\n\t\t\t\t}\n\t\t\t\tif(operator.indirect) {\n\t\t\t\t\toperand = self.getTextReference(operator.operand,\"\",currTiddlerTitle);\n\t\t\t\t}\n\t\t\t\tif(operator.variable) {\n\t\t\t\t\toperand = widget.getVariable(operator.operand,{defaultValue: \"\"});\n\t\t\t\t}\n\t\t\t\t// Invoke the appropriate filteroperator module\n\t\t\t\tresults = operatorFunction(accumulator,{\n\t\t\t\t\t\t\toperator: operator.operator,\n\t\t\t\t\t\t\toperand: operand,\n\t\t\t\t\t\t\tprefix: operator.prefix,\n\t\t\t\t\t\t\tsuffix: operator.suffix,\n\t\t\t\t\t\t\tsuffixes: operator.suffixes,\n\t\t\t\t\t\t\tregexp: operator.regexp\n\t\t\t\t\t\t},{\n\t\t\t\t\t\t\twiki: self,\n\t\t\t\t\t\t\twidget: widget\n\t\t\t\t\t\t});\n\t\t\t\tif($tw.utils.isArray(results)) {\n\t\t\t\t\taccumulator = self.makeTiddlerIterator(results);\n\t\t\t\t} else {\n\t\t\t\t\taccumulator = results;\n\t\t\t\t}\n\t\t\t});\n\t\t\tif($tw.utils.isArray(results)) {\n\t\t\t\treturn results;\n\t\t\t} else {\n\t\t\t\tvar resultArray = [];\n\t\t\t\tresults(function(tiddler,title) {\n\t\t\t\t\tresultArray.push(title);\n\t\t\t\t});\n\t\t\t\treturn resultArray;\n\t\t\t}\n\t\t};\n\t\t// Wrap the operator functions in a wrapper function that depends on the prefix\n\t\toperationFunctions.push((function() {\n\t\t\tswitch(operation.prefix || \"\") {\n\t\t\t\tcase \"\": // No prefix means that the operation is unioned into the result\n\t\t\t\t\treturn function(results,source,widget) {\n\t\t\t\t\t\t$tw.utils.pushTop(results,operationSubFunction(source,widget));\n\t\t\t\t\t};\n\t\t\t\tcase \"=\": // The results of the operation are pushed into the result without deduplication\n\t\t\t\t\treturn function(results,source,widget) {\n\t\t\t\t\t\tArray.prototype.push.apply(results,operationSubFunction(source,widget));\n\t\t\t\t\t};\n\t\t\t\tcase \"-\": // The results of this operation are removed from the main result\n\t\t\t\t\treturn function(results,source,widget) {\n\t\t\t\t\t\t$tw.utils.removeArrayEntries(results,operationSubFunction(source,widget));\n\t\t\t\t\t};\n\t\t\t\tcase \"+\": // This operation is applied to the main results so far\n\t\t\t\t\treturn function(results,source,widget) {\n\t\t\t\t\t\t// This replaces all the elements of the array, but keeps the actual array so that references to it are preserved\n\t\t\t\t\t\tsource = self.makeTiddlerIterator(results);\n\t\t\t\t\t\tresults.splice(0,results.length);\n\t\t\t\t\t\t$tw.utils.pushTop(results,operationSubFunction(source,widget));\n\t\t\t\t\t};\n\t\t\t\tcase \"~\": // This operation is unioned into the result only if the main result so far is empty\n\t\t\t\t\treturn function(results,source,widget) {\n\t\t\t\t\t\tif(results.length === 0) {\n\t\t\t\t\t\t\t// Main result so far is empty\n\t\t\t\t\t\t\t$tw.utils.pushTop(results,operationSubFunction(source,widget));\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t}\n\t\t})());\n\t});\n\t// Return a function that applies the operations to a source iterator of tiddler titles\n\treturn $tw.perf.measure(\"filter: \" + filterString,function filterFunction(source,widget) {\n\t\tif(!source) {\n\t\t\tsource = self.each;\n\t\t} else if(typeof source === \"object\") { // Array or hashmap\n\t\t\tsource = self.makeTiddlerIterator(source);\n\t\t}\n\t\tvar results = [];\n\t\t$tw.utils.each(operationFunctions,function(operationFunction) {\n\t\t\toperationFunction(results,source,widget);\n\t\t});\n\t\treturn results;\n\t});\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "wikimethod"
},
"$:/core/modules/indexers/field-indexer.js": {
"title": "$:/core/modules/indexers/field-indexer.js",
"text": "/*\\\ntitle: $:/core/modules/indexers/field-indexer.js\ntype: application/javascript\nmodule-type: indexer\n\nIndexes the tiddlers with each field value\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global modules: false */\n\"use strict\";\n\nvar DEFAULT_MAXIMUM_INDEXED_VALUE_LENGTH = 128;\n\nfunction FieldIndexer(wiki) {\n\tthis.wiki = wiki;\n}\n\nFieldIndexer.prototype.init = function() {\n\tthis.index = null;\n\tthis.maxIndexedValueLength = DEFAULT_MAXIMUM_INDEXED_VALUE_LENGTH;\n\tthis.addIndexMethods();\n}\n\n// Provided for testing\nFieldIndexer.prototype.setMaxIndexedValueLength = function(length) {\n\tthis.index = null;\n\tthis.maxIndexedValueLength = length;\n};\n\nFieldIndexer.prototype.addIndexMethods = function() {\n\tvar self = this;\n\tthis.wiki.each.byField = function(name,value) {\n\t\tvar titles = self.wiki.allTitles(),\n\t\t\tlookup = self.lookup(name,value);\n\t\treturn lookup && lookup.filter(function(title) {\n\t\t\treturn titles.indexOf(title) !== -1;\n\t\t});\n\t};\n\tthis.wiki.eachShadow.byField = function(name,value) {\n\t\tvar titles = self.wiki.allShadowTitles(),\n\t\t\tlookup = self.lookup(name,value);\n\t\treturn lookup && lookup.filter(function(title) {\n\t\t\treturn titles.indexOf(title) !== -1;\n\t\t});\n\t};\n\tthis.wiki.eachTiddlerPlusShadows.byField = function(name,value) {\n\t\tvar lookup = self.lookup(name,value);\n\t\treturn lookup ? lookup.slice(0) : null;\n\t};\n\tthis.wiki.eachShadowPlusTiddlers.byField = function(name,value) {\n\t\tvar lookup = self.lookup(name,value);\n\t\treturn lookup ? lookup.slice(0) : null;\n\t};\n};\n\n/*\nTear down and then rebuild the index as if all tiddlers have changed\n*/\nFieldIndexer.prototype.rebuild = function() {\n\t// Invalidate the index so that it will be rebuilt when it is next used\n\tthis.index = null;\n};\n\n/*\nBuild the index for a particular field\n*/\nFieldIndexer.prototype.buildIndexForField = function(name) {\n\tvar self = this;\n\t// Hashmap by field name of hashmap by field value of array of tiddler titles\n\tthis.index = this.index || Object.create(null);\n\tthis.index[name] = Object.create(null);\n\tvar baseIndex = this.index[name];\n\t// Update the index for each tiddler\n\tthis.wiki.eachTiddlerPlusShadows(function(tiddler,title) {\n\t\tif(name in tiddler.fields) {\n\t\t\tvar value = tiddler.getFieldString(name);\n\t\t\t// Skip any values above the maximum length\n\t\t\tif(value.length < self.maxIndexedValueLength) {\n\t\t\t\tbaseIndex[value] = baseIndex[value] || [];\n\t\t\t\tbaseIndex[value].push(title);\n\t\t\t}\n\t\t}\n\t});\n};\n\n/*\nUpdate the index in the light of a tiddler value changing; note that the title must be identical. (Renames are handled as a separate delete and create)\nupdateDescriptor: {old: {tiddler: <tiddler>, shadow: <boolean>, exists: <boolean>},new: {tiddler: <tiddler>, shadow: <boolean>, exists: <boolean>}}\n*/\nFieldIndexer.prototype.update = function(updateDescriptor) {\n\tvar self = this;\n\t// Don't do anything if the index hasn't been built yet\n\tif(this.index === null) {\n\t\treturn;\n\t}\n\t// Remove the old tiddler from the index\n\tif(updateDescriptor.old.tiddler) {\n\t\t$tw.utils.each(this.index,function(indexEntry,name) {\n\t\t\tif(name in updateDescriptor.old.tiddler.fields) {\n\t\t\t\tvar value = updateDescriptor.old.tiddler.getFieldString(name),\n\t\t\t\t\ttiddlerList = indexEntry[value];\n\t\t\t\tif(tiddlerList) {\n\t\t\t\t\tvar index = tiddlerList.indexOf(updateDescriptor.old.tiddler.fields.title);\n\t\t\t\t\tif(index !== -1) {\n\t\t\t\t\t\ttiddlerList.splice(index,1);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t}\n\t// Add the new tiddler to the index\n\tif(updateDescriptor[\"new\"].tiddler) {\n\t\t$tw.utils.each(this.index,function(indexEntry,name) {\n\t\t\tif(name in updateDescriptor[\"new\"].tiddler.fields) {\n\t\t\t\tvar value = updateDescriptor[\"new\"].tiddler.getFieldString(name);\n\t\t\t\tif(value.length < self.maxIndexedValueLength) {\n\t\t\t\t\tindexEntry[value] = indexEntry[value] || [];\n\t\t\t\t\tindexEntry[value].push(updateDescriptor[\"new\"].tiddler.fields.title);\n\t\t\t\t}\n\t\t\t}\n\t\t});\t\t\n\t}\n};\n\n// Lookup the given field returning a list of tiddler titles\nFieldIndexer.prototype.lookup = function(name,value) {\n\t// Fail the lookup if the value is too long\n\tif(value.length >= this.maxIndexedValueLength) {\n\t\treturn null;\n\t}\n\t// Update the index if it has yet to be built\n\tif(this.index === null || !this.index[name]) {\n\t\tthis.buildIndexForField(name);\n\t}\n\treturn this.index[name][value] || [];\n};\n\nexports.FieldIndexer = FieldIndexer;\n\n})();\n",
"type": "application/javascript",
"module-type": "indexer"
},
"$:/core/modules/indexers/tag-indexer.js": {
"title": "$:/core/modules/indexers/tag-indexer.js",
"text": "/*\\\ntitle: $:/core/modules/indexers/tag-indexer.js\ntype: application/javascript\nmodule-type: indexer\n\nIndexes the tiddlers with each tag\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global modules: false */\n\"use strict\";\n\nfunction TagIndexer(wiki) {\n\tthis.wiki = wiki;\n}\n\nTagIndexer.prototype.init = function() {\n\tthis.subIndexers = [\n\t\tnew TagSubIndexer(this,\"each\"),\n\t\tnew TagSubIndexer(this,\"eachShadow\"),\n\t\tnew TagSubIndexer(this,\"eachTiddlerPlusShadows\"),\n\t\tnew TagSubIndexer(this,\"eachShadowPlusTiddlers\")\n\t];\n\t$tw.utils.each(this.subIndexers,function(subIndexer) {\n\t\tsubIndexer.addIndexMethod();\n\t});\n};\n\nTagIndexer.prototype.rebuild = function() {\n\t$tw.utils.each(this.subIndexers,function(subIndexer) {\n\t\tsubIndexer.rebuild();\n\t});\n};\n\nTagIndexer.prototype.update = function(updateDescriptor) {\n\t$tw.utils.each(this.subIndexers,function(subIndexer) {\n\t\tsubIndexer.update(updateDescriptor);\n\t});\n};\n\nfunction TagSubIndexer(indexer,iteratorMethod) {\n\tthis.indexer = indexer;\n\tthis.iteratorMethod = iteratorMethod;\n\tthis.index = null; // Hashmap of tag title to {isSorted: bool, titles: [array]} or null if not yet initialised\n}\n\nTagSubIndexer.prototype.addIndexMethod = function() {\n\tvar self = this;\n\tthis.indexer.wiki[this.iteratorMethod].byTag = function(tag) {\n\t\treturn self.lookup(tag).slice(0);\n\t};\n};\n\nTagSubIndexer.prototype.rebuild = function() {\n\tvar self = this;\n\t// Hashmap by tag of array of {isSorted:, titles:[]}\n\tthis.index = Object.create(null);\n\t// Add all the tags\n\tthis.indexer.wiki[this.iteratorMethod](function(tiddler,title) {\n\t\t$tw.utils.each(tiddler.fields.tags,function(tag) {\n\t\t\tif(!self.index[tag]) {\n\t\t\t\tself.index[tag] = {isSorted: false, titles: [title]};\n\t\t\t} else {\n\t\t\t\tself.index[tag].titles.push(title);\n\t\t\t}\n\t\t});\t\t\n\t});\n};\n\nTagSubIndexer.prototype.update = function(updateDescriptor) {\n\tthis.index = null;\n};\n\nTagSubIndexer.prototype.lookup = function(tag) {\n\t// Update the index if it has yet to be built\n\tif(this.index === null) {\n\t\tthis.rebuild();\n\t}\n\tvar indexRecord = this.index[tag];\n\tif(indexRecord) {\n\t\tif(!indexRecord.isSorted) {\n\t\t\tif(this.indexer.wiki.sortByList) {\n\t\t\t\tindexRecord.titles = this.indexer.wiki.sortByList(indexRecord.titles,tag);\n\t\t\t}\t\t\t\n\t\t\tindexRecord.isSorted = true;\n\t\t}\n\t\treturn indexRecord.titles;\n\t} else {\n\t\treturn [];\n\t}\n};\n\n\nexports.TagIndexer = TagIndexer;\n\n})();\n",
"type": "application/javascript",
"module-type": "indexer"
},
"$:/core/modules/info/platform.js": {
"title": "$:/core/modules/info/platform.js",
"text": "/*\\\ntitle: $:/core/modules/info/platform.js\ntype: application/javascript\nmodule-type: info\n\nInitialise basic platform $:/info/ tiddlers\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.getInfoTiddlerFields = function() {\n\tvar mapBoolean = function(value) {return value ? \"yes\" : \"no\";},\n\t\tinfoTiddlerFields = [];\n\t// Basics\n\tinfoTiddlerFields.push({title: \"$:/info/browser\", text: mapBoolean(!!$tw.browser)});\n\tinfoTiddlerFields.push({title: \"$:/info/node\", text: mapBoolean(!!$tw.node)});\n\tif($tw.browser) {\n\t\t// Document location\n\t\tvar setLocationProperty = function(name,value) {\n\t\t\t\tinfoTiddlerFields.push({title: \"$:/info/url/\" + name, text: value});\t\t\t\n\t\t\t},\n\t\t\tlocation = document.location;\n\t\tsetLocationProperty(\"full\", (location.toString()).split(\"#\")[0]);\n\t\tsetLocationProperty(\"host\", location.host);\n\t\tsetLocationProperty(\"hostname\", location.hostname);\n\t\tsetLocationProperty(\"protocol\", location.protocol);\n\t\tsetLocationProperty(\"port\", location.port);\n\t\tsetLocationProperty(\"pathname\", location.pathname);\n\t\tsetLocationProperty(\"search\", location.search);\n\t\tsetLocationProperty(\"origin\", location.origin);\n\t\t// Screen size\n\t\tinfoTiddlerFields.push({title: \"$:/info/browser/screen/width\", text: window.screen.width.toString()});\n\t\tinfoTiddlerFields.push({title: \"$:/info/browser/screen/height\", text: window.screen.height.toString()});\n\t\t// Language\n\t\tinfoTiddlerFields.push({title: \"$:/info/browser/language\", text: navigator.language || \"\"});\n\t}\n\treturn infoTiddlerFields;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "info"
},
"$:/core/modules/keyboard.js": {
"title": "$:/core/modules/keyboard.js",
"text": "/*\\\ntitle: $:/core/modules/keyboard.js\ntype: application/javascript\nmodule-type: global\n\nKeyboard handling utilities\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar namedKeys = {\n\t\"cancel\": 3,\n\t\"help\": 6,\n\t\"backspace\": 8,\n\t\"tab\": 9,\n\t\"clear\": 12,\n\t\"return\": 13,\n\t\"enter\": 13,\n\t\"pause\": 19,\n\t\"escape\": 27,\n\t\"space\": 32,\n\t\"page_up\": 33,\n\t\"page_down\": 34,\n\t\"end\": 35,\n\t\"home\": 36,\n\t\"left\": 37,\n\t\"up\": 38,\n\t\"right\": 39,\n\t\"down\": 40,\n\t\"printscreen\": 44,\n\t\"insert\": 45,\n\t\"delete\": 46,\n\t\"0\": 48,\n\t\"1\": 49,\n\t\"2\": 50,\n\t\"3\": 51,\n\t\"4\": 52,\n\t\"5\": 53,\n\t\"6\": 54,\n\t\"7\": 55,\n\t\"8\": 56,\n\t\"9\": 57,\n\t\"firefoxsemicolon\": 59,\n\t\"firefoxequals\": 61,\n\t\"a\": 65,\n\t\"b\": 66,\n\t\"c\": 67,\n\t\"d\": 68,\n\t\"e\": 69,\n\t\"f\": 70,\n\t\"g\": 71,\n\t\"h\": 72,\n\t\"i\": 73,\n\t\"j\": 74,\n\t\"k\": 75,\n\t\"l\": 76,\n\t\"m\": 77,\n\t\"n\": 78,\n\t\"o\": 79,\n\t\"p\": 80,\n\t\"q\": 81,\n\t\"r\": 82,\n\t\"s\": 83,\n\t\"t\": 84,\n\t\"u\": 85,\n\t\"v\": 86,\n\t\"w\": 87,\n\t\"x\": 88,\n\t\"y\": 89,\n\t\"z\": 90,\n\t\"numpad0\": 96,\n\t\"numpad1\": 97,\n\t\"numpad2\": 98,\n\t\"numpad3\": 99,\n\t\"numpad4\": 100,\n\t\"numpad5\": 101,\n\t\"numpad6\": 102,\n\t\"numpad7\": 103,\n\t\"numpad8\": 104,\n\t\"numpad9\": 105,\n\t\"multiply\": 106,\n\t\"add\": 107,\n\t\"separator\": 108,\n\t\"subtract\": 109,\n\t\"decimal\": 110,\n\t\"divide\": 111,\n\t\"f1\": 112,\n\t\"f2\": 113,\n\t\"f3\": 114,\n\t\"f4\": 115,\n\t\"f5\": 116,\n\t\"f6\": 117,\n\t\"f7\": 118,\n\t\"f8\": 119,\n\t\"f9\": 120,\n\t\"f10\": 121,\n\t\"f11\": 122,\n\t\"f12\": 123,\n\t\"f13\": 124,\n\t\"f14\": 125,\n\t\"f15\": 126,\n\t\"f16\": 127,\n\t\"f17\": 128,\n\t\"f18\": 129,\n\t\"f19\": 130,\n\t\"f20\": 131,\n\t\"f21\": 132,\n\t\"f22\": 133,\n\t\"f23\": 134,\n\t\"f24\": 135,\n\t\"firefoxminus\": 173,\n\t\"semicolon\": 186,\n\t\"equals\": 187,\n\t\"comma\": 188,\n\t\"dash\": 189,\n\t\"period\": 190,\n\t\"slash\": 191,\n\t\"backquote\": 192,\n\t\"openbracket\": 219,\n\t\"backslash\": 220,\n\t\"closebracket\": 221,\n\t\"quote\": 222\n};\n\nfunction KeyboardManager(options) {\n\tvar self = this;\n\toptions = options || \"\";\n\t// Save the named key hashmap\n\tthis.namedKeys = namedKeys;\n\t// Create a reverse mapping of code to keyname\n\tthis.keyNames = [];\n\t$tw.utils.each(namedKeys,function(keyCode,name) {\n\t\tself.keyNames[keyCode] = name.substr(0,1).toUpperCase() + name.substr(1);\n\t});\n\t// Save the platform-specific name of the \"meta\" key\n\tthis.metaKeyName = $tw.platform.isMac ? \"cmd-\" : \"win-\";\n\tthis.shortcutKeysList = [], // Stores the shortcut-key descriptors\n\tthis.shortcutActionList = [], // Stores the corresponding action strings\n\tthis.shortcutParsedList = []; // Stores the parsed key descriptors\n\tthis.lookupNames = [\"shortcuts\"];\n\tthis.lookupNames.push($tw.platform.isMac ? \"shortcuts-mac\" : \"shortcuts-not-mac\")\n\tthis.lookupNames.push($tw.platform.isWindows ? \"shortcuts-windows\" : \"shortcuts-not-windows\");\n\tthis.lookupNames.push($tw.platform.isLinux ? \"shortcuts-linux\" : \"shortcuts-not-linux\");\n\tthis.updateShortcutLists(this.getShortcutTiddlerList());\n\t$tw.wiki.addEventListener(\"change\",function(changes) {\n\t\tself.handleShortcutChanges(changes);\n\t});\n}\n\n/*\nReturn an array of keycodes for the modifier keys ctrl, shift, alt, meta\n*/\nKeyboardManager.prototype.getModifierKeys = function() {\n\treturn [\n\t\t16, // Shift\n\t\t17, // Ctrl\n\t\t18, // Alt\n\t\t20, // CAPS LOCK\n\t\t91, // Meta (left)\n\t\t93, // Meta (right)\n\t\t224 // Meta (Firefox)\n\t]\n};\n\n/*\nParses a key descriptor into the structure:\n{\n\tkeyCode: numeric keycode\n\tshiftKey: boolean\n\taltKey: boolean\n\tctrlKey: boolean\n\tmetaKey: boolean\n}\nKey descriptors have the following format:\n\tctrl+enter\n\tctrl+shift+alt+A\n*/\nKeyboardManager.prototype.parseKeyDescriptor = function(keyDescriptor) {\n\tvar components = keyDescriptor.split(/\\+|\\-/),\n\t\tinfo = {\n\t\t\tkeyCode: 0,\n\t\t\tshiftKey: false,\n\t\t\taltKey: false,\n\t\t\tctrlKey: false,\n\t\t\tmetaKey: false\n\t\t};\n\tfor(var t=0; t<components.length; t++) {\n\t\tvar s = components[t].toLowerCase(),\n\t\t\tc = s.charCodeAt(0);\n\t\t// Look for modifier keys\n\t\tif(s === \"ctrl\") {\n\t\t\tinfo.ctrlKey = true;\n\t\t} else if(s === \"shift\") {\n\t\t\tinfo.shiftKey = true;\n\t\t} else if(s === \"alt\") {\n\t\t\tinfo.altKey = true;\n\t\t} else if(s === \"meta\" || s === \"cmd\" || s === \"win\") {\n\t\t\tinfo.metaKey = true;\n\t\t}\n\t\t// Replace named keys with their code\n\t\tif(this.namedKeys[s]) {\n\t\t\tinfo.keyCode = this.namedKeys[s];\n\t\t}\n\t}\n\tif(info.keyCode) {\n\t\treturn info;\n\t} else {\n\t\treturn null;\n\t}\n};\n\n/*\nParse a list of key descriptors into an array of keyInfo objects. The key descriptors can be passed as an array of strings or a space separated string\n*/\nKeyboardManager.prototype.parseKeyDescriptors = function(keyDescriptors,options) {\n\tvar self = this;\n\toptions = options || {};\n\toptions.stack = options.stack || [];\n\tvar wiki = options.wiki || $tw.wiki;\n\tif(typeof keyDescriptors === \"string\" && keyDescriptors === \"\") {\n\t\treturn [];\n\t}\n\tif(!$tw.utils.isArray(keyDescriptors)) {\n\t\tkeyDescriptors = keyDescriptors.split(\" \");\n\t}\n\tvar result = [];\n\t$tw.utils.each(keyDescriptors,function(keyDescriptor) {\n\t\t// Look for a named shortcut\n\t\tif(keyDescriptor.substr(0,2) === \"((\" && keyDescriptor.substr(-2,2) === \"))\") {\n\t\t\tif(options.stack.indexOf(keyDescriptor) === -1) {\n\t\t\t\toptions.stack.push(keyDescriptor);\n\t\t\t\tvar name = keyDescriptor.substring(2,keyDescriptor.length - 2),\n\t\t\t\t\tlookupName = function(configName) {\n\t\t\t\t\t\tvar keyDescriptors = wiki.getTiddlerText(\"$:/config/\" + configName + \"/\" + name);\n\t\t\t\t\t\tif(keyDescriptors) {\n\t\t\t\t\t\t\tresult.push.apply(result,self.parseKeyDescriptors(keyDescriptors,options));\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t$tw.utils.each(self.lookupNames,function(platformDescriptor) {\n\t\t\t\t\tlookupName(platformDescriptor);\n\t\t\t\t});\n\t\t\t}\n\t\t} else {\n\t\t\tresult.push(self.parseKeyDescriptor(keyDescriptor));\n\t\t}\n\t});\n\treturn result;\n};\n\nKeyboardManager.prototype.getPrintableShortcuts = function(keyInfoArray) {\n\tvar self = this,\n\t\tresult = [];\n\t$tw.utils.each(keyInfoArray,function(keyInfo) {\n\t\tif(keyInfo) {\n\t\t\tresult.push((keyInfo.ctrlKey ? \"ctrl-\" : \"\") + \n\t\t\t\t (keyInfo.shiftKey ? \"shift-\" : \"\") + \n\t\t\t\t (keyInfo.altKey ? \"alt-\" : \"\") + \n\t\t\t\t (keyInfo.metaKey ? self.metaKeyName : \"\") + \n\t\t\t\t (self.keyNames[keyInfo.keyCode]));\n\t\t}\n\t});\n\treturn result;\n}\n\nKeyboardManager.prototype.checkKeyDescriptor = function(event,keyInfo) {\n\treturn keyInfo &&\n\t\t\tevent.keyCode === keyInfo.keyCode && \n\t\t\tevent.shiftKey === keyInfo.shiftKey && \n\t\t\tevent.altKey === keyInfo.altKey && \n\t\t\tevent.ctrlKey === keyInfo.ctrlKey && \n\t\t\tevent.metaKey === keyInfo.metaKey;\n};\n\nKeyboardManager.prototype.checkKeyDescriptors = function(event,keyInfoArray) {\n\tfor(var t=0; t<keyInfoArray.length; t++) {\n\t\tif(this.checkKeyDescriptor(event,keyInfoArray[t])) {\n\t\t\treturn true;\n\t\t}\n\t}\n\treturn false;\n};\n\nKeyboardManager.prototype.getShortcutTiddlerList = function() {\n\treturn $tw.wiki.getTiddlersWithTag(\"$:/tags/KeyboardShortcut\");\n};\n\nKeyboardManager.prototype.updateShortcutLists = function(tiddlerList) {\n\tthis.shortcutTiddlers = tiddlerList;\n\tfor(var i=0; i<tiddlerList.length; i++) {\n\t\tvar title = tiddlerList[i],\n\t\t\ttiddlerFields = $tw.wiki.getTiddler(title).fields;\n\t\tthis.shortcutKeysList[i] = tiddlerFields.key !== undefined ? tiddlerFields.key : undefined;\n\t\tthis.shortcutActionList[i] = tiddlerFields.text;\n\t\tthis.shortcutParsedList[i] = this.shortcutKeysList[i] !== undefined ? this.parseKeyDescriptors(this.shortcutKeysList[i]) : undefined;\n\t}\n};\n\nKeyboardManager.prototype.handleKeydownEvent = function(event) {\n\tvar key, action;\n\tfor(var i=0; i<this.shortcutTiddlers.length; i++) {\n\t\tif(this.shortcutParsedList[i] !== undefined && this.checkKeyDescriptors(event,this.shortcutParsedList[i])) {\n\t\t\tkey = this.shortcutParsedList[i];\n\t\t\taction = this.shortcutActionList[i];\n\t\t}\n\t}\n\tif(key !== undefined) {\n\t\tevent.preventDefault();\n\t\tevent.stopPropagation();\n\t\t$tw.rootWidget.invokeActionString(action,$tw.rootWidget);\n\t\treturn true;\n\t}\n\treturn false;\n};\n\nKeyboardManager.prototype.detectNewShortcuts = function(changedTiddlers) {\n\tvar shortcutConfigTiddlers = [],\n\t\thandled = false;\n\t$tw.utils.each(this.lookupNames,function(platformDescriptor) {\n\t\tvar descriptorString = \"$:/config/\" + platformDescriptor + \"/\";\n\t\tObject.keys(changedTiddlers).forEach(function(configTiddler) {\n\t\t\tvar configString = configTiddler.substr(0, configTiddler.lastIndexOf(\"/\") + 1);\n\t\t\tif(configString === descriptorString) {\n\t\t\t\tshortcutConfigTiddlers.push(configTiddler);\n\t\t\t\thandled = true;\n\t\t\t}\n\t\t});\n\t});\n\tif(handled) {\n\t\treturn $tw.utils.hopArray(changedTiddlers,shortcutConfigTiddlers);\n\t} else {\n\t\treturn false;\n\t}\n};\n\nKeyboardManager.prototype.handleShortcutChanges = function(changedTiddlers) {\n\tvar newList = this.getShortcutTiddlerList();\n\tvar hasChanged = $tw.utils.hopArray(changedTiddlers,this.shortcutTiddlers) ? true :\n\t\t($tw.utils.hopArray(changedTiddlers,newList) ? true :\n\t\t(this.detectNewShortcuts(changedTiddlers))\n\t);\n\t// Re-cache shortcuts if something changed\n\tif(hasChanged) {\n\t\tthis.updateShortcutLists(newList);\n\t}\n};\n\nexports.KeyboardManager = KeyboardManager;\n\n})();\n",
"type": "application/javascript",
"module-type": "global"
},
"$:/core/modules/language.js": {
"title": "$:/core/modules/language.js",
"text": "/*\\\ntitle: $:/core/modules/language.js\ntype: application/javascript\nmodule-type: global\n\nThe $tw.Language() manages translateable strings\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nCreate an instance of the language manager. Options include:\nwiki: wiki from which to retrieve translation tiddlers\n*/\nfunction Language(options) {\n\toptions = options || \"\";\n\tthis.wiki = options.wiki || $tw.wiki;\n}\n\n/*\nReturn a wikified translateable string. The title is automatically prefixed with \"$:/language/\"\nOptions include:\nvariables: optional hashmap of variables to supply to the language wikification\n*/\nLanguage.prototype.getString = function(title,options) {\n\toptions = options || {};\n\ttitle = \"$:/language/\" + title;\n\treturn this.wiki.renderTiddler(\"text/plain\",title,{variables: options.variables});\n};\n\n/*\nReturn a raw, unwikified translateable string. The title is automatically prefixed with \"$:/language/\"\n*/\nLanguage.prototype.getRawString = function(title) {\n\ttitle = \"$:/language/\" + title;\n\treturn this.wiki.getTiddlerText(title);\n};\n\nexports.Language = Language;\n\n})();\n",
"type": "application/javascript",
"module-type": "global"
},
"$:/core/modules/macros/changecount.js": {
"title": "$:/core/modules/macros/changecount.js",
"text": "/*\\\ntitle: $:/core/modules/macros/changecount.js\ntype: application/javascript\nmodule-type: macro\n\nMacro to return the changecount for the current tiddler\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nInformation about this macro\n*/\n\nexports.name = \"changecount\";\n\nexports.params = [];\n\n/*\nRun the macro\n*/\nexports.run = function() {\n\treturn this.wiki.getChangeCount(this.getVariable(\"currentTiddler\")) + \"\";\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "macro"
},
"$:/core/modules/macros/contrastcolour.js": {
"title": "$:/core/modules/macros/contrastcolour.js",
"text": "/*\\\ntitle: $:/core/modules/macros/contrastcolour.js\ntype: application/javascript\nmodule-type: macro\n\nMacro to choose which of two colours has the highest contrast with a base colour\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nInformation about this macro\n*/\n\nexports.name = \"contrastcolour\";\n\nexports.params = [\n\t{name: \"target\"},\n\t{name: \"fallbackTarget\"},\n\t{name: \"colourA\"},\n\t{name: \"colourB\"}\n];\n\n/*\nRun the macro\n*/\nexports.run = function(target,fallbackTarget,colourA,colourB) {\n\tvar rgbTarget = $tw.utils.parseCSSColor(target) || $tw.utils.parseCSSColor(fallbackTarget);\n\tif(!rgbTarget) {\n\t\treturn colourA;\n\t}\n\tvar rgbColourA = $tw.utils.parseCSSColor(colourA),\n\t\trgbColourB = $tw.utils.parseCSSColor(colourB);\n\tif(rgbColourA && !rgbColourB) {\n\t\treturn rgbColourA;\n\t}\n\tif(rgbColourB && !rgbColourA) {\n\t\treturn rgbColourB;\n\t}\n\tif(!rgbColourA && !rgbColourB) {\n\t\t// If neither colour is readable, return a crude inverse of the target\n\t\treturn [255 - rgbTarget[0],255 - rgbTarget[1],255 - rgbTarget[2],rgbTarget[3]];\n\t}\n\t// Colour brightness formula derived from http://www.w3.org/WAI/ER/WD-AERT/#color-contrast\n\tvar brightnessTarget = rgbTarget[0] * 0.299 + rgbTarget[1] * 0.587 + rgbTarget[2] * 0.114,\n\t\tbrightnessA = rgbColourA[0] * 0.299 + rgbColourA[1] * 0.587 + rgbColourA[2] * 0.114,\n\t\tbrightnessB = rgbColourB[0] * 0.299 + rgbColourB[1] * 0.587 + rgbColourB[2] * 0.114;\n\treturn Math.abs(brightnessTarget - brightnessA) > Math.abs(brightnessTarget - brightnessB) ? colourA : colourB;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "macro"
},
"$:/core/modules/macros/csvtiddlers.js": {
"title": "$:/core/modules/macros/csvtiddlers.js",
"text": "/*\\\ntitle: $:/core/modules/macros/csvtiddlers.js\ntype: application/javascript\nmodule-type: macro\n\nMacro to output tiddlers matching a filter to CSV\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nInformation about this macro\n*/\n\nexports.name = \"csvtiddlers\";\n\nexports.params = [\n\t{name: \"filter\"},\n\t{name: \"format\"},\n];\n\n/*\nRun the macro\n*/\nexports.run = function(filter,format) {\n\tvar self = this,\n\t\ttiddlers = this.wiki.filterTiddlers(filter),\n\t\ttiddler,\n\t\tfields = [],\n\t\tt,f;\n\t// Collect all the fields\n\tfor(t=0;t<tiddlers.length; t++) {\n\t\ttiddler = this.wiki.getTiddler(tiddlers[t]);\n\t\tfor(f in tiddler.fields) {\n\t\t\tif(fields.indexOf(f) === -1) {\n\t\t\t\tfields.push(f);\n\t\t\t}\n\t\t}\n\t}\n\t// Sort the fields and bring the standard ones to the front\n\tfields.sort();\n\t\"title text modified modifier created creator\".split(\" \").reverse().forEach(function(value,index) {\n\t\tvar p = fields.indexOf(value);\n\t\tif(p !== -1) {\n\t\t\tfields.splice(p,1);\n\t\t\tfields.unshift(value)\n\t\t}\n\t});\n\t// Output the column headings\n\tvar output = [], row = [];\n\tfields.forEach(function(value) {\n\t\trow.push(quoteAndEscape(value))\n\t});\n\toutput.push(row.join(\",\"));\n\t// Output each tiddler\n\tfor(var t=0;t<tiddlers.length; t++) {\n\t\trow = [];\n\t\ttiddler = this.wiki.getTiddler(tiddlers[t]);\n\t\t\tfor(f=0; f<fields.length; f++) {\n\t\t\t\trow.push(quoteAndEscape(tiddler ? tiddler.getFieldString(fields[f]) || \"\" : \"\"));\n\t\t\t}\n\t\toutput.push(row.join(\",\"));\n\t}\n\treturn output.join(\"\\n\");\n};\n\nfunction quoteAndEscape(value) {\n\treturn \"\\\"\" + value.replace(/\"/mg,\"\\\"\\\"\") + \"\\\"\";\n}\n\n})();\n",
"type": "application/javascript",
"module-type": "macro"
},
"$:/core/modules/macros/displayshortcuts.js": {
"title": "$:/core/modules/macros/displayshortcuts.js",
"text": "/*\\\ntitle: $:/core/modules/macros/displayshortcuts.js\ntype: application/javascript\nmodule-type: macro\n\nMacro to display a list of keyboard shortcuts in human readable form. Notably, it resolves named shortcuts like `((bold))` to the underlying keystrokes.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nInformation about this macro\n*/\n\nexports.name = \"displayshortcuts\";\n\nexports.params = [\n\t{name: \"shortcuts\"},\n\t{name: \"prefix\"},\n\t{name: \"separator\"},\n\t{name: \"suffix\"}\n];\n\n/*\nRun the macro\n*/\nexports.run = function(shortcuts,prefix,separator,suffix) {\n\tvar shortcutArray = $tw.keyboardManager.getPrintableShortcuts($tw.keyboardManager.parseKeyDescriptors(shortcuts,{\n\t\twiki: this.wiki\n\t}));\n\tif(shortcutArray.length > 0) {\n\t\tshortcutArray.sort(function(a,b) {\n\t\t return a.toLowerCase().localeCompare(b.toLowerCase());\n\t\t})\n\t\treturn prefix + shortcutArray.join(separator) + suffix;\n\t} else {\n\t\treturn \"\";\n\t}\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "macro"
},
"$:/core/modules/macros/jsontiddler.js": {
"title": "$:/core/modules/macros/jsontiddler.js",
"text": "/*\\\ntitle: $:/core/modules/macros/jsontiddler.js\ntype: application/javascript\nmodule-type: macro\n\nMacro to output a single tiddler to JSON\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nInformation about this macro\n*/\n\nexports.name = \"jsontiddler\";\n\nexports.params = [\n\t{name: \"title\"}\n];\n\n/*\nRun the macro\n*/\nexports.run = function(title) {\n\ttitle = title || this.getVariable(\"currentTiddler\");\n\tvar tiddler = !!title && this.wiki.getTiddler(title),\n\t\tfields = new Object();\n\tif(tiddler) {\n\t\tfor(var field in tiddler.fields) {\n\t\t\tfields[field] = tiddler.getFieldString(field);\n\t\t}\n\t}\n\treturn JSON.stringify(fields,null,$tw.config.preferences.jsonSpaces);\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "macro"
},
"$:/core/modules/macros/jsontiddlers.js": {
"title": "$:/core/modules/macros/jsontiddlers.js",
"text": "/*\\\ntitle: $:/core/modules/macros/jsontiddlers.js\ntype: application/javascript\nmodule-type: macro\n\nMacro to output tiddlers matching a filter to JSON\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nInformation about this macro\n*/\n\nexports.name = \"jsontiddlers\";\n\nexports.params = [\n\t{name: \"filter\"}\n];\n\n/*\nRun the macro\n*/\nexports.run = function(filter) {\n\treturn this.wiki.getTiddlersAsJson(filter);\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "macro"
},
"$:/core/modules/macros/makedatauri.js": {
"title": "$:/core/modules/macros/makedatauri.js",
"text": "/*\\\ntitle: $:/core/modules/macros/makedatauri.js\ntype: application/javascript\nmodule-type: macro\n\nMacro to convert a string of text to a data URI\n\n<<makedatauri text:\"Text to be converted\" type:\"text/vnd.tiddlywiki\">>\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nInformation about this macro\n*/\n\nexports.name = \"makedatauri\";\n\nexports.params = [\n\t{name: \"text\"},\n\t{name: \"type\"}\n];\n\n/*\nRun the macro\n*/\nexports.run = function(text,type) {\n\treturn $tw.utils.makeDataUri(text,type);\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "macro"
},
"$:/core/modules/macros/now.js": {
"title": "$:/core/modules/macros/now.js",
"text": "/*\\\ntitle: $:/core/modules/macros/now.js\ntype: application/javascript\nmodule-type: macro\n\nMacro to return a formatted version of the current time\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nInformation about this macro\n*/\n\nexports.name = \"now\";\n\nexports.params = [\n\t{name: \"format\"}\n];\n\n/*\nRun the macro\n*/\nexports.run = function(format) {\n\treturn $tw.utils.formatDateString(new Date(),format || \"0hh:0mm, DDth MMM YYYY\");\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "macro"
},
"$:/core/modules/macros/qualify.js": {
"title": "$:/core/modules/macros/qualify.js",
"text": "/*\\\ntitle: $:/core/modules/macros/qualify.js\ntype: application/javascript\nmodule-type: macro\n\nMacro to qualify a state tiddler title according\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nInformation about this macro\n*/\n\nexports.name = \"qualify\";\n\nexports.params = [\n\t{name: \"title\"}\n];\n\n/*\nRun the macro\n*/\nexports.run = function(title) {\n\treturn title + \"-\" + this.getStateQualifier();\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "macro"
},
"$:/core/modules/macros/resolvepath.js": {
"title": "$:/core/modules/macros/resolvepath.js",
"text": "/*\\\ntitle: $:/core/modules/macros/resolvepath.js\ntype: application/javascript\nmodule-type: macro\n\nResolves a relative path for an absolute rootpath.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.name = \"resolvepath\";\n\nexports.params = [\n\t{name: \"source\"},\n\t{name: \"root\"}\n];\n\n/*\nRun the macro\n*/\nexports.run = function(source, root) {\n\treturn $tw.utils.resolvePath(source, root);\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "macro"
},
"$:/core/modules/macros/unusedtitle.js": {
"title": "$:/core/modules/macros/unusedtitle.js",
"text": "/*\\\ntitle: $:/core/modules/macros/unusedtitle.js\ntype: application/javascript\nmodule-type: macro\nMacro to return a new title that is unused in the wiki. It can be given a name as a base.\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nInformation about this macro\n*/\n\nexports.name = \"unusedtitle\";\n\nexports.params = [\n\t{name: \"baseName\"},\n\t{name: \"options\"}\n];\n\n/*\nRun the macro\n*/\nexports.run = function(baseName, options) {\n\tif(!baseName) {\n\t\tbaseName = $tw.language.getString(\"DefaultNewTiddlerTitle\");\n\t}\n\treturn this.wiki.generateNewTitle(baseName, options);\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "macro"
},
"$:/core/modules/macros/version.js": {
"title": "$:/core/modules/macros/version.js",
"text": "/*\\\ntitle: $:/core/modules/macros/version.js\ntype: application/javascript\nmodule-type: macro\n\nMacro to return the TiddlyWiki core version number\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nInformation about this macro\n*/\n\nexports.name = \"version\";\n\nexports.params = [];\n\n/*\nRun the macro\n*/\nexports.run = function() {\n\treturn $tw.version;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "macro"
},
"$:/core/modules/parsers/audioparser.js": {
"title": "$:/core/modules/parsers/audioparser.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/audioparser.js\ntype: application/javascript\nmodule-type: parser\n\nThe audio parser parses an audio tiddler into an embeddable HTML element\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar AudioParser = function(type,text,options) {\n\tvar element = {\n\t\t\ttype: \"element\",\n\t\t\ttag: \"audio\",\n\t\t\tattributes: {\n\t\t\t\tcontrols: {type: \"string\", value: \"controls\"}\n\t\t\t}\n\t\t},\n\t\tsrc;\n\tif(options._canonical_uri) {\n\t\telement.attributes.src = {type: \"string\", value: options._canonical_uri};\n\t} else if(text) {\n\t\telement.attributes.src = {type: \"string\", value: \"data:\" + type + \";base64,\" + text};\n\t}\n\tthis.tree = [element];\n};\n\nexports[\"audio/ogg\"] = AudioParser;\nexports[\"audio/mpeg\"] = AudioParser;\nexports[\"audio/mp3\"] = AudioParser;\nexports[\"audio/mp4\"] = AudioParser;\n\n})();\n\n",
"type": "application/javascript",
"module-type": "parser"
},
"$:/core/modules/parsers/binaryparser.js": {
"title": "$:/core/modules/parsers/binaryparser.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/binaryparser.js\ntype: application/javascript\nmodule-type: parser\n\nThe video parser parses a video tiddler into an embeddable HTML element\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar BINARY_WARNING_MESSAGE = \"$:/core/ui/BinaryWarning\";\n\nvar BinaryParser = function(type,text,options) {\n\tthis.tree = [{\n\t\ttype: \"transclude\",\n\t\tattributes: {\n\t\t\ttiddler: {type: \"string\", value: BINARY_WARNING_MESSAGE}\n\t\t}\n\t}];\n};\n\nexports[\"application/octet-stream\"] = BinaryParser;\n\n})();\n\n",
"type": "application/javascript",
"module-type": "parser"
},
"$:/core/modules/parsers/csvparser.js": {
"title": "$:/core/modules/parsers/csvparser.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/csvparser.js\ntype: application/javascript\nmodule-type: parser\n\nThe CSV text parser processes CSV files into a table wrapped in a scrollable widget\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar CsvParser = function(type,text,options) {\n\t// Table framework\n\tthis.tree = [{\n\t\t\"type\": \"scrollable\", \"children\": [{\n\t\t\t\"type\": \"element\", \"tag\": \"table\", \"children\": [{\n\t\t\t\t\"type\": \"element\", \"tag\": \"tbody\", \"children\": []\n\t\t\t}], \"attributes\": {\n\t\t\t\t\"class\": {\"type\": \"string\", \"value\": \"tc-csv-table\"}\n\t\t\t}\n\t\t}]\n\t}];\n\t// Split the text into lines\n\tvar lines = text.split(/\\r?\\n/mg),\n\t\ttag = \"th\";\n\tfor(var line=0; line<lines.length; line++) {\n\t\tvar lineText = lines[line];\n\t\tif(lineText) {\n\t\t\tvar row = {\n\t\t\t\t\t\"type\": \"element\", \"tag\": \"tr\", \"children\": []\n\t\t\t\t};\n\t\t\tvar columns = lineText.split(\",\");\n\t\t\tfor(var column=0; column<columns.length; column++) {\n\t\t\t\trow.children.push({\n\t\t\t\t\t\t\"type\": \"element\", \"tag\": tag, \"children\": [{\n\t\t\t\t\t\t\t\"type\": \"text\",\n\t\t\t\t\t\t\t\"text\": columns[column]\n\t\t\t\t\t\t}]\n\t\t\t\t\t});\n\t\t\t}\n\t\t\ttag = \"td\";\n\t\t\tthis.tree[0].children[0].children[0].children.push(row);\n\t\t}\n\t}\n};\n\nexports[\"text/csv\"] = CsvParser;\n\n})();\n\n",
"type": "application/javascript",
"module-type": "parser"
},
"$:/core/modules/parsers/htmlparser.js": {
"title": "$:/core/modules/parsers/htmlparser.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/htmlparser.js\ntype: application/javascript\nmodule-type: parser\n\nThe HTML parser displays text as raw HTML\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar HtmlParser = function(type,text,options) {\n\tvar src;\n\tif(options._canonical_uri) {\n\t\tsrc = options._canonical_uri;\n\t} else if(text) {\n\t\tsrc = \"data:text/html;charset=utf-8,\" + encodeURIComponent(text);\n\t}\n\tthis.tree = [{\n\t\ttype: \"element\",\n\t\ttag: \"iframe\",\n\t\tattributes: {\n\t\t\tsrc: {type: \"string\", value: src},\n\t\t\tsandbox: {type: \"string\", value: \"\"}\n\t\t}\n\t}];\n};\n\nexports[\"text/html\"] = HtmlParser;\n\n})();\n\n",
"type": "application/javascript",
"module-type": "parser"
},
"$:/core/modules/parsers/imageparser.js": {
"title": "$:/core/modules/parsers/imageparser.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/imageparser.js\ntype: application/javascript\nmodule-type: parser\n\nThe image parser parses an image into an embeddable HTML element\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar ImageParser = function(type,text,options) {\n\tvar element = {\n\t\t\ttype: \"element\",\n\t\t\ttag: \"img\",\n\t\t\tattributes: {}\n\t\t};\n\tif(options._canonical_uri) {\n\t\telement.attributes.src = {type: \"string\", value: options._canonical_uri};\n\t} else if(text) {\n\t\tif(type === \"image/svg+xml\" || type === \".svg\") {\n\t\t\telement.attributes.src = {type: \"string\", value: \"data:image/svg+xml,\" + encodeURIComponent(text)};\n\t\t} else {\n\t\t\telement.attributes.src = {type: \"string\", value: \"data:\" + type + \";base64,\" + text};\n\t\t}\n\t}\n\tthis.tree = [element];\n};\n\nexports[\"image/svg+xml\"] = ImageParser;\nexports[\"image/jpg\"] = ImageParser;\nexports[\"image/jpeg\"] = ImageParser;\nexports[\"image/png\"] = ImageParser;\nexports[\"image/gif\"] = ImageParser;\nexports[\"image/webp\"] = ImageParser;\nexports[\"image/heic\"] = ImageParser;\nexports[\"image/heif\"] = ImageParser;\nexports[\"image/x-icon\"] = ImageParser;\n\n})();\n\n",
"type": "application/javascript",
"module-type": "parser"
},
"$:/core/modules/utils/parseutils.js": {
"title": "$:/core/modules/utils/parseutils.js",
"text": "/*\\\ntitle: $:/core/modules/utils/parseutils.js\ntype: application/javascript\nmodule-type: utils\n\nUtility functions concerned with parsing text into tokens.\n\nMost functions have the following pattern:\n\n* The parameters are:\n** `source`: the source string being parsed\n** `pos`: the current parse position within the string\n** Any further parameters are used to identify the token that is being parsed\n* The return value is:\n** null if the token was not found at the specified position\n** an object representing the token with the following standard fields:\n*** `type`: string indicating the type of the token\n*** `start`: start position of the token in the source string\n*** `end`: end position of the token in the source string\n*** Any further fields required to describe the token\n\nThe exception is `skipWhiteSpace`, which just returns the position after the whitespace.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nLook for a whitespace token. Returns null if not found, otherwise returns {type: \"whitespace\", start:, end:,}\n*/\nexports.parseWhiteSpace = function(source,pos) {\n\tvar p = pos,c;\n\twhile(true) {\n\t\tc = source.charAt(p);\n\t\tif((c === \" \") || (c === \"\\f\") || (c === \"\\n\") || (c === \"\\r\") || (c === \"\\t\") || (c === \"\\v\") || (c === \"\\u00a0\")) { // Ignores some obscure unicode spaces\n\t\t\tp++;\n\t\t} else {\n\t\t\tbreak;\n\t\t}\n\t}\n\tif(p === pos) {\n\t\treturn null;\n\t} else {\n\t\treturn {\n\t\t\ttype: \"whitespace\",\n\t\t\tstart: pos,\n\t\t\tend: p\n\t\t}\n\t}\n};\n\n/*\nConvenience wrapper for parseWhiteSpace. Returns the position after the whitespace\n*/\nexports.skipWhiteSpace = function(source,pos) {\n\tvar c;\n\twhile(true) {\n\t\tc = source.charAt(pos);\n\t\tif((c === \" \") || (c === \"\\f\") || (c === \"\\n\") || (c === \"\\r\") || (c === \"\\t\") || (c === \"\\v\") || (c === \"\\u00a0\")) { // Ignores some obscure unicode spaces\n\t\t\tpos++;\n\t\t} else {\n\t\t\treturn pos;\n\t\t}\n\t}\n};\n\n/*\nLook for a given string token. Returns null if not found, otherwise returns {type: \"token\", value:, start:, end:,}\n*/\nexports.parseTokenString = function(source,pos,token) {\n\tvar match = source.indexOf(token,pos) === pos;\n\tif(match) {\n\t\treturn {\n\t\t\ttype: \"token\",\n\t\t\tvalue: token,\n\t\t\tstart: pos,\n\t\t\tend: pos + token.length\n\t\t};\n\t}\n\treturn null;\n};\n\n/*\nLook for a token matching a regex. Returns null if not found, otherwise returns {type: \"regexp\", match:, start:, end:,}\n*/\nexports.parseTokenRegExp = function(source,pos,reToken) {\n\tvar node = {\n\t\ttype: \"regexp\",\n\t\tstart: pos\n\t};\n\treToken.lastIndex = pos;\n\tnode.match = reToken.exec(source);\n\tif(node.match && node.match.index === pos) {\n\t\tnode.end = pos + node.match[0].length;\n\t\treturn node;\n\t} else {\n\t\treturn null;\n\t}\n};\n\n/*\nLook for a string literal. Returns null if not found, otherwise returns {type: \"string\", value:, start:, end:,}\n*/\nexports.parseStringLiteral = function(source,pos) {\n\tvar node = {\n\t\ttype: \"string\",\n\t\tstart: pos\n\t};\n\tvar reString = /(?:\"\"\"([\\s\\S]*?)\"\"\"|\"([^\"]*)\")|(?:'([^']*)')/g;\n\treString.lastIndex = pos;\n\tvar match = reString.exec(source);\n\tif(match && match.index === pos) {\n\t\tnode.value = match[1] !== undefined ? match[1] :(\n\t\t\tmatch[2] !== undefined ? match[2] : match[3] \n\t\t\t\t\t);\n\t\tnode.end = pos + match[0].length;\n\t\treturn node;\n\t} else {\n\t\treturn null;\n\t}\n};\n\n/*\nLook for a macro invocation parameter. Returns null if not found, or {type: \"macro-parameter\", name:, value:, start:, end:}\n*/\nexports.parseMacroParameter = function(source,pos) {\n\tvar node = {\n\t\ttype: \"macro-parameter\",\n\t\tstart: pos\n\t};\n\t// Define our regexp\n\tvar reMacroParameter = /(?:([A-Za-z0-9\\-_]+)\\s*:)?(?:\\s*(?:\"\"\"([\\s\\S]*?)\"\"\"|\"([^\"]*)\"|'([^']*)'|\\[\\[([^\\]]*)\\]\\]|([^\\s>\"'=]+)))/g;\n\t// Skip whitespace\n\tpos = $tw.utils.skipWhiteSpace(source,pos);\n\t// Look for the parameter\n\tvar token = $tw.utils.parseTokenRegExp(source,pos,reMacroParameter);\n\tif(!token) {\n\t\treturn null;\n\t}\n\tpos = token.end;\n\t// Get the parameter details\n\tnode.value = token.match[2] !== undefined ? token.match[2] : (\n\t\t\t\t\ttoken.match[3] !== undefined ? token.match[3] : (\n\t\t\t\t\t\ttoken.match[4] !== undefined ? token.match[4] : (\n\t\t\t\t\t\t\ttoken.match[5] !== undefined ? token.match[5] : (\n\t\t\t\t\t\t\t\ttoken.match[6] !== undefined ? token.match[6] : (\n\t\t\t\t\t\t\t\t\t\"\"\n\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t)\n\t\t\t\t\t)\n\t\t\t\t);\n\tif(token.match[1]) {\n\t\tnode.name = token.match[1];\n\t}\n\t// Update the end position\n\tnode.end = pos;\n\treturn node;\n};\n\n/*\nLook for a macro invocation. Returns null if not found, or {type: \"macrocall\", name:, parameters:, start:, end:}\n*/\nexports.parseMacroInvocation = function(source,pos) {\n\tvar node = {\n\t\ttype: \"macrocall\",\n\t\tstart: pos,\n\t\tparams: []\n\t};\n\t// Define our regexps\n\tvar reMacroName = /([^\\s>\"'=]+)/g;\n\t// Skip whitespace\n\tpos = $tw.utils.skipWhiteSpace(source,pos);\n\t// Look for a double less than sign\n\tvar token = $tw.utils.parseTokenString(source,pos,\"<<\");\n\tif(!token) {\n\t\treturn null;\n\t}\n\tpos = token.end;\n\t// Get the macro name\n\tvar name = $tw.utils.parseTokenRegExp(source,pos,reMacroName);\n\tif(!name) {\n\t\treturn null;\n\t}\n\tnode.name = name.match[1];\n\tpos = name.end;\n\t// Process parameters\n\tvar parameter = $tw.utils.parseMacroParameter(source,pos);\n\twhile(parameter) {\n\t\tnode.params.push(parameter);\n\t\tpos = parameter.end;\n\t\t// Get the next parameter\n\t\tparameter = $tw.utils.parseMacroParameter(source,pos);\n\t}\n\t// Skip whitespace\n\tpos = $tw.utils.skipWhiteSpace(source,pos);\n\t// Look for a double greater than sign\n\ttoken = $tw.utils.parseTokenString(source,pos,\">>\");\n\tif(!token) {\n\t\treturn null;\n\t}\n\tpos = token.end;\n\t// Update the end position\n\tnode.end = pos;\n\treturn node;\n};\n\n/*\nLook for an HTML attribute definition. Returns null if not found, otherwise returns {type: \"attribute\", name:, valueType: \"string|indirect|macro\", value:, start:, end:,}\n*/\nexports.parseAttribute = function(source,pos) {\n\tvar node = {\n\t\tstart: pos\n\t};\n\t// Define our regexps\n\tvar reAttributeName = /([^\\/\\s>\"'=]+)/g,\n\t\treUnquotedAttribute = /([^\\/\\s<>\"'=]+)/g,\n\t\treFilteredValue = /\\{\\{\\{(.+?)\\}\\}\\}/g,\n\t\treIndirectValue = /\\{\\{([^\\}]+)\\}\\}/g;\n\t// Skip whitespace\n\tpos = $tw.utils.skipWhiteSpace(source,pos);\n\t// Get the attribute name\n\tvar name = $tw.utils.parseTokenRegExp(source,pos,reAttributeName);\n\tif(!name) {\n\t\treturn null;\n\t}\n\tnode.name = name.match[1];\n\tpos = name.end;\n\t// Skip whitespace\n\tpos = $tw.utils.skipWhiteSpace(source,pos);\n\t// Look for an equals sign\n\tvar token = $tw.utils.parseTokenString(source,pos,\"=\");\n\tif(token) {\n\t\tpos = token.end;\n\t\t// Skip whitespace\n\t\tpos = $tw.utils.skipWhiteSpace(source,pos);\n\t\t// Look for a string literal\n\t\tvar stringLiteral = $tw.utils.parseStringLiteral(source,pos);\n\t\tif(stringLiteral) {\n\t\t\tpos = stringLiteral.end;\n\t\t\tnode.type = \"string\";\n\t\t\tnode.value = stringLiteral.value;\n\t\t} else {\n\t\t\t// Look for a filtered value\n\t\t\tvar filteredValue = $tw.utils.parseTokenRegExp(source,pos,reFilteredValue);\n\t\t\tif(filteredValue) {\n\t\t\t\tpos = filteredValue.end;\n\t\t\t\tnode.type = \"filtered\";\n\t\t\t\tnode.filter = filteredValue.match[1];\n\t\t\t} else {\n\t\t\t\t// Look for an indirect value\n\t\t\t\tvar indirectValue = $tw.utils.parseTokenRegExp(source,pos,reIndirectValue);\n\t\t\t\tif(indirectValue) {\n\t\t\t\t\tpos = indirectValue.end;\n\t\t\t\t\tnode.type = \"indirect\";\n\t\t\t\t\tnode.textReference = indirectValue.match[1];\n\t\t\t\t} else {\n\t\t\t\t\t// Look for a unquoted value\n\t\t\t\t\tvar unquotedValue = $tw.utils.parseTokenRegExp(source,pos,reUnquotedAttribute);\n\t\t\t\t\tif(unquotedValue) {\n\t\t\t\t\t\tpos = unquotedValue.end;\n\t\t\t\t\t\tnode.type = \"string\";\n\t\t\t\t\t\tnode.value = unquotedValue.match[1];\n\t\t\t\t\t} else {\n\t\t\t\t\t\t// Look for a macro invocation value\n\t\t\t\t\t\tvar macroInvocation = $tw.utils.parseMacroInvocation(source,pos);\n\t\t\t\t\t\tif(macroInvocation) {\n\t\t\t\t\t\t\tpos = macroInvocation.end;\n\t\t\t\t\t\t\tnode.type = \"macro\";\n\t\t\t\t\t\t\tnode.value = macroInvocation;\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tnode.type = \"string\";\n\t\t\t\t\t\t\tnode.value = \"true\";\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t} else {\n\t\tnode.type = \"string\";\n\t\tnode.value = \"true\";\n\t}\n\t// Update the end position\n\tnode.end = pos;\n\treturn node;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "utils"
},
"$:/core/modules/parsers/pdfparser.js": {
"title": "$:/core/modules/parsers/pdfparser.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/pdfparser.js\ntype: application/javascript\nmodule-type: parser\n\nThe PDF parser embeds a PDF viewer\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar ImageParser = function(type,text,options) {\n\tvar element = {\n\t\t\ttype: \"element\",\n\t\t\ttag: \"embed\",\n\t\t\tattributes: {}\n\t\t},\n\t\tsrc;\n\tif(options._canonical_uri) {\n\t\telement.attributes.src = {type: \"string\", value: options._canonical_uri};\n\t} else if(text) {\n\t\telement.attributes.src = {type: \"string\", value: \"data:application/pdf;base64,\" + text};\n\t}\n\tthis.tree = [element];\n};\n\nexports[\"application/pdf\"] = ImageParser;\n\n})();\n\n",
"type": "application/javascript",
"module-type": "parser"
},
"$:/core/modules/parsers/textparser.js": {
"title": "$:/core/modules/parsers/textparser.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/textparser.js\ntype: application/javascript\nmodule-type: parser\n\nThe plain text parser processes blocks of source text into a degenerate parse tree consisting of a single text node\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar TextParser = function(type,text,options) {\n\tthis.tree = [{\n\t\ttype: \"codeblock\",\n\t\tattributes: {\n\t\t\tcode: {type: \"string\", value: text},\n\t\t\tlanguage: {type: \"string\", value: type}\n\t\t}\n\t}];\n};\n\nexports[\"text/plain\"] = TextParser;\nexports[\"text/x-tiddlywiki\"] = TextParser;\nexports[\"application/javascript\"] = TextParser;\nexports[\"application/json\"] = TextParser;\nexports[\"text/css\"] = TextParser;\nexports[\"application/x-tiddler-dictionary\"] = TextParser;\n\n})();\n\n",
"type": "application/javascript",
"module-type": "parser"
},
"$:/core/modules/parsers/videoparser.js": {
"title": "$:/core/modules/parsers/videoparser.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/videoparser.js\ntype: application/javascript\nmodule-type: parser\n\nThe video parser parses a video tiddler into an embeddable HTML element\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar VideoParser = function(type,text,options) {\n\tvar element = {\n\t\t\ttype: \"element\",\n\t\t\ttag: \"video\",\n\t\t\tattributes: {\n\t\t\t\tcontrols: {type: \"string\", value: \"controls\"}\n\t\t\t}\n\t\t},\n\t\tsrc;\n\tif(options._canonical_uri) {\n\t\telement.attributes.src = {type: \"string\", value: options._canonical_uri};\n\t} else if(text) {\n\t\telement.attributes.src = {type: \"string\", value: \"data:\" + type + \";base64,\" + text};\n\t}\n\tthis.tree = [element];\n};\n\nexports[\"video/mp4\"] = VideoParser;\nexports[\"video/quicktime\"] = VideoParser;\n\n})();\n\n",
"type": "application/javascript",
"module-type": "parser"
},
"$:/core/modules/parsers/wikiparser/rules/codeblock.js": {
"title": "$:/core/modules/parsers/wikiparser/rules/codeblock.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/wikiparser/rules/codeblock.js\ntype: application/javascript\nmodule-type: wikirule\n\nWiki text rule for code blocks. For example:\n\n```\n\t```\n\tThis text will not be //wikified//\n\t```\n```\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.name = \"codeblock\";\nexports.types = {block: true};\n\nexports.init = function(parser) {\n\tthis.parser = parser;\n\t// Regexp to match and get language if defined\n\tthis.matchRegExp = /```([\\w-]*)\\r?\\n/mg;\n};\n\nexports.parse = function() {\n\tvar reEnd = /(\\r?\\n```$)/mg;\n\t// Move past the match\n\tthis.parser.pos = this.matchRegExp.lastIndex;\n\n\t// Look for the end of the block\n\treEnd.lastIndex = this.parser.pos;\n\tvar match = reEnd.exec(this.parser.source),\n\t\ttext;\n\t// Process the block\n\tif(match) {\n\t\ttext = this.parser.source.substring(this.parser.pos,match.index);\n\t\tthis.parser.pos = match.index + match[0].length;\n\t} else {\n\t\ttext = this.parser.source.substr(this.parser.pos);\n\t\tthis.parser.pos = this.parser.sourceLength;\n\t}\n\t// Return the $codeblock widget\n\treturn [{\n\t\t\ttype: \"codeblock\",\n\t\t\tattributes: {\n\t\t\t\t\tcode: {type: \"string\", value: text},\n\t\t\t\t\tlanguage: {type: \"string\", value: this.match[1]}\n\t\t\t}\n\t}];\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "wikirule"
},
"$:/core/modules/parsers/wikiparser/rules/codeinline.js": {
"title": "$:/core/modules/parsers/wikiparser/rules/codeinline.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/wikiparser/rules/codeinline.js\ntype: application/javascript\nmodule-type: wikirule\n\nWiki text inline rule for code runs. For example:\n\n```\n\tThis is a `code run`.\n\tThis is another ``code run``\n```\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.name = \"codeinline\";\nexports.types = {inline: true};\n\nexports.init = function(parser) {\n\tthis.parser = parser;\n\t// Regexp to match\n\tthis.matchRegExp = /(``?)/mg;\n};\n\nexports.parse = function() {\n\t// Move past the match\n\tthis.parser.pos = this.matchRegExp.lastIndex;\n\tvar reEnd = new RegExp(this.match[1], \"mg\");\n\t// Look for the end marker\n\treEnd.lastIndex = this.parser.pos;\n\tvar match = reEnd.exec(this.parser.source),\n\t\ttext;\n\t// Process the text\n\tif(match) {\n\t\ttext = this.parser.source.substring(this.parser.pos,match.index);\n\t\tthis.parser.pos = match.index + match[0].length;\n\t} else {\n\t\ttext = this.parser.source.substr(this.parser.pos);\n\t\tthis.parser.pos = this.parser.sourceLength;\n\t}\n\treturn [{\n\t\ttype: \"element\",\n\t\ttag: \"code\",\n\t\tchildren: [{\n\t\t\ttype: \"text\",\n\t\t\ttext: text\n\t\t}]\n\t}];\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "wikirule"
},
"$:/core/modules/parsers/wikiparser/rules/commentblock.js": {
"title": "$:/core/modules/parsers/wikiparser/rules/commentblock.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/wikiparser/rules/commentblock.js\ntype: application/javascript\nmodule-type: wikirule\n\nWiki text block rule for HTML comments. For example:\n\n```\n<!-- This is a comment -->\n```\n\nNote that the syntax for comments is simplified to an opening \"<!--\" sequence and a closing \"-->\" sequence -- HTML itself implements a more complex format (see http://ostermiller.org/findhtmlcomment.html)\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.name = \"commentblock\";\nexports.types = {block: true};\n\nexports.init = function(parser) {\n\tthis.parser = parser;\n\tthis.matchRegExp = /<!--/mg;\n\tthis.endMatchRegExp = /-->/mg;\n};\n\nexports.findNextMatch = function(startPos) {\n\tthis.matchRegExp.lastIndex = startPos;\n\tthis.match = this.matchRegExp.exec(this.parser.source);\n\tif(this.match) {\n\t\tthis.endMatchRegExp.lastIndex = startPos + this.match[0].length;\n\t\tthis.endMatch = this.endMatchRegExp.exec(this.parser.source);\n\t\tif(this.endMatch) {\n\t\t\treturn this.match.index;\n\t\t}\n\t}\n\treturn undefined;\n};\n\nexports.parse = function() {\n\t// Move past the match\n\tthis.parser.pos = this.endMatchRegExp.lastIndex;\n\t// Don't return any elements\n\treturn [];\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "wikirule"
},
"$:/core/modules/parsers/wikiparser/rules/commentinline.js": {
"title": "$:/core/modules/parsers/wikiparser/rules/commentinline.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/wikiparser/rules/commentinline.js\ntype: application/javascript\nmodule-type: wikirule\n\nWiki text inline rule for HTML comments. For example:\n\n```\n<!-- This is a comment -->\n```\n\nNote that the syntax for comments is simplified to an opening \"<!--\" sequence and a closing \"-->\" sequence -- HTML itself implements a more complex format (see http://ostermiller.org/findhtmlcomment.html)\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.name = \"commentinline\";\nexports.types = {inline: true};\n\nexports.init = function(parser) {\n\tthis.parser = parser;\n\tthis.matchRegExp = /<!--/mg;\n\tthis.endMatchRegExp = /-->/mg;\n};\n\nexports.findNextMatch = function(startPos) {\n\tthis.matchRegExp.lastIndex = startPos;\n\tthis.match = this.matchRegExp.exec(this.parser.source);\n\tif(this.match) {\n\t\tthis.endMatchRegExp.lastIndex = startPos + this.match[0].length;\n\t\tthis.endMatch = this.endMatchRegExp.exec(this.parser.source);\n\t\tif(this.endMatch) {\n\t\t\treturn this.match.index;\n\t\t}\n\t}\n\treturn undefined;\n};\n\nexports.parse = function() {\n\t// Move past the match\n\tthis.parser.pos = this.endMatchRegExp.lastIndex;\n\t// Don't return any elements\n\treturn [];\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "wikirule"
},
"$:/core/modules/parsers/wikiparser/rules/dash.js": {
"title": "$:/core/modules/parsers/wikiparser/rules/dash.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/wikiparser/rules/dash.js\ntype: application/javascript\nmodule-type: wikirule\n\nWiki text inline rule for dashes. For example:\n\n```\nThis is an en-dash: --\n\nThis is an em-dash: ---\n```\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.name = \"dash\";\nexports.types = {inline: true};\n\nexports.init = function(parser) {\n\tthis.parser = parser;\n\t// Regexp to match\n\tthis.matchRegExp = /-{2,3}(?!-)/mg;\n};\n\nexports.parse = function() {\n\t// Move past the match\n\tthis.parser.pos = this.matchRegExp.lastIndex;\n\tvar dash = this.match[0].length === 2 ? \"–\" : \"—\";\n\treturn [{\n\t\ttype: \"entity\",\n\t\tentity: dash\n\t}];\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "wikirule"
},
"$:/core/modules/parsers/wikiparser/rules/emphasis/bold.js": {
"title": "$:/core/modules/parsers/wikiparser/rules/emphasis/bold.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/wikiparser/rules/emphasis/bold.js\ntype: application/javascript\nmodule-type: wikirule\n\nWiki text inline rule for emphasis - bold. For example:\n\n```\n\tThis is ''bold'' text\n```\n\nThis wikiparser can be modified using the rules eg:\n\n```\n\\rules except bold \n\\rules only bold \n```\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.name = \"bold\";\nexports.types = {inline: true};\n\nexports.init = function(parser) {\n\tthis.parser = parser;\n\t// Regexp to match\n\tthis.matchRegExp = /''/mg;\n};\n\nexports.parse = function() {\n\t// Move past the match\n\tthis.parser.pos = this.matchRegExp.lastIndex;\n\n\t// Parse the run including the terminator\n\tvar tree = this.parser.parseInlineRun(/''/mg,{eatTerminator: true});\n\n\t// Return the classed span\n\treturn [{\n\t\ttype: \"element\",\n\t\ttag: \"strong\",\n\t\tchildren: tree\n\t}];\n};\n\n})();",
"type": "application/javascript",
"module-type": "wikirule"
},
"$:/core/modules/parsers/wikiparser/rules/emphasis/italic.js": {
"title": "$:/core/modules/parsers/wikiparser/rules/emphasis/italic.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/wikiparser/rules/emphasis/italic.js\ntype: application/javascript\nmodule-type: wikirule\n\nWiki text inline rule for emphasis - italic. For example:\n\n```\n\tThis is //italic// text\n```\n\nThis wikiparser can be modified using the rules eg:\n\n```\n\\rules except italic\n\\rules only italic\n```\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.name = \"italic\";\nexports.types = {inline: true};\n\nexports.init = function(parser) {\n\tthis.parser = parser;\n\t// Regexp to match\n\tthis.matchRegExp = /\\/\\//mg;\n};\n\nexports.parse = function() {\n\t// Move past the match\n\tthis.parser.pos = this.matchRegExp.lastIndex;\n\n\t// Parse the run including the terminator\n\tvar tree = this.parser.parseInlineRun(/\\/\\//mg,{eatTerminator: true});\n\n\t// Return the classed span\n\treturn [{\n\t\ttype: \"element\",\n\t\ttag: \"em\",\n\t\tchildren: tree\n\t}];\n};\n\n})();",
"type": "application/javascript",
"module-type": "wikirule"
},
"$:/core/modules/parsers/wikiparser/rules/emphasis/strikethrough.js": {
"title": "$:/core/modules/parsers/wikiparser/rules/emphasis/strikethrough.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/wikiparser/rules/emphasis/strikethrough.js\ntype: application/javascript\nmodule-type: wikirule\n\nWiki text inline rule for emphasis - strikethrough. For example:\n\n```\n\tThis is ~~strikethrough~~ text\n```\n\nThis wikiparser can be modified using the rules eg:\n\n```\n\\rules except strikethrough \n\\rules only strikethrough \n```\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.name = \"strikethrough\";\nexports.types = {inline: true};\n\nexports.init = function(parser) {\n\tthis.parser = parser;\n\t// Regexp to match\n\tthis.matchRegExp = /~~/mg;\n};\n\nexports.parse = function() {\n\t// Move past the match\n\tthis.parser.pos = this.matchRegExp.lastIndex;\n\n\t// Parse the run including the terminator\n\tvar tree = this.parser.parseInlineRun(/~~/mg,{eatTerminator: true});\n\n\t// Return the classed span\n\treturn [{\n\t\ttype: \"element\",\n\t\ttag: \"strike\",\n\t\tchildren: tree\n\t}];\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "wikirule"
},
"$:/core/modules/parsers/wikiparser/rules/emphasis/subscript.js": {
"title": "$:/core/modules/parsers/wikiparser/rules/emphasis/subscript.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/wikiparser/rules/emphasis/subscript.js\ntype: application/javascript\nmodule-type: wikirule\n\nWiki text inline rule for emphasis - subscript. For example:\n\n```\n\tThis is ,,subscript,, text\n```\n\nThis wikiparser can be modified using the rules eg:\n\n```\n\\rules except subscript \n\\rules only subscript \n```\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.name = \"subscript\";\nexports.types = {inline: true};\n\nexports.init = function(parser) {\n\tthis.parser = parser;\n\t// Regexp to match\n\tthis.matchRegExp = /,,/mg;\n};\n\nexports.parse = function() {\n\t// Move past the match\n\tthis.parser.pos = this.matchRegExp.lastIndex;\n\n\t// Parse the run including the terminator\n\tvar tree = this.parser.parseInlineRun(/,,/mg,{eatTerminator: true});\n\n\t// Return the classed span\n\treturn [{\n\t\ttype: \"element\",\n\t\ttag: \"sub\",\n\t\tchildren: tree\n\t}];\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "wikirule"
},
"$:/core/modules/parsers/wikiparser/rules/emphasis/superscript.js": {
"title": "$:/core/modules/parsers/wikiparser/rules/emphasis/superscript.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/wikiparser/rules/emphasis/superscript.js\ntype: application/javascript\nmodule-type: wikirule\n\nWiki text inline rule for emphasis - superscript. For example:\n\n```\n\tThis is ^^superscript^^ text\n```\n\nThis wikiparser can be modified using the rules eg:\n\n```\n\\rules except superscript \n\\rules only superscript \n```\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.name = \"superscript\";\nexports.types = {inline: true};\n\nexports.init = function(parser) {\n\tthis.parser = parser;\n\t// Regexp to match\n\tthis.matchRegExp = /\\^\\^/mg;\n};\n\nexports.parse = function() {\n\t// Move past the match\n\tthis.parser.pos = this.matchRegExp.lastIndex;\n\n\t// Parse the run including the terminator\n\tvar tree = this.parser.parseInlineRun(/\\^\\^/mg,{eatTerminator: true});\n\n\t// Return the classed span\n\treturn [{\n\t\ttype: \"element\",\n\t\ttag: \"sup\",\n\t\tchildren: tree\n\t}];\n};\n\n})();",
"type": "application/javascript",
"module-type": "wikirule"
},
"$:/core/modules/parsers/wikiparser/rules/emphasis/underscore.js": {
"title": "$:/core/modules/parsers/wikiparser/rules/emphasis/underscore.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/wikiparser/rules/emphasis/underscore.js\ntype: application/javascript\nmodule-type: wikirule\n\nWiki text inline rule for emphasis - underscore. For example:\n\n```\n\tThis is __underscore__ text\n```\n\nThis wikiparser can be modified using the rules eg:\n\n```\n\\rules except underscore \n\\rules only underscore\n```\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.name = \"underscore\";\nexports.types = {inline: true};\n\nexports.init = function(parser) {\n\tthis.parser = parser;\n\t// Regexp to match\n\tthis.matchRegExp = /__/mg;\n};\n\nexports.parse = function() {\n\t// Move past the match\n\tthis.parser.pos = this.matchRegExp.lastIndex;\n\n\t// Parse the run including the terminator\n\tvar tree = this.parser.parseInlineRun(/__/mg,{eatTerminator: true});\n\n\t// Return the classed span\n\treturn [{\n\t\ttype: \"element\",\n\t\ttag: \"u\",\n\t\tchildren: tree\n\t}];\n};\n\n})();",
"type": "application/javascript",
"module-type": "wikirule"
},
"$:/core/modules/parsers/wikiparser/rules/entity.js": {
"title": "$:/core/modules/parsers/wikiparser/rules/entity.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/wikiparser/rules/entity.js\ntype: application/javascript\nmodule-type: wikirule\n\nWiki text inline rule for HTML entities. For example:\n\n```\n\tThis is a copyright symbol: ©\n```\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.name = \"entity\";\nexports.types = {inline: true};\n\nexports.init = function(parser) {\n\tthis.parser = parser;\n\t// Regexp to match\n\tthis.matchRegExp = /(&#?[a-zA-Z0-9]{2,8};)/mg;\n};\n\n/*\nParse the most recent match\n*/\nexports.parse = function() {\n\t// Get all the details of the match\n\tvar entityString = this.match[1];\n\t// Move past the macro call\n\tthis.parser.pos = this.matchRegExp.lastIndex;\n\t// Return the entity\n\treturn [{type: \"entity\", entity: this.match[0]}];\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "wikirule"
},
"$:/core/modules/parsers/wikiparser/rules/extlink.js": {
"title": "$:/core/modules/parsers/wikiparser/rules/extlink.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/wikiparser/rules/extlink.js\ntype: application/javascript\nmodule-type: wikirule\n\nWiki text inline rule for external links. For example:\n\n```\nAn external link: https://www.tiddlywiki.com/\n\nA suppressed external link: ~http://www.tiddlyspace.com/\n```\n\nExternal links can be suppressed by preceding them with `~`.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.name = \"extlink\";\nexports.types = {inline: true};\n\nexports.init = function(parser) {\n\tthis.parser = parser;\n\t// Regexp to match\n\tthis.matchRegExp = /~?(?:file|http|https|mailto|ftp|irc|news|data|skype):[^\\s<>{}\\[\\]`|\"\\\\^]+(?:\\/|\\b)/mg;\n};\n\nexports.parse = function() {\n\t// Move past the match\n\tthis.parser.pos = this.matchRegExp.lastIndex;\n\t// Create the link unless it is suppressed\n\tif(this.match[0].substr(0,1) === \"~\") {\n\t\treturn [{type: \"text\", text: this.match[0].substr(1)}];\n\t} else {\n\t\treturn [{\n\t\t\ttype: \"element\",\n\t\t\ttag: \"a\",\n\t\t\tattributes: {\n\t\t\t\thref: {type: \"string\", value: this.match[0]},\n\t\t\t\t\"class\": {type: \"string\", value: \"tc-tiddlylink-external\"},\n\t\t\t\ttarget: {type: \"string\", value: \"_blank\"},\n\t\t\t\trel: {type: \"string\", value: \"noopener noreferrer\"}\n\t\t\t},\n\t\t\tchildren: [{\n\t\t\t\ttype: \"text\", text: this.match[0]\n\t\t\t}]\n\t\t}];\n\t}\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "wikirule"
},
"$:/core/modules/parsers/wikiparser/rules/filteredtranscludeblock.js": {
"title": "$:/core/modules/parsers/wikiparser/rules/filteredtranscludeblock.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/wikiparser/rules/filteredtranscludeblock.js\ntype: application/javascript\nmodule-type: wikirule\n\nWiki text rule for block-level filtered transclusion. For example:\n\n```\n{{{ [tag[docs]] }}}\n{{{ [tag[docs]] |tooltip}}}\n{{{ [tag[docs]] ||TemplateTitle}}}\n{{{ [tag[docs]] |tooltip||TemplateTitle}}}\n{{{ [tag[docs]] }}width:40;height:50;}.class.class\n```\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.name = \"filteredtranscludeblock\";\nexports.types = {block: true};\n\nexports.init = function(parser) {\n\tthis.parser = parser;\n\t// Regexp to match\n\tthis.matchRegExp = /\\{\\{\\{([^\\|]+?)(?:\\|([^\\|\\{\\}]+))?(?:\\|\\|([^\\|\\{\\}]+))?\\}\\}([^\\}]*)\\}(?:\\.(\\S+))?(?:\\r?\\n|$)/mg;\n};\n\nexports.parse = function() {\n\t// Move past the match\n\tthis.parser.pos = this.matchRegExp.lastIndex;\n\t// Get the match details\n\tvar filter = this.match[1],\n\t\ttooltip = this.match[2],\n\t\ttemplate = $tw.utils.trim(this.match[3]),\n\t\tstyle = this.match[4],\n\t\tclasses = this.match[5];\n\t// Return the list widget\n\tvar node = {\n\t\ttype: \"list\",\n\t\tattributes: {\n\t\t\tfilter: {type: \"string\", value: filter}\n\t\t},\n\t\tisBlock: true\n\t};\n\tif(tooltip) {\n\t\tnode.attributes.tooltip = {type: \"string\", value: tooltip};\n\t}\n\tif(template) {\n\t\tnode.attributes.template = {type: \"string\", value: template};\n\t}\n\tif(style) {\n\t\tnode.attributes.style = {type: \"string\", value: style};\n\t}\n\tif(classes) {\n\t\tnode.attributes.itemClass = {type: \"string\", value: classes.split(\".\").join(\" \")};\n\t}\n\treturn [node];\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "wikirule"
},
"$:/core/modules/parsers/wikiparser/rules/filteredtranscludeinline.js": {
"title": "$:/core/modules/parsers/wikiparser/rules/filteredtranscludeinline.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/wikiparser/rules/filteredtranscludeinline.js\ntype: application/javascript\nmodule-type: wikirule\n\nWiki text rule for inline filtered transclusion. For example:\n\n```\n{{{ [tag[docs]] }}}\n{{{ [tag[docs]] |tooltip}}}\n{{{ [tag[docs]] ||TemplateTitle}}}\n{{{ [tag[docs]] |tooltip||TemplateTitle}}}\n{{{ [tag[docs]] }}width:40;height:50;}.class.class\n```\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.name = \"filteredtranscludeinline\";\nexports.types = {inline: true};\n\nexports.init = function(parser) {\n\tthis.parser = parser;\n\t// Regexp to match\n\tthis.matchRegExp = /\\{\\{\\{([^\\|]+?)(?:\\|([^\\|\\{\\}]+))?(?:\\|\\|([^\\|\\{\\}]+))?\\}\\}([^\\}]*)\\}(?:\\.(\\S+))?/mg;\n};\n\nexports.parse = function() {\n\t// Move past the match\n\tthis.parser.pos = this.matchRegExp.lastIndex;\n\t// Get the match details\n\tvar filter = this.match[1],\n\t\ttooltip = this.match[2],\n\t\ttemplate = $tw.utils.trim(this.match[3]),\n\t\tstyle = this.match[4],\n\t\tclasses = this.match[5];\n\t// Return the list widget\n\tvar node = {\n\t\ttype: \"list\",\n\t\tattributes: {\n\t\t\tfilter: {type: \"string\", value: filter}\n\t\t}\n\t};\n\tif(tooltip) {\n\t\tnode.attributes.tooltip = {type: \"string\", value: tooltip};\n\t}\n\tif(template) {\n\t\tnode.attributes.template = {type: \"string\", value: template};\n\t}\n\tif(style) {\n\t\tnode.attributes.style = {type: \"string\", value: style};\n\t}\n\tif(classes) {\n\t\tnode.attributes.itemClass = {type: \"string\", value: classes.split(\".\").join(\" \")};\n\t}\n\treturn [node];\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "wikirule"
},
"$:/core/modules/parsers/wikiparser/rules/hardlinebreaks.js": {
"title": "$:/core/modules/parsers/wikiparser/rules/hardlinebreaks.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/wikiparser/rules/hardlinebreaks.js\ntype: application/javascript\nmodule-type: wikirule\n\nWiki text inline rule for marking areas with hard line breaks. For example:\n\n```\n\"\"\"\nThis is some text\nThat is set like\nIt is a Poem\nWhen it is\nClearly\nNot\n\"\"\"\n```\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.name = \"hardlinebreaks\";\nexports.types = {inline: true};\n\nexports.init = function(parser) {\n\tthis.parser = parser;\n\t// Regexp to match\n\tthis.matchRegExp = /\"\"\"(?:\\r?\\n)?/mg;\n};\n\nexports.parse = function() {\n\tvar reEnd = /(\"\"\")|(\\r?\\n)/mg,\n\t\ttree = [],\n\t\tmatch;\n\t// Move past the match\n\tthis.parser.pos = this.matchRegExp.lastIndex;\n\tdo {\n\t\t// Parse the run up to the terminator\n\t\ttree.push.apply(tree,this.parser.parseInlineRun(reEnd,{eatTerminator: false}));\n\t\t// Redo the terminator match\n\t\treEnd.lastIndex = this.parser.pos;\n\t\tmatch = reEnd.exec(this.parser.source);\n\t\tif(match) {\n\t\t\tthis.parser.pos = reEnd.lastIndex;\n\t\t\t// Add a line break if the terminator was a line break\n\t\t\tif(match[2]) {\n\t\t\t\ttree.push({type: \"element\", tag: \"br\"});\n\t\t\t}\n\t\t}\n\t} while(match && !match[1]);\n\t// Return the nodes\n\treturn tree;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "wikirule"
},
"$:/core/modules/parsers/wikiparser/rules/heading.js": {
"title": "$:/core/modules/parsers/wikiparser/rules/heading.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/wikiparser/rules/heading.js\ntype: application/javascript\nmodule-type: wikirule\n\nWiki text block rule for headings\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.name = \"heading\";\nexports.types = {block: true};\n\nexports.init = function(parser) {\n\tthis.parser = parser;\n\t// Regexp to match\n\tthis.matchRegExp = /(!{1,6})/mg;\n};\n\n/*\nParse the most recent match\n*/\nexports.parse = function() {\n\t// Get all the details of the match\n\tvar headingLevel = this.match[1].length;\n\t// Move past the !s\n\tthis.parser.pos = this.matchRegExp.lastIndex;\n\t// Parse any classes, whitespace and then the heading itself\n\tvar classes = this.parser.parseClasses();\n\tthis.parser.skipWhitespace({treatNewlinesAsNonWhitespace: true});\n\tvar tree = this.parser.parseInlineRun(/(\\r?\\n)/mg);\n\t// Return the heading\n\treturn [{\n\t\ttype: \"element\",\n\t\ttag: \"h\" + headingLevel, \n\t\tattributes: {\n\t\t\t\"class\": {type: \"string\", value: classes.join(\" \")}\n\t\t},\n\t\tchildren: tree\n\t}];\n};\n})();\n",
"type": "application/javascript",
"module-type": "wikirule"
},
"$:/core/modules/parsers/wikiparser/rules/horizrule.js": {
"title": "$:/core/modules/parsers/wikiparser/rules/horizrule.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/wikiparser/rules/horizrule.js\ntype: application/javascript\nmodule-type: wikirule\n\nWiki text block rule for rules. For example:\n\n```\n---\n```\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.name = \"horizrule\";\nexports.types = {block: true};\n\nexports.init = function(parser) {\n\tthis.parser = parser;\n\t// Regexp to match\n\tthis.matchRegExp = /-{3,}\\r?(?:\\n|$)/mg;\n};\n\nexports.parse = function() {\n\t// Move past the match\n\tthis.parser.pos = this.matchRegExp.lastIndex;\n\treturn [{type: \"element\", tag: \"hr\"}];\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "wikirule"
},
"$:/core/modules/parsers/wikiparser/rules/html.js": {
"title": "$:/core/modules/parsers/wikiparser/rules/html.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/wikiparser/rules/html.js\ntype: application/javascript\nmodule-type: wikirule\n\nWiki rule for HTML elements and widgets. For example:\n\n{{{\n<aside>\nThis is an HTML5 aside element\n</aside>\n\n<$slider target=\"MyTiddler\">\nThis is a widget invocation\n</$slider>\n\n}}}\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.name = \"html\";\nexports.types = {inline: true, block: true};\n\nexports.init = function(parser) {\n\tthis.parser = parser;\n};\n\nexports.findNextMatch = function(startPos) {\n\t// Find the next tag\n\tthis.nextTag = this.findNextTag(this.parser.source,startPos,{\n\t\trequireLineBreak: this.is.block\n\t});\n\treturn this.nextTag ? this.nextTag.start : undefined;\n};\n\n/*\nParse the most recent match\n*/\nexports.parse = function() {\n\t// Retrieve the most recent match so that recursive calls don't overwrite it\n\tvar tag = this.nextTag;\n\tthis.nextTag = null;\n\t// Advance the parser position to past the tag\n\tthis.parser.pos = tag.end;\n\t// Check for an immediately following double linebreak\n\tvar hasLineBreak = !tag.isSelfClosing && !!$tw.utils.parseTokenRegExp(this.parser.source,this.parser.pos,/([^\\S\\n\\r]*\\r?\\n(?:[^\\S\\n\\r]*\\r?\\n|$))/g);\n\t// Set whether we're in block mode\n\ttag.isBlock = this.is.block || hasLineBreak;\n\t// Parse the body if we need to\n\tif(!tag.isSelfClosing && $tw.config.htmlVoidElements.indexOf(tag.tag) === -1) {\n\t\t\tvar reEndString = \"</\" + $tw.utils.escapeRegExp(tag.tag) + \">\",\n\t\t\t\treEnd = new RegExp(\"(\" + reEndString + \")\",\"mg\");\n\t\tif(hasLineBreak) {\n\t\t\ttag.children = this.parser.parseBlocks(reEndString);\n\t\t} else {\n\t\t\ttag.children = this.parser.parseInlineRun(reEnd);\n\t\t}\n\t\treEnd.lastIndex = this.parser.pos;\n\t\tvar endMatch = reEnd.exec(this.parser.source);\n\t\tif(endMatch && endMatch.index === this.parser.pos) {\n\t\t\tthis.parser.pos = endMatch.index + endMatch[0].length;\n\t\t}\n\t}\n\t// Return the tag\n\treturn [tag];\n};\n\n/*\nLook for an HTML tag. Returns null if not found, otherwise returns {type: \"element\", name:, attributes: [], isSelfClosing:, start:, end:,}\n*/\nexports.parseTag = function(source,pos,options) {\n\toptions = options || {};\n\tvar token,\n\t\tnode = {\n\t\t\ttype: \"element\",\n\t\t\tstart: pos,\n\t\t\tattributes: {}\n\t\t};\n\t// Define our regexps\n\tvar reTagName = /([a-zA-Z0-9\\-\\$]+)/g;\n\t// Skip whitespace\n\tpos = $tw.utils.skipWhiteSpace(source,pos);\n\t// Look for a less than sign\n\ttoken = $tw.utils.parseTokenString(source,pos,\"<\");\n\tif(!token) {\n\t\treturn null;\n\t}\n\tpos = token.end;\n\t// Get the tag name\n\ttoken = $tw.utils.parseTokenRegExp(source,pos,reTagName);\n\tif(!token) {\n\t\treturn null;\n\t}\n\tnode.tag = token.match[1];\n\tif(node.tag.slice(1).indexOf(\"$\") !== -1) {\n\t\treturn null;\n\t}\n\tif(node.tag.charAt(0) === \"$\") {\n\t\tnode.type = node.tag.substr(1);\n\t}\n\tpos = token.end;\n\t// Check that the tag is terminated by a space, / or >\n\tif(!$tw.utils.parseWhiteSpace(source,pos) && !(source.charAt(pos) === \"/\") && !(source.charAt(pos) === \">\") ) {\n\t\treturn null;\n\t}\n\t// Process attributes\n\tvar attribute = $tw.utils.parseAttribute(source,pos);\n\twhile(attribute) {\n\t\tnode.attributes[attribute.name] = attribute;\n\t\tpos = attribute.end;\n\t\t// Get the next attribute\n\t\tattribute = $tw.utils.parseAttribute(source,pos);\n\t}\n\t// Skip whitespace\n\tpos = $tw.utils.skipWhiteSpace(source,pos);\n\t// Look for a closing slash\n\ttoken = $tw.utils.parseTokenString(source,pos,\"/\");\n\tif(token) {\n\t\tpos = token.end;\n\t\tnode.isSelfClosing = true;\n\t}\n\t// Look for a greater than sign\n\ttoken = $tw.utils.parseTokenString(source,pos,\">\");\n\tif(!token) {\n\t\treturn null;\n\t}\n\tpos = token.end;\n\t// Check for a required line break\n\tif(options.requireLineBreak) {\n\t\ttoken = $tw.utils.parseTokenRegExp(source,pos,/([^\\S\\n\\r]*\\r?\\n(?:[^\\S\\n\\r]*\\r?\\n|$))/g);\n\t\tif(!token) {\n\t\t\treturn null;\n\t\t}\n\t}\n\t// Update the end position\n\tnode.end = pos;\n\treturn node;\n};\n\nexports.findNextTag = function(source,pos,options) {\n\t// A regexp for finding candidate HTML tags\n\tvar reLookahead = /<([a-zA-Z\\-\\$]+)/g;\n\t// Find the next candidate\n\treLookahead.lastIndex = pos;\n\tvar match = reLookahead.exec(source);\n\twhile(match) {\n\t\t// Try to parse the candidate as a tag\n\t\tvar tag = this.parseTag(source,match.index,options);\n\t\t// Return success\n\t\tif(tag && this.isLegalTag(tag)) {\n\t\t\treturn tag;\n\t\t}\n\t\t// Look for the next match\n\t\treLookahead.lastIndex = match.index + 1;\n\t\tmatch = reLookahead.exec(source);\n\t}\n\t// Failed\n\treturn null;\n};\n\nexports.isLegalTag = function(tag) {\n\t// Widgets are always OK\n\tif(tag.type !== \"element\") {\n\t\treturn true;\n\t// If it's an HTML tag that starts with a dash then it's not legal\n\t} else if(tag.tag.charAt(0) === \"-\") {\n\t\treturn false;\n\t} else {\n\t\t// Otherwise it's OK\n\t\treturn true;\n\t}\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "wikirule"
},
"$:/core/modules/parsers/wikiparser/rules/image.js": {
"title": "$:/core/modules/parsers/wikiparser/rules/image.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/wikiparser/rules/image.js\ntype: application/javascript\nmodule-type: wikirule\n\nWiki text inline rule for embedding images. For example:\n\n```\n[img[https://tiddlywiki.com/fractalveg.jpg]]\n[img width=23 height=24 [https://tiddlywiki.com/fractalveg.jpg]]\n[img width={{!!width}} height={{!!height}} [https://tiddlywiki.com/fractalveg.jpg]]\n[img[Description of image|https://tiddlywiki.com/fractalveg.jpg]]\n[img[TiddlerTitle]]\n[img[Description of image|TiddlerTitle]]\n```\n\nGenerates the `<$image>` widget.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.name = \"image\";\nexports.types = {inline: true};\n\nexports.init = function(parser) {\n\tthis.parser = parser;\n};\n\nexports.findNextMatch = function(startPos) {\n\t// Find the next tag\n\tthis.nextImage = this.findNextImage(this.parser.source,startPos);\n\treturn this.nextImage ? this.nextImage.start : undefined;\n};\n\nexports.parse = function() {\n\t// Move past the match\n\tthis.parser.pos = this.nextImage.end;\n\tvar node = {\n\t\ttype: \"image\",\n\t\tattributes: this.nextImage.attributes\n\t};\n\treturn [node];\n};\n\n/*\nFind the next image from the current position\n*/\nexports.findNextImage = function(source,pos) {\n\t// A regexp for finding candidate HTML tags\n\tvar reLookahead = /(\\[img)/g;\n\t// Find the next candidate\n\treLookahead.lastIndex = pos;\n\tvar match = reLookahead.exec(source);\n\twhile(match) {\n\t\t// Try to parse the candidate as a tag\n\t\tvar tag = this.parseImage(source,match.index);\n\t\t// Return success\n\t\tif(tag) {\n\t\t\treturn tag;\n\t\t}\n\t\t// Look for the next match\n\t\treLookahead.lastIndex = match.index + 1;\n\t\tmatch = reLookahead.exec(source);\n\t}\n\t// Failed\n\treturn null;\n};\n\n/*\nLook for an image at the specified position. Returns null if not found, otherwise returns {type: \"image\", attributes: [], isSelfClosing:, start:, end:,}\n*/\nexports.parseImage = function(source,pos) {\n\tvar token,\n\t\tnode = {\n\t\t\ttype: \"image\",\n\t\t\tstart: pos,\n\t\t\tattributes: {}\n\t\t};\n\t// Skip whitespace\n\tpos = $tw.utils.skipWhiteSpace(source,pos);\n\t// Look for the `[img`\n\ttoken = $tw.utils.parseTokenString(source,pos,\"[img\");\n\tif(!token) {\n\t\treturn null;\n\t}\n\tpos = token.end;\n\t// Skip whitespace\n\tpos = $tw.utils.skipWhiteSpace(source,pos);\n\t// Process attributes\n\tif(source.charAt(pos) !== \"[\") {\n\t\tvar attribute = $tw.utils.parseAttribute(source,pos);\n\t\twhile(attribute) {\n\t\t\tnode.attributes[attribute.name] = attribute;\n\t\t\tpos = attribute.end;\n\t\t\tpos = $tw.utils.skipWhiteSpace(source,pos);\n\t\t\tif(source.charAt(pos) !== \"[\") {\n\t\t\t\t// Get the next attribute\n\t\t\t\tattribute = $tw.utils.parseAttribute(source,pos);\n\t\t\t} else {\n\t\t\t\tattribute = null;\n\t\t\t}\n\t\t}\n\t}\n\t// Skip whitespace\n\tpos = $tw.utils.skipWhiteSpace(source,pos);\n\t// Look for the `[` after the attributes\n\ttoken = $tw.utils.parseTokenString(source,pos,\"[\");\n\tif(!token) {\n\t\treturn null;\n\t}\n\tpos = token.end;\n\t// Skip whitespace\n\tpos = $tw.utils.skipWhiteSpace(source,pos);\n\t// Get the source up to the terminating `]]`\n\ttoken = $tw.utils.parseTokenRegExp(source,pos,/(?:([^|\\]]*?)\\|)?([^\\]]+?)\\]\\]/g);\n\tif(!token) {\n\t\treturn null;\n\t}\n\tpos = token.end;\n\tif(token.match[1]) {\n\t\tnode.attributes.tooltip = {type: \"string\", value: token.match[1].trim()};\n\t}\n\tnode.attributes.source = {type: \"string\", value: (token.match[2] || \"\").trim()};\n\t// Update the end position\n\tnode.end = pos;\n\treturn node;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "wikirule"
},
"$:/core/modules/parsers/wikiparser/rules/import.js": {
"title": "$:/core/modules/parsers/wikiparser/rules/import.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/wikiparser/rules/import.js\ntype: application/javascript\nmodule-type: wikirule\n\nWiki pragma rule for importing variable definitions\n\n```\n\\import [[$:/core/ui/PageMacros]] [all[shadows+tiddlers]tag[$:/tags/Macro]!has[draft.of]]\n```\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.name = \"import\";\nexports.types = {pragma: true};\n\n/*\nInstantiate parse rule\n*/\nexports.init = function(parser) {\n\tthis.parser = parser;\n\t// Regexp to match\n\tthis.matchRegExp = /^\\\\import[^\\S\\n]/mg;\n};\n\n/*\nParse the most recent match\n*/\nexports.parse = function() {\n\tvar self = this;\n\t// Move past the pragma invocation\n\tthis.parser.pos = this.matchRegExp.lastIndex;\n\t// Parse the filter terminated by a line break\n\tvar reMatch = /(.*)(\\r?\\n)|$/mg;\n\treMatch.lastIndex = this.parser.pos;\n\tvar match = reMatch.exec(this.parser.source);\n\tthis.parser.pos = reMatch.lastIndex;\n\t// Parse tree nodes to return\n\treturn [{\n\t\ttype: \"importvariables\",\n\t\tattributes: {\n\t\t\tfilter: {type: \"string\", value: match[1]}\n\t\t},\n\t\tchildren: []\n\t}];\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "wikirule"
},
"$:/core/modules/parsers/wikiparser/rules/list.js": {
"title": "$:/core/modules/parsers/wikiparser/rules/list.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/wikiparser/rules/list.js\ntype: application/javascript\nmodule-type: wikirule\n\nWiki text block rule for lists. For example:\n\n```\n* This is an unordered list\n* It has two items\n\n# This is a numbered list\n## With a subitem\n# And a third item\n\n; This is a term that is being defined\n: This is the definition of that term\n```\n\nNote that lists can be nested arbitrarily:\n\n```\n#** One\n#* Two\n#** Three\n#**** Four\n#**# Five\n#**## Six\n## Seven\n### Eight\n## Nine\n```\n\nA CSS class can be applied to a list item as follows:\n\n```\n* List item one\n*.active List item two has the class `active`\n* List item three\n```\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.name = \"list\";\nexports.types = {block: true};\n\nexports.init = function(parser) {\n\tthis.parser = parser;\n\t// Regexp to match\n\tthis.matchRegExp = /([\\*#;:>]+)/mg;\n};\n\nvar listTypes = {\n\t\"*\": {listTag: \"ul\", itemTag: \"li\"},\n\t\"#\": {listTag: \"ol\", itemTag: \"li\"},\n\t\";\": {listTag: \"dl\", itemTag: \"dt\"},\n\t\":\": {listTag: \"dl\", itemTag: \"dd\"},\n\t\">\": {listTag: \"blockquote\", itemTag: \"p\"}\n};\n\n/*\nParse the most recent match\n*/\nexports.parse = function() {\n\t// Array of parse tree nodes for the previous row of the list\n\tvar listStack = [];\n\t// Cycle through the items in the list\n\twhile(true) {\n\t\t// Match the list marker\n\t\tvar reMatch = /([\\*#;:>]+)/mg;\n\t\treMatch.lastIndex = this.parser.pos;\n\t\tvar match = reMatch.exec(this.parser.source);\n\t\tif(!match || match.index !== this.parser.pos) {\n\t\t\tbreak;\n\t\t}\n\t\t// Check whether the list type of the top level matches\n\t\tvar listInfo = listTypes[match[0].charAt(0)];\n\t\tif(listStack.length > 0 && listStack[0].tag !== listInfo.listTag) {\n\t\t\tbreak;\n\t\t}\n\t\t// Move past the list marker\n\t\tthis.parser.pos = match.index + match[0].length;\n\t\t// Walk through the list markers for the current row\n\t\tfor(var t=0; t<match[0].length; t++) {\n\t\t\tlistInfo = listTypes[match[0].charAt(t)];\n\t\t\t// Remove any stacked up element if we can't re-use it because the list type doesn't match\n\t\t\tif(listStack.length > t && listStack[t].tag !== listInfo.listTag) {\n\t\t\t\tlistStack.splice(t,listStack.length - t);\n\t\t\t}\n\t\t\t// Construct the list element or reuse the previous one at this level\n\t\t\tif(listStack.length <= t) {\n\t\t\t\tvar listElement = {type: \"element\", tag: listInfo.listTag, children: [\n\t\t\t\t\t{type: \"element\", tag: listInfo.itemTag, children: []}\n\t\t\t\t]};\n\t\t\t\t// Link this list element into the last child item of the parent list item\n\t\t\t\tif(t) {\n\t\t\t\t\tvar prevListItem = listStack[t-1].children[listStack[t-1].children.length-1];\n\t\t\t\t\tprevListItem.children.push(listElement);\n\t\t\t\t}\n\t\t\t\t// Save this element in the stack\n\t\t\t\tlistStack[t] = listElement;\n\t\t\t} else if(t === (match[0].length - 1)) {\n\t\t\t\tlistStack[t].children.push({type: \"element\", tag: listInfo.itemTag, children: []});\n\t\t\t}\n\t\t}\n\t\tif(listStack.length > match[0].length) {\n\t\t\tlistStack.splice(match[0].length,listStack.length - match[0].length);\n\t\t}\n\t\t// Process the body of the list item into the last list item\n\t\tvar lastListChildren = listStack[listStack.length-1].children,\n\t\t\tlastListItem = lastListChildren[lastListChildren.length-1],\n\t\t\tclasses = this.parser.parseClasses();\n\t\tthis.parser.skipWhitespace({treatNewlinesAsNonWhitespace: true});\n\t\tvar tree = this.parser.parseInlineRun(/(\\r?\\n)/mg);\n\t\tlastListItem.children.push.apply(lastListItem.children,tree);\n\t\tif(classes.length > 0) {\n\t\t\t$tw.utils.addClassToParseTreeNode(lastListItem,classes.join(\" \"));\n\t\t}\n\t\t// Consume any whitespace following the list item\n\t\tthis.parser.skipWhitespace();\n\t}\n\t// Return the root element of the list\n\treturn [listStack[0]];\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "wikirule"
},
"$:/core/modules/parsers/wikiparser/rules/macrocallblock.js": {
"title": "$:/core/modules/parsers/wikiparser/rules/macrocallblock.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/wikiparser/rules/macrocallblock.js\ntype: application/javascript\nmodule-type: wikirule\n\nWiki rule for block macro calls\n\n```\n<<name value value2>>\n```\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.name = \"macrocallblock\";\nexports.types = {block: true};\n\nexports.init = function(parser) {\n\tthis.parser = parser;\n\t// Regexp to match\n\tthis.matchRegExp = /<<([^>\\s]+)(?:\\s*)((?:[^>]|(?:>(?!>)))*?)>>(?:\\r?\\n|$)/mg;\n};\n\n/*\nParse the most recent match\n*/\nexports.parse = function() {\n\t// Get all the details of the match\n\tvar macroName = this.match[1],\n\t\tparamString = this.match[2];\n\t// Move past the macro call\n\tthis.parser.pos = this.matchRegExp.lastIndex;\n\tvar params = [],\n\t\treParam = /\\s*(?:([A-Za-z0-9\\-_]+)\\s*:)?(?:\\s*(?:\"\"\"([\\s\\S]*?)\"\"\"|\"([^\"]*)\"|'([^']*)'|\\[\\[([^\\]]*)\\]\\]|([^\"'\\s]+)))/mg,\n\t\tparamMatch = reParam.exec(paramString);\n\twhile(paramMatch) {\n\t\t// Process this parameter\n\t\tvar paramInfo = {\n\t\t\tvalue: paramMatch[2] || paramMatch[3] || paramMatch[4] || paramMatch[5] || paramMatch[6]\n\t\t};\n\t\tif(paramMatch[1]) {\n\t\t\tparamInfo.name = paramMatch[1];\n\t\t}\n\t\tparams.push(paramInfo);\n\t\t// Find the next match\n\t\tparamMatch = reParam.exec(paramString);\n\t}\n\treturn [{\n\t\ttype: \"macrocall\",\n\t\tname: macroName,\n\t\tparams: params,\n\t\tisBlock: true\n\t}];\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "wikirule"
},
"$:/core/modules/parsers/wikiparser/rules/macrocallinline.js": {
"title": "$:/core/modules/parsers/wikiparser/rules/macrocallinline.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/wikiparser/rules/macrocallinline.js\ntype: application/javascript\nmodule-type: wikirule\n\nWiki rule for macro calls\n\n```\n<<name value value2>>\n```\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.name = \"macrocallinline\";\nexports.types = {inline: true};\n\nexports.init = function(parser) {\n\tthis.parser = parser;\n\t// Regexp to match\n\tthis.matchRegExp = /<<([^\\s>]+)\\s*([\\s\\S]*?)>>/mg;\n};\n\n/*\nParse the most recent match\n*/\nexports.parse = function() {\n\t// Get all the details of the match\n\tvar macroName = this.match[1],\n\t\tparamString = this.match[2];\n\t// Move past the macro call\n\tthis.parser.pos = this.matchRegExp.lastIndex;\n\tvar params = [],\n\t\treParam = /\\s*(?:([A-Za-z0-9\\-_]+)\\s*:)?(?:\\s*(?:\"\"\"([\\s\\S]*?)\"\"\"|\"([^\"]*)\"|'([^']*)'|\\[\\[([^\\]]*)\\]\\]|([^\"'\\s]+)))/mg,\n\t\tparamMatch = reParam.exec(paramString);\n\twhile(paramMatch) {\n\t\t// Process this parameter\n\t\tvar paramInfo = {\n\t\t\tvalue: paramMatch[2] || paramMatch[3] || paramMatch[4] || paramMatch[5]|| paramMatch[6]\n\t\t};\n\t\tif(paramMatch[1]) {\n\t\t\tparamInfo.name = paramMatch[1];\n\t\t}\n\t\tparams.push(paramInfo);\n\t\t// Find the next match\n\t\tparamMatch = reParam.exec(paramString);\n\t}\n\treturn [{\n\t\ttype: \"macrocall\",\n\t\tname: macroName,\n\t\tparams: params\n\t}];\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "wikirule"
},
"$:/core/modules/parsers/wikiparser/rules/macrodef.js": {
"title": "$:/core/modules/parsers/wikiparser/rules/macrodef.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/wikiparser/rules/macrodef.js\ntype: application/javascript\nmodule-type: wikirule\n\nWiki pragma rule for macro definitions\n\n```\n\\define name(param:defaultvalue,param2:defaultvalue)\ndefinition text, including $param$ markers\n\\end\n```\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.name = \"macrodef\";\nexports.types = {pragma: true};\n\n/*\nInstantiate parse rule\n*/\nexports.init = function(parser) {\n\tthis.parser = parser;\n\t// Regexp to match\n\tthis.matchRegExp = /^\\\\define\\s+([^(\\s]+)\\(\\s*([^)]*)\\)(\\s*\\r?\\n)?/mg;\n};\n\n/*\nParse the most recent match\n*/\nexports.parse = function() {\n\t// Move past the macro name and parameters\n\tthis.parser.pos = this.matchRegExp.lastIndex;\n\t// Parse the parameters\n\tvar paramString = this.match[2],\n\t\tparams = [];\n\tif(paramString !== \"\") {\n\t\tvar reParam = /\\s*([A-Za-z0-9\\-_]+)(?:\\s*:\\s*(?:\"\"\"([\\s\\S]*?)\"\"\"|\"([^\"]*)\"|'([^']*)'|\\[\\[([^\\]]*)\\]\\]|([^\"'\\s]+)))?/mg,\n\t\t\tparamMatch = reParam.exec(paramString);\n\t\twhile(paramMatch) {\n\t\t\t// Save the parameter details\n\t\t\tvar paramInfo = {name: paramMatch[1]},\n\t\t\t\tdefaultValue = paramMatch[2] || paramMatch[3] || paramMatch[4] || paramMatch[5] || paramMatch[6];\n\t\t\tif(defaultValue) {\n\t\t\t\tparamInfo[\"default\"] = defaultValue;\n\t\t\t}\n\t\t\tparams.push(paramInfo);\n\t\t\t// Look for the next parameter\n\t\t\tparamMatch = reParam.exec(paramString);\n\t\t}\n\t}\n\t// Is this a multiline definition?\n\tvar reEnd;\n\tif(this.match[3]) {\n\t\t// If so, the end of the body is marked with \\end\n\t\treEnd = /(\\r?\\n\\\\end[^\\S\\n\\r]*(?:$|\\r?\\n))/mg;\n\t} else {\n\t\t// Otherwise, the end of the definition is marked by the end of the line\n\t\treEnd = /($|\\r?\\n)/mg;\n\t\t// Move past any whitespace\n\t\tthis.parser.pos = $tw.utils.skipWhiteSpace(this.parser.source,this.parser.pos);\n\t}\n\t// Find the end of the definition\n\treEnd.lastIndex = this.parser.pos;\n\tvar text,\n\t\tendMatch = reEnd.exec(this.parser.source);\n\tif(endMatch) {\n\t\ttext = this.parser.source.substring(this.parser.pos,endMatch.index);\n\t\tthis.parser.pos = endMatch.index + endMatch[0].length;\n\t} else {\n\t\t// We didn't find the end of the definition, so we'll make it blank\n\t\ttext = \"\";\n\t}\n\t// Save the macro definition\n\treturn [{\n\t\ttype: \"set\",\n\t\tattributes: {\n\t\t\tname: {type: \"string\", value: this.match[1]},\n\t\t\tvalue: {type: \"string\", value: text}\n\t\t},\n\t\tchildren: [],\n\t\tparams: params,\n\t\tisMacroDefinition: true\n\t}];\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "wikirule"
},
"$:/core/modules/parsers/wikiparser/rules/prettyextlink.js": {
"title": "$:/core/modules/parsers/wikiparser/rules/prettyextlink.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/wikiparser/rules/prettyextlink.js\ntype: application/javascript\nmodule-type: wikirule\n\nWiki text inline rule for external links. For example:\n\n```\n[ext[https://tiddlywiki.com/fractalveg.jpg]]\n[ext[Tooltip|https://tiddlywiki.com/fractalveg.jpg]]\n```\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.name = \"prettyextlink\";\nexports.types = {inline: true};\n\nexports.init = function(parser) {\n\tthis.parser = parser;\n};\n\nexports.findNextMatch = function(startPos) {\n\t// Find the next tag\n\tthis.nextLink = this.findNextLink(this.parser.source,startPos);\n\treturn this.nextLink ? this.nextLink.start : undefined;\n};\n\nexports.parse = function() {\n\t// Move past the match\n\tthis.parser.pos = this.nextLink.end;\n\treturn [this.nextLink];\n};\n\n/*\nFind the next link from the current position\n*/\nexports.findNextLink = function(source,pos) {\n\t// A regexp for finding candidate links\n\tvar reLookahead = /(\\[ext\\[)/g;\n\t// Find the next candidate\n\treLookahead.lastIndex = pos;\n\tvar match = reLookahead.exec(source);\n\twhile(match) {\n\t\t// Try to parse the candidate as a link\n\t\tvar link = this.parseLink(source,match.index);\n\t\t// Return success\n\t\tif(link) {\n\t\t\treturn link;\n\t\t}\n\t\t// Look for the next match\n\t\treLookahead.lastIndex = match.index + 1;\n\t\tmatch = reLookahead.exec(source);\n\t}\n\t// Failed\n\treturn null;\n};\n\n/*\nLook for an link at the specified position. Returns null if not found, otherwise returns {type: \"element\", tag: \"a\", attributes: [], isSelfClosing:, start:, end:,}\n*/\nexports.parseLink = function(source,pos) {\n\tvar token,\n\t\ttextNode = {\n\t\t\ttype: \"text\"\n\t\t},\n\t\tnode = {\n\t\t\ttype: \"element\",\n\t\t\ttag: \"a\",\n\t\t\tstart: pos,\n\t\t\tattributes: {\n\t\t\t\t\"class\": {type: \"string\", value: \"tc-tiddlylink-external\"},\n\t\t\t},\n\t\t\tchildren: [textNode]\n\t\t};\n\t// Skip whitespace\n\tpos = $tw.utils.skipWhiteSpace(source,pos);\n\t// Look for the `[ext[`\n\ttoken = $tw.utils.parseTokenString(source,pos,\"[ext[\");\n\tif(!token) {\n\t\treturn null;\n\t}\n\tpos = token.end;\n\t// Look ahead for the terminating `]]`\n\tvar closePos = source.indexOf(\"]]\",pos);\n\tif(closePos === -1) {\n\t\treturn null;\n\t}\n\t// Look for a `|` separating the tooltip\n\tvar splitPos = source.indexOf(\"|\",pos);\n\tif(splitPos === -1 || splitPos > closePos) {\n\t\tsplitPos = null;\n\t}\n\t// Pull out the tooltip and URL\n\tvar tooltip, URL;\n\tif(splitPos) {\n\t\tURL = source.substring(splitPos + 1,closePos).trim();\n\t\ttextNode.text = source.substring(pos,splitPos).trim();\n\t} else {\n\t\tURL = source.substring(pos,closePos).trim();\n\t\ttextNode.text = URL;\n\t}\n\tnode.attributes.href = {type: \"string\", value: URL};\n\tnode.attributes.target = {type: \"string\", value: \"_blank\"};\n\tnode.attributes.rel = {type: \"string\", value: \"noopener noreferrer\"};\n\t// Update the end position\n\tnode.end = closePos + 2;\n\treturn node;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "wikirule"
},
"$:/core/modules/parsers/wikiparser/rules/prettylink.js": {
"title": "$:/core/modules/parsers/wikiparser/rules/prettylink.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/wikiparser/rules/prettylink.js\ntype: application/javascript\nmodule-type: wikirule\n\nWiki text inline rule for pretty links. For example:\n\n```\n[[Introduction]]\n\n[[Link description|TiddlerTitle]]\n```\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.name = \"prettylink\";\nexports.types = {inline: true};\n\nexports.init = function(parser) {\n\tthis.parser = parser;\n\t// Regexp to match\n\tthis.matchRegExp = /\\[\\[(.*?)(?:\\|(.*?))?\\]\\]/mg;\n};\n\nexports.parse = function() {\n\t// Move past the match\n\tthis.parser.pos = this.matchRegExp.lastIndex;\n\t// Process the link\n\tvar text = this.match[1],\n\t\tlink = this.match[2] || text;\n\tif($tw.utils.isLinkExternal(link)) {\n\t\treturn [{\n\t\t\ttype: \"element\",\n\t\t\ttag: \"a\",\n\t\t\tattributes: {\n\t\t\t\thref: {type: \"string\", value: link},\n\t\t\t\t\"class\": {type: \"string\", value: \"tc-tiddlylink-external\"},\n\t\t\t\ttarget: {type: \"string\", value: \"_blank\"},\n\t\t\t\trel: {type: \"string\", value: \"noopener noreferrer\"}\n\t\t\t},\n\t\t\tchildren: [{\n\t\t\t\ttype: \"text\", text: text\n\t\t\t}]\n\t\t}];\n\t} else {\n\t\treturn [{\n\t\t\ttype: \"link\",\n\t\t\tattributes: {\n\t\t\t\tto: {type: \"string\", value: link}\n\t\t\t},\n\t\t\tchildren: [{\n\t\t\t\ttype: \"text\", text: text\n\t\t\t}]\n\t\t}];\n\t}\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "wikirule"
},
"$:/core/modules/parsers/wikiparser/rules/quoteblock.js": {
"title": "$:/core/modules/parsers/wikiparser/rules/quoteblock.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/wikiparser/rules/quoteblock.js\ntype: application/javascript\nmodule-type: wikirule\n\nWiki text rule for quote blocks. For example:\n\n```\n\t<<<.optionalClass(es) optional cited from\n\ta quote\n\t<<<\n\t\n\t<<<.optionalClass(es)\n\ta quote\n\t<<< optional cited from\n```\n\nQuotes can be quoted by putting more <s\n\n```\n\t<<<\n\tQuote Level 1\n\t\n\t<<<<\n\tQuoteLevel 2\n\t<<<<\n\t\n\t<<<\n```\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.name = \"quoteblock\";\nexports.types = {block: true};\n\nexports.init = function(parser) {\n\tthis.parser = parser;\n\t// Regexp to match\n\tthis.matchRegExp = /(<<<+)/mg;\n};\n\nexports.parse = function() {\n\tvar classes = [\"tc-quote\"];\n\t// Get all the details of the match\n\tvar reEndString = \"^\" + this.match[1] + \"(?!<)\";\n\t// Move past the <s\n\tthis.parser.pos = this.matchRegExp.lastIndex;\n\t\n\t// Parse any classes, whitespace and then the optional cite itself\n\tclasses.push.apply(classes, this.parser.parseClasses());\n\tthis.parser.skipWhitespace({treatNewlinesAsNonWhitespace: true});\n\tvar cite = this.parser.parseInlineRun(/(\\r?\\n)/mg);\n\t// before handling the cite, parse the body of the quote\n\tvar tree= this.parser.parseBlocks(reEndString);\n\t// If we got a cite, put it before the text\n\tif(cite.length > 0) {\n\t\ttree.unshift({\n\t\t\ttype: \"element\",\n\t\t\ttag: \"cite\",\n\t\t\tchildren: cite\n\t\t});\n\t}\n\t// Parse any optional cite\n\tthis.parser.skipWhitespace({treatNewlinesAsNonWhitespace: true});\n\tcite = this.parser.parseInlineRun(/(\\r?\\n)/mg);\n\t// If we got a cite, push it\n\tif(cite.length > 0) {\n\t\ttree.push({\n\t\t\ttype: \"element\",\n\t\t\ttag: \"cite\",\n\t\t\tchildren: cite\n\t\t});\n\t}\n\t// Return the blockquote element\n\treturn [{\n\t\ttype: \"element\",\n\t\ttag: \"blockquote\",\n\t\tattributes: {\n\t\t\tclass: { type: \"string\", value: classes.join(\" \") },\n\t\t},\n\t\tchildren: tree\n\t}];\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "wikirule"
},
"$:/core/modules/parsers/wikiparser/rules/rules.js": {
"title": "$:/core/modules/parsers/wikiparser/rules/rules.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/wikiparser/rules/rules.js\ntype: application/javascript\nmodule-type: wikirule\n\nWiki pragma rule for rules specifications\n\n```\n\\rules except ruleone ruletwo rulethree\n\\rules only ruleone ruletwo rulethree\n```\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.name = \"rules\";\nexports.types = {pragma: true};\n\n/*\nInstantiate parse rule\n*/\nexports.init = function(parser) {\n\tthis.parser = parser;\n\t// Regexp to match\n\tthis.matchRegExp = /^\\\\rules[^\\S\\n]/mg;\n};\n\n/*\nParse the most recent match\n*/\nexports.parse = function() {\n\t// Move past the pragma invocation\n\tthis.parser.pos = this.matchRegExp.lastIndex;\n\t// Parse whitespace delimited tokens terminated by a line break\n\tvar reMatch = /[^\\S\\n]*(\\S+)|(\\r?\\n)/mg,\n\t\ttokens = [];\n\treMatch.lastIndex = this.parser.pos;\n\tvar match = reMatch.exec(this.parser.source);\n\twhile(match && match.index === this.parser.pos) {\n\t\tthis.parser.pos = reMatch.lastIndex;\n\t\t// Exit if we've got the line break\n\t\tif(match[2]) {\n\t\t\tbreak;\n\t\t}\n\t\t// Process the token\n\t\tif(match[1]) {\n\t\t\ttokens.push(match[1]);\n\t\t}\n\t\t// Match the next token\n\t\tmatch = reMatch.exec(this.parser.source);\n\t}\n\t// Process the tokens\n\tif(tokens.length > 0) {\n\t\tthis.parser.amendRules(tokens[0],tokens.slice(1));\n\t}\n\t// No parse tree nodes to return\n\treturn [];\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "wikirule"
},
"$:/core/modules/parsers/wikiparser/rules/styleblock.js": {
"title": "$:/core/modules/parsers/wikiparser/rules/styleblock.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/wikiparser/rules/styleblock.js\ntype: application/javascript\nmodule-type: wikirule\n\nWiki text block rule for assigning styles and classes to paragraphs and other blocks. For example:\n\n```\n@@.myClass\n@@background-color:red;\nThis paragraph will have the CSS class `myClass`.\n\n* The `<ul>` around this list will also have the class `myClass`\n* List item 2\n\n@@\n```\n\nNote that classes and styles can be mixed subject to the rule that styles must precede classes. For example\n\n```\n@@.myFirstClass.mySecondClass\n@@width:100px;.myThirdClass\nThis is a paragraph\n@@\n```\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.name = \"styleblock\";\nexports.types = {block: true};\n\nexports.init = function(parser) {\n\tthis.parser = parser;\n\t// Regexp to match\n\tthis.matchRegExp = /@@((?:[^\\.\\r\\n\\s:]+:[^\\r\\n;]+;)+)?(?:\\.([^\\r\\n\\s]+))?\\r?\\n/mg;\n};\n\nexports.parse = function() {\n\tvar reEndString = \"^@@(?:\\\\r?\\\\n)?\";\n\tvar classes = [], styles = [];\n\tdo {\n\t\t// Get the class and style\n\t\tif(this.match[1]) {\n\t\t\tstyles.push(this.match[1]);\n\t\t}\n\t\tif(this.match[2]) {\n\t\t\tclasses.push(this.match[2].split(\".\").join(\" \"));\n\t\t}\n\t\t// Move past the match\n\t\tthis.parser.pos = this.matchRegExp.lastIndex;\n\t\t// Look for another line of classes and styles\n\t\tthis.match = this.matchRegExp.exec(this.parser.source);\n\t} while(this.match && this.match.index === this.parser.pos);\n\t// Parse the body\n\tvar tree = this.parser.parseBlocks(reEndString);\n\tfor(var t=0; t<tree.length; t++) {\n\t\tif(classes.length > 0) {\n\t\t\t$tw.utils.addClassToParseTreeNode(tree[t],classes.join(\" \"));\n\t\t}\n\t\tif(styles.length > 0) {\n\t\t\t$tw.utils.addAttributeToParseTreeNode(tree[t],\"style\",styles.join(\"\"));\n\t\t}\n\t}\n\treturn tree;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "wikirule"
},
"$:/core/modules/parsers/wikiparser/rules/styleinline.js": {
"title": "$:/core/modules/parsers/wikiparser/rules/styleinline.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/wikiparser/rules/styleinline.js\ntype: application/javascript\nmodule-type: wikirule\n\nWiki text inline rule for assigning styles and classes to inline runs. For example:\n\n```\n@@.myClass This is some text with a class@@\n@@background-color:red;This is some text with a background colour@@\n@@width:100px;.myClass This is some text with a class and a width@@\n```\n\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.name = \"styleinline\";\nexports.types = {inline: true};\n\nexports.init = function(parser) {\n\tthis.parser = parser;\n\t// Regexp to match\n\tthis.matchRegExp = /@@((?:[^\\.\\r\\n\\s:]+:[^\\r\\n;]+;)+)?(\\.(?:[^\\r\\n\\s]+)\\s+)?/mg;\n};\n\nexports.parse = function() {\n\tvar reEnd = /@@/g;\n\t// Get the styles and class\n\tvar stylesString = this.match[1],\n\t\tclassString = this.match[2] ? this.match[2].split(\".\").join(\" \") : undefined;\n\t// Move past the match\n\tthis.parser.pos = this.matchRegExp.lastIndex;\n\t// Parse the run up to the terminator\n\tvar tree = this.parser.parseInlineRun(reEnd,{eatTerminator: true});\n\t// Return the classed span\n\tvar node = {\n\t\ttype: \"element\",\n\t\ttag: \"span\",\n\t\tattributes: {\n\t\t\t\"class\": {type: \"string\", value: \"tc-inline-style\"}\n\t\t},\n\t\tchildren: tree\n\t};\n\tif(classString) {\n\t\t$tw.utils.addClassToParseTreeNode(node,classString);\n\t}\n\tif(stylesString) {\n\t\t$tw.utils.addAttributeToParseTreeNode(node,\"style\",stylesString);\n\t}\n\treturn [node];\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "wikirule"
},
"$:/core/modules/parsers/wikiparser/rules/syslink.js": {
"title": "$:/core/modules/parsers/wikiparser/rules/syslink.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/wikiparser/rules/syslink.js\ntype: application/javascript\nmodule-type: wikirule\n\nWiki text inline rule for system tiddler links.\nCan be suppressed preceding them with `~`.\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.name = \"syslink\";\nexports.types = {inline: true};\n\nexports.init = function(parser) {\n\tthis.parser = parser;\n\t// Regexp to match\n\tthis.matchRegExp = new RegExp(\n\t\t\"~?\\\\$:\\\\/[\" +\n\t\t$tw.config.textPrimitives.anyLetter.substr(1,$tw.config.textPrimitives.anyLetter.length - 2) +\n\t\t\"\\/._-]+\",\n\t\t\"mg\"\n\t);\n};\n\nexports.parse = function() {\n\tvar match = this.match[0];\n\t// Move past the match\n\tthis.parser.pos = this.matchRegExp.lastIndex;\n\t// Create the link unless it is suppressed\n\tif(match.substr(0,1) === \"~\") {\n\t\treturn [{type: \"text\", text: match.substr(1)}];\n\t} else {\n\t\treturn [{\n\t\t\ttype: \"link\",\n\t\t\tattributes: {\n\t\t\t\tto: {type: \"string\", value: match}\n\t\t\t},\n\t\t\tchildren: [{\n\t\t\t\ttype: \"text\",\n\t\t\t\ttext: match\n\t\t\t}]\n\t\t}];\n\t}\n};\n\n})();",
"type": "application/javascript",
"module-type": "wikirule"
},
"$:/core/modules/parsers/wikiparser/rules/table.js": {
"title": "$:/core/modules/parsers/wikiparser/rules/table.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/wikiparser/rules/table.js\ntype: application/javascript\nmodule-type: wikirule\n\nWiki text block rule for tables.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.name = \"table\";\nexports.types = {block: true};\n\nexports.init = function(parser) {\n\tthis.parser = parser;\n\t// Regexp to match\n\tthis.matchRegExp = /^\\|(?:[^\\n]*)\\|(?:[fhck]?)\\r?(?:\\n|$)/mg;\n};\n\nvar processRow = function(prevColumns) {\n\tvar cellRegExp = /(?:\\|([^\\n\\|]*)\\|)|(\\|[fhck]?\\r?(?:\\n|$))/mg,\n\t\tcellTermRegExp = /((?:\\x20*)\\|)/mg,\n\t\ttree = [],\n\t\tcol = 0,\n\t\tcolSpanCount = 1,\n\t\tprevCell,\n\t\tvAlign;\n\t// Match a single cell\n\tcellRegExp.lastIndex = this.parser.pos;\n\tvar cellMatch = cellRegExp.exec(this.parser.source);\n\twhile(cellMatch && cellMatch.index === this.parser.pos) {\n\t\tif(cellMatch[1] === \"~\") {\n\t\t\t// Rowspan\n\t\t\tvar last = prevColumns[col];\n\t\t\tif(last) {\n\t\t\t\tlast.rowSpanCount++;\n\t\t\t\t$tw.utils.addAttributeToParseTreeNode(last.element,\"rowspan\",last.rowSpanCount);\n\t\t\t\tvAlign = $tw.utils.getAttributeValueFromParseTreeNode(last.element,\"valign\",\"center\");\n\t\t\t\t$tw.utils.addAttributeToParseTreeNode(last.element,\"valign\",vAlign);\n\t\t\t\tif(colSpanCount > 1) {\n\t\t\t\t\t$tw.utils.addAttributeToParseTreeNode(last.element,\"colspan\",colSpanCount);\n\t\t\t\t\tcolSpanCount = 1;\n\t\t\t\t}\n\t\t\t}\n\t\t\t// Move to just before the `|` terminating the cell\n\t\t\tthis.parser.pos = cellRegExp.lastIndex - 1;\n\t\t} else if(cellMatch[1] === \">\") {\n\t\t\t// Colspan\n\t\t\tcolSpanCount++;\n\t\t\t// Move to just before the `|` terminating the cell\n\t\t\tthis.parser.pos = cellRegExp.lastIndex - 1;\n\t\t} else if(cellMatch[1] === \"<\" && prevCell) {\n\t\t\tcolSpanCount = 1 + $tw.utils.getAttributeValueFromParseTreeNode(prevCell,\"colspan\",1);\n\t\t\t$tw.utils.addAttributeToParseTreeNode(prevCell,\"colspan\",colSpanCount);\n\t\t\tcolSpanCount = 1;\n\t\t\t// Move to just before the `|` terminating the cell\n\t\t\tthis.parser.pos = cellRegExp.lastIndex - 1;\n\t\t} else if(cellMatch[2]) {\n\t\t\t// End of row\n\t\t\tif(prevCell && colSpanCount > 1) {\n\t\t\t\tif(prevCell.attributes && prevCell.attributes && prevCell.attributes.colspan) {\n\t\t\t\t\t\tcolSpanCount += prevCell.attributes.colspan.value;\n\t\t\t\t} else {\n\t\t\t\t\tcolSpanCount -= 1;\n\t\t\t\t}\n\t\t\t\t$tw.utils.addAttributeToParseTreeNode(prevCell,\"colspan\",colSpanCount);\n\t\t\t}\n\t\t\tthis.parser.pos = cellRegExp.lastIndex - 1;\n\t\t\tbreak;\n\t\t} else {\n\t\t\t// For ordinary cells, step beyond the opening `|`\n\t\t\tthis.parser.pos++;\n\t\t\t// Look for a space at the start of the cell\n\t\t\tvar spaceLeft = false;\n\t\t\tvAlign = null;\n\t\t\tif(this.parser.source.substr(this.parser.pos).search(/^\\^([^\\^]|\\^\\^)/) === 0) {\n\t\t\t\tvAlign = \"top\";\n\t\t\t} else if(this.parser.source.substr(this.parser.pos).search(/^,([^,]|,,)/) === 0) {\n\t\t\t\tvAlign = \"bottom\";\n\t\t\t}\n\t\t\tif(vAlign) {\n\t\t\t\tthis.parser.pos++;\n\t\t\t}\n\t\t\tvar chr = this.parser.source.substr(this.parser.pos,1);\n\t\t\twhile(chr === \" \") {\n\t\t\t\tspaceLeft = true;\n\t\t\t\tthis.parser.pos++;\n\t\t\t\tchr = this.parser.source.substr(this.parser.pos,1);\n\t\t\t}\n\t\t\t// Check whether this is a heading cell\n\t\t\tvar cell;\n\t\t\tif(chr === \"!\") {\n\t\t\t\tthis.parser.pos++;\n\t\t\t\tcell = {type: \"element\", tag: \"th\", children: []};\n\t\t\t} else {\n\t\t\t\tcell = {type: \"element\", tag: \"td\", children: []};\n\t\t\t}\n\t\t\ttree.push(cell);\n\t\t\t// Record information about this cell\n\t\t\tprevCell = cell;\n\t\t\tprevColumns[col] = {rowSpanCount:1,element:cell};\n\t\t\t// Check for a colspan\n\t\t\tif(colSpanCount > 1) {\n\t\t\t\t$tw.utils.addAttributeToParseTreeNode(cell,\"colspan\",colSpanCount);\n\t\t\t\tcolSpanCount = 1;\n\t\t\t}\n\t\t\t// Parse the cell\n\t\t\tcell.children = this.parser.parseInlineRun(cellTermRegExp,{eatTerminator: true});\n\t\t\t// Set the alignment for the cell\n\t\t\tif(vAlign) {\n\t\t\t\t$tw.utils.addAttributeToParseTreeNode(cell,\"valign\",vAlign);\n\t\t\t}\n\t\t\tif(this.parser.source.substr(this.parser.pos - 2,1) === \" \") { // spaceRight\n\t\t\t\t$tw.utils.addAttributeToParseTreeNode(cell,\"align\",spaceLeft ? \"center\" : \"left\");\n\t\t\t} else if(spaceLeft) {\n\t\t\t\t$tw.utils.addAttributeToParseTreeNode(cell,\"align\",\"right\");\n\t\t\t}\n\t\t\t// Move back to the closing `|`\n\t\t\tthis.parser.pos--;\n\t\t}\n\t\tcol++;\n\t\tcellRegExp.lastIndex = this.parser.pos;\n\t\tcellMatch = cellRegExp.exec(this.parser.source);\n\t}\n\treturn tree;\n};\n\nexports.parse = function() {\n\tvar rowContainerTypes = {\"c\":\"caption\", \"h\":\"thead\", \"\":\"tbody\", \"f\":\"tfoot\"},\n\t\ttable = {type: \"element\", tag: \"table\", children: []},\n\t\trowRegExp = /^\\|([^\\n]*)\\|([fhck]?)\\r?(?:\\n|$)/mg,\n\t\trowTermRegExp = /(\\|(?:[fhck]?)\\r?(?:\\n|$))/mg,\n\t\tprevColumns = [],\n\t\tcurrRowType,\n\t\trowContainer,\n\t\trowCount = 0;\n\t// Match the row\n\trowRegExp.lastIndex = this.parser.pos;\n\tvar rowMatch = rowRegExp.exec(this.parser.source);\n\twhile(rowMatch && rowMatch.index === this.parser.pos) {\n\t\tvar rowType = rowMatch[2];\n\t\t// Check if it is a class assignment\n\t\tif(rowType === \"k\") {\n\t\t\t$tw.utils.addClassToParseTreeNode(table,rowMatch[1]);\n\t\t\tthis.parser.pos = rowMatch.index + rowMatch[0].length;\n\t\t} else {\n\t\t\t// Otherwise, create a new row if this one is of a different type\n\t\t\tif(rowType !== currRowType) {\n\t\t\t\trowContainer = {type: \"element\", tag: rowContainerTypes[rowType], children: []};\n\t\t\t\ttable.children.push(rowContainer);\n\t\t\t\tcurrRowType = rowType;\n\t\t\t}\n\t\t\t// Is this a caption row?\n\t\t\tif(currRowType === \"c\") {\n\t\t\t\t// If so, move past the opening `|` of the row\n\t\t\t\tthis.parser.pos++;\n\t\t\t\t// Move the caption to the first row if it isn't already\n\t\t\t\tif(table.children.length !== 1) {\n\t\t\t\t\ttable.children.pop(); // Take rowContainer out of the children array\n\t\t\t\t\ttable.children.splice(0,0,rowContainer); // Insert it at the bottom\t\t\t\t\t\t\n\t\t\t\t}\n\t\t\t\t// Set the alignment - TODO: figure out why TW did this\n//\t\t\t\trowContainer.attributes.align = rowCount === 0 ? \"top\" : \"bottom\";\n\t\t\t\t// Parse the caption\n\t\t\t\trowContainer.children = this.parser.parseInlineRun(rowTermRegExp,{eatTerminator: true});\n\t\t\t} else {\n\t\t\t\t// Create the row\n\t\t\t\tvar theRow = {type: \"element\", tag: \"tr\", children: []};\n\t\t\t\t$tw.utils.addClassToParseTreeNode(theRow,rowCount%2 ? \"oddRow\" : \"evenRow\");\n\t\t\t\trowContainer.children.push(theRow);\n\t\t\t\t// Process the row\n\t\t\t\ttheRow.children = processRow.call(this,prevColumns);\n\t\t\t\tthis.parser.pos = rowMatch.index + rowMatch[0].length;\n\t\t\t\t// Increment the row count\n\t\t\t\trowCount++;\n\t\t\t}\n\t\t}\n\t\trowMatch = rowRegExp.exec(this.parser.source);\n\t}\n\treturn [table];\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "wikirule"
},
"$:/core/modules/parsers/wikiparser/rules/transcludeblock.js": {
"title": "$:/core/modules/parsers/wikiparser/rules/transcludeblock.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/wikiparser/rules/transcludeblock.js\ntype: application/javascript\nmodule-type: wikirule\n\nWiki text rule for block-level transclusion. For example:\n\n```\n{{MyTiddler}}\n{{MyTiddler||TemplateTitle}}\n```\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.name = \"transcludeblock\";\nexports.types = {block: true};\n\nexports.init = function(parser) {\n\tthis.parser = parser;\n\t// Regexp to match\n\tthis.matchRegExp = /\\{\\{([^\\{\\}\\|]*)(?:\\|\\|([^\\|\\{\\}]+))?\\}\\}(?:\\r?\\n|$)/mg;\n};\n\nexports.parse = function() {\n\t// Move past the match\n\tthis.parser.pos = this.matchRegExp.lastIndex;\n\t// Move past the match\n\tthis.parser.pos = this.matchRegExp.lastIndex;\n\t// Get the match details\n\tvar template = $tw.utils.trim(this.match[2]),\n\t\ttextRef = $tw.utils.trim(this.match[1]);\n\t// Prepare the transclude widget\n\tvar transcludeNode = {\n\t\t\ttype: \"transclude\",\n\t\t\tattributes: {},\n\t\t\tisBlock: true\n\t\t};\n\t// Prepare the tiddler widget\n\tvar tr, targetTitle, targetField, targetIndex, tiddlerNode;\n\tif(textRef) {\n\t\ttr = $tw.utils.parseTextReference(textRef);\n\t\ttargetTitle = tr.title;\n\t\ttargetField = tr.field;\n\t\ttargetIndex = tr.index;\n\t\ttiddlerNode = {\n\t\t\ttype: \"tiddler\",\n\t\t\tattributes: {\n\t\t\t\ttiddler: {type: \"string\", value: targetTitle}\n\t\t\t},\n\t\t\tisBlock: true,\n\t\t\tchildren: [transcludeNode]\n\t\t};\n\t}\n\tif(template) {\n\t\ttranscludeNode.attributes.tiddler = {type: \"string\", value: template};\n\t\tif(textRef) {\n\t\t\treturn [tiddlerNode];\n\t\t} else {\n\t\t\treturn [transcludeNode];\n\t\t}\n\t} else {\n\t\tif(textRef) {\n\t\t\ttranscludeNode.attributes.tiddler = {type: \"string\", value: targetTitle};\n\t\t\tif(targetField) {\n\t\t\t\ttranscludeNode.attributes.field = {type: \"string\", value: targetField};\n\t\t\t}\n\t\t\tif(targetIndex) {\n\t\t\t\ttranscludeNode.attributes.index = {type: \"string\", value: targetIndex};\n\t\t\t}\n\t\t\treturn [tiddlerNode];\n\t\t} else {\n\t\t\treturn [transcludeNode];\n\t\t}\n\t}\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "wikirule"
},
"$:/core/modules/parsers/wikiparser/rules/transcludeinline.js": {
"title": "$:/core/modules/parsers/wikiparser/rules/transcludeinline.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/wikiparser/rules/transcludeinline.js\ntype: application/javascript\nmodule-type: wikirule\n\nWiki text rule for inline-level transclusion. For example:\n\n```\n{{MyTiddler}}\n{{MyTiddler||TemplateTitle}}\n```\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.name = \"transcludeinline\";\nexports.types = {inline: true};\n\nexports.init = function(parser) {\n\tthis.parser = parser;\n\t// Regexp to match\n\tthis.matchRegExp = /\\{\\{([^\\{\\}\\|]*)(?:\\|\\|([^\\|\\{\\}]+))?\\}\\}/mg;\n};\n\nexports.parse = function() {\n\t// Move past the match\n\tthis.parser.pos = this.matchRegExp.lastIndex;\n\t// Get the match details\n\tvar template = $tw.utils.trim(this.match[2]),\n\t\ttextRef = $tw.utils.trim(this.match[1]);\n\t// Prepare the transclude widget\n\tvar transcludeNode = {\n\t\t\ttype: \"transclude\",\n\t\t\tattributes: {}\n\t\t};\n\t// Prepare the tiddler widget\n\tvar tr, targetTitle, targetField, targetIndex, tiddlerNode;\n\tif(textRef) {\n\t\ttr = $tw.utils.parseTextReference(textRef);\n\t\ttargetTitle = tr.title;\n\t\ttargetField = tr.field;\n\t\ttargetIndex = tr.index;\n\t\ttiddlerNode = {\n\t\t\ttype: \"tiddler\",\n\t\t\tattributes: {\n\t\t\t\ttiddler: {type: \"string\", value: targetTitle}\n\t\t\t},\n\t\t\tchildren: [transcludeNode]\n\t\t};\n\t}\n\tif(template) {\n\t\ttranscludeNode.attributes.tiddler = {type: \"string\", value: template};\n\t\tif(textRef) {\n\t\t\treturn [tiddlerNode];\n\t\t} else {\n\t\t\treturn [transcludeNode];\n\t\t}\n\t} else {\n\t\tif(textRef) {\n\t\t\ttranscludeNode.attributes.tiddler = {type: \"string\", value: targetTitle};\n\t\t\tif(targetField) {\n\t\t\t\ttranscludeNode.attributes.field = {type: \"string\", value: targetField};\n\t\t\t}\n\t\t\tif(targetIndex) {\n\t\t\t\ttranscludeNode.attributes.index = {type: \"string\", value: targetIndex};\n\t\t\t}\n\t\t\treturn [tiddlerNode];\n\t\t} else {\n\t\t\treturn [transcludeNode];\n\t\t}\n\t}\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "wikirule"
},
"$:/core/modules/parsers/wikiparser/rules/typedblock.js": {
"title": "$:/core/modules/parsers/wikiparser/rules/typedblock.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/wikiparser/rules/typedblock.js\ntype: application/javascript\nmodule-type: wikirule\n\nWiki text rule for typed blocks. For example:\n\n```\n$$$.js\nThis will be rendered as JavaScript\n$$$\n\n$$$.svg\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"150\" height=\"100\">\n <circle cx=\"100\" cy=\"50\" r=\"40\" stroke=\"black\" stroke-width=\"2\" fill=\"red\" />\n</svg>\n$$$\n\n$$$text/vnd.tiddlywiki>text/html\nThis will be rendered as an //HTML representation// of WikiText\n$$$\n```\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar widget = require(\"$:/core/modules/widgets/widget.js\");\n\nexports.name = \"typedblock\";\nexports.types = {block: true};\n\nexports.init = function(parser) {\n\tthis.parser = parser;\n\t// Regexp to match\n\tthis.matchRegExp = /\\$\\$\\$([^ >\\r\\n]*)(?: *> *([^ \\r\\n]+))?\\r?\\n/mg;\n};\n\nexports.parse = function() {\n\tvar reEnd = /\\r?\\n\\$\\$\\$\\r?(?:\\n|$)/mg;\n\t// Save the type\n\tvar parseType = this.match[1],\n\t\trenderType = this.match[2];\n\t// Move past the match\n\tthis.parser.pos = this.matchRegExp.lastIndex;\n\t// Look for the end of the block\n\treEnd.lastIndex = this.parser.pos;\n\tvar match = reEnd.exec(this.parser.source),\n\t\ttext;\n\t// Process the block\n\tif(match) {\n\t\ttext = this.parser.source.substring(this.parser.pos,match.index);\n\t\tthis.parser.pos = match.index + match[0].length;\n\t} else {\n\t\ttext = this.parser.source.substr(this.parser.pos);\n\t\tthis.parser.pos = this.parser.sourceLength;\n\t}\n\t// Parse the block according to the specified type\n\tvar parser = this.parser.wiki.parseText(parseType,text,{defaultType: \"text/plain\"});\n\t// If there's no render type, just return the parse tree\n\tif(!renderType) {\n\t\treturn parser.tree;\n\t} else {\n\t\t// Otherwise, render to the rendertype and return in a <PRE> tag\n\t\tvar widgetNode = this.parser.wiki.makeWidget(parser),\n\t\t\tcontainer = $tw.fakeDocument.createElement(\"div\");\n\t\twidgetNode.render(container,null);\n\t\ttext = renderType === \"text/html\" ? container.innerHTML : container.textContent;\n\t\treturn [{\n\t\t\ttype: \"element\",\n\t\t\ttag: \"pre\",\n\t\t\tchildren: [{\n\t\t\t\ttype: \"text\",\n\t\t\t\ttext: text\n\t\t\t}]\n\t\t}];\n\t}\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "wikirule"
},
"$:/core/modules/parsers/wikiparser/rules/whitespace.js": {
"title": "$:/core/modules/parsers/wikiparser/rules/whitespace.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/wikiparser/rules/whitespace.js\ntype: application/javascript\nmodule-type: wikirule\n\nWiki pragma rule for whitespace specifications\n\n```\n\\whitespace trim\n\\whitespace notrim\n```\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.name = \"whitespace\";\nexports.types = {pragma: true};\n\n/*\nInstantiate parse rule\n*/\nexports.init = function(parser) {\n\tthis.parser = parser;\n\t// Regexp to match\n\tthis.matchRegExp = /^\\\\whitespace[^\\S\\n]/mg;\n};\n\n/*\nParse the most recent match\n*/\nexports.parse = function() {\n\tvar self = this;\n\t// Move past the pragma invocation\n\tthis.parser.pos = this.matchRegExp.lastIndex;\n\t// Parse whitespace delimited tokens terminated by a line break\n\tvar reMatch = /[^\\S\\n]*(\\S+)|(\\r?\\n)/mg,\n\t\ttokens = [];\n\treMatch.lastIndex = this.parser.pos;\n\tvar match = reMatch.exec(this.parser.source);\n\twhile(match && match.index === this.parser.pos) {\n\t\tthis.parser.pos = reMatch.lastIndex;\n\t\t// Exit if we've got the line break\n\t\tif(match[2]) {\n\t\t\tbreak;\n\t\t}\n\t\t// Process the token\n\t\tif(match[1]) {\n\t\t\ttokens.push(match[1]);\n\t\t}\n\t\t// Match the next token\n\t\tmatch = reMatch.exec(this.parser.source);\n\t}\n\t// Process the tokens\n\t$tw.utils.each(tokens,function(token) {\n\t\tswitch(token) {\n\t\t\tcase \"trim\":\n\t\t\t\tself.parser.configTrimWhiteSpace = true;\n\t\t\t\tbreak;\n\t\t\tcase \"notrim\":\n\t\t\t\tself.parser.configTrimWhiteSpace = false;\n\t\t\t\tbreak;\n\t\t}\n\t});\n\t// No parse tree nodes to return\n\treturn [];\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "wikirule"
},
"$:/core/modules/parsers/wikiparser/rules/wikilink.js": {
"title": "$:/core/modules/parsers/wikiparser/rules/wikilink.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/wikiparser/rules/wikilink.js\ntype: application/javascript\nmodule-type: wikirule\n\nWiki text inline rule for wiki links. For example:\n\n```\nAWikiLink\nAnotherLink\n~SuppressedLink\n```\n\nPrecede a camel case word with `~` to prevent it from being recognised as a link.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.name = \"wikilink\";\nexports.types = {inline: true};\n\nexports.init = function(parser) {\n\tthis.parser = parser;\n\t// Regexp to match\n\tthis.matchRegExp = new RegExp($tw.config.textPrimitives.unWikiLink + \"?\" + $tw.config.textPrimitives.wikiLink,\"mg\");\n};\n\n/*\nParse the most recent match\n*/\nexports.parse = function() {\n\t// Get the details of the match\n\tvar linkText = this.match[0];\n\t// Move past the macro call\n\tthis.parser.pos = this.matchRegExp.lastIndex;\n\t// If the link starts with the unwikilink character then just output it as plain text\n\tif(linkText.substr(0,1) === $tw.config.textPrimitives.unWikiLink) {\n\t\treturn [{type: \"text\", text: linkText.substr(1)}];\n\t}\n\t// If the link has been preceded with a blocked letter then don't treat it as a link\n\tif(this.match.index > 0) {\n\t\tvar preRegExp = new RegExp($tw.config.textPrimitives.blockPrefixLetters,\"mg\");\n\t\tpreRegExp.lastIndex = this.match.index-1;\n\t\tvar preMatch = preRegExp.exec(this.parser.source);\n\t\tif(preMatch && preMatch.index === this.match.index-1) {\n\t\t\treturn [{type: \"text\", text: linkText}];\n\t\t}\n\t}\n\treturn [{\n\t\ttype: \"link\",\n\t\tattributes: {\n\t\t\tto: {type: \"string\", value: linkText}\n\t\t},\n\t\tchildren: [{\n\t\t\ttype: \"text\",\n\t\t\ttext: linkText\n\t\t}]\n\t}];\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "wikirule"
},
"$:/core/modules/parsers/wikiparser/wikiparser.js": {
"title": "$:/core/modules/parsers/wikiparser/wikiparser.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/wikiparser/wikiparser.js\ntype: application/javascript\nmodule-type: parser\n\nThe wiki text parser processes blocks of source text into a parse tree.\n\nThe parse tree is made up of nested arrays of these JavaScript objects:\n\n\t{type: \"element\", tag: <string>, attributes: {}, children: []} - an HTML element\n\t{type: \"text\", text: <string>} - a text node\n\t{type: \"entity\", value: <string>} - an entity\n\t{type: \"raw\", html: <string>} - raw HTML\n\nAttributes are stored as hashmaps of the following objects:\n\n\t{type: \"string\", value: <string>} - literal string\n\t{type: \"indirect\", textReference: <textReference>} - indirect through a text reference\n\t{type: \"macro\", macro: <TBD>} - indirect through a macro invocation\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar WikiParser = function(type,text,options) {\n\tthis.wiki = options.wiki;\n\tvar self = this;\n\t// Check for an externally linked tiddler\n\tif($tw.browser && (text || \"\") === \"\" && options._canonical_uri) {\n\t\tthis.loadRemoteTiddler(options._canonical_uri);\n\t\ttext = $tw.language.getRawString(\"LazyLoadingWarning\");\n\t}\n\t// Initialise the classes if we don't have them already\n\tif(!this.pragmaRuleClasses) {\n\t\tWikiParser.prototype.pragmaRuleClasses = $tw.modules.createClassesFromModules(\"wikirule\",\"pragma\",$tw.WikiRuleBase);\n\t\tthis.setupRules(WikiParser.prototype.pragmaRuleClasses,\"$:/config/WikiParserRules/Pragmas/\");\n\t}\n\tif(!this.blockRuleClasses) {\n\t\tWikiParser.prototype.blockRuleClasses = $tw.modules.createClassesFromModules(\"wikirule\",\"block\",$tw.WikiRuleBase);\n\t\tthis.setupRules(WikiParser.prototype.blockRuleClasses,\"$:/config/WikiParserRules/Block/\");\n\t}\n\tif(!this.inlineRuleClasses) {\n\t\tWikiParser.prototype.inlineRuleClasses = $tw.modules.createClassesFromModules(\"wikirule\",\"inline\",$tw.WikiRuleBase);\n\t\tthis.setupRules(WikiParser.prototype.inlineRuleClasses,\"$:/config/WikiParserRules/Inline/\");\n\t}\n\t// Save the parse text\n\tthis.type = type || \"text/vnd.tiddlywiki\";\n\tthis.source = text || \"\";\n\tthis.sourceLength = this.source.length;\n\t// Flag for ignoring whitespace\n\tthis.configTrimWhiteSpace = false;\n\t// Set current parse position\n\tthis.pos = 0;\n\t// Instantiate the pragma parse rules\n\tthis.pragmaRules = this.instantiateRules(this.pragmaRuleClasses,\"pragma\",0);\n\t// Instantiate the parser block and inline rules\n\tthis.blockRules = this.instantiateRules(this.blockRuleClasses,\"block\",0);\n\tthis.inlineRules = this.instantiateRules(this.inlineRuleClasses,\"inline\",0);\n\t// Parse any pragmas\n\tthis.tree = [];\n\tvar topBranch = this.parsePragmas();\n\t// Parse the text into inline runs or blocks\n\tif(options.parseAsInline) {\n\t\ttopBranch.push.apply(topBranch,this.parseInlineRun());\n\t} else {\n\t\ttopBranch.push.apply(topBranch,this.parseBlocks());\n\t}\n\t// Return the parse tree\n};\n\n/*\n*/\nWikiParser.prototype.loadRemoteTiddler = function(url) {\n\tvar self = this;\n\t$tw.utils.httpRequest({\n\t\turl: url,\n\t\ttype: \"GET\",\n\t\tcallback: function(err,data) {\n\t\t\tif(!err) {\n\t\t\t\tvar tiddlers = self.wiki.deserializeTiddlers(\".tid\",data,self.wiki.getCreationFields());\n\t\t\t\t$tw.utils.each(tiddlers,function(tiddler) {\n\t\t\t\t\ttiddler[\"_canonical_uri\"] = url;\n\t\t\t\t});\n\t\t\t\tif(tiddlers) {\n\t\t\t\t\tself.wiki.addTiddlers(tiddlers);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t});\n};\n\n/*\n*/\nWikiParser.prototype.setupRules = function(proto,configPrefix) {\n\tvar self = this;\n\tif(!$tw.safemode) {\n\t\t$tw.utils.each(proto,function(object,name) {\n\t\t\tif(self.wiki.getTiddlerText(configPrefix + name,\"enable\") !== \"enable\") {\n\t\t\t\tdelete proto[name];\n\t\t\t}\n\t\t});\n\t}\n};\n\n/*\nInstantiate an array of parse rules\n*/\nWikiParser.prototype.instantiateRules = function(classes,type,startPos) {\n\tvar rulesInfo = [],\n\t\tself = this;\n\t$tw.utils.each(classes,function(RuleClass) {\n\t\t// Instantiate the rule\n\t\tvar rule = new RuleClass(self);\n\t\trule.is = {};\n\t\trule.is[type] = true;\n\t\trule.init(self);\n\t\tvar matchIndex = rule.findNextMatch(startPos);\n\t\tif(matchIndex !== undefined) {\n\t\t\trulesInfo.push({\n\t\t\t\trule: rule,\n\t\t\t\tmatchIndex: matchIndex\n\t\t\t});\n\t\t}\n\t});\n\treturn rulesInfo;\n};\n\n/*\nSkip any whitespace at the current position. Options are:\n\ttreatNewlinesAsNonWhitespace: true if newlines are NOT to be treated as whitespace\n*/\nWikiParser.prototype.skipWhitespace = function(options) {\n\toptions = options || {};\n\tvar whitespaceRegExp = options.treatNewlinesAsNonWhitespace ? /([^\\S\\n]+)/mg : /(\\s+)/mg;\n\twhitespaceRegExp.lastIndex = this.pos;\n\tvar whitespaceMatch = whitespaceRegExp.exec(this.source);\n\tif(whitespaceMatch && whitespaceMatch.index === this.pos) {\n\t\tthis.pos = whitespaceRegExp.lastIndex;\n\t}\n};\n\n/*\nGet the next match out of an array of parse rule instances\n*/\nWikiParser.prototype.findNextMatch = function(rules,startPos) {\n\t// Find the best matching rule by finding the closest match position\n\tvar matchingRule,\n\t\tmatchingRulePos = this.sourceLength;\n\t// Step through each rule\n\tfor(var t=0; t<rules.length; t++) {\n\t\tvar ruleInfo = rules[t];\n\t\t// Ask the rule to get the next match if we've moved past the current one\n\t\tif(ruleInfo.matchIndex !== undefined && ruleInfo.matchIndex < startPos) {\n\t\t\truleInfo.matchIndex = ruleInfo.rule.findNextMatch(startPos);\n\t\t}\n\t\t// Adopt this match if it's closer than the current best match\n\t\tif(ruleInfo.matchIndex !== undefined && ruleInfo.matchIndex <= matchingRulePos) {\n\t\t\tmatchingRule = ruleInfo;\n\t\t\tmatchingRulePos = ruleInfo.matchIndex;\n\t\t}\n\t}\n\treturn matchingRule;\n};\n\n/*\nParse any pragmas at the beginning of a block of parse text\n*/\nWikiParser.prototype.parsePragmas = function() {\n\tvar currentTreeBranch = this.tree;\n\twhile(true) {\n\t\t// Skip whitespace\n\t\tthis.skipWhitespace();\n\t\t// Check for the end of the text\n\t\tif(this.pos >= this.sourceLength) {\n\t\t\tbreak;\n\t\t}\n\t\t// Check if we've arrived at a pragma rule match\n\t\tvar nextMatch = this.findNextMatch(this.pragmaRules,this.pos);\n\t\t// If not, just exit\n\t\tif(!nextMatch || nextMatch.matchIndex !== this.pos) {\n\t\t\tbreak;\n\t\t}\n\t\t// Process the pragma rule\n\t\tvar subTree = nextMatch.rule.parse();\n\t\tif(subTree.length > 0) {\n\t\t\t// Quick hack; we only cope with a single parse tree node being returned, which is true at the moment\n\t\t\tcurrentTreeBranch.push.apply(currentTreeBranch,subTree);\n\t\t\tsubTree[0].children = [];\n\t\t\tcurrentTreeBranch = subTree[0].children;\n\t\t}\n\t}\n\treturn currentTreeBranch;\n};\n\n/*\nParse a block from the current position\n\tterminatorRegExpString: optional regular expression string that identifies the end of plain paragraphs. Must not include capturing parenthesis\n*/\nWikiParser.prototype.parseBlock = function(terminatorRegExpString) {\n\tvar terminatorRegExp = terminatorRegExpString ? new RegExp(\"(\" + terminatorRegExpString + \"|\\\\r?\\\\n\\\\r?\\\\n)\",\"mg\") : /(\\r?\\n\\r?\\n)/mg;\n\tthis.skipWhitespace();\n\tif(this.pos >= this.sourceLength) {\n\t\treturn [];\n\t}\n\t// Look for a block rule that applies at the current position\n\tvar nextMatch = this.findNextMatch(this.blockRules,this.pos);\n\tif(nextMatch && nextMatch.matchIndex === this.pos) {\n\t\treturn nextMatch.rule.parse();\n\t}\n\t// Treat it as a paragraph if we didn't find a block rule\n\treturn [{type: \"element\", tag: \"p\", children: this.parseInlineRun(terminatorRegExp)}];\n};\n\n/*\nParse a series of blocks of text until a terminating regexp is encountered or the end of the text\n\tterminatorRegExpString: terminating regular expression\n*/\nWikiParser.prototype.parseBlocks = function(terminatorRegExpString) {\n\tif(terminatorRegExpString) {\n\t\treturn this.parseBlocksTerminated(terminatorRegExpString);\n\t} else {\n\t\treturn this.parseBlocksUnterminated();\n\t}\n};\n\n/*\nParse a block from the current position to the end of the text\n*/\nWikiParser.prototype.parseBlocksUnterminated = function() {\n\tvar tree = [];\n\twhile(this.pos < this.sourceLength) {\n\t\ttree.push.apply(tree,this.parseBlock());\n\t}\n\treturn tree;\n};\n\n/*\nParse blocks of text until a terminating regexp is encountered\n*/\nWikiParser.prototype.parseBlocksTerminated = function(terminatorRegExpString) {\n\tvar terminatorRegExp = new RegExp(\"(\" + terminatorRegExpString + \")\",\"mg\"),\n\t\ttree = [];\n\t// Skip any whitespace\n\tthis.skipWhitespace();\n\t// Check if we've got the end marker\n\tterminatorRegExp.lastIndex = this.pos;\n\tvar match = terminatorRegExp.exec(this.source);\n\t// Parse the text into blocks\n\twhile(this.pos < this.sourceLength && !(match && match.index === this.pos)) {\n\t\tvar blocks = this.parseBlock(terminatorRegExpString);\n\t\ttree.push.apply(tree,blocks);\n\t\t// Skip any whitespace\n\t\tthis.skipWhitespace();\n\t\t// Check if we've got the end marker\n\t\tterminatorRegExp.lastIndex = this.pos;\n\t\tmatch = terminatorRegExp.exec(this.source);\n\t}\n\tif(match && match.index === this.pos) {\n\t\tthis.pos = match.index + match[0].length;\n\t}\n\treturn tree;\n};\n\n/*\nParse a run of text at the current position\n\tterminatorRegExp: a regexp at which to stop the run\n\toptions: see below\nOptions available:\n\teatTerminator: move the parse position past any encountered terminator (default false)\n*/\nWikiParser.prototype.parseInlineRun = function(terminatorRegExp,options) {\n\tif(terminatorRegExp) {\n\t\treturn this.parseInlineRunTerminated(terminatorRegExp,options);\n\t} else {\n\t\treturn this.parseInlineRunUnterminated(options);\n\t}\n};\n\nWikiParser.prototype.parseInlineRunUnterminated = function(options) {\n\tvar tree = [];\n\t// Find the next occurrence of an inline rule\n\tvar nextMatch = this.findNextMatch(this.inlineRules,this.pos);\n\t// Loop around the matches until we've reached the end of the text\n\twhile(this.pos < this.sourceLength && nextMatch) {\n\t\t// Process the text preceding the run rule\n\t\tif(nextMatch.matchIndex > this.pos) {\n\t\t\tthis.pushTextWidget(tree,this.source.substring(this.pos,nextMatch.matchIndex));\n\t\t\tthis.pos = nextMatch.matchIndex;\n\t\t}\n\t\t// Process the run rule\n\t\ttree.push.apply(tree,nextMatch.rule.parse());\n\t\t// Look for the next run rule\n\t\tnextMatch = this.findNextMatch(this.inlineRules,this.pos);\n\t}\n\t// Process the remaining text\n\tif(this.pos < this.sourceLength) {\n\t\tthis.pushTextWidget(tree,this.source.substr(this.pos));\n\t}\n\tthis.pos = this.sourceLength;\n\treturn tree;\n};\n\nWikiParser.prototype.parseInlineRunTerminated = function(terminatorRegExp,options) {\n\toptions = options || {};\n\tvar tree = [];\n\t// Find the next occurrence of the terminator\n\tterminatorRegExp.lastIndex = this.pos;\n\tvar terminatorMatch = terminatorRegExp.exec(this.source);\n\t// Find the next occurrence of a inlinerule\n\tvar inlineRuleMatch = this.findNextMatch(this.inlineRules,this.pos);\n\t// Loop around until we've reached the end of the text\n\twhile(this.pos < this.sourceLength && (terminatorMatch || inlineRuleMatch)) {\n\t\t// Return if we've found the terminator, and it precedes any inline rule match\n\t\tif(terminatorMatch) {\n\t\t\tif(!inlineRuleMatch || inlineRuleMatch.matchIndex >= terminatorMatch.index) {\n\t\t\t\tif(terminatorMatch.index > this.pos) {\n\t\t\t\t\tthis.pushTextWidget(tree,this.source.substring(this.pos,terminatorMatch.index));\n\t\t\t\t}\n\t\t\t\tthis.pos = terminatorMatch.index;\n\t\t\t\tif(options.eatTerminator) {\n\t\t\t\t\tthis.pos += terminatorMatch[0].length;\n\t\t\t\t}\n\t\t\t\treturn tree;\n\t\t\t}\n\t\t}\n\t\t// Process any inline rule, along with the text preceding it\n\t\tif(inlineRuleMatch) {\n\t\t\t// Preceding text\n\t\t\tif(inlineRuleMatch.matchIndex > this.pos) {\n\t\t\t\tthis.pushTextWidget(tree,this.source.substring(this.pos,inlineRuleMatch.matchIndex));\n\t\t\t\tthis.pos = inlineRuleMatch.matchIndex;\n\t\t\t}\n\t\t\t// Process the inline rule\n\t\t\ttree.push.apply(tree,inlineRuleMatch.rule.parse());\n\t\t\t// Look for the next inline rule\n\t\t\tinlineRuleMatch = this.findNextMatch(this.inlineRules,this.pos);\n\t\t\t// Look for the next terminator match\n\t\t\tterminatorRegExp.lastIndex = this.pos;\n\t\t\tterminatorMatch = terminatorRegExp.exec(this.source);\n\t\t}\n\t}\n\t// Process the remaining text\n\tif(this.pos < this.sourceLength) {\n\t\tthis.pushTextWidget(tree,this.source.substr(this.pos));\n\t}\n\tthis.pos = this.sourceLength;\n\treturn tree;\n};\n\n/*\nPush a text widget onto an array, respecting the configTrimWhiteSpace setting\n*/\nWikiParser.prototype.pushTextWidget = function(array,text) {\n\tif(this.configTrimWhiteSpace) {\n\t\ttext = $tw.utils.trim(text);\n\t}\n\tif(text) {\n\t\tarray.push({type: \"text\", text: text});\t\t\n\t}\n};\n\n/*\nParse zero or more class specifiers `.classname`\n*/\nWikiParser.prototype.parseClasses = function() {\n\tvar classRegExp = /\\.([^\\s\\.]+)/mg,\n\t\tclassNames = [];\n\tclassRegExp.lastIndex = this.pos;\n\tvar match = classRegExp.exec(this.source);\n\twhile(match && match.index === this.pos) {\n\t\tthis.pos = match.index + match[0].length;\n\t\tclassNames.push(match[1]);\n\t\tmatch = classRegExp.exec(this.source);\n\t}\n\treturn classNames;\n};\n\n/*\nAmend the rules used by this instance of the parser\n\ttype: `only` keeps just the named rules, `except` keeps all but the named rules\n\tnames: array of rule names\n*/\nWikiParser.prototype.amendRules = function(type,names) {\n\tnames = names || [];\n\t// Define the filter function\n\tvar keepFilter;\n\tif(type === \"only\") {\n\t\tkeepFilter = function(name) {\n\t\t\treturn names.indexOf(name) !== -1;\n\t\t};\n\t} else if(type === \"except\") {\n\t\tkeepFilter = function(name) {\n\t\t\treturn names.indexOf(name) === -1;\n\t\t};\n\t} else {\n\t\treturn;\n\t}\n\t// Define a function to process each of our rule arrays\n\tvar processRuleArray = function(ruleArray) {\n\t\tfor(var t=ruleArray.length-1; t>=0; t--) {\n\t\t\tif(!keepFilter(ruleArray[t].rule.name)) {\n\t\t\t\truleArray.splice(t,1);\n\t\t\t}\n\t\t}\n\t};\n\t// Process each rule array\n\tprocessRuleArray(this.pragmaRules);\n\tprocessRuleArray(this.blockRules);\n\tprocessRuleArray(this.inlineRules);\n};\n\nexports[\"text/vnd.tiddlywiki\"] = WikiParser;\n\n})();\n\n",
"type": "application/javascript",
"module-type": "parser"
},
"$:/core/modules/parsers/wikiparser/rules/wikirulebase.js": {
"title": "$:/core/modules/parsers/wikiparser/rules/wikirulebase.js",
"text": "/*\\\ntitle: $:/core/modules/parsers/wikiparser/rules/wikirulebase.js\ntype: application/javascript\nmodule-type: global\n\nBase class for wiki parser rules\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nThis constructor is always overridden with a blank constructor, and so shouldn't be used\n*/\nvar WikiRuleBase = function() {\n};\n\n/*\nTo be overridden by individual rules\n*/\nWikiRuleBase.prototype.init = function(parser) {\n\tthis.parser = parser;\n};\n\n/*\nDefault implementation of findNextMatch uses RegExp matching\n*/\nWikiRuleBase.prototype.findNextMatch = function(startPos) {\n\tthis.matchRegExp.lastIndex = startPos;\n\tthis.match = this.matchRegExp.exec(this.parser.source);\n\treturn this.match ? this.match.index : undefined;\n};\n\nexports.WikiRuleBase = WikiRuleBase;\n\n})();\n",
"type": "application/javascript",
"module-type": "global"
},
"$:/core/modules/pluginswitcher.js": {
"title": "$:/core/modules/pluginswitcher.js",
"text": "/*\\\ntitle: $:/core/modules/pluginswitcher.js\ntype: application/javascript\nmodule-type: global\n\nManages switching plugins for themes and languages.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\noptions:\nwiki: wiki store to be used\npluginType: type of plugin to be switched\ncontrollerTitle: title of tiddler used to control switching of this resource\ndefaultPlugins: array of default plugins to be used if nominated plugin isn't found\nonSwitch: callback when plugin is switched (single parameter is array of plugin titles)\n*/\nfunction PluginSwitcher(options) {\n\tthis.wiki = options.wiki;\n\tthis.pluginType = options.pluginType;\n\tthis.controllerTitle = options.controllerTitle;\n\tthis.defaultPlugins = options.defaultPlugins || [];\n\tthis.onSwitch = options.onSwitch;\n\t// Switch to the current plugin\n\tthis.switchPlugins();\n\t// Listen for changes to the selected plugin\n\tvar self = this;\n\tthis.wiki.addEventListener(\"change\",function(changes) {\n\t\tif($tw.utils.hop(changes,self.controllerTitle)) {\n\t\t\tself.switchPlugins();\n\t\t}\n\t});\n}\n\nPluginSwitcher.prototype.switchPlugins = function() {\n\t// Get the name of the current theme\n\tvar selectedPluginTitle = this.wiki.getTiddlerText(this.controllerTitle);\n\t// If it doesn't exist, then fallback to one of the default themes\n\tvar index = 0;\n\twhile(!this.wiki.getTiddler(selectedPluginTitle) && index < this.defaultPlugins.length) {\n\t\tselectedPluginTitle = this.defaultPlugins[index++];\n\t}\n\t// Accumulate the titles of the plugins that we need to load\n\tvar plugins = [],\n\t\tself = this,\n\t\taccumulatePlugin = function(title) {\n\t\t\tvar tiddler = self.wiki.getTiddler(title);\n\t\t\tif(tiddler && tiddler.isPlugin() && plugins.indexOf(title) === -1) {\n\t\t\t\tplugins.push(title);\n\t\t\t\tvar pluginInfo = JSON.parse(self.wiki.getTiddlerText(title)),\n\t\t\t\t\tdependents = $tw.utils.parseStringArray(tiddler.fields.dependents || \"\");\n\t\t\t\t$tw.utils.each(dependents,function(title) {\n\t\t\t\t\taccumulatePlugin(title);\n\t\t\t\t});\n\t\t\t}\n\t\t};\n\taccumulatePlugin(selectedPluginTitle);\n\t// Unregister any existing theme tiddlers\n\tvar unregisteredTiddlers = $tw.wiki.unregisterPluginTiddlers(this.pluginType);\n\t// Register any new theme tiddlers\n\tvar registeredTiddlers = $tw.wiki.registerPluginTiddlers(this.pluginType,plugins);\n\t// Unpack the current theme tiddlers\n\t$tw.wiki.unpackPluginTiddlers();\n\t// Call the switch handler\n\tif(this.onSwitch) {\n\t\tthis.onSwitch(plugins);\n\t}\n};\n\nexports.PluginSwitcher = PluginSwitcher;\n\n})();\n",
"type": "application/javascript",
"module-type": "global"
},
"$:/core/modules/saver-handler.js": {
"title": "$:/core/modules/saver-handler.js",
"text": "/*\\\ntitle: $:/core/modules/saver-handler.js\ntype: application/javascript\nmodule-type: global\n\nThe saver handler tracks changes to the store and handles saving the entire wiki via saver modules.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nInstantiate the saver handler with the following options:\nwiki: wiki to be synced\ndirtyTracking: true if dirty tracking should be performed\n*/\nfunction SaverHandler(options) {\n\tvar self = this;\n\tthis.wiki = options.wiki;\n\tthis.dirtyTracking = options.dirtyTracking;\n\tthis.preloadDirty = options.preloadDirty || [];\n\tthis.pendingAutoSave = false;\n\t// Make a logger\n\tthis.logger = new $tw.utils.Logger(\"saver-handler\");\n\t// Initialise our savers\n\tif($tw.browser) {\n\t\tthis.initSavers();\n\t}\n\t// Only do dirty tracking if required\n\tif($tw.browser && this.dirtyTracking) {\n\t\t// Compile the dirty tiddler filter\n\t\tthis.filterFn = this.wiki.compileFilter(this.wiki.getTiddlerText(this.titleSyncFilter));\n\t\t// Count of changes that have not yet been saved\n\t\tvar filteredChanges = self.filterFn.call(self.wiki,function(iterator) {\n\t\t\t\t$tw.utils.each(self.preloadDirty,function(title) {\n\t\t\t\t\tvar tiddler = self.wiki.getTiddler(title);\n\t\t\t\t\titerator(tiddler,title);\n\t\t\t\t});\n\t\t});\n\t\tthis.numChanges = filteredChanges.length;\n\t\t// Listen out for changes to tiddlers\n\t\tthis.wiki.addEventListener(\"change\",function(changes) {\n\t\t\t// Filter the changes so that we only count changes to tiddlers that we care about\n\t\t\tvar filteredChanges = self.filterFn.call(self.wiki,function(iterator) {\n\t\t\t\t$tw.utils.each(changes,function(change,title) {\n\t\t\t\t\tvar tiddler = self.wiki.getTiddler(title);\n\t\t\t\t\titerator(tiddler,title);\n\t\t\t\t});\n\t\t\t});\n\t\t\t// Adjust the number of changes\n\t\t\tself.numChanges += filteredChanges.length;\n\t\t\tself.updateDirtyStatus();\n\t\t\t// Do any autosave if one is pending and there's no more change events\n\t\t\tif(self.pendingAutoSave && self.wiki.getSizeOfTiddlerEventQueue() === 0) {\n\t\t\t\t// Check if we're dirty\n\t\t\t\tif(self.numChanges > 0) {\n\t\t\t\t\tself.saveWiki({\n\t\t\t\t\t\tmethod: \"autosave\",\n\t\t\t\t\t\tdownloadType: \"text/plain\"\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\tself.pendingAutoSave = false;\n\t\t\t}\n\t\t});\n\t\t// Listen for the autosave event\n\t\t$tw.rootWidget.addEventListener(\"tm-auto-save-wiki\",function(event) {\n\t\t\t// Do the autosave unless there are outstanding tiddler change events\n\t\t\tif(self.wiki.getSizeOfTiddlerEventQueue() === 0) {\n\t\t\t\t// Check if we're dirty\n\t\t\t\tif(self.numChanges > 0) {\n\t\t\t\t\tself.saveWiki({\n\t\t\t\t\t\tmethod: \"autosave\",\n\t\t\t\t\t\tdownloadType: \"text/plain\"\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t// Otherwise put ourselves in the \"pending autosave\" state and wait for the change event before we do the autosave\n\t\t\t\tself.pendingAutoSave = true;\n\t\t\t}\n\t\t});\n\t\t// Set up our beforeunload handler\n\t\t$tw.addUnloadTask(function(event) {\n\t\t\tvar confirmationMessage;\n\t\t\tif(self.isDirty()) {\n\t\t\t\tconfirmationMessage = $tw.language.getString(\"UnsavedChangesWarning\");\n\t\t\t\tevent.returnValue = confirmationMessage; // Gecko\n\t\t\t}\n\t\t\treturn confirmationMessage;\n\t\t});\n\t}\n\t// Install the save action handlers\n\tif($tw.browser) {\n\t\t$tw.rootWidget.addEventListener(\"tm-save-wiki\",function(event) {\n\t\t\tself.saveWiki({\n\t\t\t\ttemplate: event.param,\n\t\t\t\tdownloadType: \"text/plain\",\n\t\t\t\tvariables: event.paramObject\n\t\t\t});\n\t\t});\n\t\t$tw.rootWidget.addEventListener(\"tm-download-file\",function(event) {\n\t\t\tself.saveWiki({\n\t\t\t\tmethod: \"download\",\n\t\t\t\ttemplate: event.param,\n\t\t\t\tdownloadType: \"text/plain\",\n\t\t\t\tvariables: event.paramObject\n\t\t\t});\n\t\t});\n\t}\n}\n\nSaverHandler.prototype.titleSyncFilter = \"$:/config/SaverFilter\";\nSaverHandler.prototype.titleAutoSave = \"$:/config/AutoSave\";\nSaverHandler.prototype.titleSavedNotification = \"$:/language/Notifications/Save/Done\";\n\n/*\nSelect the appropriate saver modules and set them up\n*/\nSaverHandler.prototype.initSavers = function(moduleType) {\n\tmoduleType = moduleType || \"saver\";\n\t// Instantiate the available savers\n\tthis.savers = [];\n\tvar self = this;\n\t$tw.modules.forEachModuleOfType(moduleType,function(title,module) {\n\t\tif(module.canSave(self)) {\n\t\t\tself.savers.push(module.create(self.wiki));\n\t\t}\n\t});\n\t// Sort the savers into priority order\n\tthis.savers.sort(function(a,b) {\n\t\tif(a.info.priority < b.info.priority) {\n\t\t\treturn -1;\n\t\t} else {\n\t\t\tif(a.info.priority > b.info.priority) {\n\t\t\t\treturn +1;\n\t\t\t} else {\n\t\t\t\treturn 0;\n\t\t\t}\n\t\t}\n\t});\n};\n\n/*\nSave the wiki contents. Options are:\n\tmethod: \"save\", \"autosave\" or \"download\"\n\ttemplate: the tiddler containing the template to save\n\tdownloadType: the content type for the saved file\n*/\nSaverHandler.prototype.saveWiki = function(options) {\n\toptions = options || {};\n\tvar self = this,\n\t\tmethod = options.method || \"save\";\n\t// Ignore autosave if disabled\n\tif(method === \"autosave\" && this.wiki.getTiddlerText(this.titleAutoSave,\"yes\") !== \"yes\") {\n\t\treturn false;\n\t}\n\tvar\tvariables = options.variables || {},\n\t\ttemplate = options.template || \"$:/core/save/all\",\n\t\tdownloadType = options.downloadType || \"text/plain\",\n\t\ttext = this.wiki.renderTiddler(downloadType,template,options),\n\t\tcallback = function(err) {\n\t\t\tif(err) {\n\t\t\t\talert($tw.language.getString(\"Error/WhileSaving\") + \":\\n\\n\" + err);\n\t\t\t} else {\n\t\t\t\t// Clear the task queue if we're saving (rather than downloading)\n\t\t\t\tif(method !== \"download\") {\n\t\t\t\t\tself.numChanges = 0;\n\t\t\t\t\tself.updateDirtyStatus();\n\t\t\t\t}\n\t\t\t\t$tw.notifier.display(self.titleSavedNotification);\n\t\t\t\tif(options.callback) {\n\t\t\t\t\toptions.callback();\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t// Call the highest priority saver that supports this method\n\tfor(var t=this.savers.length-1; t>=0; t--) {\n\t\tvar saver = this.savers[t];\n\t\tif(saver.info.capabilities.indexOf(method) !== -1 && saver.save(text,method,callback,{variables: {filename: variables.filename}})) {\n\t\t\tthis.logger.log(\"Saving wiki with method\",method,\"through saver\",saver.info.name);\n\t\t\treturn true;\n\t\t}\n\t}\n\treturn false;\n};\n\n/*\nChecks whether the wiki is dirty (ie the window shouldn't be closed)\n*/\nSaverHandler.prototype.isDirty = function() {\n\treturn this.numChanges > 0;\n};\n\n/*\nUpdate the document body with the class \"tc-dirty\" if the wiki has unsaved/unsynced changes\n*/\nSaverHandler.prototype.updateDirtyStatus = function() {\n\tif($tw.browser) {\n\t\t$tw.utils.toggleClass(document.body,\"tc-dirty\",this.isDirty());\n\t}\n};\n\nexports.SaverHandler = SaverHandler;\n\n})();\n",
"type": "application/javascript",
"module-type": "global"
},
"$:/core/modules/savers/andtidwiki.js": {
"title": "$:/core/modules/savers/andtidwiki.js",
"text": "/*\\\ntitle: $:/core/modules/savers/andtidwiki.js\ntype: application/javascript\nmodule-type: saver\n\nHandles saving changes via the AndTidWiki Android app\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false, netscape: false, Components: false */\n\"use strict\";\n\nvar AndTidWiki = function(wiki) {\n};\n\nAndTidWiki.prototype.save = function(text,method,callback) {\n\t// Get the pathname of this document\n\tvar pathname = decodeURIComponent(document.location.toString().split(\"#\")[0]);\n\t// Strip the file://\n\tif(pathname.indexOf(\"file://\") === 0) {\n\t\tpathname = pathname.substr(7);\n\t}\n\t// Strip any query or location part\n\tvar p = pathname.indexOf(\"?\");\n\tif(p !== -1) {\n\t\tpathname = pathname.substr(0,p);\n\t}\n\tp = pathname.indexOf(\"#\");\n\tif(p !== -1) {\n\t\tpathname = pathname.substr(0,p);\n\t}\n\t// Save the file\n\twindow.twi.saveFile(pathname,text);\n\t// Call the callback\n\tcallback(null);\n\treturn true;\n};\n\n/*\nInformation about this saver\n*/\nAndTidWiki.prototype.info = {\n\tname: \"andtidwiki\",\n\tpriority: 1600,\n\tcapabilities: [\"save\", \"autosave\"]\n};\n\n/*\nStatic method that returns true if this saver is capable of working\n*/\nexports.canSave = function(wiki) {\n\treturn !!window.twi && !!window.twi.saveFile;\n};\n\n/*\nCreate an instance of this saver\n*/\nexports.create = function(wiki) {\n\treturn new AndTidWiki(wiki);\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "saver"
},
"$:/core/modules/savers/beaker.js": {
"title": "$:/core/modules/savers/beaker.js",
"text": "/*\\\ntitle: $:/core/modules/savers/beaker.js\ntype: application/javascript\nmodule-type: saver\n\nSaves files using the Beaker browser's (https://beakerbrowser.com) Dat protocol (https://datproject.org/)\nCompatible with beaker >= V0.7.2\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nSet up the saver\n*/\nvar BeakerSaver = function(wiki) {\n\tthis.wiki = wiki;\n};\n\nBeakerSaver.prototype.save = function(text,method,callback) {\n\tvar dat = new DatArchive(\"\" + window.location),\n\t\tpathname = (\"\" + window.location.pathname).split(\"#\")[0];\n\tdat.stat(pathname).then(function(value) {\n\t\tif(value.isDirectory()) {\n\t\t\tpathname = pathname + \"/index.html\";\n\t\t}\n\t\tdat.writeFile(pathname,text,\"utf8\").then(function(value) {\n\t\t\tcallback(null);\n\t\t},function(reason) {\n\t\t\tcallback(\"Beaker Saver Write Error: \" + reason);\n\t\t});\n\t},function(reason) {\n\t\tcallback(\"Beaker Saver Stat Error: \" + reason);\n\t});\n\treturn true;\n};\n\n/*\nInformation about this saver\n*/\nBeakerSaver.prototype.info = {\n\tname: \"beaker\",\n\tpriority: 3000,\n\tcapabilities: [\"save\", \"autosave\"]\n};\n\n/*\nStatic method that returns true if this saver is capable of working\n*/\nexports.canSave = function(wiki) {\n\treturn !!window.DatArchive && location.protocol===\"dat:\";\n};\n\n/*\nCreate an instance of this saver\n*/\nexports.create = function(wiki) {\n\treturn new BeakerSaver(wiki);\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "saver"
},
"$:/core/modules/savers/download.js": {
"title": "$:/core/modules/savers/download.js",
"text": "/*\\\ntitle: $:/core/modules/savers/download.js\ntype: application/javascript\nmodule-type: saver\n\nHandles saving changes via HTML5's download APIs\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nSelect the appropriate saver module and set it up\n*/\nvar DownloadSaver = function(wiki) {\n};\n\nDownloadSaver.prototype.save = function(text,method,callback,options) {\n\toptions = options || {};\n\t// Get the current filename\n\tvar filename = options.variables.filename;\n\tif(!filename) {\n\t\tvar p = document.location.pathname.lastIndexOf(\"/\");\n\t\tif(p !== -1) {\n\t\t\t// We decode the pathname because document.location is URL encoded by the browser\n\t\t\tfilename = decodeURIComponent(document.location.pathname.substr(p+1));\n\t\t}\n\t}\n\tif(!filename) {\n\t\tfilename = \"tiddlywiki.html\";\n\t}\n\t// Set up the link\n\tvar link = document.createElement(\"a\");\n\tif(Blob !== undefined) {\n\t\tvar blob = new Blob([text], {type: \"text/html\"});\n\t\tlink.setAttribute(\"href\", URL.createObjectURL(blob));\n\t} else {\n\t\tlink.setAttribute(\"href\",\"data:text/html,\" + encodeURIComponent(text));\n\t}\n\tlink.setAttribute(\"download\",filename);\n\tdocument.body.appendChild(link);\n\tlink.click();\n\tdocument.body.removeChild(link);\n\t// Callback that we succeeded\n\tcallback(null);\n\treturn true;\n};\n\n/*\nInformation about this saver\n*/\nDownloadSaver.prototype.info = {\n\tname: \"download\",\n\tpriority: 100\n};\n\nObject.defineProperty(DownloadSaver.prototype.info, \"capabilities\", {\n\tget: function() {\n\t\tvar capabilities = [\"save\", \"download\"];\n\t\tif(($tw.wiki.getTextReference(\"$:/config/DownloadSaver/AutoSave\") || \"\").toLowerCase() === \"yes\") {\n\t\t\tcapabilities.push(\"autosave\");\n\t\t}\n\t\treturn capabilities;\n\t}\n});\n\n/*\nStatic method that returns true if this saver is capable of working\n*/\nexports.canSave = function(wiki) {\n\treturn document.createElement(\"a\").download !== undefined;\n};\n\n/*\nCreate an instance of this saver\n*/\nexports.create = function(wiki) {\n\treturn new DownloadSaver(wiki);\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "saver"
},
"$:/core/modules/savers/fsosaver.js": {
"title": "$:/core/modules/savers/fsosaver.js",
"text": "/*\\\ntitle: $:/core/modules/savers/fsosaver.js\ntype: application/javascript\nmodule-type: saver\n\nHandles saving changes via MS FileSystemObject ActiveXObject\n\nNote: Since TiddlyWiki's markup contains the MOTW, the FileSystemObject normally won't be available. \nHowever, if the wiki is loaded as an .HTA file (Windows HTML Applications) then the FSO can be used.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nSelect the appropriate saver module and set it up\n*/\nvar FSOSaver = function(wiki) {\n};\n\nFSOSaver.prototype.save = function(text,method,callback) {\n\t// Get the pathname of this document\n\tvar pathname = unescape(document.location.pathname);\n\t// Test for a Windows path of the form /x:\\blah...\n\tif(/^\\/[A-Z]\\:\\\\[^\\\\]+/i.test(pathname)) {\t// ie: ^/[a-z]:/[^/]+\n\t\t// Remove the leading slash\n\t\tpathname = pathname.substr(1);\n\t} else if(document.location.hostname !== \"\" && /^\\/\\\\[^\\\\]+\\\\[^\\\\]+/i.test(pathname)) {\t// test for \\\\server\\share\\blah... - ^/[^/]+/[^/]+\n\t\t// Remove the leading slash\n\t\tpathname = pathname.substr(1);\n\t\t// reconstruct UNC path\n\t\tpathname = \"\\\\\\\\\" + document.location.hostname + pathname;\n\t} else {\n\t\treturn false;\n\t}\n\t// Save the file (as UTF-16)\n\tvar fso = new ActiveXObject(\"Scripting.FileSystemObject\");\n\tvar file = fso.OpenTextFile(pathname,2,-1,-1);\n\tfile.Write(text);\n\tfile.Close();\n\t// Callback that we succeeded\n\tcallback(null);\n\treturn true;\n};\n\n/*\nInformation about this saver\n*/\nFSOSaver.prototype.info = {\n\tname: \"FSOSaver\",\n\tpriority: 120,\n\tcapabilities: [\"save\", \"autosave\"]\n};\n\n/*\nStatic method that returns true if this saver is capable of working\n*/\nexports.canSave = function(wiki) {\n\ttry {\n\t\treturn (window.location.protocol === \"file:\") && !!(new ActiveXObject(\"Scripting.FileSystemObject\"));\n\t} catch(e) { return false; }\n};\n\n/*\nCreate an instance of this saver\n*/\nexports.create = function(wiki) {\n\treturn new FSOSaver(wiki);\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "saver"
},
"$:/core/modules/savers/github.js": {
"title": "$:/core/modules/savers/github.js",
"text": "/*\\\ntitle: $:/core/modules/savers/github.js\ntype: application/javascript\nmodule-type: saver\n\nSaves wiki by pushing a commit to the GitHub v3 REST API\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nSelect the appropriate saver module and set it up\n*/\nvar GitHubSaver = function(wiki) {\n\tthis.wiki = wiki;\n};\n\nGitHubSaver.prototype.save = function(text,method,callback) {\n\tvar self = this,\n\t\tusername = this.wiki.getTiddlerText(\"$:/GitHub/Username\"),\n\t\tpassword = $tw.utils.getPassword(\"github\"),\n\t\trepo = this.wiki.getTiddlerText(\"$:/GitHub/Repo\"),\n\t\tpath = this.wiki.getTiddlerText(\"$:/GitHub/Path\"),\n\t\tfilename = this.wiki.getTiddlerText(\"$:/GitHub/Filename\"),\n\t\tbranch = this.wiki.getTiddlerText(\"$:/GitHub/Branch\") || \"master\",\n\t\tendpoint = this.wiki.getTiddlerText(\"$:/GitHub/ServerURL\") || \"https://api.github.com\",\n\t\theaders = {\n\t\t\t\"Accept\": \"application/vnd.github.v3+json\",\n\t\t\t\"Content-Type\": \"application/json;charset=UTF-8\",\n\t\t\t\"Authorization\": \"Basic \" + window.btoa(username + \":\" + password)\n\t\t};\n\t// Bail if we don't have everything we need\n\tif(!username || !password || !repo || !path || !filename) {\n\t\treturn false;\n\t}\n\t// Make sure the path start and ends with a slash\n\tif(path.substring(0,1) !== \"/\") {\n\t\tpath = \"/\" + path;\n\t}\n\tif(path.substring(path.length - 1) !== \"/\") {\n\t\tpath = path + \"/\";\n\t}\n\t// Compose the base URI\n\tvar uri = endpoint + \"/repos/\" + repo + \"/contents\" + path;\n\t// Perform a get request to get the details (inc shas) of files in the same path as our file\n\t$tw.utils.httpRequest({\n\t\turl: uri,\n\t\ttype: \"GET\",\n\t\theaders: headers,\n\t\tdata: {\n\t\t\tref: branch\n\t\t},\n\t\tcallback: function(err,getResponseDataJson,xhr) {\n\t\t\tvar getResponseData,sha = \"\";\n\t\t\tif(err && xhr.status !== 404) {\n\t\t\t\treturn callback(err);\n\t\t\t}\n\t\t\tif(xhr.status !== 404) {\n\t\t\t\tgetResponseData = JSON.parse(getResponseDataJson);\n\t\t\t\t$tw.utils.each(getResponseData,function(details) {\n\t\t\t\t\tif(details.name === filename) {\n\t\t\t\t\t\tsha = details.sha;\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\t\t\tvar data = {\n\t\t\t\tmessage: $tw.language.getRawString(\"ControlPanel/Saving/GitService/CommitMessage\"),\n\t\t\t\tcontent: $tw.utils.base64Encode(text),\n\t\t\t\tbranch: branch,\n\t\t\t\tsha: sha\n\t\t\t};\n\t\t\t// Perform a PUT request to save the file\n\t\t\t$tw.utils.httpRequest({\n\t\t\t\turl: uri + filename,\n\t\t\t\ttype: \"PUT\",\n\t\t\t\theaders: headers,\n\t\t\t\tdata: JSON.stringify(data),\n\t\t\t\tcallback: function(err,putResponseDataJson,xhr) {\n\t\t\t\t\tif(err) {\n\t\t\t\t\t\treturn callback(err);\n\t\t\t\t\t}\n\t\t\t\t\tvar putResponseData = JSON.parse(putResponseDataJson);\n\t\t\t\t\tcallback(null);\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\t});\n\treturn true;\n};\n\n/*\nInformation about this saver\n*/\nGitHubSaver.prototype.info = {\n\tname: \"github\",\n\tpriority: 2000,\n\tcapabilities: [\"save\", \"autosave\"]\n};\n\n/*\nStatic method that returns true if this saver is capable of working\n*/\nexports.canSave = function(wiki) {\n\treturn true;\n};\n\n/*\nCreate an instance of this saver\n*/\nexports.create = function(wiki) {\n\treturn new GitHubSaver(wiki);\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "saver"
},
"$:/core/modules/savers/gitlab.js": {
"title": "$:/core/modules/savers/gitlab.js",
"text": "/*\\\ntitle: $:/core/modules/savers/gitlab.js\ntype: application/javascript\nmodule-type: saver\n\nSaves wiki by pushing a commit to the GitLab REST API\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: true */\n\"use strict\";\n\n/*\nSelect the appropriate saver module and set it up\n*/\nvar GitLabSaver = function(wiki) {\n\tthis.wiki = wiki;\n};\n\nGitLabSaver.prototype.save = function(text,method,callback) {\n\t/* See https://docs.gitlab.com/ee/api/repository_files.html */\n\tvar self = this,\n\t\tusername = this.wiki.getTiddlerText(\"$:/GitLab/Username\"),\n\t\tpassword = $tw.utils.getPassword(\"gitlab\"),\n\t\trepo = this.wiki.getTiddlerText(\"$:/GitLab/Repo\"),\n\t\tpath = this.wiki.getTiddlerText(\"$:/GitLab/Path\"),\n\t\tfilename = this.wiki.getTiddlerText(\"$:/GitLab/Filename\"),\n\t\tbranch = this.wiki.getTiddlerText(\"$:/GitLab/Branch\") || \"master\",\n\t\tendpoint = this.wiki.getTiddlerText(\"$:/GitLab/ServerURL\") || \"https://gitlab.com/api/v4\",\n\t\theaders = {\n\t\t\t\"Content-Type\": \"application/json;charset=UTF-8\",\n\t\t\t\"Private-Token\": password\n\t\t};\n\t// Bail if we don't have everything we need\n\tif(!username || !password || !repo || !path || !filename) {\n\t\treturn false;\n\t}\n\t// Make sure the path start and ends with a slash\n\tif(path.substring(0,1) !== \"/\") {\n\t\tpath = \"/\" + path;\n\t}\n\tif(path.substring(path.length - 1) !== \"/\") {\n\t\tpath = path + \"/\";\n\t}\n\t// Compose the base URI\n\tvar uri = endpoint + \"/projects/\" + encodeURIComponent(repo) + \"/repository/\";\n\t// Perform a get request to get the details (inc shas) of files in the same path as our file\n\t$tw.utils.httpRequest({\n\t\turl: uri + \"tree/\" + encodeURIComponent(path.replace(/^\\/+|\\/$/g, '')),\n\t\ttype: \"GET\",\n\t\theaders: headers,\n\t\tdata: {\n\t\t\tref: branch\n\t\t},\n\t\tcallback: function(err,getResponseDataJson,xhr) {\n\t\t\tvar getResponseData,sha = \"\";\n\t\t\tif(err && xhr.status !== 404) {\n\t\t\t\treturn callback(err);\n\t\t\t}\n\t\t\tvar requestType = \"POST\";\n\t\t\tif(xhr.status !== 404) {\n\t\t\t\tgetResponseData = JSON.parse(getResponseDataJson);\n\t\t\t\t$tw.utils.each(getResponseData,function(details) {\n\t\t\t\t\tif(details.name === filename) {\n\t\t\t\t\t\trequestType = \"PUT\";\n\t\t\t\t\t\tsha = details.sha;\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\t\t\tvar data = {\n\t\t\t\tcommit_message: $tw.language.getRawString(\"ControlPanel/Saving/GitService/CommitMessage\"),\n\t\t\t\tcontent: $tw.utils.base64Encode(text),\n\t\t\t\tbranch: branch,\n\t\t\t\tsha: sha\n\t\t\t};\n\t\t\t// Perform a request to save the file\n\t\t\t$tw.utils.httpRequest({\n\t\t\t\turl: uri + \"files/\" + encodeURIComponent(path.replace(/^\\/+/, '') + filename),\n\t\t\t\ttype: requestType,\n\t\t\t\theaders: headers,\n\t\t\t\tdata: JSON.stringify(data),\n\t\t\t\tcallback: function(err,putResponseDataJson,xhr) {\n\t\t\t\t\tif(err) {\n\t\t\t\t\t\treturn callback(err);\n\t\t\t\t\t}\n\t\t\t\t\tvar putResponseData = JSON.parse(putResponseDataJson);\n\t\t\t\t\tcallback(null);\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\t});\n\treturn true;\n};\n\n/*\nInformation about this saver\n*/\nGitLabSaver.prototype.info = {\n\tname: \"gitlab\",\n\tpriority: 2000,\n\tcapabilities: [\"save\", \"autosave\"]\n};\n\n/*\nStatic method that returns true if this saver is capable of working\n*/\nexports.canSave = function(wiki) {\n\treturn true;\n};\n\n/*\nCreate an instance of this saver\n*/\nexports.create = function(wiki) {\n\treturn new GitLabSaver(wiki);\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "saver"
},
"$:/core/modules/savers/manualdownload.js": {
"title": "$:/core/modules/savers/manualdownload.js",
"text": "/*\\\ntitle: $:/core/modules/savers/manualdownload.js\ntype: application/javascript\nmodule-type: saver\n\nHandles saving changes via HTML5's download APIs\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n// Title of the tiddler containing the download message\nvar downloadInstructionsTitle = \"$:/language/Modals/Download\";\n\n/*\nSelect the appropriate saver module and set it up\n*/\nvar ManualDownloadSaver = function(wiki) {\n};\n\nManualDownloadSaver.prototype.save = function(text,method,callback) {\n\t$tw.modal.display(downloadInstructionsTitle,{\n\t\tdownloadLink: \"data:text/html,\" + encodeURIComponent(text)\n\t});\n\t// Callback that we succeeded\n\tcallback(null);\n\treturn true;\n};\n\n/*\nInformation about this saver\n*/\nManualDownloadSaver.prototype.info = {\n\tname: \"manualdownload\",\n\tpriority: 0,\n\tcapabilities: [\"save\", \"download\"]\n};\n\n/*\nStatic method that returns true if this saver is capable of working\n*/\nexports.canSave = function(wiki) {\n\treturn true;\n};\n\n/*\nCreate an instance of this saver\n*/\nexports.create = function(wiki) {\n\treturn new ManualDownloadSaver(wiki);\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "saver"
},
"$:/core/modules/savers/msdownload.js": {
"title": "$:/core/modules/savers/msdownload.js",
"text": "/*\\\ntitle: $:/core/modules/savers/msdownload.js\ntype: application/javascript\nmodule-type: saver\n\nHandles saving changes via window.navigator.msSaveBlob()\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nSelect the appropriate saver module and set it up\n*/\nvar MsDownloadSaver = function(wiki) {\n};\n\nMsDownloadSaver.prototype.save = function(text,method,callback) {\n\t// Get the current filename\n\tvar filename = \"tiddlywiki.html\",\n\t\tp = document.location.pathname.lastIndexOf(\"/\");\n\tif(p !== -1) {\n\t\tfilename = document.location.pathname.substr(p+1);\n\t}\n\t// Set up the link\n\tvar blob = new Blob([text], {type: \"text/html\"});\n\twindow.navigator.msSaveBlob(blob,filename);\n\t// Callback that we succeeded\n\tcallback(null);\n\treturn true;\n};\n\n/*\nInformation about this saver\n*/\nMsDownloadSaver.prototype.info = {\n\tname: \"msdownload\",\n\tpriority: 110,\n\tcapabilities: [\"save\", \"download\"]\n};\n\n/*\nStatic method that returns true if this saver is capable of working\n*/\nexports.canSave = function(wiki) {\n\treturn !!window.navigator.msSaveBlob;\n};\n\n/*\nCreate an instance of this saver\n*/\nexports.create = function(wiki) {\n\treturn new MsDownloadSaver(wiki);\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "saver"
},
"$:/core/modules/savers/put.js": {
"title": "$:/core/modules/savers/put.js",
"text": "/*\\\ntitle: $:/core/modules/savers/put.js\ntype: application/javascript\nmodule-type: saver\n\nSaves wiki by performing a PUT request to the server\n\nWorks with any server which accepts a PUT request\nto the current URL, such as a WebDAV server.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nRetrieve ETag if available\n*/\nvar retrieveETag = function(self) {\n\tvar headers = {\n\t\tAccept: \"*/*;charset=UTF-8\"\n\t};\n\t$tw.utils.httpRequest({\n\t\turl: self.uri(),\n\t\ttype: \"HEAD\",\n\t\theaders: headers,\n\t\tcallback: function(err,data,xhr) {\n\t\t\tif(err) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tvar etag = xhr.getResponseHeader(\"ETag\");\n\t\t\tif(!etag) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tself.etag = etag.replace(/^W\\//,\"\");\n\t\t}\n\t});\n};\n\n\n/*\nSelect the appropriate saver module and set it up\n*/\nvar PutSaver = function(wiki) {\n\tthis.wiki = wiki;\n\tvar self = this;\n\tvar uri = this.uri();\n\t// Async server probe. Until probe finishes, save will fail fast\n\t// See also https://github.com/Jermolene/TiddlyWiki5/issues/2276\n\t$tw.utils.httpRequest({\n\t\turl: uri,\n\t\ttype: \"OPTIONS\",\n\t\tcallback: function(err,data,xhr) {\n\t\t\t// Check DAV header http://www.webdav.org/specs/rfc2518.html#rfc.section.9.1\n\t\t\tif(!err) {\n\t\t\t\tself.serverAcceptsPuts = xhr.status === 200 && !!xhr.getResponseHeader(\"dav\");\n\t\t\t}\n\t\t}\n\t});\n\tretrieveETag(this);\n};\n\nPutSaver.prototype.uri = function() {\n\treturn document.location.toString().split(\"#\")[0];\n};\n\n// TODO: in case of edit conflict\n// Prompt: Do you want to save over this? Y/N\n// Merging would be ideal, and may be possible using future generic merge flow\nPutSaver.prototype.save = function(text,method,callback) {\n\tif(!this.serverAcceptsPuts) {\n\t\treturn false;\n\t}\n\tvar self = this;\n\tvar headers = {\n\t\t\"Content-Type\": \"text/html;charset=UTF-8\"\n\t};\n\tif(this.etag) {\n\t\theaders[\"If-Match\"] = this.etag;\n\t}\n\t$tw.utils.httpRequest({\n\t\turl: this.uri(),\n\t\ttype: \"PUT\",\n\t\theaders: headers,\n\t\tdata: text,\n\t\tcallback: function(err,data,xhr) {\n\t\t\tif(err) {\n\t\t\t\t// response is textual: \"XMLHttpRequest error code: 412\"\n\t\t\t\tvar status = Number(err.substring(err.indexOf(':') + 2, err.length))\n\t\t\t\tif(status === 412) { // edit conflict\n\t\t\t\t\tvar message = $tw.language.getString(\"Error/EditConflict\");\n\t\t\t\t\tcallback(message);\n\t\t\t\t} else {\n\t\t\t\t\tcallback(err); // fail\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tself.etag = xhr.getResponseHeader(\"ETag\");\n\t\t\t\tif(self.etag == null) {\n\t\t\t\t\tretrieveETag(self);\n\t\t\t\t}\n\t\t\t\tcallback(null); // success\n\t\t\t}\n\t\t}\n\t});\n\treturn true;\n};\n\n/*\nInformation about this saver\n*/\nPutSaver.prototype.info = {\n\tname: \"put\",\n\tpriority: 2000,\n\tcapabilities: [\"save\",\"autosave\"]\n};\n\n/*\nStatic method that returns true if this saver is capable of working\n*/\nexports.canSave = function(wiki) {\n\treturn /^https?:/.test(location.protocol);\n};\n\n/*\nCreate an instance of this saver\n*/\nexports.create = function(wiki) {\n\treturn new PutSaver(wiki);\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "saver"
},
"$:/core/modules/savers/tiddlyfox.js": {
"title": "$:/core/modules/savers/tiddlyfox.js",
"text": "/*\\\ntitle: $:/core/modules/savers/tiddlyfox.js\ntype: application/javascript\nmodule-type: saver\n\nHandles saving changes via the TiddlyFox file extension\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false, netscape: false, Components: false */\n\"use strict\";\n\nvar TiddlyFoxSaver = function(wiki) {\n};\n\nTiddlyFoxSaver.prototype.save = function(text,method,callback) {\n\tvar messageBox = document.getElementById(\"tiddlyfox-message-box\");\n\tif(messageBox) {\n\t\t// Get the pathname of this document\n\t\tvar pathname = document.location.toString().split(\"#\")[0];\n\t\t// Replace file://localhost/ with file:///\n\t\tif(pathname.indexOf(\"file://localhost/\") === 0) {\n\t\t\tpathname = \"file://\" + pathname.substr(16);\n\t\t}\n\t\t// Windows path file:///x:/blah/blah --> x:\\blah\\blah\n\t\tif(/^file\\:\\/\\/\\/[A-Z]\\:\\//i.test(pathname)) {\n\t\t\t// Remove the leading slash and convert slashes to backslashes\n\t\t\tpathname = pathname.substr(8).replace(/\\//g,\"\\\\\");\n\t\t// Firefox Windows network path file://///server/share/blah/blah --> //server/share/blah/blah\n\t\t} else if(pathname.indexOf(\"file://///\") === 0) {\n\t\t\tpathname = \"\\\\\\\\\" + unescape(pathname.substr(10)).replace(/\\//g,\"\\\\\");\n\t\t// Mac/Unix local path file:///path/path --> /path/path\n\t\t} else if(pathname.indexOf(\"file:///\") === 0) {\n\t\t\tpathname = unescape(pathname.substr(7));\n\t\t// Mac/Unix local path file:/path/path --> /path/path\n\t\t} else if(pathname.indexOf(\"file:/\") === 0) {\n\t\t\tpathname = unescape(pathname.substr(5));\n\t\t// Otherwise Windows networth path file://server/share/path/path --> \\\\server\\share\\path\\path\n\t\t} else {\n\t\t\tpathname = \"\\\\\\\\\" + unescape(pathname.substr(7)).replace(new RegExp(\"/\",\"g\"),\"\\\\\");\n\t\t}\n\t\t// Create the message element and put it in the message box\n\t\tvar message = document.createElement(\"div\");\n\t\tmessage.setAttribute(\"data-tiddlyfox-path\",decodeURIComponent(pathname));\n\t\tmessage.setAttribute(\"data-tiddlyfox-content\",text);\n\t\tmessageBox.appendChild(message);\n\t\t// Add an event handler for when the file has been saved\n\t\tmessage.addEventListener(\"tiddlyfox-have-saved-file\",function(event) {\n\t\t\tcallback(null);\n\t\t}, false);\n\t\t// Create and dispatch the custom event to the extension\n\t\tvar event = document.createEvent(\"Events\");\n\t\tevent.initEvent(\"tiddlyfox-save-file\",true,false);\n\t\tmessage.dispatchEvent(event);\n\t\treturn true;\n\t} else {\n\t\treturn false;\n\t}\n};\n\n/*\nInformation about this saver\n*/\nTiddlyFoxSaver.prototype.info = {\n\tname: \"tiddlyfox\",\n\tpriority: 1500,\n\tcapabilities: [\"save\", \"autosave\"]\n};\n\n/*\nStatic method that returns true if this saver is capable of working\n*/\nexports.canSave = function(wiki) {\n\treturn true;\n};\n\n/*\nCreate an instance of this saver\n*/\nexports.create = function(wiki) {\n\treturn new TiddlyFoxSaver(wiki);\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "saver"
},
"$:/core/modules/savers/tiddlyie.js": {
"title": "$:/core/modules/savers/tiddlyie.js",
"text": "/*\\\ntitle: $:/core/modules/savers/tiddlyie.js\ntype: application/javascript\nmodule-type: saver\n\nHandles saving changes via Internet Explorer BHO extenion (TiddlyIE)\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nSelect the appropriate saver module and set it up\n*/\nvar TiddlyIESaver = function(wiki) {\n};\n\nTiddlyIESaver.prototype.save = function(text,method,callback) {\n\t// Check existence of TiddlyIE BHO extension (note: only works after document is complete)\n\tif(typeof(window.TiddlyIE) != \"undefined\") {\n\t\t// Get the pathname of this document\n\t\tvar pathname = unescape(document.location.pathname);\n\t\t// Test for a Windows path of the form /x:/blah...\n\t\tif(/^\\/[A-Z]\\:\\/[^\\/]+/i.test(pathname)) {\t// ie: ^/[a-z]:/[^/]+ (is this better?: ^/[a-z]:/[^/]+(/[^/]+)*\\.[^/]+ )\n\t\t\t// Remove the leading slash\n\t\t\tpathname = pathname.substr(1);\n\t\t\t// Convert slashes to backslashes\n\t\t\tpathname = pathname.replace(/\\//g,\"\\\\\");\n\t\t} else if(document.hostname !== \"\" && /^\\/[^\\/]+\\/[^\\/]+/i.test(pathname)) {\t// test for \\\\server\\share\\blah... - ^/[^/]+/[^/]+\n\t\t\t// Convert slashes to backslashes\n\t\t\tpathname = pathname.replace(/\\//g,\"\\\\\");\n\t\t\t// reconstruct UNC path\n\t\t\tpathname = \"\\\\\\\\\" + document.location.hostname + pathname;\n\t\t} else return false;\n\t\t// Prompt the user to save the file\n\t\twindow.TiddlyIE.save(pathname, text);\n\t\t// Callback that we succeeded\n\t\tcallback(null);\n\t\treturn true;\n\t} else {\n\t\treturn false;\n\t}\n};\n\n/*\nInformation about this saver\n*/\nTiddlyIESaver.prototype.info = {\n\tname: \"tiddlyiesaver\",\n\tpriority: 1500,\n\tcapabilities: [\"save\"]\n};\n\n/*\nStatic method that returns true if this saver is capable of working\n*/\nexports.canSave = function(wiki) {\n\treturn (window.location.protocol === \"file:\");\n};\n\n/*\nCreate an instance of this saver\n*/\nexports.create = function(wiki) {\n\treturn new TiddlyIESaver(wiki);\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "saver"
},
"$:/core/modules/savers/twedit.js": {
"title": "$:/core/modules/savers/twedit.js",
"text": "/*\\\ntitle: $:/core/modules/savers/twedit.js\ntype: application/javascript\nmodule-type: saver\n\nHandles saving changes via the TWEdit iOS app\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false, netscape: false, Components: false */\n\"use strict\";\n\nvar TWEditSaver = function(wiki) {\n};\n\nTWEditSaver.prototype.save = function(text,method,callback) {\n\t// Bail if we're not running under TWEdit\n\tif(typeof DeviceInfo !== \"object\") {\n\t\treturn false;\n\t}\n\t// Get the pathname of this document\n\tvar pathname = decodeURIComponent(document.location.pathname);\n\t// Strip any query or location part\n\tvar p = pathname.indexOf(\"?\");\n\tif(p !== -1) {\n\t\tpathname = pathname.substr(0,p);\n\t}\n\tp = pathname.indexOf(\"#\");\n\tif(p !== -1) {\n\t\tpathname = pathname.substr(0,p);\n\t}\n\t// Remove the leading \"/Documents\" from path\n\tvar prefix = \"/Documents\";\n\tif(pathname.indexOf(prefix) === 0) {\n\t\tpathname = pathname.substr(prefix.length);\n\t}\n\t// Error handler\n\tvar errorHandler = function(event) {\n\t\t// Error\n\t\tcallback($tw.language.getString(\"Error/SavingToTWEdit\") + \": \" + event.target.error.code);\n\t};\n\t// Get the file system\n\twindow.requestFileSystem(LocalFileSystem.PERSISTENT,0,function(fileSystem) {\n\t\t// Now we've got the filesystem, get the fileEntry\n\t\tfileSystem.root.getFile(pathname, {create: true}, function(fileEntry) {\n\t\t\t// Now we've got the fileEntry, create the writer\n\t\t\tfileEntry.createWriter(function(writer) {\n\t\t\t\twriter.onerror = errorHandler;\n\t\t\t\twriter.onwrite = function() {\n\t\t\t\t\tcallback(null);\n\t\t\t\t};\n\t\t\t\twriter.position = 0;\n\t\t\t\twriter.write(text);\n\t\t\t},errorHandler);\n\t\t}, errorHandler);\n\t}, errorHandler);\n\treturn true;\n};\n\n/*\nInformation about this saver\n*/\nTWEditSaver.prototype.info = {\n\tname: \"twedit\",\n\tpriority: 1600,\n\tcapabilities: [\"save\", \"autosave\"]\n};\n\n/*\nStatic method that returns true if this saver is capable of working\n*/\nexports.canSave = function(wiki) {\n\treturn true;\n};\n\n/*\nCreate an instance of this saver\n*/\nexports.create = function(wiki) {\n\treturn new TWEditSaver(wiki);\n};\n\n/////////////////////////// Hack\n// HACK: This ensures that TWEdit recognises us as a TiddlyWiki document\nif($tw.browser) {\n\twindow.version = {title: \"TiddlyWiki\"};\n}\n\n})();\n",
"type": "application/javascript",
"module-type": "saver"
},
"$:/core/modules/savers/upload.js": {
"title": "$:/core/modules/savers/upload.js",
"text": "/*\\\ntitle: $:/core/modules/savers/upload.js\ntype: application/javascript\nmodule-type: saver\n\nHandles saving changes via upload to a server.\n\nDesigned to be compatible with BidiX's UploadPlugin at http://tiddlywiki.bidix.info/#UploadPlugin\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nSelect the appropriate saver module and set it up\n*/\nvar UploadSaver = function(wiki) {\n\tthis.wiki = wiki;\n};\n\nUploadSaver.prototype.save = function(text,method,callback) {\n\t// Get the various parameters we need\n\tvar backupDir = this.wiki.getTextReference(\"$:/UploadBackupDir\") || \".\",\n\t\tusername = this.wiki.getTextReference(\"$:/UploadName\"),\n\t\tpassword = $tw.utils.getPassword(\"upload\"),\n\t\tuploadDir = this.wiki.getTextReference(\"$:/UploadDir\") || \".\",\n\t\tuploadFilename = this.wiki.getTextReference(\"$:/UploadFilename\") || \"index.html\",\n\t\turl = this.wiki.getTextReference(\"$:/UploadURL\");\n\t// Bail out if we don't have the bits we need\n\tif(!username || username.toString().trim() === \"\" || !password || password.toString().trim() === \"\") {\n\t\treturn false;\n\t}\n\t// Construct the url if not provided\n\tif(!url) {\n\t\turl = \"http://\" + username + \".tiddlyspot.com/store.cgi\";\n\t}\n\t// Assemble the header\n\tvar boundary = \"---------------------------\" + \"AaB03x\";\t\n\tvar uploadFormName = \"UploadPlugin\";\n\tvar head = [];\n\thead.push(\"--\" + boundary + \"\\r\\nContent-disposition: form-data; name=\\\"UploadPlugin\\\"\\r\\n\");\n\thead.push(\"backupDir=\" + backupDir + \";user=\" + username + \";password=\" + password + \";uploaddir=\" + uploadDir + \";;\"); \n\thead.push(\"\\r\\n\" + \"--\" + boundary);\n\thead.push(\"Content-disposition: form-data; name=\\\"userfile\\\"; filename=\\\"\" + uploadFilename + \"\\\"\");\n\thead.push(\"Content-Type: text/html;charset=UTF-8\");\n\thead.push(\"Content-Length: \" + text.length + \"\\r\\n\");\n\thead.push(\"\");\n\t// Assemble the tail and the data itself\n\tvar tail = \"\\r\\n--\" + boundary + \"--\\r\\n\",\n\t\tdata = head.join(\"\\r\\n\") + text + tail;\n\t// Do the HTTP post\n\tvar http = new XMLHttpRequest();\n\thttp.open(\"POST\",url,true,username,password);\n\thttp.setRequestHeader(\"Content-Type\",\"multipart/form-data; charset=UTF-8; boundary=\" + boundary);\n\thttp.onreadystatechange = function() {\n\t\tif(http.readyState == 4 && http.status == 200) {\n\t\t\tif(http.responseText.substr(0,4) === \"0 - \") {\n\t\t\t\tcallback(null);\n\t\t\t} else {\n\t\t\t\tcallback(http.responseText);\n\t\t\t}\n\t\t}\n\t};\n\ttry {\n\t\thttp.send(data);\n\t} catch(ex) {\n\t\treturn callback($tw.language.getString(\"Error/Caption\") + \":\" + ex);\n\t}\n\t$tw.notifier.display(\"$:/language/Notifications/Save/Starting\");\n\treturn true;\n};\n\n/*\nInformation about this saver\n*/\nUploadSaver.prototype.info = {\n\tname: \"upload\",\n\tpriority: 2000,\n\tcapabilities: [\"save\", \"autosave\"]\n};\n\n/*\nStatic method that returns true if this saver is capable of working\n*/\nexports.canSave = function(wiki) {\n\treturn true;\n};\n\n/*\nCreate an instance of this saver\n*/\nexports.create = function(wiki) {\n\treturn new UploadSaver(wiki);\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "saver"
},
"$:/core/modules/server/authenticators/basic.js": {
"title": "$:/core/modules/server/authenticators/basic.js",
"text": "/*\\\ntitle: $:/core/modules/server/authenticators/basic.js\ntype: application/javascript\nmodule-type: authenticator\n\nAuthenticator for WWW basic authentication\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nif($tw.node) {\n\tvar util = require(\"util\"),\n\t\tfs = require(\"fs\"),\n\t\turl = require(\"url\"),\n\t\tpath = require(\"path\");\n}\n\nfunction BasicAuthenticator(server) {\n\tthis.server = server;\n\tthis.credentialsData = [];\n}\n\n/*\nReturns true if the authenticator is active, false if it is inactive, or a string if there is an error\n*/\nBasicAuthenticator.prototype.init = function() {\n\t// Read the credentials data\n\tthis.credentialsFilepath = this.server.get(\"credentials\");\n\tif(this.credentialsFilepath) {\n\t\tvar resolveCredentialsFilepath = path.resolve($tw.boot.wikiPath,this.credentialsFilepath);\n\t\tif(fs.existsSync(resolveCredentialsFilepath) && !fs.statSync(resolveCredentialsFilepath).isDirectory()) {\n\t\t\tvar credentialsText = fs.readFileSync(resolveCredentialsFilepath,\"utf8\"),\n\t\t\t\tcredentialsData = $tw.utils.parseCsvStringWithHeader(credentialsText);\n\t\t\tif(typeof credentialsData === \"string\") {\n\t\t\t\treturn \"Error: \" + credentialsData + \" reading credentials from '\" + resolveCredentialsFilepath + \"'\";\n\t\t\t} else {\n\t\t\t\tthis.credentialsData = credentialsData;\n\t\t\t}\n\t\t} else {\n\t\t\treturn \"Error: Unable to load user credentials from '\" + resolveCredentialsFilepath + \"'\";\n\t\t}\n\t}\n\t// Add the hardcoded username and password if specified\n\tif(this.server.get(\"username\") && this.server.get(\"password\")) {\n\t\tthis.credentialsData = this.credentialsData || [];\n\t\tthis.credentialsData.push({\n\t\t\tusername: this.server.get(\"username\"),\n\t\t\tpassword: this.server.get(\"password\")\n\t\t});\n\t}\n\treturn this.credentialsData.length > 0;\n};\n\n/*\nReturns true if the request is authenticated and assigns the \"authenticatedUsername\" state variable.\nReturns false if the request couldn't be authenticated having sent an appropriate response to the browser\n*/\nBasicAuthenticator.prototype.authenticateRequest = function(request,response,state) {\n\t// Extract the incoming username and password from the request\n\tvar header = request.headers.authorization || \"\";\n\tif(!header && state.allowAnon) {\n\t\t// If there's no header and anonymous access is allowed then we don't set authenticatedUsername\n\t\treturn true;\n\t}\n\tvar token = header.split(/\\s+/).pop() || \"\",\n\t\tauth = $tw.utils.base64Decode(token),\n\t\tparts = auth.split(/:/),\n\t\tincomingUsername = parts[0],\n\t\tincomingPassword = parts[1];\n\t// Check that at least one of the credentials matches\n\tvar matchingCredentials = this.credentialsData.find(function(credential) {\n\t\treturn credential.username === incomingUsername && credential.password === incomingPassword;\n\t});\n\tif(matchingCredentials) {\n\t\t// If so, add the authenticated username to the request state\n\t\tstate.authenticatedUsername = incomingUsername;\n\t\treturn true;\n\t} else {\n\t\t// If not, return an authentication challenge\n\t\tresponse.writeHead(401,\"Authentication required\",{\n\t\t\t\"WWW-Authenticate\": 'Basic realm=\"Please provide your username and password to login to ' + state.server.servername + '\"'\n\t\t});\n\t\tresponse.end();\n\t\treturn false;\n\t}\n};\n\nexports.AuthenticatorClass = BasicAuthenticator;\n\n})();\n",
"type": "application/javascript",
"module-type": "authenticator"
},
"$:/core/modules/server/authenticators/header.js": {
"title": "$:/core/modules/server/authenticators/header.js",
"text": "/*\\\ntitle: $:/core/modules/server/authenticators/header.js\ntype: application/javascript\nmodule-type: authenticator\n\nAuthenticator for trusted header authentication\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nfunction HeaderAuthenticator(server) {\n\tthis.server = server;\n\tthis.header = server.get(\"authenticated-user-header\");\n}\n\n/*\nReturns true if the authenticator is active, false if it is inactive, or a string if there is an error\n*/\nHeaderAuthenticator.prototype.init = function() {\n\treturn !!this.header;\n};\n\n/*\nReturns true if the request is authenticated and assigns the \"authenticatedUsername\" state variable.\nReturns false if the request couldn't be authenticated having sent an appropriate response to the browser\n*/\nHeaderAuthenticator.prototype.authenticateRequest = function(request,response,state) {\n\t// Otherwise, authenticate as the username in the specified header\n\tvar username = request.headers[this.header];\n\tif(!username && !state.allowAnon) {\n\t\tresponse.writeHead(401,\"Authorization header required to login to '\" + state.server.servername + \"'\");\n\t\tresponse.end();\n\t\treturn false;\n\t} else {\n\t\t// authenticatedUsername will be undefined for anonymous users\n\t\tstate.authenticatedUsername = username;\n\t\treturn true;\n\t}\n};\n\nexports.AuthenticatorClass = HeaderAuthenticator;\n\n})();\n",
"type": "application/javascript",
"module-type": "authenticator"
},
"$:/core/modules/server/routes/delete-tiddler.js": {
"title": "$:/core/modules/server/routes/delete-tiddler.js",
"text": "/*\\\ntitle: $:/core/modules/server/routes/delete-tiddler.js\ntype: application/javascript\nmodule-type: route\n\nDELETE /recipes/default/tiddlers/:title\n\n\\*/\n(function() {\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.method = \"DELETE\";\n\nexports.path = /^\\/bags\\/default\\/tiddlers\\/(.+)$/;\n\nexports.handler = function(request,response,state) {\n\tvar title = decodeURIComponent(state.params[0]);\n\tstate.wiki.deleteTiddler(title);\n\tresponse.writeHead(204, \"OK\", {\n\t\t\"Content-Type\": \"text/plain\"\n\t});\n\tresponse.end();\n};\n\n}());\n",
"type": "application/javascript",
"module-type": "route"
},
"$:/core/modules/server/routes/get-favicon.js": {
"title": "$:/core/modules/server/routes/get-favicon.js",
"text": "/*\\\ntitle: $:/core/modules/server/routes/get-favicon.js\ntype: application/javascript\nmodule-type: route\n\nGET /favicon.ico\n\n\\*/\n(function() {\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.method = \"GET\";\n\nexports.path = /^\\/favicon.ico$/;\n\nexports.handler = function(request,response,state) {\n\tresponse.writeHead(200, {\"Content-Type\": \"image/x-icon\"});\n\tvar buffer = state.wiki.getTiddlerText(\"$:/favicon.ico\",\"\");\n\tresponse.end(buffer,\"base64\");\n};\n\n}());\n",
"type": "application/javascript",
"module-type": "route"
},
"$:/core/modules/server/routes/get-file.js": {
"title": "$:/core/modules/server/routes/get-file.js",
"text": "/*\\\ntitle: $:/core/modules/server/routes/get-file.js\ntype: application/javascript\nmodule-type: route\n\nGET /files/:filepath\n\n\\*/\n(function() {\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.method = \"GET\";\n\nexports.path = /^\\/files\\/(.+)$/;\n\nexports.handler = function(request,response,state) {\n\tvar path = require(\"path\"),\n\t\tfs = require(\"fs\"),\n\t\tutil = require(\"util\");\n\tvar filename = path.resolve($tw.boot.wikiPath,\"files\",decodeURIComponent(state.params[0])),\n\t\textension = path.extname(filename);\n\tfs.readFile(filename,function(err,content) {\n\t\tvar status,content,type = \"text/plain\";\n\t\tif(err) {\n\t\t\tif(err.code === \"ENOENT\") {\n\t\t\t\tstatus = 404;\n\t\t\t\tcontent = \"File '\" + filename + \"' not found\";\n\t\t\t} else if(err.code === \"EACCES\") {\n\t\t\t\tstatus = 403;\n\t\t\t\tcontent = \"You do not have permission to access the file '\" + filename + \"'\";\n\t\t\t} else {\n\t\t\t\tstatus = 500;\n\t\t\t\tcontent = err.toString();\n\t\t\t}\n\t\t} else {\n\t\t\tstatus = 200;\n\t\t\tcontent = content;\n\t\t\ttype = ($tw.config.fileExtensionInfo[extension] ? $tw.config.fileExtensionInfo[extension].type : \"application/octet-stream\");\n\t\t}\n\t\tresponse.writeHead(status,{\n\t\t\t\"Content-Type\": type\n\t\t});\n\t\tresponse.end(content);\n\t});\n};\n\n}());\n",
"type": "application/javascript",
"module-type": "route"
},
"$:/core/modules/server/routes/get-index.js": {
"title": "$:/core/modules/server/routes/get-index.js",
"text": "/*\\\ntitle: $:/core/modules/server/routes/get-index.js\ntype: application/javascript\nmodule-type: route\n\nGET /\n\n\\*/\n(function() {\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar zlib = require('zlib');\n\nexports.method = \"GET\";\n\nexports.path = /^\\/$/;\n\nexports.handler = function(request,response,state) {\n\tvar acceptEncoding = request.headers['accept-encoding'];\n\tif (!acceptEncoding) { acceptEncoding = ''; }\n\n\tvar text = state.wiki.renderTiddler(state.server.get(\"root-render-type\"),state.server.get(\"root-tiddler\"));\n\n\tvar responseHeaders = {\n\t\t\"Content-Type\": state.server.get(\"root-serve-type\")\n\t};\n\n\t/*\n\tIf the gzip=yes flag for `listen` is set, check if the user agent permits\n\tcompression. If so, compress our response. Note that we use the synchronous\n\tfunctions from zlib to stay in the imperative style. The current `Server`\n\tdoesn't depend on this, and we may just as well use the async versions.\n\t*/\n\tif(state.server.enableGzip) {\n\t\tif (/\\bdeflate\\b/.test(acceptEncoding)) {\n\t\t\tresponseHeaders['Content-Encoding'] = 'deflate';\n\t\t\ttext = zlib.deflateSync(text);\n\t\t} else if (/\\bgzip\\b/.test(acceptEncoding)) {\n\t\t\tresponseHeaders['Content-Encoding'] = 'gzip';\n\t\t\ttext = zlib.gzipSync(text);\n\t\t}\n\t}\n\n\tresponse.writeHead(200, responseHeaders);\n\tresponse.end(text);\n};\n\n}());\n",
"type": "application/javascript",
"module-type": "route"
},
"$:/core/modules/server/routes/get-login-basic.js": {
"title": "$:/core/modules/server/routes/get-login-basic.js",
"text": "/*\\\ntitle: $:/core/modules/server/routes/get-login-basic.js\ntype: application/javascript\nmodule-type: route\n\nGET /login-basic -- force a Basic Authentication challenge\n\n\\*/\n(function() {\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.method = \"GET\";\n\nexports.path = /^\\/login-basic$/;\n\nexports.handler = function(request,response,state) {\n\tif(!state.authenticatedUsername) {\n\t\t// Challenge if there's no username\n\t\tresponse.writeHead(401,{\n\t\t\t\"WWW-Authenticate\": 'Basic realm=\"Please provide your username and password to login to ' + state.server.servername + '\"'\n\t\t});\n\t\tresponse.end();\t\t\n\t} else {\n\t\t// Redirect to the root wiki if login worked\n\t\tresponse.writeHead(302,{\n\t\t\tLocation: \"/\"\n\t\t});\n\t\tresponse.end();\n\t}\n};\n\n}());\n",
"type": "application/javascript",
"module-type": "route"
},
"$:/core/modules/server/routes/get-status.js": {
"title": "$:/core/modules/server/routes/get-status.js",
"text": "/*\\\ntitle: $:/core/modules/server/routes/get-status.js\ntype: application/javascript\nmodule-type: route\n\nGET /status\n\n\\*/\n(function() {\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.method = \"GET\";\n\nexports.path = /^\\/status$/;\n\nexports.handler = function(request,response,state) {\n\tresponse.writeHead(200, {\"Content-Type\": \"application/json\"});\n\tvar text = JSON.stringify({\n\t\tusername: state.authenticatedUsername || state.server.get(\"anon-username\") || \"\",\n\t\tanonymous: !state.authenticatedUsername,\n\t\tread_only: !state.server.isAuthorized(\"writers\",state.authenticatedUsername),\n\t\tspace: {\n\t\t\trecipe: \"default\"\n\t\t},\n\t\ttiddlywiki_version: $tw.version\n\t});\n\tresponse.end(text,\"utf8\");\n};\n\n}());\n",
"type": "application/javascript",
"module-type": "route"
},
"$:/core/modules/server/routes/get-tiddler-html.js": {
"title": "$:/core/modules/server/routes/get-tiddler-html.js",
"text": "/*\\\ntitle: $:/core/modules/server/routes/get-tiddler-html.js\ntype: application/javascript\nmodule-type: route\n\nGET /:title\n\n\\*/\n(function() {\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.method = \"GET\";\n\nexports.path = /^\\/([^\\/]+)$/;\n\nexports.handler = function(request,response,state) {\n\tvar title = decodeURIComponent(state.params[0]),\n\t\ttiddler = state.wiki.getTiddler(title);\n\tif(tiddler) {\n\t\tvar renderType = tiddler.getFieldString(\"_render_type\"),\n\t\t\trenderTemplate = tiddler.getFieldString(\"_render_template\");\n\t\t// Tiddler fields '_render_type' and '_render_template' overwrite\n\t\t// system wide settings for render type and template\n\t\tif(state.wiki.isSystemTiddler(title)) {\n\t\t\trenderType = renderType || state.server.get(\"system-tiddler-render-type\");\n\t\t\trenderTemplate = renderTemplate || state.server.get(\"system-tiddler-render-template\");\n\t\t} else {\n\t\t\trenderType = renderType || state.server.get(\"tiddler-render-type\");\n\t\t\trenderTemplate = renderTemplate || state.server.get(\"tiddler-render-template\");\n\t\t}\n\t\tvar text = state.wiki.renderTiddler(renderType,renderTemplate,{parseAsInline: true, variables: {currentTiddler: title}});\n\t\t// Naughty not to set a content-type, but it's the easiest way to ensure the browser will see HTML pages as HTML, and accept plain text tiddlers as CSS or JS\n\t\tresponse.writeHead(200);\n\t\tresponse.end(text,\"utf8\");\n\t} else {\n\t\tresponse.writeHead(404);\n\t\tresponse.end();\n\t}\n};\n\n}());\n",
"type": "application/javascript",
"module-type": "route"
},
"$:/core/modules/server/routes/get-tiddler.js": {
"title": "$:/core/modules/server/routes/get-tiddler.js",
"text": "/*\\\ntitle: $:/core/modules/server/routes/get-tiddler.js\ntype: application/javascript\nmodule-type: route\n\nGET /recipes/default/tiddlers/:title\n\n\\*/\n(function() {\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.method = \"GET\";\n\nexports.path = /^\\/recipes\\/default\\/tiddlers\\/(.+)$/;\n\nexports.handler = function(request,response,state) {\n\tvar title = decodeURIComponent(state.params[0]),\n\t\ttiddler = state.wiki.getTiddler(title),\n\t\ttiddlerFields = {},\n\t\tknownFields = [\n\t\t\t\"bag\", \"created\", \"creator\", \"modified\", \"modifier\", \"permissions\", \"recipe\", \"revision\", \"tags\", \"text\", \"title\", \"type\", \"uri\"\n\t\t];\n\tif(tiddler) {\n\t\t$tw.utils.each(tiddler.fields,function(field,name) {\n\t\t\tvar value = tiddler.getFieldString(name);\n\t\t\tif(knownFields.indexOf(name) !== -1) {\n\t\t\t\ttiddlerFields[name] = value;\n\t\t\t} else {\n\t\t\t\ttiddlerFields.fields = tiddlerFields.fields || {};\n\t\t\t\ttiddlerFields.fields[name] = value;\n\t\t\t}\n\t\t});\n\t\ttiddlerFields.revision = state.wiki.getChangeCount(title);\n\t\ttiddlerFields.type = tiddlerFields.type || \"text/vnd.tiddlywiki\";\n\t\tresponse.writeHead(200, {\"Content-Type\": \"application/json\"});\n\t\tresponse.end(JSON.stringify(tiddlerFields),\"utf8\");\n\t} else {\n\t\tresponse.writeHead(404);\n\t\tresponse.end();\n\t}\n};\n\n}());\n",
"type": "application/javascript",
"module-type": "route"
},
"$:/core/modules/server/routes/get-tiddlers-json.js": {
"title": "$:/core/modules/server/routes/get-tiddlers-json.js",
"text": "/*\\\ntitle: $:/core/modules/server/routes/get-tiddlers-json.js\ntype: application/javascript\nmodule-type: route\n\nGET /recipes/default/tiddlers/tiddlers.json\n\n\\*/\n(function() {\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.method = \"GET\";\n\nexports.path = /^\\/recipes\\/default\\/tiddlers.json$/;\n\nexports.handler = function(request,response,state) {\n\tresponse.writeHead(200, {\"Content-Type\": \"application/json\"});\n\tvar tiddlers = [];\n\tstate.wiki.forEachTiddler({sortField: \"title\"},function(title,tiddler) {\n\t\tvar tiddlerFields = {};\n\t\t$tw.utils.each(tiddler.fields,function(field,name) {\n\t\t\tif(name !== \"text\") {\n\t\t\t\ttiddlerFields[name] = tiddler.getFieldString(name);\n\t\t\t}\n\t\t});\n\t\ttiddlerFields.revision = state.wiki.getChangeCount(title);\n\t\ttiddlerFields.type = tiddlerFields.type || \"text/vnd.tiddlywiki\";\n\t\ttiddlers.push(tiddlerFields);\n\t});\n\tvar text = JSON.stringify(tiddlers);\n\tresponse.end(text,\"utf8\");\n};\n\n}());\n",
"type": "application/javascript",
"module-type": "route"
},
"$:/core/modules/server/routes/put-tiddler.js": {
"title": "$:/core/modules/server/routes/put-tiddler.js",
"text": "/*\\\ntitle: $:/core/modules/server/routes/put-tiddler.js\ntype: application/javascript\nmodule-type: route\n\nPUT /recipes/default/tiddlers/:title\n\n\\*/\n(function() {\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.method = \"PUT\";\n\nexports.path = /^\\/recipes\\/default\\/tiddlers\\/(.+)$/;\n\nexports.handler = function(request,response,state) {\n\tvar title = decodeURIComponent(state.params[0]),\n\tfields = JSON.parse(state.data);\n\t// Pull up any subfields in the `fields` object\n\tif(fields.fields) {\n\t\t$tw.utils.each(fields.fields,function(field,name) {\n\t\t\tfields[name] = field;\n\t\t});\n\t\tdelete fields.fields;\n\t}\n\t// Remove any revision field\n\tif(fields.revision) {\n\t\tdelete fields.revision;\n\t}\n\tstate.wiki.addTiddler(new $tw.Tiddler(state.wiki.getCreationFields(),fields,{title: title},state.wiki.getModificationFields()));\n\tvar changeCount = state.wiki.getChangeCount(title).toString();\n\tresponse.writeHead(204, \"OK\",{\n\t\tEtag: \"\\\"default/\" + encodeURIComponent(title) + \"/\" + changeCount + \":\\\"\",\n\t\t\"Content-Type\": \"text/plain\"\n\t});\n\tresponse.end();\n};\n\n}());\n",
"type": "application/javascript",
"module-type": "route"
},
"$:/core/modules/server/server.js": {
"title": "$:/core/modules/server/server.js",
"text": "/*\\\ntitle: $:/core/modules/server/server.js\ntype: application/javascript\nmodule-type: library\n\nServe tiddlers over http\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nif($tw.node) {\n\tvar util = require(\"util\"),\n\t\tfs = require(\"fs\"),\n\t\turl = require(\"url\"),\n\t\tpath = require(\"path\");\n}\n\n/*\nA simple HTTP server with regexp-based routes\noptions: variables - optional hashmap of variables to set (a misnomer - they are really constant parameters)\n\t\t routes - optional array of routes to use\n\t\t wiki - reference to wiki object\n*/\nfunction Server(options) {\n\tvar self = this;\n\tthis.routes = options.routes || [];\n\tthis.authenticators = options.authenticators || [];\n\tthis.wiki = options.wiki;\n\tthis.servername = $tw.utils.transliterateToSafeASCII(this.wiki.getTiddlerText(\"$:/SiteTitle\") || \"TiddlyWiki5\");\n\t// Initialise the variables\n\tthis.variables = $tw.utils.extend({},this.defaultVariables);\n\tif(options.variables) {\n\t\tfor(var variable in options.variables) {\n\t\t\tif(options.variables[variable]) {\n\t\t\t\tthis.variables[variable] = options.variables[variable];\n\t\t\t}\n\t\t}\t\t\n\t}\n\t$tw.utils.extend({},this.defaultVariables,options.variables);\n\t// Initialise CSRF\n\tthis.csrfDisable = this.get(\"csrf-disable\") === \"yes\";\n\t// Initialize Gzip compression\n\tthis.enableGzip = this.get(\"gzip\") === \"yes\";\n\t// Initialise authorization\n\tvar authorizedUserName = (this.get(\"username\") && this.get(\"password\")) ? this.get(\"username\") : \"(anon)\";\n\tthis.authorizationPrincipals = {\n\t\treaders: (this.get(\"readers\") || authorizedUserName).split(\",\").map($tw.utils.trim),\n\t\twriters: (this.get(\"writers\") || authorizedUserName).split(\",\").map($tw.utils.trim)\n\t}\n\t// Load and initialise authenticators\n\t$tw.modules.forEachModuleOfType(\"authenticator\", function(title,authenticatorDefinition) {\n\t\t// console.log(\"Loading server route \" + title);\n\t\tself.addAuthenticator(authenticatorDefinition.AuthenticatorClass);\n\t});\n\t// Load route handlers\n\t$tw.modules.forEachModuleOfType(\"route\", function(title,routeDefinition) {\n\t\t// console.log(\"Loading server route \" + title);\n\t\tself.addRoute(routeDefinition);\n\t});\n\t// Initialise the http vs https\n\tthis.listenOptions = null;\n\tthis.protocol = \"http\";\n\tvar tlsKeyFilepath = this.get(\"tls-key\"),\n\t\ttlsCertFilepath = this.get(\"tls-cert\");\n\tif(tlsCertFilepath && tlsKeyFilepath) {\n\t\tthis.listenOptions = {\n\t\t\tkey: fs.readFileSync(path.resolve($tw.boot.wikiPath,tlsKeyFilepath),\"utf8\"),\n\t\t\tcert: fs.readFileSync(path.resolve($tw.boot.wikiPath,tlsCertFilepath),\"utf8\")\n\t\t};\n\t\tthis.protocol = \"https\";\n\t}\n\tthis.transport = require(this.protocol);\n}\n\nServer.prototype.defaultVariables = {\n\tport: \"8080\",\n\thost: \"127.0.0.1\",\n\t\"root-tiddler\": \"$:/core/save/all\",\n\t\"root-render-type\": \"text/plain\",\n\t\"root-serve-type\": \"text/html\",\n\t\"tiddler-render-type\": \"text/html\",\n\t\"tiddler-render-template\": \"$:/core/templates/server/static.tiddler.html\",\n\t\"system-tiddler-render-type\": \"text/plain\",\n\t\"system-tiddler-render-template\": \"$:/core/templates/wikified-tiddler\",\n\t\"debug-level\": \"none\",\n\t\"gzip\": \"no\"\n};\n\nServer.prototype.get = function(name) {\n\treturn this.variables[name];\n};\n\nServer.prototype.addRoute = function(route) {\n\tthis.routes.push(route);\n};\n\nServer.prototype.addAuthenticator = function(AuthenticatorClass) {\n\t// Instantiate and initialise the authenticator\n\tvar authenticator = new AuthenticatorClass(this),\n\t\tresult = authenticator.init();\n\tif(typeof result === \"string\") {\n\t\t$tw.utils.error(\"Error: \" + result);\n\t} else if(result) {\n\t\t// Only use the authenticator if it initialised successfully\n\t\tthis.authenticators.push(authenticator);\n\t}\n};\n\nServer.prototype.findMatchingRoute = function(request,state) {\n\tvar pathprefix = this.get(\"path-prefix\") || \"\";\n\tfor(var t=0; t<this.routes.length; t++) {\n\t\tvar potentialRoute = this.routes[t],\n\t\t\tpathRegExp = potentialRoute.path,\n\t\t\tpathname = state.urlInfo.pathname,\n\t\t\tmatch;\n\t\tif(pathprefix) {\n\t\t\tif(pathname.substr(0,pathprefix.length) === pathprefix) {\n\t\t\t\tpathname = pathname.substr(pathprefix.length) || \"/\";\n\t\t\t\tmatch = potentialRoute.path.exec(pathname);\n\t\t\t} else {\n\t\t\t\tmatch = false;\n\t\t\t}\n\t\t} else {\n\t\t\tmatch = potentialRoute.path.exec(pathname);\n\t\t}\n\t\tif(match && request.method === potentialRoute.method) {\n\t\t\tstate.params = [];\n\t\t\tfor(var p=1; p<match.length; p++) {\n\t\t\t\tstate.params.push(match[p]);\n\t\t\t}\n\t\t\treturn potentialRoute;\n\t\t}\n\t}\n\treturn null;\n};\n\nServer.prototype.methodMappings = {\n\t\"GET\": \"readers\",\n\t\"OPTIONS\": \"readers\",\n\t\"HEAD\": \"readers\",\n\t\"PUT\": \"writers\",\n\t\"POST\": \"writers\",\n\t\"DELETE\": \"writers\"\n};\n\n/*\nCheck whether a given user is authorized for the specified authorizationType (\"readers\" or \"writers\"). Pass null or undefined as the username to check for anonymous access\n*/\nServer.prototype.isAuthorized = function(authorizationType,username) {\n\tvar principals = this.authorizationPrincipals[authorizationType] || [];\n\treturn principals.indexOf(\"(anon)\") !== -1 || (username && (principals.indexOf(\"(authenticated)\") !== -1 || principals.indexOf(username) !== -1));\n}\n\nServer.prototype.requestHandler = function(request,response) {\n\t// Compose the state object\n\tvar self = this;\n\tvar state = {};\n\tstate.wiki = self.wiki;\n\tstate.server = self;\n\tstate.urlInfo = url.parse(request.url);\n\t// Get the principals authorized to access this resource\n\tvar authorizationType = this.methodMappings[request.method] || \"readers\";\n\t// Check for the CSRF header if this is a write\n\tif(!this.csrfDisable && authorizationType === \"writers\" && request.headers[\"x-requested-with\"] !== \"TiddlyWiki\") {\n\t\tresponse.writeHead(403,\"'X-Requested-With' header required to login to '\" + this.servername + \"'\");\n\t\tresponse.end();\n\t\treturn;\t\t\n\t}\n\t// Check whether anonymous access is granted\n\tstate.allowAnon = this.isAuthorized(authorizationType,null);\n\t// Authenticate with the first active authenticator\n\tif(this.authenticators.length > 0) {\n\t\tif(!this.authenticators[0].authenticateRequest(request,response,state)) {\n\t\t\t// Bail if we failed (the authenticator will have sent the response)\n\t\t\treturn;\n\t\t}\t\t\n\t}\n\t// Authorize with the authenticated username\n\tif(!this.isAuthorized(authorizationType,state.authenticatedUsername)) {\n\t\tresponse.writeHead(401,\"'\" + state.authenticatedUsername + \"' is not authorized to access '\" + this.servername + \"'\");\n\t\tresponse.end();\n\t\treturn;\n\t}\n\t// Find the route that matches this path\n\tvar route = self.findMatchingRoute(request,state);\n\t// Optionally output debug info\n\tif(self.get(\"debug-level\") !== \"none\") {\n\t\tconsole.log(\"Request path:\",JSON.stringify(state.urlInfo));\n\t\tconsole.log(\"Request headers:\",JSON.stringify(request.headers));\n\t\tconsole.log(\"authenticatedUsername:\",state.authenticatedUsername);\n\t}\n\t// Return a 404 if we didn't find a route\n\tif(!route) {\n\t\tresponse.writeHead(404);\n\t\tresponse.end();\n\t\treturn;\n\t}\n\t// Receive the request body if necessary and hand off to the route handler\n\tif(route.bodyFormat === \"stream\" || request.method === \"GET\" || request.method === \"HEAD\") {\n\t\t// Let the route handle the request stream itself\n\t\troute.handler(request,response,state);\n\t} else if(route.bodyFormat === \"string\" || !route.bodyFormat) {\n\t\t// Set the encoding for the incoming request\n\t\trequest.setEncoding(\"utf8\");\n\t\tvar data = \"\";\n\t\trequest.on(\"data\",function(chunk) {\n\t\t\tdata += chunk.toString();\n\t\t});\n\t\trequest.on(\"end\",function() {\n\t\t\tstate.data = data;\n\t\t\troute.handler(request,response,state);\n\t\t});\n\t} else if(route.bodyFormat === \"buffer\") {\n\t\tvar data = [];\n\t\trequest.on(\"data\",function(chunk) {\n\t\t\tdata.push(chunk);\n\t\t});\n\t\trequest.on(\"end\",function() {\n\t\t\tstate.data = Buffer.concat(data);\n\t\t\troute.handler(request,response,state);\n\t\t})\n\t} else {\n\t\tresponse.writeHead(400,\"Invalid bodyFormat \" + route.bodyFormat + \" in route \" + route.method + \" \" + route.path.source);\n\t\tresponse.end();\n\t}\n};\n\n/*\nListen for requests\nport: optional port number (falls back to value of \"port\" variable)\nhost: optional host address (falls back to value of \"host\" variable)\nprefix: optional prefix (falls back to value of \"path-prefix\" variable)\n*/\nServer.prototype.listen = function(port,host,prefix) {\n\t// Handle defaults for port and host\n\tport = port || this.get(\"port\");\n\thost = host || this.get(\"host\");\n\tprefix = prefix || this.get(\"path-prefix\") || \"\";\n\t// Check for the port being a string and look it up as an environment variable\n\tif(parseInt(port,10).toString() !== port) {\n\t\tport = process.env[port] || 8080;\n\t}\n\t$tw.utils.log(\"Serving on \" + this.protocol + \"://\" + host + \":\" + port + prefix,\"brown/orange\");\n\t$tw.utils.log(\"(press ctrl-C to exit)\",\"red\");\n\t// Warn if required plugins are missing\n\tif(!$tw.wiki.getTiddler(\"$:/plugins/tiddlywiki/tiddlyweb\") || !$tw.wiki.getTiddler(\"$:/plugins/tiddlywiki/filesystem\")) {\n\t\t$tw.utils.warning(\"Warning: Plugins required for client-server operation (\\\"tiddlywiki/filesystem\\\" and \\\"tiddlywiki/tiddlyweb\\\") are missing from tiddlywiki.info file\");\n\t}\n\t// Listen\n\tvar server;\n\tif(this.listenOptions) {\n\t\tserver = this.transport.createServer(this.listenOptions,this.requestHandler.bind(this));\n\t} else {\n\t\tserver = this.transport.createServer(this.requestHandler.bind(this));\n\t}\n\treturn server.listen(port,host);\n};\n\nexports.Server = Server;\n\n})();\n",
"type": "application/javascript",
"module-type": "library"
},
"$:/core/modules/browser-messaging.js": {
"title": "$:/core/modules/browser-messaging.js",
"text": "/*\\\ntitle: $:/core/modules/browser-messaging.js\ntype: application/javascript\nmodule-type: startup\n\nBrowser message handling\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n// Export name and synchronous status\nexports.name = \"browser-messaging\";\nexports.platforms = [\"browser\"];\nexports.after = [\"startup\"];\nexports.synchronous = true;\n\n/*\nLoad a specified url as an iframe and call the callback when it is loaded. If the url is already loaded then the existing iframe instance is used\n*/\nfunction loadIFrame(url,callback) {\n\t// Check if iframe already exists\n\tvar iframeInfo = $tw.browserMessaging.iframeInfoMap[url];\n\tif(iframeInfo) {\n\t\t// We've already got the iframe\n\t\tcallback(null,iframeInfo);\n\t} else {\n\t\t// Create the iframe and save it in the list\n\t\tvar iframe = document.createElement(\"iframe\");\n\t\tiframeInfo = {\n\t\t\turl: url,\n\t\t\tstatus: \"loading\",\n\t\t\tdomNode: iframe\n\t\t};\n\t\t$tw.browserMessaging.iframeInfoMap[url] = iframeInfo;\n\t\tsaveIFrameInfoTiddler(iframeInfo);\n\t\t// Add the iframe to the DOM and hide it\n\t\tiframe.style.display = \"none\";\n\t\tiframe.setAttribute(\"library\",\"true\");\n\t\tdocument.body.appendChild(iframe);\n\t\t// Set up onload\n\t\tiframe.onload = function() {\n\t\t\tiframeInfo.status = \"loaded\";\n\t\t\tsaveIFrameInfoTiddler(iframeInfo);\n\t\t\tcallback(null,iframeInfo);\n\t\t};\n\t\tiframe.onerror = function() {\n\t\t\tcallback(\"Cannot load iframe\");\n\t\t};\n\t\ttry {\n\t\t\tiframe.src = url;\n\t\t} catch(ex) {\n\t\t\tcallback(ex);\n\t\t}\n\t}\n}\n\n/*\nUnload library iframe for given url\n*/\nfunction unloadIFrame(url){\n\t$tw.utils.each(document.getElementsByTagName('iframe'), function(iframe) {\n\t\tif(iframe.getAttribute(\"library\") === \"true\" &&\n\t\t iframe.getAttribute(\"src\") === url) {\n\t\t\tiframe.parentNode.removeChild(iframe);\n\t\t}\n\t});\n}\n\nfunction saveIFrameInfoTiddler(iframeInfo) {\n\t$tw.wiki.addTiddler(new $tw.Tiddler($tw.wiki.getCreationFields(),{\n\t\ttitle: \"$:/temp/ServerConnection/\" + iframeInfo.url,\n\t\ttext: iframeInfo.status,\n\t\ttags: [\"$:/tags/ServerConnection\"],\n\t\turl: iframeInfo.url\n\t},$tw.wiki.getModificationFields()));\n}\n\nexports.startup = function() {\n\t// Initialise the store of iframes we've created\n\t$tw.browserMessaging = {\n\t\tiframeInfoMap: {} // Hashmap by URL of {url:,status:\"loading/loaded\",domNode:}\n\t};\n\t// Listen for widget messages to control loading the plugin library\n\t$tw.rootWidget.addEventListener(\"tm-load-plugin-library\",function(event) {\n\t\tvar paramObject = event.paramObject || {},\n\t\t\turl = paramObject.url;\n\t\tif(url) {\n\t\t\tloadIFrame(url,function(err,iframeInfo) {\n\t\t\t\tif(err) {\n\t\t\t\t\talert($tw.language.getString(\"Error/LoadingPluginLibrary\") + \": \" + url);\n\t\t\t\t} else {\n\t\t\t\t\tiframeInfo.domNode.contentWindow.postMessage({\n\t\t\t\t\t\tverb: \"GET\",\n\t\t\t\t\t\turl: \"recipes/library/tiddlers.json\",\n\t\t\t\t\t\tcookies: {\n\t\t\t\t\t\t\ttype: \"save-info\",\n\t\t\t\t\t\t\tinfoTitlePrefix: paramObject.infoTitlePrefix || \"$:/temp/RemoteAssetInfo/\",\n\t\t\t\t\t\t\turl: url\n\t\t\t\t\t\t}\n\t\t\t\t\t},\"*\");\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\t});\n\t// Listen for widget messages to control unloading the plugin library\n\t$tw.rootWidget.addEventListener(\"tm-unload-plugin-library\",function(event) {\n\t\tvar paramObject = event.paramObject || {},\n\t\t\turl = paramObject.url;\n\t\t$tw.browserMessaging.iframeInfoMap[url] = undefined;\n\t\tif(url) {\n\t\t\tunloadIFrame(url);\n\t\t\t$tw.utils.each(\n\t\t\t\t$tw.wiki.filterTiddlers(\"[[$:/temp/ServerConnection/\" + url + \"]] [prefix[$:/temp/RemoteAssetInfo/\" + url + \"/]]\"),\n\t\t\t\tfunction(title) {\n\t\t\t\t\t$tw.wiki.deleteTiddler(title);\n\t\t\t\t}\n\t\t\t);\n\t\t}\n\t});\n\t$tw.rootWidget.addEventListener(\"tm-load-plugin-from-library\",function(event) {\n\t\tvar paramObject = event.paramObject || {},\n\t\t\turl = paramObject.url,\n\t\t\ttitle = paramObject.title;\n\t\tif(url && title) {\n\t\t\tloadIFrame(url,function(err,iframeInfo) {\n\t\t\t\tif(err) {\n\t\t\t\t\talert($tw.language.getString(\"Error/LoadingPluginLibrary\") + \": \" + url);\n\t\t\t\t} else {\n\t\t\t\t\tiframeInfo.domNode.contentWindow.postMessage({\n\t\t\t\t\t\tverb: \"GET\",\n\t\t\t\t\t\turl: \"recipes/library/tiddlers/\" + encodeURIComponent(title) + \".json\",\n\t\t\t\t\t\tcookies: {\n\t\t\t\t\t\t\ttype: \"save-tiddler\",\n\t\t\t\t\t\t\turl: url\n\t\t\t\t\t\t}\n\t\t\t\t\t},\"*\");\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\t});\n\t// Listen for window messages from other windows\n\twindow.addEventListener(\"message\",function listener(event){\n\t\t// console.log(\"browser-messaging: \",document.location.toString())\n\t\t// console.log(\"browser-messaging: Received message from\",event.origin);\n\t\t// console.log(\"browser-messaging: Message content\",event.data);\n\t\tswitch(event.data.verb) {\n\t\t\tcase \"GET-RESPONSE\":\n\t\t\t\tif(event.data.status.charAt(0) === \"2\") {\n\t\t\t\t\tif(event.data.cookies) {\n\t\t\t\t\t\tif(event.data.cookies.type === \"save-info\") {\n\t\t\t\t\t\t\tvar tiddlers = JSON.parse(event.data.body);\n\t\t\t\t\t\t\t$tw.utils.each(tiddlers,function(tiddler) {\n\t\t\t\t\t\t\t\t$tw.wiki.addTiddler(new $tw.Tiddler($tw.wiki.getCreationFields(),tiddler,{\n\t\t\t\t\t\t\t\t\ttitle: event.data.cookies.infoTitlePrefix + event.data.cookies.url + \"/\" + tiddler.title,\n\t\t\t\t\t\t\t\t\t\"original-title\": tiddler.title,\n\t\t\t\t\t\t\t\t\ttext: \"\",\n\t\t\t\t\t\t\t\t\ttype: \"text/vnd.tiddlywiki\",\n\t\t\t\t\t\t\t\t\t\"original-type\": tiddler.type,\n\t\t\t\t\t\t\t\t\t\"plugin-type\": undefined,\n\t\t\t\t\t\t\t\t\t\"original-plugin-type\": tiddler[\"plugin-type\"],\n\t\t\t\t\t\t\t\t\t\"module-type\": undefined,\n\t\t\t\t\t\t\t\t\t\"original-module-type\": tiddler[\"module-type\"],\n\t\t\t\t\t\t\t\t\ttags: [\"$:/tags/RemoteAssetInfo\"],\n\t\t\t\t\t\t\t\t\t\"original-tags\": $tw.utils.stringifyList(tiddler.tags || []),\n\t\t\t\t\t\t\t\t\t\"server-url\": event.data.cookies.url\n\t\t\t\t\t\t\t\t},$tw.wiki.getModificationFields()));\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t} else if(event.data.cookies.type === \"save-tiddler\") {\n\t\t\t\t\t\t\tvar tiddler = JSON.parse(event.data.body);\n\t\t\t\t\t\t\t$tw.wiki.addTiddler(new $tw.Tiddler(tiddler));\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t}\n\t},false);\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "startup"
},
"$:/core/modules/startup/commands.js": {
"title": "$:/core/modules/startup/commands.js",
"text": "/*\\\ntitle: $:/core/modules/startup/commands.js\ntype: application/javascript\nmodule-type: startup\n\nCommand processing\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n// Export name and synchronous status\nexports.name = \"commands\";\nexports.platforms = [\"node\"];\nexports.after = [\"story\"];\nexports.synchronous = false;\n\nexports.startup = function(callback) {\n\t// On the server, start a commander with the command line arguments\n\tvar commander = new $tw.Commander(\n\t\t$tw.boot.argv,\n\t\tfunction(err) {\n\t\t\tif(err) {\n\t\t\t\treturn $tw.utils.error(\"Error: \" + err);\n\t\t\t}\n\t\t\tcallback();\n\t\t},\n\t\t$tw.wiki,\n\t\t{output: process.stdout, error: process.stderr}\n\t);\n\tcommander.execute();\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "startup"
},
"$:/core/modules/startup/CSSescape.js": {
"title": "$:/core/modules/startup/CSSescape.js",
"text": "/*\\\ntitle: $:/core/modules/startup/CSSescape.js\ntype: application/javascript\nmodule-type: startup\n\nPolyfill for CSS.escape()\n\n\\*/\n(function(root,factory){\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n// Export name and synchronous status\nexports.name = \"css-escape\";\nexports.platforms = [\"browser\"];\nexports.after = [\"startup\"];\nexports.synchronous = true;\n\n/*! https://mths.be/cssescape v1.5.1 by @mathias | MIT license */\n// https://github.com/umdjs/umd/blob/master/returnExports.js\nexports.startup = factory(root);\n}(typeof global != 'undefined' ? global : this, function(root) {\n\n\tif (root.CSS && root.CSS.escape) {\n\t\treturn;\n\t}\n\n\t// https://drafts.csswg.org/cssom/#serialize-an-identifier\n\tvar cssEscape = function(value) {\n\t\tif (arguments.length == 0) {\n\t\t\tthrow new TypeError('`CSS.escape` requires an argument.');\n\t\t}\n\t\tvar string = String(value);\n\t\tvar length = string.length;\n\t\tvar index = -1;\n\t\tvar codeUnit;\n\t\tvar result = '';\n\t\tvar firstCodeUnit = string.charCodeAt(0);\n\t\twhile (++index < length) {\n\t\t\tcodeUnit = string.charCodeAt(index);\n\t\t\t// Note: there’s no need to special-case astral symbols, surrogate\n\t\t\t// pairs, or lone surrogates.\n\n\t\t\t// If the character is NULL (U+0000), then the REPLACEMENT CHARACTER\n\t\t\t// (U+FFFD).\n\t\t\tif (codeUnit == 0x0000) {\n\t\t\t\tresult += '\\uFFFD';\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tif (\n\t\t\t\t// If the character is in the range [\\1-\\1F] (U+0001 to U+001F) or is\n\t\t\t\t// U+007F, […]\n\t\t\t\t(codeUnit >= 0x0001 && codeUnit <= 0x001F) || codeUnit == 0x007F ||\n\t\t\t\t// If the character is the first character and is in the range [0-9]\n\t\t\t\t// (U+0030 to U+0039), […]\n\t\t\t\t(index == 0 && codeUnit >= 0x0030 && codeUnit <= 0x0039) ||\n\t\t\t\t// If the character is the second character and is in the range [0-9]\n\t\t\t\t// (U+0030 to U+0039) and the first character is a `-` (U+002D), […]\n\t\t\t\t(\n\t\t\t\t\tindex == 1 &&\n\t\t\t\t\tcodeUnit >= 0x0030 && codeUnit <= 0x0039 &&\n\t\t\t\t\tfirstCodeUnit == 0x002D\n\t\t\t\t)\n\t\t\t) {\n\t\t\t\t// https://drafts.csswg.org/cssom/#escape-a-character-as-code-point\n\t\t\t\tresult += '\\\\' + codeUnit.toString(16) + ' ';\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tif (\n\t\t\t\t// If the character is the first character and is a `-` (U+002D), and\n\t\t\t\t// there is no second character, […]\n\t\t\t\tindex == 0 &&\n\t\t\t\tlength == 1 &&\n\t\t\t\tcodeUnit == 0x002D\n\t\t\t) {\n\t\t\t\tresult += '\\\\' + string.charAt(index);\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// If the character is not handled by one of the above rules and is\n\t\t\t// greater than or equal to U+0080, is `-` (U+002D) or `_` (U+005F), or\n\t\t\t// is in one of the ranges [0-9] (U+0030 to U+0039), [A-Z] (U+0041 to\n\t\t\t// U+005A), or [a-z] (U+0061 to U+007A), […]\n\t\t\tif (\n\t\t\t\tcodeUnit >= 0x0080 ||\n\t\t\t\tcodeUnit == 0x002D ||\n\t\t\t\tcodeUnit == 0x005F ||\n\t\t\t\tcodeUnit >= 0x0030 && codeUnit <= 0x0039 ||\n\t\t\t\tcodeUnit >= 0x0041 && codeUnit <= 0x005A ||\n\t\t\t\tcodeUnit >= 0x0061 && codeUnit <= 0x007A\n\t\t\t) {\n\t\t\t\t// the character itself\n\t\t\t\tresult += string.charAt(index);\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// Otherwise, the escaped character.\n\t\t\t// https://drafts.csswg.org/cssom/#escape-a-character\n\t\t\tresult += '\\\\' + string.charAt(index);\n\n\t\t}\n\t\treturn result;\n\t};\n\n\tif (!root.CSS) {\n\t\troot.CSS = {};\n\t}\n\n\troot.CSS.escape = cssEscape;\n\n}));\n",
"type": "application/javascript",
"module-type": "startup"
},
"$:/core/modules/startup/favicon.js": {
"title": "$:/core/modules/startup/favicon.js",
"text": "/*\\\ntitle: $:/core/modules/startup/favicon.js\ntype: application/javascript\nmodule-type: startup\n\nFavicon handling\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n// Export name and synchronous status\nexports.name = \"favicon\";\nexports.platforms = [\"browser\"];\nexports.after = [\"startup\"];\nexports.synchronous = true;\n\t\t\n// Favicon tiddler\nvar FAVICON_TITLE = \"$:/favicon.ico\";\n\nexports.startup = function() {\n\t// Set up the favicon\n\tsetFavicon();\n\t// Reset the favicon when the tiddler changes\n\t$tw.wiki.addEventListener(\"change\",function(changes) {\n\t\tif($tw.utils.hop(changes,FAVICON_TITLE)) {\n\t\t\tsetFavicon();\n\t\t}\n\t});\n};\n\nfunction setFavicon() {\n\tvar tiddler = $tw.wiki.getTiddler(FAVICON_TITLE);\n\tif(tiddler) {\n\t\tvar faviconLink = document.getElementById(\"faviconLink\");\n\t\tfaviconLink.setAttribute(\"href\",\"data:\" + tiddler.fields.type + \";base64,\" + tiddler.fields.text);\n\t}\n}\n\n})();\n",
"type": "application/javascript",
"module-type": "startup"
},
"$:/core/modules/startup/info.js": {
"title": "$:/core/modules/startup/info.js",
"text": "/*\\\ntitle: $:/core/modules/startup/info.js\ntype: application/javascript\nmodule-type: startup\n\nInitialise $:/info tiddlers via $:/temp/info-plugin pseudo-plugin\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n// Export name and synchronous status\nexports.name = \"info\";\nexports.before = [\"startup\"];\nexports.after = [\"load-modules\"];\nexports.synchronous = true;\n\nexports.startup = function() {\n\t// Collect up the info tiddlers\n\tvar infoTiddlerFields = {};\n\t// Give each info module a chance to fill in as many info tiddlers as they want\n\t$tw.modules.forEachModuleOfType(\"info\",function(title,moduleExports) {\n\t\tif(moduleExports && moduleExports.getInfoTiddlerFields) {\n\t\t\tvar tiddlerFieldsArray = moduleExports.getInfoTiddlerFields(infoTiddlerFields);\n\t\t\t$tw.utils.each(tiddlerFieldsArray,function(fields) {\n\t\t\t\tif(fields) {\n\t\t\t\t\tinfoTiddlerFields[fields.title] = fields;\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\t});\n\t// Bake the info tiddlers into a plugin\n\tvar fields = {\n\t\ttitle: \"$:/temp/info-plugin\",\n\t\ttype: \"application/json\",\n\t\t\"plugin-type\": \"info\",\n\t\ttext: JSON.stringify({tiddlers: infoTiddlerFields},null,$tw.config.preferences.jsonSpaces)\n\t};\n\t$tw.wiki.addTiddler(new $tw.Tiddler(fields));\n\t$tw.wiki.readPluginInfo();\n\t$tw.wiki.registerPluginTiddlers(\"info\");\n\t$tw.wiki.unpackPluginTiddlers();\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "startup"
},
"$:/core/modules/startup/load-modules.js": {
"title": "$:/core/modules/startup/load-modules.js",
"text": "/*\\\ntitle: $:/core/modules/startup/load-modules.js\ntype: application/javascript\nmodule-type: startup\n\nLoad core modules\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n// Export name and synchronous status\nexports.name = \"load-modules\";\nexports.synchronous = true;\n\nexports.startup = function() {\n\t// Load modules\n\t$tw.modules.applyMethods(\"utils\",$tw.utils);\n\tif($tw.node) {\n\t\t$tw.modules.applyMethods(\"utils-node\",$tw.utils);\n\t}\n\t$tw.modules.applyMethods(\"global\",$tw);\n\t$tw.modules.applyMethods(\"config\",$tw.config);\n\t$tw.Tiddler.fieldModules = $tw.modules.getModulesByTypeAsHashmap(\"tiddlerfield\");\n\t$tw.modules.applyMethods(\"tiddlermethod\",$tw.Tiddler.prototype);\n\t$tw.modules.applyMethods(\"wikimethod\",$tw.Wiki.prototype);\n\t$tw.wiki.addIndexersToWiki();\n\t$tw.modules.applyMethods(\"tiddlerdeserializer\",$tw.Wiki.tiddlerDeserializerModules);\n\t$tw.macros = $tw.modules.getModulesByTypeAsHashmap(\"macro\");\n\t$tw.wiki.initParsers();\n\t$tw.Commander.initCommands();\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "startup"
},
"$:/core/modules/startup/password.js": {
"title": "$:/core/modules/startup/password.js",
"text": "/*\\\ntitle: $:/core/modules/startup/password.js\ntype: application/javascript\nmodule-type: startup\n\nPassword handling\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n// Export name and synchronous status\nexports.name = \"password\";\nexports.platforms = [\"browser\"];\nexports.after = [\"startup\"];\nexports.synchronous = true;\n\nexports.startup = function() {\n\t$tw.rootWidget.addEventListener(\"tm-set-password\",function(event) {\n\t\t$tw.passwordPrompt.createPrompt({\n\t\t\tserviceName: $tw.language.getString(\"Encryption/PromptSetPassword\"),\n\t\t\tnoUserName: true,\n\t\t\tsubmitText: $tw.language.getString(\"Encryption/SetPassword\"),\n\t\t\tcanCancel: true,\n\t\t\trepeatPassword: true,\n\t\t\tcallback: function(data) {\n\t\t\t\tif(data) {\n\t\t\t\t\t$tw.crypto.setPassword(data.password);\n\t\t\t\t}\n\t\t\t\treturn true; // Get rid of the password prompt\n\t\t\t}\n\t\t});\n\t});\n\t$tw.rootWidget.addEventListener(\"tm-clear-password\",function(event) {\n\t\tif($tw.browser) {\n\t\t\tif(!confirm($tw.language.getString(\"Encryption/ConfirmClearPassword\"))) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t}\n\t\t$tw.crypto.setPassword(null);\n\t});\n\t// Ensure that $:/isEncrypted is maintained properly\n\t$tw.wiki.addEventListener(\"change\",function(changes) {\n\t\tif($tw.utils.hop(changes,\"$:/isEncrypted\")) {\n\t\t\t$tw.crypto.updateCryptoStateTiddler();\n\t\t}\n\t});\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "startup"
},
"$:/core/modules/startup/render.js": {
"title": "$:/core/modules/startup/render.js",
"text": "/*\\\ntitle: $:/core/modules/startup/render.js\ntype: application/javascript\nmodule-type: startup\n\nTitle, stylesheet and page rendering\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n// Export name and synchronous status\nexports.name = \"render\";\nexports.platforms = [\"browser\"];\nexports.after = [\"story\"];\nexports.synchronous = true;\n\n// Default story and history lists\nvar PAGE_TITLE_TITLE = \"$:/core/wiki/title\";\nvar PAGE_STYLESHEET_TITLE = \"$:/core/ui/PageStylesheet\";\nvar PAGE_TEMPLATE_TITLE = \"$:/core/ui/PageTemplate\";\n\n// Time (in ms) that we defer refreshing changes to draft tiddlers\nvar DRAFT_TIDDLER_TIMEOUT_TITLE = \"$:/config/Drafts/TypingTimeout\";\nvar DRAFT_TIDDLER_TIMEOUT = 400;\n\nexports.startup = function() {\n\t// Set up the title\n\t$tw.titleWidgetNode = $tw.wiki.makeTranscludeWidget(PAGE_TITLE_TITLE,{document: $tw.fakeDocument, parseAsInline: true});\n\t$tw.titleContainer = $tw.fakeDocument.createElement(\"div\");\n\t$tw.titleWidgetNode.render($tw.titleContainer,null);\n\tdocument.title = $tw.titleContainer.textContent;\n\t$tw.wiki.addEventListener(\"change\",function(changes) {\n\t\tif($tw.titleWidgetNode.refresh(changes,$tw.titleContainer,null)) {\n\t\t\tdocument.title = $tw.titleContainer.textContent;\n\t\t}\n\t});\n\t// Set up the styles\n\t$tw.styleWidgetNode = $tw.wiki.makeTranscludeWidget(PAGE_STYLESHEET_TITLE,{document: $tw.fakeDocument});\n\t$tw.styleContainer = $tw.fakeDocument.createElement(\"style\");\n\t$tw.styleWidgetNode.render($tw.styleContainer,null);\n\t$tw.styleElement = document.createElement(\"style\");\n\t$tw.styleElement.innerHTML = $tw.styleContainer.textContent;\n\tdocument.head.insertBefore($tw.styleElement,document.head.firstChild);\n\t$tw.wiki.addEventListener(\"change\",$tw.perf.report(\"styleRefresh\",function(changes) {\n\t\tif($tw.styleWidgetNode.refresh(changes,$tw.styleContainer,null)) {\n\t\t\t$tw.styleElement.innerHTML = $tw.styleContainer.textContent;\n\t\t}\n\t}));\n\t// Display the $:/core/ui/PageTemplate tiddler to kick off the display\n\t$tw.perf.report(\"mainRender\",function() {\n\t\t$tw.pageWidgetNode = $tw.wiki.makeTranscludeWidget(PAGE_TEMPLATE_TITLE,{document: document, parentWidget: $tw.rootWidget});\n\t\t$tw.pageContainer = document.createElement(\"div\");\n\t\t$tw.utils.addClass($tw.pageContainer,\"tc-page-container-wrapper\");\n\t\tdocument.body.insertBefore($tw.pageContainer,document.body.firstChild);\n\t\t$tw.pageWidgetNode.render($tw.pageContainer,null);\n \t\t$tw.hooks.invokeHook(\"th-page-refreshed\");\n\t})();\n\t// Remove any splash screen elements\n\tvar removeList = document.querySelectorAll(\".tc-remove-when-wiki-loaded\");\n\t$tw.utils.each(removeList,function(removeItem) {\n\t\tif(removeItem.parentNode) {\n\t\t\tremoveItem.parentNode.removeChild(removeItem);\n\t\t}\n\t});\n\t// Prepare refresh mechanism\n\tvar deferredChanges = Object.create(null),\n\t\ttimerId;\n\tfunction refresh() {\n\t\t// Process the refresh\n\t\t$tw.hooks.invokeHook(\"th-page-refreshing\");\n\t\t$tw.pageWidgetNode.refresh(deferredChanges);\n\t\tdeferredChanges = Object.create(null);\n\t\t$tw.hooks.invokeHook(\"th-page-refreshed\");\n\t}\n\t// Add the change event handler\n\t$tw.wiki.addEventListener(\"change\",$tw.perf.report(\"mainRefresh\",function(changes) {\n\t\t// Check if only drafts have changed\n\t\tvar onlyDraftsHaveChanged = true;\n\t\tfor(var title in changes) {\n\t\t\tvar tiddler = $tw.wiki.getTiddler(title);\n\t\t\tif(!tiddler || !tiddler.hasField(\"draft.of\")) {\n\t\t\t\tonlyDraftsHaveChanged = false;\n\t\t\t}\n\t\t}\n\t\t// Defer the change if only drafts have changed\n\t\tif(timerId) {\n\t\t\tclearTimeout(timerId);\n\t\t}\n\t\ttimerId = null;\n\t\tif(onlyDraftsHaveChanged) {\n\t\t\tvar timeout = parseInt($tw.wiki.getTiddlerText(DRAFT_TIDDLER_TIMEOUT_TITLE,\"\"),10);\n\t\t\tif(isNaN(timeout)) {\n\t\t\t\ttimeout = DRAFT_TIDDLER_TIMEOUT;\n\t\t\t}\n\t\t\ttimerId = setTimeout(refresh,timeout);\n\t\t\t$tw.utils.extend(deferredChanges,changes);\n\t\t} else {\n\t\t\t$tw.utils.extend(deferredChanges,changes);\n\t\t\trefresh();\n\t\t}\n\t}));\n\t// Fix up the link between the root widget and the page container\n\t$tw.rootWidget.domNodes = [$tw.pageContainer];\n\t$tw.rootWidget.children = [$tw.pageWidgetNode];\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "startup"
},
"$:/core/modules/startup/rootwidget.js": {
"title": "$:/core/modules/startup/rootwidget.js",
"text": "/*\\\ntitle: $:/core/modules/startup/rootwidget.js\ntype: application/javascript\nmodule-type: startup\n\nSetup the root widget and the core root widget handlers\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n// Export name and synchronous status\nexports.name = \"rootwidget\";\nexports.platforms = [\"browser\"];\nexports.after = [\"startup\"];\nexports.before = [\"story\"];\nexports.synchronous = true;\n\nexports.startup = function() {\n\t// Install the modal message mechanism\n\t$tw.modal = new $tw.utils.Modal($tw.wiki);\n\t$tw.rootWidget.addEventListener(\"tm-modal\",function(event) {\n\t\t$tw.modal.display(event.param,{variables: event.paramObject, event: event});\n\t});\n\t// Install the notification mechanism\n\t$tw.notifier = new $tw.utils.Notifier($tw.wiki);\n\t$tw.rootWidget.addEventListener(\"tm-notify\",function(event) {\n\t\t$tw.notifier.display(event.param,{variables: event.paramObject});\n\t});\n\t// Install the copy-to-clipboard mechanism\n\t$tw.rootWidget.addEventListener(\"tm-copy-to-clipboard\",function(event) {\n\t\t$tw.utils.copyToClipboard(event.param);\n\t});\n\t// Install the tm-focus-selector message\n\t$tw.rootWidget.addEventListener(\"tm-focus-selector\",function(event) {\n\t\tvar selector = event.param || \"\",\n\t\t\telement;\n\t\ttry {\n\t\t\telement = document.querySelector(selector);\n\t\t} catch(e) {\n\t\t\tconsole.log(\"Error in selector: \",selector)\n\t\t}\n\t\tif(element && element.focus) {\n\t\t\telement.focus(event.paramObject);\n\t\t}\n\t});\n\t// Install the scroller\n\t$tw.pageScroller = new $tw.utils.PageScroller();\n\t$tw.rootWidget.addEventListener(\"tm-scroll\",function(event) {\n\t\t$tw.pageScroller.handleEvent(event);\n\t});\n\tvar fullscreen = $tw.utils.getFullScreenApis();\n\tif(fullscreen) {\n\t\t$tw.rootWidget.addEventListener(\"tm-full-screen\",function(event) {\n\t\t\tvar fullScreenDocument = event.event ? event.event.target.ownerDocument : document;\n\t\t\tif(event.param === \"enter\") {\n\t\t\t\tfullScreenDocument.documentElement[fullscreen._requestFullscreen](Element.ALLOW_KEYBOARD_INPUT);\n\t\t\t} else if(event.param === \"exit\") {\n\t\t\t\tfullScreenDocument[fullscreen._exitFullscreen]();\n\t\t\t} else {\n\t\t\t\tif(fullScreenDocument[fullscreen._fullscreenElement]) {\n\t\t\t\t\tfullScreenDocument[fullscreen._exitFullscreen]();\n\t\t\t\t} else {\n\t\t\t\t\tfullScreenDocument.documentElement[fullscreen._requestFullscreen](Element.ALLOW_KEYBOARD_INPUT);\n\t\t\t\t}\t\t\t\t\n\t\t\t}\n\t\t});\n\t}\n\t// If we're being viewed on a data: URI then give instructions for how to save\n\tif(document.location.protocol === \"data:\") {\n\t\t$tw.rootWidget.dispatchEvent({\n\t\t\ttype: \"tm-modal\",\n\t\t\tparam: \"$:/language/Modals/SaveInstructions\"\n\t\t});\n\t}\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "startup"
},
"$:/core/modules/startup.js": {
"title": "$:/core/modules/startup.js",
"text": "/*\\\ntitle: $:/core/modules/startup.js\ntype: application/javascript\nmodule-type: startup\n\nMiscellaneous startup logic for both the client and server.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n// Export name and synchronous status\nexports.name = \"startup\";\nexports.after = [\"load-modules\"];\nexports.synchronous = true;\n\n// Set to `true` to enable performance instrumentation\nvar PERFORMANCE_INSTRUMENTATION_CONFIG_TITLE = \"$:/config/Performance/Instrumentation\";\n\nvar widget = require(\"$:/core/modules/widgets/widget.js\");\n\nexports.startup = function() {\n\tvar modules,n,m,f;\n\t// Minimal browser detection\n\tif($tw.browser) {\n\t\t$tw.browser.isIE = (/msie|trident/i.test(navigator.userAgent));\n\t\t$tw.browser.isFirefox = !!document.mozFullScreenEnabled;\n\t}\n\t// Platform detection\n\t$tw.platform = {};\n\tif($tw.browser) {\n\t\t$tw.platform.isMac = /Mac/.test(navigator.platform);\n\t\t$tw.platform.isWindows = /win/i.test(navigator.platform);\n\t\t$tw.platform.isLinux = /Linux/i.test(navigator.platform);\n\t} else {\n\t\tswitch(require(\"os\").platform()) {\n\t\t\tcase \"darwin\":\n\t\t\t\t$tw.platform.isMac = true;\n\t\t\t\tbreak;\n\t\t\tcase \"win32\":\n\t\t\t\t$tw.platform.isWindows = true;\n\t\t\t\tbreak;\n\t\t\tcase \"freebsd\":\n\t\t\t\t$tw.platform.isLinux = true;\n\t\t\t\tbreak;\n\t\t\tcase \"linux\":\n\t\t\t\t$tw.platform.isLinux = true;\n\t\t\t\tbreak;\n\t\t}\n\t}\n\t// Initialise version\n\t$tw.version = $tw.utils.extractVersionInfo();\n\t// Set up the performance framework\n\t$tw.perf = new $tw.Performance($tw.wiki.getTiddlerText(PERFORMANCE_INSTRUMENTATION_CONFIG_TITLE,\"no\") === \"yes\");\n\t// Create a root widget for attaching event handlers. By using it as the parentWidget for another widget tree, one can reuse the event handlers\n\t$tw.rootWidget = new widget.widget({\n\t\ttype: \"widget\",\n\t\tchildren: []\n\t},{\n\t\twiki: $tw.wiki,\n\t\tdocument: $tw.browser ? document : $tw.fakeDocument\n\t});\n\t// Execute any startup actions\n\tvar executeStartupTiddlers = function(tag) {\n\t\t$tw.utils.each($tw.wiki.filterTiddlers(\"[all[shadows+tiddlers]tag[\" + tag + \"]!has[draft.of]]\"),function(title) {\n\t\t\t$tw.rootWidget.invokeActionString($tw.wiki.getTiddlerText(title),$tw.rootWidget);\n\t\t});\n\t};\n\texecuteStartupTiddlers(\"$:/tags/StartupAction\");\n\tif($tw.browser) {\n\t\texecuteStartupTiddlers(\"$:/tags/StartupAction/Browser\");\t\t\n\t}\n\tif($tw.node) {\n\t\texecuteStartupTiddlers(\"$:/tags/StartupAction/Node\");\t\t\n\t}\n\t// Kick off the language manager and switcher\n\t$tw.language = new $tw.Language();\n\t$tw.languageSwitcher = new $tw.PluginSwitcher({\n\t\twiki: $tw.wiki,\n\t\tpluginType: \"language\",\n\t\tcontrollerTitle: \"$:/language\",\n\t\tdefaultPlugins: [\n\t\t\t\"$:/languages/en-GB\"\n\t\t],\n\t\tonSwitch: function(plugins) {\n\t\t\tif($tw.browser) {\n\t\t\t\tvar pluginTiddler = $tw.wiki.getTiddler(plugins[0]);\n\t\t\t\tif(pluginTiddler) {\n\t\t\t\t\tdocument.documentElement.setAttribute(\"dir\",pluginTiddler.getFieldString(\"text-direction\") || \"auto\");\n\t\t\t\t} else {\n\t\t\t\t\tdocument.documentElement.removeAttribute(\"dir\");\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t});\n\t// Kick off the theme manager\n\t$tw.themeManager = new $tw.PluginSwitcher({\n\t\twiki: $tw.wiki,\n\t\tpluginType: \"theme\",\n\t\tcontrollerTitle: \"$:/theme\",\n\t\tdefaultPlugins: [\n\t\t\t\"$:/themes/tiddlywiki/snowwhite\",\n\t\t\t\"$:/themes/tiddlywiki/vanilla\"\n\t\t]\n\t});\n\t// Kick off the keyboard manager\n\t$tw.keyboardManager = new $tw.KeyboardManager();\n\t// Listen for shortcuts\n\tif($tw.browser) {\n\t\t$tw.utils.addEventListeners(document,[{\n\t\t\tname: \"keydown\",\n\t\t\thandlerObject: $tw.keyboardManager,\n\t\t\thandlerMethod: \"handleKeydownEvent\"\n\t\t}]);\n\t}\n\t// Clear outstanding tiddler store change events to avoid an unnecessary refresh cycle at startup\n\t$tw.wiki.clearTiddlerEventQueue();\n\t// Find a working syncadaptor\n\t$tw.syncadaptor = undefined;\n\t$tw.modules.forEachModuleOfType(\"syncadaptor\",function(title,module) {\n\t\tif(!$tw.syncadaptor && module.adaptorClass) {\n\t\t\t$tw.syncadaptor = new module.adaptorClass({wiki: $tw.wiki});\n\t\t}\n\t});\n\t// Set up the syncer object if we've got a syncadaptor\n\tif($tw.syncadaptor) {\n\t\t$tw.syncer = new $tw.Syncer({wiki: $tw.wiki, syncadaptor: $tw.syncadaptor});\n\t} \n\t// Setup the saver handler\n\t$tw.saverHandler = new $tw.SaverHandler({\n\t\twiki: $tw.wiki,\n\t\tdirtyTracking: !$tw.syncadaptor,\n\t\tpreloadDirty: $tw.boot.preloadDirty || []\n\t});\n\t// Host-specific startup\n\tif($tw.browser) {\n\t\t// Install the popup manager\n\t\t$tw.popup = new $tw.utils.Popup();\n\t\t// Install the animator\n\t\t$tw.anim = new $tw.utils.Animator();\n\t}\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "startup"
},
"$:/core/modules/startup/story.js": {
"title": "$:/core/modules/startup/story.js",
"text": "/*\\\ntitle: $:/core/modules/startup/story.js\ntype: application/javascript\nmodule-type: startup\n\nLoad core modules\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n// Export name and synchronous status\nexports.name = \"story\";\nexports.after = [\"startup\"];\nexports.synchronous = true;\n\n// Default story and history lists\nvar DEFAULT_STORY_TITLE = \"$:/StoryList\";\nvar DEFAULT_HISTORY_TITLE = \"$:/HistoryList\";\n\n// Default tiddlers\nvar DEFAULT_TIDDLERS_TITLE = \"$:/DefaultTiddlers\";\n\n// Config\nvar CONFIG_UPDATE_ADDRESS_BAR = \"$:/config/Navigation/UpdateAddressBar\"; // Can be \"no\", \"permalink\", \"permaview\"\nvar CONFIG_UPDATE_HISTORY = \"$:/config/Navigation/UpdateHistory\"; // Can be \"yes\" or \"no\"\nvar CONFIG_PERMALINKVIEW_COPY_TO_CLIPBOARD = \"$:/config/Navigation/Permalinkview/CopyToClipboard\"; // Can be \"yes\" (default) or \"no\"\nvar CONFIG_PERMALINKVIEW_UPDATE_ADDRESS_BAR = \"$:/config/Navigation/Permalinkview/UpdateAddressBar\"; // Can be \"yes\" (default) or \"no\"\n\n\n// Links to help, if there is no param\nvar HELP_OPEN_EXTERNAL_WINDOW = \"http://tiddlywiki.com/#WidgetMessage%3A%20tm-open-external-window\";\n\nexports.startup = function() {\n\t// Open startup tiddlers\n\topenStartupTiddlers({\n\t\tdisableHistory: $tw.boot.disableStartupNavigation\n\t});\n\tif($tw.browser) {\n\t\t// Set up location hash update\n\t\t$tw.wiki.addEventListener(\"change\",function(changes) {\n\t\t\tif($tw.utils.hop(changes,DEFAULT_STORY_TITLE) || $tw.utils.hop(changes,DEFAULT_HISTORY_TITLE)) {\n\t\t\t\tupdateLocationHash({\n\t\t\t\t\tupdateAddressBar: $tw.wiki.getTiddlerText(CONFIG_UPDATE_ADDRESS_BAR,\"permaview\").trim(),\n\t\t\t\t\tupdateHistory: $tw.wiki.getTiddlerText(CONFIG_UPDATE_HISTORY,\"no\").trim()\n\t\t\t\t});\n\t\t\t}\n\t\t});\n\t\t// Listen for changes to the browser location hash\n\t\twindow.addEventListener(\"hashchange\",function() {\n\t\t\tvar hash = $tw.utils.getLocationHash();\n\t\t\tif(hash !== $tw.locationHash) {\n\t\t\t\t$tw.locationHash = hash;\n\t\t\t\topenStartupTiddlers({defaultToCurrentStory: true});\n\t\t\t}\n\t\t},false);\n\t\t// Listen for the tm-browser-refresh message\n\t\t$tw.rootWidget.addEventListener(\"tm-browser-refresh\",function(event) {\n\t\t\twindow.location.reload(true);\n\t\t});\n\t\t// Listen for tm-open-external-window message\n\t\t$tw.rootWidget.addEventListener(\"tm-open-external-window\",function(event) {\n\t\t\tvar paramObject = event.paramObject || {},\n\t\t\t\tstrUrl = event.param || HELP_OPEN_EXTERNAL_WINDOW,\n\t\t\t\tstrWindowName = paramObject.windowName,\n\t\t\t\tstrWindowFeatures = paramObject.windowFeatures;\n\t\t\twindow.open(strUrl, strWindowName, strWindowFeatures);\n\t\t});\n\t\t// Listen for the tm-print message\n\t\t$tw.rootWidget.addEventListener(\"tm-print\",function(event) {\n\t\t\t(event.event.view || window).print();\n\t\t});\n\t\t// Listen for the tm-home message\n\t\t$tw.rootWidget.addEventListener(\"tm-home\",function(event) {\n\t\t\twindow.location.hash = \"\";\n\t\t\tvar storyFilter = $tw.wiki.getTiddlerText(DEFAULT_TIDDLERS_TITLE),\n\t\t\t\tstoryList = $tw.wiki.filterTiddlers(storyFilter);\n\t\t\t//invoke any hooks that might change the default story list\n\t\t\tstoryList = $tw.hooks.invokeHook(\"th-opening-default-tiddlers-list\",storyList);\n\t\t\t$tw.wiki.addTiddler({title: DEFAULT_STORY_TITLE, text: \"\", list: storyList},$tw.wiki.getModificationFields());\n\t\t\tif(storyList[0]) {\n\t\t\t\t$tw.wiki.addToHistory(storyList[0]);\n\t\t\t}\n\t\t});\n\t\t// Listen for the tm-permalink message\n\t\t$tw.rootWidget.addEventListener(\"tm-permalink\",function(event) {\n\t\t\tupdateLocationHash({\n\t\t\t\tupdateAddressBar: $tw.wiki.getTiddlerText(CONFIG_PERMALINKVIEW_UPDATE_ADDRESS_BAR,\"yes\").trim() === \"yes\" ? \"permalink\" : \"none\",\n\t\t\t\tupdateHistory: $tw.wiki.getTiddlerText(CONFIG_UPDATE_HISTORY,\"no\").trim(),\n\t\t\t\ttargetTiddler: event.param || event.tiddlerTitle,\n\t\t\t\tcopyToClipboard: $tw.wiki.getTiddlerText(CONFIG_PERMALINKVIEW_COPY_TO_CLIPBOARD,\"yes\").trim() === \"yes\" ? \"permalink\" : \"none\"\n\t\t\t});\n\t\t});\n\t\t// Listen for the tm-permaview message\n\t\t$tw.rootWidget.addEventListener(\"tm-permaview\",function(event) {\n\t\t\tupdateLocationHash({\n\t\t\t\tupdateAddressBar: $tw.wiki.getTiddlerText(CONFIG_PERMALINKVIEW_UPDATE_ADDRESS_BAR,\"yes\").trim() === \"yes\" ? \"permaview\" : \"none\",\n\t\t\t\tupdateHistory: $tw.wiki.getTiddlerText(CONFIG_UPDATE_HISTORY,\"no\").trim(),\n\t\t\t\ttargetTiddler: event.param || event.tiddlerTitle,\n\t\t\t\tcopyToClipboard: $tw.wiki.getTiddlerText(CONFIG_PERMALINKVIEW_COPY_TO_CLIPBOARD,\"yes\").trim() === \"yes\" ? \"permaview\" : \"none\"\n\t\t\t});\t\t\t\t\n\t\t});\n\t}\n};\n\n/*\nProcess the location hash to open the specified tiddlers. Options:\ndisableHistory: if true $:/History is NOT updated\ndefaultToCurrentStory: If true, the current story is retained as the default, instead of opening the default tiddlers\n*/\nfunction openStartupTiddlers(options) {\n\toptions = options || {};\n\t// Work out the target tiddler and the story filter. \"null\" means \"unspecified\"\n\tvar target = null,\n\t\tstoryFilter = null;\n\tif($tw.locationHash.length > 1) {\n\t\tvar hash = $tw.locationHash.substr(1),\n\t\t\tsplit = hash.indexOf(\":\");\n\t\tif(split === -1) {\n\t\t\ttarget = decodeURIComponent(hash.trim());\n\t\t} else {\n\t\t\ttarget = decodeURIComponent(hash.substr(0,split).trim());\n\t\t\tstoryFilter = decodeURIComponent(hash.substr(split + 1).trim());\n\t\t}\n\t}\n\t// If the story wasn't specified use the current tiddlers or a blank story\n\tif(storyFilter === null) {\n\t\tif(options.defaultToCurrentStory) {\n\t\t\tvar currStoryList = $tw.wiki.getTiddlerList(DEFAULT_STORY_TITLE);\n\t\t\tstoryFilter = $tw.utils.stringifyList(currStoryList);\n\t\t} else {\n\t\t\tif(target && target !== \"\") {\n\t\t\t\tstoryFilter = \"\";\n\t\t\t} else {\n\t\t\t\tstoryFilter = $tw.wiki.getTiddlerText(DEFAULT_TIDDLERS_TITLE);\n\t\t\t}\n\t\t}\n\t}\n\t// Process the story filter to get the story list\n\tvar storyList = $tw.wiki.filterTiddlers(storyFilter);\n\t// Invoke any hooks that want to change the default story list\n\tstoryList = $tw.hooks.invokeHook(\"th-opening-default-tiddlers-list\",storyList);\n\t// If the target tiddler isn't included then splice it in at the top\n\tif(target && storyList.indexOf(target) === -1) {\n\t\tstoryList.unshift(target);\n\t}\n\t// Save the story list\n\t$tw.wiki.addTiddler({title: DEFAULT_STORY_TITLE, text: \"\", list: storyList},$tw.wiki.getModificationFields());\n\t// Update history\n\tif(!options.disableHistory) {\n\t\t// If a target tiddler was specified add it to the history stack\n\t\tif(target && target !== \"\") {\n\t\t\t// The target tiddler doesn't need double square brackets, but we'll silently remove them if they're present\n\t\t\tif(target.indexOf(\"[[\") === 0 && target.substr(-2) === \"]]\") {\n\t\t\t\ttarget = target.substr(2,target.length - 4);\n\t\t\t}\n\t\t\t$tw.wiki.addToHistory(target);\n\t\t} else if(storyList.length > 0) {\n\t\t\t$tw.wiki.addToHistory(storyList[0]);\n\t\t}\t\t\n\t}\n}\n\n/*\noptions: See below\noptions.updateAddressBar: \"permalink\", \"permaview\" or \"no\" (defaults to \"permaview\")\noptions.updateHistory: \"yes\" or \"no\" (defaults to \"no\")\noptions.copyToClipboard: \"permalink\", \"permaview\" or \"no\" (defaults to \"no\")\noptions.targetTiddler: optional title of target tiddler for permalink\n*/\nfunction updateLocationHash(options) {\n\t// Get the story and the history stack\n\tvar storyList = $tw.wiki.getTiddlerList(DEFAULT_STORY_TITLE),\n\t\thistoryList = $tw.wiki.getTiddlerData(DEFAULT_HISTORY_TITLE,[]),\n\t\ttargetTiddler = \"\";\n\tif(options.targetTiddler) {\n\t\ttargetTiddler = options.targetTiddler;\n\t} else {\n\t\t// The target tiddler is the one at the top of the stack\n\t\tif(historyList.length > 0) {\n\t\t\ttargetTiddler = historyList[historyList.length-1].title;\n\t\t}\n\t\t// Blank the target tiddler if it isn't present in the story\n\t\tif(storyList.indexOf(targetTiddler) === -1) {\n\t\t\ttargetTiddler = \"\";\n\t\t}\n\t}\n\t// Assemble the location hash\n\tswitch(options.updateAddressBar) {\n\t\tcase \"permalink\":\n\t\t\t$tw.locationHash = \"#\" + encodeURIComponent(targetTiddler);\n\t\t\tbreak;\n\t\tcase \"permaview\":\n\t\t\t$tw.locationHash = \"#\" + encodeURIComponent(targetTiddler) + \":\" + encodeURIComponent($tw.utils.stringifyList(storyList));\n\t\t\tbreak;\n\t}\n\t// Copy URL to the clipboard\n\tswitch(options.copyToClipboard) {\n\t\tcase \"permalink\":\n\t\t\t$tw.utils.copyToClipboard($tw.utils.getLocationPath() + \"#\" + encodeURIComponent(targetTiddler));\n\t\t\tbreak;\n\t\tcase \"permaview\":\n\t\t\t$tw.utils.copyToClipboard($tw.utils.getLocationPath() + \"#\" + encodeURIComponent(targetTiddler) + \":\" + encodeURIComponent($tw.utils.stringifyList(storyList)));\n\t\t\tbreak;\n\t}\n\t// Only change the location hash if we must, thus avoiding unnecessary onhashchange events\n\tif($tw.utils.getLocationHash() !== $tw.locationHash) {\n\t\tif(options.updateHistory === \"yes\") {\n\t\t\t// Assign the location hash so that history is updated\n\t\t\twindow.location.hash = $tw.locationHash;\n\t\t} else {\n\t\t\t// We use replace so that browser history isn't affected\n\t\t\twindow.location.replace(window.location.toString().split(\"#\")[0] + $tw.locationHash);\n\t\t}\n\t}\n}\n\n})();\n",
"type": "application/javascript",
"module-type": "startup"
},
"$:/core/modules/startup/windows.js": {
"title": "$:/core/modules/startup/windows.js",
"text": "/*\\\ntitle: $:/core/modules/startup/windows.js\ntype: application/javascript\nmodule-type: startup\n\nSetup root widget handlers for the messages concerned with opening external browser windows\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n// Export name and synchronous status\nexports.name = \"windows\";\nexports.platforms = [\"browser\"];\nexports.after = [\"startup\"];\nexports.synchronous = true;\n\n// Global to keep track of open windows (hashmap by title)\nvar windows = {};\n\nexports.startup = function() {\n\t// Handle open window message\n\t$tw.rootWidget.addEventListener(\"tm-open-window\",function(event) {\n\t\t// Get the parameters\n\t\tvar refreshHandler,\n\t\t\ttitle = event.param || event.tiddlerTitle,\n\t\t\tparamObject = event.paramObject || {},\n\t\t\twindowTitle = paramObject.windowTitle || title,\n\t\t\ttemplate = paramObject.template || \"$:/core/templates/single.tiddler.window\",\n\t\t\twidth = paramObject.width || \"700\",\n\t\t\theight = paramObject.height || \"600\",\n\t\t\tvariables = $tw.utils.extend({},paramObject,{currentTiddler: title});\n\t\t// Open the window\n\t\tvar srcWindow,\n\t\t srcDocument;\n\t\t// In case that popup blockers deny opening a new window\n\t\ttry {\n\t\t\tsrcWindow = window.open(\"\",\"external-\" + title,\"scrollbars,width=\" + width + \",height=\" + height),\n\t\t\tsrcDocument = srcWindow.document;\n\t\t}\n\t\tcatch(e) {\n\t\t\treturn;\n\t\t}\n\t\twindows[title] = srcWindow;\n\t\t// Check for reopening the same window\n\t\tif(srcWindow.haveInitialisedWindow) {\n\t\t\treturn;\n\t\t}\n\t\t// Initialise the document\n\t\tsrcDocument.write(\"<html><head></head><body class='tc-body tc-single-tiddler-window'></body></html>\");\n\t\tsrcDocument.close();\n\t\tsrcDocument.title = windowTitle;\n\t\tsrcWindow.addEventListener(\"beforeunload\",function(event) {\n\t\t\tdelete windows[title];\n\t\t\t$tw.wiki.removeEventListener(\"change\",refreshHandler);\n\t\t},false);\n\t\t// Set up the styles\n\t\tvar styleWidgetNode = $tw.wiki.makeTranscludeWidget(\"$:/core/ui/PageStylesheet\",{\n\t\t\t\tdocument: $tw.fakeDocument,\n\t\t\t\tvariables: variables,\n\t\t\t\timportPageMacros: true}),\n\t\t\tstyleContainer = $tw.fakeDocument.createElement(\"style\");\n\t\tstyleWidgetNode.render(styleContainer,null);\n\t\tvar styleElement = srcDocument.createElement(\"style\");\n\t\tstyleElement.innerHTML = styleContainer.textContent;\n\t\tsrcDocument.head.insertBefore(styleElement,srcDocument.head.firstChild);\n\t\t// Render the text of the tiddler\n\t\tvar parser = $tw.wiki.parseTiddler(template),\n\t\t\twidgetNode = $tw.wiki.makeWidget(parser,{document: srcDocument, parentWidget: $tw.rootWidget, variables: variables});\n\t\twidgetNode.render(srcDocument.body,srcDocument.body.firstChild);\n\t\t// Function to handle refreshes\n\t\trefreshHandler = function(changes) {\n\t\t\tif(styleWidgetNode.refresh(changes,styleContainer,null)) {\n\t\t\t\tstyleElement.innerHTML = styleContainer.textContent;\n\t\t\t}\n\t\t\twidgetNode.refresh(changes);\n\t\t};\n\t\t$tw.wiki.addEventListener(\"change\",refreshHandler);\n\t\t// Listen for keyboard shortcuts\n\t\t$tw.utils.addEventListeners(srcDocument,[{\n\t\t\tname: \"keydown\",\n\t\t\thandlerObject: $tw.keyboardManager,\n\t\t\thandlerMethod: \"handleKeydownEvent\"\n\t\t},{\n\t\t\tname: \"click\",\n\t\t\thandlerObject: $tw.popup,\n\t\t\thandlerMethod: \"handleEvent\"\n\t\t}]);\n\t\tsrcWindow.haveInitialisedWindow = true;\n\t});\n\t// Close open windows when unloading main window\n\t$tw.addUnloadTask(function() {\n\t\t$tw.utils.each(windows,function(win) {\n\t\t\twin.close();\n\t\t});\n\t});\n\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "startup"
},
"$:/core/modules/story.js": {
"title": "$:/core/modules/story.js",
"text": "/*\\\ntitle: $:/core/modules/story.js\ntype: application/javascript\nmodule-type: global\n\nLightweight object for managing interactions with the story and history lists.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nConstruct Story object with options:\nwiki: reference to wiki object to use to resolve tiddler titles\nstoryTitle: title of story list tiddler\nhistoryTitle: title of history list tiddler\n*/\nfunction Story(options) {\n\toptions = options || {};\n\tthis.wiki = options.wiki || $tw.wiki;\n\tthis.storyTitle = options.storyTitle || \"$:/StoryList\";\n\tthis.historyTitle = options.historyTitle || \"$:/HistoryList\";\n};\n\nStory.prototype.navigateTiddler = function(navigateTo,navigateFromTitle,navigateFromClientRect) {\n\tthis.addToStory(navigateTo,navigateFromTitle);\n\tthis.addToHistory(navigateTo,navigateFromClientRect);\n};\n\nStory.prototype.getStoryList = function() {\n\treturn this.wiki.getTiddlerList(this.storyTitle) || [];\n};\n\nStory.prototype.addToStory = function(navigateTo,navigateFromTitle,options) {\n\toptions = options || {};\n\tvar storyList = this.getStoryList();\n\t// See if the tiddler is already there\n\tvar slot = storyList.indexOf(navigateTo);\n\t// Quit if it already exists in the story river\n\tif(slot >= 0) {\n\t\treturn;\n\t}\n\t// First we try to find the position of the story element we navigated from\n\tvar fromIndex = storyList.indexOf(navigateFromTitle);\n\tif(fromIndex >= 0) {\n\t\t// The tiddler is added from inside the river\n\t\t// Determine where to insert the tiddler; Fallback is \"below\"\n\t\tswitch(options.openLinkFromInsideRiver) {\n\t\t\tcase \"top\":\n\t\t\t\tslot = 0;\n\t\t\t\tbreak;\n\t\t\tcase \"bottom\":\n\t\t\t\tslot = storyList.length;\n\t\t\t\tbreak;\n\t\t\tcase \"above\":\n\t\t\t\tslot = fromIndex;\n\t\t\t\tbreak;\n\t\t\tcase \"below\": // Intentional fall-through\n\t\t\tdefault:\n\t\t\t\tslot = fromIndex + 1;\n\t\t\t\tbreak;\n\t\t}\n\t} else {\n\t\t// The tiddler is opened from outside the river. Determine where to insert the tiddler; default is \"top\"\n\t\tif(options.openLinkFromOutsideRiver === \"bottom\") {\n\t\t\t// Insert at bottom\n\t\t\tslot = storyList.length;\n\t\t} else {\n\t\t\t// Insert at top\n\t\t\tslot = 0;\n\t\t}\n\t}\n\t// Add the tiddler\n\tstoryList.splice(slot,0,navigateTo);\n\t// Save the story\n\tthis.saveStoryList(storyList);\n};\n\nStory.prototype.saveStoryList = function(storyList) {\n\tvar storyTiddler = this.wiki.getTiddler(this.storyTitle);\n\tthis.wiki.addTiddler(new $tw.Tiddler(\n\t\tthis.wiki.getCreationFields(),\n\t\t{title: this.storyTitle},\n\t\tstoryTiddler,\n\t\t{list: storyList},\n\t\tthis.wiki.getModificationFields()\n\t));\n};\n\nStory.prototype.addToHistory = function(navigateTo,navigateFromClientRect) {\n\tvar titles = $tw.utils.isArray(navigateTo) ? navigateTo : [navigateTo];\n\t// Add a new record to the top of the history stack\n\tvar historyList = this.wiki.getTiddlerData(this.historyTitle,[]);\n\t$tw.utils.each(titles,function(title) {\n\t\thistoryList.push({title: title, fromPageRect: navigateFromClientRect});\n\t});\n\tthis.wiki.setTiddlerData(this.historyTitle,historyList,{\"current-tiddler\": titles[titles.length-1]});\n};\n\nStory.prototype.storyCloseTiddler = function(targetTitle) {\n// TBD\n};\n\nStory.prototype.storyCloseAllTiddlers = function() {\n// TBD\n};\n\nStory.prototype.storyCloseOtherTiddlers = function(targetTitle) {\n// TBD\n};\n\nStory.prototype.storyEditTiddler = function(targetTitle) {\n// TBD\n};\n\nStory.prototype.storyDeleteTiddler = function(targetTitle) {\n// TBD\n};\n\nStory.prototype.storySaveTiddler = function(targetTitle) {\n// TBD\n};\n\nStory.prototype.storyCancelTiddler = function(targetTitle) {\n// TBD\n};\n\nStory.prototype.storyNewTiddler = function(targetTitle) {\n// TBD\n};\n\nexports.Story = Story;\n\n\n})();\n",
"type": "application/javascript",
"module-type": "global"
},
"$:/core/modules/storyviews/classic.js": {
"title": "$:/core/modules/storyviews/classic.js",
"text": "/*\\\ntitle: $:/core/modules/storyviews/classic.js\ntype: application/javascript\nmodule-type: storyview\n\nViews the story as a linear sequence\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar easing = \"cubic-bezier(0.645, 0.045, 0.355, 1)\"; // From http://easings.net/#easeInOutCubic\n\nvar ClassicStoryView = function(listWidget) {\n\tthis.listWidget = listWidget;\n};\n\nClassicStoryView.prototype.navigateTo = function(historyInfo) {\n\tvar duration = $tw.utils.getAnimationDuration()\n\tvar listElementIndex = this.listWidget.findListItem(0,historyInfo.title);\n\tif(listElementIndex === undefined) {\n\t\treturn;\n\t}\n\tvar listItemWidget = this.listWidget.children[listElementIndex],\n\t\ttargetElement = listItemWidget.findFirstDomNode();\n\t// Abandon if the list entry isn't a DOM element (it might be a text node)\n\tif(!(targetElement instanceof Element)) {\n\t\treturn;\n\t}\n\tif(duration) {\n\t\t// Scroll the node into view\n\t\tthis.listWidget.dispatchEvent({type: \"tm-scroll\", target: targetElement});\t\n\t} else {\n\t\ttargetElement.scrollIntoView();\n\t}\n};\n\nClassicStoryView.prototype.insert = function(widget) {\n\tvar duration = $tw.utils.getAnimationDuration();\n\tif(duration) {\n\t\tvar targetElement = widget.findFirstDomNode();\n\t\t// Abandon if the list entry isn't a DOM element (it might be a text node)\n\t\tif(!(targetElement instanceof Element)) {\n\t\t\treturn;\n\t\t}\n\t\t// Get the current height of the tiddler\n\t\tvar computedStyle = window.getComputedStyle(targetElement),\n\t\t\tcurrMarginBottom = parseInt(computedStyle.marginBottom,10),\n\t\t\tcurrMarginTop = parseInt(computedStyle.marginTop,10),\n\t\t\tcurrHeight = targetElement.offsetHeight + currMarginTop;\n\t\t// Reset the margin once the transition is over\n\t\tsetTimeout(function() {\n\t\t\t$tw.utils.setStyle(targetElement,[\n\t\t\t\t{transition: \"none\"},\n\t\t\t\t{marginBottom: \"\"}\n\t\t\t]);\n\t\t},duration);\n\t\t// Set up the initial position of the element\n\t\t$tw.utils.setStyle(targetElement,[\n\t\t\t{transition: \"none\"},\n\t\t\t{marginBottom: (-currHeight) + \"px\"},\n\t\t\t{opacity: \"0.0\"}\n\t\t]);\n\t\t$tw.utils.forceLayout(targetElement);\n\t\t// Transition to the final position\n\t\t$tw.utils.setStyle(targetElement,[\n\t\t\t{transition: \"opacity \" + duration + \"ms \" + easing + \", \" +\n\t\t\t\t\t\t\"margin-bottom \" + duration + \"ms \" + easing},\n\t\t\t{marginBottom: currMarginBottom + \"px\"},\n\t\t\t{opacity: \"1.0\"}\n\t]);\n\t}\n};\n\nClassicStoryView.prototype.remove = function(widget) {\n\tvar duration = $tw.utils.getAnimationDuration();\n\tif(duration) {\n\t\tvar targetElement = widget.findFirstDomNode(),\n\t\t\tremoveElement = function() {\n\t\t\t\twidget.removeChildDomNodes();\n\t\t\t};\n\t\t// Abandon if the list entry isn't a DOM element (it might be a text node)\n\t\tif(!(targetElement instanceof Element)) {\n\t\t\tremoveElement();\n\t\t\treturn;\n\t\t}\n\t\t// Get the current height of the tiddler\n\t\tvar currWidth = targetElement.offsetWidth,\n\t\t\tcomputedStyle = window.getComputedStyle(targetElement),\n\t\t\tcurrMarginBottom = parseInt(computedStyle.marginBottom,10),\n\t\t\tcurrMarginTop = parseInt(computedStyle.marginTop,10),\n\t\t\tcurrHeight = targetElement.offsetHeight + currMarginTop;\n\t\t// Remove the dom nodes of the widget at the end of the transition\n\t\tsetTimeout(removeElement,duration);\n\t\t// Animate the closure\n\t\t$tw.utils.setStyle(targetElement,[\n\t\t\t{transition: \"none\"},\n\t\t\t{transform: \"translateX(0px)\"},\n\t\t\t{marginBottom: currMarginBottom + \"px\"},\n\t\t\t{opacity: \"1.0\"}\n\t\t]);\n\t\t$tw.utils.forceLayout(targetElement);\n\t\t$tw.utils.setStyle(targetElement,[\n\t\t\t{transition: $tw.utils.roundTripPropertyName(\"transform\") + \" \" + duration + \"ms \" + easing + \", \" +\n\t\t\t\t\t\t\"opacity \" + duration + \"ms \" + easing + \", \" +\n\t\t\t\t\t\t\"margin-bottom \" + duration + \"ms \" + easing},\n\t\t\t{transform: \"translateX(-\" + currWidth + \"px)\"},\n\t\t\t{marginBottom: (-currHeight) + \"px\"},\n\t\t\t{opacity: \"0.0\"}\n\t\t]);\n\t} else {\n\t\twidget.removeChildDomNodes();\n\t}\n};\n\nexports.classic = ClassicStoryView;\n\n})();",
"type": "application/javascript",
"module-type": "storyview"
},
"$:/core/modules/storyviews/pop.js": {
"title": "$:/core/modules/storyviews/pop.js",
"text": "/*\\\ntitle: $:/core/modules/storyviews/pop.js\ntype: application/javascript\nmodule-type: storyview\n\nAnimates list insertions and removals\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar PopStoryView = function(listWidget) {\n\tthis.listWidget = listWidget;\n};\n\nPopStoryView.prototype.navigateTo = function(historyInfo) {\n\tvar listElementIndex = this.listWidget.findListItem(0,historyInfo.title);\n\tif(listElementIndex === undefined) {\n\t\treturn;\n\t}\n\tvar listItemWidget = this.listWidget.children[listElementIndex],\n\t\ttargetElement = listItemWidget.findFirstDomNode();\n\t// Abandon if the list entry isn't a DOM element (it might be a text node)\n\tif(!(targetElement instanceof Element)) {\n\t\treturn;\n\t}\n\t// Scroll the node into view\n\tthis.listWidget.dispatchEvent({type: \"tm-scroll\", target: targetElement});\n};\n\nPopStoryView.prototype.insert = function(widget) {\n\tvar targetElement = widget.findFirstDomNode(),\n\t\tduration = $tw.utils.getAnimationDuration();\n\t// Abandon if the list entry isn't a DOM element (it might be a text node)\n\tif(!(targetElement instanceof Element)) {\n\t\treturn;\n\t}\n\t// Reset once the transition is over\n\tsetTimeout(function() {\n\t\t$tw.utils.setStyle(targetElement,[\n\t\t\t{transition: \"none\"},\n\t\t\t{transform: \"none\"}\n\t\t]);\n\t\t$tw.utils.setStyle(widget.document.body,[\n\t\t\t{\"overflow-x\": \"\"}\n\t\t]);\n\t},duration);\n\t// Prevent the page from overscrolling due to the zoom factor\n\t$tw.utils.setStyle(widget.document.body,[\n\t\t{\"overflow-x\": \"hidden\"}\n\t]);\n\t// Set up the initial position of the element\n\t$tw.utils.setStyle(targetElement,[\n\t\t{transition: \"none\"},\n\t\t{transform: \"scale(2)\"},\n\t\t{opacity: \"0.0\"}\n\t]);\n\t$tw.utils.forceLayout(targetElement);\n\t// Transition to the final position\n\t$tw.utils.setStyle(targetElement,[\n\t\t{transition: $tw.utils.roundTripPropertyName(\"transform\") + \" \" + duration + \"ms ease-in-out, \" +\n\t\t\t\t\t\"opacity \" + duration + \"ms ease-in-out\"},\n\t\t{transform: \"scale(1)\"},\n\t\t{opacity: \"1.0\"}\n\t]);\n};\n\nPopStoryView.prototype.remove = function(widget) {\n\tvar targetElement = widget.findFirstDomNode(),\n\t\tduration = $tw.utils.getAnimationDuration(),\n\t\tremoveElement = function() {\n\t\t\tif(targetElement && targetElement.parentNode) {\n\t\t\t\twidget.removeChildDomNodes();\n\t\t\t}\n\t\t};\n\t// Abandon if the list entry isn't a DOM element (it might be a text node)\n\tif(!(targetElement instanceof Element)) {\n\t\tremoveElement();\n\t\treturn;\n\t}\n\t// Remove the element at the end of the transition\n\tsetTimeout(removeElement,duration);\n\t// Animate the closure\n\t$tw.utils.setStyle(targetElement,[\n\t\t{transition: \"none\"},\n\t\t{transform: \"scale(1)\"},\n\t\t{opacity: \"1.0\"}\n\t]);\n\t$tw.utils.forceLayout(targetElement);\n\t$tw.utils.setStyle(targetElement,[\n\t\t{transition: $tw.utils.roundTripPropertyName(\"transform\") + \" \" + duration + \"ms ease-in-out, \" +\n\t\t\t\t\t\"opacity \" + duration + \"ms ease-in-out\"},\n\t\t{transform: \"scale(0.1)\"},\n\t\t{opacity: \"0.0\"}\n\t]);\n};\n\nexports.pop = PopStoryView;\n\n})();\n",
"type": "application/javascript",
"module-type": "storyview"
},
"$:/core/modules/storyviews/zoomin.js": {
"title": "$:/core/modules/storyviews/zoomin.js",
"text": "/*\\\ntitle: $:/core/modules/storyviews/zoomin.js\ntype: application/javascript\nmodule-type: storyview\n\nZooms between individual tiddlers\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar easing = \"cubic-bezier(0.645, 0.045, 0.355, 1)\"; // From http://easings.net/#easeInOutCubic\n\nvar ZoominListView = function(listWidget) {\n\tvar self = this;\n\tthis.listWidget = listWidget;\n\t// Get the index of the tiddler that is at the top of the history\n\tvar history = this.listWidget.wiki.getTiddlerDataCached(this.listWidget.historyTitle,[]),\n\t\ttargetTiddler;\n\tif(history.length > 0) {\n\t\ttargetTiddler = history[history.length-1].title;\n\t}\n\t// Make all the tiddlers position absolute, and hide all but the top (or first) one\n\t$tw.utils.each(this.listWidget.children,function(itemWidget,index) {\n\t\tvar domNode = itemWidget.findFirstDomNode();\n\t\t// Abandon if the list entry isn't a DOM element (it might be a text node)\n\t\tif(!(domNode instanceof Element)) {\n\t\t\treturn;\n\t\t}\n\t\tif((targetTiddler && targetTiddler !== itemWidget.parseTreeNode.itemTitle) || (!targetTiddler && index)) {\n\t\t\tdomNode.style.display = \"none\";\n\t\t} else {\n\t\t\tself.currentTiddlerDomNode = domNode;\n\t\t}\n\t\t$tw.utils.addClass(domNode,\"tc-storyview-zoomin-tiddler\");\n\t});\n};\n\nZoominListView.prototype.navigateTo = function(historyInfo) {\n\tvar duration = $tw.utils.getAnimationDuration(),\n\t\tlistElementIndex = this.listWidget.findListItem(0,historyInfo.title);\n\tif(listElementIndex === undefined) {\n\t\treturn;\n\t}\n\tvar listItemWidget = this.listWidget.children[listElementIndex],\n\t\ttargetElement = listItemWidget.findFirstDomNode();\n\t// Abandon if the list entry isn't a DOM element (it might be a text node)\n\tif(!(targetElement instanceof Element)) {\n\t\treturn;\n\t}\n\t// Make the new tiddler be position absolute and visible so that we can measure it\n\t$tw.utils.addClass(targetElement,\"tc-storyview-zoomin-tiddler\");\n\t$tw.utils.setStyle(targetElement,[\n\t\t{display: \"block\"},\n\t\t{transformOrigin: \"0 0\"},\n\t\t{transform: \"translateX(0px) translateY(0px) scale(1)\"},\n\t\t{transition: \"none\"},\n\t\t{opacity: \"0.0\"}\n\t]);\n\t// Get the position of the source node, or use the centre of the window as the source position\n\tvar sourceBounds = historyInfo.fromPageRect || {\n\t\t\tleft: window.innerWidth/2 - 2,\n\t\t\ttop: window.innerHeight/2 - 2,\n\t\t\twidth: window.innerWidth/8,\n\t\t\theight: window.innerHeight/8\n\t\t};\n\t// Try to find the title node in the target tiddler\n\tvar titleDomNode = findTitleDomNode(listItemWidget) || listItemWidget.findFirstDomNode(),\n\t\tzoomBounds = titleDomNode.getBoundingClientRect();\n\t// Compute the transform for the target tiddler to make the title lie over the source rectange\n\tvar targetBounds = targetElement.getBoundingClientRect(),\n\t\tscale = sourceBounds.width / zoomBounds.width,\n\t\tx = sourceBounds.left - targetBounds.left - (zoomBounds.left - targetBounds.left) * scale,\n\t\ty = sourceBounds.top - targetBounds.top - (zoomBounds.top - targetBounds.top) * scale;\n\t// Transform the target tiddler to its starting position\n\t$tw.utils.setStyle(targetElement,[\n\t\t{transform: \"translateX(\" + x + \"px) translateY(\" + y + \"px) scale(\" + scale + \")\"}\n\t]);\n\t// Force layout\n\t$tw.utils.forceLayout(targetElement);\n\t// Apply the ending transitions with a timeout to ensure that the previously applied transformations are applied first\n\tvar self = this,\n\t\tprevCurrentTiddler = this.currentTiddlerDomNode;\n\tthis.currentTiddlerDomNode = targetElement;\n\t// Transform the target tiddler to its natural size\n\t$tw.utils.setStyle(targetElement,[\n\t\t{transition: $tw.utils.roundTripPropertyName(\"transform\") + \" \" + duration + \"ms \" + easing + \", opacity \" + duration + \"ms \" + easing},\n\t\t{opacity: \"1.0\"},\n\t\t{transform: \"translateX(0px) translateY(0px) scale(1)\"},\n\t\t{zIndex: \"500\"},\n\t]);\n\t// Transform the previous tiddler out of the way and then hide it\n\tif(prevCurrentTiddler && prevCurrentTiddler !== targetElement) {\n\t\tscale = zoomBounds.width / sourceBounds.width;\n\t\tx = zoomBounds.left - targetBounds.left - (sourceBounds.left - targetBounds.left) * scale;\n\t\ty = zoomBounds.top - targetBounds.top - (sourceBounds.top - targetBounds.top) * scale;\n\t\t$tw.utils.setStyle(prevCurrentTiddler,[\n\t\t\t{transition: $tw.utils.roundTripPropertyName(\"transform\") + \" \" + duration + \"ms \" + easing + \", opacity \" + duration + \"ms \" + easing},\n\t\t\t{opacity: \"0.0\"},\n\t\t\t{transformOrigin: \"0 0\"},\n\t\t\t{transform: \"translateX(\" + x + \"px) translateY(\" + y + \"px) scale(\" + scale + \")\"},\n\t\t\t{zIndex: \"0\"}\n\t\t]);\n\t\t// Hide the tiddler when the transition has finished\n\t\tsetTimeout(function() {\n\t\t\tif(self.currentTiddlerDomNode !== prevCurrentTiddler) {\n\t\t\t\tprevCurrentTiddler.style.display = \"none\";\n\t\t\t}\n\t\t},duration);\n\t}\n\t// Scroll the target into view\n//\t$tw.pageScroller.scrollIntoView(targetElement);\n};\n\n/*\nFind the first child DOM node of a widget that has the class \"tc-title\"\n*/\nfunction findTitleDomNode(widget,targetClass) {\n\ttargetClass = targetClass || \"tc-title\";\n\tvar domNode = widget.findFirstDomNode();\n\tif(domNode && domNode.querySelector) {\n\t\treturn domNode.querySelector(\".\" + targetClass);\n\t}\n\treturn null;\n}\n\nZoominListView.prototype.insert = function(widget) {\n\tvar targetElement = widget.findFirstDomNode();\n\t// Abandon if the list entry isn't a DOM element (it might be a text node)\n\tif(!(targetElement instanceof Element)) {\n\t\treturn;\n\t}\n\t// Make the newly inserted node position absolute and hidden\n\t$tw.utils.addClass(targetElement,\"tc-storyview-zoomin-tiddler\");\n\t$tw.utils.setStyle(targetElement,[\n\t\t{display: \"none\"}\n\t]);\n};\n\nZoominListView.prototype.remove = function(widget) {\n\tvar targetElement = widget.findFirstDomNode(),\n\t\tduration = $tw.utils.getAnimationDuration(),\n\t\tremoveElement = function() {\n\t\t\twidget.removeChildDomNodes();\n\t\t};\n\t// Abandon if the list entry isn't a DOM element (it might be a text node)\n\tif(!(targetElement instanceof Element)) {\n\t\tremoveElement();\n\t\treturn;\n\t}\n\t// Abandon if hidden\n\tif(targetElement.style.display != \"block\" ) {\n\t\tremoveElement();\n\t\treturn;\n\t}\n\t// Set up the tiddler that is being closed\n\t$tw.utils.addClass(targetElement,\"tc-storyview-zoomin-tiddler\");\n\t$tw.utils.setStyle(targetElement,[\n\t\t{display: \"block\"},\n\t\t{transformOrigin: \"50% 50%\"},\n\t\t{transform: \"translateX(0px) translateY(0px) scale(1)\"},\n\t\t{transition: \"none\"},\n\t\t{zIndex: \"0\"}\n\t]);\n\t// We'll move back to the previous or next element in the story\n\tvar toWidget = widget.previousSibling();\n\tif(!toWidget) {\n\t\ttoWidget = widget.nextSibling();\n\t}\n\tvar toWidgetDomNode = toWidget && toWidget.findFirstDomNode();\n\t// Set up the tiddler we're moving back in\n\tif(toWidgetDomNode) {\n\t\t$tw.utils.addClass(toWidgetDomNode,\"tc-storyview-zoomin-tiddler\");\n\t\t$tw.utils.setStyle(toWidgetDomNode,[\n\t\t\t{display: \"block\"},\n\t\t\t{transformOrigin: \"50% 50%\"},\n\t\t\t{transform: \"translateX(0px) translateY(0px) scale(10)\"},\n\t\t\t{transition: $tw.utils.roundTripPropertyName(\"transform\") + \" \" + duration + \"ms \" + easing + \", opacity \" + duration + \"ms \" + easing},\n\t\t\t{opacity: \"0\"},\n\t\t\t{zIndex: \"500\"}\n\t\t]);\n\t\tthis.currentTiddlerDomNode = toWidgetDomNode;\n\t}\n\t// Animate them both\n\t// Force layout\n\t$tw.utils.forceLayout(this.listWidget.parentDomNode);\n\t// First, the tiddler we're closing\n\t$tw.utils.setStyle(targetElement,[\n\t\t{transformOrigin: \"50% 50%\"},\n\t\t{transform: \"translateX(0px) translateY(0px) scale(0.1)\"},\n\t\t{transition: $tw.utils.roundTripPropertyName(\"transform\") + \" \" + duration + \"ms \" + easing + \", opacity \" + duration + \"ms \" + easing},\n\t\t{opacity: \"0\"},\n\t\t{zIndex: \"0\"}\n\t]);\n\tsetTimeout(removeElement,duration);\n\t// Now the tiddler we're going back to\n\tif(toWidgetDomNode) {\n\t\t$tw.utils.setStyle(toWidgetDomNode,[\n\t\t\t{transform: \"translateX(0px) translateY(0px) scale(1)\"},\n\t\t\t{opacity: \"1\"}\n\t\t]);\n\t}\n\treturn true; // Indicate that we'll delete the DOM node\n};\n\nexports.zoomin = ZoominListView;\n\n})();\n",
"type": "application/javascript",
"module-type": "storyview"
},
"$:/core/modules/syncer.js": {
"title": "$:/core/modules/syncer.js",
"text": "/*\\\ntitle: $:/core/modules/syncer.js\ntype: application/javascript\nmodule-type: global\n\nThe syncer tracks changes to the store. If a syncadaptor is used then individual tiddlers are synchronised through it. If there is no syncadaptor then the entire wiki is saved via saver modules.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nDefaults\n*/\nSyncer.prototype.titleIsLoggedIn = \"$:/status/IsLoggedIn\";\nSyncer.prototype.titleIsAnonymous = \"$:/status/IsAnonymous\";\nSyncer.prototype.titleIsReadOnly = \"$:/status/IsReadOnly\";\nSyncer.prototype.titleUserName = \"$:/status/UserName\";\nSyncer.prototype.titleSyncFilter = \"$:/config/SyncFilter\";\nSyncer.prototype.titleSyncPollingInterval = \"$:/config/SyncPollingInterval\";\nSyncer.prototype.titleSavedNotification = \"$:/language/Notifications/Save/Done\";\nSyncer.prototype.taskTimerInterval = 1 * 1000; // Interval for sync timer\nSyncer.prototype.throttleInterval = 1 * 1000; // Defer saving tiddlers if they've changed in the last 1s...\nSyncer.prototype.fallbackInterval = 10 * 1000; // Unless the task is older than 10s\nSyncer.prototype.pollTimerInterval = 60 * 1000; // Interval for polling for changes from the adaptor\n\n/*\nInstantiate the syncer with the following options:\nsyncadaptor: reference to syncadaptor to be used\nwiki: wiki to be synced\n*/\nfunction Syncer(options) {\n\tvar self = this;\n\tthis.wiki = options.wiki;\n\tthis.syncadaptor = options.syncadaptor;\n\tthis.disableUI = !!options.disableUI;\n\tthis.titleIsLoggedIn = options.titleIsLoggedIn || this.titleIsLoggedIn;\n\tthis.titleUserName = options.titleUserName || this.titleUserName;\n\tthis.titleSyncFilter = options.titleSyncFilter || this.titleSyncFilter;\n\tthis.titleSavedNotification = options.titleSavedNotification || this.titleSavedNotification;\n\tthis.taskTimerInterval = options.taskTimerInterval || this.taskTimerInterval;\n\tthis.throttleInterval = options.throttleInterval || this.throttleInterval;\n\tthis.fallbackInterval = options.fallbackInterval || this.fallbackInterval;\n\tthis.pollTimerInterval = options.pollTimerInterval || parseInt(this.wiki.getTiddlerText(this.titleSyncPollingInterval,\"\"),10) || this.pollTimerInterval;\n\tthis.logging = \"logging\" in options ? options.logging : true;\n\t// Make a logger\n\tthis.logger = new $tw.utils.Logger(\"syncer\" + ($tw.browser ? \"-browser\" : \"\") + ($tw.node ? \"-server\" : \"\") + (this.syncadaptor.name ? (\"-\" + this.syncadaptor.name) : \"\"),{\n\t\t\tcolour: \"cyan\",\n\t\t\tenable: this.logging\n\t\t});\n\t// Compile the dirty tiddler filter\n\tthis.filterFn = this.wiki.compileFilter(this.wiki.getTiddlerText(this.titleSyncFilter));\n\t// Record information for known tiddlers\n\tthis.readTiddlerInfo();\n\t// Tasks are {type: \"load\"/\"save\"/\"delete\", title:, queueTime:, lastModificationTime:}\n\tthis.taskQueue = {}; // Hashmap of tasks yet to be performed\n\tthis.taskInProgress = {}; // Hash of tasks in progress\n\tthis.taskTimerId = null; // Timer for task dispatch\n\tthis.pollTimerId = null; // Timer for polling server\n\t// Listen out for changes to tiddlers\n\tthis.wiki.addEventListener(\"change\",function(changes) {\n\t\tself.syncToServer(changes);\n\t});\n\t// Browser event handlers\n\tif($tw.browser && !this.disableUI) {\n\t\t// Set up our beforeunload handler\n\t\t$tw.addUnloadTask(function(event) {\n\t\t\tvar confirmationMessage;\n\t\t\tif(self.isDirty()) {\n\t\t\t\tconfirmationMessage = $tw.language.getString(\"UnsavedChangesWarning\");\n\t\t\t\tevent.returnValue = confirmationMessage; // Gecko\n\t\t\t}\n\t\t\treturn confirmationMessage;\n\t\t});\n\t\t// Listen out for login/logout/refresh events in the browser\n\t\t$tw.rootWidget.addEventListener(\"tm-login\",function() {\n\t\t\tself.handleLoginEvent();\n\t\t});\n\t\t$tw.rootWidget.addEventListener(\"tm-logout\",function() {\n\t\t\tself.handleLogoutEvent();\n\t\t});\n\t\t$tw.rootWidget.addEventListener(\"tm-server-refresh\",function() {\n\t\t\tself.handleRefreshEvent();\n\t\t});\n\t}\n\t// Listen out for lazyLoad events\n\tif(!this.disableUI) {\n\t\tthis.wiki.addEventListener(\"lazyLoad\",function(title) {\n\t\t\tself.handleLazyLoadEvent(title);\n\t\t});\t\t\n\t}\n\t// Get the login status\n\tthis.getStatus(function(err,isLoggedIn) {\n\t\t// Do a sync from the server\n\t\tself.syncFromServer();\n\t});\n}\n\n/*\nRead (or re-read) the latest tiddler info from the store\n*/\nSyncer.prototype.readTiddlerInfo = function() {\n\t// Hashmap by title of {revision:,changeCount:,adaptorInfo:}\n\tthis.tiddlerInfo = {};\n\t// Record information for known tiddlers\n\tvar self = this,\n\t\ttiddlers = this.filterFn.call(this.wiki);\n\t$tw.utils.each(tiddlers,function(title) {\n\t\tvar tiddler = self.wiki.getTiddler(title);\n\t\tself.tiddlerInfo[title] = {\n\t\t\trevision: tiddler.fields.revision,\n\t\t\tadaptorInfo: self.syncadaptor && self.syncadaptor.getTiddlerInfo(tiddler),\n\t\t\tchangeCount: self.wiki.getChangeCount(title),\n\t\t\thasBeenLazyLoaded: false\n\t\t};\n\t});\n};\n\n/*\nCreate an tiddlerInfo structure if it doesn't already exist\n*/\nSyncer.prototype.createTiddlerInfo = function(title) {\n\tif(!$tw.utils.hop(this.tiddlerInfo,title)) {\n\t\tthis.tiddlerInfo[title] = {\n\t\t\trevision: null,\n\t\t\tadaptorInfo: {},\n\t\t\tchangeCount: -1,\n\t\t\thasBeenLazyLoaded: false\n\t\t};\n\t}\n};\n\n/*\nChecks whether the wiki is dirty (ie the window shouldn't be closed)\n*/\nSyncer.prototype.isDirty = function() {\n\treturn (this.numTasksInQueue() > 0) || (this.numTasksInProgress() > 0);\n};\n\n/*\nUpdate the document body with the class \"tc-dirty\" if the wiki has unsaved/unsynced changes\n*/\nSyncer.prototype.updateDirtyStatus = function() {\n\tif($tw.browser && !this.disableUI) {\n\t\t$tw.utils.toggleClass(document.body,\"tc-dirty\",this.isDirty());\n\t}\n};\n\n/*\nSave an incoming tiddler in the store, and updates the associated tiddlerInfo\n*/\nSyncer.prototype.storeTiddler = function(tiddlerFields,hasBeenLazyLoaded) {\n\t// Save the tiddler\n\tvar tiddler = new $tw.Tiddler(tiddlerFields);\n\tthis.wiki.addTiddler(tiddler);\n\t// Save the tiddler revision and changeCount details\n\tthis.tiddlerInfo[tiddlerFields.title] = {\n\t\trevision: tiddlerFields.revision,\n\t\tadaptorInfo: this.syncadaptor.getTiddlerInfo(tiddler),\n\t\tchangeCount: this.wiki.getChangeCount(tiddlerFields.title),\n\t\thasBeenLazyLoaded: hasBeenLazyLoaded !== undefined ? hasBeenLazyLoaded : true\n\t};\n};\n\nSyncer.prototype.getStatus = function(callback) {\n\tvar self = this;\n\t// Check if the adaptor supports getStatus()\n\tif(this.syncadaptor && this.syncadaptor.getStatus) {\n\t\t// Mark us as not logged in\n\t\tthis.wiki.addTiddler({title: this.titleIsLoggedIn,text: \"no\"});\n\t\t// Get login status\n\t\tthis.syncadaptor.getStatus(function(err,isLoggedIn,username,isReadOnly,isAnonymous) {\n\t\t\tif(err) {\n\t\t\t\tself.logger.alert(err);\n\t\t\t\treturn;\n\t\t\t}\n\t\t\t// Set the various status tiddlers\n\t\t\tself.wiki.addTiddler({title: self.titleIsReadOnly,text: isReadOnly ? \"yes\" : \"no\"});\n\t\t\tself.wiki.addTiddler({title: self.titleIsAnonymous,text: isAnonymous ? \"yes\" : \"no\"});\n\t\t\tself.wiki.addTiddler({title: self.titleIsLoggedIn,text: isLoggedIn ? \"yes\" : \"no\"});\n\t\t\tif(isLoggedIn) {\n\t\t\t\tself.wiki.addTiddler({title: self.titleUserName,text: username || \"\"});\n\t\t\t}\n\t\t\t// Invoke the callback\n\t\t\tif(callback) {\n\t\t\t\tcallback(err,isLoggedIn,username);\n\t\t\t}\n\t\t});\n\t} else {\n\t\tcallback(null,true,\"UNAUTHENTICATED\");\n\t}\n};\n\n/*\nSynchronise from the server by reading the skinny tiddler list and queuing up loads for any tiddlers that we don't already have up to date\n*/\nSyncer.prototype.syncFromServer = function() {\n\tif(this.syncadaptor && this.syncadaptor.getSkinnyTiddlers) {\n\t\tthis.logger.log(\"Retrieving skinny tiddler list\");\n\t\tvar self = this;\n\t\tif(this.pollTimerId) {\n\t\t\tclearTimeout(this.pollTimerId);\n\t\t\tthis.pollTimerId = null;\n\t\t}\n\t\tthis.syncadaptor.getSkinnyTiddlers(function(err,tiddlers) {\n\t\t\t// Trigger the next sync\n\t\t\tself.pollTimerId = setTimeout(function() {\n\t\t\t\tself.pollTimerId = null;\n\t\t\t\tself.syncFromServer.call(self);\n\t\t\t},self.pollTimerInterval);\n\t\t\t// Check for errors\n\t\t\tif(err) {\n\t\t\t\tself.logger.alert($tw.language.getString(\"Error/RetrievingSkinny\") + \":\",err);\n\t\t\t\treturn;\n\t\t\t}\n\t\t\t// Process each incoming tiddler\n\t\t\tfor(var t=0; t<tiddlers.length; t++) {\n\t\t\t\t// Get the incoming tiddler fields, and the existing tiddler\n\t\t\t\tvar tiddlerFields = tiddlers[t],\n\t\t\t\t\tincomingRevision = tiddlerFields.revision + \"\",\n\t\t\t\t\ttiddler = self.wiki.getTiddler(tiddlerFields.title),\n\t\t\t\t\ttiddlerInfo = self.tiddlerInfo[tiddlerFields.title],\n\t\t\t\t\tcurrRevision = tiddlerInfo ? tiddlerInfo.revision : null;\n\t\t\t\t// Ignore the incoming tiddler if it's the same as the revision we've already got\n\t\t\t\tif(currRevision !== incomingRevision) {\n\t\t\t\t\t// Do a full load if we've already got a fat version of the tiddler\n\t\t\t\t\tif(tiddler && tiddler.fields.text !== undefined) {\n\t\t\t\t\t\t// Do a full load of this tiddler\n\t\t\t\t\t\tself.enqueueSyncTask({\n\t\t\t\t\t\t\ttype: \"load\",\n\t\t\t\t\t\t\ttitle: tiddlerFields.title\n\t\t\t\t\t\t});\n\t\t\t\t\t} else {\n\t\t\t\t\t\t// Load the skinny version of the tiddler\n\t\t\t\t\t\tself.storeTiddler(tiddlerFields,false);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t}\n};\n\n/*\nSynchronise a set of changes to the server\n*/\nSyncer.prototype.syncToServer = function(changes) {\n\tvar self = this,\n\t\tnow = Date.now(),\n\t\tfilteredChanges = this.filterFn.call(this.wiki,function(callback) {\n\t\t\t$tw.utils.each(changes,function(change,title) {\n\t\t\t\tvar tiddler = self.wiki.getTiddler(title);\n\t\t\t\tcallback(tiddler,title);\n\t\t\t});\n\t\t});\n\t$tw.utils.each(changes,function(change,title,object) {\n\t\t// Process the change if it is a deletion of a tiddler we're already syncing, or is on the filtered change list\n\t\tif((change.deleted && $tw.utils.hop(self.tiddlerInfo,title)) || filteredChanges.indexOf(title) !== -1) {\n\t\t\t// Queue a task to sync this tiddler\n\t\t\tself.enqueueSyncTask({\n\t\t\t\ttype: change.deleted ? \"delete\" : \"save\",\n\t\t\t\ttitle: title\n\t\t\t});\n\t\t}\n\t});\n};\n\n/*\nLazily load a skinny tiddler if we can\n*/\nSyncer.prototype.handleLazyLoadEvent = function(title) {\n\t// Don't lazy load the same tiddler twice\n\tvar info = this.tiddlerInfo[title];\n\tif(!info || !info.hasBeenLazyLoaded) {\n\t\t// Don't lazy load if the tiddler isn't included in the sync filter\n\t\tif(this.filterFn.call(this.wiki).indexOf(title) !== -1) {\n\t\t\tthis.createTiddlerInfo(title);\n\t\t\tthis.tiddlerInfo[title].hasBeenLazyLoaded = true;\n\t\t\t// Queue up a sync task to load this tiddler\n\t\t\tthis.enqueueSyncTask({\n\t\t\t\ttype: \"load\",\n\t\t\t\ttitle: title\n\t\t\t});\n\t\t}\n\t}\n};\n\n/*\nDispay a password prompt and allow the user to login\n*/\nSyncer.prototype.handleLoginEvent = function() {\n\tvar self = this;\n\tthis.getStatus(function(err,isLoggedIn,username) {\n\t\tif(!isLoggedIn) {\n\t\t\t$tw.passwordPrompt.createPrompt({\n\t\t\t\tserviceName: $tw.language.getString(\"LoginToTiddlySpace\"),\n\t\t\t\tcallback: function(data) {\n\t\t\t\t\tself.login(data.username,data.password,function(err,isLoggedIn) {\n\t\t\t\t\t\tself.syncFromServer();\n\t\t\t\t\t});\n\t\t\t\t\treturn true; // Get rid of the password prompt\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\t});\n};\n\n/*\nAttempt to login to TiddlyWeb.\n\tusername: username\n\tpassword: password\n\tcallback: invoked with arguments (err,isLoggedIn)\n*/\nSyncer.prototype.login = function(username,password,callback) {\n\tthis.logger.log(\"Attempting to login as\",username);\n\tvar self = this;\n\tif(this.syncadaptor.login) {\n\t\tthis.syncadaptor.login(username,password,function(err) {\n\t\t\tif(err) {\n\t\t\t\treturn callback(err);\n\t\t\t}\n\t\t\tself.getStatus(function(err,isLoggedIn,username) {\n\t\t\t\tif(callback) {\n\t\t\t\t\tcallback(null,isLoggedIn);\n\t\t\t\t}\n\t\t\t});\n\t\t});\n\t} else {\n\t\tcallback(null,true);\n\t}\n};\n\n/*\nAttempt to log out of TiddlyWeb\n*/\nSyncer.prototype.handleLogoutEvent = function() {\n\tthis.logger.log(\"Attempting to logout\");\n\tvar self = this;\n\tif(this.syncadaptor.logout) {\n\t\tthis.syncadaptor.logout(function(err) {\n\t\t\tif(err) {\n\t\t\t\tself.logger.alert(err);\n\t\t\t} else {\n\t\t\t\tself.getStatus();\n\t\t\t}\n\t\t});\n\t}\n};\n\n/*\nImmediately refresh from the server\n*/\nSyncer.prototype.handleRefreshEvent = function() {\n\tthis.syncFromServer();\n};\n\n/*\nQueue up a sync task. If there is already a pending task for the tiddler, just update the last modification time\n*/\nSyncer.prototype.enqueueSyncTask = function(task) {\n\tvar self = this,\n\t\tnow = Date.now();\n\t// Set the timestamps on this task\n\ttask.queueTime = now;\n\ttask.lastModificationTime = now;\n\t// Fill in some tiddlerInfo if the tiddler is one we haven't seen before\n\tthis.createTiddlerInfo(task.title);\n\t// Bail if this is a save and the tiddler is already at the changeCount that the server has\n\tif(task.type === \"save\" && this.wiki.getChangeCount(task.title) <= this.tiddlerInfo[task.title].changeCount) {\n\t\treturn;\n\t}\n\t// Check if this tiddler is already in the queue\n\tif($tw.utils.hop(this.taskQueue,task.title)) {\n\t\t// this.logger.log(\"Re-queueing up sync task with type:\",task.type,\"title:\",task.title);\n\t\tvar existingTask = this.taskQueue[task.title];\n\t\t// If so, just update the last modification time\n\t\texistingTask.lastModificationTime = task.lastModificationTime;\n\t\t// If the new task is a save then we upgrade the existing task to a save. Thus a pending load is turned into a save if the tiddler changes locally in the meantime. But a pending save is not modified to become a load\n\t\tif(task.type === \"save\" || task.type === \"delete\") {\n\t\t\texistingTask.type = task.type;\n\t\t}\n\t} else {\n\t\t// this.logger.log(\"Queuing up sync task with type:\",task.type,\"title:\",task.title);\n\t\t// If it is not in the queue, insert it\n\t\tthis.taskQueue[task.title] = task;\n\t\tthis.updateDirtyStatus();\n\t}\n\t// Process the queue\n\t$tw.utils.nextTick(function() {self.processTaskQueue.call(self);});\n};\n\n/*\nReturn the number of tasks in progress\n*/\nSyncer.prototype.numTasksInProgress = function() {\n\treturn $tw.utils.count(this.taskInProgress);\n};\n\n/*\nReturn the number of tasks in the queue\n*/\nSyncer.prototype.numTasksInQueue = function() {\n\treturn $tw.utils.count(this.taskQueue);\n};\n\n/*\nTrigger a timeout if one isn't already outstanding\n*/\nSyncer.prototype.triggerTimeout = function() {\n\tvar self = this;\n\tif(!this.taskTimerId) {\n\t\tthis.taskTimerId = setTimeout(function() {\n\t\t\tself.taskTimerId = null;\n\t\t\tself.processTaskQueue.call(self);\n\t\t},self.taskTimerInterval);\n\t}\n};\n\n/*\nProcess the task queue, performing the next task if appropriate\n*/\nSyncer.prototype.processTaskQueue = function() {\n\tvar self = this;\n\t// Only process a task if the sync adaptor is fully initialised and we're not already performing a task. If we are already performing a task then we'll dispatch the next one when it completes\n\tif((!this.syncadaptor.isReady || this.syncadaptor.isReady()) && this.numTasksInProgress() === 0) {\n\t\t// Choose the next task to perform\n\t\tvar task = this.chooseNextTask();\n\t\t// Perform the task if we had one\n\t\tif(task) {\n\t\t\t// Remove the task from the queue and add it to the in progress list\n\t\t\tdelete this.taskQueue[task.title];\n\t\t\tthis.taskInProgress[task.title] = task;\n\t\t\tthis.updateDirtyStatus();\n\t\t\t// Dispatch the task\n\t\t\tthis.dispatchTask(task,function(err) {\n\t\t\t\tif(err) {\n\t\t\t\t\tself.logger.alert(\"Sync error while processing '\" + task.title + \"':\\n\" + err);\n\t\t\t\t}\n\t\t\t\t// Mark that this task is no longer in progress\n\t\t\t\tdelete self.taskInProgress[task.title];\n\t\t\t\tself.updateDirtyStatus();\n\t\t\t\t// Process the next task\n\t\t\t\tself.processTaskQueue.call(self);\n\t\t\t});\n\t\t} else {\n\t\t\t// Make sure we've set a time if there wasn't a task to perform, but we've still got tasks in the queue\n\t\t\tif(this.numTasksInQueue() > 0) {\n\t\t\t\tthis.triggerTimeout();\n\t\t\t}\n\t\t}\n\t}\n};\n\n/*\nChoose the next applicable task\n*/\nSyncer.prototype.chooseNextTask = function() {\n\tvar self = this,\n\t\tcandidateTask = null,\n\t\tnow = Date.now();\n\t// Select the best candidate task\n\t$tw.utils.each(this.taskQueue,function(task,title) {\n\t\t// Exclude the task if there's one of the same name in progress\n\t\tif($tw.utils.hop(self.taskInProgress,title)) {\n\t\t\treturn;\n\t\t}\n\t\t// Exclude the task if it is a save and the tiddler has been modified recently, but not hit the fallback time\n\t\tif(task.type === \"save\" && (now - task.lastModificationTime) < self.throttleInterval &&\n\t\t\t(now - task.queueTime) < self.fallbackInterval) {\n\t\t\treturn;\n\t\t}\n\t\t// Exclude the task if it is newer than the current best candidate\n\t\tif(candidateTask && candidateTask.queueTime < task.queueTime) {\n\t\t\treturn;\n\t\t}\n\t\t// Now this is our best candidate\n\t\tcandidateTask = task;\n\t});\n\treturn candidateTask;\n};\n\n/*\nDispatch a task and invoke the callback\n*/\nSyncer.prototype.dispatchTask = function(task,callback) {\n\tvar self = this;\n\tif(task.type === \"save\") {\n\t\tvar changeCount = this.wiki.getChangeCount(task.title),\n\t\t\ttiddler = this.wiki.getTiddler(task.title);\n\t\tthis.logger.log(\"Dispatching 'save' task:\",task.title);\n\t\tif(tiddler) {\n\t\t\tthis.syncadaptor.saveTiddler(tiddler,function(err,adaptorInfo,revision) {\n\t\t\t\tif(err) {\n\t\t\t\t\treturn callback(err);\n\t\t\t\t}\n\t\t\t\t// Adjust the info stored about this tiddler\n\t\t\t\tself.tiddlerInfo[task.title] = {\n\t\t\t\t\tchangeCount: changeCount,\n\t\t\t\t\tadaptorInfo: adaptorInfo,\n\t\t\t\t\trevision: revision\n\t\t\t\t};\n\t\t\t\t// Invoke the callback\n\t\t\t\tcallback(null);\n\t\t\t},{\n\t\t\t\ttiddlerInfo: self.tiddlerInfo[task.title]\n\t\t\t});\n\t\t} else {\n\t\t\tthis.logger.log(\" Not Dispatching 'save' task:\",task.title,\"tiddler does not exist\");\n\t\t\treturn callback(null);\n\t\t}\n\t} else if(task.type === \"load\") {\n\t\t// Load the tiddler\n\t\tthis.logger.log(\"Dispatching 'load' task:\",task.title);\n\t\tthis.syncadaptor.loadTiddler(task.title,function(err,tiddlerFields) {\n\t\t\tif(err) {\n\t\t\t\treturn callback(err);\n\t\t\t}\n\t\t\t// Store the tiddler\n\t\t\tif(tiddlerFields) {\n\t\t\t\tself.storeTiddler(tiddlerFields,true);\n\t\t\t}\n\t\t\t// Invoke the callback\n\t\t\tcallback(null);\n\t\t});\n\t} else if(task.type === \"delete\") {\n\t\t// Delete the tiddler\n\t\tthis.logger.log(\"Dispatching 'delete' task:\",task.title);\n\t\tthis.syncadaptor.deleteTiddler(task.title,function(err) {\n\t\t\tif(err) {\n\t\t\t\treturn callback(err);\n\t\t\t}\n\t\t\tdelete self.tiddlerInfo[task.title];\n\t\t\t// Invoke the callback\n\t\t\tcallback(null);\n\t\t},{\n\t\t\ttiddlerInfo: self.tiddlerInfo[task.title]\n\t\t});\n\t}\n};\n\nexports.Syncer = Syncer;\n\n})();\n",
"type": "application/javascript",
"module-type": "global"
},
"$:/core/modules/tiddler.js": {
"title": "$:/core/modules/tiddler.js",
"text": "/*\\\ntitle: $:/core/modules/tiddler.js\ntype: application/javascript\nmodule-type: tiddlermethod\n\nExtension methods for the $tw.Tiddler object (constructor and methods required at boot time are in boot/boot.js)\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.hasTag = function(tag) {\n\treturn this.fields.tags && this.fields.tags.indexOf(tag) !== -1;\n};\n\nexports.isPlugin = function() {\n\treturn this.fields.type === \"application/json\" && this.hasField(\"plugin-type\");\n};\n\nexports.isDraft = function() {\n\treturn this.hasField(\"draft.of\");\n};\n\nexports.getFieldString = function(field) {\n\tvar value = this.fields[field];\n\t// Check for a missing field\n\tif(value === undefined || value === null) {\n\t\treturn \"\";\n\t}\n\t// Parse the field with the associated module (if any)\n\tvar fieldModule = $tw.Tiddler.fieldModules[field];\n\tif(fieldModule && fieldModule.stringify) {\n\t\treturn fieldModule.stringify.call(this,value);\n\t} else {\n\t\treturn value.toString();\n\t}\n};\n\n/*\nGet the value of a field as a list\n*/\nexports.getFieldList = function(field) {\n\tvar value = this.fields[field];\n\t// Check for a missing field\n\tif(value === undefined || value === null) {\n\t\treturn [];\n\t}\n\treturn $tw.utils.parseStringArray(value);\n};\n\n/*\nGet all the fields as a hashmap of strings. Options:\n\texclude: an array of field names to exclude\n*/\nexports.getFieldStrings = function(options) {\n\toptions = options || {};\n\tvar exclude = options.exclude || [];\n\tvar fields = {};\n\tfor(var field in this.fields) {\n\t\tif($tw.utils.hop(this.fields,field)) {\n\t\t\tif(exclude.indexOf(field) === -1) {\n\t\t\t\tfields[field] = this.getFieldString(field);\n\t\t\t}\n\t\t}\n\t}\n\treturn fields;\n};\n\n/*\nGet all the fields as a name:value block. Options:\n\texclude: an array of field names to exclude\n*/\nexports.getFieldStringBlock = function(options) {\n\toptions = options || {};\n\tvar exclude = options.exclude || [],\n\t\tfields = Object.keys(this.fields).sort(),\n\t\tresult = [];\n\tfor(var t=0; t<fields.length; t++) {\n\t\tvar field = fields[t];\n\t\tif(exclude.indexOf(field) === -1) {\n\t\t\tresult.push(field + \": \" + this.getFieldString(field));\n\t\t}\n\t}\n\treturn result.join(\"\\n\");\n};\n\nexports.getFieldDay = function(field) {\n\tif(this.cache && this.cache.day && $tw.utils.hop(this.cache.day,field) ) {\n\t\treturn this.cache.day[field];\n\t}\n\tvar day = \"\";\n\tif(this.fields[field]) {\n\t\tday = (new Date($tw.utils.parseDate(this.fields[field]))).setHours(0,0,0,0);\n\t}\n\tthis.cache.day = this.cache.day || {};\n\tthis.cache.day[field] = day;\n\treturn day;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "tiddlermethod"
},
"$:/core/modules/upgraders/plugins.js": {
"title": "$:/core/modules/upgraders/plugins.js",
"text": "/*\\\ntitle: $:/core/modules/upgraders/plugins.js\ntype: application/javascript\nmodule-type: upgrader\n\nUpgrader module that checks that plugins are newer than any already installed version\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar UPGRADE_LIBRARY_TITLE = \"$:/UpgradeLibrary\";\n\nvar BLOCKED_PLUGINS = {\n\t\"$:/themes/tiddlywiki/stickytitles\": {\n\t\tversions: [\"*\"]\n\t},\n\t\"$:/plugins/tiddlywiki/fullscreen\": {\n\t\tversions: [\"*\"]\n\t}\n};\n\nexports.upgrade = function(wiki,titles,tiddlers) {\n\tvar self = this,\n\t\tmessages = {},\n\t\tupgradeLibrary,\n\t\tgetLibraryTiddler = function(title) {\n\t\t\tif(!upgradeLibrary) {\n\t\t\t\tupgradeLibrary = wiki.getTiddlerData(UPGRADE_LIBRARY_TITLE,{});\n\t\t\t\tupgradeLibrary.tiddlers = upgradeLibrary.tiddlers || {};\n\t\t\t}\n\t\t\treturn upgradeLibrary.tiddlers[title];\n\t\t};\n\n\t// Go through all the incoming tiddlers\n\t$tw.utils.each(titles,function(title) {\n\t\tvar incomingTiddler = tiddlers[title];\n\t\t// Check if we're dealing with a plugin\n\t\tif(incomingTiddler && incomingTiddler[\"plugin-type\"] && incomingTiddler.version) {\n\t\t\t// Upgrade the incoming plugin if it is in the upgrade library\n\t\t\tvar libraryTiddler = getLibraryTiddler(title);\n\t\t\tif(libraryTiddler && libraryTiddler[\"plugin-type\"] && libraryTiddler.version) {\n\t\t\t\ttiddlers[title] = libraryTiddler;\n\t\t\t\tmessages[title] = $tw.language.getString(\"Import/Upgrader/Plugins/Upgraded\",{variables: {incoming: incomingTiddler.version, upgraded: libraryTiddler.version}});\n\t\t\t\treturn;\n\t\t\t}\n\t\t\t// Suppress the incoming plugin if it is older than the currently installed one\n\t\t\tvar existingTiddler = wiki.getTiddler(title);\n\t\t\tif(existingTiddler && existingTiddler.hasField(\"plugin-type\") && existingTiddler.hasField(\"version\")) {\n\t\t\t\t// Reject the incoming plugin by blanking all its fields\n\t\t\t\tif($tw.utils.checkVersions(existingTiddler.fields.version,incomingTiddler.version)) {\n\t\t\t\t\ttiddlers[title] = Object.create(null);\n\t\t\t\t\tmessages[title] = $tw.language.getString(\"Import/Upgrader/Plugins/Suppressed/Version\",{variables: {incoming: incomingTiddler.version, existing: existingTiddler.fields.version}});\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif(incomingTiddler && incomingTiddler[\"plugin-type\"]) {\n\t\t\t// Check whether the plugin is on the blocked list\n\t\t\tvar blockInfo = BLOCKED_PLUGINS[title];\n\t\t\tif(blockInfo) {\n\t\t\t\tif(blockInfo.versions.indexOf(\"*\") !== -1 || (incomingTiddler.version && blockInfo.versions.indexOf(incomingTiddler.version) !== -1)) {\n\t\t\t\t\ttiddlers[title] = Object.create(null);\n\t\t\t\t\tmessages[title] = $tw.language.getString(\"Import/Upgrader/Plugins/Suppressed/Incompatible\");\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t});\n\treturn messages;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "upgrader"
},
"$:/core/modules/upgraders/system.js": {
"title": "$:/core/modules/upgraders/system.js",
"text": "/*\\\ntitle: $:/core/modules/upgraders/system.js\ntype: application/javascript\nmodule-type: upgrader\n\nUpgrader module that suppresses certain system tiddlers that shouldn't be imported\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar DONT_IMPORT_LIST = [\"$:/StoryList\",\"$:/HistoryList\"],\n\tDONT_IMPORT_PREFIX_LIST = [\"$:/temp/\",\"$:/state/\",\"$:/Import\"],\n\tWARN_IMPORT_PREFIX_LIST = [\"$:/core/modules/\"];\n\nexports.upgrade = function(wiki,titles,tiddlers) {\n\tvar self = this,\n\t\tmessages = {},\n\t\tshowAlert = false;\n\t// Check for tiddlers on our list\n\t$tw.utils.each(titles,function(title) {\n\t\tif(DONT_IMPORT_LIST.indexOf(title) !== -1) {\n\t\t\ttiddlers[title] = Object.create(null);\n\t\t\tmessages[title] = $tw.language.getString(\"Import/Upgrader/System/Suppressed\");\n\t\t} else {\n\t\t\tfor(var t=0; t<DONT_IMPORT_PREFIX_LIST.length; t++) {\n\t\t\t\tvar prefix = DONT_IMPORT_PREFIX_LIST[t];\n\t\t\t\tif(title.substr(0,prefix.length) === prefix) {\n\t\t\t\t\ttiddlers[title] = Object.create(null);\n\t\t\t\t\tmessages[title] = $tw.language.getString(\"Import/Upgrader/State/Suppressed\");\n\t\t\t\t}\n\t\t\t}\n\t\t\tfor(var t=0; t<WARN_IMPORT_PREFIX_LIST.length; t++) {\n\t\t\t\tvar prefix = WARN_IMPORT_PREFIX_LIST[t];\n\t\t\t\tif(title.substr(0,prefix.length) === prefix) {\n\t\t\t\t\tshowAlert = true;\n\t\t\t\t\tmessages[title] = $tw.language.getString(\"Import/Upgrader/System/Warning\");\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif(showAlert) {\n\t\t\tvar logger = new $tw.utils.Logger(\"import\");\n\t\t\tlogger.alert($tw.language.getString(\"Import/Upgrader/System/Alert\"));\n\t\t}\n\t});\n\treturn messages;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "upgrader"
},
"$:/core/modules/upgraders/themetweaks.js": {
"title": "$:/core/modules/upgraders/themetweaks.js",
"text": "/*\\\ntitle: $:/core/modules/upgraders/themetweaks.js\ntype: application/javascript\nmodule-type: upgrader\n\nUpgrader module that handles the change in theme tweak storage introduced in 5.0.14-beta.\n\nPreviously, theme tweaks were stored in two data tiddlers:\n\n* $:/themes/tiddlywiki/vanilla/metrics\n* $:/themes/tiddlywiki/vanilla/settings\n\nNow, each tweak is stored in its own separate tiddler.\n\nThis upgrader copies any values from the old format to the new. The old data tiddlers are not deleted in case they have been used to store additional indexes.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar MAPPINGS = {\n\t\"$:/themes/tiddlywiki/vanilla/metrics\": {\n\t\t\"fontsize\": \"$:/themes/tiddlywiki/vanilla/metrics/fontsize\",\n\t\t\"lineheight\": \"$:/themes/tiddlywiki/vanilla/metrics/lineheight\",\n\t\t\"storyleft\": \"$:/themes/tiddlywiki/vanilla/metrics/storyleft\",\n\t\t\"storytop\": \"$:/themes/tiddlywiki/vanilla/metrics/storytop\",\n\t\t\"storyright\": \"$:/themes/tiddlywiki/vanilla/metrics/storyright\",\n\t\t\"storywidth\": \"$:/themes/tiddlywiki/vanilla/metrics/storywidth\",\n\t\t\"tiddlerwidth\": \"$:/themes/tiddlywiki/vanilla/metrics/tiddlerwidth\"\n\t},\n\t\"$:/themes/tiddlywiki/vanilla/settings\": {\n\t\t\"fontfamily\": \"$:/themes/tiddlywiki/vanilla/settings/fontfamily\"\n\t}\n};\n\nexports.upgrade = function(wiki,titles,tiddlers) {\n\tvar self = this,\n\t\tmessages = {};\n\t// Check for tiddlers on our list\n\t$tw.utils.each(titles,function(title) {\n\t\tvar mapping = MAPPINGS[title];\n\t\tif(mapping) {\n\t\t\tvar tiddler = new $tw.Tiddler(tiddlers[title]),\n\t\t\t\ttiddlerData = wiki.getTiddlerDataCached(tiddler,{});\n\t\t\tfor(var index in mapping) {\n\t\t\t\tvar mappedTitle = mapping[index];\n\t\t\t\tif(!tiddlers[mappedTitle] || tiddlers[mappedTitle].title !== mappedTitle) {\n\t\t\t\t\ttiddlers[mappedTitle] = {\n\t\t\t\t\t\ttitle: mappedTitle,\n\t\t\t\t\t\ttext: tiddlerData[index]\n\t\t\t\t\t};\n\t\t\t\t\tmessages[mappedTitle] = $tw.language.getString(\"Import/Upgrader/ThemeTweaks/Created\",{variables: {\n\t\t\t\t\t\tfrom: title + \"##\" + index\n\t\t\t\t\t}});\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t});\n\treturn messages;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "upgrader"
},
"$:/core/modules/utils/base64-utf8/base64-utf8.module.js": {
"text": "(function(){// From https://gist.github.com/Nijikokun/5192472\n//\n// UTF8 Module\n//\n// Cleaner and modularized utf-8 encoding and decoding library for javascript.\n//\n// copyright: MIT\n// author: Nijiko Yonskai, @nijikokun, nijikokun@gmail.com\n!function(r,e,o,t){void 0!==o.module&&o.module.exports?o.module.exports=e.apply(o):void 0!==o.define&&\"function\"===o.define&&o.define.amd?define(\"utf8\",[],e):o.utf8=e.apply(o)}(0,function(){return{encode:function(r){if(\"string\"!=typeof r)return r;r=r.replace(/\\r\\n/g,\"\\n\");for(var e,o=\"\",t=0;t<r.length;t++)(e=r.charCodeAt(t))<128?o+=String.fromCharCode(e):e>127&&e<2048?(o+=String.fromCharCode(e>>6|192),o+=String.fromCharCode(63&e|128)):(o+=String.fromCharCode(e>>12|224),o+=String.fromCharCode(e>>6&63|128),o+=String.fromCharCode(63&e|128));return o},decode:function(r){if(\"string\"!=typeof r)return r;for(var e=\"\",o=0,t=0;o<r.length;)(t=r.charCodeAt(o))<128?(e+=String.fromCharCode(t),o++):t>191&&t<224?(e+=String.fromCharCode((31&t)<<6|63&r.charCodeAt(o+1)),o+=2):(e+=String.fromCharCode((15&t)<<12|(63&r.charCodeAt(o+1))<<6|63&r.charCodeAt(o+2)),o+=3);return e}}},this),function(r,e,o,t){if(void 0!==o.module&&o.module.exports){if(t&&o.require)for(var n=0;n<t.length;n++)o[t[n]]=o.require(t[n]);o.module.exports=e.apply(o)}else void 0!==o.define&&\"function\"===o.define&&o.define.amd?define(\"base64\",t||[],e):o.base64=e.apply(o)}(0,function(r){var e=r||this.utf8,o=\"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\";return{encode:function(r){if(void 0===e)throw{error:\"MissingMethod\",message:\"UTF8 Module is missing.\"};if(\"string\"!=typeof r)return r;r=e.encode(r);for(var t,n,i,d,f,a,h,c=\"\",u=0;u<r.length;)d=(t=r.charCodeAt(u++))>>2,f=(3&t)<<4|(n=r.charCodeAt(u++))>>4,a=(15&n)<<2|(i=r.charCodeAt(u++))>>6,h=63&i,isNaN(n)?a=h=64:isNaN(i)&&(h=64),c+=o.charAt(d)+o.charAt(f)+o.charAt(a)+o.charAt(h);return c},decode:function(r){if(void 0===e)throw{error:\"MissingMethod\",message:\"UTF8 Module is missing.\"};if(\"string\"!=typeof r)return r;r=r.replace(/[^A-Za-z0-9\\+\\/\\=]/g,\"\");for(var t,n,i,d,f,a,h=\"\",c=0;c<r.length;)t=o.indexOf(r.charAt(c++))<<2|(d=o.indexOf(r.charAt(c++)))>>4,n=(15&d)<<4|(f=o.indexOf(r.charAt(c++)))>>2,i=(3&f)<<6|(a=o.indexOf(r.charAt(c++))),h+=String.fromCharCode(t),64!=f&&(h+=String.fromCharCode(n)),64!=a&&(h+=String.fromCharCode(i));return e.decode(h)}}},this,[\"utf8\"]);}).call(exports);",
"type": "application/javascript",
"title": "$:/core/modules/utils/base64-utf8/base64-utf8.module.js",
"module-type": "library"
},
"$:/core/modules/utils/crypto.js": {
"title": "$:/core/modules/utils/crypto.js",
"text": "/*\\\ntitle: $:/core/modules/utils/crypto.js\ntype: application/javascript\nmodule-type: utils\n\nUtility functions related to crypto.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nLook for an encrypted store area in the text of a TiddlyWiki file\n*/\nexports.extractEncryptedStoreArea = function(text) {\n\tvar encryptedStoreAreaStartMarker = \"<pre id=\\\"encryptedStoreArea\\\" type=\\\"text/plain\\\" style=\\\"display:none;\\\">\",\n\t\tencryptedStoreAreaStart = text.indexOf(encryptedStoreAreaStartMarker);\n\tif(encryptedStoreAreaStart !== -1) {\n\t\tvar encryptedStoreAreaEnd = text.indexOf(\"</pre>\",encryptedStoreAreaStart);\n\t\tif(encryptedStoreAreaEnd !== -1) {\n\t\t\treturn $tw.utils.htmlDecode(text.substring(encryptedStoreAreaStart + encryptedStoreAreaStartMarker.length,encryptedStoreAreaEnd-1));\n\t\t}\n\t}\n\treturn null;\n};\n\n/*\nAttempt to extract the tiddlers from an encrypted store area using the current password. If the password is not provided then the password in the password store will be used\n*/\nexports.decryptStoreArea = function(encryptedStoreArea,password) {\n\tvar decryptedText = $tw.crypto.decrypt(encryptedStoreArea,password);\n\tif(decryptedText) {\n\t\tvar json = JSON.parse(decryptedText),\n\t\t\ttiddlers = [];\n\t\tfor(var title in json) {\n\t\t\tif(title !== \"$:/isEncrypted\") {\n\t\t\t\ttiddlers.push(json[title]);\n\t\t\t}\n\t\t}\n\t\treturn tiddlers;\n\t} else {\n\t\treturn null;\n\t}\n};\n\n\n/*\nAttempt to extract the tiddlers from an encrypted store area using the current password. If that fails, the user is prompted for a password.\nencryptedStoreArea: text of the TiddlyWiki encrypted store area\ncallback: function(tiddlers) called with the array of decrypted tiddlers\n\nThe following configuration settings are supported:\n\n$tw.config.usePasswordVault: causes any password entered by the user to also be put into the system password vault\n*/\nexports.decryptStoreAreaInteractive = function(encryptedStoreArea,callback,options) {\n\t// Try to decrypt with the current password\n\tvar tiddlers = $tw.utils.decryptStoreArea(encryptedStoreArea);\n\tif(tiddlers) {\n\t\tcallback(tiddlers);\n\t} else {\n\t\t// Prompt for a new password and keep trying\n\t\t$tw.passwordPrompt.createPrompt({\n\t\t\tserviceName: \"Enter a password to decrypt the imported TiddlyWiki\",\n\t\t\tnoUserName: true,\n\t\t\tcanCancel: true,\n\t\t\tsubmitText: \"Decrypt\",\n\t\t\tcallback: function(data) {\n\t\t\t\t// Exit if the user cancelled\n\t\t\t\tif(!data) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t\t// Attempt to decrypt the tiddlers\n\t\t\t\tvar tiddlers = $tw.utils.decryptStoreArea(encryptedStoreArea,data.password);\n\t\t\t\tif(tiddlers) {\n\t\t\t\t\tif($tw.config.usePasswordVault) {\n\t\t\t\t\t\t$tw.crypto.setPassword(data.password);\n\t\t\t\t\t}\n\t\t\t\t\tcallback(tiddlers);\n\t\t\t\t\t// Exit and remove the password prompt\n\t\t\t\t\treturn true;\n\t\t\t\t} else {\n\t\t\t\t\t// We didn't decrypt everything, so continue to prompt for password\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t}\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "utils"
},
"$:/core/modules/utils/csv.js": {
"title": "$:/core/modules/utils/csv.js",
"text": "/*\\\ntitle: $:/core/modules/utils/csv.js\ntype: application/javascript\nmodule-type: utils\n\nA barebones CSV parser\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nParse a CSV string with a header row and return an array of hashmaps.\n*/\nexports.parseCsvStringWithHeader = function(text,options) {\n\toptions = options || {};\n\tvar separator = options.separator || \",\",\n\t\trows = text.split(/\\r?\\n/mg).map(function(row) {\n\t\t\treturn $tw.utils.trim(row);\n\t\t}).filter(function(row) {\n\t\t\treturn row !== \"\";\n\t\t});\n\tif(rows.length < 1) {\n\t\treturn \"Missing header row\";\n\t}\n\tvar headings = rows[0].split(separator),\n\t\tresults = [];\n\tfor(var row=1; row<rows.length; row++) {\n\t\tvar columns = rows[row].split(separator),\n\t\t\tcolumnResult = Object.create(null);\n\t\tif(columns.length !== headings.length) {\n\t\t\treturn \"Malformed CSV row '\" + rows[row] + \"'\";\n\t\t}\n\t\tfor(var column=0; column<columns.length; column++) {\n\t\t\tvar columnName = headings[column];\n\t\t\tcolumnResult[columnName] = $tw.utils.trim(columns[column] || \"\");\n\t\t}\n\t\tresults.push(columnResult);\t\t\t\n\t}\n\treturn results;\n}\n\n})();\n",
"type": "application/javascript",
"module-type": "utils"
},
"$:/core/modules/utils/diff-match-patch/diff_match_patch.js": {
"text": "(function(){function diff_match_patch(){this.Diff_Timeout=1;this.Diff_EditCost=4;this.Match_Threshold=.5;this.Match_Distance=1E3;this.Patch_DeleteThreshold=.5;this.Patch_Margin=4;this.Match_MaxBits=32}var DIFF_DELETE=-1,DIFF_INSERT=1,DIFF_EQUAL=0;\ndiff_match_patch.prototype.diff_main=function(a,b,c,d){\"undefined\"==typeof d&&(d=0>=this.Diff_Timeout?Number.MAX_VALUE:(new Date).getTime()+1E3*this.Diff_Timeout);if(null==a||null==b)throw Error(\"Null input. (diff_main)\");if(a==b)return a?[[DIFF_EQUAL,a]]:[];\"undefined\"==typeof c&&(c=!0);var e=c,f=this.diff_commonPrefix(a,b);c=a.substring(0,f);a=a.substring(f);b=b.substring(f);f=this.diff_commonSuffix(a,b);var g=a.substring(a.length-f);a=a.substring(0,a.length-f);b=b.substring(0,b.length-f);a=this.diff_compute_(a,\nb,e,d);c&&a.unshift([DIFF_EQUAL,c]);g&&a.push([DIFF_EQUAL,g]);this.diff_cleanupMerge(a);return a};\ndiff_match_patch.prototype.diff_compute_=function(a,b,c,d){if(!a)return[[DIFF_INSERT,b]];if(!b)return[[DIFF_DELETE,a]];var e=a.length>b.length?a:b,f=a.length>b.length?b:a,g=e.indexOf(f);return-1!=g?(c=[[DIFF_INSERT,e.substring(0,g)],[DIFF_EQUAL,f],[DIFF_INSERT,e.substring(g+f.length)]],a.length>b.length&&(c[0][0]=c[2][0]=DIFF_DELETE),c):1==f.length?[[DIFF_DELETE,a],[DIFF_INSERT,b]]:(e=this.diff_halfMatch_(a,b))?(b=e[1],f=e[3],a=e[4],e=this.diff_main(e[0],e[2],c,d),c=this.diff_main(b,f,c,d),e.concat([[DIFF_EQUAL,\na]],c)):c&&100<a.length&&100<b.length?this.diff_lineMode_(a,b,d):this.diff_bisect_(a,b,d)};\ndiff_match_patch.prototype.diff_lineMode_=function(a,b,c){var d=this.diff_linesToChars_(a,b);a=d.chars1;b=d.chars2;d=d.lineArray;a=this.diff_main(a,b,!1,c);this.diff_charsToLines_(a,d);this.diff_cleanupSemantic(a);a.push([DIFF_EQUAL,\"\"]);for(var e=d=b=0,f=\"\",g=\"\";b<a.length;){switch(a[b][0]){case DIFF_INSERT:e++;g+=a[b][1];break;case DIFF_DELETE:d++;f+=a[b][1];break;case DIFF_EQUAL:if(1<=d&&1<=e){a.splice(b-d-e,d+e);b=b-d-e;d=this.diff_main(f,g,!1,c);for(e=d.length-1;0<=e;e--)a.splice(b,0,d[e]);b+=\nd.length}d=e=0;g=f=\"\"}b++}a.pop();return a};\ndiff_match_patch.prototype.diff_bisect_=function(a,b,c){for(var d=a.length,e=b.length,f=Math.ceil((d+e)/2),g=2*f,h=Array(g),l=Array(g),k=0;k<g;k++)h[k]=-1,l[k]=-1;h[f+1]=0;l[f+1]=0;k=d-e;for(var m=0!=k%2,p=0,x=0,w=0,q=0,t=0;t<f&&!((new Date).getTime()>c);t++){for(var v=-t+p;v<=t-x;v+=2){var n=f+v;var r=v==-t||v!=t&&h[n-1]<h[n+1]?h[n+1]:h[n-1]+1;for(var y=r-v;r<d&&y<e&&a.charAt(r)==b.charAt(y);)r++,y++;h[n]=r;if(r>d)x+=2;else if(y>e)p+=2;else if(m&&(n=f+k-v,0<=n&&n<g&&-1!=l[n])){var u=d-l[n];if(r>=\nu)return this.diff_bisectSplit_(a,b,r,y,c)}}for(v=-t+w;v<=t-q;v+=2){n=f+v;u=v==-t||v!=t&&l[n-1]<l[n+1]?l[n+1]:l[n-1]+1;for(r=u-v;u<d&&r<e&&a.charAt(d-u-1)==b.charAt(e-r-1);)u++,r++;l[n]=u;if(u>d)q+=2;else if(r>e)w+=2;else if(!m&&(n=f+k-v,0<=n&&n<g&&-1!=h[n]&&(r=h[n],y=f+r-n,u=d-u,r>=u)))return this.diff_bisectSplit_(a,b,r,y,c)}}return[[DIFF_DELETE,a],[DIFF_INSERT,b]]};\ndiff_match_patch.prototype.diff_bisectSplit_=function(a,b,c,d,e){var f=a.substring(0,c),g=b.substring(0,d);a=a.substring(c);b=b.substring(d);f=this.diff_main(f,g,!1,e);e=this.diff_main(a,b,!1,e);return f.concat(e)};\ndiff_match_patch.prototype.diff_linesToChars_=function(a,b){function c(a){for(var b=\"\",c=0,f=-1,g=d.length;f<a.length-1;){f=a.indexOf(\"\\n\",c);-1==f&&(f=a.length-1);var h=a.substring(c,f+1);c=f+1;(e.hasOwnProperty?e.hasOwnProperty(h):void 0!==e[h])?b+=String.fromCharCode(e[h]):(b+=String.fromCharCode(g),e[h]=g,d[g++]=h)}return b}var d=[],e={};d[0]=\"\";var f=c(a),g=c(b);return{chars1:f,chars2:g,lineArray:d}};\ndiff_match_patch.prototype.diff_charsToLines_=function(a,b){for(var c=0;c<a.length;c++){for(var d=a[c][1],e=[],f=0;f<d.length;f++)e[f]=b[d.charCodeAt(f)];a[c][1]=e.join(\"\")}};diff_match_patch.prototype.diff_commonPrefix=function(a,b){if(!a||!b||a.charAt(0)!=b.charAt(0))return 0;for(var c=0,d=Math.min(a.length,b.length),e=d,f=0;c<e;)a.substring(f,e)==b.substring(f,e)?f=c=e:d=e,e=Math.floor((d-c)/2+c);return e};\ndiff_match_patch.prototype.diff_commonSuffix=function(a,b){if(!a||!b||a.charAt(a.length-1)!=b.charAt(b.length-1))return 0;for(var c=0,d=Math.min(a.length,b.length),e=d,f=0;c<e;)a.substring(a.length-e,a.length-f)==b.substring(b.length-e,b.length-f)?f=c=e:d=e,e=Math.floor((d-c)/2+c);return e};\ndiff_match_patch.prototype.diff_commonOverlap_=function(a,b){var c=a.length,d=b.length;if(0==c||0==d)return 0;c>d?a=a.substring(c-d):c<d&&(b=b.substring(0,c));c=Math.min(c,d);if(a==b)return c;d=0;for(var e=1;;){var f=a.substring(c-e);f=b.indexOf(f);if(-1==f)return d;e+=f;if(0==f||a.substring(c-e)==b.substring(0,e))d=e,e++}};\ndiff_match_patch.prototype.diff_halfMatch_=function(a,b){function c(a,b,c){for(var d=a.substring(c,c+Math.floor(a.length/4)),e=-1,g=\"\",h,k,l,m;-1!=(e=b.indexOf(d,e+1));){var p=f.diff_commonPrefix(a.substring(c),b.substring(e)),u=f.diff_commonSuffix(a.substring(0,c),b.substring(0,e));g.length<u+p&&(g=b.substring(e-u,e)+b.substring(e,e+p),h=a.substring(0,c-u),k=a.substring(c+p),l=b.substring(0,e-u),m=b.substring(e+p))}return 2*g.length>=a.length?[h,k,l,m,g]:null}if(0>=this.Diff_Timeout)return null;\nvar d=a.length>b.length?a:b,e=a.length>b.length?b:a;if(4>d.length||2*e.length<d.length)return null;var f=this,g=c(d,e,Math.ceil(d.length/4));d=c(d,e,Math.ceil(d.length/2));if(g||d)g=d?g?g[4].length>d[4].length?g:d:d:g;else return null;if(a.length>b.length){d=g[0];e=g[1];var h=g[2];var l=g[3]}else h=g[0],l=g[1],d=g[2],e=g[3];return[d,e,h,l,g[4]]};\ndiff_match_patch.prototype.diff_cleanupSemantic=function(a){for(var b=!1,c=[],d=0,e=null,f=0,g=0,h=0,l=0,k=0;f<a.length;)a[f][0]==DIFF_EQUAL?(c[d++]=f,g=l,h=k,k=l=0,e=a[f][1]):(a[f][0]==DIFF_INSERT?l+=a[f][1].length:k+=a[f][1].length,e&&e.length<=Math.max(g,h)&&e.length<=Math.max(l,k)&&(a.splice(c[d-1],0,[DIFF_DELETE,e]),a[c[d-1]+1][0]=DIFF_INSERT,d--,d--,f=0<d?c[d-1]:-1,k=l=h=g=0,e=null,b=!0)),f++;b&&this.diff_cleanupMerge(a);this.diff_cleanupSemanticLossless(a);for(f=1;f<a.length;){if(a[f-1][0]==\nDIFF_DELETE&&a[f][0]==DIFF_INSERT){b=a[f-1][1];c=a[f][1];d=this.diff_commonOverlap_(b,c);e=this.diff_commonOverlap_(c,b);if(d>=e){if(d>=b.length/2||d>=c.length/2)a.splice(f,0,[DIFF_EQUAL,c.substring(0,d)]),a[f-1][1]=b.substring(0,b.length-d),a[f+1][1]=c.substring(d),f++}else if(e>=b.length/2||e>=c.length/2)a.splice(f,0,[DIFF_EQUAL,b.substring(0,e)]),a[f-1][0]=DIFF_INSERT,a[f-1][1]=c.substring(0,c.length-e),a[f+1][0]=DIFF_DELETE,a[f+1][1]=b.substring(e),f++;f++}f++}};\ndiff_match_patch.prototype.diff_cleanupSemanticLossless=function(a){function b(a,b){if(!a||!b)return 6;var c=a.charAt(a.length-1),d=b.charAt(0),e=c.match(diff_match_patch.nonAlphaNumericRegex_),f=d.match(diff_match_patch.nonAlphaNumericRegex_),g=e&&c.match(diff_match_patch.whitespaceRegex_),h=f&&d.match(diff_match_patch.whitespaceRegex_);c=g&&c.match(diff_match_patch.linebreakRegex_);d=h&&d.match(diff_match_patch.linebreakRegex_);var k=c&&a.match(diff_match_patch.blanklineEndRegex_),l=d&&b.match(diff_match_patch.blanklineStartRegex_);\nreturn k||l?5:c||d?4:e&&!g&&h?3:g||h?2:e||f?1:0}for(var c=1;c<a.length-1;){if(a[c-1][0]==DIFF_EQUAL&&a[c+1][0]==DIFF_EQUAL){var d=a[c-1][1],e=a[c][1],f=a[c+1][1],g=this.diff_commonSuffix(d,e);if(g){var h=e.substring(e.length-g);d=d.substring(0,d.length-g);e=h+e.substring(0,e.length-g);f=h+f}g=d;h=e;for(var l=f,k=b(d,e)+b(e,f);e.charAt(0)===f.charAt(0);){d+=e.charAt(0);e=e.substring(1)+f.charAt(0);f=f.substring(1);var m=b(d,e)+b(e,f);m>=k&&(k=m,g=d,h=e,l=f)}a[c-1][1]!=g&&(g?a[c-1][1]=g:(a.splice(c-\n1,1),c--),a[c][1]=h,l?a[c+1][1]=l:(a.splice(c+1,1),c--))}c++}};diff_match_patch.nonAlphaNumericRegex_=/[^a-zA-Z0-9]/;diff_match_patch.whitespaceRegex_=/\\s/;diff_match_patch.linebreakRegex_=/[\\r\\n]/;diff_match_patch.blanklineEndRegex_=/\\n\\r?\\n$/;diff_match_patch.blanklineStartRegex_=/^\\r?\\n\\r?\\n/;\ndiff_match_patch.prototype.diff_cleanupEfficiency=function(a){for(var b=!1,c=[],d=0,e=null,f=0,g=!1,h=!1,l=!1,k=!1;f<a.length;)a[f][0]==DIFF_EQUAL?(a[f][1].length<this.Diff_EditCost&&(l||k)?(c[d++]=f,g=l,h=k,e=a[f][1]):(d=0,e=null),l=k=!1):(a[f][0]==DIFF_DELETE?k=!0:l=!0,e&&(g&&h&&l&&k||e.length<this.Diff_EditCost/2&&3==g+h+l+k)&&(a.splice(c[d-1],0,[DIFF_DELETE,e]),a[c[d-1]+1][0]=DIFF_INSERT,d--,e=null,g&&h?(l=k=!0,d=0):(d--,f=0<d?c[d-1]:-1,l=k=!1),b=!0)),f++;b&&this.diff_cleanupMerge(a)};\ndiff_match_patch.prototype.diff_cleanupMerge=function(a){a.push([DIFF_EQUAL,\"\"]);for(var b=0,c=0,d=0,e=\"\",f=\"\",g;b<a.length;)switch(a[b][0]){case DIFF_INSERT:d++;f+=a[b][1];b++;break;case DIFF_DELETE:c++;e+=a[b][1];b++;break;case DIFF_EQUAL:1<c+d?(0!==c&&0!==d&&(g=this.diff_commonPrefix(f,e),0!==g&&(0<b-c-d&&a[b-c-d-1][0]==DIFF_EQUAL?a[b-c-d-1][1]+=f.substring(0,g):(a.splice(0,0,[DIFF_EQUAL,f.substring(0,g)]),b++),f=f.substring(g),e=e.substring(g)),g=this.diff_commonSuffix(f,e),0!==g&&(a[b][1]=f.substring(f.length-\ng)+a[b][1],f=f.substring(0,f.length-g),e=e.substring(0,e.length-g))),0===c?a.splice(b-d,c+d,[DIFF_INSERT,f]):0===d?a.splice(b-c,c+d,[DIFF_DELETE,e]):a.splice(b-c-d,c+d,[DIFF_DELETE,e],[DIFF_INSERT,f]),b=b-c-d+(c?1:0)+(d?1:0)+1):0!==b&&a[b-1][0]==DIFF_EQUAL?(a[b-1][1]+=a[b][1],a.splice(b,1)):b++,c=d=0,f=e=\"\"}\"\"===a[a.length-1][1]&&a.pop();c=!1;for(b=1;b<a.length-1;)a[b-1][0]==DIFF_EQUAL&&a[b+1][0]==DIFF_EQUAL&&(a[b][1].substring(a[b][1].length-a[b-1][1].length)==a[b-1][1]?(a[b][1]=a[b-1][1]+a[b][1].substring(0,\na[b][1].length-a[b-1][1].length),a[b+1][1]=a[b-1][1]+a[b+1][1],a.splice(b-1,1),c=!0):a[b][1].substring(0,a[b+1][1].length)==a[b+1][1]&&(a[b-1][1]+=a[b+1][1],a[b][1]=a[b][1].substring(a[b+1][1].length)+a[b+1][1],a.splice(b+1,1),c=!0)),b++;c&&this.diff_cleanupMerge(a)};\ndiff_match_patch.prototype.diff_xIndex=function(a,b){var c=0,d=0,e=0,f=0,g;for(g=0;g<a.length;g++){a[g][0]!==DIFF_INSERT&&(c+=a[g][1].length);a[g][0]!==DIFF_DELETE&&(d+=a[g][1].length);if(c>b)break;e=c;f=d}return a.length!=g&&a[g][0]===DIFF_DELETE?f:f+(b-e)};\ndiff_match_patch.prototype.diff_prettyHtml=function(a){for(var b=[],c=/&/g,d=/</g,e=/>/g,f=/\\n/g,g=0;g<a.length;g++){var h=a[g][0],l=a[g][1].replace(c,\"&\").replace(d,\"<\").replace(e,\">\").replace(f,\"¶<br>\");switch(h){case DIFF_INSERT:b[g]='<ins style=\"background:#e6ffe6;\">'+l+\"</ins>\";break;case DIFF_DELETE:b[g]='<del style=\"background:#ffe6e6;\">'+l+\"</del>\";break;case DIFF_EQUAL:b[g]=\"<span>\"+l+\"</span>\"}}return b.join(\"\")};\ndiff_match_patch.prototype.diff_text1=function(a){for(var b=[],c=0;c<a.length;c++)a[c][0]!==DIFF_INSERT&&(b[c]=a[c][1]);return b.join(\"\")};diff_match_patch.prototype.diff_text2=function(a){for(var b=[],c=0;c<a.length;c++)a[c][0]!==DIFF_DELETE&&(b[c]=a[c][1]);return b.join(\"\")};\ndiff_match_patch.prototype.diff_levenshtein=function(a){for(var b=0,c=0,d=0,e=0;e<a.length;e++){var f=a[e][1];switch(a[e][0]){case DIFF_INSERT:c+=f.length;break;case DIFF_DELETE:d+=f.length;break;case DIFF_EQUAL:b+=Math.max(c,d),d=c=0}}return b+=Math.max(c,d)};\ndiff_match_patch.prototype.diff_toDelta=function(a){for(var b=[],c=0;c<a.length;c++)switch(a[c][0]){case DIFF_INSERT:b[c]=\"+\"+encodeURI(a[c][1]);break;case DIFF_DELETE:b[c]=\"-\"+a[c][1].length;break;case DIFF_EQUAL:b[c]=\"=\"+a[c][1].length}return b.join(\"\\t\").replace(/%20/g,\" \")};\ndiff_match_patch.prototype.diff_fromDelta=function(a,b){for(var c=[],d=0,e=0,f=b.split(/\\t/g),g=0;g<f.length;g++){var h=f[g].substring(1);switch(f[g].charAt(0)){case \"+\":try{c[d++]=[DIFF_INSERT,decodeURI(h)]}catch(k){throw Error(\"Illegal escape in diff_fromDelta: \"+h);}break;case \"-\":case \"=\":var l=parseInt(h,10);if(isNaN(l)||0>l)throw Error(\"Invalid number in diff_fromDelta: \"+h);h=a.substring(e,e+=l);\"=\"==f[g].charAt(0)?c[d++]=[DIFF_EQUAL,h]:c[d++]=[DIFF_DELETE,h];break;default:if(f[g])throw Error(\"Invalid diff operation in diff_fromDelta: \"+\nf[g]);}}if(e!=a.length)throw Error(\"Delta length (\"+e+\") does not equal source text length (\"+a.length+\").\");return c};diff_match_patch.prototype.match_main=function(a,b,c){if(null==a||null==b||null==c)throw Error(\"Null input. (match_main)\");c=Math.max(0,Math.min(c,a.length));return a==b?0:a.length?a.substring(c,c+b.length)==b?c:this.match_bitap_(a,b,c):-1};\ndiff_match_patch.prototype.match_bitap_=function(a,b,c){function d(a,d){var e=a/b.length,g=Math.abs(c-d);return f.Match_Distance?e+g/f.Match_Distance:g?1:e}if(b.length>this.Match_MaxBits)throw Error(\"Pattern too long for this browser.\");var e=this.match_alphabet_(b),f=this,g=this.Match_Threshold,h=a.indexOf(b,c);-1!=h&&(g=Math.min(d(0,h),g),h=a.lastIndexOf(b,c+b.length),-1!=h&&(g=Math.min(d(0,h),g)));var l=1<<b.length-1;h=-1;for(var k,m,p=b.length+a.length,x,w=0;w<b.length;w++){k=0;for(m=p;k<m;)d(w,\nc+m)<=g?k=m:p=m,m=Math.floor((p-k)/2+k);p=m;k=Math.max(1,c-m+1);var q=Math.min(c+m,a.length)+b.length;m=Array(q+2);for(m[q+1]=(1<<w)-1;q>=k;q--){var t=e[a.charAt(q-1)];m[q]=0===w?(m[q+1]<<1|1)&t:(m[q+1]<<1|1)&t|(x[q+1]|x[q])<<1|1|x[q+1];if(m[q]&l&&(t=d(w,q-1),t<=g))if(g=t,h=q-1,h>c)k=Math.max(1,2*c-h);else break}if(d(w+1,c)>g)break;x=m}return h};\ndiff_match_patch.prototype.match_alphabet_=function(a){for(var b={},c=0;c<a.length;c++)b[a.charAt(c)]=0;for(c=0;c<a.length;c++)b[a.charAt(c)]|=1<<a.length-c-1;return b};\ndiff_match_patch.prototype.patch_addContext_=function(a,b){if(0!=b.length){for(var c=b.substring(a.start2,a.start2+a.length1),d=0;b.indexOf(c)!=b.lastIndexOf(c)&&c.length<this.Match_MaxBits-this.Patch_Margin-this.Patch_Margin;)d+=this.Patch_Margin,c=b.substring(a.start2-d,a.start2+a.length1+d);d+=this.Patch_Margin;(c=b.substring(a.start2-d,a.start2))&&a.diffs.unshift([DIFF_EQUAL,c]);(d=b.substring(a.start2+a.length1,a.start2+a.length1+d))&&a.diffs.push([DIFF_EQUAL,d]);a.start1-=c.length;a.start2-=\nc.length;a.length1+=c.length+d.length;a.length2+=c.length+d.length}};\ndiff_match_patch.prototype.patch_make=function(a,b,c){if(\"string\"==typeof a&&\"string\"==typeof b&&\"undefined\"==typeof c){var d=a;b=this.diff_main(d,b,!0);2<b.length&&(this.diff_cleanupSemantic(b),this.diff_cleanupEfficiency(b))}else if(a&&\"object\"==typeof a&&\"undefined\"==typeof b&&\"undefined\"==typeof c)b=a,d=this.diff_text1(b);else if(\"string\"==typeof a&&b&&\"object\"==typeof b&&\"undefined\"==typeof c)d=a;else if(\"string\"==typeof a&&\"string\"==typeof b&&c&&\"object\"==typeof c)d=a,b=c;else throw Error(\"Unknown call format to patch_make.\");\nif(0===b.length)return[];c=[];a=new diff_match_patch.patch_obj;for(var e=0,f=0,g=0,h=d,l=0;l<b.length;l++){var k=b[l][0],m=b[l][1];e||k===DIFF_EQUAL||(a.start1=f,a.start2=g);switch(k){case DIFF_INSERT:a.diffs[e++]=b[l];a.length2+=m.length;d=d.substring(0,g)+m+d.substring(g);break;case DIFF_DELETE:a.length1+=m.length;a.diffs[e++]=b[l];d=d.substring(0,g)+d.substring(g+m.length);break;case DIFF_EQUAL:m.length<=2*this.Patch_Margin&&e&&b.length!=l+1?(a.diffs[e++]=b[l],a.length1+=m.length,a.length2+=m.length):\nm.length>=2*this.Patch_Margin&&e&&(this.patch_addContext_(a,h),c.push(a),a=new diff_match_patch.patch_obj,e=0,h=d,f=g)}k!==DIFF_INSERT&&(f+=m.length);k!==DIFF_DELETE&&(g+=m.length)}e&&(this.patch_addContext_(a,h),c.push(a));return c};\ndiff_match_patch.prototype.patch_deepCopy=function(a){for(var b=[],c=0;c<a.length;c++){var d=a[c],e=new diff_match_patch.patch_obj;e.diffs=[];for(var f=0;f<d.diffs.length;f++)e.diffs[f]=d.diffs[f].slice();e.start1=d.start1;e.start2=d.start2;e.length1=d.length1;e.length2=d.length2;b[c]=e}return b};\ndiff_match_patch.prototype.patch_apply=function(a,b){if(0==a.length)return[b,[]];a=this.patch_deepCopy(a);var c=this.patch_addPadding(a);b=c+b+c;this.patch_splitMax(a);for(var d=0,e=[],f=0;f<a.length;f++){var g=a[f].start2+d,h=this.diff_text1(a[f].diffs),l=-1;if(h.length>this.Match_MaxBits){var k=this.match_main(b,h.substring(0,this.Match_MaxBits),g);-1!=k&&(l=this.match_main(b,h.substring(h.length-this.Match_MaxBits),g+h.length-this.Match_MaxBits),-1==l||k>=l)&&(k=-1)}else k=this.match_main(b,h,\ng);if(-1==k)e[f]=!1,d-=a[f].length2-a[f].length1;else if(e[f]=!0,d=k-g,g=-1==l?b.substring(k,k+h.length):b.substring(k,l+this.Match_MaxBits),h==g)b=b.substring(0,k)+this.diff_text2(a[f].diffs)+b.substring(k+h.length);else if(g=this.diff_main(h,g,!1),h.length>this.Match_MaxBits&&this.diff_levenshtein(g)/h.length>this.Patch_DeleteThreshold)e[f]=!1;else{this.diff_cleanupSemanticLossless(g);h=0;var m;for(l=0;l<a[f].diffs.length;l++){var p=a[f].diffs[l];p[0]!==DIFF_EQUAL&&(m=this.diff_xIndex(g,h));p[0]===\nDIFF_INSERT?b=b.substring(0,k+m)+p[1]+b.substring(k+m):p[0]===DIFF_DELETE&&(b=b.substring(0,k+m)+b.substring(k+this.diff_xIndex(g,h+p[1].length)));p[0]!==DIFF_DELETE&&(h+=p[1].length)}}}b=b.substring(c.length,b.length-c.length);return[b,e]};\ndiff_match_patch.prototype.patch_addPadding=function(a){for(var b=this.Patch_Margin,c=\"\",d=1;d<=b;d++)c+=String.fromCharCode(d);for(d=0;d<a.length;d++)a[d].start1+=b,a[d].start2+=b;d=a[0];var e=d.diffs;if(0==e.length||e[0][0]!=DIFF_EQUAL)e.unshift([DIFF_EQUAL,c]),d.start1-=b,d.start2-=b,d.length1+=b,d.length2+=b;else if(b>e[0][1].length){var f=b-e[0][1].length;e[0][1]=c.substring(e[0][1].length)+e[0][1];d.start1-=f;d.start2-=f;d.length1+=f;d.length2+=f}d=a[a.length-1];e=d.diffs;0==e.length||e[e.length-\n1][0]!=DIFF_EQUAL?(e.push([DIFF_EQUAL,c]),d.length1+=b,d.length2+=b):b>e[e.length-1][1].length&&(f=b-e[e.length-1][1].length,e[e.length-1][1]+=c.substring(0,f),d.length1+=f,d.length2+=f);return c};\ndiff_match_patch.prototype.patch_splitMax=function(a){for(var b=this.Match_MaxBits,c=0;c<a.length;c++)if(!(a[c].length1<=b)){var d=a[c];a.splice(c--,1);for(var e=d.start1,f=d.start2,g=\"\";0!==d.diffs.length;){var h=new diff_match_patch.patch_obj,l=!0;h.start1=e-g.length;h.start2=f-g.length;\"\"!==g&&(h.length1=h.length2=g.length,h.diffs.push([DIFF_EQUAL,g]));for(;0!==d.diffs.length&&h.length1<b-this.Patch_Margin;){g=d.diffs[0][0];var k=d.diffs[0][1];g===DIFF_INSERT?(h.length2+=k.length,f+=k.length,h.diffs.push(d.diffs.shift()),\nl=!1):g===DIFF_DELETE&&1==h.diffs.length&&h.diffs[0][0]==DIFF_EQUAL&&k.length>2*b?(h.length1+=k.length,e+=k.length,l=!1,h.diffs.push([g,k]),d.diffs.shift()):(k=k.substring(0,b-h.length1-this.Patch_Margin),h.length1+=k.length,e+=k.length,g===DIFF_EQUAL?(h.length2+=k.length,f+=k.length):l=!1,h.diffs.push([g,k]),k==d.diffs[0][1]?d.diffs.shift():d.diffs[0][1]=d.diffs[0][1].substring(k.length))}g=this.diff_text2(h.diffs);g=g.substring(g.length-this.Patch_Margin);k=this.diff_text1(d.diffs).substring(0,\nthis.Patch_Margin);\"\"!==k&&(h.length1+=k.length,h.length2+=k.length,0!==h.diffs.length&&h.diffs[h.diffs.length-1][0]===DIFF_EQUAL?h.diffs[h.diffs.length-1][1]+=k:h.diffs.push([DIFF_EQUAL,k]));l||a.splice(++c,0,h)}}};diff_match_patch.prototype.patch_toText=function(a){for(var b=[],c=0;c<a.length;c++)b[c]=a[c];return b.join(\"\")};\ndiff_match_patch.prototype.patch_fromText=function(a){var b=[];if(!a)return b;a=a.split(\"\\n\");for(var c=0,d=/^@@ -(\\d+),?(\\d*) \\+(\\d+),?(\\d*) @@$/;c<a.length;){var e=a[c].match(d);if(!e)throw Error(\"Invalid patch string: \"+a[c]);var f=new diff_match_patch.patch_obj;b.push(f);f.start1=parseInt(e[1],10);\"\"===e[2]?(f.start1--,f.length1=1):\"0\"==e[2]?f.length1=0:(f.start1--,f.length1=parseInt(e[2],10));f.start2=parseInt(e[3],10);\"\"===e[4]?(f.start2--,f.length2=1):\"0\"==e[4]?f.length2=0:(f.start2--,f.length2=\nparseInt(e[4],10));for(c++;c<a.length;){e=a[c].charAt(0);try{var g=decodeURI(a[c].substring(1))}catch(h){throw Error(\"Illegal escape in patch_fromText: \"+g);}if(\"-\"==e)f.diffs.push([DIFF_DELETE,g]);else if(\"+\"==e)f.diffs.push([DIFF_INSERT,g]);else if(\" \"==e)f.diffs.push([DIFF_EQUAL,g]);else if(\"@\"==e)break;else if(\"\"!==e)throw Error('Invalid patch mode \"'+e+'\" in: '+g);c++}}return b};diff_match_patch.patch_obj=function(){this.diffs=[];this.start2=this.start1=null;this.length2=this.length1=0};\ndiff_match_patch.patch_obj.prototype.toString=function(){for(var a=[\"@@ -\"+(0===this.length1?this.start1+\",0\":1==this.length1?this.start1+1:this.start1+1+\",\"+this.length1)+\" +\"+(0===this.length2?this.start2+\",0\":1==this.length2?this.start2+1:this.start2+1+\",\"+this.length2)+\" @@\\n\"],b,c=0;c<this.diffs.length;c++){switch(this.diffs[c][0]){case DIFF_INSERT:b=\"+\";break;case DIFF_DELETE:b=\"-\";break;case DIFF_EQUAL:b=\" \"}a[c+1]=b+encodeURI(this.diffs[c][1])+\"\\n\"}return a.join(\"\").replace(/%20/g,\" \")};\nthis.diff_match_patch=diff_match_patch;this.DIFF_DELETE=DIFF_DELETE;this.DIFF_INSERT=DIFF_INSERT;this.DIFF_EQUAL=DIFF_EQUAL;\n}).call(exports);",
"type": "application/javascript",
"title": "$:/core/modules/utils/diff-match-patch/diff_match_patch.js",
"module-type": "library"
},
"$:/core/modules/utils/dom/animations/slide.js": {
"title": "$:/core/modules/utils/dom/animations/slide.js",
"text": "/*\\\ntitle: $:/core/modules/utils/dom/animations/slide.js\ntype: application/javascript\nmodule-type: animation\n\nA simple slide animation that varies the height of the element\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nfunction slideOpen(domNode,options) {\n\toptions = options || {};\n\tvar duration = options.duration || $tw.utils.getAnimationDuration();\n\t// Get the current height of the domNode\n\tvar computedStyle = window.getComputedStyle(domNode),\n\t\tcurrMarginBottom = parseInt(computedStyle.marginBottom,10),\n\t\tcurrMarginTop = parseInt(computedStyle.marginTop,10),\n\t\tcurrPaddingBottom = parseInt(computedStyle.paddingBottom,10),\n\t\tcurrPaddingTop = parseInt(computedStyle.paddingTop,10),\n\t\tcurrHeight = domNode.offsetHeight;\n\t// Reset the margin once the transition is over\n\tsetTimeout(function() {\n\t\t$tw.utils.setStyle(domNode,[\n\t\t\t{transition: \"none\"},\n\t\t\t{marginBottom: \"\"},\n\t\t\t{marginTop: \"\"},\n\t\t\t{paddingBottom: \"\"},\n\t\t\t{paddingTop: \"\"},\n\t\t\t{height: \"auto\"},\n\t\t\t{opacity: \"\"}\n\t\t]);\n\t\tif(options.callback) {\n\t\t\toptions.callback();\n\t\t}\n\t},duration);\n\t// Set up the initial position of the element\n\t$tw.utils.setStyle(domNode,[\n\t\t{transition: \"none\"},\n\t\t{marginTop: \"0px\"},\n\t\t{marginBottom: \"0px\"},\n\t\t{paddingTop: \"0px\"},\n\t\t{paddingBottom: \"0px\"},\n\t\t{height: \"0px\"},\n\t\t{opacity: \"0\"}\n\t]);\n\t$tw.utils.forceLayout(domNode);\n\t// Transition to the final position\n\t$tw.utils.setStyle(domNode,[\n\t\t{transition: \"margin-top \" + duration + \"ms ease-in-out, \" +\n\t\t\t\t\t\"margin-bottom \" + duration + \"ms ease-in-out, \" +\n\t\t\t\t\t\"padding-top \" + duration + \"ms ease-in-out, \" +\n\t\t\t\t\t\"padding-bottom \" + duration + \"ms ease-in-out, \" +\n\t\t\t\t\t\"height \" + duration + \"ms ease-in-out, \" +\n\t\t\t\t\t\"opacity \" + duration + \"ms ease-in-out\"},\n\t\t{marginBottom: currMarginBottom + \"px\"},\n\t\t{marginTop: currMarginTop + \"px\"},\n\t\t{paddingBottom: currPaddingBottom + \"px\"},\n\t\t{paddingTop: currPaddingTop + \"px\"},\n\t\t{height: currHeight + \"px\"},\n\t\t{opacity: \"1\"}\n\t]);\n}\n\nfunction slideClosed(domNode,options) {\n\toptions = options || {};\n\tvar duration = options.duration || $tw.utils.getAnimationDuration(),\n\t\tcurrHeight = domNode.offsetHeight;\n\t// Clear the properties we've set when the animation is over\n\tsetTimeout(function() {\n\t\t$tw.utils.setStyle(domNode,[\n\t\t\t{transition: \"none\"},\n\t\t\t{marginBottom: \"\"},\n\t\t\t{marginTop: \"\"},\n\t\t\t{paddingBottom: \"\"},\n\t\t\t{paddingTop: \"\"},\n\t\t\t{height: \"auto\"},\n\t\t\t{opacity: \"\"}\n\t\t]);\n\t\tif(options.callback) {\n\t\t\toptions.callback();\n\t\t}\n\t},duration);\n\t// Set up the initial position of the element\n\t$tw.utils.setStyle(domNode,[\n\t\t{height: currHeight + \"px\"},\n\t\t{opacity: \"1\"}\n\t]);\n\t$tw.utils.forceLayout(domNode);\n\t// Transition to the final position\n\t$tw.utils.setStyle(domNode,[\n\t\t{transition: \"margin-top \" + duration + \"ms ease-in-out, \" +\n\t\t\t\t\t\"margin-bottom \" + duration + \"ms ease-in-out, \" +\n\t\t\t\t\t\"padding-top \" + duration + \"ms ease-in-out, \" +\n\t\t\t\t\t\"padding-bottom \" + duration + \"ms ease-in-out, \" +\n\t\t\t\t\t\"height \" + duration + \"ms ease-in-out, \" +\n\t\t\t\t\t\"opacity \" + duration + \"ms ease-in-out\"},\n\t\t{marginTop: \"0px\"},\n\t\t{marginBottom: \"0px\"},\n\t\t{paddingTop: \"0px\"},\n\t\t{paddingBottom: \"0px\"},\n\t\t{height: \"0px\"},\n\t\t{opacity: \"0\"}\n\t]);\n}\n\nexports.slide = {\n\topen: slideOpen,\n\tclose: slideClosed\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "animation"
},
"$:/core/modules/utils/dom/animator.js": {
"title": "$:/core/modules/utils/dom/animator.js",
"text": "/*\\\ntitle: $:/core/modules/utils/dom/animator.js\ntype: application/javascript\nmodule-type: utils\n\nOrchestrates animations and transitions\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nfunction Animator() {\n\t// Get the registered animation modules\n\tthis.animations = {};\n\t$tw.modules.applyMethods(\"animation\",this.animations);\n}\n\nAnimator.prototype.perform = function(type,domNode,options) {\n\toptions = options || {};\n\t// Find an animation that can handle this type\n\tvar chosenAnimation;\n\t$tw.utils.each(this.animations,function(animation,name) {\n\t\tif($tw.utils.hop(animation,type)) {\n\t\t\tchosenAnimation = animation[type];\n\t\t}\n\t});\n\tif(!chosenAnimation) {\n\t\tchosenAnimation = function(domNode,options) {\n\t\t\tif(options.callback) {\n\t\t\t\toptions.callback();\n\t\t\t}\n\t\t};\n\t}\n\t// Call the animation\n\tchosenAnimation(domNode,options);\n};\n\nexports.Animator = Animator;\n\n})();\n",
"type": "application/javascript",
"module-type": "utils"
},
"$:/core/modules/utils/dom/browser.js": {
"title": "$:/core/modules/utils/dom/browser.js",
"text": "/*\\\ntitle: $:/core/modules/utils/dom/browser.js\ntype: application/javascript\nmodule-type: utils\n\nBrowser feature detection\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nSet style properties of an element\n\telement: dom node\n\tstyles: ordered array of {name: value} pairs\n*/\nexports.setStyle = function(element,styles) {\n\tif(element.nodeType === 1) { // Element.ELEMENT_NODE\n\t\tfor(var t=0; t<styles.length; t++) {\n\t\t\tfor(var styleName in styles[t]) {\n\t\t\t\telement.style[$tw.utils.convertStyleNameToPropertyName(styleName)] = styles[t][styleName];\n\t\t\t}\n\t\t}\n\t}\n};\n\n/*\nConverts a standard CSS property name into the local browser-specific equivalent. For example:\n\t\"background-color\" --> \"backgroundColor\"\n\t\"transition\" --> \"webkitTransition\"\n*/\n\nvar styleNameCache = {}; // We'll cache the style name conversions\n\nexports.convertStyleNameToPropertyName = function(styleName) {\n\t// Return from the cache if we can\n\tif(styleNameCache[styleName]) {\n\t\treturn styleNameCache[styleName];\n\t}\n\t// Convert it by first removing any hyphens\n\tvar propertyName = $tw.utils.unHyphenateCss(styleName);\n\t// Then check if it needs a prefix\n\tif($tw.browser && document.body.style[propertyName] === undefined) {\n\t\tvar prefixes = [\"O\",\"MS\",\"Moz\",\"webkit\"];\n\t\tfor(var t=0; t<prefixes.length; t++) {\n\t\t\tvar prefixedName = prefixes[t] + propertyName.substr(0,1).toUpperCase() + propertyName.substr(1);\n\t\t\tif(document.body.style[prefixedName] !== undefined) {\n\t\t\t\tpropertyName = prefixedName;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\t// Put it in the cache too\n\tstyleNameCache[styleName] = propertyName;\n\treturn propertyName;\n};\n\n/*\nConverts a JS format CSS property name back into the dashed form used in CSS declarations. For example:\n\t\"backgroundColor\" --> \"background-color\"\n\t\"webkitTransform\" --> \"-webkit-transform\"\n*/\nexports.convertPropertyNameToStyleName = function(propertyName) {\n\t// Rehyphenate the name\n\tvar styleName = $tw.utils.hyphenateCss(propertyName);\n\t// If there's a webkit prefix, add a dash (other browsers have uppercase prefixes, and so get the dash automatically)\n\tif(styleName.indexOf(\"webkit\") === 0) {\n\t\tstyleName = \"-\" + styleName;\n\t} else if(styleName.indexOf(\"-m-s\") === 0) {\n\t\tstyleName = \"-ms\" + styleName.substr(4);\n\t}\n\treturn styleName;\n};\n\n/*\nRound trip a stylename to a property name and back again. For example:\n\t\"transform\" --> \"webkitTransform\" --> \"-webkit-transform\"\n*/\nexports.roundTripPropertyName = function(propertyName) {\n\treturn $tw.utils.convertPropertyNameToStyleName($tw.utils.convertStyleNameToPropertyName(propertyName));\n};\n\n/*\nConverts a standard event name into the local browser specific equivalent. For example:\n\t\"animationEnd\" --> \"webkitAnimationEnd\"\n*/\n\nvar eventNameCache = {}; // We'll cache the conversions\n\nvar eventNameMappings = {\n\t\"transitionEnd\": {\n\t\tcorrespondingCssProperty: \"transition\",\n\t\tmappings: {\n\t\t\ttransition: \"transitionend\",\n\t\t\tOTransition: \"oTransitionEnd\",\n\t\t\tMSTransition: \"msTransitionEnd\",\n\t\t\tMozTransition: \"transitionend\",\n\t\t\twebkitTransition: \"webkitTransitionEnd\"\n\t\t}\n\t},\n\t\"animationEnd\": {\n\t\tcorrespondingCssProperty: \"animation\",\n\t\tmappings: {\n\t\t\tanimation: \"animationend\",\n\t\t\tOAnimation: \"oAnimationEnd\",\n\t\t\tMSAnimation: \"msAnimationEnd\",\n\t\t\tMozAnimation: \"animationend\",\n\t\t\twebkitAnimation: \"webkitAnimationEnd\"\n\t\t}\n\t}\n};\n\nexports.convertEventName = function(eventName) {\n\tif(eventNameCache[eventName]) {\n\t\treturn eventNameCache[eventName];\n\t}\n\tvar newEventName = eventName,\n\t\tmappings = eventNameMappings[eventName];\n\tif(mappings) {\n\t\tvar convertedProperty = $tw.utils.convertStyleNameToPropertyName(mappings.correspondingCssProperty);\n\t\tif(mappings.mappings[convertedProperty]) {\n\t\t\tnewEventName = mappings.mappings[convertedProperty];\n\t\t}\n\t}\n\t// Put it in the cache too\n\teventNameCache[eventName] = newEventName;\n\treturn newEventName;\n};\n\n/*\nReturn the names of the fullscreen APIs\n*/\nexports.getFullScreenApis = function() {\n\tvar d = document,\n\t\tdb = d.body,\n\t\tresult = {\n\t\t\"_requestFullscreen\": db.webkitRequestFullscreen !== undefined ? \"webkitRequestFullscreen\" :\n\t\t\t\t\t\t\tdb.mozRequestFullScreen !== undefined ? \"mozRequestFullScreen\" :\n\t\t\t\t\t\t\tdb.msRequestFullscreen !== undefined ? \"msRequestFullscreen\" :\n\t\t\t\t\t\t\tdb.requestFullscreen !== undefined ? \"requestFullscreen\" : \"\",\n\t\t\"_exitFullscreen\": d.webkitExitFullscreen !== undefined ? \"webkitExitFullscreen\" :\n\t\t\t\t\t\t\td.mozCancelFullScreen !== undefined ? \"mozCancelFullScreen\" :\n\t\t\t\t\t\t\td.msExitFullscreen !== undefined ? \"msExitFullscreen\" :\n\t\t\t\t\t\t\td.exitFullscreen !== undefined ? \"exitFullscreen\" : \"\",\n\t\t\"_fullscreenElement\": d.webkitFullscreenElement !== undefined ? \"webkitFullscreenElement\" :\n\t\t\t\t\t\t\td.mozFullScreenElement !== undefined ? \"mozFullScreenElement\" :\n\t\t\t\t\t\t\td.msFullscreenElement !== undefined ? \"msFullscreenElement\" :\n\t\t\t\t\t\t\td.fullscreenElement !== undefined ? \"fullscreenElement\" : \"\",\n\t\t\"_fullscreenChange\": d.webkitFullscreenElement !== undefined ? \"webkitfullscreenchange\" :\n\t\t\t\t\t\t\td.mozFullScreenElement !== undefined ? \"mozfullscreenchange\" :\n\t\t\t\t\t\t\td.msFullscreenElement !== undefined ? \"MSFullscreenChange\" :\n\t\t\t\t\t\t\td.fullscreenElement !== undefined ? \"fullscreenchange\" : \"\"\n\t};\n\tif(!result._requestFullscreen || !result._exitFullscreen || !result._fullscreenElement || !result._fullscreenChange) {\n\t\treturn null;\n\t} else {\n\t\treturn result;\n\t}\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "utils"
},
"$:/core/modules/utils/dom/csscolorparser.js": {
"title": "$:/core/modules/utils/dom/csscolorparser.js",
"text": "// (c) Dean McNamee <dean@gmail.com>, 2012.\n//\n// https://github.com/deanm/css-color-parser-js\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to\n// deal in the Software without restriction, including without limitation the\n// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n// sell copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n// IN THE SOFTWARE.\n\n// http://www.w3.org/TR/css3-color/\nvar kCSSColorTable = {\n \"transparent\": [0,0,0,0], \"aliceblue\": [240,248,255,1],\n \"antiquewhite\": [250,235,215,1], \"aqua\": [0,255,255,1],\n \"aquamarine\": [127,255,212,1], \"azure\": [240,255,255,1],\n \"beige\": [245,245,220,1], \"bisque\": [255,228,196,1],\n \"black\": [0,0,0,1], \"blanchedalmond\": [255,235,205,1],\n \"blue\": [0,0,255,1], \"blueviolet\": [138,43,226,1],\n \"brown\": [165,42,42,1], \"burlywood\": [222,184,135,1],\n \"cadetblue\": [95,158,160,1], \"chartreuse\": [127,255,0,1],\n \"chocolate\": [210,105,30,1], \"coral\": [255,127,80,1],\n \"cornflowerblue\": [100,149,237,1], \"cornsilk\": [255,248,220,1],\n \"crimson\": [220,20,60,1], \"cyan\": [0,255,255,1],\n \"darkblue\": [0,0,139,1], \"darkcyan\": [0,139,139,1],\n \"darkgoldenrod\": [184,134,11,1], \"darkgray\": [169,169,169,1],\n \"darkgreen\": [0,100,0,1], \"darkgrey\": [169,169,169,1],\n \"darkkhaki\": [189,183,107,1], \"darkmagenta\": [139,0,139,1],\n \"darkolivegreen\": [85,107,47,1], \"darkorange\": [255,140,0,1],\n \"darkorchid\": [153,50,204,1], \"darkred\": [139,0,0,1],\n \"darksalmon\": [233,150,122,1], \"darkseagreen\": [143,188,143,1],\n \"darkslateblue\": [72,61,139,1], \"darkslategray\": [47,79,79,1],\n \"darkslategrey\": [47,79,79,1], \"darkturquoise\": [0,206,209,1],\n \"darkviolet\": [148,0,211,1], \"deeppink\": [255,20,147,1],\n \"deepskyblue\": [0,191,255,1], \"dimgray\": [105,105,105,1],\n \"dimgrey\": [105,105,105,1], \"dodgerblue\": [30,144,255,1],\n \"firebrick\": [178,34,34,1], \"floralwhite\": [255,250,240,1],\n \"forestgreen\": [34,139,34,1], \"fuchsia\": [255,0,255,1],\n \"gainsboro\": [220,220,220,1], \"ghostwhite\": [248,248,255,1],\n \"gold\": [255,215,0,1], \"goldenrod\": [218,165,32,1],\n \"gray\": [128,128,128,1], \"green\": [0,128,0,1],\n \"greenyellow\": [173,255,47,1], \"grey\": [128,128,128,1],\n \"honeydew\": [240,255,240,1], \"hotpink\": [255,105,180,1],\n \"indianred\": [205,92,92,1], \"indigo\": [75,0,130,1],\n \"ivory\": [255,255,240,1], \"khaki\": [240,230,140,1],\n \"lavender\": [230,230,250,1], \"lavenderblush\": [255,240,245,1],\n \"lawngreen\": [124,252,0,1], \"lemonchiffon\": [255,250,205,1],\n \"lightblue\": [173,216,230,1], \"lightcoral\": [240,128,128,1],\n \"lightcyan\": [224,255,255,1], \"lightgoldenrodyellow\": [250,250,210,1],\n \"lightgray\": [211,211,211,1], \"lightgreen\": [144,238,144,1],\n \"lightgrey\": [211,211,211,1], \"lightpink\": [255,182,193,1],\n \"lightsalmon\": [255,160,122,1], \"lightseagreen\": [32,178,170,1],\n \"lightskyblue\": [135,206,250,1], \"lightslategray\": [119,136,153,1],\n \"lightslategrey\": [119,136,153,1], \"lightsteelblue\": [176,196,222,1],\n \"lightyellow\": [255,255,224,1], \"lime\": [0,255,0,1],\n \"limegreen\": [50,205,50,1], \"linen\": [250,240,230,1],\n \"magenta\": [255,0,255,1], \"maroon\": [128,0,0,1],\n \"mediumaquamarine\": [102,205,170,1], \"mediumblue\": [0,0,205,1],\n \"mediumorchid\": [186,85,211,1], \"mediumpurple\": [147,112,219,1],\n \"mediumseagreen\": [60,179,113,1], \"mediumslateblue\": [123,104,238,1],\n \"mediumspringgreen\": [0,250,154,1], \"mediumturquoise\": [72,209,204,1],\n \"mediumvioletred\": [199,21,133,1], \"midnightblue\": [25,25,112,1],\n \"mintcream\": [245,255,250,1], \"mistyrose\": [255,228,225,1],\n \"moccasin\": [255,228,181,1], \"navajowhite\": [255,222,173,1],\n \"navy\": [0,0,128,1], \"oldlace\": [253,245,230,1],\n \"olive\": [128,128,0,1], \"olivedrab\": [107,142,35,1],\n \"orange\": [255,165,0,1], \"orangered\": [255,69,0,1],\n \"orchid\": [218,112,214,1], \"palegoldenrod\": [238,232,170,1],\n \"palegreen\": [152,251,152,1], \"paleturquoise\": [175,238,238,1],\n \"palevioletred\": [219,112,147,1], \"papayawhip\": [255,239,213,1],\n \"peachpuff\": [255,218,185,1], \"peru\": [205,133,63,1],\n \"pink\": [255,192,203,1], \"plum\": [221,160,221,1],\n \"powderblue\": [176,224,230,1], \"purple\": [128,0,128,1],\n \"red\": [255,0,0,1], \"rosybrown\": [188,143,143,1],\n \"royalblue\": [65,105,225,1], \"saddlebrown\": [139,69,19,1],\n \"salmon\": [250,128,114,1], \"sandybrown\": [244,164,96,1],\n \"seagreen\": [46,139,87,1], \"seashell\": [255,245,238,1],\n \"sienna\": [160,82,45,1], \"silver\": [192,192,192,1],\n \"skyblue\": [135,206,235,1], \"slateblue\": [106,90,205,1],\n \"slategray\": [112,128,144,1], \"slategrey\": [112,128,144,1],\n \"snow\": [255,250,250,1], \"springgreen\": [0,255,127,1],\n \"steelblue\": [70,130,180,1], \"tan\": [210,180,140,1],\n \"teal\": [0,128,128,1], \"thistle\": [216,191,216,1],\n \"tomato\": [255,99,71,1], \"turquoise\": [64,224,208,1],\n \"violet\": [238,130,238,1], \"wheat\": [245,222,179,1],\n \"white\": [255,255,255,1], \"whitesmoke\": [245,245,245,1],\n \"yellow\": [255,255,0,1], \"yellowgreen\": [154,205,50,1]}\n\nfunction clamp_css_byte(i) { // Clamp to integer 0 .. 255.\n i = Math.round(i); // Seems to be what Chrome does (vs truncation).\n return i < 0 ? 0 : i > 255 ? 255 : i;\n}\n\nfunction clamp_css_float(f) { // Clamp to float 0.0 .. 1.0.\n return f < 0 ? 0 : f > 1 ? 1 : f;\n}\n\nfunction parse_css_int(str) { // int or percentage.\n if (str[str.length - 1] === '%')\n return clamp_css_byte(parseFloat(str) / 100 * 255);\n return clamp_css_byte(parseInt(str));\n}\n\nfunction parse_css_float(str) { // float or percentage.\n if (str[str.length - 1] === '%')\n return clamp_css_float(parseFloat(str) / 100);\n return clamp_css_float(parseFloat(str));\n}\n\nfunction css_hue_to_rgb(m1, m2, h) {\n if (h < 0) h += 1;\n else if (h > 1) h -= 1;\n\n if (h * 6 < 1) return m1 + (m2 - m1) * h * 6;\n if (h * 2 < 1) return m2;\n if (h * 3 < 2) return m1 + (m2 - m1) * (2/3 - h) * 6;\n return m1;\n}\n\nfunction parseCSSColor(css_str) {\n // Remove all whitespace, not compliant, but should just be more accepting.\n var str = css_str.replace(/ /g, '').toLowerCase();\n\n // Color keywords (and transparent) lookup.\n if (str in kCSSColorTable) return kCSSColorTable[str].slice(); // dup.\n\n // #abc and #abc123 syntax.\n if (str[0] === '#') {\n if (str.length === 4) {\n var iv = parseInt(str.substr(1), 16); // TODO(deanm): Stricter parsing.\n if (!(iv >= 0 && iv <= 0xfff)) return null; // Covers NaN.\n return [((iv & 0xf00) >> 4) | ((iv & 0xf00) >> 8),\n (iv & 0xf0) | ((iv & 0xf0) >> 4),\n (iv & 0xf) | ((iv & 0xf) << 4),\n 1];\n } else if (str.length === 7) {\n var iv = parseInt(str.substr(1), 16); // TODO(deanm): Stricter parsing.\n if (!(iv >= 0 && iv <= 0xffffff)) return null; // Covers NaN.\n return [(iv & 0xff0000) >> 16,\n (iv & 0xff00) >> 8,\n iv & 0xff,\n 1];\n }\n\n return null;\n }\n\n var op = str.indexOf('('), ep = str.indexOf(')');\n if (op !== -1 && ep + 1 === str.length) {\n var fname = str.substr(0, op);\n var params = str.substr(op+1, ep-(op+1)).split(',');\n var alpha = 1; // To allow case fallthrough.\n switch (fname) {\n case 'rgba':\n if (params.length !== 4) return null;\n alpha = parse_css_float(params.pop());\n // Fall through.\n case 'rgb':\n if (params.length !== 3) return null;\n return [parse_css_int(params[0]),\n parse_css_int(params[1]),\n parse_css_int(params[2]),\n alpha];\n case 'hsla':\n if (params.length !== 4) return null;\n alpha = parse_css_float(params.pop());\n // Fall through.\n case 'hsl':\n if (params.length !== 3) return null;\n var h = (((parseFloat(params[0]) % 360) + 360) % 360) / 360; // 0 .. 1\n // NOTE(deanm): According to the CSS spec s/l should only be\n // percentages, but we don't bother and let float or percentage.\n var s = parse_css_float(params[1]);\n var l = parse_css_float(params[2]);\n var m2 = l <= 0.5 ? l * (s + 1) : l + s - l * s;\n var m1 = l * 2 - m2;\n return [clamp_css_byte(css_hue_to_rgb(m1, m2, h+1/3) * 255),\n clamp_css_byte(css_hue_to_rgb(m1, m2, h) * 255),\n clamp_css_byte(css_hue_to_rgb(m1, m2, h-1/3) * 255),\n alpha];\n default:\n return null;\n }\n }\n\n return null;\n}\n\ntry { exports.parseCSSColor = parseCSSColor } catch(e) { }\n",
"type": "application/javascript",
"module-type": "utils"
},
"$:/core/modules/utils/dom.js": {
"title": "$:/core/modules/utils/dom.js",
"text": "/*\\\ntitle: $:/core/modules/utils/dom.js\ntype: application/javascript\nmodule-type: utils\n\nVarious static DOM-related utility functions.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nDetermines whether element 'a' contains element 'b'\nCode thanks to John Resig, http://ejohn.org/blog/comparing-document-position/\n*/\nexports.domContains = function(a,b) {\n\treturn a.contains ?\n\t\ta !== b && a.contains(b) :\n\t\t!!(a.compareDocumentPosition(b) & 16);\n};\n\nexports.removeChildren = function(node) {\n\twhile(node.hasChildNodes()) {\n\t\tnode.removeChild(node.firstChild);\n\t}\n};\n\nexports.hasClass = function(el,className) {\n\treturn el && el.className && el.className.toString().split(\" \").indexOf(className) !== -1;\n};\n\nexports.addClass = function(el,className) {\n\tvar c = el.className.split(\" \");\n\tif(c.indexOf(className) === -1) {\n\t\tc.push(className);\n\t}\n\tel.className = c.join(\" \");\n};\n\nexports.removeClass = function(el,className) {\n\tvar c = el.className.split(\" \"),\n\t\tp = c.indexOf(className);\n\tif(p !== -1) {\n\t\tc.splice(p,1);\n\t\tel.className = c.join(\" \");\n\t}\n};\n\nexports.toggleClass = function(el,className,status) {\n\tif(status === undefined) {\n\t\tstatus = !exports.hasClass(el,className);\n\t}\n\tif(status) {\n\t\texports.addClass(el,className);\n\t} else {\n\t\texports.removeClass(el,className);\n\t}\n};\n\n/*\nGet the first parent element that has scrollbars or use the body as fallback.\n*/\nexports.getScrollContainer = function(el) {\n\tvar doc = el.ownerDocument;\n\twhile(el.parentNode) {\t\n\t\tel = el.parentNode;\n\t\tif(el.scrollTop) {\n\t\t\treturn el;\n\t\t}\n\t}\n\treturn doc.body;\n};\n\n/*\nGet the scroll position of the viewport\nReturns:\n\t{\n\t\tx: horizontal scroll position in pixels,\n\t\ty: vertical scroll position in pixels\n\t}\n*/\nexports.getScrollPosition = function(srcWindow) {\n\tvar scrollWindow = srcWindow || window;\n\tif(\"scrollX\" in scrollWindow) {\n\t\treturn {x: scrollWindow.scrollX, y: scrollWindow.scrollY};\n\t} else {\n\t\treturn {x: scrollWindow.document.documentElement.scrollLeft, y: scrollWindow.document.documentElement.scrollTop};\n\t}\n};\n\n/*\nAdjust the height of a textarea to fit its content, preserving scroll position, and return the height\n*/\nexports.resizeTextAreaToFit = function(domNode,minHeight) {\n\t// Get the scroll container and register the current scroll position\n\tvar container = $tw.utils.getScrollContainer(domNode),\n\t\tscrollTop = container.scrollTop;\n // Measure the specified minimum height\n\tdomNode.style.height = minHeight;\n\tvar measuredHeight = domNode.offsetHeight || parseInt(minHeight,10);\n\t// Set its height to auto so that it snaps to the correct height\n\tdomNode.style.height = \"auto\";\n\t// Calculate the revised height\n\tvar newHeight = Math.max(domNode.scrollHeight + domNode.offsetHeight - domNode.clientHeight,measuredHeight);\n\t// Only try to change the height if it has changed\n\tif(newHeight !== domNode.offsetHeight) {\n\t\tdomNode.style.height = newHeight + \"px\";\n\t\t// Make sure that the dimensions of the textarea are recalculated\n\t\t$tw.utils.forceLayout(domNode);\n\t\t// Set the container to the position we registered at the beginning\n\t\tcontainer.scrollTop = scrollTop;\n\t}\n\treturn newHeight;\n};\n\n/*\nGets the bounding rectangle of an element in absolute page coordinates\n*/\nexports.getBoundingPageRect = function(element) {\n\tvar scrollPos = $tw.utils.getScrollPosition(element.ownerDocument.defaultView),\n\t\tclientRect = element.getBoundingClientRect();\n\treturn {\n\t\tleft: clientRect.left + scrollPos.x,\n\t\twidth: clientRect.width,\n\t\tright: clientRect.right + scrollPos.x,\n\t\ttop: clientRect.top + scrollPos.y,\n\t\theight: clientRect.height,\n\t\tbottom: clientRect.bottom + scrollPos.y\n\t};\n};\n\n/*\nSaves a named password in the browser\n*/\nexports.savePassword = function(name,password) {\n\tvar done = false;\n\ttry {\n\t\twindow.localStorage.setItem(\"tw5-password-\" + name,password);\n\t\tdone = true;\n\t} catch(e) {\n\t}\n\tif(!done) {\n\t\t$tw.savedPasswords = $tw.savedPasswords || Object.create(null);\n\t\t$tw.savedPasswords[name] = password;\n\t}\n};\n\n/*\nRetrieve a named password from the browser\n*/\nexports.getPassword = function(name) {\n\tvar value;\n\ttry {\n\t\tvalue = window.localStorage.getItem(\"tw5-password-\" + name);\n\t} catch(e) {\n\t}\n\tif(value !== undefined) {\n\t\treturn value;\n\t} else {\n\t\treturn ($tw.savedPasswords || Object.create(null))[name] || \"\";\n\t}\n};\n\n/*\nForce layout of a dom node and its descendents\n*/\nexports.forceLayout = function(element) {\n\tvar dummy = element.offsetWidth;\n};\n\n/*\nPulse an element for debugging purposes\n*/\nexports.pulseElement = function(element) {\n\t// Event handler to remove the class at the end\n\telement.addEventListener($tw.browser.animationEnd,function handler(event) {\n\t\telement.removeEventListener($tw.browser.animationEnd,handler,false);\n\t\t$tw.utils.removeClass(element,\"pulse\");\n\t},false);\n\t// Apply the pulse class\n\t$tw.utils.removeClass(element,\"pulse\");\n\t$tw.utils.forceLayout(element);\n\t$tw.utils.addClass(element,\"pulse\");\n};\n\n/*\nAttach specified event handlers to a DOM node\ndomNode: where to attach the event handlers\nevents: array of event handlers to be added (see below)\nEach entry in the events array is an object with these properties:\nhandlerFunction: optional event handler function\nhandlerObject: optional event handler object\nhandlerMethod: optionally specifies object handler method name (defaults to `handleEvent`)\n*/\nexports.addEventListeners = function(domNode,events) {\n\t$tw.utils.each(events,function(eventInfo) {\n\t\tvar handler;\n\t\tif(eventInfo.handlerFunction) {\n\t\t\thandler = eventInfo.handlerFunction;\n\t\t} else if(eventInfo.handlerObject) {\n\t\t\tif(eventInfo.handlerMethod) {\n\t\t\t\thandler = function(event) {\n\t\t\t\t\teventInfo.handlerObject[eventInfo.handlerMethod].call(eventInfo.handlerObject,event);\n\t\t\t\t};\t\n\t\t\t} else {\n\t\t\t\thandler = eventInfo.handlerObject;\n\t\t\t}\n\t\t}\n\t\tdomNode.addEventListener(eventInfo.name,handler,false);\n\t});\n};\n\n/*\nGet the computed styles applied to an element as an array of strings of individual CSS properties\n*/\nexports.getComputedStyles = function(domNode) {\n\tvar textAreaStyles = window.getComputedStyle(domNode,null),\n\t\tstyleDefs = [],\n\t\tname;\n\tfor(var t=0; t<textAreaStyles.length; t++) {\n\t\tname = textAreaStyles[t];\n\t\tstyleDefs.push(name + \": \" + textAreaStyles.getPropertyValue(name) + \";\");\n\t}\n\treturn styleDefs;\n};\n\n/*\nApply a set of styles passed as an array of strings of individual CSS properties\n*/\nexports.setStyles = function(domNode,styleDefs) {\n\tdomNode.style.cssText = styleDefs.join(\"\");\n};\n\n/*\nCopy the computed styles from a source element to a destination element\n*/\nexports.copyStyles = function(srcDomNode,dstDomNode) {\n\t$tw.utils.setStyles(dstDomNode,$tw.utils.getComputedStyles(srcDomNode));\n};\n\n/*\nCopy plain text to the clipboard on browsers that support it\n*/\nexports.copyToClipboard = function(text,options) {\n\toptions = options || {};\n\tvar textArea = document.createElement(\"textarea\");\n\ttextArea.style.position = \"fixed\";\n\ttextArea.style.top = 0;\n\ttextArea.style.left = 0;\n\ttextArea.style.fontSize = \"12pt\";\n\ttextArea.style.width = \"2em\";\n\ttextArea.style.height = \"2em\";\n\ttextArea.style.padding = 0;\n\ttextArea.style.border = \"none\";\n\ttextArea.style.outline = \"none\";\n\ttextArea.style.boxShadow = \"none\";\n\ttextArea.style.background = \"transparent\";\n\ttextArea.value = text;\n\tdocument.body.appendChild(textArea);\n\ttextArea.select();\n\ttextArea.setSelectionRange(0,text.length);\n\tvar succeeded = false;\n\ttry {\n\t\tsucceeded = document.execCommand(\"copy\");\n\t} catch (err) {\n\t}\n\tif(!options.doNotNotify) {\n\t\t$tw.notifier.display(succeeded ? \"$:/language/Notifications/CopiedToClipboard/Succeeded\" : \"$:/language/Notifications/CopiedToClipboard/Failed\");\n\t}\n\tdocument.body.removeChild(textArea);\n};\n\nexports.getLocationPath = function() {\n\treturn window.location.toString().split(\"#\")[0];\n};\n\n\n})();\n",
"type": "application/javascript",
"module-type": "utils"
},
"$:/core/modules/utils/dom/dragndrop.js": {
"title": "$:/core/modules/utils/dom/dragndrop.js",
"text": "/*\\\ntitle: $:/core/modules/utils/dom/dragndrop.js\ntype: application/javascript\nmodule-type: utils\n\nBrowser data transfer utilities, used with the clipboard and drag and drop\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nOptions:\n\ndomNode: dom node to make draggable\ndragImageType: \"pill\" or \"dom\"\ndragTiddlerFn: optional function to retrieve the title of tiddler to drag\ndragFilterFn: optional function to retreive the filter defining a list of tiddlers to drag\nwidget: widget to use as the contect for the filter\n*/\nexports.makeDraggable = function(options) {\n\tvar dragImageType = options.dragImageType || \"dom\",\n\t\tdragImage,\n\t\tdomNode = options.domNode;\n\t// Make the dom node draggable (not necessary for anchor tags)\n\tif((domNode.tagName || \"\").toLowerCase() !== \"a\") {\n\t\tdomNode.setAttribute(\"draggable\",\"true\");\t\t\n\t}\n\t// Add event handlers\n\t$tw.utils.addEventListeners(domNode,[\n\t\t{name: \"dragstart\", handlerFunction: function(event) {\n\t\t\tif(event.dataTransfer === undefined) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\t// Collect the tiddlers being dragged\n\t\t\tvar dragTiddler = options.dragTiddlerFn && options.dragTiddlerFn(),\n\t\t\t\tdragFilter = options.dragFilterFn && options.dragFilterFn(),\n\t\t\t\ttitles = dragTiddler ? [dragTiddler] : [],\n\t\t\t \tstartActions = options.startActions;\n\t\t\tif(dragFilter) {\n\t\t\t\ttitles.push.apply(titles,options.widget.wiki.filterTiddlers(dragFilter,options.widget));\n\t\t\t}\n\t\t\tvar titleString = $tw.utils.stringifyList(titles);\n\t\t\t// Check that we've something to drag\n\t\t\tif(titles.length > 0 && event.target === domNode) {\n\t\t\t\t// Mark the drag in progress\n\t\t\t\t$tw.dragInProgress = domNode;\n\t\t\t\t// Set the dragging class on the element being dragged\n\t\t\t\t$tw.utils.addClass(event.target,\"tc-dragging\");\n\t\t\t\t// Invoke drag-start actions if given\n\t\t\t\tif(startActions !== undefined) {\n\t\t\t\t\toptions.widget.invokeActionString(startActions,options.widget,event,{actionTiddler: titleString});\n\t\t\t\t}\n\t\t\t\t// Create the drag image elements\n\t\t\t\tdragImage = options.widget.document.createElement(\"div\");\n\t\t\t\tdragImage.className = \"tc-tiddler-dragger\";\n\t\t\t\tvar inner = options.widget.document.createElement(\"div\");\n\t\t\t\tinner.className = \"tc-tiddler-dragger-inner\";\n\t\t\t\tinner.appendChild(options.widget.document.createTextNode(\n\t\t\t\t\ttitles.length === 1 ? \n\t\t\t\t\t\ttitles[0] :\n\t\t\t\t\t\ttitles.length + \" tiddlers\"\n\t\t\t\t));\n\t\t\t\tdragImage.appendChild(inner);\n\t\t\t\toptions.widget.document.body.appendChild(dragImage);\n\t\t\t\t// Set the data transfer properties\n\t\t\t\tvar dataTransfer = event.dataTransfer;\n\t\t\t\t// Set up the image\n\t\t\t\tdataTransfer.effectAllowed = \"all\";\n\t\t\t\tif(dataTransfer.setDragImage) {\n\t\t\t\t\tif(dragImageType === \"pill\") {\n\t\t\t\t\t\tdataTransfer.setDragImage(dragImage.firstChild,-16,-16);\n\t\t\t\t\t} else {\n\t\t\t\t\t\tvar r = domNode.getBoundingClientRect();\n\t\t\t\t\t\tdataTransfer.setDragImage(domNode,event.clientX-r.left,event.clientY-r.top);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t// Set up the data transfer\n\t\t\t\tif(dataTransfer.clearData) {\n\t\t\t\t\tdataTransfer.clearData();\t\t\t\t\t\n\t\t\t\t}\n\t\t\t\tvar jsonData = [];\n\t\t\t\tif(titles.length > 1) {\n\t\t\t\t\ttitles.forEach(function(title) {\n\t\t\t\t\t\tjsonData.push(options.widget.wiki.getTiddlerAsJson(title));\n\t\t\t\t\t});\n\t\t\t\t\tjsonData = \"[\" + jsonData.join(\",\") + \"]\";\n\t\t\t\t} else {\n\t\t\t\t\tjsonData = options.widget.wiki.getTiddlerAsJson(titles[0]);\n\t\t\t\t}\n\t\t\t\t// IE doesn't like these content types\n\t\t\t\tif(!$tw.browser.isIE) {\n\t\t\t\t\tdataTransfer.setData(\"text/vnd.tiddler\",jsonData);\n\t\t\t\t\tdataTransfer.setData(\"text/plain\",titleString);\n\t\t\t\t\tdataTransfer.setData(\"text/x-moz-url\",\"data:text/vnd.tiddler,\" + encodeURIComponent(jsonData));\n\t\t\t\t}\n\t\t\t\tdataTransfer.setData(\"URL\",\"data:text/vnd.tiddler,\" + encodeURIComponent(jsonData));\n\t\t\t\tdataTransfer.setData(\"Text\",titleString);\n\t\t\t\tevent.stopPropagation();\n\t\t\t}\n\t\t\treturn false;\n\t\t}},\n\t\t{name: \"dragend\", handlerFunction: function(event) {\n\t\t\tif(event.target === domNode) {\n\t\t\t\t// Collect the tiddlers being dragged\n\t\t\t\tvar dragTiddler = options.dragTiddlerFn && options.dragTiddlerFn(),\n\t\t\t\t\tdragFilter = options.dragFilterFn && options.dragFilterFn(),\n\t\t\t\t\ttitles = dragTiddler ? [dragTiddler] : [],\n\t\t\t \t\tendActions = options.endActions;\n\t\t\t\tif(dragFilter) {\n\t\t\t\t\ttitles.push.apply(titles,options.widget.wiki.filterTiddlers(dragFilter,options.widget));\n\t\t\t\t}\n\t\t\t\tvar titleString = $tw.utils.stringifyList(titles);\n\t\t\t\t$tw.dragInProgress = null;\n\t\t\t\t// Invoke drag-end actions if given\n\t\t\t\tif(endActions !== undefined) {\n\t\t\t\t\toptions.widget.invokeActionString(endActions,options.widget,event,{actionTiddler: titleString});\n\t\t\t\t}\n\t\t\t\t// Remove the dragging class on the element being dragged\n\t\t\t\t$tw.utils.removeClass(event.target,\"tc-dragging\");\n\t\t\t\t// Delete the drag image element\n\t\t\t\tif(dragImage) {\n\t\t\t\t\tdragImage.parentNode.removeChild(dragImage);\n\t\t\t\t\tdragImage = null;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t}}\n\t]);\n};\n\nexports.importDataTransfer = function(dataTransfer,fallbackTitle,callback) {\n\t// Try each provided data type in turn\n\tif($tw.log.IMPORT) {\n\t\tconsole.log(\"Available data types:\");\n\t\tfor(var type=0; type<dataTransfer.types.length; type++) {\n\t\t\tconsole.log(\"type\",dataTransfer.types[type],dataTransfer.getData(dataTransfer.types[type]))\n\t\t}\n\t}\n\tfor(var t=0; t<importDataTypes.length; t++) {\n\t\tif(!$tw.browser.isIE || importDataTypes[t].IECompatible) {\n\t\t\t// Get the data\n\t\t\tvar dataType = importDataTypes[t];\n\t\t\t\tvar data = dataTransfer.getData(dataType.type);\n\t\t\t// Import the tiddlers in the data\n\t\t\tif(data !== \"\" && data !== null) {\n\t\t\t\tif($tw.log.IMPORT) {\n\t\t\t\t\tconsole.log(\"Importing data type '\" + dataType.type + \"', data: '\" + data + \"'\")\n\t\t\t\t}\n\t\t\t\tvar tiddlerFields = dataType.toTiddlerFieldsArray(data,fallbackTitle);\n\t\t\t\tcallback(tiddlerFields);\n\t\t\t\treturn;\n\t\t\t}\n\t\t}\n\t}\n};\n\nvar importDataTypes = [\n\t{type: \"text/vnd.tiddler\", IECompatible: false, toTiddlerFieldsArray: function(data,fallbackTitle) {\n\t\treturn parseJSONTiddlers(data,fallbackTitle);\n\t}},\n\t{type: \"URL\", IECompatible: true, toTiddlerFieldsArray: function(data,fallbackTitle) {\n\t\t// Check for tiddler data URI\n\t\tvar match = decodeURIComponent(data).match(/^data\\:text\\/vnd\\.tiddler,(.*)/i);\n\t\tif(match) {\n\t\t\treturn parseJSONTiddlers(match[1],fallbackTitle);\n\t\t} else {\n\t\t\treturn [{title: fallbackTitle, text: data}]; // As URL string\n\t\t}\n\t}},\n\t{type: \"text/x-moz-url\", IECompatible: false, toTiddlerFieldsArray: function(data,fallbackTitle) {\n\t\t// Check for tiddler data URI\n\t\tvar match = decodeURIComponent(data).match(/^data\\:text\\/vnd\\.tiddler,(.*)/i);\n\t\tif(match) {\n\t\t\treturn parseJSONTiddlers(match[1],fallbackTitle);\n\t\t} else {\n\t\t\treturn [{title: fallbackTitle, text: data}]; // As URL string\n\t\t}\n\t}},\n\t{type: \"text/html\", IECompatible: false, toTiddlerFieldsArray: function(data,fallbackTitle) {\n\t\treturn [{title: fallbackTitle, text: data}];\n\t}},\n\t{type: \"text/plain\", IECompatible: false, toTiddlerFieldsArray: function(data,fallbackTitle) {\n\t\treturn [{title: fallbackTitle, text: data}];\n\t}},\n\t{type: \"Text\", IECompatible: true, toTiddlerFieldsArray: function(data,fallbackTitle) {\n\t\treturn [{title: fallbackTitle, text: data}];\n\t}},\n\t{type: \"text/uri-list\", IECompatible: false, toTiddlerFieldsArray: function(data,fallbackTitle) {\n\t\treturn [{title: fallbackTitle, text: data}];\n\t}}\n];\n\nfunction parseJSONTiddlers(json,fallbackTitle) {\n\tvar data = JSON.parse(json);\n\tif(!$tw.utils.isArray(data)) {\n\t\tdata = [data];\n\t}\n\tdata.forEach(function(fields) {\n\t\tfields.title = fields.title || fallbackTitle;\n\t});\n\treturn data;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "utils"
},
"$:/core/modules/utils/dom/http.js": {
"title": "$:/core/modules/utils/dom/http.js",
"text": "/*\\\ntitle: $:/core/modules/utils/dom/http.js\ntype: application/javascript\nmodule-type: utils\n\nBrowser HTTP support\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nA quick and dirty HTTP function; to be refactored later. Options are:\n\turl: URL to retrieve\n\theaders: hashmap of headers to send\n\ttype: GET, PUT, POST etc\n\tcallback: function invoked with (err,data,xhr)\n\treturnProp: string name of the property to return as first argument of callback\n*/\nexports.httpRequest = function(options) {\n\tvar type = options.type || \"GET\",\n\t\theaders = options.headers || {accept: \"application/json\"},\n\t\treturnProp = options.returnProp || \"responseText\",\n\t\trequest = new XMLHttpRequest(),\n\t\tdata = \"\",\n\t\tf,results;\n\t// Massage the data hashmap into a string\n\tif(options.data) {\n\t\tif(typeof options.data === \"string\") { // Already a string\n\t\t\tdata = options.data;\n\t\t} else { // A hashmap of strings\n\t\t\tresults = [];\n\t\t\t$tw.utils.each(options.data,function(dataItem,dataItemTitle) {\n\t\t\t\tresults.push(dataItemTitle + \"=\" + encodeURIComponent(dataItem));\n\t\t\t});\n\t\t\tdata = results.join(\"&\");\n\t\t}\n\t}\n\t// Set up the state change handler\n\trequest.onreadystatechange = function() {\n\t\tif(this.readyState === 4) {\n\t\t\tif(this.status === 200 || this.status === 201 || this.status === 204) {\n\t\t\t\t// Success!\n\t\t\t\toptions.callback(null,this[returnProp],this);\n\t\t\t\treturn;\n\t\t\t}\n\t\t// Something went wrong\n\t\toptions.callback($tw.language.getString(\"Error/XMLHttpRequest\") + \": \" + this.status,null,this);\n\t\t}\n\t};\n\t// Make the request\n\trequest.open(type,options.url,true);\n\tif(headers) {\n\t\t$tw.utils.each(headers,function(header,headerTitle,object) {\n\t\t\trequest.setRequestHeader(headerTitle,header);\n\t\t});\n\t}\n\tif(data && !$tw.utils.hop(headers,\"Content-type\")) {\n\t\trequest.setRequestHeader(\"Content-type\",\"application/x-www-form-urlencoded; charset=UTF-8\");\n\t}\n\tif(!$tw.utils.hop(headers,\"X-Requested-With\")) {\n\t\trequest.setRequestHeader(\"X-Requested-With\",\"TiddlyWiki\");\n\t}\n\ttry {\n\t\trequest.send(data);\n\t} catch(e) {\n\t\toptions.callback(e,null,this);\n\t}\n\treturn request;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "utils"
},
"$:/core/modules/utils/dom/keyboard.js": {
"title": "$:/core/modules/utils/dom/keyboard.js",
"text": "/*\\\ntitle: $:/core/modules/utils/dom/keyboard.js\ntype: application/javascript\nmodule-type: utils\n\nKeyboard utilities; now deprecated. Instead, use $tw.keyboardManager\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n[\"parseKeyDescriptor\",\"checkKeyDescriptor\"].forEach(function(method) {\n\texports[method] = function() {\n\t\tif($tw.keyboardManager) {\n\t\t\treturn $tw.keyboardManager[method].apply($tw.keyboardManager,Array.prototype.slice.call(arguments,0));\n\t\t} else {\n\t\t\treturn null\n\t\t}\n\t};\n});\n\n})();\n",
"type": "application/javascript",
"module-type": "utils"
},
"$:/core/modules/utils/dom/modal.js": {
"title": "$:/core/modules/utils/dom/modal.js",
"text": "/*\\\ntitle: $:/core/modules/utils/dom/modal.js\ntype: application/javascript\nmodule-type: utils\n\nModal message mechanism\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar widget = require(\"$:/core/modules/widgets/widget.js\");\n\nvar Modal = function(wiki) {\n\tthis.wiki = wiki;\n\tthis.modalCount = 0;\n};\n\n/*\nDisplay a modal dialogue\n\ttitle: Title of tiddler to display\n\toptions: see below\nOptions include:\n\tdownloadLink: Text of a big download link to include\n*/\nModal.prototype.display = function(title,options) {\n\toptions = options || {};\n\tthis.srcDocument = options.variables && (options.variables.rootwindow === \"true\" ||\n\t\t\t\toptions.variables.rootwindow === \"yes\") ? document :\n\t\t\t\t(options.event.event && options.event.event.target ? options.event.event.target.ownerDocument : document);\n\tthis.srcWindow = this.srcDocument.defaultView;\n\tvar self = this,\n\t\trefreshHandler,\n\t\tduration = $tw.utils.getAnimationDuration(),\n\t\ttiddler = this.wiki.getTiddler(title);\n\t// Don't do anything if the tiddler doesn't exist\n\tif(!tiddler) {\n\t\treturn;\n\t}\n\t// Create the variables\n\tvar variables = $tw.utils.extend({currentTiddler: title},options.variables);\n\t// Create the wrapper divs\n\tvar wrapper = this.srcDocument.createElement(\"div\"),\n\t\tmodalBackdrop = this.srcDocument.createElement(\"div\"),\n\t\tmodalWrapper = this.srcDocument.createElement(\"div\"),\n\t\tmodalHeader = this.srcDocument.createElement(\"div\"),\n\t\theaderTitle = this.srcDocument.createElement(\"h3\"),\n\t\tmodalBody = this.srcDocument.createElement(\"div\"),\n\t\tmodalLink = this.srcDocument.createElement(\"a\"),\n\t\tmodalFooter = this.srcDocument.createElement(\"div\"),\n\t\tmodalFooterHelp = this.srcDocument.createElement(\"span\"),\n\t\tmodalFooterButtons = this.srcDocument.createElement(\"span\");\n\t// Up the modal count and adjust the body class\n\tthis.modalCount++;\n\tthis.adjustPageClass();\n\t// Add classes\n\t$tw.utils.addClass(wrapper,\"tc-modal-wrapper\");\n\t$tw.utils.addClass(modalBackdrop,\"tc-modal-backdrop\");\n\t$tw.utils.addClass(modalWrapper,\"tc-modal\");\n\t$tw.utils.addClass(modalHeader,\"tc-modal-header\");\n\t$tw.utils.addClass(modalBody,\"tc-modal-body\");\n\t$tw.utils.addClass(modalFooter,\"tc-modal-footer\");\n\t// Join them together\n\twrapper.appendChild(modalBackdrop);\n\twrapper.appendChild(modalWrapper);\n\tmodalHeader.appendChild(headerTitle);\n\tmodalWrapper.appendChild(modalHeader);\n\tmodalWrapper.appendChild(modalBody);\n\tmodalFooter.appendChild(modalFooterHelp);\n\tmodalFooter.appendChild(modalFooterButtons);\n\tmodalWrapper.appendChild(modalFooter);\n\t// Render the title of the message\n\tvar headerWidgetNode = this.wiki.makeTranscludeWidget(title,{\n\t\tfield: \"subtitle\",\n\t\tmode: \"inline\",\n\t\tchildren: [{\n\t\t\ttype: \"text\",\n\t\t\tattributes: {\n\t\t\t\ttext: {\n\t\t\t\t\ttype: \"string\",\n\t\t\t\t\tvalue: title\n\t\t}}}],\n\t\tparentWidget: $tw.rootWidget,\n\t\tdocument: this.srcDocument,\n\t\tvariables: variables,\n\t\timportPageMacros: true\n\t});\n\theaderWidgetNode.render(headerTitle,null);\n\t// Render the body of the message\n\tvar bodyWidgetNode = this.wiki.makeTranscludeWidget(title,{\n\t\tparentWidget: $tw.rootWidget,\n\t\tdocument: this.srcDocument,\n\t\tvariables: variables,\n\t\timportPageMacros: true\n\t});\n\tbodyWidgetNode.render(modalBody,null);\n\t// Setup the link if present\n\tif(options.downloadLink) {\n\t\tmodalLink.href = options.downloadLink;\n\t\tmodalLink.appendChild(this.srcDocument.createTextNode(\"Right-click to save changes\"));\n\t\tmodalBody.appendChild(modalLink);\n\t}\n\t// Render the footer of the message\n\tif(tiddler && tiddler.fields && tiddler.fields.help) {\n\t\tvar link = this.srcDocument.createElement(\"a\");\n\t\tlink.setAttribute(\"href\",tiddler.fields.help);\n\t\tlink.setAttribute(\"target\",\"_blank\");\n\t\tlink.setAttribute(\"rel\",\"noopener noreferrer\");\n\t\tlink.appendChild(this.srcDocument.createTextNode(\"Help\"));\n\t\tmodalFooterHelp.appendChild(link);\n\t\tmodalFooterHelp.style.float = \"left\";\n\t}\n\tvar footerWidgetNode = this.wiki.makeTranscludeWidget(title,{\n\t\tfield: \"footer\",\n\t\tmode: \"inline\",\n\t\tchildren: [{\n\t\t\ttype: \"button\",\n\t\t\tattributes: {\n\t\t\t\tmessage: {\n\t\t\t\t\ttype: \"string\",\n\t\t\t\t\tvalue: \"tm-close-tiddler\"\n\t\t\t\t}\n\t\t\t},\n\t\t\tchildren: [{\n\t\t\t\ttype: \"text\",\n\t\t\t\tattributes: {\n\t\t\t\t\ttext: {\n\t\t\t\t\t\ttype: \"string\",\n\t\t\t\t\t\tvalue: $tw.language.getString(\"Buttons/Close/Caption\")\n\t\t\t}}}\n\t\t]}],\n\t\tparentWidget: $tw.rootWidget,\n\t\tdocument: this.srcDocument,\n\t\tvariables: variables,\n\t\timportPageMacros: true\n\t});\n\tfooterWidgetNode.render(modalFooterButtons,null);\n\t// Set up the refresh handler\n\trefreshHandler = function(changes) {\n\t\theaderWidgetNode.refresh(changes,modalHeader,null);\n\t\tbodyWidgetNode.refresh(changes,modalBody,null);\n\t\tfooterWidgetNode.refresh(changes,modalFooterButtons,null);\n\t};\n\tthis.wiki.addEventListener(\"change\",refreshHandler);\n\t// Add the close event handler\n\tvar closeHandler = function(event) {\n\t\t// Remove our refresh handler\n\t\tself.wiki.removeEventListener(\"change\",refreshHandler);\n\t\t// Decrease the modal count and adjust the body class\n\t\tself.modalCount--;\n\t\tself.adjustPageClass();\n\t\t// Force layout and animate the modal message away\n\t\t$tw.utils.forceLayout(modalBackdrop);\n\t\t$tw.utils.forceLayout(modalWrapper);\n\t\t$tw.utils.setStyle(modalBackdrop,[\n\t\t\t{opacity: \"0\"}\n\t\t]);\n\t\t$tw.utils.setStyle(modalWrapper,[\n\t\t\t{transform: \"translateY(\" + self.srcWindow.innerHeight + \"px)\"}\n\t\t]);\n\t\t// Set up an event for the transition end\n\t\tself.srcWindow.setTimeout(function() {\n\t\t\tif(wrapper.parentNode) {\n\t\t\t\t// Remove the modal message from the DOM\n\t\t\t\tself.srcDocument.body.removeChild(wrapper);\n\t\t\t}\n\t\t},duration);\n\t\t// Don't let anyone else handle the tm-close-tiddler message\n\t\treturn false;\n\t};\n\theaderWidgetNode.addEventListener(\"tm-close-tiddler\",closeHandler,false);\n\tbodyWidgetNode.addEventListener(\"tm-close-tiddler\",closeHandler,false);\n\tfooterWidgetNode.addEventListener(\"tm-close-tiddler\",closeHandler,false);\n\t// Set the initial styles for the message\n\t$tw.utils.setStyle(modalBackdrop,[\n\t\t{opacity: \"0\"}\n\t]);\n\t$tw.utils.setStyle(modalWrapper,[\n\t\t{transformOrigin: \"0% 0%\"},\n\t\t{transform: \"translateY(\" + (-this.srcWindow.innerHeight) + \"px)\"}\n\t]);\n\t// Put the message into the document\n\tthis.srcDocument.body.appendChild(wrapper);\n\t// Set up animation for the styles\n\t$tw.utils.setStyle(modalBackdrop,[\n\t\t{transition: \"opacity \" + duration + \"ms ease-out\"}\n\t]);\n\t$tw.utils.setStyle(modalWrapper,[\n\t\t{transition: $tw.utils.roundTripPropertyName(\"transform\") + \" \" + duration + \"ms ease-in-out\"}\n\t]);\n\t// Force layout\n\t$tw.utils.forceLayout(modalBackdrop);\n\t$tw.utils.forceLayout(modalWrapper);\n\t// Set final animated styles\n\t$tw.utils.setStyle(modalBackdrop,[\n\t\t{opacity: \"0.7\"}\n\t]);\n\t$tw.utils.setStyle(modalWrapper,[\n\t\t{transform: \"translateY(0px)\"}\n\t]);\n};\n\nModal.prototype.adjustPageClass = function() {\n\tvar windowContainer = $tw.pageContainer ? ($tw.pageContainer === this.srcDocument.body.firstChild ? $tw.pageContainer : this.srcDocument.body.firstChild) : null;\n\tif(windowContainer) {\n\t\t$tw.utils.toggleClass(windowContainer,\"tc-modal-displayed\",this.modalCount > 0);\n\t}\n};\n\nexports.Modal = Modal;\n\n})();\n",
"type": "application/javascript",
"module-type": "utils"
},
"$:/core/modules/utils/dom/notifier.js": {
"title": "$:/core/modules/utils/dom/notifier.js",
"text": "/*\\\ntitle: $:/core/modules/utils/dom/notifier.js\ntype: application/javascript\nmodule-type: utils\n\nNotifier mechanism\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar widget = require(\"$:/core/modules/widgets/widget.js\");\n\nvar Notifier = function(wiki) {\n\tthis.wiki = wiki;\n};\n\n/*\nDisplay a notification\n\ttitle: Title of tiddler containing the notification text\n\toptions: see below\nOptions include:\n*/\nNotifier.prototype.display = function(title,options) {\n\toptions = options || {};\n\t// Create the wrapper divs\n\tvar self = this,\n\t\tnotification = document.createElement(\"div\"),\n\t\ttiddler = this.wiki.getTiddler(title),\n\t\tduration = $tw.utils.getAnimationDuration(),\n\t\trefreshHandler;\n\t// Don't do anything if the tiddler doesn't exist\n\tif(!tiddler) {\n\t\treturn;\n\t}\n\t// Add classes\n\t$tw.utils.addClass(notification,\"tc-notification\");\n\t// Create the variables\n\tvar variables = $tw.utils.extend({currentTiddler: title},options.variables);\n\t// Render the body of the notification\n\tvar widgetNode = this.wiki.makeTranscludeWidget(title,{\n\t\tparentWidget: $tw.rootWidget,\n\t\tdocument: document,\n\t\tvariables: variables,\n\t\timportPageMacros: true});\n\twidgetNode.render(notification,null);\n\trefreshHandler = function(changes) {\n\t\twidgetNode.refresh(changes,notification,null);\n\t};\n\tthis.wiki.addEventListener(\"change\",refreshHandler);\n\t// Set the initial styles for the notification\n\t$tw.utils.setStyle(notification,[\n\t\t{opacity: \"0\"},\n\t\t{transformOrigin: \"0% 0%\"},\n\t\t{transform: \"translateY(\" + (-window.innerHeight) + \"px)\"},\n\t\t{transition: \"opacity \" + duration + \"ms ease-out, \" + $tw.utils.roundTripPropertyName(\"transform\") + \" \" + duration + \"ms ease-in-out\"}\n\t]);\n\t// Add the notification to the DOM\n\tdocument.body.appendChild(notification);\n\t// Force layout\n\t$tw.utils.forceLayout(notification);\n\t// Set final animated styles\n\t$tw.utils.setStyle(notification,[\n\t\t{opacity: \"1.0\"},\n\t\t{transform: \"translateY(0px)\"}\n\t]);\n\t// Set a timer to remove the notification\n\twindow.setTimeout(function() {\n\t\t// Remove our change event handler\n\t\tself.wiki.removeEventListener(\"change\",refreshHandler);\n\t\t// Force layout and animate the notification away\n\t\t$tw.utils.forceLayout(notification);\n\t\t$tw.utils.setStyle(notification,[\n\t\t\t{opacity: \"0.0\"},\n\t\t\t{transform: \"translateX(\" + (notification.offsetWidth) + \"px)\"}\n\t\t]);\n\t\t// Remove the modal message from the DOM once the transition ends\n\t\tsetTimeout(function() {\n\t\t\tif(notification.parentNode) {\n\t\t\t\tdocument.body.removeChild(notification);\n\t\t\t}\n\t\t},duration);\n\t},$tw.config.preferences.notificationDuration);\n};\n\nexports.Notifier = Notifier;\n\n})();\n",
"type": "application/javascript",
"module-type": "utils"
},
"$:/core/modules/utils/dom/popup.js": {
"title": "$:/core/modules/utils/dom/popup.js",
"text": "/*\\\ntitle: $:/core/modules/utils/dom/popup.js\ntype: application/javascript\nmodule-type: utils\n\nModule that creates a $tw.utils.Popup object prototype that manages popups in the browser\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nCreates a Popup object with these options:\n\trootElement: the DOM element to which the popup zapper should be attached\n*/\nvar Popup = function(options) {\n\toptions = options || {};\n\tthis.rootElement = options.rootElement || document.documentElement;\n\tthis.popups = []; // Array of {title:,wiki:,domNode:} objects\n};\n\n/*\nTrigger a popup open or closed. Parameters are in a hashmap:\n\ttitle: title of the tiddler where the popup details are stored\n\tdomNode: dom node to which the popup will be positioned (one of domNode or domNodeRect is required)\n\tdomNodeRect: rectangle to which the popup will be positioned\n\twiki: wiki\n\tforce: if specified, forces the popup state to true or false (instead of toggling it)\n\tfloating: if true, skips registering the popup, meaning that it will need manually clearing\n*/\nPopup.prototype.triggerPopup = function(options) {\n\t// Check if this popup is already active\n\tvar index = this.findPopup(options.title);\n\t// Compute the new state\n\tvar state = index === -1;\n\tif(options.force !== undefined) {\n\t\tstate = options.force;\n\t}\n\t// Show or cancel the popup according to the new state\n\tif(state) {\n\t\tthis.show(options);\n\t} else {\n\t\tthis.cancel(index);\n\t}\n};\n\nPopup.prototype.findPopup = function(title) {\n\tvar index = -1;\n\tfor(var t=0; t<this.popups.length; t++) {\n\t\tif(this.popups[t].title === title) {\n\t\t\tindex = t;\n\t\t}\n\t}\n\treturn index;\n};\n\nPopup.prototype.handleEvent = function(event) {\n\tif(event.type === \"click\") {\n\t\t// Find out what was clicked on\n\t\tvar info = this.popupInfo(event.target),\n\t\t\tcancelLevel = info.popupLevel - 1;\n\t\t// Don't remove the level that was clicked on if we clicked on a handle\n\t\tif(info.isHandle) {\n\t\t\tcancelLevel++;\n\t\t}\n\t\t// Cancel\n\t\tthis.cancel(cancelLevel);\n\t}\n};\n\n/*\nFind the popup level containing a DOM node. Returns:\npopupLevel: count of the number of nested popups containing the specified element\nisHandle: true if the specified element is within a popup handle\n*/\nPopup.prototype.popupInfo = function(domNode) {\n\tvar isHandle = false,\n\t\tpopupCount = 0,\n\t\tnode = domNode;\n\t// First check ancestors to see if we're within a popup handle\n\twhile(node) {\n\t\tif($tw.utils.hasClass(node,\"tc-popup-handle\")) {\n\t\t\tisHandle = true;\n\t\t\tpopupCount++;\n\t\t}\n\t\tif($tw.utils.hasClass(node,\"tc-popup-keep\")) {\n\t\t\tisHandle = true;\n\t\t}\n\t\tnode = node.parentNode;\n\t}\n\t// Then count the number of ancestor popups\n\tnode = domNode;\n\twhile(node) {\n\t\tif($tw.utils.hasClass(node,\"tc-popup\")) {\n\t\t\tpopupCount++;\n\t\t}\n\t\tnode = node.parentNode;\n\t}\n\tvar info = {\n\t\tpopupLevel: popupCount,\n\t\tisHandle: isHandle\n\t};\n\treturn info;\n};\n\n/*\nDisplay a popup by adding it to the stack\n*/\nPopup.prototype.show = function(options) {\n\t// Find out what was clicked on\n\tvar info = this.popupInfo(options.domNode);\n\t// Cancel any higher level popups\n\tthis.cancel(info.popupLevel);\n\n\t// Store the popup details if not already there\n\tif(!options.floating && this.findPopup(options.title) === -1) {\n\t\tthis.popups.push({\n\t\t\ttitle: options.title,\n\t\t\twiki: options.wiki,\n\t\t\tdomNode: options.domNode,\n\t\t\tnoStateReference: options.noStateReference\n\t\t});\n\t}\n\t// Set the state tiddler\n\tvar rect;\n\tif(options.domNodeRect) {\n\t\trect = options.domNodeRect;\n\t} else {\n\t\trect = {\n\t\t\tleft: options.domNode.offsetLeft,\n\t\t\ttop: options.domNode.offsetTop,\n\t\t\twidth: options.domNode.offsetWidth,\n\t\t\theight: options.domNode.offsetHeight\n\t\t};\n\t}\n\tvar popupRect = \"(\" + rect.left + \",\" + rect.top + \",\" + \n\t\t\t\trect.width + \",\" + rect.height + \")\";\n\tif(options.noStateReference) {\n\t\toptions.wiki.setText(options.title,\"text\",undefined,popupRect);\n\t} else {\n\t\toptions.wiki.setTextReference(options.title,popupRect);\n\t}\n\t// Add the click handler if we have any popups\n\tif(this.popups.length > 0) {\n\t\tthis.rootElement.addEventListener(\"click\",this,true);\t\t\n\t}\n};\n\n/*\nDetect if a Popup contains an input field that has focus\nReturns true or false\n*/\nPopup.prototype.detectInputWithinPopup = function(node) {\n\tvar withinPopup = false,\n\t currNode = node;\n\tfor(var i=0; i<this.popups.length; i++) {\n\t\tvar popup = (this.popups[i] && this.popups[i].domNode) ? this.popups[i].domNode : null;\n\t\twhile(node && popup) {\n\t\t\tif(node === popup || (node.classList && (node.classList.contains(\"tc-popup-keep\") || (node !== currNode && node.classList.contains(\"tc-popup-handle\"))))) {\n\t\t\t\twithinPopup = true;\n\t\t\t}\n\t\t\tnode = node.parentNode;\n\t\t}\n\t}\n\treturn withinPopup;\n};\n\n/*\nCancel all popups at or above a specified level or DOM node\nlevel: popup level to cancel (0 cancels all popups)\n*/\nPopup.prototype.cancel = function(level,focusedInputNode) {\n\tvar numPopups = this.popups.length;\n\tlevel = Math.max(0,Math.min(level,numPopups));\n\tfor(var t=level; t<numPopups; t++) {\n\t\tvar inputWithinPopup;\n\t\tif(focusedInputNode) {\n\t\t\tinputWithinPopup = this.detectInputWithinPopup(focusedInputNode);\n\t\t}\n\t\tif(!inputWithinPopup) {\n\t\t\tvar popup = this.popups.pop();\n\t\t \tif(popup.title) {\n\t\t\t\tif(popup.noStateReference) {\n\t\t\t\t\tpopup.wiki.deleteTiddler(popup.title);\n\t\t\t\t} else {\n\t\t\t\t\tpopup.wiki.deleteTiddler($tw.utils.parseTextReference(popup.title).title);\n \t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\tif(this.popups.length === 0) {\n\t\tthis.rootElement.removeEventListener(\"click\",this,false);\n\t}\n};\n\n/*\nReturns true if the specified title and text identifies an active popup\n*/\nPopup.prototype.readPopupState = function(text) {\n\tvar popupLocationRegExp = /^\\((-?[0-9\\.E]+),(-?[0-9\\.E]+),(-?[0-9\\.E]+),(-?[0-9\\.E]+)\\)$/;\n\treturn popupLocationRegExp.test(text);\n};\n\nexports.Popup = Popup;\n\n})();\n",
"type": "application/javascript",
"module-type": "utils"
},
"$:/core/modules/utils/dom/scroller.js": {
"title": "$:/core/modules/utils/dom/scroller.js",
"text": "/*\\\ntitle: $:/core/modules/utils/dom/scroller.js\ntype: application/javascript\nmodule-type: utils\n\nModule that creates a $tw.utils.Scroller object prototype that manages scrolling in the browser\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nEvent handler for when the `tm-scroll` event hits the document body\n*/\nvar PageScroller = function() {\n\tthis.idRequestFrame = null;\n\tthis.requestAnimationFrame = window.requestAnimationFrame ||\n\t\twindow.webkitRequestAnimationFrame ||\n\t\twindow.mozRequestAnimationFrame ||\n\t\tfunction(callback) {\n\t\t\treturn window.setTimeout(callback, 1000/60);\n\t\t};\n\tthis.cancelAnimationFrame = window.cancelAnimationFrame ||\n\t\twindow.webkitCancelAnimationFrame ||\n\t\twindow.webkitCancelRequestAnimationFrame ||\n\t\twindow.mozCancelAnimationFrame ||\n\t\twindow.mozCancelRequestAnimationFrame ||\n\t\tfunction(id) {\n\t\t\twindow.clearTimeout(id);\n\t\t};\n};\n\nPageScroller.prototype.isScrolling = function() {\n\treturn this.idRequestFrame !== null;\n}\n\nPageScroller.prototype.cancelScroll = function(srcWindow) {\n\tif(this.idRequestFrame) {\n\t\tthis.cancelAnimationFrame.call(srcWindow,this.idRequestFrame);\n\t\tthis.idRequestFrame = null;\n\t}\n};\n\n/*\nHandle an event\n*/\nPageScroller.prototype.handleEvent = function(event) {\n\tif(event.type === \"tm-scroll\") {\n\t\treturn this.scrollIntoView(event.target);\n\t}\n\treturn true;\n};\n\n/*\nHandle a scroll event hitting the page document\n*/\nPageScroller.prototype.scrollIntoView = function(element,callback) {\n\tvar self = this,\n\t\tduration = $tw.utils.getAnimationDuration(),\n\t srcWindow = element ? element.ownerDocument.defaultView : window;\n\t// Now get ready to scroll the body\n\tthis.cancelScroll(srcWindow);\n\tthis.startTime = Date.now();\n\t// Get the height of any position:fixed toolbars\n\tvar toolbar = srcWindow.document.querySelector(\".tc-adjust-top-of-scroll\"),\n\t\toffset = 0;\n\tif(toolbar) {\n\t\toffset = toolbar.offsetHeight;\n\t}\n\t// Get the client bounds of the element and adjust by the scroll position\n\tvar getBounds = function() {\n\t\t\tvar clientBounds = typeof callback === 'function' ? callback() : element.getBoundingClientRect(),\n\t\t\t\tscrollPosition = $tw.utils.getScrollPosition(srcWindow);\n\t\t\treturn {\n\t\t\t\tleft: clientBounds.left + scrollPosition.x,\n\t\t\t\ttop: clientBounds.top + scrollPosition.y - offset,\n\t\t\t\twidth: clientBounds.width,\n\t\t\t\theight: clientBounds.height\n\t\t\t};\n\t\t},\n\t\t// We'll consider the horizontal and vertical scroll directions separately via this function\n\t\t// targetPos/targetSize - position and size of the target element\n\t\t// currentPos/currentSize - position and size of the current scroll viewport\n\t\t// returns: new position of the scroll viewport\n\t\tgetEndPos = function(targetPos,targetSize,currentPos,currentSize) {\n\t\t\tvar newPos = targetPos;\n\t\t\t// If we are scrolling within 50 pixels of the top/left then snap to zero\n\t\t\tif(newPos < 50) {\n\t\t\t\tnewPos = 0;\n\t\t\t}\n\t\t\treturn newPos;\n\t\t},\n\t\tdrawFrame = function drawFrame() {\n\t\t\tvar t;\n\t\t\tif(duration <= 0) {\n\t\t\t\tt = 1;\n\t\t\t} else {\n\t\t\t\tt = ((Date.now()) - self.startTime) / duration;\t\n\t\t\t}\n\t\t\tif(t >= 1) {\n\t\t\t\tself.cancelScroll(srcWindow);\n\t\t\t\tt = 1;\n\t\t\t}\n\t\t\tt = $tw.utils.slowInSlowOut(t);\n\t\t\tvar scrollPosition = $tw.utils.getScrollPosition(srcWindow),\n\t\t\t\tbounds = getBounds(),\n\t\t\t\tendX = getEndPos(bounds.left,bounds.width,scrollPosition.x,srcWindow.innerWidth),\n\t\t\t\tendY = getEndPos(bounds.top,bounds.height,scrollPosition.y,srcWindow.innerHeight);\n\t\t\tsrcWindow.scrollTo(scrollPosition.x + (endX - scrollPosition.x) * t,scrollPosition.y + (endY - scrollPosition.y) * t);\n\t\t\tif(t < 1) {\n\t\t\t\tself.idRequestFrame = self.requestAnimationFrame.call(srcWindow,drawFrame);\n\t\t\t}\n\t\t};\n\tdrawFrame();\n};\n\nexports.PageScroller = PageScroller;\n\n})();\n",
"type": "application/javascript",
"module-type": "utils"
},
"$:/core/modules/utils/edition-info.js": {
"title": "$:/core/modules/utils/edition-info.js",
"text": "/*\\\ntitle: $:/core/modules/utils/edition-info.js\ntype: application/javascript\nmodule-type: utils-node\n\nInformation about the available editions\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar fs = require(\"fs\"),\n\tpath = require(\"path\");\n\nvar editionInfo;\n\nexports.getEditionInfo = function() {\n\tif(!editionInfo) {\n\t\t// Enumerate the edition paths\n\t\tvar editionPaths = $tw.getLibraryItemSearchPaths($tw.config.editionsPath,$tw.config.editionsEnvVar);\n\t\teditionInfo = {};\n\t\tfor(var editionIndex=0; editionIndex<editionPaths.length; editionIndex++) {\n\t\t\tvar editionPath = editionPaths[editionIndex];\n\t\t\t// Enumerate the folders\n\t\t\tvar entries = fs.readdirSync(editionPath);\n\t\t\tfor(var entryIndex=0; entryIndex<entries.length; entryIndex++) {\n\t\t\t\tvar entry = entries[entryIndex];\n\t\t\t\t// Check if directories have a valid tiddlywiki.info\n\t\t\t\tif(!editionInfo[entry] && $tw.utils.isDirectory(path.resolve(editionPath,entry))) {\n\t\t\t\t\tvar info;\n\t\t\t\t\ttry {\n\t\t\t\t\t\tinfo = JSON.parse(fs.readFileSync(path.resolve(editionPath,entry,\"tiddlywiki.info\"),\"utf8\"));\n\t\t\t\t\t} catch(ex) {\n\t\t\t\t\t}\n\t\t\t\t\tif(info) {\n\t\t\t\t\t\teditionInfo[entry] = info;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\treturn editionInfo;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "utils-node"
},
"$:/core/modules/utils/fakedom.js": {
"title": "$:/core/modules/utils/fakedom.js",
"text": "/*\\\ntitle: $:/core/modules/utils/fakedom.js\ntype: application/javascript\nmodule-type: global\n\nA barebones implementation of DOM interfaces needed by the rendering mechanism.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n// Sequence number used to enable us to track objects for testing\nvar sequenceNumber = null;\n\nvar bumpSequenceNumber = function(object) {\n\tif(sequenceNumber !== null) {\n\t\tobject.sequenceNumber = sequenceNumber++;\n\t}\n};\n\nvar TW_TextNode = function(text) {\n\tbumpSequenceNumber(this);\n\tthis.textContent = text + \"\";\n};\n\nObject.defineProperty(TW_TextNode.prototype, \"nodeType\", {\n\tget: function() {\n\t\treturn 3;\n\t}\n});\n\nObject.defineProperty(TW_TextNode.prototype, \"formattedTextContent\", {\n\tget: function() {\n\t\treturn this.textContent.replace(/(\\r?\\n)/g,\"\");\n\t}\n});\n\nvar TW_Element = function(tag,namespace) {\n\tbumpSequenceNumber(this);\n\tthis.isTiddlyWikiFakeDom = true;\n\tthis.tag = tag;\n\tthis.attributes = {};\n\tthis.isRaw = false;\n\tthis.children = [];\n\tthis._style = {};\n\tthis.namespaceURI = namespace || \"http://www.w3.org/1999/xhtml\";\n};\n\nObject.defineProperty(TW_Element.prototype, \"style\", {\n\tget: function() {\n\t\treturn this._style;\n\t},\n\tset: function(str) {\n\t\tvar self = this;\n\t\tstr = str || \"\";\n\t\t$tw.utils.each(str.split(\";\"),function(declaration) {\n\t\t\tvar parts = declaration.split(\":\"),\n\t\t\t\tname = $tw.utils.trim(parts[0]),\n\t\t\t\tvalue = $tw.utils.trim(parts[1]);\n\t\t\tif(name && value) {\n\t\t\t\tself._style[$tw.utils.convertStyleNameToPropertyName(name)] = value;\n\t\t\t}\n\t\t});\n\t}\n});\n\nObject.defineProperty(TW_Element.prototype, \"nodeType\", {\n\tget: function() {\n\t\treturn 1;\n\t}\n});\n\nTW_Element.prototype.getAttribute = function(name) {\n\tif(this.isRaw) {\n\t\tthrow \"Cannot getAttribute on a raw TW_Element\";\n\t}\n\treturn this.attributes[name];\n};\n\nTW_Element.prototype.setAttribute = function(name,value) {\n\tif(this.isRaw) {\n\t\tthrow \"Cannot setAttribute on a raw TW_Element\";\n\t}\n\tthis.attributes[name] = value + \"\";\n};\n\nTW_Element.prototype.setAttributeNS = function(namespace,name,value) {\n\tthis.setAttribute(name,value);\n};\n\nTW_Element.prototype.removeAttribute = function(name) {\n\tif(this.isRaw) {\n\t\tthrow \"Cannot removeAttribute on a raw TW_Element\";\n\t}\n\tif($tw.utils.hop(this.attributes,name)) {\n\t\tdelete this.attributes[name];\n\t}\n};\n\nTW_Element.prototype.appendChild = function(node) {\n\tthis.children.push(node);\n\tnode.parentNode = this;\n};\n\nTW_Element.prototype.insertBefore = function(node,nextSibling) {\n\tif(nextSibling) {\n\t\tvar p = this.children.indexOf(nextSibling);\n\t\tif(p !== -1) {\n\t\t\tthis.children.splice(p,0,node);\n\t\t\tnode.parentNode = this;\n\t\t} else {\n\t\t\tthis.appendChild(node);\n\t\t}\n\t} else {\n\t\tthis.appendChild(node);\n\t}\n};\n\nTW_Element.prototype.removeChild = function(node) {\n\tvar p = this.children.indexOf(node);\n\tif(p !== -1) {\n\t\tthis.children.splice(p,1);\n\t}\n};\n\nTW_Element.prototype.hasChildNodes = function() {\n\treturn !!this.children.length;\n};\n\nObject.defineProperty(TW_Element.prototype, \"childNodes\", {\n\tget: function() {\n\t\treturn this.children;\n\t}\n});\n\nObject.defineProperty(TW_Element.prototype, \"firstChild\", {\n\tget: function() {\n\t\treturn this.children[0];\n\t}\n});\n\nTW_Element.prototype.addEventListener = function(type,listener,useCapture) {\n\t// Do nothing\n};\n\nObject.defineProperty(TW_Element.prototype, \"tagName\", {\n\tget: function() {\n\t\treturn this.tag || \"\";\n\t}\n});\n\nObject.defineProperty(TW_Element.prototype, \"className\", {\n\tget: function() {\n\t\treturn this.attributes[\"class\"] || \"\";\n\t},\n\tset: function(value) {\n\t\tthis.attributes[\"class\"] = value + \"\";\n\t}\n});\n\nObject.defineProperty(TW_Element.prototype, \"value\", {\n\tget: function() {\n\t\treturn this.attributes.value || \"\";\n\t},\n\tset: function(value) {\n\t\tthis.attributes.value = value + \"\";\n\t}\n});\n\nObject.defineProperty(TW_Element.prototype, \"outerHTML\", {\n\tget: function() {\n\t\tvar output = [],attr,a,v;\n\t\toutput.push(\"<\",this.tag);\n\t\tif(this.attributes) {\n\t\t\tattr = [];\n\t\t\tfor(a in this.attributes) {\n\t\t\t\tattr.push(a);\n\t\t\t}\n\t\t\tattr.sort();\n\t\t\tfor(a=0; a<attr.length; a++) {\n\t\t\t\tv = this.attributes[attr[a]];\n\t\t\t\tif(v !== undefined) {\n\t\t\t\t\toutput.push(\" \",attr[a],\"=\\\"\",$tw.utils.htmlEncode(v),\"\\\"\");\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif(this._style) {\n\t\t\tvar style = [];\n\t\t\tfor(var s in this._style) {\n\t\t\t\tstyle.push($tw.utils.convertPropertyNameToStyleName(s) + \":\" + this._style[s] + \";\");\n\t\t\t}\n\t\t\tif(style.length > 0) {\n\t\t\t\toutput.push(\" style=\\\"\",style.join(\"\"),\"\\\"\");\n\t\t\t}\n\t\t}\n\t\toutput.push(\">\");\n\t\tif($tw.config.htmlVoidElements.indexOf(this.tag) === -1) {\n\t\t\toutput.push(this.innerHTML);\n\t\t\toutput.push(\"</\",this.tag,\">\");\n\t\t}\n\t\treturn output.join(\"\");\n\t}\n});\n\nObject.defineProperty(TW_Element.prototype, \"innerHTML\", {\n\tget: function() {\n\t\tif(this.isRaw) {\n\t\t\treturn this.rawHTML;\n\t\t} else {\n\t\t\tvar b = [];\n\t\t\t$tw.utils.each(this.children,function(node) {\n\t\t\t\tif(node instanceof TW_Element) {\n\t\t\t\t\tb.push(node.outerHTML);\n\t\t\t\t} else if(node instanceof TW_TextNode) {\n\t\t\t\t\tb.push($tw.utils.htmlEncode(node.textContent));\n\t\t\t\t}\n\t\t\t});\n\t\t\treturn b.join(\"\");\n\t\t}\n\t},\n\tset: function(value) {\n\t\tthis.isRaw = true;\n\t\tthis.rawHTML = value;\n\t\tthis.rawTextContent = null;\n\t}\n});\n\nObject.defineProperty(TW_Element.prototype, \"textInnerHTML\", {\n\tset: function(value) {\n\t\tif(this.isRaw) {\n\t\t\tthis.rawTextContent = value;\n\t\t} else {\n\t\t\tthrow \"Cannot set textInnerHTML of a non-raw TW_Element\";\n\t\t}\n\t}\n});\n\nObject.defineProperty(TW_Element.prototype, \"textContent\", {\n\tget: function() {\n\t\tif(this.isRaw) {\n\t\t\tif(this.rawTextContent === null) {\n\t\t\t\treturn \"\";\n\t\t\t} else {\n\t\t\t\treturn this.rawTextContent;\n\t\t\t}\n\t\t} else {\n\t\t\tvar b = [];\n\t\t\t$tw.utils.each(this.children,function(node) {\n\t\t\t\tb.push(node.textContent);\n\t\t\t});\n\t\t\treturn b.join(\"\");\n\t\t}\n\t},\n\tset: function(value) {\n\t\tthis.children = [new TW_TextNode(value)];\n\t}\n});\n\nObject.defineProperty(TW_Element.prototype, \"formattedTextContent\", {\n\tget: function() {\n\t\tif(this.isRaw) {\n\t\t\treturn \"\";\n\t\t} else {\n\t\t\tvar b = [],\n\t\t\t\tisBlock = $tw.config.htmlBlockElements.indexOf(this.tag) !== -1;\n\t\t\tif(isBlock) {\n\t\t\t\tb.push(\"\\n\");\n\t\t\t}\n\t\t\tif(this.tag === \"li\") {\n\t\t\t\tb.push(\"* \");\n\t\t\t}\n\t\t\t$tw.utils.each(this.children,function(node) {\n\t\t\t\tb.push(node.formattedTextContent);\n\t\t\t});\n\t\t\tif(isBlock) {\n\t\t\t\tb.push(\"\\n\");\n\t\t\t}\n\t\t\treturn b.join(\"\");\n\t\t}\n\t}\n});\n\nvar document = {\n\tsetSequenceNumber: function(value) {\n\t\tsequenceNumber = value;\n\t},\n\tcreateElementNS: function(namespace,tag) {\n\t\treturn new TW_Element(tag,namespace);\n\t},\n\tcreateElement: function(tag) {\n\t\treturn new TW_Element(tag);\n\t},\n\tcreateTextNode: function(text) {\n\t\treturn new TW_TextNode(text);\n\t},\n\tcompatMode: \"CSS1Compat\", // For KaTeX to know that we're not a browser in quirks mode\n\tisTiddlyWikiFakeDom: true\n};\n\nexports.fakeDocument = document;\n\n})();\n",
"type": "application/javascript",
"module-type": "global"
},
"$:/core/modules/utils/filesystem.js": {
"title": "$:/core/modules/utils/filesystem.js",
"text": "/*\\\ntitle: $:/core/modules/utils/filesystem.js\ntype: application/javascript\nmodule-type: utils-node\n\nFile system utilities\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar fs = require(\"fs\"),\n\tpath = require(\"path\");\n\n/*\nRecursively (and synchronously) copy a directory and all its content\n*/\nexports.copyDirectory = function(srcPath,dstPath) {\n\t// Remove any trailing path separators\n\tsrcPath = $tw.utils.removeTrailingSeparator(srcPath);\n\tdstPath = $tw.utils.removeTrailingSeparator(dstPath);\n\t// Create the destination directory\n\tvar err = $tw.utils.createDirectory(dstPath);\n\tif(err) {\n\t\treturn err;\n\t}\n\t// Function to copy a folder full of files\n\tvar copy = function(srcPath,dstPath) {\n\t\tvar srcStats = fs.lstatSync(srcPath),\n\t\t\tdstExists = fs.existsSync(dstPath);\n\t\tif(srcStats.isFile()) {\n\t\t\t$tw.utils.copyFile(srcPath,dstPath);\n\t\t} else if(srcStats.isDirectory()) {\n\t\t\tvar items = fs.readdirSync(srcPath);\n\t\t\tfor(var t=0; t<items.length; t++) {\n\t\t\t\tvar item = items[t],\n\t\t\t\t\terr = copy(srcPath + path.sep + item,dstPath + path.sep + item);\n\t\t\t\tif(err) {\n\t\t\t\t\treturn err;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n\tcopy(srcPath,dstPath);\n\treturn null;\n};\n\n/*\nCopy a file\n*/\nvar FILE_BUFFER_LENGTH = 64 * 1024,\n\tfileBuffer;\n\nexports.copyFile = function(srcPath,dstPath) {\n\t// Create buffer if required\n\tif(!fileBuffer) {\n\t\tfileBuffer = Buffer.alloc(FILE_BUFFER_LENGTH);\n\t}\n\t// Create any directories in the destination\n\t$tw.utils.createDirectory(path.dirname(dstPath));\n\t// Copy the file\n\tvar srcFile = fs.openSync(srcPath,\"r\"),\n\t\tdstFile = fs.openSync(dstPath,\"w\"),\n\t\tbytesRead = 1,\n\t\tpos = 0;\n\twhile (bytesRead > 0) {\n\t\tbytesRead = fs.readSync(srcFile,fileBuffer,0,FILE_BUFFER_LENGTH,pos);\n\t\tfs.writeSync(dstFile,fileBuffer,0,bytesRead);\n\t\tpos += bytesRead;\n\t}\n\tfs.closeSync(srcFile);\n\tfs.closeSync(dstFile);\n\treturn null;\n};\n\n/*\nRemove trailing path separator\n*/\nexports.removeTrailingSeparator = function(dirPath) {\n\tvar len = dirPath.length;\n\tif(dirPath.charAt(len-1) === path.sep) {\n\t\tdirPath = dirPath.substr(0,len-1);\n\t}\n\treturn dirPath;\n};\n\n/*\nRecursively create a directory\n*/\nexports.createDirectory = function(dirPath) {\n\tif(dirPath.substr(dirPath.length-1,1) !== path.sep) {\n\t\tdirPath = dirPath + path.sep;\n\t}\n\tvar pos = 1;\n\tpos = dirPath.indexOf(path.sep,pos);\n\twhile(pos !== -1) {\n\t\tvar subDirPath = dirPath.substr(0,pos);\n\t\tif(!$tw.utils.isDirectory(subDirPath)) {\n\t\t\ttry {\n\t\t\t\tfs.mkdirSync(subDirPath);\n\t\t\t} catch(e) {\n\t\t\t\treturn \"Error creating directory '\" + subDirPath + \"'\";\n\t\t\t}\n\t\t}\n\t\tpos = dirPath.indexOf(path.sep,pos + 1);\n\t}\n\treturn null;\n};\n\n/*\nRecursively create directories needed to contain a specified file\n*/\nexports.createFileDirectories = function(filePath) {\n\treturn $tw.utils.createDirectory(path.dirname(filePath));\n};\n\n/*\nRecursively delete a directory\n*/\nexports.deleteDirectory = function(dirPath) {\n\tif(fs.existsSync(dirPath)) {\n\t\tvar entries = fs.readdirSync(dirPath);\n\t\tfor(var entryIndex=0; entryIndex<entries.length; entryIndex++) {\n\t\t\tvar currPath = dirPath + path.sep + entries[entryIndex];\n\t\t\tif(fs.lstatSync(currPath).isDirectory()) {\n\t\t\t\t$tw.utils.deleteDirectory(currPath);\n\t\t\t} else {\n\t\t\t\tfs.unlinkSync(currPath);\n\t\t\t}\n\t\t}\n\tfs.rmdirSync(dirPath);\n\t}\n\treturn null;\n};\n\n/*\nCheck if a path identifies a directory\n*/\nexports.isDirectory = function(dirPath) {\n\treturn fs.existsSync(dirPath) && fs.statSync(dirPath).isDirectory();\n};\n\n/*\nCheck if a path identifies a directory that is empty\n*/\nexports.isDirectoryEmpty = function(dirPath) {\n\tif(!$tw.utils.isDirectory(dirPath)) {\n\t\treturn false;\n\t}\n\tvar files = fs.readdirSync(dirPath),\n\t\tempty = true;\n\t$tw.utils.each(files,function(file,index) {\n\t\tif(file.charAt(0) !== \".\") {\n\t\t\tempty = false;\n\t\t}\n\t});\n\treturn empty;\n};\n\n/*\nRecursively delete a tree of empty directories\n*/\nexports.deleteEmptyDirs = function(dirpath,callback) {\n\tvar self = this;\n\tfs.readdir(dirpath,function(err,files) {\n\t\tif(err) {\n\t\t\treturn callback(err);\n\t\t}\n\t\tif(files.length > 0) {\n\t\t\treturn callback(null);\n\t\t}\n\t\tfs.rmdir(dirpath,function(err) {\n\t\t\tif(err) {\n\t\t\t\treturn callback(err);\n\t\t\t}\n\t\t\tself.deleteEmptyDirs(path.dirname(dirpath),callback);\n\t\t});\n\t});\n};\n\n/*\nCreate a fileInfo object for saving a tiddler:\n\tfilepath: the absolute path to the file containing the tiddler\n\ttype: the type of the tiddler file (NOT the type of the tiddler)\n\thasMetaFile: true if the file also has a companion .meta file\nOptions include:\n\tdirectory: absolute path of root directory to which we are saving\n\tpathFilters: optional array of filters to be used to generate the base path\n\twiki: optional wiki for evaluating the pathFilters\n*/\nexports.generateTiddlerFileInfo = function(tiddler,options) {\n\tvar fileInfo = {};\n\t// Check if the tiddler has any unsafe fields that can't be expressed in a .tid or .meta file: containing control characters, or leading/trailing whitespace\n\tvar hasUnsafeFields = false;\n\t$tw.utils.each(tiddler.getFieldStrings(),function(value,fieldName) {\n\t\tif(fieldName !== \"text\") {\n\t\t\thasUnsafeFields = hasUnsafeFields || /[\\x00-\\x1F]/mg.test(value);\n\t\t\thasUnsafeFields = hasUnsafeFields || ($tw.utils.trim(value) !== value);\n\t\t}\n\t});\n\t// Check for field values \n\tif(hasUnsafeFields) {\n\t\t// Save as a JSON file\n\t\tfileInfo.type = \"application/json\";\n\t\tfileInfo.hasMetaFile = false;\n\t} else {\n\t\t// Save as a .tid or a text/binary file plus a .meta file\n\t\tvar tiddlerType = tiddler.fields.type || \"text/vnd.tiddlywiki\";\n\t\tif(tiddlerType === \"text/vnd.tiddlywiki\") {\n\t\t\t// Save as a .tid file\n\t\t\tfileInfo.type = \"application/x-tiddler\";\n\t\t\tfileInfo.hasMetaFile = false;\n\t\t} else {\n\t\t\t// Save as a text/binary file and a .meta file\n\t\t\tfileInfo.type = tiddlerType;\n\t\t\tfileInfo.hasMetaFile = true;\n\t\t}\n\t}\n\t// Take the file extension from the tiddler content type\n\tvar contentTypeInfo = $tw.config.contentTypeInfo[fileInfo.type] || {extension: \"\"};\n\t// Generate the filepath\n\tfileInfo.filepath = $tw.utils.generateTiddlerFilepath(tiddler.fields.title,{\n\t\textension: contentTypeInfo.extension,\n\t\tdirectory: options.directory,\n\t\tpathFilters: options.pathFilters,\n\t\twiki: options.wiki\n\t});\n\treturn fileInfo;\n};\n\n/*\nGenerate the filepath for saving a tiddler\nOptions include:\n\textension: file extension to be added the finished filepath\n\tdirectory: absolute path of root directory to which we are saving\n\tpathFilters: optional array of filters to be used to generate the base path\n\twiki: optional wiki for evaluating the pathFilters\n*/\nexports.generateTiddlerFilepath = function(title,options) {\n\tvar self = this,\n\t\tdirectory = options.directory || \"\",\n\t\textension = options.extension || \"\",\n\t\tfilepath;\n\t// Check if any of the pathFilters applies\n\tif(options.pathFilters && options.wiki) {\n\t\t$tw.utils.each(options.pathFilters,function(filter) {\n\t\t\tif(!filepath) {\n\t\t\t\tvar source = options.wiki.makeTiddlerIterator([title]),\n\t\t\t\t\tresult = options.wiki.filterTiddlers(filter,null,source);\n\t\t\t\tif(result.length > 0) {\n\t\t\t\t\tfilepath = result[0];\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t}\n\t// If not, generate a base pathname\n\tif(!filepath) {\n\t\tfilepath = title;\n\t\t// If the filepath already ends in the extension then remove it\n\t\tif(filepath.substring(filepath.length - extension.length) === extension) {\n\t\t\tfilepath = filepath.substring(0,filepath.length - extension.length);\n\t\t}\n\t\t// Remove any forward or backward slashes so we don't create directories\n\t\tfilepath = filepath.replace(/\\/|\\\\/g,\"_\");\n\t}\n\t// Don't let the filename start with a dot because such files are invisible on *nix\n\tfilepath = filepath.replace(/^\\./g,\"_\");\n\t// Remove any characters that can't be used in cross-platform filenames\n\tfilepath = $tw.utils.transliterate(filepath.replace(/<|>|\\:|\\\"|\\||\\?|\\*|\\^/g,\"_\"));\n\t// Truncate the filename if it is too long\n\tif(filepath.length > 200) {\n\t\tfilepath = filepath.substr(0,200);\n\t}\n\t// If the resulting filename is blank (eg because the title is just punctuation characters)\n\tif(!filepath) {\n\t\t// ...then just use the character codes of the title\n\t\tfilepath = \"\";\t\n\t\t$tw.utils.each(title.split(\"\"),function(char) {\n\t\t\tif(filepath) {\n\t\t\t\tfilepath += \"-\";\n\t\t\t}\n\t\t\tfilepath += char.charCodeAt(0).toString();\n\t\t});\n\t}\n\t// Add a uniquifier if the file already exists\n\tvar fullPath,\n\t\tcount = 0;\n\tdo {\n\t\tfullPath = path.resolve(directory,filepath + (count ? \"_\" + count : \"\") + extension);\n\t\tcount++;\n\t} while(fs.existsSync(fullPath));\n\t// Return the full path to the file\n\treturn fullPath;\n};\n\n/*\nSave a tiddler to a file described by the fileInfo:\n\tfilepath: the absolute path to the file containing the tiddler\n\ttype: the type of the tiddler file (NOT the type of the tiddler)\n\thasMetaFile: true if the file also has a companion .meta file\n*/\nexports.saveTiddlerToFile = function(tiddler,fileInfo,callback) {\n\t$tw.utils.createDirectory(path.dirname(fileInfo.filepath));\n\tif(fileInfo.hasMetaFile) {\n\t\t// Save the tiddler as a separate body and meta file\n\t\tvar typeInfo = $tw.config.contentTypeInfo[tiddler.fields.type || \"text/plain\"] || {encoding: \"utf8\"};\n\t\tfs.writeFile(fileInfo.filepath,tiddler.fields.text,typeInfo.encoding,function(err) {\n\t\t\tif(err) {\n\t\t\t\treturn callback(err);\n\t\t\t}\n\t\t\tfs.writeFile(fileInfo.filepath + \".meta\",tiddler.getFieldStringBlock({exclude: [\"text\",\"bag\"]}),\"utf8\",callback);\n\t\t});\n\t} else {\n\t\t// Save the tiddler as a self contained templated file\n\t\tif(fileInfo.type === \"application/x-tiddler\") {\n\t\t\tfs.writeFile(fileInfo.filepath,tiddler.getFieldStringBlock({exclude: [\"text\",\"bag\"]}) + (!!tiddler.fields.text ? \"\\n\\n\" + tiddler.fields.text : \"\"),\"utf8\",callback);\n\t\t} else {\n\t\t\tfs.writeFile(fileInfo.filepath,JSON.stringify([tiddler.getFieldStrings({exclude: [\"bag\"]})],null,$tw.config.preferences.jsonSpaces),\"utf8\",callback);\n\t\t}\n\t}\n};\n\n/*\nSave a tiddler to a file described by the fileInfo:\n\tfilepath: the absolute path to the file containing the tiddler\n\ttype: the type of the tiddler file (NOT the type of the tiddler)\n\thasMetaFile: true if the file also has a companion .meta file\n*/\nexports.saveTiddlerToFileSync = function(tiddler,fileInfo) {\n\t$tw.utils.createDirectory(path.dirname(fileInfo.filepath));\n\tif(fileInfo.hasMetaFile) {\n\t\t// Save the tiddler as a separate body and meta file\n\t\tvar typeInfo = $tw.config.contentTypeInfo[tiddler.fields.type || \"text/plain\"] || {encoding: \"utf8\"};\n\t\tfs.writeFileSync(fileInfo.filepath,tiddler.fields.text,typeInfo.encoding);\n\t\tfs.writeFileSync(fileInfo.filepath + \".meta\",tiddler.getFieldStringBlock({exclude: [\"text\",\"bag\"]}),\"utf8\");\n\t} else {\n\t\t// Save the tiddler as a self contained templated file\n\t\tif(fileInfo.type === \"application/x-tiddler\") {\n\t\t\tfs.writeFileSync(fileInfo.filepath,tiddler.getFieldStringBlock({exclude: [\"text\",\"bag\"]}) + (!!tiddler.fields.text ? \"\\n\\n\" + tiddler.fields.text : \"\"),\"utf8\");\n\t\t} else {\n\t\t\tfs.writeFileSync(fileInfo.filepath,JSON.stringify([tiddler.getFieldStrings({exclude: [\"bag\"]})],null,$tw.config.preferences.jsonSpaces),\"utf8\");\n\t\t}\n\t}\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "utils-node"
},
"$:/core/modules/utils/logger.js": {
"title": "$:/core/modules/utils/logger.js",
"text": "/*\\\ntitle: $:/core/modules/utils/logger.js\ntype: application/javascript\nmodule-type: utils\n\nA basic logging implementation\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar ALERT_TAG = \"$:/tags/Alert\";\n\n/*\nMake a new logger\n*/\nfunction Logger(componentName,options) {\n\toptions = options || {};\n\tthis.componentName = componentName || \"\";\n\tthis.colour = options.colour || \"white\";\n\tthis.enable = \"enable\" in options ? options.enable : true;\n}\n\n/*\nLog a message\n*/\nLogger.prototype.log = function(/* args */) {\n\tif(this.enable && console !== undefined && console.log !== undefined) {\n\t\treturn Function.apply.call(console.log, console, [$tw.utils.terminalColour(this.colour),this.componentName + \":\"].concat(Array.prototype.slice.call(arguments,0)).concat($tw.utils.terminalColour()));\n\t}\n};\n\n/*\nLog a structure as a table\n*/\nLogger.prototype.table = function(value) {\n\t(console.table || console.log)(value);\n};\n\n/*\nAlert a message\n*/\nLogger.prototype.alert = function(/* args */) {\n\tif(this.enable) {\n\t\t// Prepare the text of the alert\n\t\tvar text = Array.prototype.join.call(arguments,\" \");\n\t\t// Create alert tiddlers in the browser\n\t\tif($tw.browser) {\n\t\t\t// Check if there is an existing alert with the same text and the same component\n\t\t\tvar existingAlerts = $tw.wiki.getTiddlersWithTag(ALERT_TAG),\n\t\t\t\talertFields,\n\t\t\t\texistingCount,\n\t\t\t\tself = this;\n\t\t\t$tw.utils.each(existingAlerts,function(title) {\n\t\t\t\tvar tiddler = $tw.wiki.getTiddler(title);\n\t\t\t\tif(tiddler.fields.text === text && tiddler.fields.component === self.componentName && tiddler.fields.modified && (!alertFields || tiddler.fields.modified < alertFields.modified)) {\n\t\t\t\t\t\talertFields = $tw.utils.extend({},tiddler.fields);\n\t\t\t\t}\n\t\t\t});\n\t\t\tif(alertFields) {\n\t\t\t\texistingCount = alertFields.count || 1;\n\t\t\t} else {\n\t\t\t\talertFields = {\n\t\t\t\t\ttitle: $tw.wiki.generateNewTitle(\"$:/temp/alerts/alert\",{prefix: \"\"}),\n\t\t\t\t\ttext: text,\n\t\t\t\t\ttags: [ALERT_TAG],\n\t\t\t\t\tcomponent: this.componentName\n\t\t\t\t};\n\t\t\t\texistingCount = 0;\n\t\t\t}\n\t\t\talertFields.modified = new Date();\n\t\t\tif(++existingCount > 1) {\n\t\t\t\talertFields.count = existingCount;\n\t\t\t} else {\n\t\t\t\talertFields.count = undefined;\n\t\t\t}\n\t\t\t$tw.wiki.addTiddler(new $tw.Tiddler(alertFields));\n\t\t\t// Log the alert as well\n\t\t\tthis.log.apply(this,Array.prototype.slice.call(arguments,0));\n\t\t} else {\n\t\t\t// Print an orange message to the console if not in the browser\n\t\t\tconsole.error(\"\\x1b[1;33m\" + text + \"\\x1b[0m\");\n\t\t}\t\t\n\t}\n};\n\nexports.Logger = Logger;\n\n})();\n",
"type": "application/javascript",
"module-type": "utils"
},
"$:/core/modules/utils/parsetree.js": {
"title": "$:/core/modules/utils/parsetree.js",
"text": "/*\\\ntitle: $:/core/modules/utils/parsetree.js\ntype: application/javascript\nmodule-type: utils\n\nParse tree utility functions.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.addAttributeToParseTreeNode = function(node,name,value) {\n\tnode.attributes = node.attributes || {};\n\tnode.attributes[name] = {type: \"string\", value: value};\n};\n\nexports.getAttributeValueFromParseTreeNode = function(node,name,defaultValue) {\n\tif(node.attributes && node.attributes[name] && node.attributes[name].value !== undefined) {\n\t\treturn node.attributes[name].value;\n\t}\n\treturn defaultValue;\n};\n\nexports.addClassToParseTreeNode = function(node,classString) {\n\tvar classes = [];\n\tnode.attributes = node.attributes || {};\n\tnode.attributes[\"class\"] = node.attributes[\"class\"] || {type: \"string\", value: \"\"};\n\tif(node.attributes[\"class\"].type === \"string\") {\n\t\tif(node.attributes[\"class\"].value !== \"\") {\n\t\t\tclasses = node.attributes[\"class\"].value.split(\" \");\n\t\t}\n\t\tif(classString !== \"\") {\n\t\t\t$tw.utils.pushTop(classes,classString.split(\" \"));\n\t\t}\n\t\tnode.attributes[\"class\"].value = classes.join(\" \");\n\t}\n};\n\nexports.addStyleToParseTreeNode = function(node,name,value) {\n\t\tnode.attributes = node.attributes || {};\n\t\tnode.attributes.style = node.attributes.style || {type: \"string\", value: \"\"};\n\t\tif(node.attributes.style.type === \"string\") {\n\t\t\tnode.attributes.style.value += name + \":\" + value + \";\";\n\t\t}\n};\n\nexports.findParseTreeNode = function(nodeArray,search) {\n\tfor(var t=0; t<nodeArray.length; t++) {\n\t\tif(nodeArray[t].type === search.type && nodeArray[t].tag === search.tag) {\n\t\t\treturn nodeArray[t];\n\t\t}\n\t}\n\treturn undefined;\n};\n\n/*\nHelper to get the text of a parse tree node or array of nodes\n*/\nexports.getParseTreeText = function getParseTreeText(tree) {\n\tvar output = [];\n\tif($tw.utils.isArray(tree)) {\n\t\t$tw.utils.each(tree,function(node) {\n\t\t\toutput.push(getParseTreeText(node));\n\t\t});\n\t} else {\n\t\tif(tree.type === \"text\") {\n\t\t\toutput.push(tree.text);\n\t\t}\n\t\tif(tree.children) {\n\t\t\treturn getParseTreeText(tree.children);\n\t\t}\n\t}\n\treturn output.join(\"\");\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "utils"
},
"$:/core/modules/utils/performance.js": {
"title": "$:/core/modules/utils/performance.js",
"text": "/*\\\ntitle: $:/core/modules/utils/performance.js\ntype: application/javascript\nmodule-type: global\n\nPerformance measurement.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nfunction Performance(enabled) {\n\tthis.enabled = !!enabled;\n\tthis.measures = {}; // Hashmap by measurement name of {time:, invocations:}\n\tthis.logger = new $tw.utils.Logger(\"performance\");\n\tthis.showGreeting();\n}\n\nPerformance.prototype.showGreeting = function() {\n\tif($tw.browser) {\n\t\tthis.logger.log(\"Execute $tw.perf.log(); to see filter execution timings\");\t\t\n\t}\n};\n\n/*\nWrap performance reporting around a top level function\n*/\nPerformance.prototype.report = function(name,fn) {\n\tvar self = this;\n\tif(this.enabled) {\n\t\treturn function() {\n\t\t\tvar startTime = $tw.utils.timer(),\n\t\t\t\tresult = fn.apply(this,arguments);\n\t\t\tself.logger.log(name + \": \" + $tw.utils.timer(startTime).toFixed(2) + \"ms\");\n\t\t\treturn result;\n\t\t};\n\t} else {\n\t\treturn fn;\n\t}\n};\n\nPerformance.prototype.log = function() {\n\tvar self = this,\n\t\ttotalTime = 0,\n\t\torderedMeasures = Object.keys(this.measures).sort(function(a,b) {\n\t\t\tif(self.measures[a].time > self.measures[b].time) {\n\t\t\t\treturn -1;\n\t\t\t} else if (self.measures[a].time < self.measures[b].time) {\n\t\t\t\treturn + 1;\n\t\t\t} else {\n\t\t\t\treturn 0;\n\t\t\t}\n\t\t});\n\t$tw.utils.each(orderedMeasures,function(name) {\n\t\ttotalTime += self.measures[name].time;\n\t});\n\tvar results = []\n\t$tw.utils.each(orderedMeasures,function(name) {\n\t\tvar measure = self.measures[name];\n\t\tresults.push({name: name,invocations: measure.invocations, avgTime: measure.time / measure.invocations, totalTime: measure.time, percentTime: (measure.time / totalTime) * 100})\n\t});\n\tself.logger.table(results);\n};\n\n/*\nWrap performance measurements around a subfunction\n*/\nPerformance.prototype.measure = function(name,fn) {\n\tvar self = this;\n\tif(this.enabled) {\n\t\treturn function() {\n\t\t\tvar startTime = $tw.utils.timer(),\n\t\t\t\tresult = fn.apply(this,arguments);\n\t\t\tif(!(name in self.measures)) {\n\t\t\t\tself.measures[name] = {time: 0, invocations: 0};\n\t\t\t}\n\t\t\tself.measures[name].time += $tw.utils.timer(startTime);\n\t\t\tself.measures[name].invocations++;\n\t\t\treturn result;\n\t\t};\n\t} else {\n\t\treturn fn;\n\t}\n};\n\nexports.Performance = Performance;\n\n})();\n",
"type": "application/javascript",
"module-type": "global"
},
"$:/core/modules/utils/pluginmaker.js": {
"title": "$:/core/modules/utils/pluginmaker.js",
"text": "/*\\\ntitle: $:/core/modules/utils/pluginmaker.js\ntype: application/javascript\nmodule-type: utils\n\nA quick and dirty way to pack up plugins within the browser.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nRepack a plugin, and then delete any non-shadow payload tiddlers\n*/\nexports.repackPlugin = function(title,additionalTiddlers,excludeTiddlers) {\n\tadditionalTiddlers = additionalTiddlers || [];\n\texcludeTiddlers = excludeTiddlers || [];\n\t// Get the plugin tiddler\n\tvar pluginTiddler = $tw.wiki.getTiddler(title);\n\tif(!pluginTiddler) {\n\t\tthrow \"No such tiddler as \" + title;\n\t}\n\t// Extract the JSON\n\tvar jsonPluginTiddler;\n\ttry {\n\t\tjsonPluginTiddler = JSON.parse(pluginTiddler.fields.text);\n\t} catch(e) {\n\t\tthrow \"Cannot parse plugin tiddler \" + title + \"\\n\" + $tw.language.getString(\"Error/Caption\") + \": \" + e;\n\t}\n\t// Get the list of tiddlers\n\tvar tiddlers = Object.keys(jsonPluginTiddler.tiddlers);\n\t// Add the additional tiddlers\n\t$tw.utils.pushTop(tiddlers,additionalTiddlers);\n\t// Remove any excluded tiddlers\n\tfor(var t=tiddlers.length-1; t>=0; t--) {\n\t\tif(excludeTiddlers.indexOf(tiddlers[t]) !== -1) {\n\t\t\ttiddlers.splice(t,1);\n\t\t}\n\t}\n\t// Pack up the tiddlers into a block of JSON\n\tvar plugins = {};\n\t$tw.utils.each(tiddlers,function(title) {\n\t\tvar tiddler = $tw.wiki.getTiddler(title),\n\t\t\tfields = {};\n\t\t$tw.utils.each(tiddler.fields,function (value,name) {\n\t\t\tfields[name] = tiddler.getFieldString(name);\n\t\t});\n\t\tplugins[title] = fields;\n\t});\n\t// Retrieve and bump the version number\n\tvar pluginVersion = $tw.utils.parseVersion(pluginTiddler.getFieldString(\"version\") || \"0.0.0\") || {\n\t\t\tmajor: \"0\",\n\t\t\tminor: \"0\",\n\t\t\tpatch: \"0\"\n\t\t};\n\tpluginVersion.patch++;\n\tvar version = pluginVersion.major + \".\" + pluginVersion.minor + \".\" + pluginVersion.patch;\n\tif(pluginVersion.prerelease) {\n\t\tversion += \"-\" + pluginVersion.prerelease;\n\t}\n\tif(pluginVersion.build) {\n\t\tversion += \"+\" + pluginVersion.build;\n\t}\n\t// Save the tiddler\n\t$tw.wiki.addTiddler(new $tw.Tiddler(pluginTiddler,{text: JSON.stringify({tiddlers: plugins},null,4), version: version}));\n\t// Delete any non-shadow constituent tiddlers\n\t$tw.utils.each(tiddlers,function(title) {\n\t\tif($tw.wiki.tiddlerExists(title)) {\n\t\t\t$tw.wiki.deleteTiddler(title);\n\t\t}\n\t});\n\t// Trigger an autosave\n\t$tw.rootWidget.dispatchEvent({type: \"tm-auto-save-wiki\"});\n\t// Return a heartwarming confirmation\n\treturn \"Plugin \" + title + \" successfully saved\";\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "utils"
},
"$:/core/modules/utils/transliterate.js": {
"title": "$:/core/modules/utils/transliterate.js",
"text": "/*\\\ntitle: $:/core/modules/utils/transliterate.js\ntype: application/javascript\nmodule-type: utils\n\nTransliteration static utility functions.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nTransliterate string to ASCII\n\n(Some pairs taken from http://semplicewebsites.com/removing-accents-javascript)\n*/\nexports.transliterationPairs = {\n\t\"Á\":\"A\",\n\t\"Ă\":\"A\",\n\t\"Ắ\":\"A\",\n\t\"Ặ\":\"A\",\n\t\"Ằ\":\"A\",\n\t\"Ẳ\":\"A\",\n\t\"Ẵ\":\"A\",\n\t\"Ǎ\":\"A\",\n\t\"Â\":\"A\",\n\t\"Ấ\":\"A\",\n\t\"Ậ\":\"A\",\n\t\"Ầ\":\"A\",\n\t\"Ẩ\":\"A\",\n\t\"Ẫ\":\"A\",\n\t\"Ä\":\"A\",\n\t\"Ǟ\":\"A\",\n\t\"Ȧ\":\"A\",\n\t\"Ǡ\":\"A\",\n\t\"Ạ\":\"A\",\n\t\"Ȁ\":\"A\",\n\t\"À\":\"A\",\n\t\"Ả\":\"A\",\n\t\"Ȃ\":\"A\",\n\t\"Ā\":\"A\",\n\t\"Ą\":\"A\",\n\t\"Å\":\"A\",\n\t\"Ǻ\":\"A\",\n\t\"Ḁ\":\"A\",\n\t\"Ⱥ\":\"A\",\n\t\"Ã\":\"A\",\n\t\"Ꜳ\":\"AA\",\n\t\"Æ\":\"AE\",\n\t\"Ǽ\":\"AE\",\n\t\"Ǣ\":\"AE\",\n\t\"Ꜵ\":\"AO\",\n\t\"Ꜷ\":\"AU\",\n\t\"Ꜹ\":\"AV\",\n\t\"Ꜻ\":\"AV\",\n\t\"Ꜽ\":\"AY\",\n\t\"Ḃ\":\"B\",\n\t\"Ḅ\":\"B\",\n\t\"Ɓ\":\"B\",\n\t\"Ḇ\":\"B\",\n\t\"Ƀ\":\"B\",\n\t\"Ƃ\":\"B\",\n\t\"Ć\":\"C\",\n\t\"Č\":\"C\",\n\t\"Ç\":\"C\",\n\t\"Ḉ\":\"C\",\n\t\"Ĉ\":\"C\",\n\t\"Ċ\":\"C\",\n\t\"Ƈ\":\"C\",\n\t\"Ȼ\":\"C\",\n\t\"Ď\":\"D\",\n\t\"Ḑ\":\"D\",\n\t\"Ḓ\":\"D\",\n\t\"Ḋ\":\"D\",\n\t\"Ḍ\":\"D\",\n\t\"Ɗ\":\"D\",\n\t\"Ḏ\":\"D\",\n\t\"Dz\":\"D\",\n\t\"Dž\":\"D\",\n\t\"Đ\":\"D\",\n\t\"Ƌ\":\"D\",\n\t\"DZ\":\"DZ\",\n\t\"DŽ\":\"DZ\",\n\t\"É\":\"E\",\n\t\"Ĕ\":\"E\",\n\t\"Ě\":\"E\",\n\t\"Ȩ\":\"E\",\n\t\"Ḝ\":\"E\",\n\t\"Ê\":\"E\",\n\t\"Ế\":\"E\",\n\t\"Ệ\":\"E\",\n\t\"Ề\":\"E\",\n\t\"Ể\":\"E\",\n\t\"Ễ\":\"E\",\n\t\"Ḙ\":\"E\",\n\t\"Ë\":\"E\",\n\t\"Ė\":\"E\",\n\t\"Ẹ\":\"E\",\n\t\"Ȅ\":\"E\",\n\t\"È\":\"E\",\n\t\"Ẻ\":\"E\",\n\t\"Ȇ\":\"E\",\n\t\"Ē\":\"E\",\n\t\"Ḗ\":\"E\",\n\t\"Ḕ\":\"E\",\n\t\"Ę\":\"E\",\n\t\"Ɇ\":\"E\",\n\t\"Ẽ\":\"E\",\n\t\"Ḛ\":\"E\",\n\t\"Ꝫ\":\"ET\",\n\t\"Ḟ\":\"F\",\n\t\"Ƒ\":\"F\",\n\t\"Ǵ\":\"G\",\n\t\"Ğ\":\"G\",\n\t\"Ǧ\":\"G\",\n\t\"Ģ\":\"G\",\n\t\"Ĝ\":\"G\",\n\t\"Ġ\":\"G\",\n\t\"Ɠ\":\"G\",\n\t\"Ḡ\":\"G\",\n\t\"Ǥ\":\"G\",\n\t\"Ḫ\":\"H\",\n\t\"Ȟ\":\"H\",\n\t\"Ḩ\":\"H\",\n\t\"Ĥ\":\"H\",\n\t\"Ⱨ\":\"H\",\n\t\"Ḧ\":\"H\",\n\t\"Ḣ\":\"H\",\n\t\"Ḥ\":\"H\",\n\t\"Ħ\":\"H\",\n\t\"Í\":\"I\",\n\t\"Ĭ\":\"I\",\n\t\"Ǐ\":\"I\",\n\t\"Î\":\"I\",\n\t\"Ï\":\"I\",\n\t\"Ḯ\":\"I\",\n\t\"İ\":\"I\",\n\t\"Ị\":\"I\",\n\t\"Ȉ\":\"I\",\n\t\"Ì\":\"I\",\n\t\"Ỉ\":\"I\",\n\t\"Ȋ\":\"I\",\n\t\"Ī\":\"I\",\n\t\"Į\":\"I\",\n\t\"Ɨ\":\"I\",\n\t\"Ĩ\":\"I\",\n\t\"Ḭ\":\"I\",\n\t\"Ꝺ\":\"D\",\n\t\"Ꝼ\":\"F\",\n\t\"Ᵹ\":\"G\",\n\t\"Ꞃ\":\"R\",\n\t\"Ꞅ\":\"S\",\n\t\"Ꞇ\":\"T\",\n\t\"Ꝭ\":\"IS\",\n\t\"Ĵ\":\"J\",\n\t\"Ɉ\":\"J\",\n\t\"Ḱ\":\"K\",\n\t\"Ǩ\":\"K\",\n\t\"Ķ\":\"K\",\n\t\"Ⱪ\":\"K\",\n\t\"Ꝃ\":\"K\",\n\t\"Ḳ\":\"K\",\n\t\"Ƙ\":\"K\",\n\t\"Ḵ\":\"K\",\n\t\"Ꝁ\":\"K\",\n\t\"Ꝅ\":\"K\",\n\t\"Ĺ\":\"L\",\n\t\"Ƚ\":\"L\",\n\t\"Ľ\":\"L\",\n\t\"Ļ\":\"L\",\n\t\"Ḽ\":\"L\",\n\t\"Ḷ\":\"L\",\n\t\"Ḹ\":\"L\",\n\t\"Ⱡ\":\"L\",\n\t\"Ꝉ\":\"L\",\n\t\"Ḻ\":\"L\",\n\t\"Ŀ\":\"L\",\n\t\"Ɫ\":\"L\",\n\t\"Lj\":\"L\",\n\t\"Ł\":\"L\",\n\t\"LJ\":\"LJ\",\n\t\"Ḿ\":\"M\",\n\t\"Ṁ\":\"M\",\n\t\"Ṃ\":\"M\",\n\t\"Ɱ\":\"M\",\n\t\"Ń\":\"N\",\n\t\"Ň\":\"N\",\n\t\"Ņ\":\"N\",\n\t\"Ṋ\":\"N\",\n\t\"Ṅ\":\"N\",\n\t\"Ṇ\":\"N\",\n\t\"Ǹ\":\"N\",\n\t\"Ɲ\":\"N\",\n\t\"Ṉ\":\"N\",\n\t\"Ƞ\":\"N\",\n\t\"Nj\":\"N\",\n\t\"Ñ\":\"N\",\n\t\"NJ\":\"NJ\",\n\t\"Ó\":\"O\",\n\t\"Ŏ\":\"O\",\n\t\"Ǒ\":\"O\",\n\t\"Ô\":\"O\",\n\t\"Ố\":\"O\",\n\t\"Ộ\":\"O\",\n\t\"Ồ\":\"O\",\n\t\"Ổ\":\"O\",\n\t\"Ỗ\":\"O\",\n\t\"Ö\":\"O\",\n\t\"Ȫ\":\"O\",\n\t\"Ȯ\":\"O\",\n\t\"Ȱ\":\"O\",\n\t\"Ọ\":\"O\",\n\t\"Ő\":\"O\",\n\t\"Ȍ\":\"O\",\n\t\"Ò\":\"O\",\n\t\"Ỏ\":\"O\",\n\t\"Ơ\":\"O\",\n\t\"Ớ\":\"O\",\n\t\"Ợ\":\"O\",\n\t\"Ờ\":\"O\",\n\t\"Ở\":\"O\",\n\t\"Ỡ\":\"O\",\n\t\"Ȏ\":\"O\",\n\t\"Ꝋ\":\"O\",\n\t\"Ꝍ\":\"O\",\n\t\"Ō\":\"O\",\n\t\"Ṓ\":\"O\",\n\t\"Ṑ\":\"O\",\n\t\"Ɵ\":\"O\",\n\t\"Ǫ\":\"O\",\n\t\"Ǭ\":\"O\",\n\t\"Ø\":\"O\",\n\t\"Ǿ\":\"O\",\n\t\"Õ\":\"O\",\n\t\"Ṍ\":\"O\",\n\t\"Ṏ\":\"O\",\n\t\"Ȭ\":\"O\",\n\t\"Ƣ\":\"OI\",\n\t\"Ꝏ\":\"OO\",\n\t\"Ɛ\":\"E\",\n\t\"Ɔ\":\"O\",\n\t\"Ȣ\":\"OU\",\n\t\"Ṕ\":\"P\",\n\t\"Ṗ\":\"P\",\n\t\"Ꝓ\":\"P\",\n\t\"Ƥ\":\"P\",\n\t\"Ꝕ\":\"P\",\n\t\"Ᵽ\":\"P\",\n\t\"Ꝑ\":\"P\",\n\t\"Ꝙ\":\"Q\",\n\t\"Ꝗ\":\"Q\",\n\t\"Ŕ\":\"R\",\n\t\"Ř\":\"R\",\n\t\"Ŗ\":\"R\",\n\t\"Ṙ\":\"R\",\n\t\"Ṛ\":\"R\",\n\t\"Ṝ\":\"R\",\n\t\"Ȑ\":\"R\",\n\t\"Ȓ\":\"R\",\n\t\"Ṟ\":\"R\",\n\t\"Ɍ\":\"R\",\n\t\"Ɽ\":\"R\",\n\t\"Ꜿ\":\"C\",\n\t\"Ǝ\":\"E\",\n\t\"Ś\":\"S\",\n\t\"Ṥ\":\"S\",\n\t\"Š\":\"S\",\n\t\"Ṧ\":\"S\",\n\t\"Ş\":\"S\",\n\t\"Ŝ\":\"S\",\n\t\"Ș\":\"S\",\n\t\"Ṡ\":\"S\",\n\t\"Ṣ\":\"S\",\n\t\"Ṩ\":\"S\",\n\t\"Ť\":\"T\",\n\t\"Ţ\":\"T\",\n\t\"Ṱ\":\"T\",\n\t\"Ț\":\"T\",\n\t\"Ⱦ\":\"T\",\n\t\"Ṫ\":\"T\",\n\t\"Ṭ\":\"T\",\n\t\"Ƭ\":\"T\",\n\t\"Ṯ\":\"T\",\n\t\"Ʈ\":\"T\",\n\t\"Ŧ\":\"T\",\n\t\"Ɐ\":\"A\",\n\t\"Ꞁ\":\"L\",\n\t\"Ɯ\":\"M\",\n\t\"Ʌ\":\"V\",\n\t\"Ꜩ\":\"TZ\",\n\t\"Ú\":\"U\",\n\t\"Ŭ\":\"U\",\n\t\"Ǔ\":\"U\",\n\t\"Û\":\"U\",\n\t\"Ṷ\":\"U\",\n\t\"Ü\":\"U\",\n\t\"Ǘ\":\"U\",\n\t\"Ǚ\":\"U\",\n\t\"Ǜ\":\"U\",\n\t\"Ǖ\":\"U\",\n\t\"Ṳ\":\"U\",\n\t\"Ụ\":\"U\",\n\t\"Ű\":\"U\",\n\t\"Ȕ\":\"U\",\n\t\"Ù\":\"U\",\n\t\"Ủ\":\"U\",\n\t\"Ư\":\"U\",\n\t\"Ứ\":\"U\",\n\t\"Ự\":\"U\",\n\t\"Ừ\":\"U\",\n\t\"Ử\":\"U\",\n\t\"Ữ\":\"U\",\n\t\"Ȗ\":\"U\",\n\t\"Ū\":\"U\",\n\t\"Ṻ\":\"U\",\n\t\"Ų\":\"U\",\n\t\"Ů\":\"U\",\n\t\"Ũ\":\"U\",\n\t\"Ṹ\":\"U\",\n\t\"Ṵ\":\"U\",\n\t\"Ꝟ\":\"V\",\n\t\"Ṿ\":\"V\",\n\t\"Ʋ\":\"V\",\n\t\"Ṽ\":\"V\",\n\t\"Ꝡ\":\"VY\",\n\t\"Ẃ\":\"W\",\n\t\"Ŵ\":\"W\",\n\t\"Ẅ\":\"W\",\n\t\"Ẇ\":\"W\",\n\t\"Ẉ\":\"W\",\n\t\"Ẁ\":\"W\",\n\t\"Ⱳ\":\"W\",\n\t\"Ẍ\":\"X\",\n\t\"Ẋ\":\"X\",\n\t\"Ý\":\"Y\",\n\t\"Ŷ\":\"Y\",\n\t\"Ÿ\":\"Y\",\n\t\"Ẏ\":\"Y\",\n\t\"Ỵ\":\"Y\",\n\t\"Ỳ\":\"Y\",\n\t\"Ƴ\":\"Y\",\n\t\"Ỷ\":\"Y\",\n\t\"Ỿ\":\"Y\",\n\t\"Ȳ\":\"Y\",\n\t\"Ɏ\":\"Y\",\n\t\"Ỹ\":\"Y\",\n\t\"Ź\":\"Z\",\n\t\"Ž\":\"Z\",\n\t\"Ẑ\":\"Z\",\n\t\"Ⱬ\":\"Z\",\n\t\"Ż\":\"Z\",\n\t\"Ẓ\":\"Z\",\n\t\"Ȥ\":\"Z\",\n\t\"Ẕ\":\"Z\",\n\t\"Ƶ\":\"Z\",\n\t\"IJ\":\"IJ\",\n\t\"Œ\":\"OE\",\n\t\"ᴀ\":\"A\",\n\t\"ᴁ\":\"AE\",\n\t\"ʙ\":\"B\",\n\t\"ᴃ\":\"B\",\n\t\"ᴄ\":\"C\",\n\t\"ᴅ\":\"D\",\n\t\"ᴇ\":\"E\",\n\t\"ꜰ\":\"F\",\n\t\"ɢ\":\"G\",\n\t\"ʛ\":\"G\",\n\t\"ʜ\":\"H\",\n\t\"ɪ\":\"I\",\n\t\"ʁ\":\"R\",\n\t\"ᴊ\":\"J\",\n\t\"ᴋ\":\"K\",\n\t\"ʟ\":\"L\",\n\t\"ᴌ\":\"L\",\n\t\"ᴍ\":\"M\",\n\t\"ɴ\":\"N\",\n\t\"ᴏ\":\"O\",\n\t\"ɶ\":\"OE\",\n\t\"ᴐ\":\"O\",\n\t\"ᴕ\":\"OU\",\n\t\"ᴘ\":\"P\",\n\t\"ʀ\":\"R\",\n\t\"ᴎ\":\"N\",\n\t\"ᴙ\":\"R\",\n\t\"ꜱ\":\"S\",\n\t\"ᴛ\":\"T\",\n\t\"ⱻ\":\"E\",\n\t\"ᴚ\":\"R\",\n\t\"ᴜ\":\"U\",\n\t\"ᴠ\":\"V\",\n\t\"ᴡ\":\"W\",\n\t\"ʏ\":\"Y\",\n\t\"ᴢ\":\"Z\",\n\t\"á\":\"a\",\n\t\"ă\":\"a\",\n\t\"ắ\":\"a\",\n\t\"ặ\":\"a\",\n\t\"ằ\":\"a\",\n\t\"ẳ\":\"a\",\n\t\"ẵ\":\"a\",\n\t\"ǎ\":\"a\",\n\t\"â\":\"a\",\n\t\"ấ\":\"a\",\n\t\"ậ\":\"a\",\n\t\"ầ\":\"a\",\n\t\"ẩ\":\"a\",\n\t\"ẫ\":\"a\",\n\t\"ä\":\"a\",\n\t\"ǟ\":\"a\",\n\t\"ȧ\":\"a\",\n\t\"ǡ\":\"a\",\n\t\"ạ\":\"a\",\n\t\"ȁ\":\"a\",\n\t\"à\":\"a\",\n\t\"ả\":\"a\",\n\t\"ȃ\":\"a\",\n\t\"ā\":\"a\",\n\t\"ą\":\"a\",\n\t\"ᶏ\":\"a\",\n\t\"ẚ\":\"a\",\n\t\"å\":\"a\",\n\t\"ǻ\":\"a\",\n\t\"ḁ\":\"a\",\n\t\"ⱥ\":\"a\",\n\t\"ã\":\"a\",\n\t\"ꜳ\":\"aa\",\n\t\"æ\":\"ae\",\n\t\"ǽ\":\"ae\",\n\t\"ǣ\":\"ae\",\n\t\"ꜵ\":\"ao\",\n\t\"ꜷ\":\"au\",\n\t\"ꜹ\":\"av\",\n\t\"ꜻ\":\"av\",\n\t\"ꜽ\":\"ay\",\n\t\"ḃ\":\"b\",\n\t\"ḅ\":\"b\",\n\t\"ɓ\":\"b\",\n\t\"ḇ\":\"b\",\n\t\"ᵬ\":\"b\",\n\t\"ᶀ\":\"b\",\n\t\"ƀ\":\"b\",\n\t\"ƃ\":\"b\",\n\t\"ɵ\":\"o\",\n\t\"ć\":\"c\",\n\t\"č\":\"c\",\n\t\"ç\":\"c\",\n\t\"ḉ\":\"c\",\n\t\"ĉ\":\"c\",\n\t\"ɕ\":\"c\",\n\t\"ċ\":\"c\",\n\t\"ƈ\":\"c\",\n\t\"ȼ\":\"c\",\n\t\"ď\":\"d\",\n\t\"ḑ\":\"d\",\n\t\"ḓ\":\"d\",\n\t\"ȡ\":\"d\",\n\t\"ḋ\":\"d\",\n\t\"ḍ\":\"d\",\n\t\"ɗ\":\"d\",\n\t\"ᶑ\":\"d\",\n\t\"ḏ\":\"d\",\n\t\"ᵭ\":\"d\",\n\t\"ᶁ\":\"d\",\n\t\"đ\":\"d\",\n\t\"ɖ\":\"d\",\n\t\"ƌ\":\"d\",\n\t\"ı\":\"i\",\n\t\"ȷ\":\"j\",\n\t\"ɟ\":\"j\",\n\t\"ʄ\":\"j\",\n\t\"dz\":\"dz\",\n\t\"dž\":\"dz\",\n\t\"é\":\"e\",\n\t\"ĕ\":\"e\",\n\t\"ě\":\"e\",\n\t\"ȩ\":\"e\",\n\t\"ḝ\":\"e\",\n\t\"ê\":\"e\",\n\t\"ế\":\"e\",\n\t\"ệ\":\"e\",\n\t\"ề\":\"e\",\n\t\"ể\":\"e\",\n\t\"ễ\":\"e\",\n\t\"ḙ\":\"e\",\n\t\"ë\":\"e\",\n\t\"ė\":\"e\",\n\t\"ẹ\":\"e\",\n\t\"ȅ\":\"e\",\n\t\"è\":\"e\",\n\t\"ẻ\":\"e\",\n\t\"ȇ\":\"e\",\n\t\"ē\":\"e\",\n\t\"ḗ\":\"e\",\n\t\"ḕ\":\"e\",\n\t\"ⱸ\":\"e\",\n\t\"ę\":\"e\",\n\t\"ᶒ\":\"e\",\n\t\"ɇ\":\"e\",\n\t\"ẽ\":\"e\",\n\t\"ḛ\":\"e\",\n\t\"ꝫ\":\"et\",\n\t\"ḟ\":\"f\",\n\t\"ƒ\":\"f\",\n\t\"ᵮ\":\"f\",\n\t\"ᶂ\":\"f\",\n\t\"ǵ\":\"g\",\n\t\"ğ\":\"g\",\n\t\"ǧ\":\"g\",\n\t\"ģ\":\"g\",\n\t\"ĝ\":\"g\",\n\t\"ġ\":\"g\",\n\t\"ɠ\":\"g\",\n\t\"ḡ\":\"g\",\n\t\"ᶃ\":\"g\",\n\t\"ǥ\":\"g\",\n\t\"ḫ\":\"h\",\n\t\"ȟ\":\"h\",\n\t\"ḩ\":\"h\",\n\t\"ĥ\":\"h\",\n\t\"ⱨ\":\"h\",\n\t\"ḧ\":\"h\",\n\t\"ḣ\":\"h\",\n\t\"ḥ\":\"h\",\n\t\"ɦ\":\"h\",\n\t\"ẖ\":\"h\",\n\t\"ħ\":\"h\",\n\t\"ƕ\":\"hv\",\n\t\"í\":\"i\",\n\t\"ĭ\":\"i\",\n\t\"ǐ\":\"i\",\n\t\"î\":\"i\",\n\t\"ï\":\"i\",\n\t\"ḯ\":\"i\",\n\t\"ị\":\"i\",\n\t\"ȉ\":\"i\",\n\t\"ì\":\"i\",\n\t\"ỉ\":\"i\",\n\t\"ȋ\":\"i\",\n\t\"ī\":\"i\",\n\t\"į\":\"i\",\n\t\"ᶖ\":\"i\",\n\t\"ɨ\":\"i\",\n\t\"ĩ\":\"i\",\n\t\"ḭ\":\"i\",\n\t\"ꝺ\":\"d\",\n\t\"ꝼ\":\"f\",\n\t\"ᵹ\":\"g\",\n\t\"ꞃ\":\"r\",\n\t\"ꞅ\":\"s\",\n\t\"ꞇ\":\"t\",\n\t\"ꝭ\":\"is\",\n\t\"ǰ\":\"j\",\n\t\"ĵ\":\"j\",\n\t\"ʝ\":\"j\",\n\t\"ɉ\":\"j\",\n\t\"ḱ\":\"k\",\n\t\"ǩ\":\"k\",\n\t\"ķ\":\"k\",\n\t\"ⱪ\":\"k\",\n\t\"ꝃ\":\"k\",\n\t\"ḳ\":\"k\",\n\t\"ƙ\":\"k\",\n\t\"ḵ\":\"k\",\n\t\"ᶄ\":\"k\",\n\t\"ꝁ\":\"k\",\n\t\"ꝅ\":\"k\",\n\t\"ĺ\":\"l\",\n\t\"ƚ\":\"l\",\n\t\"ɬ\":\"l\",\n\t\"ľ\":\"l\",\n\t\"ļ\":\"l\",\n\t\"ḽ\":\"l\",\n\t\"ȴ\":\"l\",\n\t\"ḷ\":\"l\",\n\t\"ḹ\":\"l\",\n\t\"ⱡ\":\"l\",\n\t\"ꝉ\":\"l\",\n\t\"ḻ\":\"l\",\n\t\"ŀ\":\"l\",\n\t\"ɫ\":\"l\",\n\t\"ᶅ\":\"l\",\n\t\"ɭ\":\"l\",\n\t\"ł\":\"l\",\n\t\"lj\":\"lj\",\n\t\"ſ\":\"s\",\n\t\"ẜ\":\"s\",\n\t\"ẛ\":\"s\",\n\t\"ẝ\":\"s\",\n\t\"ḿ\":\"m\",\n\t\"ṁ\":\"m\",\n\t\"ṃ\":\"m\",\n\t\"ɱ\":\"m\",\n\t\"ᵯ\":\"m\",\n\t\"ᶆ\":\"m\",\n\t\"ń\":\"n\",\n\t\"ň\":\"n\",\n\t\"ņ\":\"n\",\n\t\"ṋ\":\"n\",\n\t\"ȵ\":\"n\",\n\t\"ṅ\":\"n\",\n\t\"ṇ\":\"n\",\n\t\"ǹ\":\"n\",\n\t\"ɲ\":\"n\",\n\t\"ṉ\":\"n\",\n\t\"ƞ\":\"n\",\n\t\"ᵰ\":\"n\",\n\t\"ᶇ\":\"n\",\n\t\"ɳ\":\"n\",\n\t\"ñ\":\"n\",\n\t\"nj\":\"nj\",\n\t\"ó\":\"o\",\n\t\"ŏ\":\"o\",\n\t\"ǒ\":\"o\",\n\t\"ô\":\"o\",\n\t\"ố\":\"o\",\n\t\"ộ\":\"o\",\n\t\"ồ\":\"o\",\n\t\"ổ\":\"o\",\n\t\"ỗ\":\"o\",\n\t\"ö\":\"o\",\n\t\"ȫ\":\"o\",\n\t\"ȯ\":\"o\",\n\t\"ȱ\":\"o\",\n\t\"ọ\":\"o\",\n\t\"ő\":\"o\",\n\t\"ȍ\":\"o\",\n\t\"ò\":\"o\",\n\t\"ỏ\":\"o\",\n\t\"ơ\":\"o\",\n\t\"ớ\":\"o\",\n\t\"ợ\":\"o\",\n\t\"ờ\":\"o\",\n\t\"ở\":\"o\",\n\t\"ỡ\":\"o\",\n\t\"ȏ\":\"o\",\n\t\"ꝋ\":\"o\",\n\t\"ꝍ\":\"o\",\n\t\"ⱺ\":\"o\",\n\t\"ō\":\"o\",\n\t\"ṓ\":\"o\",\n\t\"ṑ\":\"o\",\n\t\"ǫ\":\"o\",\n\t\"ǭ\":\"o\",\n\t\"ø\":\"o\",\n\t\"ǿ\":\"o\",\n\t\"õ\":\"o\",\n\t\"ṍ\":\"o\",\n\t\"ṏ\":\"o\",\n\t\"ȭ\":\"o\",\n\t\"ƣ\":\"oi\",\n\t\"ꝏ\":\"oo\",\n\t\"ɛ\":\"e\",\n\t\"ᶓ\":\"e\",\n\t\"ɔ\":\"o\",\n\t\"ᶗ\":\"o\",\n\t\"ȣ\":\"ou\",\n\t\"ṕ\":\"p\",\n\t\"ṗ\":\"p\",\n\t\"ꝓ\":\"p\",\n\t\"ƥ\":\"p\",\n\t\"ᵱ\":\"p\",\n\t\"ᶈ\":\"p\",\n\t\"ꝕ\":\"p\",\n\t\"ᵽ\":\"p\",\n\t\"ꝑ\":\"p\",\n\t\"ꝙ\":\"q\",\n\t\"ʠ\":\"q\",\n\t\"ɋ\":\"q\",\n\t\"ꝗ\":\"q\",\n\t\"ŕ\":\"r\",\n\t\"ř\":\"r\",\n\t\"ŗ\":\"r\",\n\t\"ṙ\":\"r\",\n\t\"ṛ\":\"r\",\n\t\"ṝ\":\"r\",\n\t\"ȑ\":\"r\",\n\t\"ɾ\":\"r\",\n\t\"ᵳ\":\"r\",\n\t\"ȓ\":\"r\",\n\t\"ṟ\":\"r\",\n\t\"ɼ\":\"r\",\n\t\"ᵲ\":\"r\",\n\t\"ᶉ\":\"r\",\n\t\"ɍ\":\"r\",\n\t\"ɽ\":\"r\",\n\t\"ↄ\":\"c\",\n\t\"ꜿ\":\"c\",\n\t\"ɘ\":\"e\",\n\t\"ɿ\":\"r\",\n\t\"ś\":\"s\",\n\t\"ṥ\":\"s\",\n\t\"š\":\"s\",\n\t\"ṧ\":\"s\",\n\t\"ş\":\"s\",\n\t\"ŝ\":\"s\",\n\t\"ș\":\"s\",\n\t\"ṡ\":\"s\",\n\t\"ṣ\":\"s\",\n\t\"ṩ\":\"s\",\n\t\"ʂ\":\"s\",\n\t\"ᵴ\":\"s\",\n\t\"ᶊ\":\"s\",\n\t\"ȿ\":\"s\",\n\t\"ɡ\":\"g\",\n\t\"ᴑ\":\"o\",\n\t\"ᴓ\":\"o\",\n\t\"ᴝ\":\"u\",\n\t\"ť\":\"t\",\n\t\"ţ\":\"t\",\n\t\"ṱ\":\"t\",\n\t\"ț\":\"t\",\n\t\"ȶ\":\"t\",\n\t\"ẗ\":\"t\",\n\t\"ⱦ\":\"t\",\n\t\"ṫ\":\"t\",\n\t\"ṭ\":\"t\",\n\t\"ƭ\":\"t\",\n\t\"ṯ\":\"t\",\n\t\"ᵵ\":\"t\",\n\t\"ƫ\":\"t\",\n\t\"ʈ\":\"t\",\n\t\"ŧ\":\"t\",\n\t\"ᵺ\":\"th\",\n\t\"ɐ\":\"a\",\n\t\"ᴂ\":\"ae\",\n\t\"ǝ\":\"e\",\n\t\"ᵷ\":\"g\",\n\t\"ɥ\":\"h\",\n\t\"ʮ\":\"h\",\n\t\"ʯ\":\"h\",\n\t\"ᴉ\":\"i\",\n\t\"ʞ\":\"k\",\n\t\"ꞁ\":\"l\",\n\t\"ɯ\":\"m\",\n\t\"ɰ\":\"m\",\n\t\"ᴔ\":\"oe\",\n\t\"ɹ\":\"r\",\n\t\"ɻ\":\"r\",\n\t\"ɺ\":\"r\",\n\t\"ⱹ\":\"r\",\n\t\"ʇ\":\"t\",\n\t\"ʌ\":\"v\",\n\t\"ʍ\":\"w\",\n\t\"ʎ\":\"y\",\n\t\"ꜩ\":\"tz\",\n\t\"ú\":\"u\",\n\t\"ŭ\":\"u\",\n\t\"ǔ\":\"u\",\n\t\"û\":\"u\",\n\t\"ṷ\":\"u\",\n\t\"ü\":\"u\",\n\t\"ǘ\":\"u\",\n\t\"ǚ\":\"u\",\n\t\"ǜ\":\"u\",\n\t\"ǖ\":\"u\",\n\t\"ṳ\":\"u\",\n\t\"ụ\":\"u\",\n\t\"ű\":\"u\",\n\t\"ȕ\":\"u\",\n\t\"ù\":\"u\",\n\t\"ủ\":\"u\",\n\t\"ư\":\"u\",\n\t\"ứ\":\"u\",\n\t\"ự\":\"u\",\n\t\"ừ\":\"u\",\n\t\"ử\":\"u\",\n\t\"ữ\":\"u\",\n\t\"ȗ\":\"u\",\n\t\"ū\":\"u\",\n\t\"ṻ\":\"u\",\n\t\"ų\":\"u\",\n\t\"ᶙ\":\"u\",\n\t\"ů\":\"u\",\n\t\"ũ\":\"u\",\n\t\"ṹ\":\"u\",\n\t\"ṵ\":\"u\",\n\t\"ᵫ\":\"ue\",\n\t\"ꝸ\":\"um\",\n\t\"ⱴ\":\"v\",\n\t\"ꝟ\":\"v\",\n\t\"ṿ\":\"v\",\n\t\"ʋ\":\"v\",\n\t\"ᶌ\":\"v\",\n\t\"ⱱ\":\"v\",\n\t\"ṽ\":\"v\",\n\t\"ꝡ\":\"vy\",\n\t\"ẃ\":\"w\",\n\t\"ŵ\":\"w\",\n\t\"ẅ\":\"w\",\n\t\"ẇ\":\"w\",\n\t\"ẉ\":\"w\",\n\t\"ẁ\":\"w\",\n\t\"ⱳ\":\"w\",\n\t\"ẘ\":\"w\",\n\t\"ẍ\":\"x\",\n\t\"ẋ\":\"x\",\n\t\"ᶍ\":\"x\",\n\t\"ý\":\"y\",\n\t\"ŷ\":\"y\",\n\t\"ÿ\":\"y\",\n\t\"ẏ\":\"y\",\n\t\"ỵ\":\"y\",\n\t\"ỳ\":\"y\",\n\t\"ƴ\":\"y\",\n\t\"ỷ\":\"y\",\n\t\"ỿ\":\"y\",\n\t\"ȳ\":\"y\",\n\t\"ẙ\":\"y\",\n\t\"ɏ\":\"y\",\n\t\"ỹ\":\"y\",\n\t\"ź\":\"z\",\n\t\"ž\":\"z\",\n\t\"ẑ\":\"z\",\n\t\"ʑ\":\"z\",\n\t\"ⱬ\":\"z\",\n\t\"ż\":\"z\",\n\t\"ẓ\":\"z\",\n\t\"ȥ\":\"z\",\n\t\"ẕ\":\"z\",\n\t\"ᵶ\":\"z\",\n\t\"ᶎ\":\"z\",\n\t\"ʐ\":\"z\",\n\t\"ƶ\":\"z\",\n\t\"ɀ\":\"z\",\n\t\"ff\":\"ff\",\n\t\"ffi\":\"ffi\",\n\t\"ffl\":\"ffl\",\n\t\"fi\":\"fi\",\n\t\"fl\":\"fl\",\n\t\"ij\":\"ij\",\n\t\"œ\":\"oe\",\n\t\"st\":\"st\",\n\t\"ₐ\":\"a\",\n\t\"ₑ\":\"e\",\n\t\"ᵢ\":\"i\",\n\t\"ⱼ\":\"j\",\n\t\"ₒ\":\"o\",\n\t\"ᵣ\":\"r\",\n\t\"ᵤ\":\"u\",\n\t\"ᵥ\":\"v\",\n\t\"ₓ\":\"x\",\n\t\"Ё\":\"YO\",\n\t\"Й\":\"I\",\n\t\"Ц\":\"TS\",\n\t\"У\":\"U\",\n\t\"К\":\"K\",\n\t\"Е\":\"E\",\n\t\"Н\":\"N\",\n\t\"Г\":\"G\",\n\t\"Ш\":\"SH\",\n\t\"Щ\":\"SCH\",\n\t\"З\":\"Z\",\n\t\"Х\":\"H\",\n\t\"Ъ\":\"'\",\n\t\"ё\":\"yo\",\n\t\"й\":\"i\",\n\t\"ц\":\"ts\",\n\t\"у\":\"u\",\n\t\"к\":\"k\",\n\t\"е\":\"e\",\n\t\"н\":\"n\",\n\t\"г\":\"g\",\n\t\"ш\":\"sh\",\n\t\"щ\":\"sch\",\n\t\"з\":\"z\",\n\t\"х\":\"h\",\n\t\"ъ\":\"'\",\n\t\"Ф\":\"F\",\n\t\"Ы\":\"I\",\n\t\"В\":\"V\",\n\t\"А\":\"a\",\n\t\"П\":\"P\",\n\t\"Р\":\"R\",\n\t\"О\":\"O\",\n\t\"Л\":\"L\",\n\t\"Д\":\"D\",\n\t\"Ж\":\"ZH\",\n\t\"Э\":\"E\",\n\t\"ф\":\"f\",\n\t\"ы\":\"i\",\n\t\"в\":\"v\",\n\t\"а\":\"a\",\n\t\"п\":\"p\",\n\t\"р\":\"r\",\n\t\"о\":\"o\",\n\t\"л\":\"l\",\n\t\"д\":\"d\",\n\t\"ж\":\"zh\",\n\t\"э\":\"e\",\n\t\"Я\":\"Ya\",\n\t\"Ч\":\"CH\",\n\t\"С\":\"S\",\n\t\"М\":\"M\",\n\t\"И\":\"I\",\n\t\"Т\":\"T\",\n\t\"Ь\":\"'\",\n\t\"Б\":\"B\",\n\t\"Ю\":\"YU\",\n\t\"я\":\"ya\",\n\t\"ч\":\"ch\",\n\t\"с\":\"s\",\n\t\"м\":\"m\",\n\t\"и\":\"i\",\n\t\"т\":\"t\",\n\t\"ь\":\"'\",\n\t\"б\":\"b\",\n\t\"ю\":\"yu\"\n};\n\nexports.transliterate = function(str) {\n\treturn str.replace(/[^A-Za-z0-9\\[\\] ]/g,function(ch) {\n\t\treturn exports.transliterationPairs[ch] || ch\n\t});\n};\n\nexports.transliterateToSafeASCII = function(str) {\n\treturn str.replace(/[^\\x00-\\x7F]/g,function(ch) {\n\t\treturn exports.transliterationPairs[ch] || \"\"\n\t});\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "utils"
},
"$:/core/modules/utils/utils.js": {
"title": "$:/core/modules/utils/utils.js",
"text": "/*\\\ntitle: $:/core/modules/utils/utils.js\ntype: application/javascript\nmodule-type: utils\n\nVarious static utility functions.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar base64utf8 = require(\"$:/core/modules/utils/base64-utf8/base64-utf8.module.js\");\n\n/*\nDisplay a message, in colour if we're on a terminal\n*/\nexports.log = function(text,colour) {\n\tconsole.log($tw.node ? exports.terminalColour(colour) + text + exports.terminalColour() : text);\n};\n\nexports.terminalColour = function(colour) {\n\tif(!$tw.browser && $tw.node && process.stdout.isTTY) {\n\t\tif(colour) {\n\t\t\tvar code = exports.terminalColourLookup[colour];\n\t\t\tif(code) {\n\t\t\t\treturn \"\\x1b[\" + code + \"m\";\n\t\t\t}\n\t\t} else {\n\t\t\treturn \"\\x1b[0m\"; // Cancel colour\n\t\t}\n\t}\n\treturn \"\";\n};\n\nexports.terminalColourLookup = {\n\t\"black\": \"0;30\",\n\t\"red\": \"0;31\",\n\t\"green\": \"0;32\",\n\t\"brown/orange\": \"0;33\",\n\t\"blue\": \"0;34\",\n\t\"purple\": \"0;35\",\n\t\"cyan\": \"0;36\",\n\t\"light gray\": \"0;37\"\n};\n\n/*\nDisplay a warning, in colour if we're on a terminal\n*/\nexports.warning = function(text) {\n\texports.log(text,\"brown/orange\");\n};\n\n/*\nReturn the integer represented by the str (string).\nReturn the dflt (default) parameter if str is not a base-10 number.\n*/\nexports.getInt = function(str,deflt) {\n\tvar i = parseInt(str,10);\n\treturn isNaN(i) ? deflt : i;\n}\n\n/*\nRepeatedly replaces a substring within a string. Like String.prototype.replace, but without any of the default special handling of $ sequences in the replace string\n*/\nexports.replaceString = function(text,search,replace) {\n\treturn text.replace(search,function() {\n\t\treturn replace;\n\t});\n};\n\n/*\nRepeats a string\n*/\nexports.repeat = function(str,count) {\n\tvar result = \"\";\n\tfor(var t=0;t<count;t++) {\n\t\tresult += str;\n\t}\n\treturn result;\n};\n\n/*\nTrim whitespace from the start and end of a string\nThanks to Steven Levithan, http://blog.stevenlevithan.com/archives/faster-trim-javascript\n*/\nexports.trim = function(str) {\n\tif(typeof str === \"string\") {\n\t\treturn str.replace(/^\\s\\s*/, '').replace(/\\s\\s*$/, '');\n\t} else {\n\t\treturn str;\n\t}\n};\n\n/*\nConvert a string to sentence case (ie capitalise first letter)\n*/\nexports.toSentenceCase = function(str) {\n\treturn (str || \"\").replace(/^\\S/, function(c) {return c.toUpperCase();});\n}\n\n/*\nConvert a string to title case (ie capitalise each initial letter)\n*/\nexports.toTitleCase = function(str) {\n\treturn (str || \"\").replace(/(^|\\s)\\S/g, function(c) {return c.toUpperCase();});\n}\n\t\n/*\nFind the line break preceding a given position in a string\nReturns position immediately after that line break, or the start of the string\n*/\nexports.findPrecedingLineBreak = function(text,pos) {\n\tvar result = text.lastIndexOf(\"\\n\",pos - 1);\n\tif(result === -1) {\n\t\tresult = 0;\n\t} else {\n\t\tresult++;\n\t\tif(text.charAt(result) === \"\\r\") {\n\t\t\tresult++;\n\t\t}\n\t}\n\treturn result;\n};\n\n/*\nFind the line break following a given position in a string\n*/\nexports.findFollowingLineBreak = function(text,pos) {\n\t// Cut to just past the following line break, or to the end of the text\n\tvar result = text.indexOf(\"\\n\",pos);\n\tif(result === -1) {\n\t\tresult = text.length;\n\t} else {\n\t\tif(text.charAt(result) === \"\\r\") {\n\t\t\tresult++;\n\t\t}\n\t}\n\treturn result;\n};\n\n/*\nReturn the number of keys in an object\n*/\nexports.count = function(object) {\n\treturn Object.keys(object || {}).length;\n};\n\n/*\nDetermine whether an array-item is an object-property\n*/\nexports.hopArray = function(object,array) {\n\tfor(var i=0; i<array.length; i++) {\n\t\tif($tw.utils.hop(object,array[i])) {\n\t\t\treturn true;\n\t\t}\n\t}\n\treturn false;\n};\n\n/*\nRemove entries from an array\n\tarray: array to modify\n\tvalue: a single value to remove, or an array of values to remove\n*/\nexports.removeArrayEntries = function(array,value) {\n\tvar t,p;\n\tif($tw.utils.isArray(value)) {\n\t\tfor(t=0; t<value.length; t++) {\n\t\t\tp = array.indexOf(value[t]);\n\t\t\tif(p !== -1) {\n\t\t\t\tarray.splice(p,1);\n\t\t\t}\n\t\t}\n\t} else {\n\t\tp = array.indexOf(value);\n\t\tif(p !== -1) {\n\t\t\tarray.splice(p,1);\n\t\t}\n\t}\n};\n\n/*\nCheck whether any members of a hashmap are present in another hashmap\n*/\nexports.checkDependencies = function(dependencies,changes) {\n\tvar hit = false;\n\t$tw.utils.each(changes,function(change,title) {\n\t\tif($tw.utils.hop(dependencies,title)) {\n\t\t\thit = true;\n\t\t}\n\t});\n\treturn hit;\n};\n\nexports.extend = function(object /* [, src] */) {\n\t$tw.utils.each(Array.prototype.slice.call(arguments, 1), function(source) {\n\t\tif(source) {\n\t\t\tfor(var property in source) {\n\t\t\t\tobject[property] = source[property];\n\t\t\t}\n\t\t}\n\t});\n\treturn object;\n};\n\nexports.deepCopy = function(object) {\n\tvar result,t;\n\tif($tw.utils.isArray(object)) {\n\t\t// Copy arrays\n\t\tresult = object.slice(0);\n\t} else if(typeof object === \"object\") {\n\t\tresult = {};\n\t\tfor(t in object) {\n\t\t\tif(object[t] !== undefined) {\n\t\t\t\tresult[t] = $tw.utils.deepCopy(object[t]);\n\t\t\t}\n\t\t}\n\t} else {\n\t\tresult = object;\n\t}\n\treturn result;\n};\n\nexports.extendDeepCopy = function(object,extendedProperties) {\n\tvar result = $tw.utils.deepCopy(object),t;\n\tfor(t in extendedProperties) {\n\t\tif(extendedProperties[t] !== undefined) {\n\t\t\tresult[t] = $tw.utils.deepCopy(extendedProperties[t]);\n\t\t}\n\t}\n\treturn result;\n};\n\nexports.deepFreeze = function deepFreeze(object) {\n\tvar property, key;\n\tif(object) {\n\t\tObject.freeze(object);\n\t\tfor(key in object) {\n\t\t\tproperty = object[key];\n\t\t\tif($tw.utils.hop(object,key) && (typeof property === \"object\") && !Object.isFrozen(property)) {\n\t\t\t\tdeepFreeze(property);\n\t\t\t}\n\t\t}\n\t}\n};\n\nexports.slowInSlowOut = function(t) {\n\treturn (1 - ((Math.cos(t * Math.PI) + 1) / 2));\n};\n\nexports.formatDateString = function(date,template) {\n\tvar result = \"\",\n\t\tt = template,\n\t\tmatches = [\n\t\t\t[/^0hh12/, function() {\n\t\t\t\treturn $tw.utils.pad($tw.utils.getHours12(date));\n\t\t\t}],\n\t\t\t[/^wYYYY/, function() {\n\t\t\t\treturn $tw.utils.getYearForWeekNo(date);\n\t\t\t}],\n\t\t\t[/^hh12/, function() {\n\t\t\t\treturn $tw.utils.getHours12(date);\n\t\t\t}],\n\t\t\t[/^DDth/, function() {\n\t\t\t\treturn date.getDate() + $tw.utils.getDaySuffix(date);\n\t\t\t}],\n\t\t\t[/^YYYY/, function() {\n\t\t\t\treturn date.getFullYear();\n\t\t\t}],\n\t\t\t[/^0hh/, function() {\n\t\t\t\treturn $tw.utils.pad(date.getHours());\n\t\t\t}],\n\t\t\t[/^0mm/, function() {\n\t\t\t\treturn $tw.utils.pad(date.getMinutes());\n\t\t\t}],\n\t\t\t[/^0ss/, function() {\n\t\t\t\treturn $tw.utils.pad(date.getSeconds());\n\t\t\t}],\n\t\t\t[/^0XXX/, function() {\n\t\t\t\treturn $tw.utils.pad(date.getMilliseconds());\n\t\t\t}],\n\t\t\t[/^0DD/, function() {\n\t\t\t\treturn $tw.utils.pad(date.getDate());\n\t\t\t}],\n\t\t\t[/^0MM/, function() {\n\t\t\t\treturn $tw.utils.pad(date.getMonth()+1);\n\t\t\t}],\n\t\t\t[/^0WW/, function() {\n\t\t\t\treturn $tw.utils.pad($tw.utils.getWeek(date));\n\t\t\t}],\n\t\t\t[/^ddd/, function() {\n\t\t\t\treturn $tw.language.getString(\"Date/Short/Day/\" + date.getDay());\n\t\t\t}],\n\t\t\t[/^mmm/, function() {\n\t\t\t\treturn $tw.language.getString(\"Date/Short/Month/\" + (date.getMonth() + 1));\n\t\t\t}],\n\t\t\t[/^DDD/, function() {\n\t\t\t\treturn $tw.language.getString(\"Date/Long/Day/\" + date.getDay());\n\t\t\t}],\n\t\t\t[/^MMM/, function() {\n\t\t\t\treturn $tw.language.getString(\"Date/Long/Month/\" + (date.getMonth() + 1));\n\t\t\t}],\n\t\t\t[/^TZD/, function() {\n\t\t\t\tvar tz = date.getTimezoneOffset(),\n\t\t\t\tatz = Math.abs(tz);\n\t\t\t\treturn (tz < 0 ? '+' : '-') + $tw.utils.pad(Math.floor(atz / 60)) + ':' + $tw.utils.pad(atz % 60);\n\t\t\t}],\n\t\t\t[/^wYY/, function() {\n\t\t\t\treturn $tw.utils.pad($tw.utils.getYearForWeekNo(date) - 2000);\n\t\t\t}],\n\t\t\t[/^[ap]m/, function() {\n\t\t\t\treturn $tw.utils.getAmPm(date).toLowerCase();\n\t\t\t}],\n\t\t\t[/^hh/, function() {\n\t\t\t\treturn date.getHours();\n\t\t\t}],\n\t\t\t[/^mm/, function() {\n\t\t\t\treturn date.getMinutes();\n\t\t\t}],\n\t\t\t[/^ss/, function() {\n\t\t\t\treturn date.getSeconds();\n\t\t\t}],\n\t\t\t[/^XXX/, function() {\n\t\t\t\treturn date.getMilliseconds();\n\t\t\t}],\n\t\t\t[/^[AP]M/, function() {\n\t\t\t\treturn $tw.utils.getAmPm(date).toUpperCase();\n\t\t\t}],\n\t\t\t[/^DD/, function() {\n\t\t\t\treturn date.getDate();\n\t\t\t}],\n\t\t\t[/^MM/, function() {\n\t\t\t\treturn date.getMonth() + 1;\n\t\t\t}],\n\t\t\t[/^WW/, function() {\n\t\t\t\treturn $tw.utils.getWeek(date);\n\t\t\t}],\n\t\t\t[/^YY/, function() {\n\t\t\t\treturn $tw.utils.pad(date.getFullYear() - 2000);\n\t\t\t}]\n\t\t];\n\t// If the user wants everything in UTC, shift the datestamp\n\t// Optimize for format string that essentially means\n\t// 'return raw UTC (tiddlywiki style) date string.'\n\tif(t.indexOf(\"[UTC]\") == 0 ) {\n\t\tif(t == \"[UTC]YYYY0MM0DD0hh0mm0ssXXX\")\n\t\t\treturn $tw.utils.stringifyDate(new Date());\n\t\tvar offset = date.getTimezoneOffset() ; // in minutes\n\t\tdate = new Date(date.getTime()+offset*60*1000) ;\n\t\tt = t.substr(5) ;\n\t}\n\twhile(t.length){\n\t\tvar matchString = \"\";\n\t\t$tw.utils.each(matches, function(m) {\n\t\t\tvar match = m[0].exec(t);\n\t\t\tif(match) {\n\t\t\t\tmatchString = m[1].call();\n\t\t\t\tt = t.substr(match[0].length);\n\t\t\t\treturn false;\n\t\t\t}\n\t\t});\n\t\tif(matchString) {\n\t\t\tresult += matchString;\n\t\t} else {\n\t\t\tresult += t.charAt(0);\n\t\t\tt = t.substr(1);\n\t\t}\n\t}\n\tresult = result.replace(/\\\\(.)/g,\"$1\");\n\treturn result;\n};\n\nexports.getAmPm = function(date) {\n\treturn $tw.language.getString(\"Date/Period/\" + (date.getHours() >= 12 ? \"pm\" : \"am\"));\n};\n\nexports.getDaySuffix = function(date) {\n\treturn $tw.language.getString(\"Date/DaySuffix/\" + date.getDate());\n};\n\nexports.getWeek = function(date) {\n\tvar dt = new Date(date.getTime());\n\tvar d = dt.getDay();\n\tif(d === 0) {\n\t\td = 7; // JavaScript Sun=0, ISO Sun=7\n\t}\n\tdt.setTime(dt.getTime() + (4 - d) * 86400000);// shift day to Thurs of same week to calculate weekNo\n\tvar x = new Date(dt.getFullYear(),0,1);\n\tvar n = Math.floor((dt.getTime() - x.getTime()) / 86400000);\n\treturn Math.floor(n / 7) + 1;\n};\n\nexports.getYearForWeekNo = function(date) {\n\tvar dt = new Date(date.getTime());\n\tvar d = dt.getDay();\n\tif(d === 0) {\n\t\td = 7; // JavaScript Sun=0, ISO Sun=7\n\t}\n\tdt.setTime(dt.getTime() + (4 - d) * 86400000);// shift day to Thurs of same week\n\treturn dt.getFullYear();\n};\n\nexports.getHours12 = function(date) {\n\tvar h = date.getHours();\n\treturn h > 12 ? h-12 : ( h > 0 ? h : 12 );\n};\n\n/*\nConvert a date delta in milliseconds into a string representation of \"23 seconds ago\", \"27 minutes ago\" etc.\n\tdelta: delta in milliseconds\nReturns an object with these members:\n\tdescription: string describing the delta period\n\tupdatePeriod: time in millisecond until the string will be inaccurate\n*/\nexports.getRelativeDate = function(delta) {\n\tvar futurep = false;\n\tif(delta < 0) {\n\t\tdelta = -1 * delta;\n\t\tfuturep = true;\n\t}\n\tvar units = [\n\t\t{name: \"Years\", duration: 365 * 24 * 60 * 60 * 1000},\n\t\t{name: \"Months\", duration: (365/12) * 24 * 60 * 60 * 1000},\n\t\t{name: \"Days\", duration: 24 * 60 * 60 * 1000},\n\t\t{name: \"Hours\", duration: 60 * 60 * 1000},\n\t\t{name: \"Minutes\", duration: 60 * 1000},\n\t\t{name: \"Seconds\", duration: 1000}\n\t];\n\tfor(var t=0; t<units.length; t++) {\n\t\tvar result = Math.floor(delta / units[t].duration);\n\t\tif(result >= 2) {\n\t\t\treturn {\n\t\t\t\tdelta: delta,\n\t\t\t\tdescription: $tw.language.getString(\n\t\t\t\t\t\"RelativeDate/\" + (futurep ? \"Future\" : \"Past\") + \"/\" + units[t].name,\n\t\t\t\t\t{variables:\n\t\t\t\t\t\t{period: result.toString()}\n\t\t\t\t\t}\n\t\t\t\t),\n\t\t\t\tupdatePeriod: units[t].duration\n\t\t\t};\n\t\t}\n\t}\n\treturn {\n\t\tdelta: delta,\n\t\tdescription: $tw.language.getString(\n\t\t\t\"RelativeDate/\" + (futurep ? \"Future\" : \"Past\") + \"/Second\",\n\t\t\t{variables:\n\t\t\t\t{period: \"1\"}\n\t\t\t}\n\t\t),\n\t\tupdatePeriod: 1000\n\t};\n};\n\n// Convert & to \"&\", < to \"<\", > to \">\", \" to \""\"\nexports.htmlEncode = function(s) {\n\tif(s) {\n\t\treturn s.toString().replace(/&/mg,\"&\").replace(/</mg,\"<\").replace(/>/mg,\">\").replace(/\\\"/mg,\""\");\n\t} else {\n\t\treturn \"\";\n\t}\n};\n\n// Converts all HTML entities to their character equivalents\nexports.entityDecode = function(s) {\n\tvar converter = String.fromCodePoint || String.fromCharCode,\n\t\te = s.substr(1,s.length-2), // Strip the & and the ;\n\t\tc;\n\tif(e.charAt(0) === \"#\") {\n\t\tif(e.charAt(1) === \"x\" || e.charAt(1) === \"X\") {\n\t\t\tc = parseInt(e.substr(2),16);\n\t\t} else {\n\t\t\tc = parseInt(e.substr(1),10);\n\t\t}\n\t\tif(isNaN(c)) {\n\t\t\treturn s;\n\t\t} else {\n\t\t\treturn converter(c);\n\t\t}\n\t} else {\n\t\tc = $tw.config.htmlEntities[e];\n\t\tif(c) {\n\t\t\treturn converter(c);\n\t\t} else {\n\t\t\treturn s; // Couldn't convert it as an entity, just return it raw\n\t\t}\n\t}\n};\n\nexports.unescapeLineBreaks = function(s) {\n\treturn s.replace(/\\\\n/mg,\"\\n\").replace(/\\\\b/mg,\" \").replace(/\\\\s/mg,\"\\\\\").replace(/\\r/mg,\"\");\n};\n\n/*\n * Returns an escape sequence for given character. Uses \\x for characters <=\n * 0xFF to save space, \\u for the rest.\n *\n * The code needs to be in sync with th code template in the compilation\n * function for \"action\" nodes.\n */\n// Copied from peg.js, thanks to David Majda\nexports.escape = function(ch) {\n\tvar charCode = ch.charCodeAt(0);\n\tif(charCode <= 0xFF) {\n\t\treturn '\\\\x' + $tw.utils.pad(charCode.toString(16).toUpperCase());\n\t} else {\n\t\treturn '\\\\u' + $tw.utils.pad(charCode.toString(16).toUpperCase(),4);\n\t}\n};\n\n// Turns a string into a legal JavaScript string\n// Copied from peg.js, thanks to David Majda\nexports.stringify = function(s) {\n\t/*\n\t* ECMA-262, 5th ed., 7.8.4: All characters may appear literally in a string\n\t* literal except for the closing quote character, backslash, carriage return,\n\t* line separator, paragraph separator, and line feed. Any character may\n\t* appear in the form of an escape sequence.\n\t*\n\t* For portability, we also escape all non-ASCII characters.\n\t*/\n\treturn (s || \"\")\n\t\t.replace(/\\\\/g, '\\\\\\\\') // backslash\n\t\t.replace(/\"/g, '\\\\\"') // double quote character\n\t\t.replace(/'/g, \"\\\\'\") // single quote character\n\t\t.replace(/\\r/g, '\\\\r') // carriage return\n\t\t.replace(/\\n/g, '\\\\n') // line feed\n\t\t.replace(/[\\x00-\\x1f\\x80-\\uFFFF]/g, exports.escape); // non-ASCII characters\n};\n\n// Turns a string into a legal JSON string\n// Derived from peg.js, thanks to David Majda\nexports.jsonStringify = function(s) {\n\t// See http://www.json.org/\n\treturn (s || \"\")\n\t\t.replace(/\\\\/g, '\\\\\\\\') // backslash\n\t\t.replace(/\"/g, '\\\\\"') // double quote character\n\t\t.replace(/\\r/g, '\\\\r') // carriage return\n\t\t.replace(/\\n/g, '\\\\n') // line feed\n\t\t.replace(/\\x08/g, '\\\\b') // backspace\n\t\t.replace(/\\x0c/g, '\\\\f') // formfeed\n\t\t.replace(/\\t/g, '\\\\t') // tab\n\t\t.replace(/[\\x00-\\x1f\\x80-\\uFFFF]/g,function(s) {\n\t\t\treturn '\\\\u' + $tw.utils.pad(s.charCodeAt(0).toString(16).toUpperCase(),4);\n\t\t}); // non-ASCII characters\n};\n\n/*\nEscape the RegExp special characters with a preceding backslash\n*/\nexports.escapeRegExp = function(s) {\n return s.replace(/[\\-\\/\\\\\\^\\$\\*\\+\\?\\.\\(\\)\\|\\[\\]\\{\\}]/g, '\\\\$&');\n};\n\n// Checks whether a link target is external, i.e. not a tiddler title\nexports.isLinkExternal = function(to) {\n\tvar externalRegExp = /^(?:file|http|https|mailto|ftp|irc|news|data|skype):[^\\s<>{}\\[\\]`|\"\\\\^]+(?:\\/|\\b)/i;\n\treturn externalRegExp.test(to);\n};\n\nexports.nextTick = function(fn) {\n/*global window: false */\n\tif(typeof process === \"undefined\") {\n\t\t// Apparently it would be faster to use postMessage - http://dbaron.org/log/20100309-faster-timeouts\n\t\twindow.setTimeout(fn,4);\n\t} else {\n\t\tprocess.nextTick(fn);\n\t}\n};\n\n/*\nConvert a hyphenated CSS property name into a camel case one\n*/\nexports.unHyphenateCss = function(propName) {\n\treturn propName.replace(/-([a-z])/gi, function(match0,match1) {\n\t\treturn match1.toUpperCase();\n\t});\n};\n\n/*\nConvert a camelcase CSS property name into a dashed one (\"backgroundColor\" --> \"background-color\")\n*/\nexports.hyphenateCss = function(propName) {\n\treturn propName.replace(/([A-Z])/g, function(match0,match1) {\n\t\treturn \"-\" + match1.toLowerCase();\n\t});\n};\n\n/*\nParse a text reference of one of these forms:\n* title\n* !!field\n* title!!field\n* title##index\n* etc\nReturns an object with the following fields, all optional:\n* title: tiddler title\n* field: tiddler field name\n* index: JSON property index\n*/\nexports.parseTextReference = function(textRef) {\n\t// Separate out the title, field name and/or JSON indices\n\tvar reTextRef = /(?:(.*?)!!(.+))|(?:(.*?)##(.+))|(.*)/mg,\n\t\tmatch = reTextRef.exec(textRef),\n\t\tresult = {};\n\tif(match && reTextRef.lastIndex === textRef.length) {\n\t\t// Return the parts\n\t\tif(match[1]) {\n\t\t\tresult.title = match[1];\n\t\t}\n\t\tif(match[2]) {\n\t\t\tresult.field = match[2];\n\t\t}\n\t\tif(match[3]) {\n\t\t\tresult.title = match[3];\n\t\t}\n\t\tif(match[4]) {\n\t\t\tresult.index = match[4];\n\t\t}\n\t\tif(match[5]) {\n\t\t\tresult.title = match[5];\n\t\t}\n\t} else {\n\t\t// If we couldn't parse it\n\t\tresult.title = textRef\n\t}\n\treturn result;\n};\n\n/*\nChecks whether a string is a valid fieldname\n*/\nexports.isValidFieldName = function(name) {\n\tif(!name || typeof name !== \"string\") {\n\t\treturn false;\n\t}\n\tname = name.toLowerCase().trim();\n\tvar fieldValidatorRegEx = /^[a-z0-9\\-\\._]+$/mg;\n\treturn fieldValidatorRegEx.test(name);\n};\n\n/*\nExtract the version number from the meta tag or from the boot file\n*/\n\n// Browser version\nexports.extractVersionInfo = function() {\n\tif($tw.packageInfo) {\n\t\treturn $tw.packageInfo.version;\n\t} else {\n\t\tvar metatags = document.getElementsByTagName(\"meta\");\n\t\tfor(var t=0; t<metatags.length; t++) {\n\t\t\tvar m = metatags[t];\n\t\t\tif(m.name === \"tiddlywiki-version\") {\n\t\t\t\treturn m.content;\n\t\t\t}\n\t\t}\n\t}\n\treturn null;\n};\n\n/*\nGet the animation duration in ms\n*/\nexports.getAnimationDuration = function() {\n\treturn parseInt($tw.wiki.getTiddlerText(\"$:/config/AnimationDuration\",\"400\"),10) || 0;\n};\n\n/*\nHash a string to a number\nDerived from http://stackoverflow.com/a/15710692\n*/\nexports.hashString = function(str) {\n\treturn str.split(\"\").reduce(function(a,b) {\n\t\ta = ((a << 5) - a) + b.charCodeAt(0);\n\t\treturn a & a;\n\t},0);\n};\n\n/*\nDecode a base64 string\n*/\nexports.base64Decode = function(string64) {\n\treturn base64utf8.base64.decode.call(base64utf8,string64);\n};\n\n/*\nEncode a string to base64\n*/\nexports.base64Encode = function(string64) {\n\treturn base64utf8.base64.encode.call(base64utf8,string64);\n};\n\n/*\nConvert a hashmap into a tiddler dictionary format sequence of name:value pairs\n*/\nexports.makeTiddlerDictionary = function(data) {\n\tvar output = [];\n\tfor(var name in data) {\n\t\toutput.push(name + \": \" + data[name]);\n\t}\n\treturn output.join(\"\\n\");\n};\n\n/*\nHigh resolution microsecond timer for profiling\n*/\nexports.timer = function(base) {\n\tvar m;\n\tif($tw.node) {\n\t\tvar r = process.hrtime();\n\t\tm = r[0] * 1e3 + (r[1] / 1e6);\n\t} else if(window.performance) {\n\t\tm = performance.now();\n\t} else {\n\t\tm = Date.now();\n\t}\n\tif(typeof base !== \"undefined\") {\n\t\tm = m - base;\n\t}\n\treturn m;\n};\n\n/*\nConvert text and content type to a data URI\n*/\nexports.makeDataUri = function(text,type) {\n\ttype = type || \"text/vnd.tiddlywiki\";\n\tvar typeInfo = $tw.config.contentTypeInfo[type] || $tw.config.contentTypeInfo[\"text/plain\"],\n\t\tisBase64 = typeInfo.encoding === \"base64\",\n\t\tparts = [];\n\tparts.push(\"data:\");\n\tparts.push(type);\n\tparts.push(isBase64 ? \";base64\" : \"\");\n\tparts.push(\",\");\n\tparts.push(isBase64 ? text : encodeURIComponent(text));\n\treturn parts.join(\"\");\n};\n\n/*\nUseful for finding out the fully escaped CSS selector equivalent to a given tag. For example:\n\n$tw.utils.tagToCssSelector(\"$:/tags/Stylesheet\") --> tc-tagged-\\%24\\%3A\\%2Ftags\\%2FStylesheet\n*/\nexports.tagToCssSelector = function(tagName) {\n\treturn \"tc-tagged-\" + encodeURIComponent(tagName).replace(/[!\"#$%&'()*+,\\-./:;<=>?@[\\\\\\]^`{\\|}~,]/mg,function(c) {\n\t\treturn \"\\\\\" + c;\n\t});\n};\n\n/*\nIE does not have sign function\n*/\nexports.sign = Math.sign || function(x) {\n\tx = +x; // convert to a number\n\tif (x === 0 || isNaN(x)) {\n\t\treturn x;\n\t}\n\treturn x > 0 ? 1 : -1;\n};\n\n/*\nIE does not have an endsWith function\n*/\nexports.strEndsWith = function(str,ending,position) {\n\tif(str.endsWith) {\n\t\treturn str.endsWith(ending,position);\n\t} else {\n\t\tif (typeof position !== 'number' || !isFinite(position) || Math.floor(position) !== position || position > str.length) {\n\t\t\tposition = str.length;\n\t\t}\n\t\tposition -= ending.length;\n\t\tvar lastIndex = str.indexOf(ending, position);\n\t\treturn lastIndex !== -1 && lastIndex === position;\n\t}\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "utils"
},
"$:/core/modules/widgets/action-createtiddler.js": {
"title": "$:/core/modules/widgets/action-createtiddler.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/action-createtiddler.js\ntype: application/javascript\nmodule-type: widget\n\nAction widget to create a new tiddler with a unique name and specified fields.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar CreateTiddlerWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nCreateTiddlerWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nCreateTiddlerWidget.prototype.render = function(parent,nextSibling) {\n\tthis.computeAttributes();\n\tthis.execute();\n};\n\n/*\nCompute the internal state of the widget\n*/\nCreateTiddlerWidget.prototype.execute = function() {\n\tthis.actionBaseTitle = this.getAttribute(\"$basetitle\");\n\tthis.actionSaveTitle = this.getAttribute(\"$savetitle\");\n\tthis.actionSaveDraftTitle = this.getAttribute(\"$savedrafttitle\");\n\tthis.actionTimestamp = this.getAttribute(\"$timestamp\",\"yes\") === \"yes\";\n};\n\n/*\nRefresh the widget by ensuring our attributes are up to date\n*/\nCreateTiddlerWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\tif($tw.utils.count(changedAttributes) > 0) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t}\n\treturn this.refreshChildren(changedTiddlers);\n};\n\n/*\nInvoke the action associated with this widget\n*/\nCreateTiddlerWidget.prototype.invokeAction = function(triggeringWidget,event) {\n\tvar title = this.wiki.generateNewTitle(this.actionBaseTitle),\n\t\tfields = {},\n\t\tcreationFields,\n\t\tmodificationFields;\n\t$tw.utils.each(this.attributes,function(attribute,name) {\n\t\tif(name.charAt(0) !== \"$\") {\n\t\t\tfields[name] = attribute;\n\t\t}\n\t});\n\tif(this.actionTimestamp) {\n\t\tcreationFields = this.wiki.getCreationFields();\n\t\tmodificationFields = this.wiki.getModificationFields();\n\t}\n\tvar tiddler = this.wiki.addTiddler(new $tw.Tiddler(creationFields,fields,modificationFields,{title: title}));\n\tif(this.actionSaveTitle) {\n\t\tthis.wiki.setTextReference(this.actionSaveTitle,title,this.getVariable(\"currentTiddler\"));\n\t}\n\tif(this.actionSaveDraftTitle) {\n\t\tthis.wiki.setTextReference(this.actionSaveDraftTitle,this.wiki.generateDraftTitle(title),this.getVariable(\"currentTiddler\"));\n\t}\n\treturn true; // Action was invoked\n};\n\nexports[\"action-createtiddler\"] = CreateTiddlerWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/action-deletefield.js": {
"title": "$:/core/modules/widgets/action-deletefield.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/action-deletefield.js\ntype: application/javascript\nmodule-type: widget\n\nAction widget to delete fields of a tiddler.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar DeleteFieldWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nDeleteFieldWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nDeleteFieldWidget.prototype.render = function(parent,nextSibling) {\n\tthis.computeAttributes();\n\tthis.execute();\n};\n\n/*\nCompute the internal state of the widget\n*/\nDeleteFieldWidget.prototype.execute = function() {\n\tthis.actionTiddler = this.getAttribute(\"$tiddler\",this.getVariable(\"currentTiddler\"));\n\tthis.actionField = this.getAttribute(\"$field\");\n};\n\n/*\nRefresh the widget by ensuring our attributes are up to date\n*/\nDeleteFieldWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\tif(changedAttributes[\"$tiddler\"]) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t}\n\treturn this.refreshChildren(changedTiddlers);\n};\n\n/*\nInvoke the action associated with this widget\n*/\nDeleteFieldWidget.prototype.invokeAction = function(triggeringWidget,event) {\n\tvar self = this,\n\t\ttiddler = this.wiki.getTiddler(self.actionTiddler),\n\t\tremoveFields = {},\n\t\thasChanged = false;\n\tif(this.actionField) {\n\t\tremoveFields[this.actionField] = undefined;\n\t\tif(this.actionField in tiddler.fields) {\n\t\t\thasChanged = true;\n\t\t}\n\t}\n\tif(tiddler) {\n\t\t$tw.utils.each(this.attributes,function(attribute,name) {\n\t\t\tif(name.charAt(0) !== \"$\" && name !== \"title\") {\n\t\t\t\tremoveFields[name] = undefined;\n\t\t\t\thasChanged = true;\n\t\t\t}\n\t\t});\n\t\tif(hasChanged) {\n\t\t\tthis.wiki.addTiddler(new $tw.Tiddler(this.wiki.getCreationFields(),tiddler,removeFields,this.wiki.getModificationFields()));\t\t\t\n\t\t}\n\t}\n\treturn true; // Action was invoked\n};\n\nexports[\"action-deletefield\"] = DeleteFieldWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/action-deletetiddler.js": {
"title": "$:/core/modules/widgets/action-deletetiddler.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/action-deletetiddler.js\ntype: application/javascript\nmodule-type: widget\n\nAction widget to delete a tiddler.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar DeleteTiddlerWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nDeleteTiddlerWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nDeleteTiddlerWidget.prototype.render = function(parent,nextSibling) {\n\tthis.computeAttributes();\n\tthis.execute();\n};\n\n/*\nCompute the internal state of the widget\n*/\nDeleteTiddlerWidget.prototype.execute = function() {\n\tthis.actionFilter = this.getAttribute(\"$filter\");\n\tthis.actionTiddler = this.getAttribute(\"$tiddler\");\n};\n\n/*\nRefresh the widget by ensuring our attributes are up to date\n*/\nDeleteTiddlerWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\tif(changedAttributes[\"$filter\"] || changedAttributes[\"$tiddler\"]) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t}\n\treturn this.refreshChildren(changedTiddlers);\n};\n\n/*\nInvoke the action associated with this widget\n*/\nDeleteTiddlerWidget.prototype.invokeAction = function(triggeringWidget,event) {\n\tvar tiddlers = [];\n\tif(this.actionFilter) {\n\t\ttiddlers = this.wiki.filterTiddlers(this.actionFilter,this);\n\t}\n\tif(this.actionTiddler) {\n\t\ttiddlers.push(this.actionTiddler);\n\t}\n\tfor(var t=0; t<tiddlers.length; t++) {\n\t\tthis.wiki.deleteTiddler(tiddlers[t]);\n\t}\n\treturn true; // Action was invoked\n};\n\nexports[\"action-deletetiddler\"] = DeleteTiddlerWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/action-listops.js": {
"title": "$:/core/modules/widgets/action-listops.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/action-listops.js\ntype: application/javascript\nmodule-type: widget\n\nAction widget to apply list operations to any tiddler field (defaults to the 'list' field of the current tiddler)\n\n\\*/\n(function() {\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\nvar ActionListopsWidget = function(parseTreeNode, options) {\n\tthis.initialise(parseTreeNode, options);\n};\n/**\n * Inherit from the base widget class\n */\nActionListopsWidget.prototype = new Widget();\n/**\n * Render this widget into the DOM\n */\nActionListopsWidget.prototype.render = function(parent, nextSibling) {\n\tthis.computeAttributes();\n\tthis.execute();\n};\n/**\n * Compute the internal state of the widget\n */\nActionListopsWidget.prototype.execute = function() {\n\t// Get our parameters\n\tthis.target = this.getAttribute(\"$tiddler\", this.getVariable(\n\t\t\"currentTiddler\"));\n\tthis.filter = this.getAttribute(\"$filter\");\n\tthis.subfilter = this.getAttribute(\"$subfilter\");\n\tthis.listField = this.getAttribute(\"$field\", \"list\");\n\tthis.listIndex = this.getAttribute(\"$index\");\n\tthis.filtertags = this.getAttribute(\"$tags\");\n};\n/**\n * \tRefresh the widget by ensuring our attributes are up to date\n */\nActionListopsWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\tif(changedAttributes.$tiddler || changedAttributes.$filter ||\n\t\tchangedAttributes.$subfilter || changedAttributes.$field ||\n\t\tchangedAttributes.$index || changedAttributes.$tags) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t}\n\treturn this.refreshChildren(changedTiddlers);\n};\n/**\n * \tInvoke the action associated with this widget\n */\nActionListopsWidget.prototype.invokeAction = function(triggeringWidget,\n\tevent) {\n\t//Apply the specified filters to the lists\n\tvar field = this.listField,\n\t\tindex,\n\t\ttype = \"!!\",\n\t\tlist = this.listField;\n\tif(this.listIndex) {\n\t\tfield = undefined;\n\t\tindex = this.listIndex;\n\t\ttype = \"##\";\n\t\tlist = this.listIndex;\n\t}\n\tif(this.filter) {\n\t\tthis.wiki.setText(this.target, field, index, $tw.utils.stringifyList(\n\t\t\tthis.wiki\n\t\t\t.filterTiddlers(this.filter, this)));\n\t}\n\tif(this.subfilter) {\n\t\tvar subfilter = \"[list[\" + this.target + type + list + \"]] \" + this.subfilter;\n\t\tthis.wiki.setText(this.target, field, index, $tw.utils.stringifyList(\n\t\t\tthis.wiki\n\t\t\t.filterTiddlers(subfilter, this)));\n\t}\n\tif(this.filtertags) {\n\t\tvar tiddler = this.wiki.getTiddler(this.target),\n\t\t\toldtags = tiddler ? (tiddler.fields.tags || []).slice(0) : [],\n\t\t\ttagfilter = \"[list[\" + this.target + \"!!tags]] \" + this.filtertags,\n\t\t\tnewtags = this.wiki.filterTiddlers(tagfilter,this);\n\t\tif($tw.utils.stringifyList(oldtags.sort()) !== $tw.utils.stringifyList(newtags.sort())) {\n\t\t\tthis.wiki.setText(this.target,\"tags\",undefined,$tw.utils.stringifyList(newtags));\t\t\t\n\t\t}\n\t}\n\treturn true; // Action was invoked\n};\n\nexports[\"action-listops\"] = ActionListopsWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/action-navigate.js": {
"title": "$:/core/modules/widgets/action-navigate.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/action-navigate.js\ntype: application/javascript\nmodule-type: widget\n\nAction widget to navigate to a tiddler\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar NavigateWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nNavigateWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nNavigateWidget.prototype.render = function(parent,nextSibling) {\n\tthis.computeAttributes();\n\tthis.execute();\n};\n\n/*\nCompute the internal state of the widget\n*/\nNavigateWidget.prototype.execute = function() {\n\tthis.actionTo = this.getAttribute(\"$to\");\n\tthis.actionScroll = this.getAttribute(\"$scroll\");\n};\n\n/*\nRefresh the widget by ensuring our attributes are up to date\n*/\nNavigateWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\tif(changedAttributes[\"$to\"] || changedAttributes[\"$scroll\"]) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t}\n\treturn this.refreshChildren(changedTiddlers);\n};\n\n/*\nInvoke the action associated with this widget\n*/\nNavigateWidget.prototype.invokeAction = function(triggeringWidget,event) {\n\tevent = event || {};\n\tvar bounds = triggeringWidget && triggeringWidget.getBoundingClientRect && triggeringWidget.getBoundingClientRect(),\n\t\tsuppressNavigation = event.metaKey || event.ctrlKey || (event.button === 1);\n\tif(this.actionScroll === \"yes\") {\n\t\tsuppressNavigation = false;\n\t} else if(this.actionScroll === \"no\") {\n\t\tsuppressNavigation = true;\n\t}\n\tthis.dispatchEvent({\n\t\ttype: \"tm-navigate\",\n\t\tnavigateTo: this.actionTo === undefined ? this.getVariable(\"currentTiddler\") : this.actionTo,\n\t\tnavigateFromTitle: this.getVariable(\"storyTiddler\"),\n\t\tnavigateFromNode: triggeringWidget,\n\t\tnavigateFromClientRect: bounds && { top: bounds.top, left: bounds.left, width: bounds.width, right: bounds.right, bottom: bounds.bottom, height: bounds.height\n\t\t},\n\t\tnavigateSuppressNavigation: suppressNavigation\n\t});\n\treturn true; // Action was invoked\n};\n\nexports[\"action-navigate\"] = NavigateWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/action-sendmessage.js": {
"title": "$:/core/modules/widgets/action-sendmessage.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/action-sendmessage.js\ntype: application/javascript\nmodule-type: widget\n\nAction widget to send a message\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar SendMessageWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nSendMessageWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nSendMessageWidget.prototype.render = function(parent,nextSibling) {\n\tthis.computeAttributes();\n\tthis.execute();\n};\n\n/*\nCompute the internal state of the widget\n*/\nSendMessageWidget.prototype.execute = function() {\n\tthis.actionMessage = this.getAttribute(\"$message\");\n\tthis.actionParam = this.getAttribute(\"$param\");\n\tthis.actionName = this.getAttribute(\"$name\");\n\tthis.actionValue = this.getAttribute(\"$value\",\"\");\n};\n\n/*\nRefresh the widget by ensuring our attributes are up to date\n*/\nSendMessageWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\tif(Object.keys(changedAttributes).length) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t}\n\treturn this.refreshChildren(changedTiddlers);\n};\n\n/*\nInvoke the action associated with this widget\n*/\nSendMessageWidget.prototype.invokeAction = function(triggeringWidget,event) {\n\t// Get the string parameter\n\tvar param = this.actionParam;\n\t// Assemble the attributes as a hashmap\n\tvar paramObject = Object.create(null);\n\tvar count = 0;\n\t$tw.utils.each(this.attributes,function(attribute,name) {\n\t\tif(name.charAt(0) !== \"$\") {\n\t\t\tparamObject[name] = attribute;\n\t\t\tcount++;\n\t\t}\n\t});\n\t// Add name/value pair if present\n\tif(this.actionName) {\n\t\tparamObject[this.actionName] = this.actionValue;\n\t}\n\t// Dispatch the message\n\tthis.dispatchEvent({\n\t\ttype: this.actionMessage,\n\t\tparam: param,\n\t\tparamObject: paramObject,\n\t\ttiddlerTitle: this.getVariable(\"currentTiddler\"),\n\t\tnavigateFromTitle: this.getVariable(\"storyTiddler\"),\n\t\tevent: event\n\t});\n\treturn true; // Action was invoked\n};\n\nexports[\"action-sendmessage\"] = SendMessageWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/action-setfield.js": {
"title": "$:/core/modules/widgets/action-setfield.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/action-setfield.js\ntype: application/javascript\nmodule-type: widget\n\nAction widget to set a single field or index on a tiddler.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar SetFieldWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nSetFieldWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nSetFieldWidget.prototype.render = function(parent,nextSibling) {\n\tthis.computeAttributes();\n\tthis.execute();\n};\n\n/*\nCompute the internal state of the widget\n*/\nSetFieldWidget.prototype.execute = function() {\n\tthis.actionTiddler = this.getAttribute(\"$tiddler\",this.getVariable(\"currentTiddler\"));\n\tthis.actionField = this.getAttribute(\"$field\");\n\tthis.actionIndex = this.getAttribute(\"$index\");\n\tthis.actionValue = this.getAttribute(\"$value\");\n\tthis.actionTimestamp = this.getAttribute(\"$timestamp\",\"yes\") === \"yes\";\n};\n\n/*\nRefresh the widget by ensuring our attributes are up to date\n*/\nSetFieldWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\tif(changedAttributes[\"$tiddler\"] || changedAttributes[\"$field\"] || changedAttributes[\"$index\"] || changedAttributes[\"$value\"]) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t}\n\treturn this.refreshChildren(changedTiddlers);\n};\n\n/*\nInvoke the action associated with this widget\n*/\nSetFieldWidget.prototype.invokeAction = function(triggeringWidget,event) {\n\tvar self = this,\n\t\toptions = {};\n\toptions.suppressTimestamp = !this.actionTimestamp;\n\tif((typeof this.actionField == \"string\") || (typeof this.actionIndex == \"string\") || (typeof this.actionValue == \"string\")) {\n\t\tthis.wiki.setText(this.actionTiddler,this.actionField,this.actionIndex,this.actionValue,options);\n\t}\n\t$tw.utils.each(this.attributes,function(attribute,name) {\n\t\tif(name.charAt(0) !== \"$\") {\n\t\t\tself.wiki.setText(self.actionTiddler,name,undefined,attribute,options);\n\t\t}\n\t});\n\treturn true; // Action was invoked\n};\n\nexports[\"action-setfield\"] = SetFieldWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/browse.js": {
"title": "$:/core/modules/widgets/browse.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/browse.js\ntype: application/javascript\nmodule-type: widget\n\nBrowse widget for browsing for files to import\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar BrowseWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nBrowseWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nBrowseWidget.prototype.render = function(parent,nextSibling) {\n\tvar self = this;\n\t// Remember parent\n\tthis.parentDomNode = parent;\n\t// Compute attributes and execute state\n\tthis.computeAttributes();\n\tthis.execute();\n\t// Create element\n\tvar domNode = this.document.createElement(\"input\");\n\tdomNode.setAttribute(\"type\",\"file\");\n\tif(this.browseMultiple) {\n\t\tdomNode.setAttribute(\"multiple\",\"multiple\");\n\t}\n\tif(this.tooltip) {\n\t\tdomNode.setAttribute(\"title\",this.tooltip);\n\t}\n\t// Nw.js supports \"nwsaveas\" to force a \"save as\" dialogue that allows a new or existing file to be selected\n\tif(this.nwsaveas) {\n\t\tdomNode.setAttribute(\"nwsaveas\",this.nwsaveas);\n\t}\n\t// Nw.js supports \"webkitdirectory\" and \"nwdirectory\" to allow a directory to be selected\n\tif(this.webkitdirectory) {\n\t\tdomNode.setAttribute(\"webkitdirectory\",this.webkitdirectory);\n\t}\n\tif(this.nwdirectory) {\n\t\tdomNode.setAttribute(\"nwdirectory\",this.nwdirectory);\n\t}\n\t// Add a click event handler\n\tdomNode.addEventListener(\"change\",function (event) {\n\t\tif(self.message) {\n\t\t\tself.dispatchEvent({type: self.message, param: self.param, files: event.target.files});\n\t\t} else {\n\t\t\tself.wiki.readFiles(event.target.files,{\n\t\t\t\tcallback: function(tiddlerFieldsArray) {\n\t\t\t\t\tself.dispatchEvent({type: \"tm-import-tiddlers\", param: JSON.stringify(tiddlerFieldsArray)});\n\t\t\t\t},\n\t\t\t\tdeserializer: self.deserializer\n\t\t\t});\n\t\t}\n\t\treturn false;\n\t},false);\n\t// Insert element\n\tparent.insertBefore(domNode,nextSibling);\n\tthis.renderChildren(domNode,null);\n\tthis.domNodes.push(domNode);\n};\n\n/*\nCompute the internal state of the widget\n*/\nBrowseWidget.prototype.execute = function() {\n\tthis.browseMultiple = this.getAttribute(\"multiple\");\n\tthis.deserializer = this.getAttribute(\"deserializer\");\n\tthis.message = this.getAttribute(\"message\");\n\tthis.param = this.getAttribute(\"param\");\n\tthis.tooltip = this.getAttribute(\"tooltip\");\n\tthis.nwsaveas = this.getAttribute(\"nwsaveas\");\n\tthis.webkitdirectory = this.getAttribute(\"webkitdirectory\");\n\tthis.nwdirectory = this.getAttribute(\"nwdirectory\");\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nBrowseWidget.prototype.refresh = function(changedTiddlers) {\n\treturn false;\n};\n\nexports.browse = BrowseWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/button.js": {
"title": "$:/core/modules/widgets/button.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/button.js\ntype: application/javascript\nmodule-type: widget\n\nButton widget\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar ButtonWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nButtonWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nButtonWidget.prototype.render = function(parent,nextSibling) {\n\tvar self = this;\n\t// Remember parent\n\tthis.parentDomNode = parent;\n\t// Compute attributes and execute state\n\tthis.computeAttributes();\n\tthis.execute();\n\t// Create element\n\tvar tag = \"button\";\n\tif(this.buttonTag && $tw.config.htmlUnsafeElements.indexOf(this.buttonTag) === -1) {\n\t\ttag = this.buttonTag;\n\t}\n\tvar domNode = this.document.createElement(tag);\n\t// Assign classes\n\tvar classes = this[\"class\"].split(\" \") || [],\n\t\tisPoppedUp = (this.popup || this.popupTitle) && this.isPoppedUp();\n\tif(this.selectedClass) {\n\t\tif((this.set || this.setTitle) && this.setTo && this.isSelected()) {\n\t\t\t$tw.utils.pushTop(classes,this.selectedClass.split(\" \"));\n\t\t}\n\t\tif(isPoppedUp) {\n\t\t\t$tw.utils.pushTop(classes,this.selectedClass.split(\" \"));\n\t\t}\n\t}\n\tif(isPoppedUp) {\n\t\t$tw.utils.pushTop(classes,\"tc-popup-handle\");\n\t}\n\tdomNode.className = classes.join(\" \");\n\t// Assign other attributes\n\tif(this.style) {\n\t\tdomNode.setAttribute(\"style\",this.style);\n\t}\n\tif(this.tooltip) {\n\t\tdomNode.setAttribute(\"title\",this.tooltip);\n\t}\n\tif(this[\"aria-label\"]) {\n\t\tdomNode.setAttribute(\"aria-label\",this[\"aria-label\"]);\n\t}\n\t// Add a click event handler\n\tdomNode.addEventListener(\"click\",function (event) {\n\t\tvar handled = false;\n\t\tif(self.invokeActions(self,event)) {\n\t\t\thandled = true;\n\t\t}\n\t\tif(self.to) {\n\t\t\tself.navigateTo(event);\n\t\t\thandled = true;\n\t\t}\n\t\tif(self.message) {\n\t\t\tself.dispatchMessage(event);\n\t\t\thandled = true;\n\t\t}\n\t\tif(self.popup || self.popupTitle) {\n\t\t\tself.triggerPopup(event);\n\t\t\thandled = true;\n\t\t}\n\t\tif(self.set || self.setTitle) {\n\t\t\tself.setTiddler();\n\t\t\thandled = true;\n\t\t}\n\t\tif(self.actions) {\n\t\t\tself.invokeActionString(self.actions,self,event);\n\t\t}\n\t\tif(handled) {\n\t\t\tevent.preventDefault();\n\t\t\tevent.stopPropagation();\n\t\t}\n\t\treturn handled;\n\t},false);\n\t// Make it draggable if required\n\tif(this.dragTiddler || this.dragFilter) {\n\t\t$tw.utils.makeDraggable({\n\t\t\tdomNode: domNode,\n\t\t\tdragTiddlerFn: function() {return self.dragTiddler;},\n\t\t\tdragFilterFn: function() {return self.dragFilter;},\n\t\t\twidget: this\n\t\t});\n\t}\n\t// Insert element\n\tparent.insertBefore(domNode,nextSibling);\n\tthis.renderChildren(domNode,null);\n\tthis.domNodes.push(domNode);\n};\n\n/*\nWe don't allow actions to propagate because we trigger actions ourselves\n*/\nButtonWidget.prototype.allowActionPropagation = function() {\n\treturn false;\n};\n\nButtonWidget.prototype.getBoundingClientRect = function() {\n\treturn this.domNodes[0].getBoundingClientRect();\n};\n\nButtonWidget.prototype.isSelected = function() {\n return this.setTitle ? (this.setField ? this.wiki.getTiddler(this.setTitle).getFieldString(this.setField) === this.setTo :\n\t\t(this.setIndex ? this.wiki.extractTiddlerDataItem(this.setTitle,this.setIndex) === this.setTo :\n\t\t\tthis.wiki.getTiddlerText(this.setTitle))) || this.defaultSetValue || this.getVariable(\"currentTiddler\") :\n\t\tthis.wiki.getTextReference(this.set,this.defaultSetValue,this.getVariable(\"currentTiddler\")) === this.setTo;\n};\n\nButtonWidget.prototype.isPoppedUp = function() {\n\tvar tiddler = this.popupTitle ? this.wiki.getTiddler(this.popupTitle) : this.wiki.getTiddler(this.popup);\n\tvar result = tiddler && tiddler.fields.text ? $tw.popup.readPopupState(tiddler.fields.text) : false;\n\treturn result;\n};\n\nButtonWidget.prototype.navigateTo = function(event) {\n\tvar bounds = this.getBoundingClientRect();\n\tthis.dispatchEvent({\n\t\ttype: \"tm-navigate\",\n\t\tnavigateTo: this.to,\n\t\tnavigateFromTitle: this.getVariable(\"storyTiddler\"),\n\t\tnavigateFromNode: this,\n\t\tnavigateFromClientRect: { top: bounds.top, left: bounds.left, width: bounds.width, right: bounds.right, bottom: bounds.bottom, height: bounds.height\n\t\t},\n\t\tnavigateSuppressNavigation: event.metaKey || event.ctrlKey || (event.button === 1),\n\t\tevent: event\n\t});\n};\n\nButtonWidget.prototype.dispatchMessage = function(event) {\n\tthis.dispatchEvent({type: this.message, param: this.param, tiddlerTitle: this.getVariable(\"currentTiddler\"), event: event});\n};\n\nButtonWidget.prototype.triggerPopup = function(event) {\n\tif(this.popupTitle) {\n\t\t$tw.popup.triggerPopup({\n\t\t\tdomNode: this.domNodes[0],\n\t\t\ttitle: this.popupTitle,\n\t\t\twiki: this.wiki,\n\t\t\tnoStateReference: true\n\t\t});\n\t} else {\n\t\t$tw.popup.triggerPopup({\n\t\t\tdomNode: this.domNodes[0],\n\t\t\ttitle: this.popup,\n\t\t\twiki: this.wiki\n\t\t});\n\t}\n};\n\nButtonWidget.prototype.setTiddler = function() {\n\tif(this.setTitle) {\n\t\tthis.setField ? this.wiki.setText(this.setTitle,this.setField,undefined,this.setTo) :\n\t\t\t\t(this.setIndex ? this.wiki.setText(this.setTitle,undefined,this.setIndex,this.setTo) :\n\t\t\t\tthis.wiki.setText(this.setTitle,\"text\",undefined,this.setTo));\n\t} else {\n\t\tthis.wiki.setTextReference(this.set,this.setTo,this.getVariable(\"currentTiddler\"));\n\t}\n};\n\n/*\nCompute the internal state of the widget\n*/\nButtonWidget.prototype.execute = function() {\n\t// Get attributes\n\tthis.actions = this.getAttribute(\"actions\");\n\tthis.to = this.getAttribute(\"to\");\n\tthis.message = this.getAttribute(\"message\");\n\tthis.param = this.getAttribute(\"param\");\n\tthis.set = this.getAttribute(\"set\");\n\tthis.setTo = this.getAttribute(\"setTo\");\n\tthis.popup = this.getAttribute(\"popup\");\n\tthis.hover = this.getAttribute(\"hover\");\n\tthis[\"class\"] = this.getAttribute(\"class\",\"\");\n\tthis[\"aria-label\"] = this.getAttribute(\"aria-label\");\n\tthis.tooltip = this.getAttribute(\"tooltip\");\n\tthis.style = this.getAttribute(\"style\");\n\tthis.selectedClass = this.getAttribute(\"selectedClass\");\n\tthis.defaultSetValue = this.getAttribute(\"default\",\"\");\n\tthis.buttonTag = this.getAttribute(\"tag\");\n\tthis.dragTiddler = this.getAttribute(\"dragTiddler\");\n\tthis.dragFilter = this.getAttribute(\"dragFilter\");\n\tthis.setTitle = this.getAttribute(\"setTitle\");\n\tthis.setField = this.getAttribute(\"setField\");\n\tthis.setIndex = this.getAttribute(\"setIndex\");\n\tthis.popupTitle = this.getAttribute(\"popupTitle\");\n\t// Make child widgets\n\tthis.makeChildWidgets();\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nButtonWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\tif(changedAttributes.to || changedAttributes.message || changedAttributes.param || changedAttributes.set || changedAttributes.setTo || changedAttributes.popup || changedAttributes.hover || changedAttributes[\"class\"] || changedAttributes.selectedClass || changedAttributes.style || changedAttributes.dragFilter || changedAttributes.dragTiddler || (this.set && changedTiddlers[this.set]) || (this.popup && changedTiddlers[this.popup]) || (this.popupTitle && changedTiddlers[this.popupTitle]) || changedAttributes.setTitle || changedAttributes.setField || changedAttributes.setIndex || changedAttributes.popupTitle) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t}\n\treturn this.refreshChildren(changedTiddlers);\n};\n\nexports.button = ButtonWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/checkbox.js": {
"title": "$:/core/modules/widgets/checkbox.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/checkbox.js\ntype: application/javascript\nmodule-type: widget\n\nCheckbox widget\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar CheckboxWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nCheckboxWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nCheckboxWidget.prototype.render = function(parent,nextSibling) {\n\t// Save the parent dom node\n\tthis.parentDomNode = parent;\n\t// Compute our attributes\n\tthis.computeAttributes();\n\t// Execute our logic\n\tthis.execute();\n\t// Create our elements\n\tthis.labelDomNode = this.document.createElement(\"label\");\n\tthis.labelDomNode.setAttribute(\"class\",this.checkboxClass);\n\tthis.inputDomNode = this.document.createElement(\"input\");\n\tthis.inputDomNode.setAttribute(\"type\",\"checkbox\");\n\tif(this.getValue()) {\n\t\tthis.inputDomNode.setAttribute(\"checked\",\"true\");\n\t}\n\tthis.labelDomNode.appendChild(this.inputDomNode);\n\tthis.spanDomNode = this.document.createElement(\"span\");\n\tthis.labelDomNode.appendChild(this.spanDomNode);\n\t// Add a click event handler\n\t$tw.utils.addEventListeners(this.inputDomNode,[\n\t\t{name: \"change\", handlerObject: this, handlerMethod: \"handleChangeEvent\"}\n\t]);\n\t// Insert the label into the DOM and render any children\n\tparent.insertBefore(this.labelDomNode,nextSibling);\n\tthis.renderChildren(this.spanDomNode,null);\n\tthis.domNodes.push(this.labelDomNode);\n};\n\nCheckboxWidget.prototype.getValue = function() {\n\tvar tiddler = this.wiki.getTiddler(this.checkboxTitle);\n\tif(tiddler) {\n\t\tif(this.checkboxTag) {\n\t\t\tif(this.checkboxInvertTag) {\n\t\t\t\treturn !tiddler.hasTag(this.checkboxTag);\n\t\t\t} else {\n\t\t\t\treturn tiddler.hasTag(this.checkboxTag);\n\t\t\t}\n\t\t}\n\t\tif(this.checkboxField) {\n\t\t\tvar value;\n\t\t\tif($tw.utils.hop(tiddler.fields,this.checkboxField)) {\n\t\t\t\tvalue = tiddler.fields[this.checkboxField] || \"\";\n\t\t\t} else {\n\t\t\t\tvalue = this.checkboxDefault || \"\";\n\t\t\t}\n\t\t\tif(value === this.checkboxChecked) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\tif(value === this.checkboxUnchecked) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\t\tif(this.checkboxIndex) {\n\t\t\tvar value = this.wiki.extractTiddlerDataItem(tiddler,this.checkboxIndex,this.checkboxDefault || \"\");\n\t\t\tif(value === this.checkboxChecked) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\tif(value === this.checkboxUnchecked) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\t} else {\n\t\tif(this.checkboxTag) {\n\t\t\treturn false;\n\t\t}\n\t\tif(this.checkboxField) {\n\t\t\tif(this.checkboxDefault === this.checkboxChecked) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\tif(this.checkboxDefault === this.checkboxUnchecked) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\t}\n\treturn false;\n};\n\nCheckboxWidget.prototype.handleChangeEvent = function(event) {\n\tvar checked = this.inputDomNode.checked,\n\t\ttiddler = this.wiki.getTiddler(this.checkboxTitle),\n\t\tfallbackFields = {text: \"\"},\n\t\tnewFields = {title: this.checkboxTitle},\n\t\thasChanged = false,\n\t\ttagCheck = false,\n\t\thasTag = tiddler && tiddler.hasTag(this.checkboxTag),\n\t\tvalue = checked ? this.checkboxChecked : this.checkboxUnchecked;\n\tif(this.checkboxTag && this.checkboxInvertTag === \"yes\") {\n\t\ttagCheck = hasTag === checked;\n\t} else {\n\t\ttagCheck = hasTag !== checked;\n\t}\n\t// Set the tag if specified\n\tif(this.checkboxTag && (!tiddler || tagCheck)) {\n\t\tnewFields.tags = tiddler ? (tiddler.fields.tags || []).slice(0) : [];\n\t\tvar pos = newFields.tags.indexOf(this.checkboxTag);\n\t\tif(pos !== -1) {\n\t\t\tnewFields.tags.splice(pos,1);\n\t\t}\n\t\tif(this.checkboxInvertTag === \"yes\" && !checked) {\n\t\t\tnewFields.tags.push(this.checkboxTag);\n\t\t} else if(this.checkboxInvertTag !== \"yes\" && checked) {\n\t\t\tnewFields.tags.push(this.checkboxTag);\n\t\t}\n\t\thasChanged = true;\n\t}\n\t// Set the field if specified\n\tif(this.checkboxField) {\n\t\tif(!tiddler || tiddler.fields[this.checkboxField] !== value) {\n\t\t\tnewFields[this.checkboxField] = value;\n\t\t\thasChanged = true;\n\t\t}\n\t}\n\t// Set the index if specified\n\tif(this.checkboxIndex) {\n\t\tvar indexValue = this.wiki.extractTiddlerDataItem(this.checkboxTitle,this.checkboxIndex);\n\t\tif(!tiddler || indexValue !== value) {\n\t\t\thasChanged = true;\n\t\t}\n\t}\n\tif(hasChanged) {\n\t\tif(this.checkboxIndex) {\n\t\t\tthis.wiki.setText(this.checkboxTitle,\"\",this.checkboxIndex,value);\n\t\t} else {\n\t\t\tthis.wiki.addTiddler(new $tw.Tiddler(this.wiki.getCreationFields(),fallbackFields,tiddler,newFields,this.wiki.getModificationFields()));\n\t\t}\n\t}\n\t// Trigger actions\n\tif(this.checkboxActions) {\n\t\tthis.invokeActionString(this.checkboxActions,this,event);\n\t}\n\tif(this.checkboxCheckActions && checked) {\n\t\tthis.invokeActionString(this.checkboxCheckActions,this,event);\n\t}\n\tif(this.checkboxUncheckActions && !checked) {\n\t\tthis.invokeActionString(this.checkboxUncheckActions,this,event);\n\t}\n};\n\n/*\nCompute the internal state of the widget\n*/\nCheckboxWidget.prototype.execute = function() {\n\t// Get the parameters from the attributes\n\tthis.checkboxActions = this.getAttribute(\"actions\");\n\tthis.checkboxCheckActions = this.getAttribute(\"checkactions\");\n\tthis.checkboxUncheckActions = this.getAttribute(\"uncheckactions\");\n\tthis.checkboxTitle = this.getAttribute(\"tiddler\",this.getVariable(\"currentTiddler\"));\n\tthis.checkboxTag = this.getAttribute(\"tag\");\n\tthis.checkboxField = this.getAttribute(\"field\");\n\tthis.checkboxIndex = this.getAttribute(\"index\");\n\tthis.checkboxChecked = this.getAttribute(\"checked\");\n\tthis.checkboxUnchecked = this.getAttribute(\"unchecked\");\n\tthis.checkboxDefault = this.getAttribute(\"default\");\n\tthis.checkboxClass = this.getAttribute(\"class\",\"\");\n\tthis.checkboxInvertTag = this.getAttribute(\"invertTag\",\"\");\n\t// Make the child widgets\n\tthis.makeChildWidgets();\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nCheckboxWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\tif(changedAttributes.tiddler || changedAttributes.tag || changedAttributes.invertTag || changedAttributes.field || changedAttributes.index || changedAttributes.checked || changedAttributes.unchecked || changedAttributes[\"default\"] || changedAttributes[\"class\"]) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t} else {\n\t\tvar refreshed = false;\n\t\tif(changedTiddlers[this.checkboxTitle]) {\n\t\t\tthis.inputDomNode.checked = this.getValue();\n\t\t\trefreshed = true;\n\t\t}\n\t\treturn this.refreshChildren(changedTiddlers) || refreshed;\n\t}\n};\n\nexports.checkbox = CheckboxWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/codeblock.js": {
"title": "$:/core/modules/widgets/codeblock.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/codeblock.js\ntype: application/javascript\nmodule-type: widget\n\nCode block node widget\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar CodeBlockWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nCodeBlockWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nCodeBlockWidget.prototype.render = function(parent,nextSibling) {\n\tthis.parentDomNode = parent;\n\tthis.computeAttributes();\n\tthis.execute();\n\tvar codeNode = this.document.createElement(\"code\"),\n\t\tdomNode = this.document.createElement(\"pre\");\n\tcodeNode.appendChild(this.document.createTextNode(this.getAttribute(\"code\")));\n\tdomNode.appendChild(codeNode);\n\tparent.insertBefore(domNode,nextSibling);\n\tthis.domNodes.push(domNode);\n\tif(this.postRender) {\n\t\tthis.postRender();\n\t}\n};\n\n/*\nCompute the internal state of the widget\n*/\nCodeBlockWidget.prototype.execute = function() {\n\tthis.language = this.getAttribute(\"language\");\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nCodeBlockWidget.prototype.refresh = function(changedTiddlers) {\n\treturn false;\n};\n\nexports.codeblock = CodeBlockWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/count.js": {
"title": "$:/core/modules/widgets/count.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/count.js\ntype: application/javascript\nmodule-type: widget\n\nCount widget\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar CountWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nCountWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nCountWidget.prototype.render = function(parent,nextSibling) {\n\tthis.parentDomNode = parent;\n\tthis.computeAttributes();\n\tthis.execute();\n\tvar textNode = this.document.createTextNode(this.currentCount);\n\tparent.insertBefore(textNode,nextSibling);\n\tthis.domNodes.push(textNode);\n};\n\n/*\nCompute the internal state of the widget\n*/\nCountWidget.prototype.execute = function() {\n\t// Get parameters from our attributes\n\tthis.filter = this.getAttribute(\"filter\");\n\t// Execute the filter\n\tif(this.filter) {\n\t\tthis.currentCount = this.wiki.filterTiddlers(this.filter,this).length;\n\t} else {\n\t\tthis.currentCount = undefined;\n\t}\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nCountWidget.prototype.refresh = function(changedTiddlers) {\n\t// Re-execute the filter to get the count\n\tthis.computeAttributes();\n\tvar oldCount = this.currentCount;\n\tthis.execute();\n\tif(this.currentCount !== oldCount) {\n\t\t// Regenerate and rerender the widget and replace the existing DOM node\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t} else {\n\t\treturn false;\n\t}\n\n};\n\nexports.count = CountWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/diff-text.js": {
"title": "$:/core/modules/widgets/diff-text.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/diff-text.js\ntype: application/javascript\nmodule-type: widget\n\nWidget to display a diff between two texts\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget,\n\tdmp = require(\"$:/core/modules/utils/diff-match-patch/diff_match_patch.js\");\n\nvar DiffTextWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nDiffTextWidget.prototype = new Widget();\n\nDiffTextWidget.prototype.invisibleCharacters = {\n\t\"\\n\": \"↩︎\\n\",\n\t\"\\r\": \"⇠\",\n\t\"\\t\": \"⇥\\t\"\n};\n\n/*\nRender this widget into the DOM\n*/\nDiffTextWidget.prototype.render = function(parent,nextSibling) {\n\tthis.parentDomNode = parent;\n\tthis.computeAttributes();\n\tthis.execute();\n\t// Create the diff\n\tvar dmpObject = new dmp.diff_match_patch(),\n\t\tdiffs = dmpObject.diff_main(this.getAttribute(\"source\"),this.getAttribute(\"dest\"));\n\t// Apply required cleanup\n\tswitch(this.getAttribute(\"cleanup\",\"semantic\")) {\n\t\tcase \"none\":\n\t\t\t// No cleanup\n\t\t\tbreak;\n\t\tcase \"efficiency\":\n\t\t\tdmpObject.diff_cleanupEfficiency(diffs);\n\t\t\tbreak;\n\t\tdefault: // case \"semantic\"\n\t\t\tdmpObject.diff_cleanupSemantic(diffs);\n\t\t\tbreak;\n\t}\n\t// Create the elements\n\tvar domContainer = this.document.createElement(\"div\"), \n\t\tdomDiff = this.createDiffDom(diffs);\n\tparent.insertBefore(domContainer,nextSibling);\n\t// Set variables\n\tthis.setVariable(\"diff-count\",diffs.reduce(function(acc,diff) {\n\t\tif(diff[0] !== dmp.DIFF_EQUAL) {\n\t\t\tacc++;\n\t\t}\n\t\treturn acc;\n\t},0).toString());\n\t// Render child widgets\n\tthis.renderChildren(domContainer,null);\n\t// Render the diff\n\tdomContainer.appendChild(domDiff);\n\t// Save our container\n\tthis.domNodes.push(domContainer);\n};\n\n/*\nCreate DOM elements representing a list of diffs\n*/\nDiffTextWidget.prototype.createDiffDom = function(diffs) {\n\tvar self = this;\n\t// Create the element and assign the attributes\n\tvar domPre = this.document.createElement(\"pre\"),\n\t\tdomCode = this.document.createElement(\"code\");\n\t$tw.utils.each(diffs,function(diff) {\n\t\tvar tag = diff[0] === dmp.DIFF_INSERT ? \"ins\" : (diff[0] === dmp.DIFF_DELETE ? \"del\" : \"span\"),\n\t\t\tclassName = diff[0] === dmp.DIFF_INSERT ? \"tc-diff-insert\" : (diff[0] === dmp.DIFF_DELETE ? \"tc-diff-delete\" : \"tc-diff-equal\"),\n\t\t\tdom = self.document.createElement(tag),\n\t\t\ttext = diff[1],\n\t\t\tcurrPos = 0,\n\t\t\tre = /([\\x00-\\x1F])/mg,\n\t\t\tmatch = re.exec(text),\n\t\t\tspan,\n\t\t\tprintable;\n\t\tdom.className = className;\n\t\twhile(match) {\n\t\t\tif(currPos < match.index) {\n\t\t\t\tdom.appendChild(self.document.createTextNode(text.slice(currPos,match.index)));\n\t\t\t}\n\t\t\tspan = self.document.createElement(\"span\");\n\t\t\tspan.className = \"tc-diff-invisible\";\n\t\t\tprintable = self.invisibleCharacters[match[0]] || (\"[0x\" + match[0].charCodeAt(0).toString(16) + \"]\");\n\t\t\tspan.appendChild(self.document.createTextNode(printable));\n\t\t\tdom.appendChild(span);\n\t\t\tcurrPos = match.index + match[0].length;\n\t\t\tmatch = re.exec(text);\n\t\t}\n\t\tif(currPos < text.length) {\n\t\t\tdom.appendChild(self.document.createTextNode(text.slice(currPos)));\n\t\t}\n\t\tdomCode.appendChild(dom);\n\t});\n\tdomPre.appendChild(domCode);\n\treturn domPre;\n};\n\n/*\nCompute the internal state of the widget\n*/\nDiffTextWidget.prototype.execute = function() {\n\t// Make child widgets\n\tvar parseTreeNodes;\n\tif(this.parseTreeNode && this.parseTreeNode.children && this.parseTreeNode.children.length > 0) {\n\t\tparseTreeNodes = this.parseTreeNode.children;\n\t} else {\n\t\tparseTreeNodes = [{\n\t\t\ttype: \"transclude\",\n\t\t\tattributes: {\n\t\t\t\ttiddler: {type: \"string\", value: \"$:/language/Diffs/CountMessage\"}\n\t\t\t}\n\t\t}];\n\t}\n\tthis.makeChildWidgets(parseTreeNodes);\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nDiffTextWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\tif(changedAttributes.source || changedAttributes.dest || changedAttributes.cleanup) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t} else {\n\t\treturn this.refreshChildren(changedTiddlers);\n\t}\n};\n\nexports[\"diff-text\"] = DiffTextWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/draggable.js": {
"title": "$:/core/modules/widgets/draggable.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/draggable.js\ntype: application/javascript\nmodule-type: widget\n\nDraggable widget\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar DraggableWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nDraggableWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nDraggableWidget.prototype.render = function(parent,nextSibling) {\n\tvar self = this;\n\t// Save the parent dom node\n\tthis.parentDomNode = parent;\n\t// Compute our attributes\n\tthis.computeAttributes();\n\t// Execute our logic\n\tthis.execute();\n\t// Sanitise the specified tag\n\tvar tag = this.draggableTag;\n\tif($tw.config.htmlUnsafeElements.indexOf(tag) !== -1) {\n\t\ttag = \"div\";\n\t}\n\t// Create our element\n\tvar domNode = this.document.createElement(tag);\n\t// Assign classes\n\tvar classes = [\"tc-draggable\"];\n\tif(this.draggableClasses) {\n\t\tclasses.push(this.draggableClasses);\n\t}\n\tdomNode.setAttribute(\"class\",classes.join(\" \"));\n\t// Add event handlers\n\t$tw.utils.makeDraggable({\n\t\tdomNode: domNode,\n\t\tdragTiddlerFn: function() {return self.getAttribute(\"tiddler\");},\n\t\tdragFilterFn: function() {return self.getAttribute(\"filter\");},\n\t\tstartActions: self.startActions,\n\t\tendActions: self.endActions,\n\t\twidget: this\n\t});\n\t// Insert the link into the DOM and render any children\n\tparent.insertBefore(domNode,nextSibling);\n\tthis.renderChildren(domNode,null);\n\tthis.domNodes.push(domNode);\n};\n\n/*\nCompute the internal state of the widget\n*/\nDraggableWidget.prototype.execute = function() {\n\t// Pick up our attributes\n\tthis.draggableTag = this.getAttribute(\"tag\",\"div\");\n\tthis.draggableClasses = this.getAttribute(\"class\");\n\tthis.startActions = this.getAttribute(\"startactions\");\n\tthis.endActions = this.getAttribute(\"endactions\");\n\t// Make the child widgets\n\tthis.makeChildWidgets();\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nDraggableWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\tif(changedTiddlers.tag || changedTiddlers[\"class\"]) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t}\n\treturn this.refreshChildren(changedTiddlers);\n};\n\nexports.draggable = DraggableWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/droppable.js": {
"title": "$:/core/modules/widgets/droppable.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/droppable.js\ntype: application/javascript\nmodule-type: widget\n\nDroppable widget\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar DroppableWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nDroppableWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nDroppableWidget.prototype.render = function(parent,nextSibling) {\n\tvar self = this;\n\t// Remember parent\n\tthis.parentDomNode = parent;\n\t// Compute attributes and execute state\n\tthis.computeAttributes();\n\tthis.execute();\n\tvar tag = this.parseTreeNode.isBlock ? \"div\" : \"span\";\n\tif(this.droppableTag && $tw.config.htmlUnsafeElements.indexOf(this.droppableTag) === -1) {\n\t\ttag = this.droppableTag;\n\t}\n\t// Create element and assign classes\n\tvar domNode = this.document.createElement(tag),\n\t\tclasses = (this[\"class\"] || \"\").split(\" \");\n\tclasses.push(\"tc-droppable\");\n\tdomNode.className = classes.join(\" \");\n\t// Add event handlers\n\t$tw.utils.addEventListeners(domNode,[\n\t\t{name: \"dragenter\", handlerObject: this, handlerMethod: \"handleDragEnterEvent\"},\n\t\t{name: \"dragover\", handlerObject: this, handlerMethod: \"handleDragOverEvent\"},\n\t\t{name: \"dragleave\", handlerObject: this, handlerMethod: \"handleDragLeaveEvent\"},\n\t\t{name: \"drop\", handlerObject: this, handlerMethod: \"handleDropEvent\"}\n\t]);\n\t// Insert element\n\tparent.insertBefore(domNode,nextSibling);\n\tthis.renderChildren(domNode,null);\n\tthis.domNodes.push(domNode);\n\t// Stack of outstanding enter/leave events\n\tthis.currentlyEntered = [];\n};\n\nDroppableWidget.prototype.enterDrag = function(event) {\n\tif(this.currentlyEntered.indexOf(event.target) === -1) {\n\t\tthis.currentlyEntered.push(event.target);\n\t}\n\t// If we're entering for the first time we need to apply highlighting\n\t$tw.utils.addClass(this.domNodes[0],\"tc-dragover\");\n};\n\nDroppableWidget.prototype.leaveDrag = function(event) {\n\tvar pos = this.currentlyEntered.indexOf(event.target);\n\tif(pos !== -1) {\n\t\tthis.currentlyEntered.splice(pos,1);\n\t}\n\t// Remove highlighting if we're leaving externally. The hacky second condition is to resolve a problem with Firefox whereby there is an erroneous dragenter event if the node being dragged is within the dropzone\n\tif(this.currentlyEntered.length === 0 || (this.currentlyEntered.length === 1 && this.currentlyEntered[0] === $tw.dragInProgress)) {\n\t\tthis.currentlyEntered = [];\n\t\t$tw.utils.removeClass(this.domNodes[0],\"tc-dragover\");\n\t}\n};\n\nDroppableWidget.prototype.handleDragEnterEvent = function(event) {\n\tthis.enterDrag(event);\n\t// Tell the browser that we're ready to handle the drop\n\tevent.preventDefault();\n\t// Tell the browser not to ripple the drag up to any parent drop handlers\n\tevent.stopPropagation();\n\treturn false;\n};\n\nDroppableWidget.prototype.handleDragOverEvent = function(event) {\n\t// Check for being over a TEXTAREA or INPUT\n\tif([\"TEXTAREA\",\"INPUT\"].indexOf(event.target.tagName) !== -1) {\n\t\treturn false;\n\t}\n\t// Tell the browser that we're still interested in the drop\n\tevent.preventDefault();\n\t// Set the drop effect\n\tevent.dataTransfer.dropEffect = this.droppableEffect;\n\treturn false;\n};\n\nDroppableWidget.prototype.handleDragLeaveEvent = function(event) {\n\tthis.leaveDrag(event);\n\treturn false;\n};\n\nDroppableWidget.prototype.handleDropEvent = function(event) {\n\tvar self = this;\n\tthis.leaveDrag(event);\n\t// Check for being over a TEXTAREA or INPUT\n\tif([\"TEXTAREA\",\"INPUT\"].indexOf(event.target.tagName) !== -1) {\n\t\treturn false;\n\t}\n\tvar dataTransfer = event.dataTransfer;\n\t// Remove highlighting\n\t$tw.utils.removeClass(this.domNodes[0],\"tc-dragover\");\n\t// Try to import the various data types we understand\n\t$tw.utils.importDataTransfer(dataTransfer,null,function(fieldsArray) {\n\t\tfieldsArray.forEach(function(fields) {\n\t\t\tself.performActions(fields.title || fields.text,event);\n\t\t});\n\t});\n\t// Tell the browser that we handled the drop\n\tevent.preventDefault();\n\t// Stop the drop ripple up to any parent handlers\n\tevent.stopPropagation();\n\treturn false;\n};\n\nDroppableWidget.prototype.performActions = function(title,event) {\n\tif(this.droppableActions) {\n\t\tvar modifierKey = event.ctrlKey && ! event.shiftKey ? \"ctrl\" : event.shiftKey && !event.ctrlKey ? \"shift\" : \n\t\t\t\tevent.ctrlKey && event.shiftKey ? \"ctrl-shift\" : \"normal\" ;\n\t\tthis.invokeActionString(this.droppableActions,this,event,{actionTiddler: title, modifier: modifierKey});\n\t}\n};\n\n/*\nCompute the internal state of the widget\n*/\nDroppableWidget.prototype.execute = function() {\n\tthis.droppableActions = this.getAttribute(\"actions\");\n\tthis.droppableEffect = this.getAttribute(\"effect\",\"copy\");\n\tthis.droppableTag = this.getAttribute(\"tag\");\n\tthis.droppableClass = this.getAttribute(\"class\");\n\t// Make child widgets\n\tthis.makeChildWidgets();\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nDroppableWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\tif(changedAttributes[\"class\"] || changedAttributes.tag) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t}\n\treturn this.refreshChildren(changedTiddlers);\n};\n\nexports.droppable = DroppableWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/dropzone.js": {
"title": "$:/core/modules/widgets/dropzone.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/dropzone.js\ntype: application/javascript\nmodule-type: widget\n\nDropzone widget\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar DropZoneWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nDropZoneWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nDropZoneWidget.prototype.render = function(parent,nextSibling) {\n\tvar self = this;\n\t// Remember parent\n\tthis.parentDomNode = parent;\n\t// Compute attributes and execute state\n\tthis.computeAttributes();\n\tthis.execute();\n\t// Create element\n\tvar domNode = this.document.createElement(\"div\");\n\tdomNode.className = \"tc-dropzone\";\n\t// Add event handlers\n\t$tw.utils.addEventListeners(domNode,[\n\t\t{name: \"dragenter\", handlerObject: this, handlerMethod: \"handleDragEnterEvent\"},\n\t\t{name: \"dragover\", handlerObject: this, handlerMethod: \"handleDragOverEvent\"},\n\t\t{name: \"dragleave\", handlerObject: this, handlerMethod: \"handleDragLeaveEvent\"},\n\t\t{name: \"drop\", handlerObject: this, handlerMethod: \"handleDropEvent\"},\n\t\t{name: \"paste\", handlerObject: this, handlerMethod: \"handlePasteEvent\"},\n\t\t{name: \"dragend\", handlerObject: this, handlerMethod: \"handleDragEndEvent\"}\n\t]);\n\tdomNode.addEventListener(\"click\",function (event) {\n\t},false);\n\t// Insert element\n\tparent.insertBefore(domNode,nextSibling);\n\tthis.renderChildren(domNode,null);\n\tthis.domNodes.push(domNode);\n\t// Stack of outstanding enter/leave events\n\tthis.currentlyEntered = [];\n};\n\nDropZoneWidget.prototype.enterDrag = function(event) {\n\tif(this.currentlyEntered.indexOf(event.target) === -1) {\n\t\tthis.currentlyEntered.push(event.target);\n\t}\n\t// If we're entering for the first time we need to apply highlighting\n\t$tw.utils.addClass(this.domNodes[0],\"tc-dragover\");\n};\n\nDropZoneWidget.prototype.leaveDrag = function(event) {\n\tvar pos = this.currentlyEntered.indexOf(event.target);\n\tif(pos !== -1) {\n\t\tthis.currentlyEntered.splice(pos,1);\n\t}\n\t// Remove highlighting if we're leaving externally\n\tif(this.currentlyEntered.length === 0) {\n\t\t$tw.utils.removeClass(this.domNodes[0],\"tc-dragover\");\n\t}\n};\n\nDropZoneWidget.prototype.handleDragEnterEvent = function(event) {\n\t// Check for this window being the source of the drag\n\tif($tw.dragInProgress) {\n\t\treturn false;\n\t}\n\tthis.enterDrag(event);\n\t// Tell the browser that we're ready to handle the drop\n\tevent.preventDefault();\n\t// Tell the browser not to ripple the drag up to any parent drop handlers\n\tevent.stopPropagation();\n};\n\nDropZoneWidget.prototype.handleDragOverEvent = function(event) {\n\t// Check for being over a TEXTAREA or INPUT\n\tif([\"TEXTAREA\",\"INPUT\"].indexOf(event.target.tagName) !== -1) {\n\t\treturn false;\n\t}\n\t// Check for this window being the source of the drag\n\tif($tw.dragInProgress) {\n\t\treturn false;\n\t}\n\t// Tell the browser that we're still interested in the drop\n\tevent.preventDefault();\n\tevent.dataTransfer.dropEffect = \"copy\"; // Explicitly show this is a copy\n};\n\nDropZoneWidget.prototype.handleDragLeaveEvent = function(event) {\n\tthis.leaveDrag(event);\n};\n\nDropZoneWidget.prototype.handleDragEndEvent = function(event) {\n\t$tw.utils.removeClass(this.domNodes[0],\"tc-dragover\");\n};\n\nDropZoneWidget.prototype.handleDropEvent = function(event) {\n\tvar self = this,\n\t\treadFileCallback = function(tiddlerFieldsArray) {\n\t\t\tself.dispatchEvent({type: \"tm-import-tiddlers\", param: JSON.stringify(tiddlerFieldsArray)});\n\t\t};\n\tthis.leaveDrag(event);\n\t// Check for being over a TEXTAREA or INPUT\n\tif([\"TEXTAREA\",\"INPUT\"].indexOf(event.target.tagName) !== -1) {\n\t\treturn false;\n\t}\n\t// Check for this window being the source of the drag\n\tif($tw.dragInProgress) {\n\t\treturn false;\n\t}\n\tvar self = this,\n\t\tdataTransfer = event.dataTransfer;\n\t// Remove highlighting\n\t$tw.utils.removeClass(this.domNodes[0],\"tc-dragover\");\n\t// Import any files in the drop\n\tvar numFiles = 0;\n\tif(dataTransfer.files) {\n\t\tnumFiles = this.wiki.readFiles(dataTransfer.files,{\n\t\t\tcallback: readFileCallback,\n\t\t\tdeserializer: this.dropzoneDeserializer\n\t\t});\n\t}\n\t// Try to import the various data types we understand\n\tif(numFiles === 0) {\n\t\t$tw.utils.importDataTransfer(dataTransfer,this.wiki.generateNewTitle(\"Untitled\"),readFileCallback);\n\t}\n\t// Tell the browser that we handled the drop\n\tevent.preventDefault();\n\t// Stop the drop ripple up to any parent handlers\n\tevent.stopPropagation();\n};\n\nDropZoneWidget.prototype.handlePasteEvent = function(event) {\n\tvar self = this,\n\t\treadFileCallback = function(tiddlerFieldsArray) {\n\t\t\tself.dispatchEvent({type: \"tm-import-tiddlers\", param: JSON.stringify(tiddlerFieldsArray)});\n\t\t};\n\t// Let the browser handle it if we're in a textarea or input box\n\tif([\"TEXTAREA\",\"INPUT\"].indexOf(event.target.tagName) == -1 && !event.target.isContentEditable) {\n\t\tvar self = this,\n\t\t\titems = event.clipboardData.items;\n\t\t// Enumerate the clipboard items\n\t\tfor(var t = 0; t<items.length; t++) {\n\t\t\tvar item = items[t];\n\t\t\tif(item.kind === \"file\") {\n\t\t\t\t// Import any files\n\t\t\t\tthis.wiki.readFile(item.getAsFile(),{\n\t\t\t\t\tcallback: readFileCallback,\n\t\t\t\t\tdeserializer: this.dropzoneDeserializer\n\t\t\t\t});\n\t\t\t} else if(item.kind === \"string\") {\n\t\t\t\t// Create tiddlers from string items\n\t\t\t\tvar type = item.type;\n\t\t\t\titem.getAsString(function(str) {\n\t\t\t\t\tvar tiddlerFields = {\n\t\t\t\t\t\ttitle: self.wiki.generateNewTitle(\"Untitled\"),\n\t\t\t\t\t\ttext: str,\n\t\t\t\t\t\ttype: type\n\t\t\t\t\t};\n\t\t\t\t\tif($tw.log.IMPORT) {\n\t\t\t\t\t\tconsole.log(\"Importing string '\" + str + \"', type: '\" + type + \"'\");\n\t\t\t\t\t}\n\t\t\t\t\tself.dispatchEvent({type: \"tm-import-tiddlers\", param: JSON.stringify([tiddlerFields])});\n\t\t\t\t});\n\t\t\t}\n\t\t}\n\t\t// Tell the browser that we've handled the paste\n\t\tevent.stopPropagation();\n\t\tevent.preventDefault();\n\t}\n};\n\n/*\nCompute the internal state of the widget\n*/\nDropZoneWidget.prototype.execute = function() {\n\tthis.dropzoneDeserializer = this.getAttribute(\"deserializer\");\n\t// Make child widgets\n\tthis.makeChildWidgets();\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nDropZoneWidget.prototype.refresh = function(changedTiddlers) {\n\treturn this.refreshChildren(changedTiddlers);\n};\n\nexports.dropzone = DropZoneWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/edit-binary.js": {
"title": "$:/core/modules/widgets/edit-binary.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/edit-binary.js\ntype: application/javascript\nmodule-type: widget\n\nEdit-binary widget; placeholder for editing binary tiddlers\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar BINARY_WARNING_MESSAGE = \"$:/core/ui/BinaryWarning\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar EditBinaryWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nEditBinaryWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nEditBinaryWidget.prototype.render = function(parent,nextSibling) {\n\tvar self = this;\n\t// Save the parent dom node\n\tthis.parentDomNode = parent;\n\t// Compute our attributes\n\tthis.computeAttributes();\n\t// Execute our logic\n\tthis.execute();\n\tthis.renderChildren(parent,nextSibling);\n};\n\n/*\nCompute the internal state of the widget\n*/\nEditBinaryWidget.prototype.execute = function() {\n\t// Construct the child widgets\n\tthis.makeChildWidgets([{\n\t\ttype: \"transclude\",\n\t\tattributes: {\n\t\t\ttiddler: {type: \"string\", value: BINARY_WARNING_MESSAGE}\n\t\t}\n\t}]);\n};\n\n/*\nRefresh by refreshing our child widget\n*/\nEditBinaryWidget.prototype.refresh = function(changedTiddlers) {\n\treturn this.refreshChildren(changedTiddlers);\n};\n\nexports[\"edit-binary\"] = EditBinaryWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/edit-bitmap.js": {
"title": "$:/core/modules/widgets/edit-bitmap.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/edit-bitmap.js\ntype: application/javascript\nmodule-type: widget\n\nEdit-bitmap widget\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n// Default image sizes\nvar DEFAULT_IMAGE_WIDTH = 600,\n\tDEFAULT_IMAGE_HEIGHT = 370,\n\tDEFAULT_IMAGE_TYPE = \"image/png\";\n\n// Configuration tiddlers\nvar LINE_WIDTH_TITLE = \"$:/config/BitmapEditor/LineWidth\",\n\tLINE_COLOUR_TITLE = \"$:/config/BitmapEditor/Colour\",\n\tLINE_OPACITY_TITLE = \"$:/config/BitmapEditor/Opacity\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar EditBitmapWidget = function(parseTreeNode,options) {\n\t// Initialise the editor operations if they've not been done already\n\tif(!this.editorOperations) {\n\t\tEditBitmapWidget.prototype.editorOperations = {};\n\t\t$tw.modules.applyMethods(\"bitmapeditoroperation\",this.editorOperations);\n\t}\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nEditBitmapWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nEditBitmapWidget.prototype.render = function(parent,nextSibling) {\n\tvar self = this;\n\t// Save the parent dom node\n\tthis.parentDomNode = parent;\n\t// Compute our attributes\n\tthis.computeAttributes();\n\t// Execute our logic\n\tthis.execute();\n\t// Create the wrapper for the toolbar and render its content\n\tthis.toolbarNode = this.document.createElement(\"div\");\n\tthis.toolbarNode.className = \"tc-editor-toolbar\";\n\tparent.insertBefore(this.toolbarNode,nextSibling);\n\tthis.domNodes.push(this.toolbarNode);\n\t// Create the on-screen canvas\n\tthis.canvasDomNode = $tw.utils.domMaker(\"canvas\",{\n\t\tdocument: this.document,\n\t\t\"class\":\"tc-edit-bitmapeditor\",\n\t\teventListeners: [{\n\t\t\tname: \"touchstart\", handlerObject: this, handlerMethod: \"handleTouchStartEvent\"\n\t\t},{\n\t\t\tname: \"touchmove\", handlerObject: this, handlerMethod: \"handleTouchMoveEvent\"\n\t\t},{\n\t\t\tname: \"touchend\", handlerObject: this, handlerMethod: \"handleTouchEndEvent\"\n\t\t},{\n\t\t\tname: \"mousedown\", handlerObject: this, handlerMethod: \"handleMouseDownEvent\"\n\t\t},{\n\t\t\tname: \"mousemove\", handlerObject: this, handlerMethod: \"handleMouseMoveEvent\"\n\t\t},{\n\t\t\tname: \"mouseup\", handlerObject: this, handlerMethod: \"handleMouseUpEvent\"\n\t\t}]\n\t});\n\t// Set the width and height variables\n\tthis.setVariable(\"tv-bitmap-editor-width\",this.canvasDomNode.width + \"px\");\n\tthis.setVariable(\"tv-bitmap-editor-height\",this.canvasDomNode.height + \"px\");\n\t// Render toolbar child widgets\n\tthis.renderChildren(this.toolbarNode,null);\n\t// // Insert the elements into the DOM\n\tparent.insertBefore(this.canvasDomNode,nextSibling);\n\tthis.domNodes.push(this.canvasDomNode);\n\t// Load the image into the canvas\n\tif($tw.browser) {\n\t\tthis.loadCanvas();\n\t}\n\t// Add widget message listeners\n\tthis.addEventListeners([\n\t\t{type: \"tm-edit-bitmap-operation\", handler: \"handleEditBitmapOperationMessage\"}\n\t]);\n};\n\n/*\nHandle an edit bitmap operation message from the toolbar\n*/\nEditBitmapWidget.prototype.handleEditBitmapOperationMessage = function(event) {\n\t// Invoke the handler\n\tvar handler = this.editorOperations[event.param];\n\tif(handler) {\n\t\thandler.call(this,event);\n\t}\n};\n\n/*\nCompute the internal state of the widget\n*/\nEditBitmapWidget.prototype.execute = function() {\n\t// Get our parameters\n\tthis.editTitle = this.getAttribute(\"tiddler\",this.getVariable(\"currentTiddler\"));\n\t// Make the child widgets\n\tthis.makeChildWidgets();\n};\n\n/*\nJust refresh the toolbar\n*/\nEditBitmapWidget.prototype.refresh = function(changedTiddlers) {\n\treturn this.refreshChildren(changedTiddlers);\n};\n\n/*\nSet the bitmap size variables and refresh the toolbar\n*/\nEditBitmapWidget.prototype.refreshToolbar = function() {\n\t// Set the width and height variables\n\tthis.setVariable(\"tv-bitmap-editor-width\",this.canvasDomNode.width + \"px\");\n\tthis.setVariable(\"tv-bitmap-editor-height\",this.canvasDomNode.height + \"px\");\n\t// Refresh each of our child widgets\n\t$tw.utils.each(this.children,function(childWidget) {\n\t\tchildWidget.refreshSelf();\n\t});\n};\n\nEditBitmapWidget.prototype.loadCanvas = function() {\n\tvar tiddler = this.wiki.getTiddler(this.editTitle),\n\t\tcurrImage = new Image();\n\t// Set up event handlers for loading the image\n\tvar self = this;\n\tcurrImage.onload = function() {\n\t\t// Copy the image to the on-screen canvas\n\t\tself.initCanvas(self.canvasDomNode,currImage.width,currImage.height,currImage);\n\t\t// And also copy the current bitmap to the off-screen canvas\n\t\tself.currCanvas = self.document.createElement(\"canvas\");\n\t\tself.initCanvas(self.currCanvas,currImage.width,currImage.height,currImage);\n\t\t// Set the width and height input boxes\n\t\tself.refreshToolbar();\n\t};\n\tcurrImage.onerror = function() {\n\t\t// Set the on-screen canvas size and clear it\n\t\tself.initCanvas(self.canvasDomNode,DEFAULT_IMAGE_WIDTH,DEFAULT_IMAGE_HEIGHT);\n\t\t// Set the off-screen canvas size and clear it\n\t\tself.currCanvas = self.document.createElement(\"canvas\");\n\t\tself.initCanvas(self.currCanvas,DEFAULT_IMAGE_WIDTH,DEFAULT_IMAGE_HEIGHT);\n\t\t// Set the width and height input boxes\n\t\tself.refreshToolbar();\n\t};\n\t// Get the current bitmap into an image object\n\tif(tiddler && tiddler.fields.type && tiddler.fields.text) {\n\t\tcurrImage.src = \"data:\" + tiddler.fields.type + \";base64,\" + tiddler.fields.text;\t\t\n\t} else {\n\t\tcurrImage.width = DEFAULT_IMAGE_WIDTH;\n\t\tcurrImage.height = DEFAULT_IMAGE_HEIGHT;\n\t\tcurrImage.onerror();\n\t}\n};\n\nEditBitmapWidget.prototype.initCanvas = function(canvas,width,height,image) {\n\tcanvas.width = width;\n\tcanvas.height = height;\n\tvar ctx = canvas.getContext(\"2d\");\n\tif(image) {\n\t\tctx.drawImage(image,0,0);\n\t} else {\n\t\tctx.fillStyle = \"#fff\";\n\t\tctx.fillRect(0,0,canvas.width,canvas.height);\n\t}\n};\n\n/*\n** Change the size of the canvas, preserving the current image\n*/\nEditBitmapWidget.prototype.changeCanvasSize = function(newWidth,newHeight) {\n\t// Create and size a new canvas\n\tvar newCanvas = this.document.createElement(\"canvas\");\n\tthis.initCanvas(newCanvas,newWidth,newHeight);\n\t// Copy the old image\n\tvar ctx = newCanvas.getContext(\"2d\");\n\tctx.drawImage(this.currCanvas,0,0);\n\t// Set the new canvas as the current one\n\tthis.currCanvas = newCanvas;\n\t// Set the size of the onscreen canvas\n\tthis.canvasDomNode.width = newWidth;\n\tthis.canvasDomNode.height = newHeight;\n\t// Paint the onscreen canvas with the offscreen canvas\n\tctx = this.canvasDomNode.getContext(\"2d\");\n\tctx.drawImage(this.currCanvas,0,0);\n};\n\n/*\n** Rotate the canvas left by 90 degrees\n*/\nEditBitmapWidget.prototype.rotateCanvasLeft = function() {\n\t// Get the current size of the image\n\tvar origWidth = this.currCanvas.width,\n\t\torigHeight = this.currCanvas.height;\n\t// Create and size a new canvas\n\tvar newCanvas = this.document.createElement(\"canvas\"),\n\t\tnewWidth = origHeight,\n\t\tnewHeight = origWidth;\n\tthis.initCanvas(newCanvas,newWidth,newHeight);\n\t// Copy the old image\n\tvar ctx = newCanvas.getContext(\"2d\");\n\tctx.save();\n\tctx.translate(newWidth / 2,newHeight / 2);\n\tctx.rotate(-Math.PI / 2);\n\tctx.drawImage(this.currCanvas,-origWidth / 2,-origHeight / 2);\n\tctx.restore();\n\t// Set the new canvas as the current one\n\tthis.currCanvas = newCanvas;\n\t// Set the size of the onscreen canvas\n\tthis.canvasDomNode.width = newWidth;\n\tthis.canvasDomNode.height = newHeight;\n\t// Paint the onscreen canvas with the offscreen canvas\n\tctx = this.canvasDomNode.getContext(\"2d\");\n\tctx.drawImage(this.currCanvas,0,0);\n};\n\nEditBitmapWidget.prototype.handleTouchStartEvent = function(event) {\n\tthis.brushDown = true;\n\tthis.strokeStart(event.touches[0].clientX,event.touches[0].clientY);\n\tevent.preventDefault();\n\tevent.stopPropagation();\n\treturn false;\n};\n\nEditBitmapWidget.prototype.handleTouchMoveEvent = function(event) {\n\tif(this.brushDown) {\n\t\tthis.strokeMove(event.touches[0].clientX,event.touches[0].clientY);\n\t}\n\tevent.preventDefault();\n\tevent.stopPropagation();\n\treturn false;\n};\n\nEditBitmapWidget.prototype.handleTouchEndEvent = function(event) {\n\tif(this.brushDown) {\n\t\tthis.brushDown = false;\n\t\tthis.strokeEnd();\n\t}\n\tevent.preventDefault();\n\tevent.stopPropagation();\n\treturn false;\n};\n\nEditBitmapWidget.prototype.handleMouseDownEvent = function(event) {\n\tthis.strokeStart(event.clientX,event.clientY);\n\tthis.brushDown = true;\n\tevent.preventDefault();\n\tevent.stopPropagation();\n\treturn false;\n};\n\nEditBitmapWidget.prototype.handleMouseMoveEvent = function(event) {\n\tif(this.brushDown) {\n\t\tthis.strokeMove(event.clientX,event.clientY);\n\t\tevent.preventDefault();\n\t\tevent.stopPropagation();\n\t\treturn false;\n\t}\n\treturn true;\n};\n\nEditBitmapWidget.prototype.handleMouseUpEvent = function(event) {\n\tif(this.brushDown) {\n\t\tthis.brushDown = false;\n\t\tthis.strokeEnd();\n\t\tevent.preventDefault();\n\t\tevent.stopPropagation();\n\t\treturn false;\n\t}\n\treturn true;\n};\n\nEditBitmapWidget.prototype.adjustCoordinates = function(x,y) {\n\tvar canvasRect = this.canvasDomNode.getBoundingClientRect(),\n\t\tscale = this.canvasDomNode.width/canvasRect.width;\n\treturn {x: (x - canvasRect.left) * scale, y: (y - canvasRect.top) * scale};\n};\n\nEditBitmapWidget.prototype.strokeStart = function(x,y) {\n\t// Start off a new stroke\n\tthis.stroke = [this.adjustCoordinates(x,y)];\n};\n\nEditBitmapWidget.prototype.strokeMove = function(x,y) {\n\tvar ctx = this.canvasDomNode.getContext(\"2d\"),\n\t\tt;\n\t// Add the new position to the end of the stroke\n\tthis.stroke.push(this.adjustCoordinates(x,y));\n\t// Redraw the previous image\n\tctx.drawImage(this.currCanvas,0,0);\n\t// Render the stroke\n\tctx.globalAlpha = parseFloat(this.wiki.getTiddlerText(LINE_OPACITY_TITLE,\"1.0\"));\n\tctx.strokeStyle = this.wiki.getTiddlerText(LINE_COLOUR_TITLE,\"#ff0\");\n\tctx.lineWidth = parseFloat(this.wiki.getTiddlerText(LINE_WIDTH_TITLE,\"3\"));\n\tctx.lineCap = \"round\";\n\tctx.lineJoin = \"round\";\n\tctx.beginPath();\n\tctx.moveTo(this.stroke[0].x,this.stroke[0].y);\n\tfor(t=1; t<this.stroke.length-1; t++) {\n\t\tvar s1 = this.stroke[t],\n\t\t\ts2 = this.stroke[t-1],\n\t\t\ttx = (s1.x + s2.x)/2,\n\t\t\tty = (s1.y + s2.y)/2;\n\t\tctx.quadraticCurveTo(s2.x,s2.y,tx,ty);\n\t}\n\tctx.stroke();\n};\n\nEditBitmapWidget.prototype.strokeEnd = function() {\n\t// Copy the bitmap to the off-screen canvas\n\tvar ctx = this.currCanvas.getContext(\"2d\");\n\tctx.drawImage(this.canvasDomNode,0,0);\n\t// Save the image into the tiddler\n\tthis.saveChanges();\n};\n\nEditBitmapWidget.prototype.saveChanges = function() {\n\tvar tiddler = this.wiki.getTiddler(this.editTitle) || new $tw.Tiddler({title: this.editTitle,type: DEFAULT_IMAGE_TYPE});\n\t// data URIs look like \"data:<type>;base64,<text>\"\n\tvar dataURL = this.canvasDomNode.toDataURL(tiddler.fields.type),\n\t\tposColon = dataURL.indexOf(\":\"),\n\t\tposSemiColon = dataURL.indexOf(\";\"),\n\t\tposComma = dataURL.indexOf(\",\"),\n\t\ttype = dataURL.substring(posColon+1,posSemiColon),\n\t\ttext = dataURL.substring(posComma+1);\n\tvar update = {type: type, text: text};\n\tthis.wiki.addTiddler(new $tw.Tiddler(this.wiki.getModificationFields(),tiddler,update,this.wiki.getCreationFields()));\n};\n\nexports[\"edit-bitmap\"] = EditBitmapWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/edit-shortcut.js": {
"title": "$:/core/modules/widgets/edit-shortcut.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/edit-shortcut.js\ntype: application/javascript\nmodule-type: widget\n\nWidget to display an editable keyboard shortcut\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar EditShortcutWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nEditShortcutWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nEditShortcutWidget.prototype.render = function(parent,nextSibling) {\n\tthis.parentDomNode = parent;\n\tthis.computeAttributes();\n\tthis.execute();\n\tthis.inputNode = this.document.createElement(\"input\");\n\t// Assign classes\n\tif(this.shortcutClass) {\n\t\tthis.inputNode.className = this.shortcutClass;\t\t\n\t}\n\t// Assign other attributes\n\tif(this.shortcutStyle) {\n\t\tthis.inputNode.setAttribute(\"style\",this.shortcutStyle);\n\t}\n\tif(this.shortcutTooltip) {\n\t\tthis.inputNode.setAttribute(\"title\",this.shortcutTooltip);\n\t}\n\tif(this.shortcutPlaceholder) {\n\t\tthis.inputNode.setAttribute(\"placeholder\",this.shortcutPlaceholder);\n\t}\n\tif(this.shortcutAriaLabel) {\n\t\tthis.inputNode.setAttribute(\"aria-label\",this.shortcutAriaLabel);\n\t}\n\t// Assign the current shortcut\n\tthis.updateInputNode();\n\t// Add event handlers\n\t$tw.utils.addEventListeners(this.inputNode,[\n\t\t{name: \"keydown\", handlerObject: this, handlerMethod: \"handleKeydownEvent\"}\n\t]);\n\t// Link into the DOM\n\tparent.insertBefore(this.inputNode,nextSibling);\n\tthis.domNodes.push(this.inputNode);\n\t// Focus the input Node if focus === \"yes\" or focus === \"true\"\n\tif(this.shortcutFocus === \"yes\" || this.shortcutFocus === \"true\") {\n\t\tthis.focus();\n\t}\n};\n\n/*\nCompute the internal state of the widget\n*/\nEditShortcutWidget.prototype.execute = function() {\n\tthis.shortcutTiddler = this.getAttribute(\"tiddler\");\n\tthis.shortcutField = this.getAttribute(\"field\");\n\tthis.shortcutIndex = this.getAttribute(\"index\");\n\tthis.shortcutPlaceholder = this.getAttribute(\"placeholder\");\n\tthis.shortcutDefault = this.getAttribute(\"default\",\"\");\n\tthis.shortcutClass = this.getAttribute(\"class\");\n\tthis.shortcutStyle = this.getAttribute(\"style\");\n\tthis.shortcutTooltip = this.getAttribute(\"tooltip\");\n\tthis.shortcutAriaLabel = this.getAttribute(\"aria-label\");\n\tthis.shortcutFocus = this.getAttribute(\"focus\");\n};\n\n/*\nUpdate the value of the input node\n*/\nEditShortcutWidget.prototype.updateInputNode = function() {\n\tif(this.shortcutField) {\n\t\tvar tiddler = this.wiki.getTiddler(this.shortcutTiddler);\n\t\tif(tiddler && $tw.utils.hop(tiddler.fields,this.shortcutField)) {\n\t\t\tthis.inputNode.value = tiddler.getFieldString(this.shortcutField);\n\t\t} else {\n\t\t\tthis.inputNode.value = this.shortcutDefault;\n\t\t}\n\t} else if(this.shortcutIndex) {\n\t\tthis.inputNode.value = this.wiki.extractTiddlerDataItem(this.shortcutTiddler,this.shortcutIndex,this.shortcutDefault);\n\t} else {\n\t\tthis.inputNode.value = this.wiki.getTiddlerText(this.shortcutTiddler,this.shortcutDefault);\n\t}\n};\n\n/*\nHandle a dom \"keydown\" event\n*/\nEditShortcutWidget.prototype.handleKeydownEvent = function(event) {\n\t// Ignore shift, ctrl, meta, alt\n\tif(event.keyCode && $tw.keyboardManager.getModifierKeys().indexOf(event.keyCode) === -1) {\n\t\t// Get the shortcut text representation\n\t\tvar value = $tw.keyboardManager.getPrintableShortcuts([{\n\t\t\tctrlKey: event.ctrlKey,\n\t\t\tshiftKey: event.shiftKey,\n\t\t\taltKey: event.altKey,\n\t\t\tmetaKey: event.metaKey,\n\t\t\tkeyCode: event.keyCode\n\t\t}]);\n\t\tif(value.length > 0) {\n\t\t\tthis.wiki.setText(this.shortcutTiddler,this.shortcutField,this.shortcutIndex,value[0]);\n\t\t}\n\t\t// Ignore the keydown if it was already handled\n\t\tevent.preventDefault();\n\t\tevent.stopPropagation();\n\t\treturn true;\t\t\n\t} else {\n\t\treturn false;\n\t}\n};\n\n/*\nfocus the input node\n*/\nEditShortcutWidget.prototype.focus = function() {\n\tif(this.inputNode.focus && this.inputNode.select) {\n\t\tthis.inputNode.focus();\n\t\tthis.inputNode.select();\n\t}\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget needed re-rendering\n*/\nEditShortcutWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\tif(changedAttributes.tiddler || changedAttributes.field || changedAttributes.index || changedAttributes.placeholder || changedAttributes[\"default\"] || changedAttributes[\"class\"] || changedAttributes.style || changedAttributes.tooltip || changedAttributes[\"aria-label\"] || changedAttributes.focus) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t} else if(changedTiddlers[this.shortcutTiddler]) {\n\t\tthis.updateInputNode();\n\t\treturn true;\n\t} else {\n\t\treturn false;\t\n\t}\n};\n\nexports[\"edit-shortcut\"] = EditShortcutWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/edit-text.js": {
"title": "$:/core/modules/widgets/edit-text.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/edit-text.js\ntype: application/javascript\nmodule-type: widget\n\nEdit-text widget\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar editTextWidgetFactory = require(\"$:/core/modules/editor/factory.js\").editTextWidgetFactory,\n\tFramedEngine = require(\"$:/core/modules/editor/engines/framed.js\").FramedEngine,\n\tSimpleEngine = require(\"$:/core/modules/editor/engines/simple.js\").SimpleEngine;\n\nexports[\"edit-text\"] = editTextWidgetFactory(FramedEngine,SimpleEngine);\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/edit.js": {
"title": "$:/core/modules/widgets/edit.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/edit.js\ntype: application/javascript\nmodule-type: widget\n\nEdit widget is a meta-widget chooses the appropriate actual editting widget\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar EditWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nEditWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nEditWidget.prototype.render = function(parent,nextSibling) {\n\tthis.parentDomNode = parent;\n\tthis.computeAttributes();\n\tthis.execute();\n\tthis.renderChildren(parent,nextSibling);\n};\n\n// Mappings from content type to editor type are stored in tiddlers with this prefix\nvar EDITOR_MAPPING_PREFIX = \"$:/config/EditorTypeMappings/\";\n\n/*\nCompute the internal state of the widget\n*/\nEditWidget.prototype.execute = function() {\n\t// Get our parameters\n\tthis.editTitle = this.getAttribute(\"tiddler\",this.getVariable(\"currentTiddler\"));\n\tthis.editField = this.getAttribute(\"field\",\"text\");\n\tthis.editIndex = this.getAttribute(\"index\");\n\tthis.editClass = this.getAttribute(\"class\");\n\tthis.editPlaceholder = this.getAttribute(\"placeholder\");\n\tthis.editTabIndex = this.getAttribute(\"tabindex\");\n\t// Choose the appropriate edit widget\n\tthis.editorType = this.getEditorType();\n\t// Make the child widgets\n\tthis.makeChildWidgets([{\n\t\ttype: \"edit-\" + this.editorType,\n\t\tattributes: {\n\t\t\ttiddler: {type: \"string\", value: this.editTitle},\n\t\t\tfield: {type: \"string\", value: this.editField},\n\t\t\tindex: {type: \"string\", value: this.editIndex},\n\t\t\t\"class\": {type: \"string\", value: this.editClass},\n\t\t\t\"placeholder\": {type: \"string\", value: this.editPlaceholder},\n\t\t\t\"tabindex\": {type: \"string\", value: this.editTabIndex}\n\t\t},\n\t\tchildren: this.parseTreeNode.children\n\t}]);\n};\n\nEditWidget.prototype.getEditorType = function() {\n\t// Get the content type of the thing we're editing\n\tvar type;\n\tif(this.editField === \"text\") {\n\t\tvar tiddler = this.wiki.getTiddler(this.editTitle);\n\t\tif(tiddler) {\n\t\t\ttype = tiddler.fields.type;\n\t\t}\n\t}\n\ttype = type || \"text/vnd.tiddlywiki\";\n\tvar editorType = this.wiki.getTiddlerText(EDITOR_MAPPING_PREFIX + type);\n\tif(!editorType) {\n\t\tvar typeInfo = $tw.config.contentTypeInfo[type];\n\t\tif(typeInfo && typeInfo.encoding === \"base64\") {\n\t\t\teditorType = \"binary\";\n\t\t} else {\n\t\t\teditorType = \"text\";\n\t\t}\n\t}\n\treturn editorType;\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nEditWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\t// Refresh if an attribute has changed, or the type associated with the target tiddler has changed\n\tif(changedAttributes.tiddler || changedAttributes.field || changedAttributes.index || changedAttributes.tabindex || (changedTiddlers[this.editTitle] && this.getEditorType() !== this.editorType)) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t} else {\n\t\treturn this.refreshChildren(changedTiddlers);\n\t}\n};\n\nexports.edit = EditWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/element.js": {
"title": "$:/core/modules/widgets/element.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/element.js\ntype: application/javascript\nmodule-type: widget\n\nElement widget\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar ElementWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nElementWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nElementWidget.prototype.render = function(parent,nextSibling) {\n\tthis.parentDomNode = parent;\n\tthis.computeAttributes();\n\tthis.execute();\n\t// Neuter blacklisted elements\n\tvar tag = this.parseTreeNode.tag;\n\tif($tw.config.htmlUnsafeElements.indexOf(tag) !== -1) {\n\t\ttag = \"safe-\" + tag;\n\t}\n\t// Adjust headings by the current base level\n\tvar headingLevel = [\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\"].indexOf(tag);\n\tif(headingLevel !== -1) {\n\t\tvar baseLevel = parseInt(this.getVariable(\"tv-adjust-heading-level\",\"0\"),10) || 0;\n\t\theadingLevel = Math.min(Math.max(headingLevel + 1 + baseLevel,1),6);\n\t\ttag = \"h\" + headingLevel;\n\t}\n\t// Create the DOM node\n\tvar domNode = this.document.createElementNS(this.namespace,tag);\n\tthis.assignAttributes(domNode,{excludeEventAttributes: true});\n\tparent.insertBefore(domNode,nextSibling);\n\tthis.renderChildren(domNode,null);\n\tthis.domNodes.push(domNode);\n};\n\n/*\nCompute the internal state of the widget\n*/\nElementWidget.prototype.execute = function() {\n\t// Select the namespace for the tag\n\tvar tagNamespaces = {\n\t\t\tsvg: \"http://www.w3.org/2000/svg\",\n\t\t\tmath: \"http://www.w3.org/1998/Math/MathML\",\n\t\t\tbody: \"http://www.w3.org/1999/xhtml\"\n\t\t};\n\tthis.namespace = tagNamespaces[this.parseTreeNode.tag];\n\tif(this.namespace) {\n\t\tthis.setVariable(\"namespace\",this.namespace);\n\t} else {\n\t\tthis.namespace = this.getVariable(\"namespace\",{defaultValue: \"http://www.w3.org/1999/xhtml\"});\n\t}\n\t// Make the child widgets\n\tthis.makeChildWidgets();\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nElementWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes(),\n\t\thasChangedAttributes = $tw.utils.count(changedAttributes) > 0;\n\tif(hasChangedAttributes) {\n\t\t// Update our attributes\n\t\tthis.assignAttributes(this.domNodes[0],{excludeEventAttributes: true});\n\t}\n\treturn this.refreshChildren(changedTiddlers) || hasChangedAttributes;\n};\n\nexports.element = ElementWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/encrypt.js": {
"title": "$:/core/modules/widgets/encrypt.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/encrypt.js\ntype: application/javascript\nmodule-type: widget\n\nEncrypt widget\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar EncryptWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nEncryptWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nEncryptWidget.prototype.render = function(parent,nextSibling) {\n\tthis.parentDomNode = parent;\n\tthis.computeAttributes();\n\tthis.execute();\n\tvar textNode = this.document.createTextNode(this.encryptedText);\n\tparent.insertBefore(textNode,nextSibling);\n\tthis.domNodes.push(textNode);\n};\n\n/*\nCompute the internal state of the widget\n*/\nEncryptWidget.prototype.execute = function() {\n\t// Get parameters from our attributes\n\tthis.filter = this.getAttribute(\"filter\",\"[!is[system]]\");\n\t// Encrypt the filtered tiddlers\n\tvar tiddlers = this.wiki.filterTiddlers(this.filter),\n\t\tjson = {},\n\t\tself = this;\n\t$tw.utils.each(tiddlers,function(title) {\n\t\tvar tiddler = self.wiki.getTiddler(title),\n\t\t\tjsonTiddler = {};\n\t\tfor(var f in tiddler.fields) {\n\t\t\tjsonTiddler[f] = tiddler.getFieldString(f);\n\t\t}\n\t\tjson[title] = jsonTiddler;\n\t});\n\tthis.encryptedText = $tw.utils.htmlEncode($tw.crypto.encrypt(JSON.stringify(json)));\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nEncryptWidget.prototype.refresh = function(changedTiddlers) {\n\t// We don't need to worry about refreshing because the encrypt widget isn't for interactive use\n\treturn false;\n};\n\nexports.encrypt = EncryptWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/entity.js": {
"title": "$:/core/modules/widgets/entity.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/entity.js\ntype: application/javascript\nmodule-type: widget\n\nHTML entity widget\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar EntityWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nEntityWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nEntityWidget.prototype.render = function(parent,nextSibling) {\n\tthis.parentDomNode = parent;\n\tthis.execute();\n\tvar entityString = this.getAttribute(\"entity\",this.parseTreeNode.entity || \"\"),\n\t\ttextNode = this.document.createTextNode($tw.utils.entityDecode(entityString));\n\tparent.insertBefore(textNode,nextSibling);\n\tthis.domNodes.push(textNode);\n};\n\n/*\nCompute the internal state of the widget\n*/\nEntityWidget.prototype.execute = function() {\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nEntityWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\tif(changedAttributes.entity) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t} else {\n\t\treturn false;\t\n\t}\n};\n\nexports.entity = EntityWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/fieldmangler.js": {
"title": "$:/core/modules/widgets/fieldmangler.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/fieldmangler.js\ntype: application/javascript\nmodule-type: widget\n\nField mangler widget\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar FieldManglerWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n\tthis.addEventListeners([\n\t\t{type: \"tm-remove-field\", handler: \"handleRemoveFieldEvent\"},\n\t\t{type: \"tm-add-field\", handler: \"handleAddFieldEvent\"},\n\t\t{type: \"tm-remove-tag\", handler: \"handleRemoveTagEvent\"},\n\t\t{type: \"tm-add-tag\", handler: \"handleAddTagEvent\"}\n\t]);\n};\n\n/*\nInherit from the base widget class\n*/\nFieldManglerWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nFieldManglerWidget.prototype.render = function(parent,nextSibling) {\n\tthis.parentDomNode = parent;\n\tthis.computeAttributes();\n\tthis.execute();\n\tthis.renderChildren(parent,nextSibling);\n};\n\n/*\nCompute the internal state of the widget\n*/\nFieldManglerWidget.prototype.execute = function() {\n\t// Get our parameters\n\tthis.mangleTitle = this.getAttribute(\"tiddler\",this.getVariable(\"currentTiddler\"));\n\t// Construct the child widgets\n\tthis.makeChildWidgets();\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nFieldManglerWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\tif(changedAttributes.tiddler) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t} else {\n\t\treturn this.refreshChildren(changedTiddlers);\t\t\n\t}\n};\n\nFieldManglerWidget.prototype.handleRemoveFieldEvent = function(event) {\n\tvar tiddler = this.wiki.getTiddler(this.mangleTitle),\n\t\tdeletion = {};\n\tdeletion[event.param] = undefined;\n\tthis.wiki.addTiddler(new $tw.Tiddler(tiddler,deletion));\n\treturn true;\n};\n\nFieldManglerWidget.prototype.handleAddFieldEvent = function(event) {\n\tvar tiddler = this.wiki.getTiddler(this.mangleTitle),\n\t\taddition = this.wiki.getModificationFields(),\n\t\thadInvalidFieldName = false,\n\t\taddField = function(name,value) {\n\t\t\tvar trimmedName = name.toLowerCase().trim();\n\t\t\tif(!$tw.utils.isValidFieldName(trimmedName)) {\n\t\t\t\tif(!hadInvalidFieldName) {\n\t\t\t\t\talert($tw.language.getString(\n\t\t\t\t\t\t\"InvalidFieldName\",\n\t\t\t\t\t\t{variables:\n\t\t\t\t\t\t\t{fieldName: trimmedName}\n\t\t\t\t\t\t}\n\t\t\t\t\t));\n\t\t\t\t\thadInvalidFieldName = true;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tif(!value && tiddler) {\n\t\t\t\t\tvalue = tiddler.fields[trimmedName];\n\t\t\t\t}\n\t\t\t\taddition[trimmedName] = value || \"\";\n\t\t\t}\n\t\t\treturn;\n\t\t};\n\taddition.title = this.mangleTitle;\n\tif(typeof event.param === \"string\") {\n\t\taddField(event.param,\"\");\n\t}\n\tif(typeof event.paramObject === \"object\") {\n\t\tfor(var name in event.paramObject) {\n\t\t\taddField(name,event.paramObject[name]);\n\t\t}\n\t}\n\tthis.wiki.addTiddler(new $tw.Tiddler(tiddler,addition));\n\treturn true;\n};\n\nFieldManglerWidget.prototype.handleRemoveTagEvent = function(event) {\n\tvar tiddler = this.wiki.getTiddler(this.mangleTitle),\n\t\tmodification = this.wiki.getModificationFields();\n\tif(tiddler && tiddler.fields.tags) {\n\t\tvar p = tiddler.fields.tags.indexOf(event.param);\n\t\tif(p !== -1) {\n\t\t\tmodification.tags = (tiddler.fields.tags || []).slice(0);\n\t\t\tmodification.tags.splice(p,1);\n\t\t\tif(modification.tags.length === 0) {\n\t\t\t\tmodification.tags = undefined;\n\t\t\t}\n\t\t\tthis.wiki.addTiddler(new $tw.Tiddler(tiddler,modification));\n\t\t}\n\t}\n\treturn true;\n};\n\nFieldManglerWidget.prototype.handleAddTagEvent = function(event) {\n\tvar tiddler = this.wiki.getTiddler(this.mangleTitle),\n\t\tmodification = this.wiki.getModificationFields();\n\tif(tiddler && typeof event.param === \"string\") {\n\t\tvar tag = event.param.trim();\n\t\tif(tag !== \"\") {\n\t\t\tmodification.tags = (tiddler.fields.tags || []).slice(0);\n\t\t\t$tw.utils.pushTop(modification.tags,tag);\n\t\t\tthis.wiki.addTiddler(new $tw.Tiddler(tiddler,modification));\t\t\t\n\t\t}\n\t} else if(typeof event.param === \"string\" && event.param.trim() !== \"\" && this.mangleTitle.trim() !== \"\") {\n\t\tvar tag = [];\n\t\ttag.push(event.param.trim());\n\t\tthis.wiki.addTiddler(new $tw.Tiddler({title: this.mangleTitle, tags: tag},modification));\n\t}\n\treturn true;\n};\n\nexports.fieldmangler = FieldManglerWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/fields.js": {
"title": "$:/core/modules/widgets/fields.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/fields.js\ntype: application/javascript\nmodule-type: widget\n\nFields widget\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar FieldsWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nFieldsWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nFieldsWidget.prototype.render = function(parent,nextSibling) {\n\tthis.parentDomNode = parent;\n\tthis.computeAttributes();\n\tthis.execute();\n\tvar textNode = this.document.createTextNode(this.text);\n\tparent.insertBefore(textNode,nextSibling);\n\tthis.domNodes.push(textNode);\n};\n\n/*\nCompute the internal state of the widget\n*/\nFieldsWidget.prototype.execute = function() {\n\t// Get parameters from our attributes\n\tthis.tiddlerTitle = this.getAttribute(\"tiddler\",this.getVariable(\"currentTiddler\"));\n\tthis.template = this.getAttribute(\"template\");\n\tthis.exclude = this.getAttribute(\"exclude\");\n\tthis.stripTitlePrefix = this.getAttribute(\"stripTitlePrefix\",\"no\") === \"yes\";\n\t// Get the value to display\n\tvar tiddler = this.wiki.getTiddler(this.tiddlerTitle);\n\t// Get the exclusion list\n\tvar exclude;\n\tif(this.exclude) {\n\t\texclude = this.exclude.split(\" \");\n\t} else {\n\t\texclude = [\"text\"]; \n\t}\n\t// Compose the template\n\tvar text = [];\n\tif(this.template && tiddler) {\n\t\tvar fields = [];\n\t\tfor(var fieldName in tiddler.fields) {\n\t\t\tif(exclude.indexOf(fieldName) === -1) {\n\t\t\t\tfields.push(fieldName);\n\t\t\t}\n\t\t}\n\t\tfields.sort();\n\t\tfor(var f=0; f<fields.length; f++) {\n\t\t\tfieldName = fields[f];\n\t\t\tif(exclude.indexOf(fieldName) === -1) {\n\t\t\t\tvar row = this.template,\n\t\t\t\t\tvalue = tiddler.getFieldString(fieldName);\n\t\t\t\tif(this.stripTitlePrefix && fieldName === \"title\") {\n\t\t\t\t\tvar reStrip = /^\\{[^\\}]+\\}(.+)/mg,\n\t\t\t\t\t\treMatch = reStrip.exec(value);\n\t\t\t\t\tif(reMatch) {\n\t\t\t\t\t\tvalue = reMatch[1];\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\trow = $tw.utils.replaceString(row,\"$name$\",fieldName);\n\t\t\t\trow = $tw.utils.replaceString(row,\"$value$\",value);\n\t\t\t\trow = $tw.utils.replaceString(row,\"$encoded_value$\",$tw.utils.htmlEncode(value));\n\t\t\t\ttext.push(row);\n\t\t\t}\n\t\t}\n\t}\n\tthis.text = text.join(\"\");\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nFieldsWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\tif(changedAttributes.tiddler || changedAttributes.template || changedAttributes.exclude || changedAttributes.stripTitlePrefix || changedTiddlers[this.tiddlerTitle]) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t} else {\n\t\treturn false;\t\n\t}\n};\n\nexports.fields = FieldsWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/image.js": {
"title": "$:/core/modules/widgets/image.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/image.js\ntype: application/javascript\nmodule-type: widget\n\nThe image widget displays an image referenced with an external URI or with a local tiddler title.\n\n```\n<$image src=\"TiddlerTitle\" width=\"320\" height=\"400\" class=\"classnames\">\n```\n\nThe image source can be the title of an existing tiddler or the URL of an external image.\n\nExternal images always generate an HTML `<img>` tag.\n\nTiddlers that have a _canonical_uri field generate an HTML `<img>` tag with the src attribute containing the URI.\n\nTiddlers that contain image data generate an HTML `<img>` tag with the src attribute containing a base64 representation of the image.\n\nTiddlers that contain wikitext could be rendered to a DIV of the usual size of a tiddler, and then transformed to the size requested.\n\nThe width and height attributes are interpreted as a number of pixels, and do not need to include the \"px\" suffix.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar ImageWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nImageWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nImageWidget.prototype.render = function(parent,nextSibling) {\n\tthis.parentDomNode = parent;\n\tthis.computeAttributes();\n\tthis.execute();\n\t// Create element\n\t// Determine what type of image it is\n\tvar tag = \"img\", src = \"\",\n\t\ttiddler = this.wiki.getTiddler(this.imageSource);\n\tif(!tiddler) {\n\t\t// The source isn't the title of a tiddler, so we'll assume it's a URL\n\t\tsrc = this.getVariable(\"tv-get-export-image-link\",{params: [{name: \"src\",value: this.imageSource}],defaultValue: this.imageSource});\n\t} else {\n\t\t// Check if it is an image tiddler\n\t\tif(this.wiki.isImageTiddler(this.imageSource)) {\n\t\t\tvar type = tiddler.fields.type,\n\t\t\t\ttext = tiddler.fields.text,\n\t\t\t\t_canonical_uri = tiddler.fields._canonical_uri;\n\t\t\t// If the tiddler has body text then it doesn't need to be lazily loaded\n\t\t\tif(text) {\n\t\t\t\t// Render the appropriate element for the image type\n\t\t\t\tswitch(type) {\n\t\t\t\t\tcase \"application/pdf\":\n\t\t\t\t\t\ttag = \"embed\";\n\t\t\t\t\t\tsrc = \"data:application/pdf;base64,\" + text;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase \"image/svg+xml\":\n\t\t\t\t\t\tsrc = \"data:image/svg+xml,\" + encodeURIComponent(text);\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tdefault:\n\t\t\t\t\t\tsrc = \"data:\" + type + \";base64,\" + text;\n\t\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t} else if(_canonical_uri) {\n\t\t\t\tswitch(type) {\n\t\t\t\t\tcase \"application/pdf\":\n\t\t\t\t\t\ttag = \"embed\";\n\t\t\t\t\t\tsrc = _canonical_uri;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase \"image/svg+xml\":\n\t\t\t\t\t\tsrc = _canonical_uri;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tdefault:\n\t\t\t\t\t\tsrc = _canonical_uri;\n\t\t\t\t\t\tbreak;\n\t\t\t\t}\t\n\t\t\t} else {\n\t\t\t\t// Just trigger loading of the tiddler\n\t\t\t\tthis.wiki.getTiddlerText(this.imageSource);\n\t\t\t}\n\t\t}\n\t}\n\t// Create the element and assign the attributes\n\tvar domNode = this.document.createElement(tag);\n\tdomNode.setAttribute(\"src\",src);\n\tif(this.imageClass) {\n\t\tdomNode.setAttribute(\"class\",this.imageClass);\t\t\n\t}\n\tif(this.imageWidth) {\n\t\tdomNode.setAttribute(\"width\",this.imageWidth);\n\t}\n\tif(this.imageHeight) {\n\t\tdomNode.setAttribute(\"height\",this.imageHeight);\n\t}\n\tif(this.imageTooltip) {\n\t\tdomNode.setAttribute(\"title\",this.imageTooltip);\t\t\n\t}\n\tif(this.imageAlt) {\n\t\tdomNode.setAttribute(\"alt\",this.imageAlt);\t\t\n\t}\n\t// Insert element\n\tparent.insertBefore(domNode,nextSibling);\n\tthis.domNodes.push(domNode);\n};\n\n/*\nCompute the internal state of the widget\n*/\nImageWidget.prototype.execute = function() {\n\t// Get our parameters\n\tthis.imageSource = this.getAttribute(\"source\");\n\tthis.imageWidth = this.getAttribute(\"width\");\n\tthis.imageHeight = this.getAttribute(\"height\");\n\tthis.imageClass = this.getAttribute(\"class\");\n\tthis.imageTooltip = this.getAttribute(\"tooltip\");\n\tthis.imageAlt = this.getAttribute(\"alt\");\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nImageWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\tif(changedAttributes.source || changedAttributes.width || changedAttributes.height || changedAttributes[\"class\"] || changedAttributes.tooltip || changedTiddlers[this.imageSource]) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t} else {\n\t\treturn false;\t\t\n\t}\n};\n\nexports.image = ImageWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/importvariables.js": {
"title": "$:/core/modules/widgets/importvariables.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/importvariables.js\ntype: application/javascript\nmodule-type: widget\n\nImport variable definitions from other tiddlers\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar ImportVariablesWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nImportVariablesWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nImportVariablesWidget.prototype.render = function(parent,nextSibling) {\n\tthis.parentDomNode = parent;\n\tthis.computeAttributes();\n\tthis.execute();\n\tthis.renderChildren(parent,nextSibling);\n};\n\n/*\nCompute the internal state of the widget\n*/\nImportVariablesWidget.prototype.execute = function(tiddlerList) {\n\tvar self = this;\n\t// Get our parameters\n\tthis.filter = this.getAttribute(\"filter\");\n\t// Compute the filter\n\tthis.tiddlerList = tiddlerList || this.wiki.filterTiddlers(this.filter,this);\n\t// Accumulate the <$set> widgets from each tiddler\n\tvar widgetStackStart,widgetStackEnd;\n\tfunction addWidgetNode(widgetNode) {\n\t\tif(widgetNode) {\n\t\t\tif(!widgetStackStart && !widgetStackEnd) {\n\t\t\t\twidgetStackStart = widgetNode;\n\t\t\t\twidgetStackEnd = widgetNode;\n\t\t\t} else {\n\t\t\t\twidgetStackEnd.children = [widgetNode];\n\t\t\t\twidgetStackEnd = widgetNode;\n\t\t\t}\n\t\t}\n\t}\n\t$tw.utils.each(this.tiddlerList,function(title) {\n\t\tvar parser = self.wiki.parseTiddler(title);\n\t\tif(parser) {\n\t\t\tvar parseTreeNode = parser.tree[0];\n\t\t\twhile(parseTreeNode && parseTreeNode.type === \"set\") {\n\t\t\t\taddWidgetNode({\n\t\t\t\t\ttype: \"set\",\n\t\t\t\t\tattributes: parseTreeNode.attributes,\n\t\t\t\t\tparams: parseTreeNode.params,\n\t\t\t\t\tisMacroDefinition: parseTreeNode.isMacroDefinition\n\t\t\t\t});\n\t\t\t\tparseTreeNode = parseTreeNode.children[0];\n\t\t\t}\n\t\t} \n\t});\n\t// Add our own children to the end of the pile\n\tvar parseTreeNodes;\n\tif(widgetStackStart && widgetStackEnd) {\n\t\tparseTreeNodes = [widgetStackStart];\n\t\twidgetStackEnd.children = this.parseTreeNode.children;\n\t} else {\n\t\tparseTreeNodes = this.parseTreeNode.children;\n\t}\n\t// Construct the child widgets\n\tthis.makeChildWidgets(parseTreeNodes);\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nImportVariablesWidget.prototype.refresh = function(changedTiddlers) {\n\t// Recompute our attributes and the filter list\n\tvar changedAttributes = this.computeAttributes(),\n\t\ttiddlerList = this.wiki.filterTiddlers(this.getAttribute(\"filter\"),this);\n\t// Refresh if the filter has changed, or the list of tiddlers has changed, or any of the tiddlers in the list has changed\n\tfunction haveListedTiddlersChanged() {\n\t\tvar changed = false;\n\t\ttiddlerList.forEach(function(title) {\n\t\t\tif(changedTiddlers[title]) {\n\t\t\t\tchanged = true;\n\t\t\t}\n\t\t});\n\t\treturn changed;\n\t}\n\tif(changedAttributes.filter || !$tw.utils.isArrayEqual(this.tiddlerList,tiddlerList) || haveListedTiddlersChanged()) {\n\t\t// Compute the filter\n\t\tthis.removeChildDomNodes();\n\t\tthis.execute(tiddlerList);\n\t\tthis.renderChildren(this.parentDomNode,this.findNextSiblingDomNode());\n\t\treturn true;\n\t} else {\n\t\treturn this.refreshChildren(changedTiddlers);\t\t\n\t}\n};\n\nexports.importvariables = ImportVariablesWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/keyboard.js": {
"title": "$:/core/modules/widgets/keyboard.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/keyboard.js\ntype: application/javascript\nmodule-type: widget\n\nKeyboard shortcut widget\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar KeyboardWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nKeyboardWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nKeyboardWidget.prototype.render = function(parent,nextSibling) {\n\tvar self = this;\n\t// Remember parent\n\tthis.parentDomNode = parent;\n\t// Compute attributes and execute state\n\tthis.computeAttributes();\n\tthis.execute();\n\tvar tag = this.parseTreeNode.isBlock ? \"div\" : \"span\";\n\tif(this.tag && $tw.config.htmlUnsafeElements.indexOf(this.tag) === -1) {\n\t\ttag = this.tag;\n\t}\n\t// Create element\n\tvar domNode = this.document.createElement(tag);\n\t// Assign classes\n\tvar classes = (this[\"class\"] || \"\").split(\" \");\n\tclasses.push(\"tc-keyboard\");\n\tdomNode.className = classes.join(\" \");\n\t// Add a keyboard event handler\n\tdomNode.addEventListener(\"keydown\",function (event) {\n\t\tif($tw.keyboardManager.checkKeyDescriptors(event,self.keyInfoArray)) {\n\t\t\tself.invokeActions(self,event);\n\t\t\tif(self.actions) {\n\t\t\t\tself.invokeActionString(self.actions,self,event);\n\t\t\t}\n\t\t\tself.dispatchMessage(event);\n\t\t\tevent.preventDefault();\n\t\t\tevent.stopPropagation();\n\t\t\treturn true;\n\t\t}\n\t\treturn false;\n\t},false);\n\t// Insert element\n\tparent.insertBefore(domNode,nextSibling);\n\tthis.renderChildren(domNode,null);\n\tthis.domNodes.push(domNode);\n};\n\nKeyboardWidget.prototype.dispatchMessage = function(event) {\n\tthis.dispatchEvent({type: this.message, param: this.param, tiddlerTitle: this.getVariable(\"currentTiddler\")});\n};\n\n/*\nCompute the internal state of the widget\n*/\nKeyboardWidget.prototype.execute = function() {\n\tvar self = this;\n\t// Get attributes\n\tthis.actions = this.getAttribute(\"actions\",\"\");\n\tthis.message = this.getAttribute(\"message\",\"\");\n\tthis.param = this.getAttribute(\"param\",\"\");\n\tthis.key = this.getAttribute(\"key\",\"\");\n\tthis.tag = this.getAttribute(\"tag\",\"\");\n\tthis.keyInfoArray = $tw.keyboardManager.parseKeyDescriptors(this.key);\n\tthis[\"class\"] = this.getAttribute(\"class\",\"\");\n\tif(this.key.substr(0,2) === \"((\" && this.key.substr(-2,2) === \"))\") {\n\t\tthis.shortcutTiddlers = [];\n\t\tvar name = this.key.substring(2,this.key.length -2);\n\t\t$tw.utils.each($tw.keyboardManager.lookupNames,function(platformDescriptor) {\n\t\t\tself.shortcutTiddlers.push(\"$:/config/\" + platformDescriptor + \"/\" + name);\n\t\t});\n\t}\n\t// Make child widgets\n\tthis.makeChildWidgets();\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nKeyboardWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\tif(changedAttributes.message || changedAttributes.param || changedAttributes.key || changedAttributes[\"class\"] || changedAttributes.tag) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t}\n\t// Update the keyInfoArray if one of its shortcut-config-tiddlers has changed\n\tif(this.shortcutTiddlers && $tw.utils.hopArray(changedTiddlers,this.shortcutTiddlers)) {\n\t\tthis.keyInfoArray = $tw.keyboardManager.parseKeyDescriptors(this.key);\n\t}\n\treturn this.refreshChildren(changedTiddlers);\n};\n\nexports.keyboard = KeyboardWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/link.js": {
"title": "$:/core/modules/widgets/link.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/link.js\ntype: application/javascript\nmodule-type: widget\n\nLink widget\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar LinkWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nLinkWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nLinkWidget.prototype.render = function(parent,nextSibling) {\n\t// Save the parent dom node\n\tthis.parentDomNode = parent;\n\t// Compute our attributes\n\tthis.computeAttributes();\n\t// Execute our logic\n\tthis.execute();\n\t// Get the value of the tv-wikilinks configuration macro\n\tvar wikiLinksMacro = this.getVariable(\"tv-wikilinks\"),\n\t\tuseWikiLinks = wikiLinksMacro ? (wikiLinksMacro.trim() !== \"no\") : true,\n\t\tmissingLinksEnabled = !(this.hideMissingLinks && this.isMissing && !this.isShadow);\n\t// Render the link if required\n\tif(useWikiLinks && missingLinksEnabled) {\n\t\tthis.renderLink(parent,nextSibling);\n\t} else {\n\t\t// Just insert the link text\n\t\tvar domNode = this.document.createElement(\"span\");\n\t\tparent.insertBefore(domNode,nextSibling);\n\t\tthis.renderChildren(domNode,null);\n\t\tthis.domNodes.push(domNode);\n\t}\n};\n\n/*\nRender this widget into the DOM\n*/\nLinkWidget.prototype.renderLink = function(parent,nextSibling) {\n\tvar self = this;\n\t// Sanitise the specified tag\n\tvar tag = this.linkTag;\n\tif($tw.config.htmlUnsafeElements.indexOf(tag) !== -1) {\n\t\ttag = \"a\";\n\t}\n\t// Create our element\n\tvar domNode = this.document.createElement(tag);\n\t// Assign classes\n\tvar classes = [];\n\tif(this.overrideClasses === undefined) {\n\t\tclasses.push(\"tc-tiddlylink\");\n\t\tif(this.isShadow) {\n\t\t\tclasses.push(\"tc-tiddlylink-shadow\");\n\t\t}\n\t\tif(this.isMissing && !this.isShadow) {\n\t\t\tclasses.push(\"tc-tiddlylink-missing\");\n\t\t} else {\n\t\t\tif(!this.isMissing) {\n\t\t\t\tclasses.push(\"tc-tiddlylink-resolves\");\n\t\t\t}\n\t\t}\n\t\tif(this.linkClasses) {\n\t\t\tclasses.push(this.linkClasses);\t\t\t\n\t\t}\n\t} else if(this.overrideClasses !== \"\") {\n\t\tclasses.push(this.overrideClasses)\n\t}\n\tif(classes.length > 0) {\n\t\tdomNode.setAttribute(\"class\",classes.join(\" \"));\n\t}\n\t// Set an href\n\tvar wikilinkTransformFilter = this.getVariable(\"tv-filter-export-link\"),\n\t\twikiLinkText;\n\tif(wikilinkTransformFilter) {\n\t\t// Use the filter to construct the href\n\t\twikiLinkText = this.wiki.filterTiddlers(wikilinkTransformFilter,this,function(iterator) {\n\t\t\titerator(self.wiki.getTiddler(self.to),self.to)\n\t\t})[0];\n\t} else {\n\t\t// Expand the tv-wikilink-template variable to construct the href\n\t\tvar wikiLinkTemplateMacro = this.getVariable(\"tv-wikilink-template\"),\n\t\t\twikiLinkTemplate = wikiLinkTemplateMacro ? wikiLinkTemplateMacro.trim() : \"#$uri_encoded$\";\n\t\twikiLinkText = $tw.utils.replaceString(wikiLinkTemplate,\"$uri_encoded$\",encodeURIComponent(this.to));\n\t\twikiLinkText = $tw.utils.replaceString(wikiLinkText,\"$uri_doubleencoded$\",encodeURIComponent(encodeURIComponent(this.to)));\n\t}\n\t// Override with the value of tv-get-export-link if defined\n\twikiLinkText = this.getVariable(\"tv-get-export-link\",{params: [{name: \"to\",value: this.to}],defaultValue: wikiLinkText});\n\tif(tag === \"a\") {\n\t\tdomNode.setAttribute(\"href\",wikiLinkText);\n\t}\n\t// Set the tabindex\n\tif(this.tabIndex) {\n\t\tdomNode.setAttribute(\"tabindex\",this.tabIndex);\n\t}\n\t// Set the tooltip\n\t// HACK: Performance issues with re-parsing the tooltip prevent us defaulting the tooltip to \"<$transclude field='tooltip'><$transclude field='title'/></$transclude>\"\n\tvar tooltipWikiText = this.tooltip || this.getVariable(\"tv-wikilink-tooltip\");\n\tif(tooltipWikiText) {\n\t\tvar tooltipText = this.wiki.renderText(\"text/plain\",\"text/vnd.tiddlywiki\",tooltipWikiText,{\n\t\t\t\tparseAsInline: true,\n\t\t\t\tvariables: {\n\t\t\t\t\tcurrentTiddler: this.to\n\t\t\t\t},\n\t\t\t\tparentWidget: this\n\t\t\t});\n\t\tdomNode.setAttribute(\"title\",tooltipText);\n\t}\n\tif(this[\"aria-label\"]) {\n\t\tdomNode.setAttribute(\"aria-label\",this[\"aria-label\"]);\n\t}\n\t// Add a click event handler\n\t$tw.utils.addEventListeners(domNode,[\n\t\t{name: \"click\", handlerObject: this, handlerMethod: \"handleClickEvent\"},\n\t]);\n\t// Make the link draggable if required\n\tif(this.draggable === \"yes\") {\n\t\t$tw.utils.makeDraggable({\n\t\t\tdomNode: domNode,\n\t\t\tdragTiddlerFn: function() {return self.to;},\n\t\t\twidget: this\n\t\t});\n\t}\n\t// Insert the link into the DOM and render any children\n\tparent.insertBefore(domNode,nextSibling);\n\tthis.renderChildren(domNode,null);\n\tthis.domNodes.push(domNode);\n};\n\nLinkWidget.prototype.handleClickEvent = function(event) {\n\t// Send the click on its way as a navigate event\n\tvar bounds = this.domNodes[0].getBoundingClientRect();\n\tthis.dispatchEvent({\n\t\ttype: \"tm-navigate\",\n\t\tnavigateTo: this.to,\n\t\tnavigateFromTitle: this.getVariable(\"storyTiddler\"),\n\t\tnavigateFromNode: this,\n\t\tnavigateFromClientRect: { top: bounds.top, left: bounds.left, width: bounds.width, right: bounds.right, bottom: bounds.bottom, height: bounds.height\n\t\t},\n\t\tnavigateSuppressNavigation: event.metaKey || event.ctrlKey || (event.button === 1),\n\t\tmetaKey: event.metaKey,\n\t\tctrlKey: event.ctrlKey,\n\t\taltKey: event.altKey,\n\t\tshiftKey: event.shiftKey\n\t});\n\tif(this.domNodes[0].hasAttribute(\"href\")) {\n\t\tevent.preventDefault();\n\t}\n\tevent.stopPropagation();\n\treturn false;\n};\n\n/*\nCompute the internal state of the widget\n*/\nLinkWidget.prototype.execute = function() {\n\t// Pick up our attributes\n\tthis.to = this.getAttribute(\"to\",this.getVariable(\"currentTiddler\"));\n\tthis.tooltip = this.getAttribute(\"tooltip\");\n\tthis[\"aria-label\"] = this.getAttribute(\"aria-label\");\n\tthis.linkClasses = this.getAttribute(\"class\");\n\tthis.overrideClasses = this.getAttribute(\"overrideClass\");\n\tthis.tabIndex = this.getAttribute(\"tabindex\");\n\tthis.draggable = this.getAttribute(\"draggable\",\"yes\");\n\tthis.linkTag = this.getAttribute(\"tag\",\"a\");\n\t// Determine the link characteristics\n\tthis.isMissing = !this.wiki.tiddlerExists(this.to);\n\tthis.isShadow = this.wiki.isShadowTiddler(this.to);\n\tthis.hideMissingLinks = (this.getVariable(\"tv-show-missing-links\") || \"yes\") === \"no\";\n\t// Make the child widgets\n\tvar templateTree;\n\tif(this.parseTreeNode.children && this.parseTreeNode.children.length > 0) {\n\t\ttemplateTree = this.parseTreeNode.children;\n\t} else {\n\t\t// Default template is a link to the title\n\t\ttemplateTree = [{type: \"text\", text: this.to}];\n\t}\n\tthis.makeChildWidgets(templateTree);\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nLinkWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\tif(changedAttributes.to || changedTiddlers[this.to] || changedAttributes[\"aria-label\"] || changedAttributes.tooltip) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t}\n\treturn this.refreshChildren(changedTiddlers);\n};\n\nexports.link = LinkWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/linkcatcher.js": {
"title": "$:/core/modules/widgets/linkcatcher.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/linkcatcher.js\ntype: application/javascript\nmodule-type: widget\n\nLinkcatcher widget\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar LinkCatcherWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n\tthis.addEventListeners([\n\t\t{type: \"tm-navigate\", handler: \"handleNavigateEvent\"}\n\t]);\n};\n\n/*\nInherit from the base widget class\n*/\nLinkCatcherWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nLinkCatcherWidget.prototype.render = function(parent,nextSibling) {\n\tthis.parentDomNode = parent;\n\tthis.computeAttributes();\n\tthis.execute();\n\tthis.renderChildren(parent,nextSibling);\n};\n\n/*\nCompute the internal state of the widget\n*/\nLinkCatcherWidget.prototype.execute = function() {\n\t// Get our parameters\n\tthis.catchTo = this.getAttribute(\"to\");\n\tthis.catchMessage = this.getAttribute(\"message\");\n\tthis.catchSet = this.getAttribute(\"set\");\n\tthis.catchSetTo = this.getAttribute(\"setTo\");\n\tthis.catchActions = this.getAttribute(\"actions\");\n\t// Construct the child widgets\n\tthis.makeChildWidgets();\n\t// When executing actions we avoid trapping navigate events, so that we don't trigger ourselves recursively\n\tthis.executingActions = false;\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nLinkCatcherWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\tif(changedAttributes.to || changedAttributes.message || changedAttributes.set || changedAttributes.setTo) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t} else {\n\t\treturn this.refreshChildren(changedTiddlers);\t\t\n\t}\n};\n\n/*\nHandle a tm-navigate event\n*/\nLinkCatcherWidget.prototype.handleNavigateEvent = function(event) {\n\tif(!this.executingActions) {\n\t\t// Execute the actions\n\t\tif(this.catchTo) {\n\t\t\tthis.wiki.setTextReference(this.catchTo,event.navigateTo,this.getVariable(\"currentTiddler\"));\n\t\t}\n\t\tif(this.catchMessage && this.parentWidget) {\n\t\t\tthis.parentWidget.dispatchEvent({\n\t\t\t\ttype: this.catchMessage,\n\t\t\t\tparam: event.navigateTo,\n\t\t\t\tnavigateTo: event.navigateTo\n\t\t\t});\n\t\t}\n\t\tif(this.catchSet) {\n\t\t\tvar tiddler = this.wiki.getTiddler(this.catchSet);\n\t\t\tthis.wiki.addTiddler(new $tw.Tiddler(tiddler,{title: this.catchSet, text: this.catchSetTo}));\n\t\t}\n\t\tif(this.catchActions) {\n\t\t\tthis.executingActions = true;\n\t\t\tthis.invokeActionString(this.catchActions,this,event,{navigateTo: event.navigateTo});\n\t\t\tthis.executingActions = false;\n\t\t}\n\t} else {\n\t\t// This is a navigate event generated by the actions of this linkcatcher, so we don't trap it again, but just pass it to the parent\n\t\tthis.parentWidget.dispatchEvent({\n\t\t\ttype: \"tm-navigate\",\n\t\t\tparam: event.navigateTo,\n\t\t\tnavigateTo: event.navigateTo\n\t\t});\n\t}\n\treturn false;\n};\n\nexports.linkcatcher = LinkCatcherWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/list.js": {
"title": "$:/core/modules/widgets/list.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/list.js\ntype: application/javascript\nmodule-type: widget\n\nList and list item widgets\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\n/*\nThe list widget creates list element sub-widgets that reach back into the list widget for their configuration\n*/\n\nvar ListWidget = function(parseTreeNode,options) {\n\t// Initialise the storyviews if they've not been done already\n\tif(!this.storyViews) {\n\t\tListWidget.prototype.storyViews = {};\n\t\t$tw.modules.applyMethods(\"storyview\",this.storyViews);\n\t}\n\t// Main initialisation inherited from widget.js\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nListWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nListWidget.prototype.render = function(parent,nextSibling) {\n\tthis.parentDomNode = parent;\n\tthis.computeAttributes();\n\tthis.execute();\n\tthis.renderChildren(parent,nextSibling);\n\t// Construct the storyview\n\tvar StoryView = this.storyViews[this.storyViewName];\n\tif(this.storyViewName && !StoryView) {\n\t\tStoryView = this.storyViews[\"classic\"];\n\t}\n\tif(StoryView && !this.document.isTiddlyWikiFakeDom) {\n\t\tthis.storyview = new StoryView(this);\n\t} else {\n\t\tthis.storyview = null;\n\t}\n};\n\n/*\nCompute the internal state of the widget\n*/\nListWidget.prototype.execute = function() {\n\t// Get our attributes\n\tthis.template = this.getAttribute(\"template\");\n\tthis.editTemplate = this.getAttribute(\"editTemplate\");\n\tthis.variableName = this.getAttribute(\"variable\",\"currentTiddler\");\n\tthis.storyViewName = this.getAttribute(\"storyview\");\n\tthis.historyTitle = this.getAttribute(\"history\");\n\t// Compose the list elements\n\tthis.list = this.getTiddlerList();\n\tvar members = [],\n\t\tself = this;\n\t// Check for an empty list\n\tif(this.list.length === 0) {\n\t\tmembers = this.getEmptyMessage();\n\t} else {\n\t\t$tw.utils.each(this.list,function(title,index) {\n\t\t\tmembers.push(self.makeItemTemplate(title));\n\t\t});\n\t}\n\t// Construct the child widgets\n\tthis.makeChildWidgets(members);\n\t// Clear the last history\n\tthis.history = [];\n};\n\nListWidget.prototype.getTiddlerList = function() {\n\tvar defaultFilter = \"[!is[system]sort[title]]\";\n\treturn this.wiki.filterTiddlers(this.getAttribute(\"filter\",defaultFilter),this);\n};\n\nListWidget.prototype.getEmptyMessage = function() {\n\tvar emptyMessage = this.getAttribute(\"emptyMessage\",\"\"),\n\t\tparser = this.wiki.parseText(\"text/vnd.tiddlywiki\",emptyMessage,{parseAsInline: true});\n\tif(parser) {\n\t\treturn parser.tree;\n\t} else {\n\t\treturn [];\n\t}\n};\n\n/*\nCompose the template for a list item\n*/\nListWidget.prototype.makeItemTemplate = function(title) {\n\t// Check if the tiddler is a draft\n\tvar tiddler = this.wiki.getTiddler(title),\n\t\tisDraft = tiddler && tiddler.hasField(\"draft.of\"),\n\t\ttemplate = this.template,\n\t\ttemplateTree;\n\tif(isDraft && this.editTemplate) {\n\t\ttemplate = this.editTemplate;\n\t}\n\t// Compose the transclusion of the template\n\tif(template) {\n\t\ttemplateTree = [{type: \"transclude\", attributes: {tiddler: {type: \"string\", value: template}}}];\n\t} else {\n\t\tif(this.parseTreeNode.children && this.parseTreeNode.children.length > 0) {\n\t\t\ttemplateTree = this.parseTreeNode.children;\n\t\t} else {\n\t\t\t// Default template is a link to the title\n\t\t\ttemplateTree = [{type: \"element\", tag: this.parseTreeNode.isBlock ? \"div\" : \"span\", children: [{type: \"link\", attributes: {to: {type: \"string\", value: title}}, children: [\n\t\t\t\t\t{type: \"text\", text: title}\n\t\t\t]}]}];\n\t\t}\n\t}\n\t// Return the list item\n\treturn {type: \"listitem\", itemTitle: title, variableName: this.variableName, children: templateTree};\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nListWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes(),\n\t\tresult;\n\t// Call the storyview\n\tif(this.storyview && this.storyview.refreshStart) {\n\t\tthis.storyview.refreshStart(changedTiddlers,changedAttributes);\n\t}\n\t// Completely refresh if any of our attributes have changed\n\tif(changedAttributes.filter || changedAttributes.template || changedAttributes.editTemplate || changedAttributes.emptyMessage || changedAttributes.storyview || changedAttributes.history) {\n\t\tthis.refreshSelf();\n\t\tresult = true;\n\t} else {\n\t\t// Handle any changes to the list\n\t\tresult = this.handleListChanges(changedTiddlers);\n\t\t// Handle any changes to the history stack\n\t\tif(this.historyTitle && changedTiddlers[this.historyTitle]) {\n\t\t\tthis.handleHistoryChanges();\n\t\t}\n\t}\n\t// Call the storyview\n\tif(this.storyview && this.storyview.refreshEnd) {\n\t\tthis.storyview.refreshEnd(changedTiddlers,changedAttributes);\n\t}\n\treturn result;\n};\n\n/*\nHandle any changes to the history list\n*/\nListWidget.prototype.handleHistoryChanges = function() {\n\t// Get the history data\n\tvar newHistory = this.wiki.getTiddlerDataCached(this.historyTitle,[]);\n\t// Ignore any entries of the history that match the previous history\n\tvar entry = 0;\n\twhile(entry < newHistory.length && entry < this.history.length && newHistory[entry].title === this.history[entry].title) {\n\t\tentry++;\n\t}\n\t// Navigate forwards to each of the new tiddlers\n\twhile(entry < newHistory.length) {\n\t\tif(this.storyview && this.storyview.navigateTo) {\n\t\t\tthis.storyview.navigateTo(newHistory[entry]);\n\t\t}\n\t\tentry++;\n\t}\n\t// Update the history\n\tthis.history = newHistory;\n};\n\n/*\nProcess any changes to the list\n*/\nListWidget.prototype.handleListChanges = function(changedTiddlers) {\n\t// Get the new list\n\tvar prevList = this.list;\n\tthis.list = this.getTiddlerList();\n\t// Check for an empty list\n\tif(this.list.length === 0) {\n\t\t// Check if it was empty before\n\t\tif(prevList.length === 0) {\n\t\t\t// If so, just refresh the empty message\n\t\t\treturn this.refreshChildren(changedTiddlers);\n\t\t} else {\n\t\t\t// Replace the previous content with the empty message\n\t\t\tfor(t=this.children.length-1; t>=0; t--) {\n\t\t\t\tthis.removeListItem(t);\n\t\t\t}\n\t\t\tvar nextSibling = this.findNextSiblingDomNode();\n\t\t\tthis.makeChildWidgets(this.getEmptyMessage());\n\t\t\tthis.renderChildren(this.parentDomNode,nextSibling);\n\t\t\treturn true;\n\t\t}\n\t} else {\n\t\t// If the list was empty then we need to remove the empty message\n\t\tif(prevList.length === 0) {\n\t\t\tthis.removeChildDomNodes();\n\t\t\tthis.children = [];\n\t\t}\n\t\t// Cycle through the list, inserting and removing list items as needed\n\t\tvar hasRefreshed = false;\n\t\tfor(var t=0; t<this.list.length; t++) {\n\t\t\tvar index = this.findListItem(t,this.list[t]);\n\t\t\tif(index === undefined) {\n\t\t\t\t// The list item must be inserted\n\t\t\t\tthis.insertListItem(t,this.list[t]);\n\t\t\t\thasRefreshed = true;\n\t\t\t} else {\n\t\t\t\t// There are intervening list items that must be removed\n\t\t\t\tfor(var n=index-1; n>=t; n--) {\n\t\t\t\t\tthis.removeListItem(n);\n\t\t\t\t\thasRefreshed = true;\n\t\t\t\t}\n\t\t\t\t// Refresh the item we're reusing\n\t\t\t\tvar refreshed = this.children[t].refresh(changedTiddlers);\n\t\t\t\thasRefreshed = hasRefreshed || refreshed;\n\t\t\t}\n\t\t}\n\t\t// Remove any left over items\n\t\tfor(t=this.children.length-1; t>=this.list.length; t--) {\n\t\t\tthis.removeListItem(t);\n\t\t\thasRefreshed = true;\n\t\t}\n\t\treturn hasRefreshed;\n\t}\n};\n\n/*\nFind the list item with a given title, starting from a specified position\n*/\nListWidget.prototype.findListItem = function(startIndex,title) {\n\twhile(startIndex < this.children.length) {\n\t\tif(this.children[startIndex].parseTreeNode.itemTitle === title) {\n\t\t\treturn startIndex;\n\t\t}\n\t\tstartIndex++;\n\t}\n\treturn undefined;\n};\n\n/*\nInsert a new list item at the specified index\n*/\nListWidget.prototype.insertListItem = function(index,title) {\n\t// Create, insert and render the new child widgets\n\tvar widget = this.makeChildWidget(this.makeItemTemplate(title));\n\twidget.parentDomNode = this.parentDomNode; // Hack to enable findNextSiblingDomNode() to work\n\tthis.children.splice(index,0,widget);\n\tvar nextSibling = widget.findNextSiblingDomNode();\n\twidget.render(this.parentDomNode,nextSibling);\n\t// Animate the insertion if required\n\tif(this.storyview && this.storyview.insert) {\n\t\tthis.storyview.insert(widget);\n\t}\n\treturn true;\n};\n\n/*\nRemove the specified list item\n*/\nListWidget.prototype.removeListItem = function(index) {\n\tvar widget = this.children[index];\n\t// Animate the removal if required\n\tif(this.storyview && this.storyview.remove) {\n\t\tthis.storyview.remove(widget);\n\t} else {\n\t\twidget.removeChildDomNodes();\n\t}\n\t// Remove the child widget\n\tthis.children.splice(index,1);\n};\n\nexports.list = ListWidget;\n\nvar ListItemWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nListItemWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nListItemWidget.prototype.render = function(parent,nextSibling) {\n\tthis.parentDomNode = parent;\n\tthis.computeAttributes();\n\tthis.execute();\n\tthis.renderChildren(parent,nextSibling);\n};\n\n/*\nCompute the internal state of the widget\n*/\nListItemWidget.prototype.execute = function() {\n\t// Set the current list item title\n\tthis.setVariable(this.parseTreeNode.variableName,this.parseTreeNode.itemTitle);\n\t// Construct the child widgets\n\tthis.makeChildWidgets();\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nListItemWidget.prototype.refresh = function(changedTiddlers) {\n\treturn this.refreshChildren(changedTiddlers);\n};\n\nexports.listitem = ListItemWidget;\n\n})();",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/macrocall.js": {
"title": "$:/core/modules/widgets/macrocall.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/macrocall.js\ntype: application/javascript\nmodule-type: widget\n\nMacrocall widget\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar MacroCallWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nMacroCallWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nMacroCallWidget.prototype.render = function(parent,nextSibling) {\n\tthis.parentDomNode = parent;\n\tthis.computeAttributes();\n\tthis.execute();\n\tthis.renderChildren(parent,nextSibling);\n};\n\n/*\nCompute the internal state of the widget\n*/\nMacroCallWidget.prototype.execute = function() {\n\t// Get the parse type if specified\n\tthis.parseType = this.getAttribute(\"$type\",\"text/vnd.tiddlywiki\");\n\tthis.renderOutput = this.getAttribute(\"$output\",\"text/html\");\n\t// Merge together the parameters specified in the parse tree with the specified attributes\n\tvar params = this.parseTreeNode.params ? this.parseTreeNode.params.slice(0) : [];\n\t$tw.utils.each(this.attributes,function(attribute,name) {\n\t\tif(name.charAt(0) !== \"$\") {\n\t\t\tparams.push({name: name, value: attribute});\t\t\t\n\t\t}\n\t});\n\t// Get the macro value\n\tvar macroName = this.parseTreeNode.name || this.getAttribute(\"$name\"),\n\t\tvariableInfo = this.getVariableInfo(macroName,{params: params}),\n\t\ttext = variableInfo.text,\n\t\tparseTreeNodes;\n\t// Are we rendering to HTML?\n\tif(this.renderOutput === \"text/html\") {\n\t\t// If so we'll return the parsed macro\n\t\tvar parser = this.wiki.parseText(this.parseType,text,\n\t\t\t\t\t\t\t{parseAsInline: !this.parseTreeNode.isBlock});\n\t\tparseTreeNodes = parser ? parser.tree : [];\n\t\t// Wrap the parse tree in a vars widget assigning the parameters to variables named \"__paramname__\"\n\t\tvar attributes = {};\n\t\t$tw.utils.each(variableInfo.params,function(param) {\n\t\t\tvar name = \"__\" + param.name + \"__\";\n\t\t\tattributes[name] = {\n\t\t\t\tname: name,\n\t\t\t\ttype: \"string\",\n\t\t\t\tvalue: param.value\n\t\t\t};\n\t\t});\n\t\tparseTreeNodes = [{\n\t\t\ttype: \"vars\",\n\t\t\tattributes: attributes,\n\t\t\tchildren: parseTreeNodes\n\t\t}];\n\t} else {\n\t\t// Otherwise, we'll render the text\n\t\tvar plainText = this.wiki.renderText(\"text/plain\",this.parseType,text,{parentWidget: this});\n\t\tparseTreeNodes = [{type: \"text\", text: plainText}];\n\t}\n\t// Construct the child widgets\n\tthis.makeChildWidgets(parseTreeNodes);\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nMacroCallWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\tif($tw.utils.count(changedAttributes) > 0) {\n\t\t// Rerender ourselves\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t} else {\n\t\treturn this.refreshChildren(changedTiddlers);\n\t}\n};\n\nexports.macrocall = MacroCallWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/navigator.js": {
"title": "$:/core/modules/widgets/navigator.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/navigator.js\ntype: application/javascript\nmodule-type: widget\n\nNavigator widget\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar IMPORT_TITLE = \"$:/Import\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar NavigatorWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n\tthis.addEventListeners([\n\t\t{type: \"tm-navigate\", handler: \"handleNavigateEvent\"},\n\t\t{type: \"tm-edit-tiddler\", handler: \"handleEditTiddlerEvent\"},\n\t\t{type: \"tm-delete-tiddler\", handler: \"handleDeleteTiddlerEvent\"},\n\t\t{type: \"tm-save-tiddler\", handler: \"handleSaveTiddlerEvent\"},\n\t\t{type: \"tm-cancel-tiddler\", handler: \"handleCancelTiddlerEvent\"},\n\t\t{type: \"tm-close-tiddler\", handler: \"handleCloseTiddlerEvent\"},\n\t\t{type: \"tm-close-all-tiddlers\", handler: \"handleCloseAllTiddlersEvent\"},\n\t\t{type: \"tm-close-other-tiddlers\", handler: \"handleCloseOtherTiddlersEvent\"},\n\t\t{type: \"tm-new-tiddler\", handler: \"handleNewTiddlerEvent\"},\n\t\t{type: \"tm-import-tiddlers\", handler: \"handleImportTiddlersEvent\"},\n\t\t{type: \"tm-perform-import\", handler: \"handlePerformImportEvent\"},\n\t\t{type: \"tm-fold-tiddler\", handler: \"handleFoldTiddlerEvent\"},\n\t\t{type: \"tm-fold-other-tiddlers\", handler: \"handleFoldOtherTiddlersEvent\"},\n\t\t{type: \"tm-fold-all-tiddlers\", handler: \"handleFoldAllTiddlersEvent\"},\n\t\t{type: \"tm-unfold-all-tiddlers\", handler: \"handleUnfoldAllTiddlersEvent\"},\n\t\t{type: \"tm-rename-tiddler\", handler: \"handleRenameTiddlerEvent\"}\n\t]);\n};\n\n/*\nInherit from the base widget class\n*/\nNavigatorWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nNavigatorWidget.prototype.render = function(parent,nextSibling) {\n\tthis.parentDomNode = parent;\n\tthis.computeAttributes();\n\tthis.execute();\n\tthis.renderChildren(parent,nextSibling);\n};\n\n/*\nCompute the internal state of the widget\n*/\nNavigatorWidget.prototype.execute = function() {\n\t// Get our parameters\n\tthis.storyTitle = this.getAttribute(\"story\");\n\tthis.historyTitle = this.getAttribute(\"history\");\n\tthis.setVariable(\"tv-story-list\",this.storyTitle);\n\tthis.setVariable(\"tv-history-list\",this.historyTitle);\n\t// Construct the child widgets\n\tthis.makeChildWidgets();\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nNavigatorWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\tif(changedAttributes.story || changedAttributes.history) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t} else {\n\t\treturn this.refreshChildren(changedTiddlers);\n\t}\n};\n\nNavigatorWidget.prototype.getStoryList = function() {\n\treturn this.storyTitle ? this.wiki.getTiddlerList(this.storyTitle) : null;\n};\n\nNavigatorWidget.prototype.saveStoryList = function(storyList) {\n\tif(this.storyTitle) {\n\t\tvar storyTiddler = this.wiki.getTiddler(this.storyTitle);\n\t\tthis.wiki.addTiddler(new $tw.Tiddler(\n\t\t\t{title: this.storyTitle},\n\t\t\tstoryTiddler,\n\t\t\t{list: storyList}\n\t\t));\t\t\n\t}\n};\n\nNavigatorWidget.prototype.removeTitleFromStory = function(storyList,title) {\n\tif(storyList) {\n\t\tvar p = storyList.indexOf(title);\n\t\twhile(p !== -1) {\n\t\t\tstoryList.splice(p,1);\n\t\t\tp = storyList.indexOf(title);\n\t\t}\t\t\n\t}\n};\n\nNavigatorWidget.prototype.replaceFirstTitleInStory = function(storyList,oldTitle,newTitle) {\n\tif(storyList) {\n\t\tvar pos = storyList.indexOf(oldTitle);\n\t\tif(pos !== -1) {\n\t\t\tstoryList[pos] = newTitle;\n\t\t\tdo {\n\t\t\t\tpos = storyList.indexOf(oldTitle,pos + 1);\n\t\t\t\tif(pos !== -1) {\n\t\t\t\t\tstoryList.splice(pos,1);\n\t\t\t\t}\n\t\t\t} while(pos !== -1);\n\t\t} else {\n\t\t\tstoryList.splice(0,0,newTitle);\n\t\t}\t\t\n\t}\n};\n\nNavigatorWidget.prototype.addToStory = function(title,fromTitle) {\n\tif(this.storyTitle) {\n\t\tthis.wiki.addToStory(title,fromTitle,this.storyTitle,{\n\t\t\topenLinkFromInsideRiver: this.getAttribute(\"openLinkFromInsideRiver\",\"top\"),\n\t\t\topenLinkFromOutsideRiver: this.getAttribute(\"openLinkFromOutsideRiver\",\"top\")\n\t\t});\n\t}\n};\n\n/*\nAdd a new record to the top of the history stack\ntitle: a title string or an array of title strings\nfromPageRect: page coordinates of the origin of the navigation\n*/\nNavigatorWidget.prototype.addToHistory = function(title,fromPageRect) {\n\tthis.wiki.addToHistory(title,fromPageRect,this.historyTitle);\n};\n\n/*\nHandle a tm-navigate event\n*/\nNavigatorWidget.prototype.handleNavigateEvent = function(event) {\n\tevent = $tw.hooks.invokeHook(\"th-navigating\",event);\n\tif(event.navigateTo) {\n\t\tthis.addToStory(event.navigateTo,event.navigateFromTitle);\n\t\tif(!event.navigateSuppressNavigation) {\n\t\t\tthis.addToHistory(event.navigateTo,event.navigateFromClientRect);\n\t\t}\n\t}\n\treturn false;\n};\n\n// Close a specified tiddler\nNavigatorWidget.prototype.handleCloseTiddlerEvent = function(event) {\n\tvar title = event.param || event.tiddlerTitle,\n\t\tstoryList = this.getStoryList();\n\t// Look for tiddlers with this title to close\n\tthis.removeTitleFromStory(storyList,title);\n\tthis.saveStoryList(storyList);\n\treturn false;\n};\n\n// Close all tiddlers\nNavigatorWidget.prototype.handleCloseAllTiddlersEvent = function(event) {\n\tthis.saveStoryList([]);\n\treturn false;\n};\n\n// Close other tiddlers\nNavigatorWidget.prototype.handleCloseOtherTiddlersEvent = function(event) {\n\tvar title = event.param || event.tiddlerTitle;\n\tthis.saveStoryList([title]);\n\treturn false;\n};\n\n// Place a tiddler in edit mode\nNavigatorWidget.prototype.handleEditTiddlerEvent = function(event) {\n\tvar editTiddler = $tw.hooks.invokeHook(\"th-editing-tiddler\",event);\n\tif(!editTiddler) {\n\t\treturn false;\n\t}\n\tvar self = this;\n\tfunction isUnmodifiedShadow(title) {\n\t\treturn self.wiki.isShadowTiddler(title) && !self.wiki.tiddlerExists(title);\n\t}\n\tfunction confirmEditShadow(title) {\n\t\treturn confirm($tw.language.getString(\n\t\t\t\"ConfirmEditShadowTiddler\",\n\t\t\t{variables:\n\t\t\t\t{title: title}\n\t\t\t}\n\t\t));\n\t}\n\tvar title = event.param || event.tiddlerTitle;\n\tif(isUnmodifiedShadow(title) && !confirmEditShadow(title)) {\n\t\treturn false;\n\t}\n\t// Replace the specified tiddler with a draft in edit mode\n\tvar draftTiddler = this.makeDraftTiddler(title);\n\t// Update the story and history if required\n\tif(!event.paramObject || event.paramObject.suppressNavigation !== \"yes\") {\n\t\tvar draftTitle = draftTiddler.fields.title,\n\t\t\tstoryList = this.getStoryList();\n\t\tthis.removeTitleFromStory(storyList,draftTitle);\n\t\tthis.replaceFirstTitleInStory(storyList,title,draftTitle);\n\t\tthis.addToHistory(draftTitle,event.navigateFromClientRect);\n\t\tthis.saveStoryList(storyList);\n\t\treturn false;\n\t}\n};\n\n// Delete a tiddler\nNavigatorWidget.prototype.handleDeleteTiddlerEvent = function(event) {\n\t// Get the tiddler we're deleting\n\tvar title = event.param || event.tiddlerTitle,\n\t\ttiddler = this.wiki.getTiddler(title),\n\t\tstoryList = this.getStoryList(),\n\t\toriginalTitle = tiddler ? tiddler.fields[\"draft.of\"] : \"\",\n\t\toriginalTiddler = originalTitle ? this.wiki.getTiddler(originalTitle) : undefined,\n\t\tconfirmationTitle;\n\tif(!tiddler) {\n\t\treturn false;\n\t}\n\t// Check if the tiddler we're deleting is in draft mode\n\tif(originalTitle) {\n\t\t// If so, we'll prompt for confirmation referencing the original tiddler\n\t\tconfirmationTitle = originalTitle;\n\t} else {\n\t\t// If not a draft, then prompt for confirmation referencing the specified tiddler\n\t\tconfirmationTitle = title;\n\t}\n\t// Seek confirmation\n\tif((this.wiki.getTiddler(originalTitle) || (tiddler.fields.text || \"\") !== \"\") && !confirm($tw.language.getString(\n\t\t\t\t\"ConfirmDeleteTiddler\",\n\t\t\t\t{variables:\n\t\t\t\t\t{title: confirmationTitle}\n\t\t\t\t}\n\t\t\t))) {\n\t\treturn false;\n\t}\n\t// Delete the original tiddler\n\tif(originalTitle) {\n\t\tif(originalTiddler) {\n\t\t\t$tw.hooks.invokeHook(\"th-deleting-tiddler\",originalTiddler);\n\t\t}\n\t\tthis.wiki.deleteTiddler(originalTitle);\n\t\tthis.removeTitleFromStory(storyList,originalTitle);\n\t}\n\t// Invoke the hook function and delete this tiddler\n\t$tw.hooks.invokeHook(\"th-deleting-tiddler\",tiddler);\n\tthis.wiki.deleteTiddler(title);\n\t// Remove the closed tiddler from the story\n\tthis.removeTitleFromStory(storyList,title);\n\tthis.saveStoryList(storyList);\n\t// Trigger an autosave\n\t$tw.rootWidget.dispatchEvent({type: \"tm-auto-save-wiki\"});\n\treturn false;\n};\n\n/*\nCreate/reuse the draft tiddler for a given title\n*/\nNavigatorWidget.prototype.makeDraftTiddler = function(targetTitle) {\n\t// See if there is already a draft tiddler for this tiddler\n\tvar draftTitle = this.wiki.findDraft(targetTitle);\n\tif(draftTitle) {\n\t\treturn this.wiki.getTiddler(draftTitle);\n\t}\n\t// Get the current value of the tiddler we're editing\n\tvar tiddler = this.wiki.getTiddler(targetTitle);\n\t// Save the initial value of the draft tiddler\n\tdraftTitle = this.generateDraftTitle(targetTitle);\n\tvar draftTiddler = new $tw.Tiddler(\n\t\t\ttiddler,\n\t\t\t{\n\t\t\t\ttitle: draftTitle,\n\t\t\t\t\"draft.title\": targetTitle,\n\t\t\t\t\"draft.of\": targetTitle\n\t\t\t},\n\t\t\tthis.wiki.getModificationFields()\n\t\t);\n\tthis.wiki.addTiddler(draftTiddler);\n\treturn draftTiddler;\n};\n\n/*\nGenerate a title for the draft of a given tiddler\n*/\nNavigatorWidget.prototype.generateDraftTitle = function(title) {\n\treturn this.wiki.generateDraftTitle(title);\n};\n\n// Take a tiddler out of edit mode, saving the changes\nNavigatorWidget.prototype.handleSaveTiddlerEvent = function(event) {\n\tvar title = event.param || event.tiddlerTitle,\n\t\ttiddler = this.wiki.getTiddler(title),\n\t\tstoryList = this.getStoryList();\n\t// Replace the original tiddler with the draft\n\tif(tiddler) {\n\t\tvar draftTitle = (tiddler.fields[\"draft.title\"] || \"\").trim(),\n\t\t\tdraftOf = (tiddler.fields[\"draft.of\"] || \"\").trim();\n\t\tif(draftTitle) {\n\t\t\tvar isRename = draftOf !== draftTitle,\n\t\t\t\tisConfirmed = true;\n\t\t\tif(isRename && this.wiki.tiddlerExists(draftTitle)) {\n\t\t\t\tisConfirmed = confirm($tw.language.getString(\n\t\t\t\t\t\"ConfirmOverwriteTiddler\",\n\t\t\t\t\t{variables:\n\t\t\t\t\t\t{title: draftTitle}\n\t\t\t\t\t}\n\t\t\t\t));\n\t\t\t}\n\t\t\tif(isConfirmed) {\n\t\t\t\t// Create the new tiddler and pass it through the th-saving-tiddler hook\n\t\t\t\tvar newTiddler = new $tw.Tiddler(this.wiki.getCreationFields(),tiddler,{\n\t\t\t\t\ttitle: draftTitle,\n\t\t\t\t\t\"draft.title\": undefined,\n\t\t\t\t\t\"draft.of\": undefined\n\t\t\t\t},this.wiki.getModificationFields());\n\t\t\t\tnewTiddler = $tw.hooks.invokeHook(\"th-saving-tiddler\",newTiddler);\n\t\t\t\tthis.wiki.addTiddler(newTiddler);\n\t\t\t\t// If enabled, relink references to renamed tiddler\n\t\t\t\tvar shouldRelink = this.getAttribute(\"relinkOnRename\",\"no\").toLowerCase().trim() === \"yes\";\n\t\t\t\tif(isRename && shouldRelink && this.wiki.tiddlerExists(draftOf)) {\nconsole.log(\"Relinking '\" + draftOf + \"' to '\" + draftTitle + \"'\");\n\t\t\t\t\tthis.wiki.relinkTiddler(draftOf,draftTitle);\n\t\t\t\t}\n\t\t\t\t// Remove the draft tiddler\n\t\t\t\tthis.wiki.deleteTiddler(title);\n\t\t\t\t// Remove the original tiddler if we're renaming it\n\t\t\t\tif(isRename) {\n\t\t\t\t\tthis.wiki.deleteTiddler(draftOf);\n\t\t\t\t}\n\t\t\t\t// #2381 always remove new title & old\n\t\t\t\tthis.removeTitleFromStory(storyList,draftTitle);\n\t\t\t\tthis.removeTitleFromStory(storyList,draftOf);\n\t\t\t\tif(!event.paramObject || event.paramObject.suppressNavigation !== \"yes\") {\n\t\t\t\t\t// Replace the draft in the story with the original\n\t\t\t\t\tthis.replaceFirstTitleInStory(storyList,title,draftTitle);\n\t\t\t\t\tthis.addToHistory(draftTitle,event.navigateFromClientRect);\n\t\t\t\t\tif(draftTitle !== this.storyTitle) {\n\t\t\t\t\t\tthis.saveStoryList(storyList);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t// Trigger an autosave\n\t\t\t\t$tw.rootWidget.dispatchEvent({type: \"tm-auto-save-wiki\"});\n\t\t\t}\n\t\t}\n\t}\n\treturn false;\n};\n\n// Take a tiddler out of edit mode without saving the changes\nNavigatorWidget.prototype.handleCancelTiddlerEvent = function(event) {\n\tevent = $tw.hooks.invokeHook(\"th-cancelling-tiddler\", event);\n\t// Flip the specified tiddler from draft back to the original\n\tvar draftTitle = event.param || event.tiddlerTitle,\n\t\tdraftTiddler = this.wiki.getTiddler(draftTitle),\n\t\toriginalTitle = draftTiddler && draftTiddler.fields[\"draft.of\"];\n\tif(draftTiddler && originalTitle) {\n\t\t// Ask for confirmation if the tiddler text has changed\n\t\tvar isConfirmed = true,\n\t\t\toriginalTiddler = this.wiki.getTiddler(originalTitle),\n\t\t\tstoryList = this.getStoryList();\n\t\tif(this.wiki.isDraftModified(draftTitle)) {\n\t\t\tisConfirmed = confirm($tw.language.getString(\n\t\t\t\t\"ConfirmCancelTiddler\",\n\t\t\t\t{variables:\n\t\t\t\t\t{title: draftTitle}\n\t\t\t\t}\n\t\t\t));\n\t\t}\n\t\t// Remove the draft tiddler\n\t\tif(isConfirmed) {\n\t\t\tthis.wiki.deleteTiddler(draftTitle);\n\t\t\tif(!event.paramObject || event.paramObject.suppressNavigation !== \"yes\") {\n\t\t\t\tif(originalTiddler) {\n\t\t\t\t\tthis.replaceFirstTitleInStory(storyList,draftTitle,originalTitle);\n\t\t\t\t\tthis.addToHistory(originalTitle,event.navigateFromClientRect);\n\t\t\t\t} else {\n\t\t\t\t\tthis.removeTitleFromStory(storyList,draftTitle);\n\t\t\t\t}\n\t\t\t\tthis.saveStoryList(storyList);\n\t\t\t}\n\t\t}\n\t}\n\treturn false;\n};\n\n// Create a new draft tiddler\n// event.param can either be the title of a template tiddler, or a hashmap of fields.\n//\n// The title of the newly created tiddler follows these rules:\n// * If a hashmap was used and a title field was specified, use that title\n// * If a hashmap was used without a title field, use a default title, if necessary making it unique with a numeric suffix\n// * If a template tiddler was used, use the title of the template, if necessary making it unique with a numeric suffix\n//\n// If a draft of the target tiddler already exists then it is reused\nNavigatorWidget.prototype.handleNewTiddlerEvent = function(event) {\n\tevent = $tw.hooks.invokeHook(\"th-new-tiddler\", event);\n\t// Get the story details\n\tvar storyList = this.getStoryList(),\n\t\ttemplateTiddler, additionalFields, title, draftTitle, existingTiddler;\n\t// Get the template tiddler (if any)\n\tif(typeof event.param === \"string\") {\n\t\t// Get the template tiddler\n\t\ttemplateTiddler = this.wiki.getTiddler(event.param);\n\t\t// Generate a new title\n\t\ttitle = this.wiki.generateNewTitle(event.param || $tw.language.getString(\"DefaultNewTiddlerTitle\"));\n\t}\n\t// Get the specified additional fields\n\tif(typeof event.paramObject === \"object\") {\n\t\tadditionalFields = event.paramObject;\n\t}\n\tif(typeof event.param === \"object\") { // Backwards compatibility with 5.1.3\n\t\tadditionalFields = event.param;\n\t}\n\tif(additionalFields && additionalFields.title) {\n\t\ttitle = additionalFields.title;\n\t}\n\t// Make a copy of the additional fields excluding any blank ones\n\tvar filteredAdditionalFields = $tw.utils.extend({},additionalFields);\n\tObject.keys(filteredAdditionalFields).forEach(function(fieldName) {\n\t\tif(filteredAdditionalFields[fieldName] === \"\") {\n\t\t\tdelete filteredAdditionalFields[fieldName];\n\t\t}\n\t});\n\t// Generate a title if we don't have one\n\ttitle = title || this.wiki.generateNewTitle($tw.language.getString(\"DefaultNewTiddlerTitle\"));\n\t// Find any existing draft for this tiddler\n\tdraftTitle = this.wiki.findDraft(title);\n\t// Pull in any existing tiddler\n\tif(draftTitle) {\n\t\texistingTiddler = this.wiki.getTiddler(draftTitle);\n\t} else {\n\t\tdraftTitle = this.generateDraftTitle(title);\n\t\texistingTiddler = this.wiki.getTiddler(title);\n\t}\n\t// Merge the tags\n\tvar mergedTags = [];\n\tif(existingTiddler && existingTiddler.fields.tags) {\n\t\t$tw.utils.pushTop(mergedTags,existingTiddler.fields.tags);\n\t}\n\tif(additionalFields && additionalFields.tags) {\n\t\t// Merge tags\n\t\tmergedTags = $tw.utils.pushTop(mergedTags,$tw.utils.parseStringArray(additionalFields.tags));\n\t}\n\tif(templateTiddler && templateTiddler.fields.tags) {\n\t\t// Merge tags\n\t\tmergedTags = $tw.utils.pushTop(mergedTags,templateTiddler.fields.tags);\n\t}\n\t// Save the draft tiddler\n\tvar draftTiddler = new $tw.Tiddler({\n\t\t\ttext: \"\",\n\t\t\t\"draft.title\": title\n\t\t},\n\t\ttemplateTiddler,\n\t\tadditionalFields,\n\t\tthis.wiki.getCreationFields(),\n\t\texistingTiddler,\n\t\tfilteredAdditionalFields,\n\t\t{\n\t\t\ttitle: draftTitle,\n\t\t\t\"draft.of\": title,\n\t\t\ttags: mergedTags\n\t\t},this.wiki.getModificationFields());\n\tthis.wiki.addTiddler(draftTiddler);\n\t// Update the story to insert the new draft at the top and remove any existing tiddler\n\tif(storyList && storyList.indexOf(draftTitle) === -1) {\n\t\tvar slot = storyList.indexOf(event.navigateFromTitle);\n\t\tif(slot === -1) {\n\t\t\tslot = this.getAttribute(\"openLinkFromOutsideRiver\",\"top\") === \"bottom\" ? storyList.length - 1 : slot;\n\t\t}\n\t\tstoryList.splice(slot + 1,0,draftTitle);\n\t}\n\tif(storyList && storyList.indexOf(title) !== -1) {\n\t\tstoryList.splice(storyList.indexOf(title),1);\n\t}\n\tthis.saveStoryList(storyList);\n\t// Add a new record to the top of the history stack\n\tthis.addToHistory(draftTitle);\n\treturn false;\n};\n\n// Import JSON tiddlers into a pending import tiddler\nNavigatorWidget.prototype.handleImportTiddlersEvent = function(event) {\n\t// Get the tiddlers\n\tvar tiddlers = [];\n\ttry {\n\t\ttiddlers = JSON.parse(event.param);\n\t} catch(e) {\n\t}\n\t// Get the current $:/Import tiddler\n\tvar importTiddler = this.wiki.getTiddler(IMPORT_TITLE),\n\t\timportData = this.wiki.getTiddlerData(IMPORT_TITLE,{}),\n\t\tnewFields = new Object({\n\t\t\ttitle: IMPORT_TITLE,\n\t\t\ttype: \"application/json\",\n\t\t\t\"plugin-type\": \"import\",\n\t\t\t\"status\": \"pending\"\n\t\t}),\n\t\tincomingTiddlers = [];\n\t// Process each tiddler\n\timportData.tiddlers = importData.tiddlers || {};\n\t$tw.utils.each(tiddlers,function(tiddlerFields) {\n\t\ttiddlerFields.title = $tw.utils.trim(tiddlerFields.title);\n\t\tvar title = tiddlerFields.title;\n\t\tif(title) {\n\t\t\tincomingTiddlers.push(title);\n\t\t\timportData.tiddlers[title] = tiddlerFields;\n\t\t}\n\t});\n\t// Give the active upgrader modules a chance to process the incoming tiddlers\n\tvar messages = this.wiki.invokeUpgraders(incomingTiddlers,importData.tiddlers);\n\t$tw.utils.each(messages,function(message,title) {\n\t\tnewFields[\"message-\" + title] = message;\n\t});\n\t// Deselect any suppressed tiddlers\n\t$tw.utils.each(importData.tiddlers,function(tiddler,title) {\n\t\tif($tw.utils.count(tiddler) === 0) {\n\t\t\tnewFields[\"selection-\" + title] = \"unchecked\";\n\t\t}\n\t});\n\t// Save the $:/Import tiddler\n\tnewFields.text = JSON.stringify(importData,null,$tw.config.preferences.jsonSpaces);\n\tthis.wiki.addTiddler(new $tw.Tiddler(importTiddler,newFields));\n\t// Update the story and history details\n\tif(this.getVariable(\"tv-auto-open-on-import\") !== \"no\") {\n\t\tvar storyList = this.getStoryList(),\n\t\t\thistory = [];\n\t\t// Add it to the story\n\t\tif(storyList && storyList.indexOf(IMPORT_TITLE) === -1) {\n\t\t\tstoryList.unshift(IMPORT_TITLE);\n\t\t}\n\t\t// And to history\n\t\thistory.push(IMPORT_TITLE);\n\t\t// Save the updated story and history\n\t\tthis.saveStoryList(storyList);\n\t\tthis.addToHistory(history);\n\t}\n\treturn false;\n};\n\n//\nNavigatorWidget.prototype.handlePerformImportEvent = function(event) {\n\tvar self = this,\n\t\timportTiddler = this.wiki.getTiddler(event.param),\n\t\timportData = this.wiki.getTiddlerDataCached(event.param,{tiddlers: {}}),\n\t\timportReport = [];\n\t// Add the tiddlers to the store\n\timportReport.push($tw.language.getString(\"Import/Imported/Hint\") + \"\\n\");\n\t$tw.utils.each(importData.tiddlers,function(tiddlerFields) {\n\t\tvar title = tiddlerFields.title;\n\t\tif(title && importTiddler && importTiddler.fields[\"selection-\" + title] !== \"unchecked\") {\n\t\t\tvar tiddler = new $tw.Tiddler(tiddlerFields);\n\t\t\ttiddler = $tw.hooks.invokeHook(\"th-importing-tiddler\",tiddler);\n\t\t\tself.wiki.addTiddler(tiddler);\n\t\t\timportReport.push(\"# [[\" + tiddlerFields.title + \"]]\");\n\t\t}\n\t});\n\t// Replace the $:/Import tiddler with an import report\n\tthis.wiki.addTiddler(new $tw.Tiddler({\n\t\ttitle: event.param,\n\t\ttext: importReport.join(\"\\n\"),\n\t\t\"status\": \"complete\"\n\t}));\n\t// Navigate to the $:/Import tiddler\n\tthis.addToHistory([event.param]);\n\t// Trigger an autosave\n\t$tw.rootWidget.dispatchEvent({type: \"tm-auto-save-wiki\"});\n};\n\nNavigatorWidget.prototype.handleFoldTiddlerEvent = function(event) {\n\tvar paramObject = event.paramObject || {};\n\tif(paramObject.foldedState) {\n\t\tvar foldedState = this.wiki.getTiddlerText(paramObject.foldedState,\"show\") === \"show\" ? \"hide\" : \"show\";\n\t\tthis.wiki.setText(paramObject.foldedState,\"text\",null,foldedState);\n\t}\n};\n\nNavigatorWidget.prototype.handleFoldOtherTiddlersEvent = function(event) {\n\tvar self = this,\n\t\tparamObject = event.paramObject || {},\n\t\tprefix = paramObject.foldedStatePrefix;\n\t$tw.utils.each(this.getStoryList(),function(title) {\n\t\tself.wiki.setText(prefix + title,\"text\",null,event.param === title ? \"show\" : \"hide\");\n\t});\n};\n\nNavigatorWidget.prototype.handleFoldAllTiddlersEvent = function(event) {\n\tvar self = this,\n\t\tparamObject = event.paramObject || {},\n\t\tprefix = paramObject.foldedStatePrefix || \"$:/state/folded/\";\n\t$tw.utils.each(this.getStoryList(),function(title) {\n\t\tself.wiki.setText(prefix + title,\"text\",null,\"hide\");\n\t});\n};\n\nNavigatorWidget.prototype.handleUnfoldAllTiddlersEvent = function(event) {\n\tvar self = this,\n\t\tparamObject = event.paramObject || {},\n\t\tprefix = paramObject.foldedStatePrefix;\n\t$tw.utils.each(this.getStoryList(),function(title) {\n\t\tself.wiki.setText(prefix + title,\"text\",null,\"show\");\n\t});\n};\n\nNavigatorWidget.prototype.handleRenameTiddlerEvent = function(event) {\n\tvar paramObject = event.paramObject || {},\n\t\tfrom = paramObject.from || event.tiddlerTitle,\n\t\tto = paramObject.to;\n\t$tw.wiki.renameTiddler(from,to);\n};\n\nexports.navigator = NavigatorWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/password.js": {
"title": "$:/core/modules/widgets/password.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/password.js\ntype: application/javascript\nmodule-type: widget\n\nPassword widget\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar PasswordWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nPasswordWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nPasswordWidget.prototype.render = function(parent,nextSibling) {\n\t// Save the parent dom node\n\tthis.parentDomNode = parent;\n\t// Compute our attributes\n\tthis.computeAttributes();\n\t// Execute our logic\n\tthis.execute();\n\t// Get the current password\n\tvar password = $tw.browser ? $tw.utils.getPassword(this.passwordName) || \"\" : \"\";\n\t// Create our element\n\tvar domNode = this.document.createElement(\"input\");\n\tdomNode.setAttribute(\"type\",\"password\");\n\tdomNode.setAttribute(\"value\",password);\n\t// Add a click event handler\n\t$tw.utils.addEventListeners(domNode,[\n\t\t{name: \"change\", handlerObject: this, handlerMethod: \"handleChangeEvent\"}\n\t]);\n\t// Insert the label into the DOM and render any children\n\tparent.insertBefore(domNode,nextSibling);\n\tthis.renderChildren(domNode,null);\n\tthis.domNodes.push(domNode);\n};\n\nPasswordWidget.prototype.handleChangeEvent = function(event) {\n\tvar password = this.domNodes[0].value;\n\treturn $tw.utils.savePassword(this.passwordName,password);\n};\n\n/*\nCompute the internal state of the widget\n*/\nPasswordWidget.prototype.execute = function() {\n\t// Get the parameters from the attributes\n\tthis.passwordName = this.getAttribute(\"name\",\"\");\n\t// Make the child widgets\n\tthis.makeChildWidgets();\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nPasswordWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\tif(changedAttributes.name) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t} else {\n\t\treturn this.refreshChildren(changedTiddlers);\n\t}\n};\n\nexports.password = PasswordWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/qualify.js": {
"title": "$:/core/modules/widgets/qualify.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/qualify.js\ntype: application/javascript\nmodule-type: widget\n\nQualify text to a variable \n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar QualifyWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nQualifyWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nQualifyWidget.prototype.render = function(parent,nextSibling) {\n\tthis.parentDomNode = parent;\n\tthis.computeAttributes();\n\tthis.execute();\n\tthis.renderChildren(parent,nextSibling);\n};\n\n/*\nCompute the internal state of the widget\n*/\nQualifyWidget.prototype.execute = function() {\n\t// Get our parameters\n\tthis.qualifyName = this.getAttribute(\"name\");\n\tthis.qualifyTitle = this.getAttribute(\"title\");\n\t// Set context variable\n\tif(this.qualifyName) {\n\t\tthis.setVariable(this.qualifyName,this.qualifyTitle + \"-\" + this.getStateQualifier());\n\t}\n\t// Construct the child widgets\n\tthis.makeChildWidgets();\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nQualifyWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\tif(changedAttributes.name || changedAttributes.title) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t} else {\n\t\treturn this.refreshChildren(changedTiddlers);\n\t}\n};\n\nexports.qualify = QualifyWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/radio.js": {
"title": "$:/core/modules/widgets/radio.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/radio.js\ntype: application/javascript\nmodule-type: widget\n\nSet a field or index at a given tiddler via radio buttons\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar RadioWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nRadioWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nRadioWidget.prototype.render = function(parent,nextSibling) {\n\t// Save the parent dom node\n\tthis.parentDomNode = parent;\n\t// Compute our attributes\n\tthis.computeAttributes();\n\t// Execute our logic\n\tthis.execute();\n\tvar isChecked = this.getValue() === this.radioValue;\n\t// Create our elements\n\tthis.labelDomNode = this.document.createElement(\"label\");\n\tthis.labelDomNode.setAttribute(\"class\",\n \t\t\"tc-radio \" + this.radioClass + (isChecked ? \" tc-radio-selected\" : \"\")\n \t);\n\tthis.inputDomNode = this.document.createElement(\"input\");\n\tthis.inputDomNode.setAttribute(\"type\",\"radio\");\n\tif(isChecked) {\n\t\tthis.inputDomNode.setAttribute(\"checked\",\"true\");\n\t}\n\tthis.labelDomNode.appendChild(this.inputDomNode);\n\tthis.spanDomNode = this.document.createElement(\"span\");\n\tthis.labelDomNode.appendChild(this.spanDomNode);\n\t// Add a click event handler\n\t$tw.utils.addEventListeners(this.inputDomNode,[\n\t\t{name: \"change\", handlerObject: this, handlerMethod: \"handleChangeEvent\"}\n\t]);\n\t// Insert the label into the DOM and render any children\n\tparent.insertBefore(this.labelDomNode,nextSibling);\n\tthis.renderChildren(this.spanDomNode,null);\n\tthis.domNodes.push(this.labelDomNode);\n};\n\nRadioWidget.prototype.getValue = function() {\n\tvar value,\n\t\ttiddler = this.wiki.getTiddler(this.radioTitle);\n\tif (this.radioIndex) {\n\t\tvalue = this.wiki.extractTiddlerDataItem(this.radioTitle,this.radioIndex);\n\t} else {\n\t\tvalue = tiddler && tiddler.getFieldString(this.radioField);\n\t}\n\treturn value;\n};\n\nRadioWidget.prototype.setValue = function() {\n\tif(this.radioIndex) {\n\t\tthis.wiki.setText(this.radioTitle,\"\",this.radioIndex,this.radioValue);\n\t} else {\n\t\tvar tiddler = this.wiki.getTiddler(this.radioTitle),\n\t\t\taddition = {};\n\t\taddition[this.radioField] = this.radioValue;\n\t\tthis.wiki.addTiddler(new $tw.Tiddler(this.wiki.getCreationFields(),{title: this.radioTitle},tiddler,addition,this.wiki.getModificationFields()));\n\t}\n};\n\nRadioWidget.prototype.handleChangeEvent = function(event) {\n\tif(this.inputDomNode.checked) {\n\t\tthis.setValue();\n\t}\n};\n\n/*\nCompute the internal state of the widget\n*/\nRadioWidget.prototype.execute = function() {\n\t// Get the parameters from the attributes\n\tthis.radioTitle = this.getAttribute(\"tiddler\",this.getVariable(\"currentTiddler\"));\n\tthis.radioField = this.getAttribute(\"field\",\"text\");\n\tthis.radioIndex = this.getAttribute(\"index\");\n\tthis.radioValue = this.getAttribute(\"value\");\n\tthis.radioClass = this.getAttribute(\"class\",\"\");\n\t// Make the child widgets\n\tthis.makeChildWidgets();\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nRadioWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\tif(changedAttributes.tiddler || changedAttributes.field || changedAttributes.index || changedAttributes.value || changedAttributes[\"class\"]) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t} else {\n\t\tvar refreshed = false;\n\t\tif(changedTiddlers[this.radioTitle]) {\n\t\t\tthis.inputDomNode.checked = this.getValue() === this.radioValue;\n\t\t\trefreshed = true;\n\t\t}\n\t\treturn this.refreshChildren(changedTiddlers) || refreshed;\n\t}\n};\n\nexports.radio = RadioWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/range.js": {
"title": "$:/core/modules/widgets/range.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/range.js\ntype: application/javascript\nmodule-type: widget\n\nRange widget\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar RangeWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nRangeWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nRangeWidget.prototype.render = function(parent,nextSibling) {\n\t// Save the parent dom node\n\tthis.parentDomNode = parent;\n\t// Compute our attributes\n\tthis.computeAttributes();\n\t// Execute our logic\n\tthis.execute();\n\t// Create our elements\n\tthis.inputDomNode = this.document.createElement(\"input\");\n\tthis.inputDomNode.setAttribute(\"type\",\"range\");\n\tthis.inputDomNode.setAttribute(\"class\",this.elementClass);\n\tif(this.minValue){\n\t\tthis.inputDomNode.setAttribute(\"min\", this.minValue);\n\t}\n\tif(this.maxValue){\n\t\tthis.inputDomNode.setAttribute(\"max\", this.maxValue);\n\t}\n\tif(this.increment){\n\t\tthis.inputDomNode.setAttribute(\"step\", this.increment);\n\t}\n\tthis.inputDomNode.value = this.getValue();\n\n\n\t// Add a click event handler\n\t$tw.utils.addEventListeners(this.inputDomNode,[\n\t\t{name: \"input\", handlerObject: this, handlerMethod: \"handleChangeEvent\"}\n\t]);\n\t// Insert the label into the DOM and render any children\n\tparent.insertBefore(this.inputDomNode,nextSibling);\n\tthis.domNodes.push(this.inputDomNode);\n};\n\nRangeWidget.prototype.getValue = function() {\n\tvar tiddler = this.wiki.getTiddler(this.tiddlerTitle),\n\t\tvalue = this.defaultValue;\n\tif(tiddler) {\n\t\tif($tw.utils.hop(tiddler.fields,this.tiddlerField)) {\n\t\t\tvalue = tiddler.fields[this.tiddlerField] || \"\";\n\t\t} else {\n\t\t\tvalue = this.defaultValue || \"\";\n\t\t}\n\t}\n\treturn value;\n};\n\nRangeWidget.prototype.handleChangeEvent = function(event) {\n\tthis.wiki.setText(this.tiddlerTitle ,this.tiddlerField, null,this.inputDomNode.value);\n};\n\n/*\nCompute the internal state of the widget\n*/\nRangeWidget.prototype.execute = function() {\n\t// Get the parameters from the attributes\n\tthis.tiddlerTitle = this.getAttribute(\"tiddler\",this.getVariable(\"currentTiddler\"));\n\tthis.tiddlerField = this.getAttribute(\"field\");\n\tthis.minValue = this.getAttribute(\"min\");\n\tthis.maxValue = this.getAttribute(\"max\");\n\tthis.increment = this.getAttribute(\"increment\");\n\tthis.defaultValue = this.getAttribute(\"default\");\n\tthis.elementClass = this.getAttribute(\"class\",\"\");\n\t// Make the child widgets\n\tthis.makeChildWidgets();\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nRangeWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\tif(changedAttributes.tiddler || changedAttributes.field || changedAttributes['min'] || changedAttributes['max'] || changedAttributes['increment'] || changedAttributes[\"default\"] || changedAttributes[\"class\"]) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t} else {\n\t\tvar refreshed = false;\n\t\tif(changedTiddlers[this.tiddlerTitle]) {\n\t\t\tthis.inputDomNode.checked = this.getValue();\n\t\t\trefreshed = true;\n\t\t}\n\t\treturn this.refreshChildren(changedTiddlers) || refreshed;\n\t}\n};\n\nexports.range = RangeWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/raw.js": {
"title": "$:/core/modules/widgets/raw.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/raw.js\ntype: application/javascript\nmodule-type: widget\n\nRaw widget\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar RawWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nRawWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nRawWidget.prototype.render = function(parent,nextSibling) {\n\tthis.parentDomNode = parent;\n\tthis.execute();\n\tvar div = this.document.createElement(\"div\");\n\tdiv.innerHTML=this.parseTreeNode.html;\n\tparent.insertBefore(div,nextSibling);\n\tthis.domNodes.push(div);\t\n};\n\n/*\nCompute the internal state of the widget\n*/\nRawWidget.prototype.execute = function() {\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nRawWidget.prototype.refresh = function(changedTiddlers) {\n\treturn false;\n};\n\nexports.raw = RawWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/reveal.js": {
"title": "$:/core/modules/widgets/reveal.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/reveal.js\ntype: application/javascript\nmodule-type: widget\n\nReveal widget\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar RevealWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nRevealWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nRevealWidget.prototype.render = function(parent,nextSibling) {\n\tthis.parentDomNode = parent;\n\tthis.computeAttributes();\n\tthis.execute();\n\tvar tag = this.parseTreeNode.isBlock ? \"div\" : \"span\";\n\tif(this.revealTag && $tw.config.htmlUnsafeElements.indexOf(this.revealTag) === -1) {\n\t\ttag = this.revealTag;\n\t}\n\tvar domNode = this.document.createElement(tag);\n\tvar classes = this[\"class\"].split(\" \") || [];\n\tclasses.push(\"tc-reveal\");\n\tdomNode.className = classes.join(\" \");\n\tif(this.style) {\n\t\tdomNode.setAttribute(\"style\",this.style);\n\t}\n\tparent.insertBefore(domNode,nextSibling);\n\tthis.renderChildren(domNode,null);\n\tif(!domNode.isTiddlyWikiFakeDom && this.type === \"popup\" && this.isOpen) {\n\t\tthis.positionPopup(domNode);\n\t\t$tw.utils.addClass(domNode,\"tc-popup\"); // Make sure that clicks don't dismiss popups within the revealed content\n\t}\n\tif(!this.isOpen) {\n\t\tdomNode.setAttribute(\"hidden\",\"true\");\n\t}\n\tthis.domNodes.push(domNode);\n};\n\nRevealWidget.prototype.positionPopup = function(domNode) {\n\tdomNode.style.position = \"absolute\";\n\tdomNode.style.zIndex = \"1000\";\n\tvar left,top;\n\tswitch(this.position) {\n\t\tcase \"left\":\n\t\t\tleft = this.popup.left - domNode.offsetWidth;\n\t\t\ttop = this.popup.top;\n\t\t\tbreak;\n\t\tcase \"above\":\n\t\t\tleft = this.popup.left;\n\t\t\ttop = this.popup.top - domNode.offsetHeight;\n\t\t\tbreak;\n\t\tcase \"aboveright\":\n\t\t\tleft = this.popup.left + this.popup.width;\n\t\t\ttop = this.popup.top + this.popup.height - domNode.offsetHeight;\n\t\t\tbreak;\n\t\tcase \"right\":\n\t\t\tleft = this.popup.left + this.popup.width;\n\t\t\ttop = this.popup.top;\n\t\t\tbreak;\n\t\tcase \"belowleft\":\n\t\t\tleft = this.popup.left + this.popup.width - domNode.offsetWidth;\n\t\t\ttop = this.popup.top + this.popup.height;\n\t\t\tbreak;\n\t\tdefault: // Below\n\t\t\tleft = this.popup.left;\n\t\t\ttop = this.popup.top + this.popup.height;\n\t\t\tbreak;\n\t}\n\tif(!this.positionAllowNegative) {\n\t\tleft = Math.max(0,left);\n\t\ttop = Math.max(0,top);\n\t}\n\tdomNode.style.left = left + \"px\";\n\tdomNode.style.top = top + \"px\";\n};\n\n/*\nCompute the internal state of the widget\n*/\nRevealWidget.prototype.execute = function() {\n\t// Get our parameters\n\tthis.state = this.getAttribute(\"state\");\n\tthis.revealTag = this.getAttribute(\"tag\");\n\tthis.type = this.getAttribute(\"type\");\n\tthis.text = this.getAttribute(\"text\");\n\tthis.position = this.getAttribute(\"position\");\n\tthis.positionAllowNegative = this.getAttribute(\"positionAllowNegative\") === \"yes\";\n\tthis[\"class\"] = this.getAttribute(\"class\",\"\");\n\tthis.style = this.getAttribute(\"style\",\"\");\n\tthis[\"default\"] = this.getAttribute(\"default\",\"\");\n\tthis.animate = this.getAttribute(\"animate\",\"no\");\n\tthis.retain = this.getAttribute(\"retain\",\"no\");\n\tthis.openAnimation = this.animate === \"no\" ? undefined : \"open\";\n\tthis.closeAnimation = this.animate === \"no\" ? undefined : \"close\";\n\t// Compute the title of the state tiddler and read it\n\tthis.stateTiddlerTitle = this.state;\n\tthis.stateTitle = this.getAttribute(\"stateTitle\");\n\tthis.stateField = this.getAttribute(\"stateField\");\n\tthis.stateIndex = this.getAttribute(\"stateIndex\");\n\tthis.readState();\n\t// Construct the child widgets\n\tvar childNodes = this.isOpen ? this.parseTreeNode.children : [];\n\tthis.hasChildNodes = this.isOpen;\n\tthis.makeChildWidgets(childNodes);\n};\n\n/*\nRead the state tiddler\n*/\nRevealWidget.prototype.readState = function() {\n\t// Read the information from the state tiddler\n\tvar state,\n\t defaultState = this[\"default\"];\n\tif(this.stateTitle) {\n\t\tvar stateTitleTiddler = this.wiki.getTiddler(this.stateTitle);\n\t\tif(this.stateField) {\n\t\t\tstate = stateTitleTiddler ? stateTitleTiddler.getFieldString(this.stateField) || defaultState : defaultState;\n\t\t} else if(this.stateIndex) {\n\t\t\tstate = stateTitleTiddler ? this.wiki.extractTiddlerDataItem(this.stateTitle,this.stateIndex) || defaultState : defaultState;\n\t\t} else if(stateTitleTiddler) {\n\t\t\tstate = this.wiki.getTiddlerText(this.stateTitle) || defaultState;\n\t\t} else {\n\t\t\tstate = defaultState;\n\t\t}\n\t} else {\n\t\tstate = this.stateTiddlerTitle ? this.wiki.getTextReference(this.state,this[\"default\"],this.getVariable(\"currentTiddler\")) : this[\"default\"];\n\t}\n\tif(state === null) {\n\t\tstate = this[\"default\"];\n\t}\n\tswitch(this.type) {\n\t\tcase \"popup\":\n\t\t\tthis.readPopupState(state);\n\t\t\tbreak;\n\t\tcase \"match\":\n\t\t\tthis.isOpen = this.text === state;\n\t\t\tbreak;\n\t\tcase \"nomatch\":\n\t\t\tthis.isOpen = this.text !== state;\n\t\t\tbreak;\n\t\tcase \"lt\":\n\t\t\tthis.isOpen = !!(this.compareStateText(state) < 0);\n\t\t\tbreak;\n\t\tcase \"gt\":\n\t\t\tthis.isOpen = !!(this.compareStateText(state) > 0);\n\t\t\tbreak;\n\t\tcase \"lteq\":\n\t\t\tthis.isOpen = !(this.compareStateText(state) > 0);\n\t\t\tbreak;\n\t\tcase \"gteq\":\n\t\t\tthis.isOpen = !(this.compareStateText(state) < 0);\n\t\t\tbreak;\n\t}\n};\n\nRevealWidget.prototype.compareStateText = function(state) {\n\treturn state.localeCompare(this.text,undefined,{numeric: true,sensitivity: \"case\"});\n};\n\nRevealWidget.prototype.readPopupState = function(state) {\n\tvar popupLocationRegExp = /^\\((-?[0-9\\.E]+),(-?[0-9\\.E]+),(-?[0-9\\.E]+),(-?[0-9\\.E]+)\\)$/,\n\t\tmatch = popupLocationRegExp.exec(state);\n\t// Check if the state matches the location regexp\n\tif(match) {\n\t\t// If so, we're open\n\t\tthis.isOpen = true;\n\t\t// Get the location\n\t\tthis.popup = {\n\t\t\tleft: parseFloat(match[1]),\n\t\t\ttop: parseFloat(match[2]),\n\t\t\twidth: parseFloat(match[3]),\n\t\t\theight: parseFloat(match[4])\n\t\t};\n\t} else {\n\t\t// If not, we're closed\n\t\tthis.isOpen = false;\n\t}\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nRevealWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\tif(changedAttributes.state || changedAttributes.type || changedAttributes.text || changedAttributes.position || changedAttributes.positionAllowNegative || changedAttributes[\"default\"] || changedAttributes.animate || changedAttributes.stateTitle || changedAttributes.stateField || changedAttributes.stateIndex) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t} else {\n\t\tvar currentlyOpen = this.isOpen;\n\t\tthis.readState();\n\t\tif(this.isOpen !== currentlyOpen) {\n\t\t\tif(this.retain === \"yes\") {\n\t\t\t\tthis.updateState();\n\t\t\t} else {\n\t\t\t\tthis.refreshSelf();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\t\treturn this.refreshChildren(changedTiddlers);\n\t}\n};\n\n/*\nCalled by refresh() to dynamically show or hide the content\n*/\nRevealWidget.prototype.updateState = function() {\n\tvar self = this;\n\t// Read the current state\n\tthis.readState();\n\t// Construct the child nodes if needed\n\tvar domNode = this.domNodes[0];\n\tif(this.isOpen && !this.hasChildNodes) {\n\t\tthis.hasChildNodes = true;\n\t\tthis.makeChildWidgets(this.parseTreeNode.children);\n\t\tthis.renderChildren(domNode,null);\n\t}\n\t// Animate our DOM node\n\tif(!domNode.isTiddlyWikiFakeDom && this.type === \"popup\" && this.isOpen) {\n\t\tthis.positionPopup(domNode);\n\t\t$tw.utils.addClass(domNode,\"tc-popup\"); // Make sure that clicks don't dismiss popups within the revealed content\n\n\t}\n\tif(this.isOpen) {\n\t\tdomNode.removeAttribute(\"hidden\");\n $tw.anim.perform(this.openAnimation,domNode);\n\t} else {\n\t\t$tw.anim.perform(this.closeAnimation,domNode,{callback: function() {\n\t\t\t//make sure that the state hasn't changed during the close animation\n\t\t\tself.readState()\n\t\t\tif(!self.isOpen) {\n\t\t\t\tdomNode.setAttribute(\"hidden\",\"true\");\n\t\t\t}\n\t\t}});\n\t}\n};\n\nexports.reveal = RevealWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/scrollable.js": {
"title": "$:/core/modules/widgets/scrollable.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/scrollable.js\ntype: application/javascript\nmodule-type: widget\n\nScrollable widget\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar ScrollableWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n\tthis.scaleFactor = 1;\n\tthis.addEventListeners([\n\t\t{type: \"tm-scroll\", handler: \"handleScrollEvent\"}\n\t]);\n\tif($tw.browser) {\n\t\tthis.requestAnimationFrame = window.requestAnimationFrame ||\n\t\t\twindow.webkitRequestAnimationFrame ||\n\t\t\twindow.mozRequestAnimationFrame ||\n\t\t\tfunction(callback) {\n\t\t\t\treturn window.setTimeout(callback, 1000/60);\n\t\t\t};\n\t\tthis.cancelAnimationFrame = window.cancelAnimationFrame ||\n\t\t\twindow.webkitCancelAnimationFrame ||\n\t\t\twindow.webkitCancelRequestAnimationFrame ||\n\t\t\twindow.mozCancelAnimationFrame ||\n\t\t\twindow.mozCancelRequestAnimationFrame ||\n\t\t\tfunction(id) {\n\t\t\t\twindow.clearTimeout(id);\n\t\t\t};\n\t}\n};\n\n/*\nInherit from the base widget class\n*/\nScrollableWidget.prototype = new Widget();\n\nScrollableWidget.prototype.cancelScroll = function() {\n\tif(this.idRequestFrame) {\n\t\tthis.cancelAnimationFrame.call(window,this.idRequestFrame);\n\t\tthis.idRequestFrame = null;\n\t}\n};\n\n/*\nHandle a scroll event\n*/\nScrollableWidget.prototype.handleScrollEvent = function(event) {\n\t// Pass the scroll event through if our offsetsize is larger than our scrollsize\n\tif(this.outerDomNode.scrollWidth <= this.outerDomNode.offsetWidth && this.outerDomNode.scrollHeight <= this.outerDomNode.offsetHeight && this.fallthrough === \"yes\") {\n\t\treturn true;\n\t}\n\tthis.scrollIntoView(event.target);\n\treturn false; // Handled event\n};\n\n/*\nScroll an element into view\n*/\nScrollableWidget.prototype.scrollIntoView = function(element) {\n\tvar duration = $tw.utils.getAnimationDuration();\n\tthis.cancelScroll();\n\tthis.startTime = Date.now();\n\tvar scrollPosition = {\n\t\tx: this.outerDomNode.scrollLeft,\n\t\ty: this.outerDomNode.scrollTop\n\t};\n\t// Get the client bounds of the element and adjust by the scroll position\n\tvar scrollableBounds = this.outerDomNode.getBoundingClientRect(),\n\t\tclientTargetBounds = element.getBoundingClientRect(),\n\t\tbounds = {\n\t\t\tleft: clientTargetBounds.left + scrollPosition.x - scrollableBounds.left,\n\t\t\ttop: clientTargetBounds.top + scrollPosition.y - scrollableBounds.top,\n\t\t\twidth: clientTargetBounds.width,\n\t\t\theight: clientTargetBounds.height\n\t\t};\n\t// We'll consider the horizontal and vertical scroll directions separately via this function\n\tvar getEndPos = function(targetPos,targetSize,currentPos,currentSize) {\n\t\t\t// If the target is already visible then stay where we are\n\t\t\tif(targetPos >= currentPos && (targetPos + targetSize) <= (currentPos + currentSize)) {\n\t\t\t\treturn currentPos;\n\t\t\t// If the target is above/left of the current view, then scroll to its top/left\n\t\t\t} else if(targetPos <= currentPos) {\n\t\t\t\treturn targetPos;\n\t\t\t// If the target is smaller than the window and the scroll position is too far up, then scroll till the target is at the bottom of the window\n\t\t\t} else if(targetSize < currentSize && currentPos < (targetPos + targetSize - currentSize)) {\n\t\t\t\treturn targetPos + targetSize - currentSize;\n\t\t\t// If the target is big, then just scroll to the top\n\t\t\t} else if(currentPos < targetPos) {\n\t\t\t\treturn targetPos;\n\t\t\t// Otherwise, stay where we are\n\t\t\t} else {\n\t\t\t\treturn currentPos;\n\t\t\t}\n\t\t},\n\t\tendX = getEndPos(bounds.left,bounds.width,scrollPosition.x,this.outerDomNode.offsetWidth),\n\t\tendY = getEndPos(bounds.top,bounds.height,scrollPosition.y,this.outerDomNode.offsetHeight);\n\t// Only scroll if necessary\n\tif(endX !== scrollPosition.x || endY !== scrollPosition.y) {\n\t\tvar self = this,\n\t\t\tdrawFrame;\n\t\tdrawFrame = function () {\n\t\t\tvar t;\n\t\t\tif(duration <= 0) {\n\t\t\t\tt = 1;\n\t\t\t} else {\n\t\t\t\tt = ((Date.now()) - self.startTime) / duration;\t\n\t\t\t}\n\t\t\tif(t >= 1) {\n\t\t\t\tself.cancelScroll();\n\t\t\t\tt = 1;\n\t\t\t}\n\t\t\tt = $tw.utils.slowInSlowOut(t);\n\t\t\tself.outerDomNode.scrollLeft = scrollPosition.x + (endX - scrollPosition.x) * t;\n\t\t\tself.outerDomNode.scrollTop = scrollPosition.y + (endY - scrollPosition.y) * t;\n\t\t\tif(t < 1) {\n\t\t\t\tself.idRequestFrame = self.requestAnimationFrame.call(window,drawFrame);\n\t\t\t}\n\t\t};\n\t\tdrawFrame();\n\t}\n};\n\n/*\nRender this widget into the DOM\n*/\nScrollableWidget.prototype.render = function(parent,nextSibling) {\n\tvar self = this;\n\t// Remember parent\n\tthis.parentDomNode = parent;\n\t// Compute attributes and execute state\n\tthis.computeAttributes();\n\tthis.execute();\n\t// Create elements\n\tthis.outerDomNode = this.document.createElement(\"div\");\n\t$tw.utils.setStyle(this.outerDomNode,[\n\t\t{overflowY: \"auto\"},\n\t\t{overflowX: \"auto\"},\n\t\t{webkitOverflowScrolling: \"touch\"}\n\t]);\n\tthis.innerDomNode = this.document.createElement(\"div\");\n\tthis.outerDomNode.appendChild(this.innerDomNode);\n\t// Assign classes\n\tthis.outerDomNode.className = this[\"class\"] || \"\";\n\t// Insert element\n\tparent.insertBefore(this.outerDomNode,nextSibling);\n\tthis.renderChildren(this.innerDomNode,null);\n\tthis.domNodes.push(this.outerDomNode);\n};\n\n/*\nCompute the internal state of the widget\n*/\nScrollableWidget.prototype.execute = function() {\n\t// Get attributes\n\tthis.fallthrough = this.getAttribute(\"fallthrough\",\"yes\");\n\tthis[\"class\"] = this.getAttribute(\"class\");\n\t// Make child widgets\n\tthis.makeChildWidgets();\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nScrollableWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\tif(changedAttributes[\"class\"]) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t}\n\treturn this.refreshChildren(changedTiddlers);\n};\n\nexports.scrollable = ScrollableWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/select.js": {
"title": "$:/core/modules/widgets/select.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/select.js\ntype: application/javascript\nmodule-type: widget\n\nSelect widget:\n\n```\n<$select tiddler=\"MyTiddler\" field=\"text\">\n<$list filter=\"[tag[chapter]]\">\n<option value=<<currentTiddler>>>\n<$view field=\"description\"/>\n</option>\n</$list>\n</$select>\n```\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar SelectWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nSelectWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nSelectWidget.prototype.render = function(parent,nextSibling) {\n\tthis.parentDomNode = parent;\n\tthis.computeAttributes();\n\tthis.execute();\n\tthis.renderChildren(parent,nextSibling);\n\tthis.setSelectValue();\n\t$tw.utils.addEventListeners(this.getSelectDomNode(),[\n\t\t{name: \"change\", handlerObject: this, handlerMethod: \"handleChangeEvent\"}\n\t]);\n};\n\n/*\nHandle a change event\n*/\nSelectWidget.prototype.handleChangeEvent = function(event) {\n\t// Get the new value and assign it to the tiddler\n\tif(this.selectMultiple == false) {\n\t\tvar value = this.getSelectDomNode().value;\n\t} else {\n\t\tvar value = this.getSelectValues()\n\t\t\t\tvalue = $tw.utils.stringifyList(value);\n\t}\n\tthis.wiki.setText(this.selectTitle,this.selectField,this.selectIndex,value);\n\t// Trigger actions\n\tif(this.selectActions) {\n\t\tthis.invokeActionString(this.selectActions,this,event);\n\t}\n};\n\n/*\nIf necessary, set the value of the select element to the current value\n*/\nSelectWidget.prototype.setSelectValue = function() {\n\tvar value = this.selectDefault;\n\t// Get the value\n\tif(this.selectIndex) {\n\t\tvalue = this.wiki.extractTiddlerDataItem(this.selectTitle,this.selectIndex,value);\n\t} else {\n\t\tvar tiddler = this.wiki.getTiddler(this.selectTitle);\n\t\tif(tiddler) {\n\t\t\tif(this.selectField === \"text\") {\n\t\t\t\t// Calling getTiddlerText() triggers lazy loading of skinny tiddlers\n\t\t\t\tvalue = this.wiki.getTiddlerText(this.selectTitle);\n\t\t\t} else {\n\t\t\t\tif($tw.utils.hop(tiddler.fields,this.selectField)) {\n\t\t\t\t\tvalue = tiddler.getFieldString(this.selectField);\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tif(this.selectField === \"title\") {\n\t\t\t\tvalue = this.selectTitle;\n\t\t\t}\n\t\t}\n\t}\n\t// Assign it to the select element if it's different than the current value\n\tif (this.selectMultiple) {\n\t\tvalue = value === undefined ? \"\" : value;\n\t\tvar select = this.getSelectDomNode();\n\t\tvar values = Array.isArray(value) ? value : $tw.utils.parseStringArray(value);\n\t\tfor(var i=0; i < select.children.length; i++){\n\t\t\tif(values.indexOf(select.children[i].value) != -1) {\n\t\t\t\tselect.children[i].selected = true;\n\t\t\t}\n\t\t}\n\t\t\n\t} else {\n\t\tvar domNode = this.getSelectDomNode();\n\t\tif(domNode.value !== value) {\n\t\t\tdomNode.value = value;\n\t\t}\n\t}\n};\n\n/*\nGet the DOM node of the select element\n*/\nSelectWidget.prototype.getSelectDomNode = function() {\n\treturn this.children[0].domNodes[0];\n};\n\n// Return an array of the selected opion values\n// select is an HTML select element\nSelectWidget.prototype.getSelectValues = function() {\n\tvar select, result, options, opt;\n\tselect = this.getSelectDomNode();\n\tresult = [];\n\toptions = select && select.options;\n\tfor (var i=0; i<options.length; i++) {\n\t\topt = options[i];\n\t\tif (opt.selected) {\n\t\t\tresult.push(opt.value || opt.text);\n\t\t}\n\t}\n\treturn result;\n}\n\n/*\nCompute the internal state of the widget\n*/\nSelectWidget.prototype.execute = function() {\n\t// Get our parameters\n\tthis.selectActions = this.getAttribute(\"actions\");\n\tthis.selectTitle = this.getAttribute(\"tiddler\",this.getVariable(\"currentTiddler\"));\n\tthis.selectField = this.getAttribute(\"field\",\"text\");\n\tthis.selectIndex = this.getAttribute(\"index\");\n\tthis.selectClass = this.getAttribute(\"class\");\n\tthis.selectDefault = this.getAttribute(\"default\");\n\tthis.selectMultiple = this.getAttribute(\"multiple\", false);\n\tthis.selectSize = this.getAttribute(\"size\");\n\tthis.selectTooltip = this.getAttribute(\"tooltip\");\n\t// Make the child widgets\n\tvar selectNode = {\n\t\ttype: \"element\",\n\t\ttag: \"select\",\n\t\tchildren: this.parseTreeNode.children\n\t};\n\tif(this.selectClass) {\n\t\t$tw.utils.addAttributeToParseTreeNode(selectNode,\"class\",this.selectClass);\n\t}\n\tif(this.selectMultiple) {\n\t\t$tw.utils.addAttributeToParseTreeNode(selectNode,\"multiple\",\"multiple\");\n\t}\n\tif(this.selectSize) {\n\t\t$tw.utils.addAttributeToParseTreeNode(selectNode,\"size\",this.selectSize);\n\t}\n\tif(this.selectTooltip) {\n\t\t$tw.utils.addAttributeToParseTreeNode(selectNode,\"title\",this.selectTooltip);\n\t}\n\tthis.makeChildWidgets([selectNode]);\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nSelectWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\t// If we're using a different tiddler/field/index then completely refresh ourselves\n\tif(changedAttributes.selectTitle || changedAttributes.selectField || changedAttributes.selectIndex || changedAttributes.selectTooltip) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t// If the target tiddler value has changed, just update setting and refresh the children\n\t} else {\n\t\tvar childrenRefreshed = this.refreshChildren(changedTiddlers);\n\t\tif(changedTiddlers[this.selectTitle] || childrenRefreshed) {\n\t\t\tthis.setSelectValue();\n\t\t} \n\t\treturn childrenRefreshed;\n\t}\n};\n\nexports.select = SelectWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/set.js": {
"title": "$:/core/modules/widgets/set.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/set.js\ntype: application/javascript\nmodule-type: widget\n\nSet variable widget\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar SetWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nSetWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nSetWidget.prototype.render = function(parent,nextSibling) {\n\tthis.parentDomNode = parent;\n\tthis.computeAttributes();\n\tthis.execute();\n\tthis.renderChildren(parent,nextSibling);\n};\n\n/*\nCompute the internal state of the widget\n*/\nSetWidget.prototype.execute = function() {\n\t// Get our parameters\n\tthis.setName = this.getAttribute(\"name\",\"currentTiddler\");\n\tthis.setFilter = this.getAttribute(\"filter\");\n\tthis.setSelect = this.getAttribute(\"select\");\n\tthis.setTiddler = this.getAttribute(\"tiddler\");\n\tthis.setSubTiddler = this.getAttribute(\"subtiddler\");\n\tthis.setField = this.getAttribute(\"field\");\n\tthis.setIndex = this.getAttribute(\"index\");\n\tthis.setValue = this.getAttribute(\"value\");\n\tthis.setEmptyValue = this.getAttribute(\"emptyValue\");\n\t// Set context variable\n\tthis.setVariable(this.setName,this.getValue(),this.parseTreeNode.params,!!this.parseTreeNode.isMacroDefinition);\n\t// Construct the child widgets\n\tthis.makeChildWidgets();\n};\n\n/*\nGet the value to be assigned\n*/\nSetWidget.prototype.getValue = function() {\n\tvar value = this.setValue;\n\tif(this.setTiddler) {\n\t\tvar tiddler;\n\t\tif(this.setSubTiddler) {\n\t\t\ttiddler = this.wiki.getSubTiddler(this.setTiddler,this.setSubTiddler);\n\t\t} else {\n\t\t\ttiddler = this.wiki.getTiddler(this.setTiddler);\t\t\t\n\t\t}\n\t\tif(!tiddler) {\n\t\t\tvalue = this.setEmptyValue;\n\t\t} else if(this.setField) {\n\t\t\tvalue = tiddler.getFieldString(this.setField) || this.setEmptyValue;\n\t\t} else if(this.setIndex) {\n\t\t\tvalue = this.wiki.extractTiddlerDataItem(this.setTiddler,this.setIndex,this.setEmptyValue);\n\t\t} else {\n\t\t\tvalue = tiddler.fields.text || this.setEmptyValue ;\n\t\t}\n\t} else if(this.setFilter) {\n\t\tvar results = this.wiki.filterTiddlers(this.setFilter,this);\n\t\tif(this.setValue == null) {\n\t\t\tvar select;\n\t\t\tif(this.setSelect) {\n\t\t\t\tselect = parseInt(this.setSelect,10);\n\t\t\t}\n\t\t\tif(select !== undefined) {\n\t\t\t\tvalue = results[select] || \"\";\n\t\t\t} else {\n\t\t\t\tvalue = $tw.utils.stringifyList(results);\t\t\t\n\t\t\t}\n\t\t}\n\t\tif(results.length === 0 && this.setEmptyValue !== undefined) {\n\t\t\tvalue = this.setEmptyValue;\n\t\t}\n\t} else if(!value && this.setEmptyValue) {\n\t\tvalue = this.setEmptyValue;\n\t}\n\treturn value || \"\";\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nSetWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\tif(changedAttributes.name || changedAttributes.filter || changedAttributes.select || changedAttributes.tiddler || (this.setTiddler && changedTiddlers[this.setTiddler]) || changedAttributes.field || changedAttributes.index || changedAttributes.value || changedAttributes.emptyValue ||\n\t (this.setFilter && this.getValue() != this.variables[this.setName].value)) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t} else {\n\t\treturn this.refreshChildren(changedTiddlers);\n\t}\n};\n\nexports.setvariable = SetWidget;\nexports.set = SetWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/text.js": {
"title": "$:/core/modules/widgets/text.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/text.js\ntype: application/javascript\nmodule-type: widget\n\nText node widget\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar TextNodeWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nTextNodeWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nTextNodeWidget.prototype.render = function(parent,nextSibling) {\n\tthis.parentDomNode = parent;\n\tthis.computeAttributes();\n\tthis.execute();\n\tvar text = this.getAttribute(\"text\",this.parseTreeNode.text || \"\");\n\ttext = text.replace(/\\r/mg,\"\");\n\tvar textNode = this.document.createTextNode(text);\n\tparent.insertBefore(textNode,nextSibling);\n\tthis.domNodes.push(textNode);\n};\n\n/*\nCompute the internal state of the widget\n*/\nTextNodeWidget.prototype.execute = function() {\n\t// Nothing to do for a text node\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nTextNodeWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\tif(changedAttributes.text) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t} else {\n\t\treturn false;\t\n\t}\n};\n\nexports.text = TextNodeWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/tiddler.js": {
"title": "$:/core/modules/widgets/tiddler.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/tiddler.js\ntype: application/javascript\nmodule-type: widget\n\nTiddler widget\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar TiddlerWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nTiddlerWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nTiddlerWidget.prototype.render = function(parent,nextSibling) {\n\tthis.parentDomNode = parent;\n\tthis.computeAttributes();\n\tthis.execute();\n\tthis.renderChildren(parent,nextSibling);\n};\n\n/*\nCompute the internal state of the widget\n*/\nTiddlerWidget.prototype.execute = function() {\n\tthis.tiddlerState = this.computeTiddlerState();\n\tthis.setVariable(\"currentTiddler\",this.tiddlerState.currentTiddler);\n\tthis.setVariable(\"missingTiddlerClass\",this.tiddlerState.missingTiddlerClass);\n\tthis.setVariable(\"shadowTiddlerClass\",this.tiddlerState.shadowTiddlerClass);\n\tthis.setVariable(\"systemTiddlerClass\",this.tiddlerState.systemTiddlerClass);\n\tthis.setVariable(\"tiddlerTagClasses\",this.tiddlerState.tiddlerTagClasses);\n\t// Construct the child widgets\n\tthis.makeChildWidgets();\n};\n\n/*\nCompute the tiddler state flags\n*/\nTiddlerWidget.prototype.computeTiddlerState = function() {\n\t// Get our parameters\n\tthis.tiddlerTitle = this.getAttribute(\"tiddler\",this.getVariable(\"currentTiddler\"));\n\t// Compute the state\n\tvar state = {\n\t\tcurrentTiddler: this.tiddlerTitle || \"\",\n\t\tmissingTiddlerClass: (this.wiki.tiddlerExists(this.tiddlerTitle) || this.wiki.isShadowTiddler(this.tiddlerTitle)) ? \"tc-tiddler-exists\" : \"tc-tiddler-missing\",\n\t\tshadowTiddlerClass: this.wiki.isShadowTiddler(this.tiddlerTitle) ? \"tc-tiddler-shadow\" : \"\",\n\t\tsystemTiddlerClass: this.wiki.isSystemTiddler(this.tiddlerTitle) ? \"tc-tiddler-system\" : \"\",\n\t\ttiddlerTagClasses: this.getTagClasses()\n\t};\n\t// Compute a simple hash to make it easier to detect changes\n\tstate.hash = state.currentTiddler + state.missingTiddlerClass + state.shadowTiddlerClass + state.systemTiddlerClass + state.tiddlerTagClasses;\n\treturn state;\n};\n\n/*\nCreate a string of CSS classes derived from the tags of the current tiddler\n*/\nTiddlerWidget.prototype.getTagClasses = function() {\n\tvar tiddler = this.wiki.getTiddler(this.tiddlerTitle);\n\tif(tiddler) {\n\t\tvar tags = [];\n\t\t$tw.utils.each(tiddler.fields.tags,function(tag) {\n\t\t\ttags.push(\"tc-tagged-\" + encodeURIComponent(tag));\n\t\t});\n\t\treturn tags.join(\" \");\n\t} else {\n\t\treturn \"\";\n\t}\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nTiddlerWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes(),\n\t\tnewTiddlerState = this.computeTiddlerState();\n\tif(changedAttributes.tiddler || newTiddlerState.hash !== this.tiddlerState.hash) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t} else {\n\t\treturn this.refreshChildren(changedTiddlers);\t\t\n\t}\n};\n\nexports.tiddler = TiddlerWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/transclude.js": {
"title": "$:/core/modules/widgets/transclude.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/transclude.js\ntype: application/javascript\nmodule-type: widget\n\nTransclude widget\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar TranscludeWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nTranscludeWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nTranscludeWidget.prototype.render = function(parent,nextSibling) {\n\tthis.parentDomNode = parent;\n\tthis.computeAttributes();\n\tthis.execute();\n\tthis.renderChildren(parent,nextSibling);\n};\n\n/*\nCompute the internal state of the widget\n*/\nTranscludeWidget.prototype.execute = function() {\n\t// Get our parameters\n\tthis.transcludeTitle = this.getAttribute(\"tiddler\",this.getVariable(\"currentTiddler\"));\n\tthis.transcludeSubTiddler = this.getAttribute(\"subtiddler\");\n\tthis.transcludeField = this.getAttribute(\"field\");\n\tthis.transcludeIndex = this.getAttribute(\"index\");\n\tthis.transcludeMode = this.getAttribute(\"mode\");\n\t// Parse the text reference\n\tvar parseAsInline = !this.parseTreeNode.isBlock;\n\tif(this.transcludeMode === \"inline\") {\n\t\tparseAsInline = true;\n\t} else if(this.transcludeMode === \"block\") {\n\t\tparseAsInline = false;\n\t}\n\tvar parser = this.wiki.parseTextReference(\n\t\t\t\t\t\tthis.transcludeTitle,\n\t\t\t\t\t\tthis.transcludeField,\n\t\t\t\t\t\tthis.transcludeIndex,\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tparseAsInline: parseAsInline,\n\t\t\t\t\t\t\tsubTiddler: this.transcludeSubTiddler\n\t\t\t\t\t\t}),\n\t\tparseTreeNodes = parser ? parser.tree : this.parseTreeNode.children;\n\t// Set context variables for recursion detection\n\tvar recursionMarker = this.makeRecursionMarker();\n\tthis.setVariable(\"transclusion\",recursionMarker);\n\t// Check for recursion\n\tif(parser) {\n\t\tif(this.parentWidget && this.parentWidget.hasVariable(\"transclusion\",recursionMarker)) {\n\t\t\tparseTreeNodes = [{type: \"element\", tag: \"span\", attributes: {\n\t\t\t\t\"class\": {type: \"string\", value: \"tc-error\"}\n\t\t\t}, children: [\n\t\t\t\t{type: \"text\", text: $tw.language.getString(\"Error/RecursiveTransclusion\")}\n\t\t\t]}];\n\t\t}\n\t}\n\t// Construct the child widgets\n\tthis.makeChildWidgets(parseTreeNodes);\n};\n\n/*\nCompose a string comprising the title, field and/or index to identify this transclusion for recursion detection\n*/\nTranscludeWidget.prototype.makeRecursionMarker = function() {\n\tvar output = [];\n\toutput.push(\"{\");\n\toutput.push(this.getVariable(\"currentTiddler\",{defaultValue: \"\"}));\n\toutput.push(\"|\");\n\toutput.push(this.transcludeTitle || \"\");\n\toutput.push(\"|\");\n\toutput.push(this.transcludeField || \"\");\n\toutput.push(\"|\");\n\toutput.push(this.transcludeIndex || \"\");\n\toutput.push(\"|\");\n\toutput.push(this.transcludeSubTiddler || \"\");\n\toutput.push(\"}\");\n\treturn output.join(\"\");\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nTranscludeWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\tif(changedAttributes.tiddler || changedAttributes.field || changedAttributes.index || changedTiddlers[this.transcludeTitle]) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t} else {\n\t\treturn this.refreshChildren(changedTiddlers);\t\t\n\t}\n};\n\nexports.transclude = TranscludeWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/vars.js": {
"title": "$:/core/modules/widgets/vars.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/vars.js\ntype: application/javascript\nmodule-type: widget\n\nThis widget allows multiple variables to be set in one go:\n\n```\n\\define helloworld() Hello world!\n<$vars greeting=\"Hi\" me={{!!title}} sentence=<<helloworld>>>\n <<greeting>>! I am <<me>> and I say: <<sentence>>\n</$vars>\n```\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar VarsWidget = function(parseTreeNode,options) {\n\t// Call the constructor\n\tWidget.call(this);\n\t// Initialise\t\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nVarsWidget.prototype = Object.create(Widget.prototype);\n\n/*\nRender this widget into the DOM\n*/\nVarsWidget.prototype.render = function(parent,nextSibling) {\n\tthis.parentDomNode = parent;\n\tthis.computeAttributes();\n\tthis.execute();\n\tthis.renderChildren(parent,nextSibling);\n};\n\n/*\nCompute the internal state of the widget\n*/\nVarsWidget.prototype.execute = function() {\n\t// Parse variables\n\tvar self = this;\n\t$tw.utils.each(this.attributes,function(val,key) {\n\t\tif(key.charAt(0) !== \"$\") {\n\t\t\tself.setVariable(key,val);\n\t\t}\n\t});\n\t// Construct the child widgets\n\tthis.makeChildWidgets();\n};\n\n/*\nRefresh the widget by ensuring our attributes are up to date\n*/\nVarsWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\tif(Object.keys(changedAttributes).length) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t}\n\treturn this.refreshChildren(changedTiddlers);\n};\n\nexports[\"vars\"] = VarsWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/view.js": {
"title": "$:/core/modules/widgets/view.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/view.js\ntype: application/javascript\nmodule-type: widget\n\nView widget\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar ViewWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nViewWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nViewWidget.prototype.render = function(parent,nextSibling) {\n\tthis.parentDomNode = parent;\n\tthis.computeAttributes();\n\tthis.execute();\n\tif(this.text) {\n\t\tvar textNode = this.document.createTextNode(this.text);\n\t\tparent.insertBefore(textNode,nextSibling);\n\t\tthis.domNodes.push(textNode);\n\t} else {\n\t\tthis.makeChildWidgets();\n\t\tthis.renderChildren(parent,nextSibling);\n\t}\n};\n\n/*\nCompute the internal state of the widget\n*/\nViewWidget.prototype.execute = function() {\n\t// Get parameters from our attributes\n\tthis.viewTitle = this.getAttribute(\"tiddler\",this.getVariable(\"currentTiddler\"));\n\tthis.viewSubtiddler = this.getAttribute(\"subtiddler\");\n\tthis.viewField = this.getAttribute(\"field\",\"text\");\n\tthis.viewIndex = this.getAttribute(\"index\");\n\tthis.viewFormat = this.getAttribute(\"format\",\"text\");\n\tthis.viewTemplate = this.getAttribute(\"template\",\"\");\n\tthis.viewMode = this.getAttribute(\"mode\",\"block\");\n\tswitch(this.viewFormat) {\n\t\tcase \"htmlwikified\":\n\t\t\tthis.text = this.getValueAsHtmlWikified(this.viewMode);\n\t\t\tbreak;\n\t\tcase \"plainwikified\":\n\t\t\tthis.text = this.getValueAsPlainWikified(this.viewMode);\n\t\t\tbreak;\n\t\tcase \"htmlencodedplainwikified\":\n\t\t\tthis.text = this.getValueAsHtmlEncodedPlainWikified(this.viewMode);\n\t\t\tbreak;\n\t\tcase \"htmlencoded\":\n\t\t\tthis.text = this.getValueAsHtmlEncoded();\n\t\t\tbreak;\n\t\tcase \"urlencoded\":\n\t\t\tthis.text = this.getValueAsUrlEncoded();\n\t\t\tbreak;\n\t\tcase \"doubleurlencoded\":\n\t\t\tthis.text = this.getValueAsDoubleUrlEncoded();\n\t\t\tbreak;\n\t\tcase \"date\":\n\t\t\tthis.text = this.getValueAsDate(this.viewTemplate);\n\t\t\tbreak;\n\t\tcase \"relativedate\":\n\t\t\tthis.text = this.getValueAsRelativeDate();\n\t\t\tbreak;\n\t\tcase \"stripcomments\":\n\t\t\tthis.text = this.getValueAsStrippedComments();\n\t\t\tbreak;\n\t\tcase \"jsencoded\":\n\t\t\tthis.text = this.getValueAsJsEncoded();\n\t\t\tbreak;\n\t\tdefault: // \"text\"\n\t\t\tthis.text = this.getValueAsText();\n\t\t\tbreak;\n\t}\n};\n\n/*\nThe various formatter functions are baked into this widget for the moment. Eventually they will be replaced by macro functions\n*/\n\n/*\nRetrieve the value of the widget. Options are:\nasString: Optionally return the value as a string\n*/\nViewWidget.prototype.getValue = function(options) {\n\toptions = options || {};\n\tvar value = options.asString ? \"\" : undefined;\n\tif(this.viewIndex) {\n\t\tvalue = this.wiki.extractTiddlerDataItem(this.viewTitle,this.viewIndex);\n\t} else {\n\t\tvar tiddler;\n\t\tif(this.viewSubtiddler) {\n\t\t\ttiddler = this.wiki.getSubTiddler(this.viewTitle,this.viewSubtiddler);\t\n\t\t} else {\n\t\t\ttiddler = this.wiki.getTiddler(this.viewTitle);\n\t\t}\n\t\tif(tiddler) {\n\t\t\tif(this.viewField === \"text\" && !this.viewSubtiddler) {\n\t\t\t\t// Calling getTiddlerText() triggers lazy loading of skinny tiddlers\n\t\t\t\tvalue = this.wiki.getTiddlerText(this.viewTitle);\n\t\t\t} else {\n\t\t\t\tif($tw.utils.hop(tiddler.fields,this.viewField)) {\n\t\t\t\t\tif(options.asString) {\n\t\t\t\t\t\tvalue = tiddler.getFieldString(this.viewField);\n\t\t\t\t\t} else {\n\t\t\t\t\t\tvalue = tiddler.fields[this.viewField];\t\t\t\t\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tif(this.viewField === \"title\") {\n\t\t\t\tvalue = this.viewTitle;\n\t\t\t}\n\t\t}\n\t}\n\treturn value;\n};\n\nViewWidget.prototype.getValueAsText = function() {\n\treturn this.getValue({asString: true});\n};\n\nViewWidget.prototype.getValueAsHtmlWikified = function(mode) {\n\treturn this.wiki.renderText(\"text/html\",\"text/vnd.tiddlywiki\",this.getValueAsText(),{\n\t\tparseAsInline: mode !== \"block\",\n\t\tparentWidget: this\n\t});\n};\n\nViewWidget.prototype.getValueAsPlainWikified = function(mode) {\n\treturn this.wiki.renderText(\"text/plain\",\"text/vnd.tiddlywiki\",this.getValueAsText(),{\n\t\tparseAsInline: mode !== \"block\",\n\t\tparentWidget: this\n\t});\n};\n\nViewWidget.prototype.getValueAsHtmlEncodedPlainWikified = function(mode) {\n\treturn $tw.utils.htmlEncode(this.wiki.renderText(\"text/plain\",\"text/vnd.tiddlywiki\",this.getValueAsText(),{\n\t\tparseAsInline: mode !== \"block\",\n\t\tparentWidget: this\n\t}));\n};\n\nViewWidget.prototype.getValueAsHtmlEncoded = function() {\n\treturn $tw.utils.htmlEncode(this.getValueAsText());\n};\n\nViewWidget.prototype.getValueAsUrlEncoded = function() {\n\treturn encodeURIComponent(this.getValueAsText());\n};\n\nViewWidget.prototype.getValueAsDoubleUrlEncoded = function() {\n\treturn encodeURIComponent(encodeURIComponent(this.getValueAsText()));\n};\n\nViewWidget.prototype.getValueAsDate = function(format) {\n\tformat = format || \"YYYY MM DD 0hh:0mm\";\n\tvar value = $tw.utils.parseDate(this.getValue());\n\tif(value && $tw.utils.isDate(value) && value.toString() !== \"Invalid Date\") {\n\t\treturn $tw.utils.formatDateString(value,format);\n\t} else {\n\t\treturn \"\";\n\t}\n};\n\nViewWidget.prototype.getValueAsRelativeDate = function(format) {\n\tvar value = $tw.utils.parseDate(this.getValue());\n\tif(value && $tw.utils.isDate(value) && value.toString() !== \"Invalid Date\") {\n\t\treturn $tw.utils.getRelativeDate((new Date()) - (new Date(value))).description;\n\t} else {\n\t\treturn \"\";\n\t}\n};\n\nViewWidget.prototype.getValueAsStrippedComments = function() {\n\tvar lines = this.getValueAsText().split(\"\\n\"),\n\t\tout = [];\n\tfor(var line=0; line<lines.length; line++) {\n\t\tvar text = lines[line];\n\t\tif(!/^\\s*\\/\\/#/.test(text)) {\n\t\t\tout.push(text);\n\t\t}\n\t}\n\treturn out.join(\"\\n\");\n};\n\nViewWidget.prototype.getValueAsJsEncoded = function() {\n\treturn $tw.utils.stringify(this.getValueAsText());\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nViewWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\tif(changedAttributes.tiddler || changedAttributes.field || changedAttributes.index || changedAttributes.template || changedAttributes.format || changedTiddlers[this.viewTitle]) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t} else {\n\t\treturn false;\t\n\t}\n};\n\nexports.view = ViewWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/widget.js": {
"title": "$:/core/modules/widgets/widget.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/widget.js\ntype: application/javascript\nmodule-type: widget\n\nWidget base class\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nCreate a widget object for a parse tree node\n\tparseTreeNode: reference to the parse tree node to be rendered\n\toptions: see below\nOptions include:\n\twiki: mandatory reference to wiki associated with this render tree\n\tparentWidget: optional reference to a parent renderer node for the context chain\n\tdocument: optional document object to use instead of global document\n*/\nvar Widget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInitialise widget properties. These steps are pulled out of the constructor so that we can reuse them in subclasses\n*/\nWidget.prototype.initialise = function(parseTreeNode,options) {\n\t// Bail if parseTreeNode is undefined, meaning that the widget constructor was called without any arguments so that it can be subclassed\n\tif(parseTreeNode === undefined) {\n\t\treturn;\n\t}\n\toptions = options || {};\n\t// Save widget info\n\tthis.parseTreeNode = parseTreeNode;\n\tthis.wiki = options.wiki;\n\tthis.parentWidget = options.parentWidget;\n\tthis.variablesConstructor = function() {};\n\tthis.variablesConstructor.prototype = this.parentWidget ? this.parentWidget.variables : {};\n\tthis.variables = new this.variablesConstructor();\n\tthis.document = options.document;\n\tthis.attributes = {};\n\tthis.children = [];\n\tthis.domNodes = [];\n\tthis.eventListeners = {};\n\t// Hashmap of the widget classes\n\tif(!this.widgetClasses) {\n\t\t// Get widget classes\n\t\tWidget.prototype.widgetClasses = $tw.modules.applyMethods(\"widget\");\n\t\t// Process any subclasses\n\t\t$tw.modules.forEachModuleOfType(\"widget-subclass\",function(title,module) {\n\t\t\tif(module.baseClass) {\n\t\t\t\tvar baseClass = Widget.prototype.widgetClasses[module.baseClass];\n\t\t\t\tif(!baseClass) {\n\t\t\t\t\tthrow \"Module '\" + title + \"' is attemping to extend a non-existent base class '\" + module.baseClass + \"'\";\n\t\t\t\t}\n\t\t\t\tvar subClass = module.constructor;\n\t\t\t\tsubClass.prototype = new baseClass();\n\t\t\t\t$tw.utils.extend(subClass.prototype,module.prototype);\n\t\t\t\tWidget.prototype.widgetClasses[module.name || module.baseClass] = subClass;\n\t\t\t}\n\t\t});\n\t}\n};\n\n/*\nRender this widget into the DOM\n*/\nWidget.prototype.render = function(parent,nextSibling) {\n\tthis.parentDomNode = parent;\n\tthis.execute();\n\tthis.renderChildren(parent,nextSibling);\n};\n\n/*\nCompute the internal state of the widget\n*/\nWidget.prototype.execute = function() {\n\tthis.makeChildWidgets();\n};\n\n/*\nSet the value of a context variable\nname: name of the variable\nvalue: value of the variable\nparams: array of {name:, default:} for each parameter\nisMacroDefinition: true if the variable is set via a \\define macro pragma (and hence should have variable substitution performed)\n*/\nWidget.prototype.setVariable = function(name,value,params,isMacroDefinition) {\n\tthis.variables[name] = {value: value, params: params, isMacroDefinition: !!isMacroDefinition};\n};\n\n/*\nGet the prevailing value of a context variable\nname: name of variable\noptions: see below\nOptions include\nparams: array of {name:, value:} for each parameter\ndefaultValue: default value if the variable is not defined\n\nReturns an object with the following fields:\n\nparams: array of {name:,value:} of parameters passed to wikitext variables\ntext: text of variable, with parameters properly substituted\n*/\nWidget.prototype.getVariableInfo = function(name,options) {\n\toptions = options || {};\n\tvar actualParams = options.params || [],\n\t\tparentWidget = this.parentWidget;\n\t// Check for the variable defined in the parent widget (or an ancestor in the prototype chain)\n\tif(parentWidget && name in parentWidget.variables) {\n\t\tvar variable = parentWidget.variables[name],\n\t\t\tvalue = variable.value,\n\t\t\tparams = this.resolveVariableParameters(variable.params,actualParams);\n\t\t// Substitute any parameters specified in the definition\n\t\t$tw.utils.each(params,function(param) {\n\t\t\tvalue = $tw.utils.replaceString(value,new RegExp(\"\\\\$\" + $tw.utils.escapeRegExp(param.name) + \"\\\\$\",\"mg\"),param.value);\n\t\t});\n\t\t// Only substitute variable references if this variable was defined with the \\define pragma\n\t\tif(variable.isMacroDefinition) {\n\t\t\tvalue = this.substituteVariableReferences(value);\t\t\t\n\t\t}\n\t\treturn {\n\t\t\ttext: value,\n\t\t\tparams: params\n\t\t};\n\t}\n\t// If the variable doesn't exist in the parent widget then look for a macro module\n\treturn {\n\t\ttext: this.evaluateMacroModule(name,actualParams,options.defaultValue)\n\t};\n};\n\n/*\nSimplified version of getVariableInfo() that just returns the text\n*/\nWidget.prototype.getVariable = function(name,options) {\n\treturn this.getVariableInfo(name,options).text;\n};\n\nWidget.prototype.resolveVariableParameters = function(formalParams,actualParams) {\n\tformalParams = formalParams || [];\n\tactualParams = actualParams || [];\n\tvar nextAnonParameter = 0, // Next candidate anonymous parameter in macro call\n\t\tparamInfo, paramValue,\n\t\tresults = [];\n\t// Step through each of the parameters in the macro definition\n\tfor(var p=0; p<formalParams.length; p++) {\n\t\t// Check if we've got a macro call parameter with the same name\n\t\tparamInfo = formalParams[p];\n\t\tparamValue = undefined;\n\t\tfor(var m=0; m<actualParams.length; m++) {\n\t\t\tif(actualParams[m].name === paramInfo.name) {\n\t\t\t\tparamValue = actualParams[m].value;\n\t\t\t}\n\t\t}\n\t\t// If not, use the next available anonymous macro call parameter\n\t\twhile(nextAnonParameter < actualParams.length && actualParams[nextAnonParameter].name) {\n\t\t\tnextAnonParameter++;\n\t\t}\n\t\tif(paramValue === undefined && nextAnonParameter < actualParams.length) {\n\t\t\tparamValue = actualParams[nextAnonParameter++].value;\n\t\t}\n\t\t// If we've still not got a value, use the default, if any\n\t\tparamValue = paramValue || paramInfo[\"default\"] || \"\";\n\t\t// Store the parameter name and value\n\t\tresults.push({name: paramInfo.name, value: paramValue});\n\t}\n\treturn results;\n};\n\nWidget.prototype.substituteVariableReferences = function(text) {\n\tvar self = this;\n\treturn (text || \"\").replace(/\\$\\(([^\\)\\$]+)\\)\\$/g,function(match,p1,offset,string) {\n\t\treturn self.getVariable(p1,{defaultValue: \"\"});\n\t});\n};\n\nWidget.prototype.evaluateMacroModule = function(name,actualParams,defaultValue) {\n\tif($tw.utils.hop($tw.macros,name)) {\n\t\tvar macro = $tw.macros[name],\n\t\t\targs = [];\n\t\tif(macro.params.length > 0) {\n\t\t\tvar nextAnonParameter = 0, // Next candidate anonymous parameter in macro call\n\t\t\t\tparamInfo, paramValue;\n\t\t\t// Step through each of the parameters in the macro definition\n\t\t\tfor(var p=0; p<macro.params.length; p++) {\n\t\t\t\t// Check if we've got a macro call parameter with the same name\n\t\t\t\tparamInfo = macro.params[p];\n\t\t\t\tparamValue = undefined;\n\t\t\t\tfor(var m=0; m<actualParams.length; m++) {\n\t\t\t\t\tif(actualParams[m].name === paramInfo.name) {\n\t\t\t\t\t\tparamValue = actualParams[m].value;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t// If not, use the next available anonymous macro call parameter\n\t\t\t\twhile(nextAnonParameter < actualParams.length && actualParams[nextAnonParameter].name) {\n\t\t\t\t\tnextAnonParameter++;\n\t\t\t\t}\n\t\t\t\tif(paramValue === undefined && nextAnonParameter < actualParams.length) {\n\t\t\t\t\tparamValue = actualParams[nextAnonParameter++].value;\n\t\t\t\t}\n\t\t\t\t// If we've still not got a value, use the default, if any\n\t\t\t\tparamValue = paramValue || paramInfo[\"default\"] || \"\";\n\t\t\t\t// Save the parameter\n\t\t\t\targs.push(paramValue);\n\t\t\t}\n\t\t}\n\t\telse for(var i=0; i<actualParams.length; ++i) {\n\t\t\targs.push(actualParams[i].value);\n\t\t}\n\t\treturn (macro.run.apply(this,args) || \"\").toString();\n\t} else {\n\t\treturn defaultValue;\n\t}\n};\n\n/*\nCheck whether a given context variable value exists in the parent chain\n*/\nWidget.prototype.hasVariable = function(name,value) {\n\tvar node = this;\n\twhile(node) {\n\t\tif($tw.utils.hop(node.variables,name) && node.variables[name].value === value) {\n\t\t\treturn true;\n\t\t}\n\t\tnode = node.parentWidget;\n\t}\n\treturn false;\n};\n\n/*\nConstruct a qualifying string based on a hash of concatenating the values of a given variable in the parent chain\n*/\nWidget.prototype.getStateQualifier = function(name) {\n\tthis.qualifiers = this.qualifiers || Object.create(null);\n\tname = name || \"transclusion\";\n\tif(this.qualifiers[name]) {\n\t\treturn this.qualifiers[name];\n\t} else {\n\t\tvar output = [],\n\t\t\tnode = this;\n\t\twhile(node && node.parentWidget) {\n\t\t\tif($tw.utils.hop(node.parentWidget.variables,name)) {\n\t\t\t\toutput.push(node.getVariable(name));\n\t\t\t}\n\t\t\tnode = node.parentWidget;\n\t\t}\n\t\tvar value = $tw.utils.hashString(output.join(\"\"));\n\t\tthis.qualifiers[name] = value;\n\t\treturn value;\n\t}\n};\n\n/*\nCompute the current values of the attributes of the widget. Returns a hashmap of the names of the attributes that have changed\n*/\nWidget.prototype.computeAttributes = function() {\n\tvar changedAttributes = {},\n\t\tself = this,\n\t\tvalue;\n\t$tw.utils.each(this.parseTreeNode.attributes,function(attribute,name) {\n\t\tif(attribute.type === \"filtered\") {\n\t\t\tvalue = self.wiki.filterTiddlers(attribute.filter,self)[0] || \"\";\n\t\t} else if(attribute.type === \"indirect\") {\n\t\t\tvalue = self.wiki.getTextReference(attribute.textReference,\"\",self.getVariable(\"currentTiddler\"));\n\t\t} else if(attribute.type === \"macro\") {\n\t\t\tvalue = self.getVariable(attribute.value.name,{params: attribute.value.params});\n\t\t} else { // String attribute\n\t\t\tvalue = attribute.value;\n\t\t}\n\t\t// Check whether the attribute has changed\n\t\tif(self.attributes[name] !== value) {\n\t\t\tself.attributes[name] = value;\n\t\t\tchangedAttributes[name] = true;\n\t\t}\n\t});\n\treturn changedAttributes;\n};\n\n/*\nCheck for the presence of an attribute\n*/\nWidget.prototype.hasAttribute = function(name) {\n\treturn $tw.utils.hop(this.attributes,name);\n};\n\n/*\nGet the value of an attribute\n*/\nWidget.prototype.getAttribute = function(name,defaultText) {\n\tif($tw.utils.hop(this.attributes,name)) {\n\t\treturn this.attributes[name];\n\t} else {\n\t\treturn defaultText;\n\t}\n};\n\n/*\nAssign the computed attributes of the widget to a domNode\noptions include:\nexcludeEventAttributes: ignores attributes whose name begins with \"on\"\n*/\nWidget.prototype.assignAttributes = function(domNode,options) {\n\toptions = options || {};\n\tvar self = this;\n\t$tw.utils.each(this.attributes,function(v,a) {\n\t\t// Check exclusions\n\t\tif(options.excludeEventAttributes && a.substr(0,2) === \"on\") {\n\t\t\tv = undefined;\n\t\t}\n\t\tif(v !== undefined) {\n\t\t\tvar b = a.split(\":\");\n\t\t\t// Setting certain attributes can cause a DOM error (eg xmlns on the svg element)\n\t\t\ttry {\n\t\t\t\tif (b.length == 2 && b[0] == \"xlink\"){\n\t\t\t\t\tdomNode.setAttributeNS(\"http://www.w3.org/1999/xlink\",b[1],v);\n\t\t\t\t} else {\n\t\t\t\t\tdomNode.setAttributeNS(null,a,v);\n\t\t\t\t}\n\t\t\t} catch(e) {\n\t\t\t}\n\t\t}\n\t});\n};\n\n/*\nMake child widgets correspondng to specified parseTreeNodes\n*/\nWidget.prototype.makeChildWidgets = function(parseTreeNodes) {\n\tthis.children = [];\n\tvar self = this;\n\t$tw.utils.each(parseTreeNodes || (this.parseTreeNode && this.parseTreeNode.children),function(childNode) {\n\t\tself.children.push(self.makeChildWidget(childNode));\n\t});\n};\n\n/*\nConstruct the widget object for a parse tree node\n*/\nWidget.prototype.makeChildWidget = function(parseTreeNode) {\n\tvar WidgetClass = this.widgetClasses[parseTreeNode.type];\n\tif(!WidgetClass) {\n\t\tWidgetClass = this.widgetClasses.text;\n\t\tparseTreeNode = {type: \"text\", text: \"Undefined widget '\" + parseTreeNode.type + \"'\"};\n\t}\n\treturn new WidgetClass(parseTreeNode,{\n\t\twiki: this.wiki,\n\t\tvariables: {},\n\t\tparentWidget: this,\n\t\tdocument: this.document\n\t});\n};\n\n/*\nGet the next sibling of this widget\n*/\nWidget.prototype.nextSibling = function() {\n\tif(this.parentWidget) {\n\t\tvar index = this.parentWidget.children.indexOf(this);\n\t\tif(index !== -1 && index < this.parentWidget.children.length-1) {\n\t\t\treturn this.parentWidget.children[index+1];\n\t\t}\n\t}\n\treturn null;\n};\n\n/*\nGet the previous sibling of this widget\n*/\nWidget.prototype.previousSibling = function() {\n\tif(this.parentWidget) {\n\t\tvar index = this.parentWidget.children.indexOf(this);\n\t\tif(index !== -1 && index > 0) {\n\t\t\treturn this.parentWidget.children[index-1];\n\t\t}\n\t}\n\treturn null;\n};\n\n/*\nRender the children of this widget into the DOM\n*/\nWidget.prototype.renderChildren = function(parent,nextSibling) {\n\tvar children = this.children;\n\tfor(var i = 0; i < children.length; i++) {\n\t\tchildren[i].render(parent,nextSibling);\n\t};\n};\n\n/*\nAdd a list of event listeners from an array [{type:,handler:},...]\n*/\nWidget.prototype.addEventListeners = function(listeners) {\n\tvar self = this;\n\t$tw.utils.each(listeners,function(listenerInfo) {\n\t\tself.addEventListener(listenerInfo.type,listenerInfo.handler);\n\t});\n};\n\n/*\nAdd an event listener\n*/\nWidget.prototype.addEventListener = function(type,handler) {\n\tvar self = this;\n\tif(typeof handler === \"string\") { // The handler is a method name on this widget\n\t\tthis.eventListeners[type] = function(event) {\n\t\t\treturn self[handler].call(self,event);\n\t\t};\n\t} else { // The handler is a function\n\t\tthis.eventListeners[type] = function(event) {\n\t\t\treturn handler.call(self,event);\n\t\t};\n\t}\n};\n\n/*\nDispatch an event to a widget. If the widget doesn't handle the event then it is also dispatched to the parent widget\n*/\nWidget.prototype.dispatchEvent = function(event) {\n\t// Dispatch the event if this widget handles it\n\tvar listener = this.eventListeners[event.type];\n\tif(listener) {\n\t\t// Don't propagate the event if the listener returned false\n\t\tif(!listener(event)) {\n\t\t\treturn false;\n\t\t}\n\t}\n\t// Dispatch the event to the parent widget\n\tif(this.parentWidget) {\n\t\treturn this.parentWidget.dispatchEvent(event);\n\t}\n\treturn true;\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nWidget.prototype.refresh = function(changedTiddlers) {\n\treturn this.refreshChildren(changedTiddlers);\n};\n\n/*\nRebuild a previously rendered widget\n*/\nWidget.prototype.refreshSelf = function() {\n\tvar nextSibling = this.findNextSiblingDomNode();\n\tthis.removeChildDomNodes();\n\tthis.render(this.parentDomNode,nextSibling);\n};\n\n/*\nRefresh all the children of a widget\n*/\nWidget.prototype.refreshChildren = function(changedTiddlers) {\n\tvar children = this.children,\n\t\trefreshed = false;\n\tfor (var i = 0; i < children.length; i++) {\n\t\trefreshed = children[i].refresh(changedTiddlers) || refreshed;\n\t}\n\treturn refreshed;\n};\n\n/*\nFind the next sibling in the DOM to this widget. This is done by scanning the widget tree through all next siblings and their descendents that share the same parent DOM node\n*/\nWidget.prototype.findNextSiblingDomNode = function(startIndex) {\n\t// Refer to this widget by its index within its parents children\n\tvar parent = this.parentWidget,\n\t\tindex = startIndex !== undefined ? startIndex : parent.children.indexOf(this);\nif(index === -1) {\n\tthrow \"node not found in parents children\";\n}\n\t// Look for a DOM node in the later siblings\n\twhile(++index < parent.children.length) {\n\t\tvar domNode = parent.children[index].findFirstDomNode();\n\t\tif(domNode) {\n\t\t\treturn domNode;\n\t\t}\n\t}\n\t// Go back and look for later siblings of our parent if it has the same parent dom node\n\tvar grandParent = parent.parentWidget;\n\tif(grandParent && parent.parentDomNode === this.parentDomNode) {\n\t\tindex = grandParent.children.indexOf(parent);\n\t\tif(index !== -1) {\n\t\t\treturn parent.findNextSiblingDomNode(index);\n\t\t}\n\t}\n\treturn null;\n};\n\n/*\nFind the first DOM node generated by a widget or its children\n*/\nWidget.prototype.findFirstDomNode = function() {\n\t// Return the first dom node of this widget, if we've got one\n\tif(this.domNodes.length > 0) {\n\t\treturn this.domNodes[0];\n\t}\n\t// Otherwise, recursively call our children\n\tfor(var t=0; t<this.children.length; t++) {\n\t\tvar domNode = this.children[t].findFirstDomNode();\n\t\tif(domNode) {\n\t\t\treturn domNode;\n\t\t}\n\t}\n\treturn null;\n};\n\n/*\nRemove any DOM nodes created by this widget or its children\n*/\nWidget.prototype.removeChildDomNodes = function() {\n\t// If this widget has directly created DOM nodes, delete them and exit. This assumes that any child widgets are contained within the created DOM nodes, which would normally be the case\n\tif(this.domNodes.length > 0) {\n\t\t$tw.utils.each(this.domNodes,function(domNode) {\n\t\t\tdomNode.parentNode.removeChild(domNode);\n\t\t});\n\t\tthis.domNodes = [];\n\t} else {\n\t\t// Otherwise, ask the child widgets to delete their DOM nodes\n\t\t$tw.utils.each(this.children,function(childWidget) {\n\t\t\tchildWidget.removeChildDomNodes();\n\t\t});\n\t}\n};\n\n/*\nInvoke the action widgets that are descendents of the current widget.\n*/\nWidget.prototype.invokeActions = function(triggeringWidget,event) {\n\tvar handled = false;\n\t// For each child widget\n\tfor(var t=0; t<this.children.length; t++) {\n\t\tvar child = this.children[t];\n\t\t// Invoke the child if it is an action widget\n\t\tif(child.invokeAction) {\n\t\t\tchild.refreshSelf();\n\t\t\tif(child.invokeAction(triggeringWidget,event)) {\n\t\t\t\thandled = true;\n\t\t\t}\n\t\t}\n\t\t// Propagate through through the child if it permits it\n\t\tif(child.allowActionPropagation() && child.invokeActions(triggeringWidget,event)) {\n\t\t\thandled = true;\n\t\t}\n\t}\n\treturn handled;\n};\n\n/*\nInvoke the action widgets defined in a string\n*/\nWidget.prototype.invokeActionString = function(actions,triggeringWidget,event,variables) {\n\tactions = actions || \"\";\n\tvar parser = this.wiki.parseText(\"text/vnd.tiddlywiki\",actions,{\n\t\t\tparentWidget: this,\n\t\t\tdocument: this.document\n\t\t}),\n\t\twidgetNode = this.wiki.makeWidget(parser,{\n\t\t\tparentWidget: this,\n\t\t\tdocument: this.document,\n\t\t\tvariables: variables\n\t\t});\n\tvar container = this.document.createElement(\"div\");\n\twidgetNode.render(container,null);\n\treturn widgetNode.invokeActions(this,event);\n};\n\nWidget.prototype.allowActionPropagation = function() {\n\treturn true;\n};\n\nexports.widget = Widget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/widgets/wikify.js": {
"title": "$:/core/modules/widgets/wikify.js",
"text": "/*\\\ntitle: $:/core/modules/widgets/wikify.js\ntype: application/javascript\nmodule-type: widget\n\nWidget to wikify text into a variable\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar WikifyWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nWikifyWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nWikifyWidget.prototype.render = function(parent,nextSibling) {\n\tthis.parentDomNode = parent;\n\tthis.computeAttributes();\n\tthis.execute();\n\tthis.renderChildren(parent,nextSibling);\n};\n\n/*\nCompute the internal state of the widget\n*/\nWikifyWidget.prototype.execute = function() {\n\t// Get our parameters\n\tthis.wikifyName = this.getAttribute(\"name\");\n\tthis.wikifyText = this.getAttribute(\"text\");\n\tthis.wikifyType = this.getAttribute(\"type\");\n\tthis.wikifyMode = this.getAttribute(\"mode\",\"block\");\n\tthis.wikifyOutput = this.getAttribute(\"output\",\"text\");\n\t// Create the parse tree\n\tthis.wikifyParser = this.wiki.parseText(this.wikifyType,this.wikifyText,{\n\t\t\tparseAsInline: this.wikifyMode === \"inline\"\n\t\t});\n\t// Create the widget tree \n\tthis.wikifyWidgetNode = this.wiki.makeWidget(this.wikifyParser,{\n\t\t\tdocument: $tw.fakeDocument,\n\t\t\tparentWidget: this\n\t\t});\n\t// Render the widget tree to the container\n\tthis.wikifyContainer = $tw.fakeDocument.createElement(\"div\");\n\tthis.wikifyWidgetNode.render(this.wikifyContainer,null);\n\tthis.wikifyResult = this.getResult();\n\t// Set context variable\n\tthis.setVariable(this.wikifyName,this.wikifyResult);\n\t// Construct the child widgets\n\tthis.makeChildWidgets();\n};\n\n/*\nReturn the result string\n*/\nWikifyWidget.prototype.getResult = function() {\n\tvar result;\n\tswitch(this.wikifyOutput) {\n\t\tcase \"text\":\n\t\t\tresult = this.wikifyContainer.textContent;\n\t\t\tbreak;\n\t\tcase \"formattedtext\":\n\t\t\tresult = this.wikifyContainer.formattedTextContent;\n\t\t\tbreak;\n\t\tcase \"html\":\n\t\t\tresult = this.wikifyContainer.innerHTML;\n\t\t\tbreak;\n\t\tcase \"parsetree\":\n\t\t\tresult = JSON.stringify(this.wikifyParser.tree,0,$tw.config.preferences.jsonSpaces);\n\t\t\tbreak;\n\t\tcase \"widgettree\":\n\t\t\tresult = JSON.stringify(this.getWidgetTree(),0,$tw.config.preferences.jsonSpaces);\n\t\t\tbreak;\n\t}\n\treturn result;\n};\n\n/*\nReturn a string of the widget tree\n*/\nWikifyWidget.prototype.getWidgetTree = function() {\n\tvar copyNode = function(widgetNode,resultNode) {\n\t\t\tvar type = widgetNode.parseTreeNode.type;\n\t\t\tresultNode.type = type;\n\t\t\tswitch(type) {\n\t\t\t\tcase \"element\":\n\t\t\t\t\tresultNode.tag = widgetNode.parseTreeNode.tag;\n\t\t\t\t\tbreak;\n\t\t\t\tcase \"text\":\n\t\t\t\t\tresultNode.text = widgetNode.parseTreeNode.text;\n\t\t\t\t\tbreak;\t\n\t\t\t}\n\t\t\tif(Object.keys(widgetNode.attributes || {}).length > 0) {\n\t\t\t\tresultNode.attributes = {};\n\t\t\t\t$tw.utils.each(widgetNode.attributes,function(attr,attrName) {\n\t\t\t\t\tresultNode.attributes[attrName] = widgetNode.getAttribute(attrName);\n\t\t\t\t});\n\t\t\t}\n\t\t\tif(Object.keys(widgetNode.children || {}).length > 0) {\n\t\t\t\tresultNode.children = [];\n\t\t\t\t$tw.utils.each(widgetNode.children,function(widgetChildNode) {\n\t\t\t\t\tvar node = {};\n\t\t\t\t\tresultNode.children.push(node);\n\t\t\t\t\tcopyNode(widgetChildNode,node);\n\t\t\t\t});\n\t\t\t}\n\t\t},\n\t\tresults = {};\n\tcopyNode(this.wikifyWidgetNode,results);\n\treturn results;\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nWikifyWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\t// Refresh ourselves entirely if any of our attributes have changed\n\tif(changedAttributes.name || changedAttributes.text || changedAttributes.type || changedAttributes.mode || changedAttributes.output) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t} else {\n\t\t// Refresh the widget tree\n\t\tif(this.wikifyWidgetNode.refresh(changedTiddlers)) {\n\t\t\t// Check if there was any change\n\t\t\tvar result = this.getResult();\n\t\t\tif(result !== this.wikifyResult) {\n\t\t\t\t// If so, save the change\n\t\t\t\tthis.wikifyResult = result;\n\t\t\t\tthis.setVariable(this.wikifyName,this.wikifyResult);\n\t\t\t\t// Refresh each of our child widgets\n\t\t\t\t$tw.utils.each(this.children,function(childWidget) {\n\t\t\t\t\tchildWidget.refreshSelf();\n\t\t\t\t});\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\t\t// Just refresh the children\n\t\treturn this.refreshChildren(changedTiddlers);\n\t}\n};\n\nexports.wikify = WikifyWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/core/modules/wiki-bulkops.js": {
"title": "$:/core/modules/wiki-bulkops.js",
"text": "/*\\\ntitle: $:/core/modules/wiki-bulkops.js\ntype: application/javascript\nmodule-type: wikimethod\n\nBulk tiddler operations such as rename.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nRename a tiddler, and relink any tags or lists that reference it.\n*/\nfunction renameTiddler(fromTitle,toTitle,options) {\n\tfromTitle = (fromTitle || \"\").trim();\n\ttoTitle = (toTitle || \"\").trim();\n\toptions = options || {};\n\tif(fromTitle && toTitle && fromTitle !== toTitle) {\n\t\t// Rename the tiddler itself\n\t\tvar oldTiddler = this.getTiddler(fromTitle),\n\t\t\tnewTiddler = new $tw.Tiddler(oldTiddler,{title: toTitle},this.getModificationFields());\n\t\tnewTiddler = $tw.hooks.invokeHook(\"th-renaming-tiddler\",newTiddler,oldTiddler);\n\t\tthis.addTiddler(newTiddler);\n\t\tthis.deleteTiddler(fromTitle);\n\t\t// Rename any tags or lists that reference it\n\t\tthis.relinkTiddler(fromTitle,toTitle,options)\n\t}\n}\n\n/*\nRelink any tags or lists that reference a given tiddler\n*/\nfunction relinkTiddler(fromTitle,toTitle,options) {\n\tvar self = this;\n\tfromTitle = (fromTitle || \"\").trim();\n\ttoTitle = (toTitle || \"\").trim();\n\toptions = options || {};\n\tif(fromTitle && toTitle && fromTitle !== toTitle) {\n\t\tthis.each(function(tiddler,title) {\n\t\t\tvar type = tiddler.fields.type || \"\";\n\t\t\t// Don't touch plugins or JavaScript modules\n\t\t\tif(!tiddler.fields[\"plugin-type\"] && type !== \"application/javascript\") {\n\t\t\t\tvar tags = tiddler.fields.tags ? tiddler.fields.tags.slice(0) : undefined,\n\t\t\t\t\tlist = tiddler.fields.list ? tiddler.fields.list.slice(0) : undefined,\n\t\t\t\t\tisModified = false;\n\t\t\t\tif(!options.dontRenameInTags) {\n\t\t\t\t\t// Rename tags\n\t\t\t\t\t$tw.utils.each(tags,function (title,index) {\n\t\t\t\t\t\tif(title === fromTitle) {\nconsole.log(\"Renaming tag '\" + tags[index] + \"' to '\" + toTitle + \"' of tiddler '\" + tiddler.fields.title + \"'\");\n\t\t\t\t\t\t\ttags[index] = toTitle;\n\t\t\t\t\t\t\tisModified = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\tif(!options.dontRenameInLists) {\n\t\t\t\t\t// Rename lists\n\t\t\t\t\t$tw.utils.each(list,function (title,index) {\n\t\t\t\t\t\tif(title === fromTitle) {\nconsole.log(\"Renaming list item '\" + list[index] + \"' to '\" + toTitle + \"' of tiddler '\" + tiddler.fields.title + \"'\");\n\t\t\t\t\t\t\tlist[index] = toTitle;\n\t\t\t\t\t\t\tisModified = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\tif(isModified) {\n\t\t\t\t\tvar newTiddler = new $tw.Tiddler(tiddler,{tags: tags, list: list},self.getModificationFields())\n\t\t\t\t\tnewTiddler = $tw.hooks.invokeHook(\"th-relinking-tiddler\",newTiddler,tiddler);\n\t\t\t\t\tself.addTiddler(newTiddler);\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t}\n};\n\nexports.renameTiddler = renameTiddler;\nexports.relinkTiddler = relinkTiddler;\n\n})();\n",
"type": "application/javascript",
"module-type": "wikimethod"
},
"$:/core/modules/wiki.js": {
"title": "$:/core/modules/wiki.js",
"text": "/*\\\ntitle: $:/core/modules/wiki.js\ntype: application/javascript\nmodule-type: wikimethod\n\nExtension methods for the $tw.Wiki object\n\nAdds the following properties to the wiki object:\n\n* `eventListeners` is a hashmap by type of arrays of listener functions\n* `changedTiddlers` is a hashmap describing changes to named tiddlers since wiki change events were last dispatched. Each entry is a hashmap containing two fields:\n\tmodified: true/false\n\tdeleted: true/false\n* `changeCount` is a hashmap by tiddler title containing a numerical index that starts at zero and is incremented each time a tiddler is created changed or deleted\n* `caches` is a hashmap by tiddler title containing a further hashmap of named cache objects. Caches are automatically cleared when a tiddler is modified or deleted\n* `globalCache` is a hashmap by cache name of cache objects that are cleared whenever any tiddler change occurs\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar widget = require(\"$:/core/modules/widgets/widget.js\");\n\nvar USER_NAME_TITLE = \"$:/status/UserName\",\n\tTIMESTAMP_DISABLE_TITLE = \"$:/config/TimestampDisable\";\n\n/*\nAdd available indexers to this wiki\n*/\nexports.addIndexersToWiki = function() {\n\tvar self = this;\n\t$tw.utils.each($tw.modules.applyMethods(\"indexer\"),function(Indexer,name) {\n\t\tself.addIndexer(new Indexer(self),name);\n\t});\n};\n\n/*\nGet the value of a text reference. Text references can have any of these forms:\n\t<tiddlertitle>\n\t<tiddlertitle>!!<fieldname>\n\t!!<fieldname> - specifies a field of the current tiddlers\n\t<tiddlertitle>##<index>\n*/\nexports.getTextReference = function(textRef,defaultText,currTiddlerTitle) {\n\tvar tr = $tw.utils.parseTextReference(textRef),\n\t\ttitle = tr.title || currTiddlerTitle;\n\tif(tr.field) {\n\t\tvar tiddler = this.getTiddler(title);\n\t\tif(tr.field === \"title\") { // Special case so we can return the title of a non-existent tiddler\n\t\t\treturn title;\n\t\t} else if(tiddler && $tw.utils.hop(tiddler.fields,tr.field)) {\n\t\t\treturn tiddler.getFieldString(tr.field);\n\t\t} else {\n\t\t\treturn defaultText;\n\t\t}\n\t} else if(tr.index) {\n\t\treturn this.extractTiddlerDataItem(title,tr.index,defaultText);\n\t} else {\n\t\treturn this.getTiddlerText(title,defaultText);\n\t}\n};\n\nexports.setTextReference = function(textRef,value,currTiddlerTitle) {\n\tvar tr = $tw.utils.parseTextReference(textRef),\n\t\ttitle = tr.title || currTiddlerTitle;\n\tthis.setText(title,tr.field,tr.index,value);\n};\n\nexports.setText = function(title,field,index,value,options) {\n\toptions = options || {};\n\tvar creationFields = options.suppressTimestamp ? {} : this.getCreationFields(),\n\t\tmodificationFields = options.suppressTimestamp ? {} : this.getModificationFields();\n\t// Check if it is a reference to a tiddler field\n\tif(index) {\n\t\tvar data = this.getTiddlerData(title,Object.create(null));\n\t\tif(value !== undefined) {\n\t\t\tdata[index] = value;\n\t\t} else {\n\t\t\tdelete data[index];\n\t\t}\n\t\tthis.setTiddlerData(title,data,modificationFields);\n\t} else {\n\t\tvar tiddler = this.getTiddler(title),\n\t\t\tfields = {title: title};\n\t\tfields[field || \"text\"] = value;\n\t\tthis.addTiddler(new $tw.Tiddler(creationFields,tiddler,fields,modificationFields));\n\t}\n};\n\nexports.deleteTextReference = function(textRef,currTiddlerTitle) {\n\tvar tr = $tw.utils.parseTextReference(textRef),\n\t\ttitle,tiddler,fields;\n\t// Check if it is a reference to a tiddler\n\tif(tr.title && !tr.field) {\n\t\tthis.deleteTiddler(tr.title);\n\t// Else check for a field reference\n\t} else if(tr.field) {\n\t\ttitle = tr.title || currTiddlerTitle;\n\t\ttiddler = this.getTiddler(title);\n\t\tif(tiddler && $tw.utils.hop(tiddler.fields,tr.field)) {\n\t\t\tfields = Object.create(null);\n\t\t\tfields[tr.field] = undefined;\n\t\t\tthis.addTiddler(new $tw.Tiddler(tiddler,fields,this.getModificationFields()));\n\t\t}\n\t}\n};\n\nexports.addEventListener = function(type,listener) {\n\tthis.eventListeners = this.eventListeners || {};\n\tthis.eventListeners[type] = this.eventListeners[type] || [];\n\tthis.eventListeners[type].push(listener);\t\n};\n\nexports.removeEventListener = function(type,listener) {\n\tvar listeners = this.eventListeners[type];\n\tif(listeners) {\n\t\tvar p = listeners.indexOf(listener);\n\t\tif(p !== -1) {\n\t\t\tlisteners.splice(p,1);\n\t\t}\n\t}\n};\n\nexports.dispatchEvent = function(type /*, args */) {\n\tvar args = Array.prototype.slice.call(arguments,1),\n\t\tlisteners = this.eventListeners[type];\n\tif(listeners) {\n\t\tfor(var p=0; p<listeners.length; p++) {\n\t\t\tvar listener = listeners[p];\n\t\t\tlistener.apply(listener,args);\n\t\t}\n\t}\n};\n\n/*\nCauses a tiddler to be marked as changed, incrementing the change count, and triggers event handlers.\nThis method should be called after the changes it describes have been made to the wiki.tiddlers[] array.\n\ttitle: Title of tiddler\n\tisDeleted: defaults to false (meaning the tiddler has been created or modified),\n\t\ttrue if the tiddler has been deleted\n*/\nexports.enqueueTiddlerEvent = function(title,isDeleted) {\n\t// Record the touch in the list of changed tiddlers\n\tthis.changedTiddlers = this.changedTiddlers || Object.create(null);\n\tthis.changedTiddlers[title] = this.changedTiddlers[title] || Object.create(null);\n\tthis.changedTiddlers[title][isDeleted ? \"deleted\" : \"modified\"] = true;\n\t// Increment the change count\n\tthis.changeCount = this.changeCount || Object.create(null);\n\tif($tw.utils.hop(this.changeCount,title)) {\n\t\tthis.changeCount[title]++;\n\t} else {\n\t\tthis.changeCount[title] = 1;\n\t}\n\t// Trigger events\n\tthis.eventListeners = this.eventListeners || {};\n\tif(!this.eventsTriggered) {\n\t\tvar self = this;\n\t\t$tw.utils.nextTick(function() {\n\t\t\tvar changes = self.changedTiddlers;\n\t\t\tself.changedTiddlers = Object.create(null);\n\t\t\tself.eventsTriggered = false;\n\t\t\tif($tw.utils.count(changes) > 0) {\n\t\t\t\tself.dispatchEvent(\"change\",changes);\n\t\t\t}\n\t\t});\n\t\tthis.eventsTriggered = true;\n\t}\n};\n\nexports.getSizeOfTiddlerEventQueue = function() {\n\treturn $tw.utils.count(this.changedTiddlers);\n};\n\nexports.clearTiddlerEventQueue = function() {\n\tthis.changedTiddlers = Object.create(null);\n\tthis.changeCount = Object.create(null);\n};\n\nexports.getChangeCount = function(title) {\n\tthis.changeCount = this.changeCount || Object.create(null);\n\tif($tw.utils.hop(this.changeCount,title)) {\n\t\treturn this.changeCount[title];\n\t} else {\n\t\treturn 0;\n\t}\n};\n\n/*\nGenerate an unused title from the specified base\n*/\nexports.generateNewTitle = function(baseTitle,options) {\n\toptions = options || {};\n\tvar c = 0,\n\t\ttitle = baseTitle;\n\twhile(this.tiddlerExists(title) || this.isShadowTiddler(title) || this.findDraft(title)) {\n\t\ttitle = baseTitle + \n\t\t\t(options.prefix || \" \") + \n\t\t\t(++c);\n\t}\n\treturn title;\n};\n\nexports.isSystemTiddler = function(title) {\n\treturn title && title.indexOf(\"$:/\") === 0;\n};\n\nexports.isTemporaryTiddler = function(title) {\n\treturn title && title.indexOf(\"$:/temp/\") === 0;\n};\n\nexports.isImageTiddler = function(title) {\n\tvar tiddler = this.getTiddler(title);\n\tif(tiddler) {\t\t\n\t\tvar contentTypeInfo = $tw.config.contentTypeInfo[tiddler.fields.type || \"text/vnd.tiddlywiki\"];\n\t\treturn !!contentTypeInfo && contentTypeInfo.flags.indexOf(\"image\") !== -1;\n\t} else {\n\t\treturn null;\n\t}\n};\n\n/*\nLike addTiddler() except it will silently reject any plugin tiddlers that are older than the currently loaded version. Returns true if the tiddler was imported\n*/\nexports.importTiddler = function(tiddler) {\n\tvar existingTiddler = this.getTiddler(tiddler.fields.title);\n\t// Check if we're dealing with a plugin\n\tif(tiddler && tiddler.hasField(\"plugin-type\") && tiddler.hasField(\"version\") && existingTiddler && existingTiddler.hasField(\"plugin-type\") && existingTiddler.hasField(\"version\")) {\n\t\t// Reject the incoming plugin if it is older\n\t\tif(!$tw.utils.checkVersions(tiddler.fields.version,existingTiddler.fields.version)) {\n\t\t\treturn false;\n\t\t}\n\t}\n\t// Fall through to adding the tiddler\n\tthis.addTiddler(tiddler);\n\treturn true;\n};\n\n/*\nReturn a hashmap of the fields that should be set when a tiddler is created\n*/\nexports.getCreationFields = function() {\n\tif(this.getTiddlerText(TIMESTAMP_DISABLE_TITLE,\"\").toLowerCase() !== \"yes\") {\n\t\tvar fields = {\n\t\t\t\tcreated: new Date()\n\t\t\t},\n\t\t\tcreator = this.getTiddlerText(USER_NAME_TITLE);\n\t\tif(creator) {\n\t\t\tfields.creator = creator;\n\t\t}\n\t\treturn fields;\n\t} else {\n\t\treturn {};\n\t}\n};\n\n/*\nReturn a hashmap of the fields that should be set when a tiddler is modified\n*/\nexports.getModificationFields = function() {\n\tif(this.getTiddlerText(TIMESTAMP_DISABLE_TITLE,\"\").toLowerCase() !== \"yes\") {\n\t\tvar fields = Object.create(null),\n\t\t\tmodifier = this.getTiddlerText(USER_NAME_TITLE);\n\t\tfields.modified = new Date();\n\t\tif(modifier) {\n\t\t\tfields.modifier = modifier;\n\t\t}\n\t\treturn fields;\n\t} else {\n\t\treturn {};\n\t}\n};\n\n/*\nReturn a sorted array of tiddler titles. Options include:\nsortField: field to sort by\nexcludeTag: tag to exclude\nincludeSystem: whether to include system tiddlers (defaults to false)\n*/\nexports.getTiddlers = function(options) {\n\toptions = options || Object.create(null);\n\tvar self = this,\n\t\tsortField = options.sortField || \"title\",\n\t\ttiddlers = [], t, titles = [];\n\tthis.each(function(tiddler,title) {\n\t\tif(options.includeSystem || !self.isSystemTiddler(title)) {\n\t\t\tif(!options.excludeTag || !tiddler.hasTag(options.excludeTag)) {\n\t\t\t\ttiddlers.push(tiddler);\n\t\t\t}\n\t\t}\n\t});\n\ttiddlers.sort(function(a,b) {\n\t\tvar aa = a.fields[sortField].toLowerCase() || \"\",\n\t\t\tbb = b.fields[sortField].toLowerCase() || \"\";\n\t\tif(aa < bb) {\n\t\t\treturn -1;\n\t\t} else {\n\t\t\tif(aa > bb) {\n\t\t\t\treturn 1;\n\t\t\t} else {\n\t\t\t\treturn 0;\n\t\t\t}\n\t\t}\n\t});\n\tfor(t=0; t<tiddlers.length; t++) {\n\t\ttitles.push(tiddlers[t].fields.title);\n\t}\n\treturn titles;\n};\n\nexports.countTiddlers = function(excludeTag) {\n\tvar tiddlers = this.getTiddlers({excludeTag: excludeTag});\n\treturn $tw.utils.count(tiddlers);\n};\n\n/*\nReturns a function iterator(callback) that iterates through the specified titles, and invokes the callback with callback(tiddler,title)\n*/\nexports.makeTiddlerIterator = function(titles) {\n\tvar self = this;\n\tif(!$tw.utils.isArray(titles)) {\n\t\ttitles = Object.keys(titles);\n\t} else {\n\t\ttitles = titles.slice(0);\n\t}\n\treturn function(callback) {\n\t\ttitles.forEach(function(title) {\n\t\t\tcallback(self.getTiddler(title),title);\n\t\t});\n\t};\n};\n\n/*\nSort an array of tiddler titles by a specified field\n\ttitles: array of titles (sorted in place)\n\tsortField: name of field to sort by\n\tisDescending: true if the sort should be descending\n\tisCaseSensitive: true if the sort should consider upper and lower case letters to be different\n*/\nexports.sortTiddlers = function(titles,sortField,isDescending,isCaseSensitive,isNumeric,isAlphaNumeric) {\n\tvar self = this;\n\ttitles.sort(function(a,b) {\n\t\tvar x,y,\n\t\t\tcompareNumbers = function(x,y) {\n\t\t\t\tvar result = \n\t\t\t\t\tisNaN(x) && !isNaN(y) ? (isDescending ? -1 : 1) :\n\t\t\t\t\t!isNaN(x) && isNaN(y) ? (isDescending ? 1 : -1) :\n\t\t\t\t\t\t\t\t\t\t\t(isDescending ? y - x : x - y);\n\t\t\t\treturn result;\n\t\t\t};\n\t\tif(sortField !== \"title\") {\n\t\t\tvar tiddlerA = self.getTiddler(a),\n\t\t\t\ttiddlerB = self.getTiddler(b);\n\t\t\tif(tiddlerA) {\n\t\t\t\ta = tiddlerA.fields[sortField] || \"\";\n\t\t\t} else {\n\t\t\t\ta = \"\";\n\t\t\t}\n\t\t\tif(tiddlerB) {\n\t\t\t\tb = tiddlerB.fields[sortField] || \"\";\n\t\t\t} else {\n\t\t\t\tb = \"\";\n\t\t\t}\n\t\t}\n\t\tx = Number(a);\n\t\ty = Number(b);\n\t\tif(isNumeric && (!isNaN(x) || !isNaN(y))) {\n\t\t\treturn compareNumbers(x,y);\n\t\t} else if(isAlphaNumeric) {\n\t\t\treturn isDescending ? b.localeCompare(a,undefined,{numeric: true,sensitivity: \"base\"}) : a.localeCompare(b,undefined,{numeric: true,sensitivity: \"base\"});\n\t\t} else if($tw.utils.isDate(a) && $tw.utils.isDate(b)) {\n\t\t\treturn isDescending ? b - a : a - b;\n\t\t} else {\n\t\t\ta = String(a);\n\t\t\tb = String(b);\n\t\t\tif(!isCaseSensitive) {\n\t\t\t\ta = a.toLowerCase();\n\t\t\t\tb = b.toLowerCase();\n\t\t\t}\n\t\t\treturn isDescending ? b.localeCompare(a) : a.localeCompare(b);\n\t\t}\n\t});\n};\n\n/*\nFor every tiddler invoke a callback(title,tiddler) with `this` set to the wiki object. Options include:\nsortField: field to sort by\nexcludeTag: tag to exclude\nincludeSystem: whether to include system tiddlers (defaults to false)\n*/\nexports.forEachTiddler = function(/* [options,]callback */) {\n\tvar arg = 0,\n\t\toptions = arguments.length >= 2 ? arguments[arg++] : {},\n\t\tcallback = arguments[arg++],\n\t\ttitles = this.getTiddlers(options),\n\t\tt, tiddler;\n\tfor(t=0; t<titles.length; t++) {\n\t\ttiddler = this.getTiddler(titles[t]);\n\t\tif(tiddler) {\n\t\t\tcallback.call(this,tiddler.fields.title,tiddler);\n\t\t}\n\t}\n};\n\n/*\nReturn an array of tiddler titles that are directly linked from the specified tiddler\n*/\nexports.getTiddlerLinks = function(title) {\n\tvar self = this;\n\t// We'll cache the links so they only get computed if the tiddler changes\n\treturn this.getCacheForTiddler(title,\"links\",function() {\n\t\t// Parse the tiddler\n\t\tvar parser = self.parseTiddler(title);\n\t\t// Count up the links\n\t\tvar links = [],\n\t\t\tcheckParseTree = function(parseTree) {\n\t\t\t\tfor(var t=0; t<parseTree.length; t++) {\n\t\t\t\t\tvar parseTreeNode = parseTree[t];\n\t\t\t\t\tif(parseTreeNode.type === \"link\" && parseTreeNode.attributes.to && parseTreeNode.attributes.to.type === \"string\") {\n\t\t\t\t\t\tvar value = parseTreeNode.attributes.to.value;\n\t\t\t\t\t\tif(links.indexOf(value) === -1) {\n\t\t\t\t\t\t\tlinks.push(value);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif(parseTreeNode.children) {\n\t\t\t\t\t\tcheckParseTree(parseTreeNode.children);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t};\n\t\tif(parser) {\n\t\t\tcheckParseTree(parser.tree);\n\t\t}\n\t\treturn links;\n\t});\n};\n\n/*\nReturn an array of tiddler titles that link to the specified tiddler\n*/\nexports.getTiddlerBacklinks = function(targetTitle) {\n\tvar self = this,\n\t\tbacklinks = [];\n\tthis.forEachTiddler(function(title,tiddler) {\n\t\tvar links = self.getTiddlerLinks(title);\n\t\tif(links.indexOf(targetTitle) !== -1) {\n\t\t\tbacklinks.push(title);\n\t\t}\n\t});\n\treturn backlinks;\n};\n\n/*\nReturn a hashmap of tiddler titles that are referenced but not defined. Each value is the number of times the missing tiddler is referenced\n*/\nexports.getMissingTitles = function() {\n\tvar self = this,\n\t\tmissing = [];\n// We should cache the missing tiddler list, even if we recreate it every time any tiddler is modified\n\tthis.forEachTiddler(function(title,tiddler) {\n\t\tvar links = self.getTiddlerLinks(title);\n\t\t$tw.utils.each(links,function(link) {\n\t\t\tif((!self.tiddlerExists(link) && !self.isShadowTiddler(link)) && missing.indexOf(link) === -1) {\n\t\t\t\tmissing.push(link);\n\t\t\t}\n\t\t});\n\t});\n\treturn missing;\n};\n\nexports.getOrphanTitles = function() {\n\tvar self = this,\n\t\torphans = this.getTiddlers();\n\tthis.forEachTiddler(function(title,tiddler) {\n\t\tvar links = self.getTiddlerLinks(title);\n\t\t$tw.utils.each(links,function(link) {\n\t\t\tvar p = orphans.indexOf(link);\n\t\t\tif(p !== -1) {\n\t\t\t\torphans.splice(p,1);\n\t\t\t}\n\t\t});\n\t});\n\treturn orphans; // Todo\n};\n\n/*\nRetrieves a list of the tiddler titles that are tagged with a given tag\n*/\nexports.getTiddlersWithTag = function(tag) {\n\t// Try to use the indexer\n\tvar self = this,\n\t\ttagIndexer = this.getIndexer(\"TagIndexer\"),\n\t\tresults = tagIndexer && tagIndexer.subIndexers[3].lookup(tag);\n\tif(!results) {\n\t\t// If not available, perform a manual scan\n\t\tresults = this.getGlobalCache(\"taglist-\" + tag,function() {\n\t\t\tvar tagmap = self.getTagMap();\n\t\t\treturn self.sortByList(tagmap[tag],tag);\n\t\t});\n\t}\n\treturn results;\n};\n\n/*\nGet a hashmap by tag of arrays of tiddler titles\n*/\nexports.getTagMap = function() {\n\tvar self = this;\n\treturn this.getGlobalCache(\"tagmap\",function() {\n\t\tvar tags = Object.create(null),\n\t\t\tstoreTags = function(tagArray,title) {\n\t\t\t\tif(tagArray) {\n\t\t\t\t\tfor(var index=0; index<tagArray.length; index++) {\n\t\t\t\t\t\tvar tag = tagArray[index];\n\t\t\t\t\t\tif($tw.utils.hop(tags,tag)) {\n\t\t\t\t\t\t\ttags[tag].push(title);\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\ttags[tag] = [title];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\ttitle, tiddler;\n\t\t// Collect up all the tags\n\t\tself.eachShadow(function(tiddler,title) {\n\t\t\tif(!self.tiddlerExists(title)) {\n\t\t\t\ttiddler = self.getTiddler(title);\n\t\t\t\tstoreTags(tiddler.fields.tags,title);\n\t\t\t}\n\t\t});\n\t\tself.each(function(tiddler,title) {\n\t\t\tstoreTags(tiddler.fields.tags,title);\n\t\t});\n\t\treturn tags;\n\t});\n};\n\n/*\nLookup a given tiddler and return a list of all the tiddlers that include it in the specified list field\n*/\nexports.findListingsOfTiddler = function(targetTitle,fieldName) {\n\tfieldName = fieldName || \"list\";\n\tvar titles = [];\n\tthis.each(function(tiddler,title) {\n\t\tvar list = $tw.utils.parseStringArray(tiddler.fields[fieldName]);\n\t\tif(list && list.indexOf(targetTitle) !== -1) {\n\t\t\ttitles.push(title);\n\t\t}\n\t});\n\treturn titles;\n};\n\n/*\nSorts an array of tiddler titles according to an ordered list\n*/\nexports.sortByList = function(array,listTitle) {\n\tvar self = this,\n\t\treplacedTitles = Object.create(null);\n\tfunction replaceItem(title) {\n\t\tif(!$tw.utils.hop(replacedTitles, title)) {\n\t\t\treplacedTitles[title] = true;\n\t\t\tvar newPos = -1,\n\t\t\t\ttiddler = self.getTiddler(title);\n\t\t\tif(tiddler) {\n\t\t\t\tvar beforeTitle = tiddler.fields[\"list-before\"],\n\t\t\t\t\tafterTitle = tiddler.fields[\"list-after\"];\n\t\t\t\tif(beforeTitle === \"\") {\n\t\t\t\t\tnewPos = 0;\n\t\t\t\t} else if(afterTitle === \"\") {\n\t\t\t\t\tnewPos = titles.length;\n\t\t\t\t} else if(beforeTitle) {\n\t\t\t\t\treplaceItem(beforeTitle);\n\t\t\t\t\tnewPos = titles.indexOf(beforeTitle);\n\t\t\t\t} else if(afterTitle) {\n\t\t\t\t\treplaceItem(afterTitle);\n\t\t\t\t\tnewPos = titles.indexOf(afterTitle);\n\t\t\t\t\tif(newPos >= 0) {\n\t\t\t\t\t\t++newPos;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t// We get the currPos //after// figuring out the newPos, because recursive replaceItem calls might alter title's currPos\n\t\t\t\tvar currPos = titles.indexOf(title);\n\t\t\t\tif(newPos === -1) {\n\t\t\t\t\tnewPos = currPos;\n\t\t\t\t}\n\t\t\t\tif(currPos >= 0 && newPos !== currPos) {\n\t\t\t\t\ttitles.splice(currPos,1);\n\t\t\t\t\tif(newPos >= currPos) {\n\t\t\t\t\t\tnewPos--;\n\t\t\t\t\t}\n\t\t\t\t\ttitles.splice(newPos,0,title);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\tvar list = this.getTiddlerList(listTitle);\n\tif(!array || array.length === 0) {\n\t\treturn [];\n\t} else {\n\t\tvar titles = [], t, title;\n\t\t// First place any entries that are present in the list\n\t\tfor(t=0; t<list.length; t++) {\n\t\t\ttitle = list[t];\n\t\t\tif(array.indexOf(title) !== -1) {\n\t\t\t\ttitles.push(title);\n\t\t\t}\n\t\t}\n\t\t// Then place any remaining entries\n\t\tfor(t=0; t<array.length; t++) {\n\t\t\ttitle = array[t];\n\t\t\tif(list.indexOf(title) === -1) {\n\t\t\t\ttitles.push(title);\n\t\t\t}\n\t\t}\n\t\t// Finally obey the list-before and list-after fields of each tiddler in turn\n\t\tvar sortedTitles = titles.slice(0);\n\t\tfor(t=0; t<sortedTitles.length; t++) {\n\t\t\ttitle = sortedTitles[t];\n\t\t\treplaceItem(title);\n\t\t}\n\t\treturn titles;\n\t}\n};\n\nexports.getSubTiddler = function(title,subTiddlerTitle) {\n\tvar bundleInfo = this.getPluginInfo(title) || this.getTiddlerDataCached(title);\n\tif(bundleInfo && bundleInfo.tiddlers) {\n\t\tvar subTiddler = bundleInfo.tiddlers[subTiddlerTitle];\n\t\tif(subTiddler) {\n\t\t\treturn new $tw.Tiddler(subTiddler);\n\t\t}\n\t}\n\treturn null;\n};\n\n/*\nRetrieve a tiddler as a JSON string of the fields\n*/\nexports.getTiddlerAsJson = function(title) {\n\tvar tiddler = this.getTiddler(title);\n\tif(tiddler) {\n\t\tvar fields = Object.create(null);\n\t\t$tw.utils.each(tiddler.fields,function(value,name) {\n\t\t\tfields[name] = tiddler.getFieldString(name);\n\t\t});\n\t\treturn JSON.stringify(fields);\n\t} else {\n\t\treturn JSON.stringify({title: title});\n\t}\n};\n\nexports.getTiddlersAsJson = function(filter) {\n\tvar tiddlers = this.filterTiddlers(filter),\n\t\tdata = [];\n\tfor(var t=0;t<tiddlers.length; t++) {\n\t\tvar tiddler = this.getTiddler(tiddlers[t]);\n\t\tif(tiddler) {\n\t\t\tvar fields = new Object();\n\t\t\tfor(var field in tiddler.fields) {\n\t\t\t\tfields[field] = tiddler.getFieldString(field);\n\t\t\t}\n\t\t\tdata.push(fields);\n\t\t}\n\t}\n\treturn JSON.stringify(data,null,$tw.config.preferences.jsonSpaces);\n};\n\n/*\nGet the content of a tiddler as a JavaScript object. How this is done depends on the type of the tiddler:\n\napplication/json: the tiddler JSON is parsed into an object\napplication/x-tiddler-dictionary: the tiddler is parsed as sequence of name:value pairs\n\nOther types currently just return null.\n\ntitleOrTiddler: string tiddler title or a tiddler object\ndefaultData: default data to be returned if the tiddler is missing or doesn't contain data\n\nNote that the same value is returned for repeated calls for the same tiddler data. The value is frozen to prevent modification; otherwise modifications would be visible to all callers\n*/\nexports.getTiddlerDataCached = function(titleOrTiddler,defaultData) {\n\tvar self = this,\n\t\ttiddler = titleOrTiddler;\n\tif(!(tiddler instanceof $tw.Tiddler)) {\n\t\ttiddler = this.getTiddler(tiddler);\t\n\t}\n\tif(tiddler) {\n\t\treturn this.getCacheForTiddler(tiddler.fields.title,\"data\",function() {\n\t\t\t// Return the frozen value\n\t\t\tvar value = self.getTiddlerData(tiddler.fields.title,undefined);\n\t\t\t$tw.utils.deepFreeze(value);\n\t\t\treturn value;\n\t\t}) || defaultData;\n\t} else {\n\t\treturn defaultData;\n\t}\n};\n\n/*\nAlternative, uncached version of getTiddlerDataCached(). The return value can be mutated freely and reused\n*/\nexports.getTiddlerData = function(titleOrTiddler,defaultData) {\n\tvar tiddler = titleOrTiddler,\n\t\tdata;\n\tif(!(tiddler instanceof $tw.Tiddler)) {\n\t\ttiddler = this.getTiddler(tiddler);\t\n\t}\n\tif(tiddler && tiddler.fields.text) {\n\t\tswitch(tiddler.fields.type) {\n\t\t\tcase \"application/json\":\n\t\t\t\t// JSON tiddler\n\t\t\t\ttry {\n\t\t\t\t\tdata = JSON.parse(tiddler.fields.text);\n\t\t\t\t} catch(ex) {\n\t\t\t\t\treturn defaultData;\n\t\t\t\t}\n\t\t\t\treturn data;\n\t\t\tcase \"application/x-tiddler-dictionary\":\n\t\t\t\treturn $tw.utils.parseFields(tiddler.fields.text);\n\t\t}\n\t}\n\treturn defaultData;\n};\n\n/*\nExtract an indexed field from within a data tiddler\n*/\nexports.extractTiddlerDataItem = function(titleOrTiddler,index,defaultText) {\n\tvar data = this.getTiddlerDataCached(titleOrTiddler,Object.create(null)),\n\t\ttext;\n\tif(data && $tw.utils.hop(data,index)) {\n\t\ttext = data[index];\n\t}\n\tif(typeof text === \"string\" || typeof text === \"number\") {\n\t\treturn text.toString();\n\t} else {\n\t\treturn defaultText;\n\t}\n};\n\n/*\nSet a tiddlers content to a JavaScript object. Currently this is done by setting the tiddler's type to \"application/json\" and setting the text to the JSON text of the data.\ntitle: title of tiddler\ndata: object that can be serialised to JSON\nfields: optional hashmap of additional tiddler fields to be set\n*/\nexports.setTiddlerData = function(title,data,fields) {\n\tvar existingTiddler = this.getTiddler(title),\n\t\tnewFields = {\n\t\t\ttitle: title\n\t};\n\tif(existingTiddler && existingTiddler.fields.type === \"application/x-tiddler-dictionary\") {\n\t\tnewFields.text = $tw.utils.makeTiddlerDictionary(data);\n\t} else {\n\t\tnewFields.type = \"application/json\";\n\t\tnewFields.text = JSON.stringify(data,null,$tw.config.preferences.jsonSpaces);\n\t}\n\tthis.addTiddler(new $tw.Tiddler(this.getCreationFields(),existingTiddler,fields,newFields,this.getModificationFields()));\n};\n\n/*\nReturn the content of a tiddler as an array containing each line\n*/\nexports.getTiddlerList = function(title,field,index) {\n\tif(index) {\n\t\treturn $tw.utils.parseStringArray(this.extractTiddlerDataItem(title,index,\"\"));\n\t}\n\tfield = field || \"list\";\n\tvar tiddler = this.getTiddler(title);\n\tif(tiddler) {\n\t\treturn ($tw.utils.parseStringArray(tiddler.fields[field]) || []).slice(0);\n\t}\n\treturn [];\n};\n\n// Return a named global cache object. Global cache objects are cleared whenever a tiddler change occurs\nexports.getGlobalCache = function(cacheName,initializer) {\n\tthis.globalCache = this.globalCache || Object.create(null);\n\tif($tw.utils.hop(this.globalCache,cacheName)) {\n\t\treturn this.globalCache[cacheName];\n\t} else {\n\t\tthis.globalCache[cacheName] = initializer();\n\t\treturn this.globalCache[cacheName];\n\t}\n};\n\nexports.clearGlobalCache = function() {\n\tthis.globalCache = Object.create(null);\n};\n\n// Return the named cache object for a tiddler. If the cache doesn't exist then the initializer function is invoked to create it\nexports.getCacheForTiddler = function(title,cacheName,initializer) {\n\tthis.caches = this.caches || Object.create(null);\n\tvar caches = this.caches[title];\n\tif(caches && caches[cacheName]) {\n\t\treturn caches[cacheName];\n\t} else {\n\t\tif(!caches) {\n\t\t\tcaches = Object.create(null);\n\t\t\tthis.caches[title] = caches;\n\t\t}\n\t\tcaches[cacheName] = initializer();\n\t\treturn caches[cacheName];\n\t}\n};\n\n// Clear all caches associated with a particular tiddler, or, if the title is null, clear all the caches for all the tiddlers\nexports.clearCache = function(title) {\n\tif(title) {\n\t\tthis.caches = this.caches || Object.create(null);\n\t\tif($tw.utils.hop(this.caches,title)) {\n\t\t\tdelete this.caches[title];\n\t\t}\n\t} else {\n\t\tthis.caches = Object.create(null);\n\t}\n};\n\nexports.initParsers = function(moduleType) {\n\t// Install the parser modules\n\t$tw.Wiki.parsers = {};\n\tvar self = this;\n\t$tw.modules.forEachModuleOfType(\"parser\",function(title,module) {\n\t\tfor(var f in module) {\n\t\t\tif($tw.utils.hop(module,f)) {\n\t\t\t\t$tw.Wiki.parsers[f] = module[f]; // Store the parser class\n\t\t\t}\n\t\t}\n\t});\n\t// Use the generic binary parser for any binary types not registered so far\n\tif($tw.Wiki.parsers[\"application/octet-stream\"]) {\n\t\tObject.keys($tw.config.contentTypeInfo).forEach(function(type) {\n\t\t\tif(!$tw.utils.hop($tw.Wiki.parsers,type) && $tw.config.contentTypeInfo[type].encoding === \"base64\") {\n\t\t\t\t$tw.Wiki.parsers[type] = $tw.Wiki.parsers[\"application/octet-stream\"];\n\t\t\t}\n\t\t});\t\t\n\t}\n};\n\n/*\nParse a block of text of a specified MIME type\n\ttype: content type of text to be parsed\n\ttext: text\n\toptions: see below\nOptions include:\n\tparseAsInline: if true, the text of the tiddler will be parsed as an inline run\n\t_canonical_uri: optional string of the canonical URI of this content\n*/\nexports.parseText = function(type,text,options) {\n\ttext = text || \"\";\n\toptions = options || {};\n\t// Select a parser\n\tvar Parser = $tw.Wiki.parsers[type];\n\tif(!Parser && $tw.utils.getFileExtensionInfo(type)) {\n\t\tParser = $tw.Wiki.parsers[$tw.utils.getFileExtensionInfo(type).type];\n\t}\n\tif(!Parser) {\n\t\tParser = $tw.Wiki.parsers[options.defaultType || \"text/vnd.tiddlywiki\"];\n\t}\n\tif(!Parser) {\n\t\treturn null;\n\t}\n\t// Return the parser instance\n\treturn new Parser(type,text,{\n\t\tparseAsInline: options.parseAsInline,\n\t\twiki: this,\n\t\t_canonical_uri: options._canonical_uri\n\t});\n};\n\n/*\nParse a tiddler according to its MIME type\n*/\nexports.parseTiddler = function(title,options) {\n\toptions = $tw.utils.extend({},options);\n\tvar cacheType = options.parseAsInline ? \"inlineParseTree\" : \"blockParseTree\",\n\t\ttiddler = this.getTiddler(title),\n\t\tself = this;\n\treturn tiddler ? this.getCacheForTiddler(title,cacheType,function() {\n\t\t\tif(tiddler.hasField(\"_canonical_uri\")) {\n\t\t\t\toptions._canonical_uri = tiddler.fields._canonical_uri;\n\t\t\t}\n\t\t\treturn self.parseText(tiddler.fields.type,tiddler.fields.text,options);\n\t\t}) : null;\n};\n\nexports.parseTextReference = function(title,field,index,options) {\n\tvar tiddler,text;\n\tif(options.subTiddler) {\n\t\ttiddler = this.getSubTiddler(title,options.subTiddler);\n\t} else {\n\t\ttiddler = this.getTiddler(title);\n\t\tif(field === \"text\" || (!field && !index)) {\n\t\t\tthis.getTiddlerText(title); // Force the tiddler to be lazily loaded\n\t\t\treturn this.parseTiddler(title,options);\n\t\t}\n\t}\n\tif(field === \"text\" || (!field && !index)) {\n\t\tif(tiddler && tiddler.fields) {\n\t\t\treturn this.parseText(tiddler.fields.type,tiddler.fields.text,options);\t\t\t\n\t\t} else {\n\t\t\treturn null;\n\t\t}\n\t} else if(field) {\n\t\tif(field === \"title\") {\n\t\t\ttext = title;\n\t\t} else {\n\t\t\tif(!tiddler || !tiddler.hasField(field)) {\n\t\t\t\treturn null;\n\t\t\t}\n\t\t\ttext = tiddler.fields[field];\n\t\t}\n\t\treturn this.parseText(\"text/vnd.tiddlywiki\",text.toString(),options);\n\t} else if(index) {\n\t\tthis.getTiddlerText(title); // Force the tiddler to be lazily loaded\n\t\ttext = this.extractTiddlerDataItem(tiddler,index,undefined);\n\t\tif(text === undefined) {\n\t\t\treturn null;\n\t\t}\n\t\treturn this.parseText(\"text/vnd.tiddlywiki\",text,options);\n\t}\n};\n\n/*\nMake a widget tree for a parse tree\nparser: parser object\noptions: see below\nOptions include:\ndocument: optional document to use\nvariables: hashmap of variables to set\nparentWidget: optional parent widget for the root node\n*/\nexports.makeWidget = function(parser,options) {\n\toptions = options || {};\n\tvar widgetNode = {\n\t\t\ttype: \"widget\",\n\t\t\tchildren: []\n\t\t},\n\t\tcurrWidgetNode = widgetNode;\n\t// Create set variable widgets for each variable\n\t$tw.utils.each(options.variables,function(value,name) {\n\t\tvar setVariableWidget = {\n\t\t\ttype: \"set\",\n\t\t\tattributes: {\n\t\t\t\tname: {type: \"string\", value: name},\n\t\t\t\tvalue: {type: \"string\", value: value}\n\t\t\t},\n\t\t\tchildren: []\n\t\t};\n\t\tcurrWidgetNode.children = [setVariableWidget];\n\t\tcurrWidgetNode = setVariableWidget;\n\t});\n\t// Add in the supplied parse tree nodes\n\tcurrWidgetNode.children = parser ? parser.tree : [];\n\t// Create the widget\n\treturn new widget.widget(widgetNode,{\n\t\twiki: this,\n\t\tdocument: options.document || $tw.fakeDocument,\n\t\tparentWidget: options.parentWidget\n\t});\n};\n\n/*\nMake a widget tree for transclusion\ntitle: target tiddler title\noptions: as for wiki.makeWidget() plus:\noptions.field: optional field to transclude (defaults to \"text\")\noptions.mode: transclusion mode \"inline\" or \"block\"\noptions.children: optional array of children for the transclude widget\noptions.importVariables: optional importvariables filter string for macros to be included\noptions.importPageMacros: optional boolean; if true, equivalent to passing \"[[$:/core/ui/PageMacros]] [all[shadows+tiddlers]tag[$:/tags/Macro]!has[draft.of]]\" to options.importVariables\n*/\nexports.makeTranscludeWidget = function(title,options) {\n\toptions = options || {};\n\tvar parseTreeDiv = {tree: [{\n\t\t\ttype: \"element\",\n\t\t\ttag: \"div\",\n\t\t\tchildren: []}]},\n\t\tparseTreeImportVariables = {\n\t\t\ttype: \"importvariables\",\n\t\t\tattributes: {\n\t\t\t\tfilter: {\n\t\t\t\t\tname: \"filter\",\n\t\t\t\t\ttype: \"string\"\n\t\t\t\t}\n\t\t\t},\n\t\t\tisBlock: false,\n\t\t\tchildren: []},\n\t\tparseTreeTransclude = {\n\t\t\ttype: \"transclude\",\n\t\t\tattributes: {\n\t\t\t\ttiddler: {\n\t\t\t\t\tname: \"tiddler\",\n\t\t\t\t\ttype: \"string\",\n\t\t\t\t\tvalue: title}},\n\t\t\tisBlock: !options.parseAsInline};\n\tif(options.importVariables || options.importPageMacros) {\n\t\tif(options.importVariables) {\n\t\t\tparseTreeImportVariables.attributes.filter.value = options.importVariables;\n\t\t} else if(options.importPageMacros) {\n\t\t\tparseTreeImportVariables.attributes.filter.value = \"[[$:/core/ui/PageMacros]] [all[shadows+tiddlers]tag[$:/tags/Macro]!has[draft.of]]\";\n\t\t}\n\t\tparseTreeDiv.tree[0].children.push(parseTreeImportVariables);\n\t\tparseTreeImportVariables.children.push(parseTreeTransclude);\n\t} else {\n\t\tparseTreeDiv.tree[0].children.push(parseTreeTransclude);\n\t}\n\tif(options.field) {\n\t\tparseTreeTransclude.attributes.field = {type: \"string\", value: options.field};\n\t}\n\tif(options.mode) {\n\t\tparseTreeTransclude.attributes.mode = {type: \"string\", value: options.mode};\n\t}\n\tif(options.children) {\n\t\tparseTreeTransclude.children = options.children;\n\t}\n\treturn $tw.wiki.makeWidget(parseTreeDiv,options);\n};\n\n/*\nParse text in a specified format and render it into another format\n\toutputType: content type for the output\n\ttextType: content type of the input text\n\ttext: input text\n\toptions: see below\nOptions include:\nvariables: hashmap of variables to set\nparentWidget: optional parent widget for the root node\n*/\nexports.renderText = function(outputType,textType,text,options) {\n\toptions = options || {};\n\tvar parser = this.parseText(textType,text,options),\n\t\twidgetNode = this.makeWidget(parser,options);\n\tvar container = $tw.fakeDocument.createElement(\"div\");\n\twidgetNode.render(container,null);\n\treturn outputType === \"text/html\" ? container.innerHTML : container.textContent;\n};\n\n/*\nParse text from a tiddler and render it into another format\n\toutputType: content type for the output\n\ttitle: title of the tiddler to be rendered\n\toptions: see below\nOptions include:\nvariables: hashmap of variables to set\nparentWidget: optional parent widget for the root node\n*/\nexports.renderTiddler = function(outputType,title,options) {\n\toptions = options || {};\n\tvar parser = this.parseTiddler(title,options),\n\t\twidgetNode = this.makeWidget(parser,options);\n\tvar container = $tw.fakeDocument.createElement(\"div\");\n\twidgetNode.render(container,null);\n\treturn outputType === \"text/html\" ? container.innerHTML : (outputType === \"text/plain-formatted\" ? container.formattedTextContent : container.textContent);\n};\n\n/*\nReturn an array of tiddler titles that match a search string\n\ttext: The text string to search for\n\toptions: see below\nOptions available:\n\tsource: an iterator function for the source tiddlers, called source(iterator), where iterator is called as iterator(tiddler,title)\n\texclude: An array of tiddler titles to exclude from the search\n\tinvert: If true returns tiddlers that do not contain the specified string\n\tcaseSensitive: If true forces a case sensitive search\n\tfield: If specified, restricts the search to the specified field, or an array of field names\n\tanchored: If true, forces all but regexp searches to be anchored to the start of text\n\texcludeField: If true, the field options are inverted to specify the fields that are not to be searched\n\tThe search mode is determined by the first of these boolean flags to be true\n\t\tliteral: searches for literal string\n\t\twhitespace: same as literal except runs of whitespace are treated as a single space\n\t\tregexp: treats the search term as a regular expression\n\t\twords: (default) treats search string as a list of tokens, and matches if all tokens are found, regardless of adjacency or ordering\n*/\nexports.search = function(text,options) {\n\toptions = options || {};\n\tvar self = this,\n\t\tt,\n\t\tinvert = !!options.invert;\n\t// Convert the search string into a regexp for each term\n\tvar terms, searchTermsRegExps,\n\t\tflags = options.caseSensitive ? \"\" : \"i\",\n\t\tanchor = options.anchored ? \"^\" : \"\";\n\tif(options.literal) {\n\t\tif(text.length === 0) {\n\t\t\tsearchTermsRegExps = null;\n\t\t} else {\n\t\t\tsearchTermsRegExps = [new RegExp(\"(\" + anchor + $tw.utils.escapeRegExp(text) + \")\",flags)];\n\t\t}\n\t} else if(options.whitespace) {\n\t\tterms = [];\n\t\t$tw.utils.each(text.split(/\\s+/g),function(term) {\n\t\t\tif(term) {\n\t\t\t\tterms.push($tw.utils.escapeRegExp(term));\n\t\t\t}\n\t\t});\n\t\tsearchTermsRegExps = [new RegExp(\"(\" + anchor + terms.join(\"\\\\s+\") + \")\",flags)];\n\t} else if(options.regexp) {\n\t\ttry {\n\t\t\tsearchTermsRegExps = [new RegExp(\"(\" + text + \")\",flags)];\t\t\t\n\t\t} catch(e) {\n\t\t\tsearchTermsRegExps = null;\n\t\t\tconsole.log(\"Regexp error parsing /(\" + text + \")/\" + flags + \": \",e);\n\t\t}\n\t} else {\n\t\tterms = text.split(/ +/);\n\t\tif(terms.length === 1 && terms[0] === \"\") {\n\t\t\tsearchTermsRegExps = null;\n\t\t} else {\n\t\t\tsearchTermsRegExps = [];\n\t\t\tfor(t=0; t<terms.length; t++) {\n\t\t\t\tsearchTermsRegExps.push(new RegExp(\"(\" + anchor + $tw.utils.escapeRegExp(terms[t]) + \")\",flags));\n\t\t\t}\n\t\t}\n\t}\n\t// Accumulate the array of fields to be searched or excluded from the search\n\tvar fields = [];\n\tif(options.field) {\n\t\tif($tw.utils.isArray(options.field)) {\n\t\t\t$tw.utils.each(options.field,function(fieldName) {\n\t\t\t\tif(fieldName) {\n\t\t\t\t\tfields.push(fieldName);\t\t\t\t\t\n\t\t\t\t}\n\t\t\t});\n\t\t} else {\n\t\t\tfields.push(options.field);\n\t\t}\n\t}\n\t// Use default fields if none specified and we're not excluding fields (excluding fields with an empty field array is the same as searching all fields)\n\tif(fields.length === 0 && !options.excludeField) {\n\t\tfields.push(\"title\");\n\t\tfields.push(\"tags\");\n\t\tfields.push(\"text\");\n\t}\n\t// Function to check a given tiddler for the search term\n\tvar searchTiddler = function(title) {\n\t\tif(!searchTermsRegExps) {\n\t\t\treturn true;\n\t\t}\n\t\tvar notYetFound = searchTermsRegExps.slice();\n\n\t\tvar tiddler = self.getTiddler(title);\n\t\tif(!tiddler) {\n\t\t\ttiddler = new $tw.Tiddler({title: title, text: \"\", type: \"text/vnd.tiddlywiki\"});\n\t\t}\n\t\tvar contentTypeInfo = $tw.config.contentTypeInfo[tiddler.fields.type] || $tw.config.contentTypeInfo[\"text/vnd.tiddlywiki\"],\n\t\t\tsearchFields;\n\t\t// Get the list of fields we're searching\n\t\tif(options.excludeField) {\n\t\t\tsearchFields = Object.keys(tiddler.fields);\n\t\t\t$tw.utils.each(fields,function(fieldName) {\n\t\t\t\tvar p = searchFields.indexOf(fieldName);\n\t\t\t\tif(p !== -1) {\n\t\t\t\t\tsearchFields.splice(p,1);\n\t\t\t\t}\n\t\t\t});\n\t\t} else {\n\t\t\tsearchFields = fields;\n\t\t}\n\t\tfor(var fieldIndex=0; notYetFound.length>0 && fieldIndex<searchFields.length; fieldIndex++) {\n\t\t\t// Don't search the text field if the content type is binary\n\t\t\tvar fieldName = searchFields[fieldIndex];\n\t\t\tif(fieldName === \"text\" && contentTypeInfo.encoding !== \"utf8\") {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tvar str = tiddler.fields[fieldName],\n\t\t\t\tt;\n\t\t\tif(str) {\n\t\t\t\tif($tw.utils.isArray(str)) {\n\t\t\t\t\t// If the field value is an array, test each regexp against each field array entry and fail if each regexp doesn't match at least one field array entry\n\t\t\t\t\tfor(var s=0; s<str.length; s++) {\n\t\t\t\t\t\tfor(t=0; t<notYetFound.length;) {\n\t\t\t\t\t\t\tif(notYetFound[t].test(str[s])) {\n\t\t\t\t\t\t\t\tnotYetFound.splice(t, 1);\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tt++;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\t// If the field isn't an array, force it to a string and test each regexp against it and fail if any do not match\n\t\t\t\t\tstr = tiddler.getFieldString(fieldName);\n\t\t\t\t\tfor(t=0; t<notYetFound.length;) {\n\t\t\t\t\t\tif(notYetFound[t].test(str)) {\n\t\t\t\t\t\t\tnotYetFound.splice(t, 1);\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tt++;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t\treturn notYetFound.length == 0;\n\t};\n\t// Loop through all the tiddlers doing the search\n\tvar results = [],\n\t\tsource = options.source || this.each;\n\tsource(function(tiddler,title) {\n\t\tif(searchTiddler(title) !== options.invert) {\n\t\t\tresults.push(title);\n\t\t}\n\t});\n\t// Remove any of the results we have to exclude\n\tif(options.exclude) {\n\t\tfor(t=0; t<options.exclude.length; t++) {\n\t\t\tvar p = results.indexOf(options.exclude[t]);\n\t\t\tif(p !== -1) {\n\t\t\t\tresults.splice(p,1);\n\t\t\t}\n\t\t}\n\t}\n\treturn results;\n};\n\n/*\nTrigger a load for a tiddler if it is skinny. Returns the text, or undefined if the tiddler is missing, null if the tiddler is being lazily loaded.\n*/\nexports.getTiddlerText = function(title,defaultText) {\n\tvar tiddler = this.getTiddler(title);\n\t// Return undefined if the tiddler isn't found\n\tif(!tiddler) {\n\t\treturn defaultText;\n\t}\n\tif(tiddler.fields.text !== undefined) {\n\t\t// Just return the text if we've got it\n\t\treturn tiddler.fields.text;\n\t} else {\n\t\t// Tell any listeners about the need to lazily load this tiddler\n\t\tthis.dispatchEvent(\"lazyLoad\",title);\n\t\t// Indicate that the text is being loaded\n\t\treturn null;\n\t}\n};\n\n/*\nCheck whether the text of a tiddler matches a given value. By default, the comparison is case insensitive, and any spaces at either end of the tiddler text is trimmed\n*/\nexports.checkTiddlerText = function(title,targetText,options) {\n\toptions = options || {};\n\tvar text = this.getTiddlerText(title,\"\");\n\tif(!options.noTrim) {\n\t\ttext = text.trim();\n\t}\n\tif(!options.caseSensitive) {\n\t\ttext = text.toLowerCase();\n\t\ttargetText = targetText.toLowerCase();\n\t}\n\treturn text === targetText;\n}\n\n/*\nRead an array of browser File objects, invoking callback(tiddlerFieldsArray) once they're all read\n*/\nexports.readFiles = function(files,options) {\n\tvar callback;\n\tif(typeof options === \"function\") {\n\t\tcallback = options;\n\t\toptions = {};\n\t} else {\n\t\tcallback = options.callback;\n\t}\n\tvar result = [],\n\t\toutstanding = files.length,\n\t\treadFileCallback = function(tiddlerFieldsArray) {\n\t\t\tresult.push.apply(result,tiddlerFieldsArray);\n\t\t\tif(--outstanding === 0) {\n\t\t\t\tcallback(result);\n\t\t\t}\n\t\t};\n\tfor(var f=0; f<files.length; f++) {\n\t\tthis.readFile(files[f],$tw.utils.extend({},options,{callback: readFileCallback}));\n\t}\n\treturn files.length;\n};\n\n/*\nRead a browser File object, invoking callback(tiddlerFieldsArray) with an array of tiddler fields objects\n*/\nexports.readFile = function(file,options) {\n\tvar callback;\n\tif(typeof options === \"function\") {\n\t\tcallback = options;\n\t\toptions = {};\n\t} else {\n\t\tcallback = options.callback;\n\t}\n\t// Get the type, falling back to the filename extension\n\tvar self = this,\n\t\ttype = file.type;\n\tif(type === \"\" || !type) {\n\t\tvar dotPos = file.name.lastIndexOf(\".\");\n\t\tif(dotPos !== -1) {\n\t\t\tvar fileExtensionInfo = $tw.utils.getFileExtensionInfo(file.name.substr(dotPos));\n\t\t\tif(fileExtensionInfo) {\n\t\t\t\ttype = fileExtensionInfo.type;\n\t\t\t}\n\t\t}\n\t}\n\t// Figure out if we're reading a binary file\n\tvar contentTypeInfo = $tw.config.contentTypeInfo[type],\n\t\tisBinary = contentTypeInfo ? contentTypeInfo.encoding === \"base64\" : false;\n\t// Log some debugging information\n\tif($tw.log.IMPORT) {\n\t\tconsole.log(\"Importing file '\" + file.name + \"', type: '\" + type + \"', isBinary: \" + isBinary);\n\t}\n\t// Give the hook a chance to process the drag\n\tif($tw.hooks.invokeHook(\"th-importing-file\",{\n\t\tfile: file,\n\t\ttype: type,\n\t\tisBinary: isBinary,\n\t\tcallback: callback\n\t}) !== true) {\n\t\tthis.readFileContent(file,type,isBinary,options.deserializer,callback);\n\t}\n};\n\n/*\nLower level utility to read the content of a browser File object, invoking callback(tiddlerFieldsArray) with an array of tiddler fields objects\n*/\nexports.readFileContent = function(file,type,isBinary,deserializer,callback) {\n\tvar self = this;\n\t// Create the FileReader\n\tvar reader = new FileReader();\n\t// Onload\n\treader.onload = function(event) {\n\t\tvar text = event.target.result,\n\t\t\ttiddlerFields = {title: file.name || \"Untitled\", type: type};\n\t\tif(isBinary) {\n\t\t\tvar commaPos = text.indexOf(\",\");\n\t\t\tif(commaPos !== -1) {\n\t\t\t\ttext = text.substr(commaPos + 1);\n\t\t\t}\n\t\t}\n\t\t// Check whether this is an encrypted TiddlyWiki file\n\t\tvar encryptedJson = $tw.utils.extractEncryptedStoreArea(text);\n\t\tif(encryptedJson) {\n\t\t\t// If so, attempt to decrypt it with the current password\n\t\t\t$tw.utils.decryptStoreAreaInteractive(encryptedJson,function(tiddlers) {\n\t\t\t\tcallback(tiddlers);\n\t\t\t});\n\t\t} else {\n\t\t\t// Otherwise, just try to deserialise any tiddlers in the file\n\t\t\tcallback(self.deserializeTiddlers(type,text,tiddlerFields,{deserializer: deserializer}));\n\t\t}\n\t};\n\t// Kick off the read\n\tif(isBinary) {\n\t\treader.readAsDataURL(file);\n\t} else {\n\t\treader.readAsText(file);\n\t}\n};\n\n/*\nFind any existing draft of a specified tiddler\n*/\nexports.findDraft = function(targetTitle) {\n\tvar draftTitle = undefined;\n\tthis.forEachTiddler({includeSystem: true},function(title,tiddler) {\n\t\tif(tiddler.fields[\"draft.title\"] && tiddler.fields[\"draft.of\"] === targetTitle) {\n\t\t\tdraftTitle = title;\n\t\t}\n\t});\n\treturn draftTitle;\n}\n\n/*\nCheck whether the specified draft tiddler has been modified.\nIf the original tiddler doesn't exist, create a vanilla tiddler variable,\nto check if additional fields have been added.\n*/\nexports.isDraftModified = function(title) {\n\tvar tiddler = this.getTiddler(title);\n\tif(!tiddler.isDraft()) {\n\t\treturn false;\n\t}\n\tvar ignoredFields = [\"created\", \"modified\", \"title\", \"draft.title\", \"draft.of\"],\n\t\torigTiddler = this.getTiddler(tiddler.fields[\"draft.of\"]) || new $tw.Tiddler({text:\"\", tags:[]}),\n\t\ttitleModified = tiddler.fields[\"draft.title\"] !== tiddler.fields[\"draft.of\"];\n\treturn titleModified || !tiddler.isEqual(origTiddler,ignoredFields);\n};\n\n/*\nAdd a new record to the top of the history stack\ntitle: a title string or an array of title strings\nfromPageRect: page coordinates of the origin of the navigation\nhistoryTitle: title of history tiddler (defaults to $:/HistoryList)\n*/\nexports.addToHistory = function(title,fromPageRect,historyTitle) {\n\tif(historyTitle) {\n\t\tvar story = new $tw.Story({wiki: this, historyTitle: historyTitle});\n\t\tstory.addToHistory(title,fromPageRect);\t\t\n\t}\n};\n\n/*\nAdd a new tiddler to the story river\ntitle: a title string or an array of title strings\nfromTitle: the title of the tiddler from which the navigation originated\nstoryTitle: title of story tiddler (defaults to $:/StoryList)\noptions: see story.js\n*/\nexports.addToStory = function(title,fromTitle,storyTitle,options) {\n\tif(storyTitle) {\n\t\tvar story = new $tw.Story({wiki: this, storyTitle: storyTitle});\n\t\tstory.addToStory(title,fromTitle,options);\t\t\n\t}\n};\n\n/*\nGenerate a title for the draft of a given tiddler\n*/\nexports.generateDraftTitle = function(title) {\n\tvar c = 0,\n\t\tdraftTitle,\n\t\tusername = this.getTiddlerText(\"$:/status/UserName\"),\n\t\tattribution = username ? \" by \" + username : \"\";\n\tdo {\n\t\tdraftTitle = \"Draft \" + (c ? (c + 1) + \" \" : \"\") + \"of '\" + title + \"'\" + attribution;\n\t\tc++;\n\t} while(this.tiddlerExists(draftTitle));\n\treturn draftTitle;\n};\n\n/*\nInvoke the available upgrader modules\ntitles: array of tiddler titles to be processed\ntiddlers: hashmap by title of tiddler fields of pending import tiddlers. These can be modified by the upgraders. An entry with no fields indicates a tiddler that was pending import has been suppressed. When entries are added to the pending import the tiddlers hashmap may have entries that are not present in the titles array\nReturns a hashmap of messages keyed by tiddler title.\n*/\nexports.invokeUpgraders = function(titles,tiddlers) {\n\t// Collect up the available upgrader modules\n\tvar self = this;\n\tif(!this.upgraderModules) {\n\t\tthis.upgraderModules = [];\n\t\t$tw.modules.forEachModuleOfType(\"upgrader\",function(title,module) {\n\t\t\tif(module.upgrade) {\n\t\t\t\tself.upgraderModules.push(module);\n\t\t\t}\n\t\t});\n\t}\n\t// Invoke each upgrader in turn\n\tvar messages = {};\n\tfor(var t=0; t<this.upgraderModules.length; t++) {\n\t\tvar upgrader = this.upgraderModules[t],\n\t\t\tupgraderMessages = upgrader.upgrade(this,titles,tiddlers);\n\t\t$tw.utils.extend(messages,upgraderMessages);\n\t}\n\treturn messages;\n};\n\n})();\n\n",
"type": "application/javascript",
"module-type": "wikimethod"
},
"$:/palettes/Blanca": {
"title": "$:/palettes/Blanca",
"name": "Blanca",
"description": "A clean white palette to let you focus",
"tags": "$:/tags/Palette",
"type": "application/x-tiddler-dictionary",
"text": "alert-background: #ffe476\nalert-border: #b99e2f\nalert-highlight: #881122\nalert-muted-foreground: #b99e2f\nbackground: #ffffff\nblockquote-bar: <<colour muted-foreground>>\nbutton-background:\nbutton-foreground:\nbutton-border:\ncode-background: #f7f7f9\ncode-border: #e1e1e8\ncode-foreground: #dd1144\ndirty-indicator: #ff0000\ndownload-background: #66cccc\ndownload-foreground: <<colour background>>\ndragger-background: <<colour foreground>>\ndragger-foreground: <<colour background>>\ndropdown-background: <<colour background>>\ndropdown-border: <<colour muted-foreground>>\ndropdown-tab-background-selected: #fff\ndropdown-tab-background: #ececec\ndropzone-background: rgba(0,200,0,0.7)\nexternal-link-background-hover: inherit\nexternal-link-background-visited: inherit\nexternal-link-background: inherit\nexternal-link-foreground-hover: inherit\nexternal-link-foreground-visited: #0000aa\nexternal-link-foreground: #0000ee\nforeground: #333333\nmessage-background: #ecf2ff\nmessage-border: #cfd6e6\nmessage-foreground: #547599\nmodal-backdrop: <<colour foreground>>\nmodal-background: <<colour background>>\nmodal-border: #999999\nmodal-footer-background: #f5f5f5\nmodal-footer-border: #dddddd\nmodal-header-border: #eeeeee\nmuted-foreground: #999999\nnotification-background: #ffffdd\nnotification-border: #999999\npage-background: #ffffff\npre-background: #f5f5f5\npre-border: #cccccc\nprimary: #7897f3\nselect-tag-background:\nselect-tag-foreground:\nsidebar-button-foreground: <<colour foreground>>\nsidebar-controls-foreground-hover: #000000\nsidebar-controls-foreground: #ccc\nsidebar-foreground-shadow: rgba(255,255,255, 0.8)\nsidebar-foreground: #acacac\nsidebar-muted-foreground-hover: #444444\nsidebar-muted-foreground: #c0c0c0\nsidebar-tab-background-selected: #ffffff\nsidebar-tab-background: <<colour tab-background>>\nsidebar-tab-border-selected: <<colour tab-border-selected>>\nsidebar-tab-border: <<colour tab-border>>\nsidebar-tab-divider: <<colour tab-divider>>\nsidebar-tab-foreground-selected: \nsidebar-tab-foreground: <<colour tab-foreground>>\nsidebar-tiddler-link-foreground-hover: #444444\nsidebar-tiddler-link-foreground: #7897f3\nsite-title-foreground: <<colour tiddler-title-foreground>>\nstatic-alert-foreground: #aaaaaa\ntab-background-selected: #ffffff\ntab-background: #eeeeee\ntab-border-selected: #cccccc\ntab-border: #cccccc\ntab-divider: #d8d8d8\ntab-foreground-selected: <<colour tab-foreground>>\ntab-foreground: #666666\ntable-border: #dddddd\ntable-footer-background: #a8a8a8\ntable-header-background: #f0f0f0\ntag-background: #ffeedd\ntag-foreground: #000\ntiddler-background: <<colour background>>\ntiddler-border: #eee\ntiddler-controls-foreground-hover: #888888\ntiddler-controls-foreground-selected: #444444\ntiddler-controls-foreground: #cccccc\ntiddler-editor-background: #f8f8f8\ntiddler-editor-border-image: #ffffff\ntiddler-editor-border: #cccccc\ntiddler-editor-fields-even: #e0e8e0\ntiddler-editor-fields-odd: #f0f4f0\ntiddler-info-background: #f8f8f8\ntiddler-info-border: #dddddd\ntiddler-info-tab-background: #f8f8f8\ntiddler-link-background: <<colour background>>\ntiddler-link-foreground: <<colour primary>>\ntiddler-subtitle-foreground: #c0c0c0\ntiddler-title-foreground: #ff9900\ntoolbar-new-button:\ntoolbar-options-button:\ntoolbar-save-button:\ntoolbar-info-button:\ntoolbar-edit-button:\ntoolbar-close-button:\ntoolbar-delete-button:\ntoolbar-cancel-button:\ntoolbar-done-button:\nuntagged-background: #999999\nvery-muted-foreground: #888888\n"
},
"$:/palettes/Blue": {
"title": "$:/palettes/Blue",
"name": "Blue",
"description": "A blue theme",
"tags": "$:/tags/Palette",
"type": "application/x-tiddler-dictionary",
"text": "alert-background: #ffe476\nalert-border: #b99e2f\nalert-highlight: #881122\nalert-muted-foreground: #b99e2f\nbackground: #fff\nblockquote-bar: <<colour muted-foreground>>\nbutton-background:\nbutton-foreground:\nbutton-border:\ncode-background: #f7f7f9\ncode-border: #e1e1e8\ncode-foreground: #dd1144\ndirty-indicator: #ff0000\ndownload-background: #34c734\ndownload-foreground: <<colour foreground>>\ndragger-background: <<colour foreground>>\ndragger-foreground: <<colour background>>\ndropdown-background: <<colour background>>\ndropdown-border: <<colour muted-foreground>>\ndropdown-tab-background-selected: #fff\ndropdown-tab-background: #ececec\ndropzone-background: rgba(0,200,0,0.7)\nexternal-link-background-hover: inherit\nexternal-link-background-visited: inherit\nexternal-link-background: inherit\nexternal-link-foreground-hover: inherit\nexternal-link-foreground-visited: #0000aa\nexternal-link-foreground: #0000ee\nforeground: #333353\nmessage-background: #ecf2ff\nmessage-border: #cfd6e6\nmessage-foreground: #547599\nmodal-backdrop: <<colour foreground>>\nmodal-background: <<colour background>>\nmodal-border: #999999\nmodal-footer-background: #f5f5f5\nmodal-footer-border: #dddddd\nmodal-header-border: #eeeeee\nmuted-foreground: #999999\nnotification-background: #ffffdd\nnotification-border: #999999\npage-background: #ddddff\npre-background: #f5f5f5\npre-border: #cccccc\nprimary: #5778d8\nselect-tag-background:\nselect-tag-foreground:\nsidebar-button-foreground: <<colour foreground>>\nsidebar-controls-foreground-hover: #000000\nsidebar-controls-foreground: #ffffff\nsidebar-foreground-shadow: rgba(255,255,255, 0.8)\nsidebar-foreground: #acacac\nsidebar-muted-foreground-hover: #444444\nsidebar-muted-foreground: #c0c0c0\nsidebar-tab-background-selected: <<colour page-background>>\nsidebar-tab-background: <<colour tab-background>>\nsidebar-tab-border-selected: <<colour tab-border-selected>>\nsidebar-tab-border: <<colour tab-border>>\nsidebar-tab-divider: <<colour tab-divider>>\nsidebar-tab-foreground-selected: \nsidebar-tab-foreground: <<colour tab-foreground>>\nsidebar-tiddler-link-foreground-hover: #444444\nsidebar-tiddler-link-foreground: #5959c0\nsite-title-foreground: <<colour tiddler-title-foreground>>\nstatic-alert-foreground: #aaaaaa\ntab-background-selected: <<colour background>>\ntab-background: #ccccdd\ntab-border-selected: #ccccdd\ntab-border: #cccccc\ntab-divider: #d8d8d8\ntab-foreground-selected: <<colour tab-foreground>>\ntab-foreground: #666666\ntable-border: #dddddd\ntable-footer-background: #a8a8a8\ntable-header-background: #f0f0f0\ntag-background: #eeeeff\ntag-foreground: #000\ntiddler-background: <<colour background>>\ntiddler-border: <<colour background>>\ntiddler-controls-foreground-hover: #666666\ntiddler-controls-foreground-selected: #444444\ntiddler-controls-foreground: #cccccc\ntiddler-editor-background: #f8f8f8\ntiddler-editor-border-image: #ffffff\ntiddler-editor-border: #cccccc\ntiddler-editor-fields-even: #e0e8e0\ntiddler-editor-fields-odd: #f0f4f0\ntiddler-info-background: #ffffff\ntiddler-info-border: #dddddd\ntiddler-info-tab-background: #ffffff\ntiddler-link-background: <<colour background>>\ntiddler-link-foreground: <<colour primary>>\ntiddler-subtitle-foreground: #c0c0c0\ntiddler-title-foreground: #5959c0\ntoolbar-new-button: #5eb95e\ntoolbar-options-button: rgb(128, 88, 165)\ntoolbar-save-button: #0e90d2\ntoolbar-info-button: #0e90d2\ntoolbar-edit-button: rgb(243, 123, 29)\ntoolbar-close-button: #dd514c\ntoolbar-delete-button: #dd514c\ntoolbar-cancel-button: rgb(243, 123, 29)\ntoolbar-done-button: #5eb95e\nuntagged-background: #999999\nvery-muted-foreground: #888888\n"
},
"$:/palettes/Muted": {
"title": "$:/palettes/Muted",
"name": "Muted",
"description": "Bright tiddlers on a muted background",
"tags": "$:/tags/Palette",
"type": "application/x-tiddler-dictionary",
"text": "alert-background: #ffe476\nalert-border: #b99e2f\nalert-highlight: #881122\nalert-muted-foreground: #b99e2f\nbackground: #ffffff\nblockquote-bar: <<colour muted-foreground>>\nbutton-background:\nbutton-foreground:\nbutton-border:\ncode-background: #f7f7f9\ncode-border: #e1e1e8\ncode-foreground: #dd1144\ndirty-indicator: #ff0000\ndownload-background: #34c734\ndownload-foreground: <<colour background>>\ndragger-background: <<colour foreground>>\ndragger-foreground: <<colour background>>\ndropdown-background: <<colour background>>\ndropdown-border: <<colour muted-foreground>>\ndropdown-tab-background-selected: #fff\ndropdown-tab-background: #ececec\ndropzone-background: rgba(0,200,0,0.7)\nexternal-link-background-hover: inherit\nexternal-link-background-visited: inherit\nexternal-link-background: inherit\nexternal-link-foreground-hover: inherit\nexternal-link-foreground-visited: #0000aa\nexternal-link-foreground: #0000ee\nforeground: #333333\nmessage-background: #ecf2ff\nmessage-border: #cfd6e6\nmessage-foreground: #547599\nmodal-backdrop: <<colour foreground>>\nmodal-background: <<colour background>>\nmodal-border: #999999\nmodal-footer-background: #f5f5f5\nmodal-footer-border: #dddddd\nmodal-header-border: #eeeeee\nmuted-foreground: #bbb\nnotification-background: #ffffdd\nnotification-border: #999999\npage-background: #6f6f70\npre-background: #f5f5f5\npre-border: #cccccc\nprimary: #29a6ee\nselect-tag-background:\nselect-tag-foreground:\nsidebar-button-foreground: <<colour foreground>>\nsidebar-controls-foreground-hover: #000000\nsidebar-controls-foreground: #c2c1c2\nsidebar-foreground-shadow: rgba(255,255,255,0)\nsidebar-foreground: #d3d2d4\nsidebar-muted-foreground-hover: #444444\nsidebar-muted-foreground: #c0c0c0\nsidebar-tab-background-selected: #6f6f70\nsidebar-tab-background: #666667\nsidebar-tab-border-selected: #999\nsidebar-tab-border: #515151\nsidebar-tab-divider: #999\nsidebar-tab-foreground-selected: \nsidebar-tab-foreground: #999\nsidebar-tiddler-link-foreground-hover: #444444\nsidebar-tiddler-link-foreground: #d1d0d2\nsite-title-foreground: <<colour tiddler-title-foreground>>\nstatic-alert-foreground: #aaaaaa\ntab-background-selected: #ffffff\ntab-background: #d8d8d8\ntab-border-selected: #d8d8d8\ntab-border: #cccccc\ntab-divider: #d8d8d8\ntab-foreground-selected: <<colour tab-foreground>>\ntab-foreground: #666666\ntable-border: #dddddd\ntable-footer-background: #a8a8a8\ntable-header-background: #f0f0f0\ntag-background: #d5ad34\ntag-foreground: #ffffff\ntiddler-background: <<colour background>>\ntiddler-border: <<colour background>>\ntiddler-controls-foreground-hover: #888888\ntiddler-controls-foreground-selected: #444444\ntiddler-controls-foreground: #cccccc\ntiddler-editor-background: #f8f8f8\ntiddler-editor-border-image: #ffffff\ntiddler-editor-border: #cccccc\ntiddler-editor-fields-even: #e0e8e0\ntiddler-editor-fields-odd: #f0f4f0\ntiddler-info-background: #f8f8f8\ntiddler-info-border: #dddddd\ntiddler-info-tab-background: #f8f8f8\ntiddler-link-background: <<colour background>>\ntiddler-link-foreground: <<colour primary>>\ntiddler-subtitle-foreground: #c0c0c0\ntiddler-title-foreground: #182955\ntoolbar-new-button: \ntoolbar-options-button: \ntoolbar-save-button: \ntoolbar-info-button: \ntoolbar-edit-button: \ntoolbar-close-button: \ntoolbar-delete-button: \ntoolbar-cancel-button: \ntoolbar-done-button: \nuntagged-background: #999999\nvery-muted-foreground: #888888\n"
},
"$:/palettes/ContrastLight": {
"title": "$:/palettes/ContrastLight",
"name": "Contrast (Light)",
"description": "High contrast and unambiguous (light version)",
"tags": "$:/tags/Palette",
"type": "application/x-tiddler-dictionary",
"text": "alert-background: #f00\nalert-border: <<colour background>>\nalert-highlight: <<colour foreground>>\nalert-muted-foreground: #800\nbackground: #fff\nblockquote-bar: <<colour muted-foreground>>\nbutton-background: <<colour background>>\nbutton-foreground: <<colour foreground>>\nbutton-border: <<colour foreground>>\ncode-background: <<colour background>>\ncode-border: <<colour foreground>>\ncode-foreground: <<colour foreground>>\ndirty-indicator: #f00\ndownload-background: #080\ndownload-foreground: <<colour background>>\ndragger-background: <<colour foreground>>\ndragger-foreground: <<colour background>>\ndropdown-background: <<colour background>>\ndropdown-border: <<colour muted-foreground>>\ndropdown-tab-background-selected: <<colour foreground>>\ndropdown-tab-background: <<colour foreground>>\ndropzone-background: rgba(0,200,0,0.7)\nexternal-link-background-hover: inherit\nexternal-link-background-visited: inherit\nexternal-link-background: inherit\nexternal-link-foreground-hover: inherit\nexternal-link-foreground-visited: #00a\nexternal-link-foreground: #00e\nforeground: #000\nmessage-background: <<colour foreground>>\nmessage-border: <<colour background>>\nmessage-foreground: <<colour background>>\nmodal-backdrop: <<colour foreground>>\nmodal-background: <<colour background>>\nmodal-border: <<colour foreground>>\nmodal-footer-background: <<colour background>>\nmodal-footer-border: <<colour foreground>>\nmodal-header-border: <<colour foreground>>\nmuted-foreground: <<colour foreground>>\nnotification-background: <<colour background>>\nnotification-border: <<colour foreground>>\npage-background: <<colour background>>\npre-background: <<colour background>>\npre-border: <<colour foreground>>\nprimary: #00f\nselect-tag-background:\nselect-tag-foreground:\nsidebar-button-foreground: <<colour foreground>>\nsidebar-controls-foreground-hover: <<colour background>>\nsidebar-controls-foreground: <<colour foreground>>\nsidebar-foreground-shadow: rgba(0,0,0, 0)\nsidebar-foreground: <<colour foreground>>\nsidebar-muted-foreground-hover: #444444\nsidebar-muted-foreground: <<colour foreground>>\nsidebar-tab-background-selected: <<colour background>>\nsidebar-tab-background: <<colour tab-background>>\nsidebar-tab-border-selected: <<colour tab-border-selected>>\nsidebar-tab-border: <<colour tab-border>>\nsidebar-tab-divider: <<colour tab-divider>>\nsidebar-tab-foreground-selected: <<colour foreground>>\nsidebar-tab-foreground: <<colour tab-foreground>>\nsidebar-tiddler-link-foreground-hover: <<colour foreground>>\nsidebar-tiddler-link-foreground: <<colour primary>>\nsite-title-foreground: <<colour tiddler-title-foreground>>\nstatic-alert-foreground: #aaaaaa\ntab-background-selected: <<colour background>>\ntab-background: <<colour foreground>>\ntab-border-selected: <<colour foreground>>\ntab-border: <<colour foreground>>\ntab-divider: <<colour foreground>>\ntab-foreground-selected: <<colour foreground>>\ntab-foreground: <<colour background>>\ntable-border: #dddddd\ntable-footer-background: #a8a8a8\ntable-header-background: #f0f0f0\ntag-background: #000\ntag-foreground: #fff\ntiddler-background: <<colour background>>\ntiddler-border: <<colour foreground>>\ntiddler-controls-foreground-hover: #ddd\ntiddler-controls-foreground-selected: #fdd\ntiddler-controls-foreground: <<colour foreground>>\ntiddler-editor-background: <<colour background>>\ntiddler-editor-border-image: <<colour foreground>>\ntiddler-editor-border: #cccccc\ntiddler-editor-fields-even: <<colour background>>\ntiddler-editor-fields-odd: <<colour background>>\ntiddler-info-background: <<colour background>>\ntiddler-info-border: <<colour foreground>>\ntiddler-info-tab-background: <<colour background>>\ntiddler-link-background: <<colour background>>\ntiddler-link-foreground: <<colour primary>>\ntiddler-subtitle-foreground: <<colour foreground>>\ntiddler-title-foreground: <<colour foreground>>\ntoolbar-new-button: \ntoolbar-options-button: \ntoolbar-save-button: \ntoolbar-info-button: \ntoolbar-edit-button: \ntoolbar-close-button: \ntoolbar-delete-button: \ntoolbar-cancel-button: \ntoolbar-done-button: \nuntagged-background: <<colour foreground>>\nvery-muted-foreground: #888888\n"
},
"$:/palettes/ContrastDark": {
"title": "$:/palettes/ContrastDark",
"name": "Contrast (Dark)",
"description": "High contrast and unambiguous (dark version)",
"tags": "$:/tags/Palette",
"type": "application/x-tiddler-dictionary",
"text": "alert-background: #f00\nalert-border: <<colour background>>\nalert-highlight: <<colour foreground>>\nalert-muted-foreground: #800\nbackground: #000\nblockquote-bar: <<colour muted-foreground>>\nbutton-background: <<colour background>>\nbutton-foreground: <<colour foreground>>\nbutton-border: <<colour foreground>>\ncode-background: <<colour background>>\ncode-border: <<colour foreground>>\ncode-foreground: <<colour foreground>>\ndirty-indicator: #f00\ndownload-background: #080\ndownload-foreground: <<colour background>>\ndragger-background: <<colour foreground>>\ndragger-foreground: <<colour background>>\ndropdown-background: <<colour background>>\ndropdown-border: <<colour muted-foreground>>\ndropdown-tab-background-selected: <<colour foreground>>\ndropdown-tab-background: <<colour foreground>>\ndropzone-background: rgba(0,200,0,0.7)\nexternal-link-background-hover: inherit\nexternal-link-background-visited: inherit\nexternal-link-background: inherit\nexternal-link-foreground-hover: inherit\nexternal-link-foreground-visited: #00a\nexternal-link-foreground: #00e\nforeground: #fff\nmessage-background: <<colour foreground>>\nmessage-border: <<colour background>>\nmessage-foreground: <<colour background>>\nmodal-backdrop: <<colour foreground>>\nmodal-background: <<colour background>>\nmodal-border: <<colour foreground>>\nmodal-footer-background: <<colour background>>\nmodal-footer-border: <<colour foreground>>\nmodal-header-border: <<colour foreground>>\nmuted-foreground: <<colour foreground>>\nnotification-background: <<colour background>>\nnotification-border: <<colour foreground>>\npage-background: <<colour background>>\npre-background: <<colour background>>\npre-border: <<colour foreground>>\nprimary: #00f\nselect-tag-background:\nselect-tag-foreground:\nsidebar-button-foreground: <<colour foreground>>\nsidebar-controls-foreground-hover: <<colour background>>\nsidebar-controls-foreground: <<colour foreground>>\nsidebar-foreground-shadow: rgba(0,0,0, 0)\nsidebar-foreground: <<colour foreground>>\nsidebar-muted-foreground-hover: #444444\nsidebar-muted-foreground: <<colour foreground>>\nsidebar-tab-background-selected: <<colour background>>\nsidebar-tab-background: <<colour tab-background>>\nsidebar-tab-border-selected: <<colour tab-border-selected>>\nsidebar-tab-border: <<colour tab-border>>\nsidebar-tab-divider: <<colour tab-divider>>\nsidebar-tab-foreground-selected: <<colour foreground>>\nsidebar-tab-foreground: <<colour tab-foreground>>\nsidebar-tiddler-link-foreground-hover: <<colour foreground>>\nsidebar-tiddler-link-foreground: <<colour primary>>\nsite-title-foreground: <<colour tiddler-title-foreground>>\nstatic-alert-foreground: #aaaaaa\ntab-background-selected: <<colour background>>\ntab-background: <<colour foreground>>\ntab-border-selected: <<colour foreground>>\ntab-border: <<colour foreground>>\ntab-divider: <<colour foreground>>\ntab-foreground-selected: <<colour foreground>>\ntab-foreground: <<colour background>>\ntable-border: #dddddd\ntable-footer-background: #a8a8a8\ntable-header-background: #f0f0f0\ntag-background: #fff\ntag-foreground: #000\ntiddler-background: <<colour background>>\ntiddler-border: <<colour foreground>>\ntiddler-controls-foreground-hover: #ddd\ntiddler-controls-foreground-selected: #fdd\ntiddler-controls-foreground: <<colour foreground>>\ntiddler-editor-background: <<colour background>>\ntiddler-editor-border-image: <<colour foreground>>\ntiddler-editor-border: #cccccc\ntiddler-editor-fields-even: <<colour background>>\ntiddler-editor-fields-odd: <<colour background>>\ntiddler-info-background: <<colour background>>\ntiddler-info-border: <<colour foreground>>\ntiddler-info-tab-background: <<colour background>>\ntiddler-link-background: <<colour background>>\ntiddler-link-foreground: <<colour primary>>\ntiddler-subtitle-foreground: <<colour foreground>>\ntiddler-title-foreground: <<colour foreground>>\ntoolbar-new-button: \ntoolbar-options-button: \ntoolbar-save-button: \ntoolbar-info-button: \ntoolbar-edit-button: \ntoolbar-close-button: \ntoolbar-delete-button: \ntoolbar-cancel-button: \ntoolbar-done-button: \nuntagged-background: <<colour foreground>>\nvery-muted-foreground: #888888\n"
},
"$:/palettes/DarkPhotos": {
"title": "$:/palettes/DarkPhotos",
"created": "20150402111612188",
"description": "Good with dark photo backgrounds",
"modified": "20150402112344080",
"name": "DarkPhotos",
"tags": "$:/tags/Palette",
"type": "application/x-tiddler-dictionary",
"text": "alert-background: #ffe476\nalert-border: #b99e2f\nalert-highlight: #881122\nalert-muted-foreground: #b99e2f\nbackground: #ffffff\nblockquote-bar: <<colour muted-foreground>>\nbutton-background: \nbutton-foreground: \nbutton-border: \ncode-background: #f7f7f9\ncode-border: #e1e1e8\ncode-foreground: #dd1144\ndirty-indicator: #ff0000\ndownload-background: #34c734\ndownload-foreground: <<colour background>>\ndragger-background: <<colour foreground>>\ndragger-foreground: <<colour background>>\ndropdown-background: <<colour background>>\ndropdown-border: <<colour muted-foreground>>\ndropdown-tab-background-selected: #fff\ndropdown-tab-background: #ececec\ndropzone-background: rgba(0,200,0,0.7)\nexternal-link-background-hover: inherit\nexternal-link-background-visited: inherit\nexternal-link-background: inherit\nexternal-link-foreground-hover: inherit\nexternal-link-foreground-visited: #0000aa\nexternal-link-foreground: #0000ee\nforeground: #333333\nmessage-background: #ecf2ff\nmessage-border: #cfd6e6\nmessage-foreground: #547599\nmodal-backdrop: <<colour foreground>>\nmodal-background: <<colour background>>\nmodal-border: #999999\nmodal-footer-background: #f5f5f5\nmodal-footer-border: #dddddd\nmodal-header-border: #eeeeee\nmuted-foreground: #ddd\nnotification-background: #ffffdd\nnotification-border: #999999\npage-background: #336438\npre-background: #f5f5f5\npre-border: #cccccc\nprimary: #5778d8\nselect-tag-background:\nselect-tag-foreground:\nsidebar-button-foreground: <<colour foreground>>\nsidebar-controls-foreground-hover: #ccf\nsidebar-controls-foreground: #fff\nsidebar-foreground-shadow: rgba(0,0,0, 0.5)\nsidebar-foreground: #fff\nsidebar-muted-foreground-hover: #444444\nsidebar-muted-foreground: #eee\nsidebar-tab-background-selected: rgba(255,255,255, 0.8)\nsidebar-tab-background: rgba(255,255,255, 0.4)\nsidebar-tab-border-selected: <<colour tab-border-selected>>\nsidebar-tab-border: <<colour tab-border>>\nsidebar-tab-divider: rgba(255,255,255, 0.2)\nsidebar-tab-foreground-selected: \nsidebar-tab-foreground: <<colour tab-foreground>>\nsidebar-tiddler-link-foreground-hover: #aaf\nsidebar-tiddler-link-foreground: #ddf\nsite-title-foreground: #fff\nstatic-alert-foreground: #aaaaaa\ntab-background-selected: #ffffff\ntab-background: #d8d8d8\ntab-border-selected: #d8d8d8\ntab-border: #cccccc\ntab-divider: #d8d8d8\ntab-foreground-selected: <<colour tab-foreground>>\ntab-foreground: #666666\ntable-border: #dddddd\ntable-footer-background: #a8a8a8\ntable-header-background: #f0f0f0\ntag-background: #ec6\ntag-foreground: #ffffff\ntiddler-background: <<colour background>>\ntiddler-border: <<colour background>>\ntiddler-controls-foreground-hover: #888888\ntiddler-controls-foreground-selected: #444444\ntiddler-controls-foreground: #cccccc\ntiddler-editor-background: #f8f8f8\ntiddler-editor-border-image: #ffffff\ntiddler-editor-border: #cccccc\ntiddler-editor-fields-even: #e0e8e0\ntiddler-editor-fields-odd: #f0f4f0\ntiddler-info-background: #f8f8f8\ntiddler-info-border: #dddddd\ntiddler-info-tab-background: #f8f8f8\ntiddler-link-background: <<colour background>>\ntiddler-link-foreground: <<colour primary>>\ntiddler-subtitle-foreground: #c0c0c0\ntiddler-title-foreground: #182955\ntoolbar-new-button: \ntoolbar-options-button: \ntoolbar-save-button: \ntoolbar-info-button: \ntoolbar-edit-button: \ntoolbar-close-button: \ntoolbar-delete-button: \ntoolbar-cancel-button: \ntoolbar-done-button: \nuntagged-background: #999999\nvery-muted-foreground: #888888\n"
},
"$:/palettes/Nord": {
"title": "$:/palettes/Nord",
"name": "Nord",
"description": "An arctic, north-bluish color palette.",
"tags": "$:/tags/Palette",
"type": "application/x-tiddler-dictionary",
"license": "MIT, arcticicestudio, https://github.com/arcticicestudio/nord/blob/develop/LICENSE.md",
"text": "alert-background: #D08770\nalert-border: #D08770\nalert-highlight: #B48EAD\nalert-muted-foreground: #4C566A\nbackground: #3b4252\nblockquote-bar: <<colour muted-foreground>>\nbutton-background: #4C566A\nbutton-foreground: #D8DEE9\nbutton-border: transparent\ncode-background: #2E3440\ncode-border: #2E3440\ncode-foreground: #BF616A\ndiff-delete-background: #BF616A\ndiff-delete-foreground: <<colour foreground>>\ndiff-equal-background: \ndiff-equal-foreground: <<colour foreground>>\ndiff-insert-background: #A3BE8C\ndiff-insert-foreground: <<colour foreground>>\ndiff-invisible-background: \ndiff-invisible-foreground: <<colour muted-foreground>>\ndirty-indicator: #BF616A\ndownload-background: #A3BE8C\ndownload-foreground: <<colour background>>\ndragger-background: <<colour foreground>>\ndragger-foreground: <<colour background>>\ndropdown-background: <<colour background>>\ndropdown-border: <<colour background>>\ndropdown-tab-background-selected: #ECEFF4\ndropdown-tab-background: #4C566A\ndropzone-background: #A3BE8C\nexternal-link-background-hover: inherit\nexternal-link-background-visited: inherit\nexternal-link-background: inherit\nexternal-link-foreground-hover: inherit\nexternal-link-foreground-visited: #5E81AC\nexternal-link-foreground: #8FBCBB\nforeground: #d8dee9\nmessage-background: #2E3440\nmessage-border: #2E3440\nmessage-foreground: #547599\nmodal-backdrop: <<colour foreground>>\nmodal-background: <<colour background>>\nmodal-border: #3b4252\nmodal-footer-background: #3b4252\nmodal-footer-border: #3b4252\nmodal-header-border: #3b4252\nmuted-foreground: #4C566A\nnotification-background: <<colour primary>>\nnotification-border: #EBCB8B\npage-background: #2e3440\npre-background: #2E3440\npre-border: #2E3440\nprimary: #5E81AC\nselect-tag-background: #3b4252\nselect-tag-foreground: <<colour foreground>>\nsidebar-button-foreground: <<colour foreground>>\nsidebar-controls-foreground-hover: #4C566A\nsidebar-controls-foreground: #3B4252\nsidebar-foreground-shadow: transparent\nsidebar-foreground: #D8DEE9\nsidebar-muted-foreground-hover: #4C566A\nsidebar-muted-foreground: #4C566A\nsidebar-tab-background-selected: #ECEFF4\nsidebar-tab-background: #4C566A\nsidebar-tab-border-selected: <<colour tab-border-selected>>\nsidebar-tab-border: #4C566A\nsidebar-tab-divider: <<colour page-background>>\nsidebar-tab-foreground-selected: #4C566A\nsidebar-tab-foreground: <<colour tab-foreground>>\nsidebar-tiddler-link-foreground-hover: #A3BE8C\nsidebar-tiddler-link-foreground: #81A1C1\nsite-title-foreground: <<colour tiddler-title-foreground>>\nstatic-alert-foreground: #B48EAD\ntab-background-selected: #ECEFF4\ntab-background: #4C566A\ntab-border-selected: #4C566A\ntab-border: #4C566A\ntab-divider: #4C566A\ntab-foreground-selected: #4C566A\ntab-foreground: #D8DEE9\ntable-border: #4C566A\ntable-footer-background: #2e3440\ntable-header-background: #2e3440\ntag-background: #A3BE8C\ntag-foreground: #4C566A\ntiddler-background: <<colour background>>\ntiddler-border: <<colour background>>\ntiddler-controls-foreground-hover: \ntiddler-controls-foreground-selected: #EBCB8B\ntiddler-controls-foreground: #4C566A\ntiddler-editor-background: #2e3440\ntiddler-editor-border-image: #2e3440\ntiddler-editor-border: #2e3440\ntiddler-editor-fields-even: #2e3440\ntiddler-editor-fields-odd: #2e3440\ntiddler-info-background: #2e3440\ntiddler-info-border: #2e3440\ntiddler-info-tab-background: #2e3440\ntiddler-link-background: <<colour background>>\ntiddler-link-foreground: <<colour primary>>\ntiddler-subtitle-foreground: #4C566A\ntiddler-title-foreground: #81A1C1\ntoolbar-new-button: \ntoolbar-options-button: \ntoolbar-save-button: \ntoolbar-info-button: \ntoolbar-edit-button: \ntoolbar-close-button: \ntoolbar-delete-button: \ntoolbar-cancel-button: \ntoolbar-done-button: \nuntagged-background: #2d3038\nvery-muted-foreground: #2d3038\n"
},
"$:/palettes/Rocker": {
"title": "$:/palettes/Rocker",
"name": "Rocker",
"description": "A dark theme",
"tags": "$:/tags/Palette",
"type": "application/x-tiddler-dictionary",
"text": "alert-background: #ffe476\nalert-border: #b99e2f\nalert-highlight: #881122\nalert-muted-foreground: #b99e2f\nbackground: #ffffff\nblockquote-bar: <<colour muted-foreground>>\nbutton-background:\nbutton-foreground:\nbutton-border:\ncode-background: #f7f7f9\ncode-border: #e1e1e8\ncode-foreground: #dd1144\ndirty-indicator: #ff0000\ndownload-background: #34c734\ndownload-foreground: <<colour background>>\ndragger-background: <<colour foreground>>\ndragger-foreground: <<colour background>>\ndropdown-background: <<colour background>>\ndropdown-border: <<colour muted-foreground>>\ndropdown-tab-background-selected: #fff\ndropdown-tab-background: #ececec\ndropzone-background: rgba(0,200,0,0.7)\nexternal-link-background-hover: inherit\nexternal-link-background-visited: inherit\nexternal-link-background: inherit\nexternal-link-foreground-hover: inherit\nexternal-link-foreground-visited: #0000aa\nexternal-link-foreground: #0000ee\nforeground: #333333\nmessage-background: #ecf2ff\nmessage-border: #cfd6e6\nmessage-foreground: #547599\nmodal-backdrop: <<colour foreground>>\nmodal-background: <<colour background>>\nmodal-border: #999999\nmodal-footer-background: #f5f5f5\nmodal-footer-border: #dddddd\nmodal-header-border: #eeeeee\nmuted-foreground: #999999\nnotification-background: #ffffdd\nnotification-border: #999999\npage-background: #000\npre-background: #f5f5f5\npre-border: #cccccc\nprimary: #cc0000\nselect-tag-background:\nselect-tag-foreground:\nsidebar-button-foreground: <<colour foreground>>\nsidebar-controls-foreground-hover: #000000\nsidebar-controls-foreground: #ffffff\nsidebar-foreground-shadow: rgba(255,255,255, 0.0)\nsidebar-foreground: #acacac\nsidebar-muted-foreground-hover: #444444\nsidebar-muted-foreground: #c0c0c0\nsidebar-tab-background-selected: #000\nsidebar-tab-background: <<colour tab-background>>\nsidebar-tab-border-selected: <<colour tab-border-selected>>\nsidebar-tab-border: <<colour tab-border>>\nsidebar-tab-divider: <<colour tab-divider>>\nsidebar-tab-foreground-selected: \nsidebar-tab-foreground: <<colour tab-foreground>>\nsidebar-tiddler-link-foreground-hover: #ffbb99\nsidebar-tiddler-link-foreground: #cc0000\nsite-title-foreground: <<colour tiddler-title-foreground>>\nstatic-alert-foreground: #aaaaaa\ntab-background-selected: #ffffff\ntab-background: #d8d8d8\ntab-border-selected: #d8d8d8\ntab-border: #cccccc\ntab-divider: #d8d8d8\ntab-foreground-selected: <<colour tab-foreground>>\ntab-foreground: #666666\ntable-border: #dddddd\ntable-footer-background: #a8a8a8\ntable-header-background: #f0f0f0\ntag-background: #ffbb99\ntag-foreground: #000\ntiddler-background: <<colour background>>\ntiddler-border: <<colour background>>\ntiddler-controls-foreground-hover: #888888\ntiddler-controls-foreground-selected: #444444\ntiddler-controls-foreground: #cccccc\ntiddler-editor-background: #f8f8f8\ntiddler-editor-border-image: #ffffff\ntiddler-editor-border: #cccccc\ntiddler-editor-fields-even: #e0e8e0\ntiddler-editor-fields-odd: #f0f4f0\ntiddler-info-background: #f8f8f8\ntiddler-info-border: #dddddd\ntiddler-info-tab-background: #f8f8f8\ntiddler-link-background: <<colour background>>\ntiddler-link-foreground: <<colour primary>>\ntiddler-subtitle-foreground: #c0c0c0\ntiddler-title-foreground: #cc0000\ntoolbar-new-button:\ntoolbar-options-button:\ntoolbar-save-button:\ntoolbar-info-button:\ntoolbar-edit-button:\ntoolbar-close-button:\ntoolbar-delete-button:\ntoolbar-cancel-button:\ntoolbar-done-button:\nuntagged-background: #999999\nvery-muted-foreground: #888888\n"
},
"$:/palettes/SolarFlare": {
"title": "$:/palettes/SolarFlare",
"name": "Solar Flare",
"description": "Warm, relaxing earth colours",
"tags": "$:/tags/Palette",
"type": "application/x-tiddler-dictionary",
"text": ": Background Tones\n\nbase03: #002b36\nbase02: #073642\n\n: Content Tones\n\nbase01: #586e75\nbase00: #657b83\nbase0: #839496\nbase1: #93a1a1\n\n: Background Tones\n\nbase2: #eee8d5\nbase3: #fdf6e3\n\n: Accent Colors\n\nyellow: #b58900\norange: #cb4b16\nred: #dc322f\nmagenta: #d33682\nviolet: #6c71c4\nblue: #268bd2\ncyan: #2aa198\ngreen: #859900\n\n: Additional Tones (RA)\n\nbase10: #c0c4bb\nviolet-muted: #7c81b0\nblue-muted: #4e7baa\n\nyellow-hot: #ffcc44\norange-hot: #eb6d20\nred-hot: #ff2222\nblue-hot: #2298ee\ngreen-hot: #98ee22\n\n: Palette\n\n: Do not use colour macro for background and foreground\nbackground: #fdf6e3\n download-foreground: <<colour background>>\n dragger-foreground: <<colour background>>\n dropdown-background: <<colour background>>\n modal-background: <<colour background>>\n sidebar-foreground-shadow: <<colour background>>\n tiddler-background: <<colour background>>\n tiddler-border: <<colour background>>\n tiddler-link-background: <<colour background>>\n tab-background-selected: <<colour background>>\n dropdown-tab-background-selected: <<colour tab-background-selected>>\nforeground: #657b83\n dragger-background: <<colour foreground>>\n tab-foreground: <<colour foreground>>\n tab-foreground-selected: <<colour tab-foreground>>\n sidebar-tab-foreground-selected: <<colour tab-foreground-selected>>\n sidebar-tab-foreground: <<colour tab-foreground>>\n sidebar-button-foreground: <<colour foreground>>\n sidebar-controls-foreground: <<colour foreground>>\n sidebar-foreground: <<colour foreground>>\n: base03\n: base02\n: base01\n alert-muted-foreground: <<colour base01>>\n: base00\n code-foreground: <<colour base00>>\n message-foreground: <<colour base00>>\n tag-foreground: <<colour base00>>\n: base0\n sidebar-tiddler-link-foreground: <<colour base0>>\n: base1\n muted-foreground: <<colour base1>>\n blockquote-bar: <<colour muted-foreground>>\n dropdown-border: <<colour muted-foreground>>\n sidebar-muted-foreground: <<colour muted-foreground>>\n tiddler-title-foreground: <<colour muted-foreground>>\n site-title-foreground: <<colour tiddler-title-foreground>>\n: base2\n modal-footer-background: <<colour base2>>\n page-background: <<colour base2>>\n modal-backdrop: <<colour page-background>>\n notification-background: <<colour page-background>>\n code-background: <<colour page-background>>\n code-border: <<colour code-background>>\n pre-background: <<colour page-background>>\n pre-border: <<colour pre-background>>\n sidebar-tab-background-selected: <<colour page-background>>\n table-header-background: <<colour base2>>\n tag-background: <<colour base2>>\n tiddler-editor-background: <<colour base2>>\n tiddler-info-background: <<colour base2>>\n tiddler-info-tab-background: <<colour base2>>\n tab-background: <<colour base2>>\n dropdown-tab-background: <<colour tab-background>>\n: base3\n alert-background: <<colour base3>>\n message-background: <<colour base3>>\n: yellow\n: orange\n: red\n: magenta\n alert-highlight: <<colour magenta>>\n: violet\n external-link-foreground: <<colour violet>>\n: blue\n: cyan\n: green\n: base10\n tiddler-controls-foreground: <<colour base10>>\n: violet-muted\n external-link-foreground-visited: <<colour violet-muted>>\n: blue-muted\n primary: <<colour blue-muted>>\n download-background: <<colour primary>>\n tiddler-link-foreground: <<colour primary>>\n\nalert-border: #b99e2f\ndirty-indicator: #ff0000\ndropzone-background: rgba(0,200,0,0.7)\nexternal-link-background-hover: inherit\nexternal-link-background-visited: inherit\nexternal-link-background: inherit\nexternal-link-foreground-hover: inherit\nmessage-border: #cfd6e6\nmodal-border: #999999\nselect-tag-background:\nselect-tag-foreground:\nsidebar-controls-foreground-hover:\nsidebar-muted-foreground-hover:\nsidebar-tab-background: #ded8c5\nsidebar-tiddler-link-foreground-hover:\nstatic-alert-foreground: #aaaaaa\ntab-border: #cccccc\n modal-footer-border: <<colour tab-border>>\n modal-header-border: <<colour tab-border>>\n notification-border: <<colour tab-border>>\n sidebar-tab-border: <<colour tab-border>>\n tab-border-selected: <<colour tab-border>>\n sidebar-tab-border-selected: <<colour tab-border-selected>>\ntab-divider: #d8d8d8\n sidebar-tab-divider: <<colour tab-divider>>\ntable-border: #dddddd\ntable-footer-background: #a8a8a8\ntiddler-controls-foreground-hover: #888888\ntiddler-controls-foreground-selected: #444444\ntiddler-editor-border-image: #ffffff\ntiddler-editor-border: #cccccc\ntiddler-editor-fields-even: #e0e8e0\ntiddler-editor-fields-odd: #f0f4f0\ntiddler-info-border: #dddddd\ntiddler-subtitle-foreground: #c0c0c0\ntoolbar-new-button:\ntoolbar-options-button:\ntoolbar-save-button:\ntoolbar-info-button:\ntoolbar-edit-button:\ntoolbar-close-button:\ntoolbar-delete-button:\ntoolbar-cancel-button:\ntoolbar-done-button:\nuntagged-background: #999999\nvery-muted-foreground: #888888\n"
},
"$:/palettes/SolarizedLight": {
"title": "$:/palettes/SolarizedLight",
"tags": "$:/tags/Palette",
"type": "application/x-tiddler-dictionary",
"description": "Precision colors for machines and people",
"license": "MIT, Ethan Schoonover, https://github.com/altercation/solarized/blob/master/LICENSE",
"name": "SolarizedLight",
"text": "alert-background: #eee8d5\nalert-border: #073642\nalert-highlight: #cb4b16\nalert-muted-foreground: #586e75\nbackground: #fdf6e3\nblockquote-bar: <<colour muted-foreground>>\nbutton-background: #cb4b16\nbutton-foreground: #fdf6e3\nbutton-border: transparent\ncode-background: #eee8d5\ncode-border: #93a1a1\ncode-foreground: #d33682\ndiff-delete-background: #BF616A\ndiff-delete-foreground: <<colour foreground>>\ndiff-equal-background: \ndiff-equal-foreground: <<colour foreground>>\ndiff-insert-background: #859900\ndiff-insert-foreground: <<colour foreground>>\ndiff-invisible-background: \ndiff-invisible-foreground: <<colour muted-foreground>>\ndirty-indicator: #D08770\ndownload-background: #859900\ndownload-foreground: <<colour background>>\ndragger-background: <<colour foreground>>\ndragger-foreground: <<colour background>>\ndropdown-background: <<colour background>>\ndropdown-border: <<colour background>>\ndropdown-tab-background-selected: #fdf6e3\ndropdown-tab-background: #93a1a1\ndropzone-background: #859900\nexternal-link-background-hover: inherit\nexternal-link-background-visited: inherit\nexternal-link-background: inherit\nexternal-link-foreground-hover: #d33682\nexternal-link-foreground-visited: #b58900\nexternal-link-foreground: #cb4b16\nforeground: #839496\nmessage-background: #586e75\nmessage-border: #586e75\nmessage-foreground: #eee8d5\nmodal-backdrop: <<colour foreground>>\nmodal-background: <<colour background>>\nmodal-border: #eee8d5\nmodal-footer-background: #eee8d5\nmodal-footer-border: #eee8d5\nmodal-header-border: #eee8d5\nmuted-foreground: #93a1a1\nnotification-background: #EBCB8B\nnotification-border: #D08770\npage-background: #eee8d5\npre-background: #eee8d5\npre-border: #93a1a1\nprimary: #2aa198\nselect-tag-background: #eee8d5\nselect-tag-foreground: <<colour foreground>>\nsidebar-button-foreground: #eee8d5\nsidebar-controls-foreground-hover: #268bd2\nsidebar-controls-foreground: #586e75\nsidebar-foreground-shadow: transparent\nsidebar-foreground: #839496\nsidebar-muted-foreground-hover: #657b83\nsidebar-muted-foreground: #93a1a1\nsidebar-tab-background-selected: #eee8d5\nsidebar-tab-background: #839496\nsidebar-tab-border-selected: <<colour tab-border-selected>>\nsidebar-tab-border: #657b83\nsidebar-tab-divider: <<colour page-background>>\nsidebar-tab-foreground-selected: #839496\nsidebar-tab-foreground: <<colour tab-foreground>>\nsidebar-tiddler-link-foreground-hover: #859900\nsidebar-tiddler-link-foreground: #268bd2\nsite-title-foreground: <<colour tiddler-title-foreground>>\nstatic-alert-foreground: #dc322f\ntab-background-selected: #fdf6e3\ntab-background: #839496\ntab-border-selected: #93a1a1\ntab-border: #93a1a1\ntab-divider: #fdf6e3\ntab-foreground-selected: #839496\ntab-foreground: #eee8d5\ntable-border: #657b83\ntable-footer-background: #657b83\ntable-header-background: #93a1a1\ntag-background: #6c71c4\ntag-foreground: #eee8d5\ntiddler-background: <<colour background>>\ntiddler-border: <<colour background>>\ntiddler-controls-foreground-hover: #b58900\ntiddler-controls-foreground-selected: #b58900\ntiddler-controls-foreground: #073642\ntiddler-editor-background: #eee8d5\ntiddler-editor-border-image: #eee8d5\ntiddler-editor-border: #eee8d5\ntiddler-editor-fields-even: #eee8d5\ntiddler-editor-fields-odd: #fdf6e3\ntiddler-info-background: #eee8d5\ntiddler-info-border: #eee8d5\ntiddler-info-tab-background: #586e75\ntiddler-link-background: <<colour background>>\ntiddler-link-foreground: <<colour primary>>\ntiddler-subtitle-foreground: #586e75\ntiddler-title-foreground: #073642\ntoolbar-new-button: \ntoolbar-options-button: \ntoolbar-save-button: \ntoolbar-info-button: \ntoolbar-edit-button: \ntoolbar-close-button: \ntoolbar-delete-button: \ntoolbar-cancel-button: \ntoolbar-done-button: \nuntagged-background: #839496\nvery-muted-foreground: #93a1a1\n"
},
"$:/palettes/SpartanDay": {
"title": "$:/palettes/SpartanDay",
"tags": "$:/tags/Palette",
"type": "application/x-tiddler-dictionary",
"description": "Cold, spartan day colors",
"name": "Spartan Day",
"text": "alert-background: <<colour background>>\nalert-border: <<colour very-muted-foreground>>\nalert-highlight: <<colour very-muted-foreground>>\nalert-muted-foreground: <<colour muted-foreground>>\nbackground: #FAFAFA\nblockquote-bar: <<colour page-background>>\nbutton-background: transparent\nbutton-foreground: inherit\nbutton-border: <<colour tag-background>>\ncode-background: #ececec\ncode-border: #ececec\ncode-foreground: \ndirty-indicator: #c80000\ndownload-background: <<colour primary>>\ndownload-foreground: <<colour background>>\ndragger-background: <<colour foreground>>\ndragger-foreground: <<colour background>>\ndropdown-background: #FFFFFF\ndropdown-border: <<colour dropdown-background>>\ndropdown-tab-background-selected: <<colour dropdown-background>>\ndropdown-tab-background: #F5F5F5\ndropzone-background: <<colour tag-background>>\nexternal-link-background-hover: transparent\nexternal-link-background-visited: transparent\nexternal-link-background: transparent\nexternal-link-foreground-hover: \nexternal-link-foreground-visited: \nexternal-link-foreground: \nforeground: rgba(0, 0, 0, 0.87)\nmessage-background: <<colour background>>\nmessage-border: <<colour very-muted-foreground>>\nmessage-foreground: rgba(0, 0, 0, 0.54)\nmodal-backdrop: <<colour foreground>>\nmodal-background: <<colour background>>\nmodal-border: <<colour very-muted-foreground>>\nmodal-footer-background: <<colour background>>\nmodal-footer-border: <<colour very-muted-foreground>>\nmodal-header-border: <<colour very-muted-foreground>>\nmuted-foreground: rgba(0, 0, 0, 0.54)\nnotification-background: <<colour dropdown-background>>\nnotification-border: <<colour dropdown-background>>\npage-background: #f4f4f4\npre-background: #ececec\npre-border: #ececec\nprimary: #3949ab\nselect-tag-background: <<colour background>>\nselect-tag-foreground: <<colour foreground>>\nsidebar-button-foreground: <<colour foreground>>\nsidebar-controls-foreground-hover: #aeaeae\nsidebar-controls-foreground: #c6c6c6\nsidebar-foreground-shadow: transparent\nsidebar-foreground: rgba(0, 0, 0, 0.54)\nsidebar-muted-foreground-hover: rgba(0, 0, 0, 0.54)\nsidebar-muted-foreground: rgba(0, 0, 0, 0.38)\nsidebar-tab-background-selected: <<colour page-background>>\nsidebar-tab-background: transparent\nsidebar-tab-border-selected: <<colour table-border>>\nsidebar-tab-border: transparent\nsidebar-tab-divider: <<colour table-border>>\nsidebar-tab-foreground-selected: rgba(0, 0, 0, 0.87)\nsidebar-tab-foreground: rgba(0, 0, 0, 0.54)\nsidebar-tiddler-link-foreground-hover: rgba(0, 0, 0, 0.87)\nsidebar-tiddler-link-foreground: rgba(0, 0, 0, 0.54)\nsite-title-foreground: rgba(0, 0, 0, 0.87)\nstatic-alert-foreground: #aaaaaa\ntab-background-selected: <<colour background>>\ntab-background: transparent\ntab-border-selected: <<colour table-border>>\ntab-border: transparent\ntab-divider: <<colour table-border>>\ntab-foreground-selected: rgba(0, 0, 0, 0.87)\ntab-foreground: rgba(0, 0, 0, 0.54)\ntable-border: #d8d8d8\ntable-footer-background: <<colour tiddler-editor-fields-odd>>\ntable-header-background: <<colour tiddler-editor-fields-even>>\ntag-background: #ec6\ntag-foreground: <<colour button-foreground>>\ntiddler-background: <<colour background>>\ntiddler-border: #f9f9f9\ntiddler-controls-foreground-hover: <<colour sidebar-controls-foreground-hover>>\ntiddler-controls-foreground-selected: <<colour sidebar-controls-foreground-hover>>\ntiddler-controls-foreground: <<colour sidebar-controls-foreground>>\ntiddler-editor-background: transparent\ntiddler-editor-border-image: \ntiddler-editor-border: #e8e7e7\ntiddler-editor-fields-even: rgba(0, 0, 0, 0.1)\ntiddler-editor-fields-odd: rgba(0, 0, 0, 0.04)\ntiddler-info-background: #F5F5F5\ntiddler-info-border: #F5F5F5\ntiddler-info-tab-background: <<colour tiddler-editor-fields-odd>>\ntiddler-link-background: <<colour background>>\ntiddler-link-foreground: <<colour primary>>\ntiddler-subtitle-foreground: <<colour muted-foreground>>\ntiddler-title-foreground: #000000\ntoolbar-new-button: \ntoolbar-options-button: \ntoolbar-save-button: \ntoolbar-info-button: \ntoolbar-edit-button: \ntoolbar-close-button: \ntoolbar-delete-button: \ntoolbar-cancel-button: \ntoolbar-done-button: \nuntagged-background: <<colour very-muted-foreground>>\nvery-muted-foreground: rgba(0, 0, 0, 0.12)\n"
},
"$:/palettes/SpartanNight": {
"title": "$:/palettes/SpartanNight",
"tags": "$:/tags/Palette",
"type": "application/x-tiddler-dictionary",
"description": "Dark spartan colors",
"name": "Spartan Night",
"text": "alert-background: <<colour background>>\nalert-border: <<colour very-muted-foreground>>\nalert-highlight: <<colour very-muted-foreground>>\nalert-muted-foreground: <<colour muted-foreground>>\nbackground: #303030\nblockquote-bar: <<colour page-background>>\nbutton-background: transparent\nbutton-foreground: inherit\nbutton-border: <<colour tag-background>>\ncode-background: <<colour pre-background>>\ncode-border: <<colour pre-border>>\ncode-foreground: rgba(255, 255, 255, 0.54)\ndirty-indicator: #c80000\ndownload-background: <<colour primary>>\ndownload-foreground: <<colour foreground>>\ndragger-background: <<colour foreground>>\ndragger-foreground: <<colour background>>\ndropdown-background: #424242\ndropdown-border: <<colour dropdown-background>>\ndropdown-tab-background-selected: <<colour dropdown-background>>\ndropdown-tab-background: #050505\ndropzone-background: <<colour tag-background>>\nexternal-link-background-hover: transparent\nexternal-link-background-visited: transparent\nexternal-link-background: transparent\nexternal-link-foreground-hover: \nexternal-link-foreground-visited: #7c318c\nexternal-link-foreground: #9e3eb3\nforeground: rgba(255, 255, 255, 0.7)\nmessage-background: <<colour background>>\nmessage-border: <<colour very-muted-foreground>>\nmessage-foreground: rgba(255, 255, 255, 0.54)\nmodal-backdrop: <<colour page-background>>\nmodal-background: <<colour background>>\nmodal-border: <<colour very-muted-foreground>>\nmodal-footer-background: <<colour background>>\nmodal-footer-border: <<colour background>>\nmodal-header-border: <<colour very-muted-foreground>>\nmuted-foreground: rgba(255, 255, 255, 0.54)\nnotification-background: <<colour dropdown-background>>\nnotification-border: <<colour dropdown-background>>\npage-background: #212121\npre-background: #2a2a2a\npre-border: transparent\nprimary: #5656f3\nselect-tag-background: <<colour background>>\nselect-tag-foreground: <<colour foreground>>\nsidebar-button-foreground: <<colour foreground>>\nsidebar-controls-foreground-hover: #494949\nsidebar-controls-foreground: #5d5d5d\nsidebar-foreground-shadow: transparent\nsidebar-foreground: rgba(255, 255, 255, 0.54)\nsidebar-muted-foreground-hover: rgba(255, 255, 255, 0.54)\nsidebar-muted-foreground: rgba(255, 255, 255, 0.38)\nsidebar-tab-background-selected: <<colour page-background>>\nsidebar-tab-background: transparent\nsidebar-tab-border-selected: <<colour table-border>>\nsidebar-tab-border: transparent\nsidebar-tab-divider: <<colour table-border>>\nsidebar-tab-foreground-selected: rgba(255, 255, 255, 0.87)\nsidebar-tab-foreground: rgba(255, 255, 255, 0.54)\nsidebar-tiddler-link-foreground-hover: rgba(255, 255, 255, 0.7)\nsidebar-tiddler-link-foreground: rgba(255, 255, 255, 0.54)\nsite-title-foreground: rgba(255, 255, 255, 0.7)\nstatic-alert-foreground: #aaaaaa\ntab-background-selected: <<colour background>>\ntab-background: transparent\ntab-border-selected: <<colour table-border>>\ntab-border: transparent\ntab-divider: <<colour table-border>>\ntab-foreground-selected: rgba(255, 255, 255, 0.87)\ntab-foreground: rgba(255, 255, 255, 0.54)\ntable-border: #3a3a3a\ntable-footer-background: <<colour tiddler-editor-fields-odd>>\ntable-header-background: <<colour tiddler-editor-fields-even>>\ntag-background: #ec6\ntag-foreground: <<colour button-foreground>>\ntiddler-background: <<colour background>>\ntiddler-border: rgb(55,55,55)\ntiddler-controls-foreground-hover: <<colour sidebar-controls-foreground-hover>>\ntiddler-controls-foreground-selected: <<colour sidebar-controls-foreground-hover>>\ntiddler-controls-foreground: <<colour sidebar-controls-foreground>>\ntiddler-editor-background: transparent\ntiddler-editor-border-image: \ntiddler-editor-border: rgba(255, 255, 255, 0.08)\ntiddler-editor-fields-even: rgba(255, 255, 255, 0.1)\ntiddler-editor-fields-odd: rgba(255, 255, 255, 0.04)\ntiddler-info-background: #454545\ntiddler-info-border: #454545\ntiddler-info-tab-background: <<colour tiddler-editor-fields-odd>>\ntiddler-link-background: <<colour background>>\ntiddler-link-foreground: <<colour primary>>\ntiddler-subtitle-foreground: <<colour muted-foreground>>\ntiddler-title-foreground: #FFFFFF\ntoolbar-new-button: \ntoolbar-options-button: \ntoolbar-save-button: \ntoolbar-info-button: \ntoolbar-edit-button: \ntoolbar-close-button: \ntoolbar-delete-button: \ntoolbar-cancel-button: \ntoolbar-done-button: \nuntagged-background: <<colour very-muted-foreground>>\nvery-muted-foreground: rgba(255, 255, 255, 0.12)\n"
},
"$:/palettes/Twilight": {
"title": "$:/palettes/Twilight",
"tags": "$:/tags/Palette",
"author": "Thomas Elmiger",
"type": "application/x-tiddler-dictionary",
"name": "Twilight",
"description": "Delightful, soft darkness.",
"text": "alert-background: rgb(255, 255, 102)\nalert-border: rgb(232, 232, 125)\nalert-highlight: rgb(255, 51, 51)\nalert-muted-foreground: rgb(224, 82, 82)\nbackground: rgb(38, 38, 38)\nblockquote-bar: rgba(240, 196, 117, 0.7)\nbutton-background: rgb(63, 63, 63)\nbutton-border: rgb(127, 127, 127)\nbutton-foreground: rgb(179, 179, 179)\ncode-background: rgba(0,0,0,0.03)\ncode-border: rgba(0,0,0,0.08)\ncode-foreground: rgb(255, 94, 94)\ndiff-delete-background: #ffc9c9\ndiff-delete-foreground: <<colour foreground>>\ndiff-equal-background: \ndiff-equal-foreground: <<colour foreground>>\ndiff-insert-background: #aaefad\ndiff-insert-foreground: <<colour foreground>>\ndiff-invisible-background: \ndiff-invisible-foreground: <<colour muted-foreground>>\ndirty-indicator: rgb(255, 94, 94)\ndownload-background: #19a974\ndownload-foreground: rgb(38, 38, 38)\ndragger-background: rgb(179, 179, 179)\ndragger-foreground: rgb(38, 38, 38)\ndropdown-background: rgb(38, 38, 38)\ndropdown-border: rgb(255, 255, 255)\ndropdown-tab-background: rgba(0,0,0,.1)\ndropdown-tab-background-selected: rgba(255,255,255,1)\ndropzone-background: #9eebcf\nexternal-link-background: inherit\nexternal-link-background-hover: inherit\nexternal-link-background-visited: inherit\nexternal-link-foreground: rgb(179, 179, 255)\nexternal-link-foreground-hover: inherit\nexternal-link-foreground-visited: rgb(153, 153, 255)\nforeground: rgb(179, 179, 179)\nmessage-background: <<colour tag-foreground>>\nmessage-border: #96ccff\nmessage-foreground: <<colour tag-background>>\nmodal-backdrop: rgb(179, 179, 179)\nmodal-background: rgb(38, 38, 38)\nmodal-border: rgba(0,0,0,.5)\nmodal-footer-background: #f4f4f4\nmodal-footer-border: rgba(0,0,0,.1)\nmodal-header-border: rgba(0,0,0,.2)\nmuted-foreground: rgb(255, 255, 255)\nnotification-background: <<colour tag-foreground>>\nnotification-border: <<colour tag-background>>\npage-background: rgb(26, 26, 26)\npre-background: rgb(25, 25, 25)\npre-border: rgba(0,0,0,.2)\nprimary: rgb(255, 201, 102)\nselect-tag-background: \nselect-tag-foreground: \nsidebar-button-foreground: rgb(179, 179, 179)\nsidebar-controls-foreground: rgb(153, 153, 153)\nsidebar-controls-foreground-hover: <<colour tiddler-controls-foreground-hover>>\nsidebar-foreground: rgb(141, 141, 141)\nsidebar-foreground-shadow: transparent\nsidebar-muted-foreground: rgba(0, 0, 0, 0.5)\nsidebar-muted-foreground-hover: rgb(141, 141, 141)\nsidebar-tab-background: rgba(141, 141, 141, 0.2)\nsidebar-tab-background-selected: rgb(26, 26, 26)\nsidebar-tab-border: rgb(127, 127, 127)\nsidebar-tab-border-selected: rgb(127, 127, 127)\nsidebar-tab-divider: rgb(127, 127, 127)\nsidebar-tab-foreground: rgb(179, 179, 179)\nsidebar-tab-foreground-selected: rgb(179, 179, 179)\nsidebar-tiddler-link-foreground: rgb(179, 179, 179)\nsidebar-tiddler-link-foreground-hover: rgb(115, 115, 115)\nsite-title-foreground: rgb(255, 201, 102)\nstatic-alert-foreground: rgba(0,0,0,.3)\ntab-background: rgba(0,0,0,0.125)\ntab-background-selected: rgb(38, 38, 38)\ntab-border: rgb(255, 201, 102)\ntab-border-selected: rgb(255, 201, 102)\ntab-divider: rgb(255, 201, 102)\ntab-foreground: rgb(179, 179, 179)\ntab-foreground-selected: rgb(179, 179, 179)\ntable-border: rgba(255,255,255,.3)\ntable-footer-background: rgba(0,0,0,.4)\ntable-header-background: rgba(0,0,0,.1)\ntag-background: rgb(255, 201, 102)\ntag-foreground: rgb(25, 25, 25)\ntiddler-background: rgb(38, 38, 38)\ntiddler-border: rgba(240, 196, 117, 0.7)\ntiddler-controls-foreground: rgb(128, 128, 128)\ntiddler-controls-foreground-hover: rgba(255, 255, 255, 0.8)\ntiddler-controls-foreground-selected: rgba(255, 255, 255, 0.9)\ntiddler-editor-background: rgb(33, 33, 33)\ntiddler-editor-border: rgb(63, 63, 63)\ntiddler-editor-border-image: rgb(25, 25, 25)\ntiddler-editor-fields-even: rgb(33, 33, 33)\ntiddler-editor-fields-odd: rgb(28, 28, 28)\ntiddler-info-background: rgb(43, 43, 43)\ntiddler-info-border: rgb(25, 25, 25)\ntiddler-info-tab-background: rgb(43, 43, 43)\ntiddler-link-background: rgb(38, 38, 38)\ntiddler-link-foreground: rgb(204, 204, 255)\ntiddler-subtitle-foreground: rgb(255, 255, 255)\ntiddler-title-foreground: rgb(255, 192, 76)\ntoolbar-cancel-button: \ntoolbar-close-button: \ntoolbar-delete-button: \ntoolbar-done-button: \ntoolbar-edit-button: \ntoolbar-info-button: \ntoolbar-new-button: \ntoolbar-options-button: \ntoolbar-save-button: \nuntagged-background: rgb(255, 255, 255)\nvery-muted-foreground: rgba(240, 196, 117, 0.7)\n"
},
"$:/palettes/Vanilla": {
"title": "$:/palettes/Vanilla",
"name": "Vanilla",
"description": "Pale and unobtrusive",
"tags": "$:/tags/Palette",
"type": "application/x-tiddler-dictionary",
"text": "alert-background: #ffe476\nalert-border: #b99e2f\nalert-highlight: #881122\nalert-muted-foreground: #b99e2f\nbackground: #ffffff\nblockquote-bar: <<colour muted-foreground>>\nbutton-background:\nbutton-foreground:\nbutton-border:\ncode-background: #f7f7f9\ncode-border: #e1e1e8\ncode-foreground: #dd1144\ndiff-delete-background: #ffc9c9\ndiff-delete-foreground: <<colour foreground>>\ndiff-equal-background: \ndiff-equal-foreground: <<colour foreground>>\ndiff-insert-background: #aaefad\ndiff-insert-foreground: <<colour foreground>>\ndiff-invisible-background: \ndiff-invisible-foreground: <<colour muted-foreground>>\ndirty-indicator: #ff0000\ndownload-background: #34c734\ndownload-foreground: <<colour background>>\ndragger-background: <<colour foreground>>\ndragger-foreground: <<colour background>>\ndropdown-background: <<colour background>>\ndropdown-border: <<colour muted-foreground>>\ndropdown-tab-background-selected: #fff\ndropdown-tab-background: #ececec\ndropzone-background: rgba(0,200,0,0.7)\nexternal-link-background-hover: inherit\nexternal-link-background-visited: inherit\nexternal-link-background: inherit\nexternal-link-foreground-hover: inherit\nexternal-link-foreground-visited: #0000aa\nexternal-link-foreground: #0000ee\nforeground: #333333\nmessage-background: #ecf2ff\nmessage-border: #cfd6e6\nmessage-foreground: #547599\nmodal-backdrop: <<colour foreground>>\nmodal-background: <<colour background>>\nmodal-border: #999999\nmodal-footer-background: #f5f5f5\nmodal-footer-border: #dddddd\nmodal-header-border: #eeeeee\nmuted-foreground: #bbb\nnotification-background: #ffffdd\nnotification-border: #999999\npage-background: #f4f4f4\npre-background: #f5f5f5\npre-border: #cccccc\nprimary: #5778d8\nselect-tag-background:\nselect-tag-foreground:\nsidebar-button-foreground: <<colour foreground>>\nsidebar-controls-foreground-hover: #000000\nsidebar-controls-foreground: #aaaaaa\nsidebar-foreground-shadow: rgba(255,255,255, 0.8)\nsidebar-foreground: #acacac\nsidebar-muted-foreground-hover: #444444\nsidebar-muted-foreground: #c0c0c0\nsidebar-tab-background-selected: #f4f4f4\nsidebar-tab-background: #e0e0e0\nsidebar-tab-border-selected: <<colour tab-border-selected>>\nsidebar-tab-border: <<colour tab-border>>\nsidebar-tab-divider: #e4e4e4\nsidebar-tab-foreground-selected:\nsidebar-tab-foreground: <<colour tab-foreground>>\nsidebar-tiddler-link-foreground-hover: #444444\nsidebar-tiddler-link-foreground: #999999\nsite-title-foreground: <<colour tiddler-title-foreground>>\nstatic-alert-foreground: #aaaaaa\ntab-background-selected: #ffffff\ntab-background: #d8d8d8\ntab-border-selected: #d8d8d8\ntab-border: #cccccc\ntab-divider: #d8d8d8\ntab-foreground-selected: <<colour tab-foreground>>\ntab-foreground: #666666\ntable-border: #dddddd\ntable-footer-background: #a8a8a8\ntable-header-background: #f0f0f0\ntag-background: #ec6\ntag-foreground: #ffffff\ntiddler-background: <<colour background>>\ntiddler-border: <<colour background>>\ntiddler-controls-foreground-hover: #888888\ntiddler-controls-foreground-selected: #444444\ntiddler-controls-foreground: #cccccc\ntiddler-editor-background: #f8f8f8\ntiddler-editor-border-image: #ffffff\ntiddler-editor-border: #cccccc\ntiddler-editor-fields-even: #e0e8e0\ntiddler-editor-fields-odd: #f0f4f0\ntiddler-info-background: #f8f8f8\ntiddler-info-border: #dddddd\ntiddler-info-tab-background: #f8f8f8\ntiddler-link-background: <<colour background>>\ntiddler-link-foreground: <<colour primary>>\ntiddler-subtitle-foreground: #c0c0c0\ntiddler-title-foreground: #182955\ntoolbar-new-button:\ntoolbar-options-button:\ntoolbar-save-button:\ntoolbar-info-button:\ntoolbar-edit-button:\ntoolbar-close-button:\ntoolbar-delete-button:\ntoolbar-cancel-button:\ntoolbar-done-button:\nuntagged-background: #999999\nvery-muted-foreground: #888888\n"
},
"$:/core/readme": {
"title": "$:/core/readme",
"text": "This plugin contains TiddlyWiki's core components, comprising:\n\n* JavaScript code modules\n* Icons\n* Templates needed to create TiddlyWiki's user interface\n* British English (''en-GB'') translations of the localisable strings used by the core\n"
},
"$:/library/sjcl.js/license": {
"title": "$:/library/sjcl.js/license",
"type": "text/plain",
"text": "SJCL is open. You can use, modify and redistribute it under a BSD\nlicense or under the GNU GPL, version 2.0.\n\n---------------------------------------------------------------------\n\nhttp://opensource.org/licenses/BSD-2-Clause\n\nCopyright (c) 2009-2015, Emily Stark, Mike Hamburg and Dan Boneh at\nStanford University. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n1. Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright\nnotice, this list of conditions and the following disclaimer in the\ndocumentation and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS\nIS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\nTO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\nPARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nHOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED\nTO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n---------------------------------------------------------------------\n\nhttp://opensource.org/licenses/GPL-2.0\n\nThe Stanford Javascript Crypto Library (hosted here on GitHub) is a\nproject by the Stanford Computer Security Lab to build a secure,\npowerful, fast, small, easy-to-use, cross-browser library for\ncryptography in Javascript.\n\nCopyright (c) 2009-2015, Emily Stark, Mike Hamburg and Dan Boneh at\nStanford University.\n\nThis program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the\nFree Software Foundation; either version 2 of the License, or (at your\noption) any later version.\n\nThis program is distributed in the hope that it will be useful, but\nWITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General\nPublic License for more details.\n\nYou should have received a copy of the GNU General Public License along\nwith this program; if not, write to the Free Software Foundation, Inc.,\n59 Temple Place, Suite 330, Boston, MA 02111-1307 USA"
},
"$:/core/templates/MOTW.html": {
"title": "$:/core/templates/MOTW.html",
"text": "\\rules only filteredtranscludeinline transcludeinline entity\n<!-- The following comment is called a MOTW comment and is necessary for the TiddlyIE Internet Explorer extension -->\n<!-- saved from url=(0021)https://tiddlywiki.com --> "
},
"$:/core/templates/alltiddlers.template.html": {
"title": "$:/core/templates/alltiddlers.template.html",
"type": "text/vnd.tiddlywiki-html",
"text": "<!-- This template is provided for backwards compatibility with older versions of TiddlyWiki -->\n\n<$set name=\"exportFilter\" value=\"[!is[system]sort[title]]\">\n\n{{$:/core/templates/exporters/StaticRiver}}\n\n</$set>\n"
},
"$:/core/templates/canonical-uri-external-image": {
"title": "$:/core/templates/canonical-uri-external-image",
"text": "<!--\n\nThis template is used to assign the ''_canonical_uri'' field to external images.\n\nChange the `./images/` part to a different base URI. The URI can be relative or absolute.\n\n-->\n./images/<$view field=\"title\" format=\"doubleurlencoded\"/>"
},
"$:/core/templates/canonical-uri-external-raw": {
"title": "$:/core/templates/canonical-uri-external-raw",
"text": "<!--\n\nThis template is used to assign the ''_canonical_uri'' field to external raw files that are stored in the same directory\n\n-->\n<$view field=\"title\" format=\"doubleurlencoded\"/>"
},
"$:/core/templates/canonical-uri-external-text": {
"title": "$:/core/templates/canonical-uri-external-text",
"text": "<!--\n\nThis template is used to assign the ''_canonical_uri'' field to external text files.\n\nChange the `./text/` part to a different base URI. The URI can be relative or absolute.\n\n-->\n./text/<$view field=\"title\" format=\"doubleurlencoded\"/>.tid"
},
"$:/core/templates/css-tiddler": {
"title": "$:/core/templates/css-tiddler",
"text": "<!--\n\nThis template is used for saving CSS tiddlers as a style tag with data attributes representing the tiddler fields.\n\n-->`<style`<$fields template=' data-tiddler-$name$=\"$encoded_value$\"'></$fields>` type=\"text/css\">`<$view field=\"text\" format=\"text\" />`</style>`"
},
"$:/core/templates/exporters/CsvFile": {
"title": "$:/core/templates/exporters/CsvFile",
"tags": "$:/tags/Exporter",
"description": "{{$:/language/Exporters/CsvFile}}",
"extension": ".csv",
"text": "\\define renderContent()\n<$text text=<<csvtiddlers filter:\"\"\"$(exportFilter)$\"\"\" format:\"quoted-comma-sep\">>/>\n\\end\n<<renderContent>>\n"
},
"$:/core/templates/exporters/JsonFile": {
"title": "$:/core/templates/exporters/JsonFile",
"tags": "$:/tags/Exporter",
"description": "{{$:/language/Exporters/JsonFile}}",
"extension": ".json",
"text": "\\define renderContent()\n<$text text=<<jsontiddlers filter:\"\"\"$(exportFilter)$\"\"\">>/>\n\\end\n<<renderContent>>\n"
},
"$:/core/templates/exporters/StaticRiver": {
"title": "$:/core/templates/exporters/StaticRiver",
"tags": "$:/tags/Exporter",
"description": "{{$:/language/Exporters/StaticRiver}}",
"extension": ".html",
"text": "\\define tv-wikilink-template() #$uri_encoded$\n\\define tv-config-toolbar-icons() no\n\\define tv-config-toolbar-text() no\n\\define tv-config-toolbar-class() tc-btn-invisible\n\\rules only filteredtranscludeinline transcludeinline\n<!doctype html>\n<html>\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\" />\n<meta name=\"generator\" content=\"TiddlyWiki\" />\n<meta name=\"tiddlywiki-version\" content=\"{{$:/core/templates/version}}\" />\n<meta name=\"format-detection\" content=\"telephone=no\">\n<link id=\"faviconLink\" rel=\"shortcut icon\" href=\"favicon.ico\">\n<title>{{$:/core/wiki/title}}</title>\n<div id=\"styleArea\">\n{{$:/boot/boot.css||$:/core/templates/css-tiddler}}\n</div>\n<style type=\"text/css\">\n{{$:/core/ui/PageStylesheet||$:/core/templates/wikified-tiddler}}\n</style>\n</head>\n<body class=\"tc-body\">\n{{$:/StaticBanner||$:/core/templates/html-tiddler}}\n<section class=\"tc-story-river\">\n{{$:/core/templates/exporters/StaticRiver/Content||$:/core/templates/html-tiddler}}\n</section>\n</body>\n</html>\n"
},
"$:/core/templates/exporters/StaticRiver/Content": {
"title": "$:/core/templates/exporters/StaticRiver/Content",
"text": "\\define renderContent()\n{{{ $(exportFilter)$ ||$:/core/templates/static-tiddler}}}\n\\end\n\\import [[$:/core/ui/PageMacros]] [all[shadows+tiddlers]tag[$:/tags/Macro]!has[draft.of]]\n<<renderContent>>\n"
},
"$:/core/templates/exporters/TidFile": {
"title": "$:/core/templates/exporters/TidFile",
"tags": "$:/tags/Exporter",
"description": "{{$:/language/Exporters/TidFile}}",
"extension": ".tid",
"text": "\\define renderContent()\n{{{ $(exportFilter)$ +[limit[1]] ||$:/core/templates/tid-tiddler}}}\n\\end\n\\import [[$:/core/ui/PageMacros]] [all[shadows+tiddlers]tag[$:/tags/Macro]!has[draft.of]]\n<<renderContent>>"
},
"$:/core/save/all-external-js": {
"title": "$:/core/save/all-external-js",
"text": "\\define saveTiddlerFilter()\n[is[tiddler]] -[prefix[$:/state/popup/]] -[[$:/HistoryList]] -[[$:/core]] -[[$:/boot/boot.css]] -[type[application/javascript]library[yes]] -[[$:/boot/boot.js]] -[[$:/boot/bootprefix.js]] +[sort[title]] $(publishFilter)$\n\\end\n{{$:/core/templates/tiddlywiki5-external-js.html}}\n"
},
"$:/core/templates/tiddlywiki5.js": {
"title": "$:/core/templates/tiddlywiki5.js",
"text": "\\rules only filteredtranscludeinline transcludeinline codeinline\n\n/*\n{{ $:/core/copyright.txt ||$:/core/templates/plain-text-tiddler}}\n`*/\n`<!--~~ Library modules ~~-->\n{{{ [is[system]type[application/javascript]library[yes]] ||$:/core/templates/plain-text-tiddler}}}\n<!--~~ Boot prefix ~~-->\n{{ $:/boot/bootprefix.js ||$:/core/templates/plain-text-tiddler}}\n<!--~~ Core plugin ~~-->\n{{$:/core/templates/tiddlywiki5.js/tiddlers}}\n<!--~~ Boot kernel ~~-->\n{{ $:/boot/boot.js ||$:/core/templates/plain-text-tiddler}}\n"
},
"$:/core/templates/tiddlywiki5.js/tiddlers": {
"title": "$:/core/templates/tiddlywiki5.js/tiddlers",
"text": "`\n$tw.preloadTiddlerArray(`<$text text=<<jsontiddlers \"[[$:/core]]\">>/>`);\n$tw.preloadTiddlerArray([{\n\ttitle: \"$:/config/SaveWikiButton/Template\",\n\ttext: \"$:/core/save/all-external-js\"\n}]);\n`\n"
},
"$:/core/templates/tiddlywiki5-external-js.html": {
"title": "$:/core/templates/tiddlywiki5-external-js.html",
"text": "\\rules only filteredtranscludeinline transcludeinline\n<!doctype html>\n{{$:/core/templates/MOTW.html}}<html>\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\" />\n<!--~~ Raw markup for the top of the head section ~~-->\n{{{ [all[shadows+tiddlers]tag[$:/tags/RawMarkupWikified/TopHead]] ||$:/core/templates/raw-static-tiddler}}}\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge\"/>\n<meta name=\"application-name\" content=\"TiddlyWiki\" />\n<meta name=\"generator\" content=\"TiddlyWiki\" />\n<meta name=\"tiddlywiki-version\" content=\"{{$:/core/templates/version}}\" />\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\n<meta name=\"apple-mobile-web-app-capable\" content=\"yes\" />\n<meta name=\"apple-mobile-web-app-status-bar-style\" content=\"black-translucent\" />\n<meta name=\"mobile-web-app-capable\" content=\"yes\"/>\n<meta name=\"format-detection\" content=\"telephone=no\" />\n<meta name=\"copyright\" content=\"{{$:/core/copyright.txt}}\" />\n<link id=\"faviconLink\" rel=\"shortcut icon\" href=\"favicon.ico\">\n<title>{{$:/core/wiki/title}}</title>\n<!--~~ This is a Tiddlywiki file. The points of interest in the file are marked with this pattern ~~-->\n\n<!--~~ Raw markup ~~-->\n{{{ [all[shadows+tiddlers]tag[$:/core/wiki/rawmarkup]] [all[shadows+tiddlers]tag[$:/tags/RawMarkup]] ||$:/core/templates/plain-text-tiddler}}}\n{{{ [all[shadows+tiddlers]tag[$:/tags/RawMarkupWikified]] ||$:/core/templates/raw-static-tiddler}}}\n</head>\n<body class=\"tc-body\">\n<!--~~ Raw markup for the top of the body section ~~-->\n{{{ [all[shadows+tiddlers]tag[$:/tags/RawMarkupWikified/TopBody]] ||$:/core/templates/raw-static-tiddler}}}\n<!--~~ Static styles ~~-->\n<div id=\"styleArea\">\n{{$:/boot/boot.css||$:/core/templates/css-tiddler}}\n</div>\n<!--~~ Static content for Google and browsers without JavaScript ~~-->\n<noscript>\n<div id=\"splashArea\">\n{{$:/core/templates/static.area}}\n</div>\n</noscript>\n<!--~~ Ordinary tiddlers ~~-->\n{{$:/core/templates/store.area.template.html}}\n<!--~~ Raw markup for the bottom of the body section ~~-->\n{{{ [all[shadows+tiddlers]tag[$:/tags/RawMarkupWikified/BottomBody]] ||$:/core/templates/raw-static-tiddler}}}\n</body>\n<script src=\"%24%3A%2Fcore%2Ftemplates%2Ftiddlywiki5.js\" onerror=\"alert('Error: Cannot load tiddlywiki.js');\"></script>\n</html>\n"
},
"$:/core/templates/html-div-tiddler": {
"title": "$:/core/templates/html-div-tiddler",
"text": "<!--\n\nThis template is used for saving tiddlers as an HTML DIV tag with attributes representing the tiddler fields.\n\n-->`<div`<$fields template=' $name$=\"$encoded_value$\"'></$fields>`>\n<pre>`<$view field=\"text\" format=\"htmlencoded\" />`</pre>\n</div>`\n"
},
"$:/core/templates/html-tiddler": {
"title": "$:/core/templates/html-tiddler",
"text": "<!--\n\nThis template is used for saving tiddlers as raw HTML\n\n--><$view field=\"text\" format=\"htmlwikified\" />"
},
"$:/core/templates/javascript-tiddler": {
"title": "$:/core/templates/javascript-tiddler",
"text": "<!--\n\nThis template is used for saving JavaScript tiddlers as a script tag with data attributes representing the tiddler fields.\n\n-->`<script`<$fields template=' data-tiddler-$name$=\"$encoded_value$\"'></$fields>` type=\"text/javascript\">`<$view field=\"text\" format=\"text\" />`</script>`"
},
"$:/core/templates/json-tiddler": {
"title": "$:/core/templates/json-tiddler",
"text": "<!--\n\nThis template is used for saving tiddlers as raw JSON\n\n--><$text text=<<jsontiddler>>/>"
},
"$:/core/templates/module-tiddler": {
"title": "$:/core/templates/module-tiddler",
"text": "<!--\n\nThis template is used for saving JavaScript tiddlers as a script tag with data attributes representing the tiddler fields. The body of the tiddler is wrapped in a call to the `$tw.modules.define` function in order to define the body of the tiddler as a module\n\n-->`<script`<$fields template=' data-tiddler-$name$=\"$encoded_value$\"'></$fields>` type=\"text/javascript\" data-module=\"yes\">$tw.modules.define(\"`<$view field=\"title\" format=\"jsencoded\" />`\",\"`<$view field=\"module-type\" format=\"jsencoded\" />`\",function(module,exports,require) {`<$view field=\"text\" format=\"text\" />`});\n</script>`"
},
"$:/core/templates/plain-text-tiddler": {
"title": "$:/core/templates/plain-text-tiddler",
"text": "<$view field=\"text\" format=\"text\" />"
},
"$:/core/templates/raw-static-tiddler": {
"title": "$:/core/templates/raw-static-tiddler",
"text": "<!--\n\nThis template is used for saving tiddlers as static HTML\n\n--><$view field=\"text\" format=\"plainwikified\" />"
},
"$:/core/save/all": {
"title": "$:/core/save/all",
"text": "\\define saveTiddlerFilter()\n[is[tiddler]] -[prefix[$:/state/popup/]] -[[$:/HistoryList]] -[[$:/boot/boot.css]] -[type[application/javascript]library[yes]] -[[$:/boot/boot.js]] -[[$:/boot/bootprefix.js]] +[sort[title]] $(publishFilter)$\n\\end\n{{$:/core/templates/tiddlywiki5.html}}\n"
},
"$:/core/save/empty": {
"title": "$:/core/save/empty",
"text": "\\define saveTiddlerFilter()\n[is[system]] -[prefix[$:/state/popup/]] -[[$:/boot/boot.css]] -[type[application/javascript]library[yes]] -[[$:/boot/boot.js]] -[[$:/boot/bootprefix.js]] +[sort[title]]\n\\end\n{{$:/core/templates/tiddlywiki5.html}}\n"
},
"$:/core/save/lazy-all": {
"title": "$:/core/save/lazy-all",
"text": "\\define saveTiddlerFilter()\n[is[system]] -[prefix[$:/state/popup/]] -[[$:/HistoryList]] -[[$:/boot/boot.css]] -[type[application/javascript]library[yes]] -[[$:/boot/boot.js]] -[[$:/boot/bootprefix.js]] +[sort[title]] \n\\end\n{{$:/core/templates/tiddlywiki5.html}}\n"
},
"$:/core/save/lazy-images": {
"title": "$:/core/save/lazy-images",
"text": "\\define saveTiddlerFilter()\n[is[tiddler]] -[prefix[$:/state/popup/]] -[[$:/HistoryList]] -[[$:/boot/boot.css]] -[type[application/javascript]library[yes]] -[[$:/boot/boot.js]] -[[$:/boot/bootprefix.js]] -[!is[system]is[image]] +[sort[title]] \n\\end\n{{$:/core/templates/tiddlywiki5.html}}\n"
},
"$:/core/templates/server/static.sidebar.wikitext": {
"title": "$:/core/templates/server/static.sidebar.wikitext",
"text": "\\whitespace trim\n<div class=\"tc-sidebar-scrollable\" style=\"overflow: auto;\">\n<div class=\"tc-sidebar-header\">\n<h1 class=\"tc-site-title\">\n<$transclude tiddler=\"$:/SiteTitle\"/>\n</h1>\n<div class=\"tc-site-subtitle\">\n<$transclude tiddler=\"$:/SiteSubtitle\"/>\n</div>\n<h2>\n</h2>\n<div class=\"tc-sidebar-lists\">\n<$list filter={{$:/DefaultTiddlers}}>\n<div class=\"tc-menu-list-subitem\">\n<$link><$text text=<<currentTiddler>>/></$link>\n</div>\n</$list>\n</div>\n<!-- Currently disabled the recent list as it is unweildy when the responsive narrow view kicks in\n<h2>\n{{$:/language/SideBar/Recent/Caption}}\n</h2>\n<div class=\"tc-sidebar-lists\">\n<$macrocall $name=\"timeline\" format={{$:/language/RecentChanges/DateFormat}}/>\n</div>\n</div>\n</div>\n-->\n"
},
"$:/core/templates/server/static.tiddler.html": {
"title": "$:/core/templates/server/static.tiddler.html",
"text": "\\whitespace trim\n\\define tv-wikilink-template() $uri_encoded$\n\\import [[$:/core/ui/PageMacros]] [all[shadows+tiddlers]tag[$:/tags/Macro]!has[draft.of]]\n<html>\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\" />\n<meta name=\"generator\" content=\"TiddlyWiki\" />\n<meta name=\"tiddlywiki-version\" content={{$:/core/templates/version}} />\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\n<meta name=\"apple-mobile-web-app-capable\" content=\"yes\" />\n<meta name=\"apple-mobile-web-app-status-bar-style\" content=\"black-translucent\" />\n<meta name=\"mobile-web-app-capable\" content=\"yes\"/>\n<meta name=\"format-detection\" content=\"telephone=no\">\n<link id=\"faviconLink\" rel=\"shortcut icon\" href=\"favicon.ico\">\n<link rel=\"stylesheet\" href=\"%24%3A%2Fcore%2Ftemplates%2Fstatic.template.css\">\n<title><$view field=\"caption\" format=\"plainwikified\"><$view field=\"title\"/></$view>: <$view tiddler=\"$:/core/wiki/title\" format=\"plainwikified\"/></title>\n</head>\n<body class=\"tc-body\">\n<$transclude tiddler=\"$:/core/templates/server/static.sidebar.wikitext\" mode=\"inline\"/>\n<section class=\"tc-story-river\">\n<div class=\"tc-tiddler-frame\">\n<$transclude tiddler=\"$:/core/templates/server/static.tiddler.wikitext\" mode=\"inline\"/>\n</div>\n</section>\n</body>\n</html>"
},
"$:/core/templates/server/static.tiddler.wikitext": {
"title": "$:/core/templates/server/static.tiddler.wikitext",
"text": "\\whitespace trim\n<div class=\"tc-tiddler-title\">\n<div class=\"tc-titlebar\">\n<h2><$text text=<<currentTiddler>>/></h2>\n</div>\n</div>\n<div class=\"tc-subtitle\">\n<$link to={{!!modifier}}>\n<$view field=\"modifier\"/>\n</$link> <$view field=\"modified\" format=\"date\" template={{$:/language/Tiddler/DateFormat}}/>\n</div>\n<div class=\"tc-tags-wrapper\">\n<$list filter=\"[all[current]tags[]sort[title]]\">\n<a href={{{ [<currentTiddler>encodeuricomponent[]] }}}>\n<$macrocall $name=\"tag-pill\" tag=<<currentTiddler>>/>\n</a>\n</$list>\n</div>\n<div class=\"tc-tiddler-body\">\n<$transclude mode=\"block\"/>\n</div>\n"
},
"$:/core/templates/single.tiddler.window": {
"title": "$:/core/templates/single.tiddler.window",
"text": "<$set name=\"themeTitle\" value={{$:/view}}>\n\n<$set name=\"tempCurrentTiddler\" value=<<currentTiddler>>>\n\n<$set name=\"currentTiddler\" value={{$:/language}}>\n\n<$set name=\"languageTitle\" value={{!!name}}>\n\n<$set name=\"currentTiddler\" value=<<tempCurrentTiddler>>>\n\n<$importvariables filter=\"[[$:/core/ui/PageMacros]] [all[shadows+tiddlers]tag[$:/tags/Macro]!has[draft.of]]\">\n\n<$navigator story=\"$:/StoryList\" history=\"$:/HistoryList\">\n\n<$transclude mode=\"block\"/>\n\n</$navigator>\n\n</$importvariables>\n\n</$set>\n\n</$set>\n\n</$set>\n\n</$set>\n\n</$set>\n\n"
},
"$:/core/templates/split-recipe": {
"title": "$:/core/templates/split-recipe",
"text": "<$list filter=\"[!is[system]]\">\ntiddler: <$view field=\"title\" format=\"urlencoded\"/>.tid\n</$list>\n"
},
"$:/core/templates/static-tiddler": {
"title": "$:/core/templates/static-tiddler",
"text": "<a name=<<currentTiddler>>>\n<$transclude tiddler=\"$:/core/ui/ViewTemplate\"/>\n</a>"
},
"$:/core/templates/static.area": {
"title": "$:/core/templates/static.area",
"text": "<$reveal type=\"nomatch\" state=\"$:/isEncrypted\" text=\"yes\">\n{{{ [all[shadows+tiddlers]tag[$:/tags/RawStaticContent]!has[draft.of]] ||$:/core/templates/raw-static-tiddler}}}\n{{$:/core/templates/static.content||$:/core/templates/html-tiddler}}\n</$reveal>\n<$reveal type=\"match\" state=\"$:/isEncrypted\" text=\"yes\">\nThis file contains an encrypted ~TiddlyWiki. Enable ~JavaScript and enter the decryption password when prompted.\n</$reveal>\n"
},
"$:/core/templates/static.content": {
"title": "$:/core/templates/static.content",
"text": "<!-- For Google, and people without JavaScript-->\nThis [[TiddlyWiki|https://tiddlywiki.com]] contains the following tiddlers:\n\n<ul>\n<$list filter=<<saveTiddlerFilter>>>\n<li><$view field=\"title\" format=\"text\"></$view></li>\n</$list>\n</ul>\n"
},
"$:/core/templates/static.template.css": {
"title": "$:/core/templates/static.template.css",
"text": "{{$:/boot/boot.css||$:/core/templates/plain-text-tiddler}}\n\n{{$:/core/ui/PageStylesheet||$:/core/templates/wikified-tiddler}}\n"
},
"$:/core/templates/static.template.html": {
"title": "$:/core/templates/static.template.html",
"type": "text/vnd.tiddlywiki-html",
"text": "\\define tv-wikilink-template() static/$uri_doubleencoded$.html\n\\define tv-config-toolbar-icons() no\n\\define tv-config-toolbar-text() no\n\\define tv-config-toolbar-class() tc-btn-invisible\n\\rules only filteredtranscludeinline transcludeinline\n<!doctype html>\n<html>\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\" />\n<meta name=\"generator\" content=\"TiddlyWiki\" />\n<meta name=\"tiddlywiki-version\" content=\"{{$:/core/templates/version}}\" />\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\n<meta name=\"apple-mobile-web-app-capable\" content=\"yes\" />\n<meta name=\"apple-mobile-web-app-status-bar-style\" content=\"black-translucent\" />\n<meta name=\"mobile-web-app-capable\" content=\"yes\"/>\n<meta name=\"format-detection\" content=\"telephone=no\">\n<link id=\"faviconLink\" rel=\"shortcut icon\" href=\"favicon.ico\">\n<title>{{$:/core/wiki/title}}</title>\n<div id=\"styleArea\">\n{{$:/boot/boot.css||$:/core/templates/css-tiddler}}\n</div>\n<style type=\"text/css\">\n{{$:/core/ui/PageStylesheet||$:/core/templates/wikified-tiddler}}\n</style>\n</head>\n<body class=\"tc-body\">\n{{$:/StaticBanner||$:/core/templates/html-tiddler}}\n{{$:/core/ui/PageTemplate||$:/core/templates/html-tiddler}}\n</body>\n</html>\n"
},
"$:/core/templates/static.tiddler.html": {
"title": "$:/core/templates/static.tiddler.html",
"text": "\\define tv-wikilink-template() $uri_doubleencoded$.html\n\\define tv-config-toolbar-icons() no\n\\define tv-config-toolbar-text() no\n\\define tv-config-toolbar-class() tc-btn-invisible\n\\import [[$:/core/ui/PageMacros]] [all[shadows+tiddlers]tag[$:/tags/Macro]!has[draft.of]]\n`<!doctype html>\n<html>\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\" />\n<meta name=\"generator\" content=\"TiddlyWiki\" />\n<meta name=\"tiddlywiki-version\" content=\"`{{$:/core/templates/version}}`\" />\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\n<meta name=\"apple-mobile-web-app-capable\" content=\"yes\" />\n<meta name=\"apple-mobile-web-app-status-bar-style\" content=\"black-translucent\" />\n<meta name=\"mobile-web-app-capable\" content=\"yes\"/>\n<meta name=\"format-detection\" content=\"telephone=no\">\n<link id=\"faviconLink\" rel=\"shortcut icon\" href=\"favicon.ico\">\n<link rel=\"stylesheet\" href=\"static.css\">\n<title>`<$view field=\"caption\"><$view field=\"title\"/></$view>: {{$:/core/wiki/title}}`</title>\n</head>\n<body class=\"tc-body\">\n`{{$:/StaticBanner||$:/core/templates/html-tiddler}}`\n<section class=\"tc-story-river\">\n`<$view tiddler=\"$:/core/ui/ViewTemplate\" format=\"htmlwikified\"/>`\n</section>\n</body>\n</html>\n`"
},
"$:/core/templates/store.area.template.html": {
"title": "$:/core/templates/store.area.template.html",
"text": "<$reveal type=\"nomatch\" state=\"$:/isEncrypted\" text=\"yes\">\n`<div id=\"storeArea\" style=\"display:none;\">`\n<$list filter=<<saveTiddlerFilter>> template=\"$:/core/templates/html-div-tiddler\"/>\n`</div>`\n</$reveal>\n<$reveal type=\"match\" state=\"$:/isEncrypted\" text=\"yes\">\n`<!--~~ Encrypted tiddlers ~~-->`\n`<pre id=\"encryptedStoreArea\" type=\"text/plain\" style=\"display:none;\">`\n<$encrypt filter=<<saveTiddlerFilter>>/>\n`</pre>`\n</$reveal>"
},
"$:/core/templates/tid-tiddler": {
"title": "$:/core/templates/tid-tiddler",
"text": "<!--\n\nThis template is used for saving tiddlers in TiddlyWeb *.tid format\n\n--><$fields exclude='text bag' template='$name$: $value$\n'></$fields>`\n`<$view field=\"text\" format=\"text\" />"
},
"$:/core/templates/tiddler-metadata": {
"title": "$:/core/templates/tiddler-metadata",
"text": "<!--\n\nThis template is used for saving tiddler metadata *.meta files\n\n--><$fields exclude='text bag' template='$name$: $value$\n'></$fields>"
},
"$:/core/templates/tiddlywiki5.html": {
"title": "$:/core/templates/tiddlywiki5.html",
"text": "<$set name=\"saveTiddlerAndShadowsFilter\" filter=\"[subfilter<saveTiddlerFilter>] [subfilter<saveTiddlerFilter>plugintiddlers[]]\">\n`<!doctype html>\n`{{$:/core/templates/MOTW.html}}`<html>\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\" />\n<!--~~ Raw markup for the top of the head section ~~-->\n`{{{ [<saveTiddlerAndShadowsFilter>tag[$:/tags/RawMarkupWikified/TopHead]] ||$:/core/templates/raw-static-tiddler}}}`\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge\"/>\n<meta name=\"application-name\" content=\"TiddlyWiki\" />\n<meta name=\"generator\" content=\"TiddlyWiki\" />\n<meta name=\"tiddlywiki-version\" content=\"`{{$:/core/templates/version}}`\" />\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\n<meta name=\"apple-mobile-web-app-capable\" content=\"yes\" />\n<meta name=\"apple-mobile-web-app-status-bar-style\" content=\"black-translucent\" />\n<meta name=\"mobile-web-app-capable\" content=\"yes\"/>\n<meta name=\"format-detection\" content=\"telephone=no\" />\n<meta name=\"copyright\" content=\"`{{$:/core/copyright.txt}}`\" />\n<link id=\"faviconLink\" rel=\"shortcut icon\" href=\"favicon.ico\">\n<title>`{{$:/core/wiki/title}}`</title>\n<!--~~ This is a Tiddlywiki file. The points of interest in the file are marked with this pattern ~~-->\n\n<!--~~ Raw markup ~~-->\n`{{{ [enlist<saveTiddlerAndShadowsFilter>tag[$:/core/wiki/rawmarkup]] ||$:/core/templates/plain-text-tiddler}}}\n{{{ [enlist<saveTiddlerAndShadowsFilter>tag[$:/tags/RawMarkup]] ||$:/core/templates/plain-text-tiddler}}}\n{{{ [enlist<saveTiddlerAndShadowsFilter>tag[$:/tags/RawMarkupWikified]] ||$:/core/templates/raw-static-tiddler}}}`\n</head>\n<body class=\"tc-body\">\n<!--~~ Raw markup for the top of the body section ~~-->\n`{{{ [enlist<saveTiddlerAndShadowsFilter>tag[$:/tags/RawMarkupWikified/TopBody]] ||$:/core/templates/raw-static-tiddler}}}`\n<!--~~ Static styles ~~-->\n<div id=\"styleArea\">\n`{{$:/boot/boot.css||$:/core/templates/css-tiddler}}`\n</div>\n<!--~~ Static content for Google and browsers without JavaScript ~~-->\n<noscript>\n<div id=\"splashArea\">\n`{{$:/core/templates/static.area}}`\n</div>\n</noscript>\n<!--~~ Ordinary tiddlers ~~-->\n`{{$:/core/templates/store.area.template.html}}`\n<!--~~ Library modules ~~-->\n<div id=\"libraryModules\" style=\"display:none;\">\n`{{{ [is[system]type[application/javascript]library[yes]] ||$:/core/templates/javascript-tiddler}}}`\n</div>\n<!--~~ Boot kernel prologue ~~-->\n<div id=\"bootKernelPrefix\" style=\"display:none;\">\n`{{ $:/boot/bootprefix.js ||$:/core/templates/javascript-tiddler}}`\n</div>\n<!--~~ Boot kernel ~~-->\n<div id=\"bootKernel\" style=\"display:none;\">\n`{{ $:/boot/boot.js ||$:/core/templates/javascript-tiddler}}`\n</div>\n<!--~~ Raw markup for the bottom of the body section ~~-->\n`{{{ [enlist<saveTiddlerAndShadowsFilter>tag[$:/tags/RawMarkupWikified/BottomBody]] ||$:/core/templates/raw-static-tiddler}}}`\n</body>\n</html>`\n"
},
"$:/core/templates/version": {
"title": "$:/core/templates/version",
"text": "<<version>>"
},
"$:/core/templates/wikified-tiddler": {
"title": "$:/core/templates/wikified-tiddler",
"text": "<$transclude />"
},
"$:/core/ui/AboveStory/tw2-plugin-check": {
"title": "$:/core/ui/AboveStory/tw2-plugin-check",
"tags": "$:/tags/AboveStory",
"text": "\\define lingo-base() $:/language/AboveStory/ClassicPlugin/\n<$list filter=\"[all[system+tiddlers]tag[systemConfig]limit[1]]\">\n\n<div class=\"tc-message-box\">\n\n<<lingo Warning>>\n\n<ul>\n\n<$list filter=\"[all[system+tiddlers]tag[systemConfig]]\">\n\n<li>\n\n<$link><$view field=\"title\"/></$link>\n\n</li>\n\n</$list>\n\n</ul>\n\n</div>\n\n</$list>\n"
},
"$:/core/ui/Actions/new-image": {
"title": "$:/core/ui/Actions/new-image",
"tags": "$:/tags/Actions",
"description": "create a new image tiddler",
"text": "\\define get-type()\nimage/$(imageType)$\n\\end\n<$vars imageType={{$:/config/NewImageType}}>\n<$action-sendmessage $message=\"tm-new-tiddler\" type=<<get-type>>/>\n</$vars>\n"
},
"$:/core/ui/Actions/new-journal": {
"title": "$:/core/ui/Actions/new-journal",
"tags": "$:/tags/Actions",
"description": "create a new journal tiddler",
"text": "<$vars journalTitleTemplate={{$:/config/NewJournal/Title}} journalTags={{$:/config/NewJournal/Tags}} journalText={{$:/config/NewJournal/Text}}>\n<$wikify name=\"journalTitle\" text=\"\"\"<$macrocall $name=\"now\" format=<<journalTitleTemplate>>/>\"\"\">\n<$reveal type=\"nomatch\" state=<<journalTitle>> text=\"\">\n<$action-sendmessage $message=\"tm-new-tiddler\" title=<<journalTitle>> tags=<<journalTags>> text={{{ [<journalTitle>get[]] }}}/>\n</$reveal>\n<$reveal type=\"match\" state=<<journalTitle>> text=\"\">\n<$action-sendmessage $message=\"tm-new-tiddler\" title=<<journalTitle>> tags=<<journalTags>> text=<<journalText>>/>\n</$reveal>\n</$wikify>\n</$vars>\n"
},
"$:/core/ui/Actions/new-tiddler": {
"title": "$:/core/ui/Actions/new-tiddler",
"tags": "$:/tags/Actions",
"description": "create a new empty tiddler",
"text": "<$action-sendmessage $message=\"tm-new-tiddler\"/>\n"
},
"$:/core/ui/AdvancedSearch/Filter": {
"title": "$:/core/ui/AdvancedSearch/Filter",
"tags": "$:/tags/AdvancedSearch",
"caption": "{{$:/language/Search/Filter/Caption}}",
"text": "\\define lingo-base() $:/language/Search/\n<<lingo Filter/Hint>>\n\n<div class=\"tc-search tc-advanced-search\">\n<$edit-text tiddler=\"$:/temp/advancedsearch\" type=\"search\" tag=\"input\" focus={{$:/config/Search/AutoFocus}}/>\n<$list filter=\"[all[shadows+tiddlers]tag[$:/tags/AdvancedSearch/FilterButton]!has[draft.of]]\"><$transclude/></$list>\n</div>\n\n<$reveal state=\"$:/temp/advancedsearch\" type=\"nomatch\" text=\"\">\n<$set name=\"resultCount\" value=\"\"\"<$count filter={{$:/temp/advancedsearch}}/>\"\"\">\n<div class=\"tc-search-results\">\n<<lingo Filter/Matches>>\n<$list filter={{$:/temp/advancedsearch}} template=\"$:/core/ui/ListItemTemplate\"/>\n</div>\n</$set>\n</$reveal>\n"
},
"$:/core/ui/AdvancedSearch/Filter/FilterButtons/clear": {
"title": "$:/core/ui/AdvancedSearch/Filter/FilterButtons/clear",
"tags": "$:/tags/AdvancedSearch/FilterButton",
"text": "<$reveal state=\"$:/temp/advancedsearch\" type=\"nomatch\" text=\"\">\n<$button class=\"tc-btn-invisible\">\n<$action-setfield $tiddler=\"$:/temp/advancedsearch\" $field=\"text\" $value=\"\"/>\n{{$:/core/images/close-button}}\n</$button>\n</$reveal>\n"
},
"$:/core/ui/AdvancedSearch/Filter/FilterButtons/delete": {
"title": "$:/core/ui/AdvancedSearch/Filter/FilterButtons/delete",
"tags": "$:/tags/AdvancedSearch/FilterButton",
"text": "<$reveal state=\"$:/temp/advancedsearch\" type=\"nomatch\" text=\"\">\n<$button popup=<<qualify \"$:/state/filterDeleteDropdown\">> class=\"tc-btn-invisible\">\n{{$:/core/images/delete-button}}\n</$button>\n</$reveal>\n\n<$reveal state=<<qualify \"$:/state/filterDeleteDropdown\">> type=\"popup\" position=\"belowleft\" animate=\"yes\">\n<div class=\"tc-block-dropdown-wrapper\">\n<div class=\"tc-block-dropdown tc-edit-type-dropdown\">\n<div class=\"tc-dropdown-item-plain\">\n<$set name=\"resultCount\" value=\"\"\"<$count filter={{$:/temp/advancedsearch}}/>\"\"\">\nAre you sure you wish to delete <<resultCount>> tiddler(s)?\n</$set>\n</div>\n<div class=\"tc-dropdown-item-plain\">\n<$button class=\"tc-btn\">\n<$action-deletetiddler $filter={{$:/temp/advancedsearch}}/>\nDelete these tiddlers\n</$button>\n</div>\n</div>\n</div>\n</$reveal>\n"
},
"$:/core/ui/AdvancedSearch/Filter/FilterButtons/dropdown": {
"title": "$:/core/ui/AdvancedSearch/Filter/FilterButtons/dropdown",
"tags": "$:/tags/AdvancedSearch/FilterButton",
"text": "<span class=\"tc-popup-keep\">\n<$button popup=<<qualify \"$:/state/filterDropdown\">> class=\"tc-btn-invisible\">\n{{$:/core/images/down-arrow}}\n</$button>\n</span>\n\n<$reveal state=<<qualify \"$:/state/filterDropdown\">> type=\"popup\" position=\"belowleft\" animate=\"yes\">\n<$set name=\"tv-show-missing-links\" value=\"yes\">\n<$linkcatcher to=\"$:/temp/advancedsearch\">\n<div class=\"tc-block-dropdown-wrapper\">\n<div class=\"tc-block-dropdown tc-edit-type-dropdown\">\n<$list filter=\"[all[shadows+tiddlers]tag[$:/tags/Filter]]\"><$link to={{!!filter}}><$transclude field=\"description\"/></$link>\n</$list>\n</div>\n</div>\n</$linkcatcher>\n</$set>\n</$reveal>\n"
},
"$:/core/ui/AdvancedSearch/Filter/FilterButtons/export": {
"title": "$:/core/ui/AdvancedSearch/Filter/FilterButtons/export",
"tags": "$:/tags/AdvancedSearch/FilterButton",
"text": "<$reveal state=\"$:/temp/advancedsearch\" type=\"nomatch\" text=\"\">\n<$macrocall $name=\"exportButton\" exportFilter={{$:/temp/advancedsearch}} lingoBase=\"$:/language/Buttons/ExportTiddlers/\"/>\n</$reveal>\n"
},
"$:/core/ui/AdvancedSearch/Shadows": {
"title": "$:/core/ui/AdvancedSearch/Shadows",
"tags": "$:/tags/AdvancedSearch",
"caption": "{{$:/language/Search/Shadows/Caption}}",
"text": "\\define lingo-base() $:/language/Search/\n<$linkcatcher to=\"$:/temp/advancedsearch\">\n\n<<lingo Shadows/Hint>>\n\n<div class=\"tc-search\">\n<$edit-text tiddler=\"$:/temp/advancedsearch\" type=\"search\" tag=\"input\" focus={{$:/config/Search/AutoFocus}}/>\n<$reveal state=\"$:/temp/advancedsearch\" type=\"nomatch\" text=\"\">\n<$button class=\"tc-btn-invisible\">\n<$action-setfield $tiddler=\"$:/temp/advancedsearch\" $field=\"text\" $value=\"\"/>\n{{$:/core/images/close-button}}\n</$button>\n</$reveal>\n</div>\n\n</$linkcatcher>\n\n<$reveal state=\"$:/temp/advancedsearch\" type=\"nomatch\" text=\"\">\n\n<$list filter=\"[{$:/temp/advancedsearch}minlength{$:/config/Search/MinLength}limit[1]]\" emptyMessage=\"\"\"<div class=\"tc-search-results\">{{$:/language/Search/Search/TooShort}}</div>\"\"\" variable=\"listItem\">\n\n<$set name=\"resultCount\" value=\"\"\"<$count filter=\"[all[shadows]search{$:/temp/advancedsearch}] -[[$:/temp/advancedsearch]]\"/>\"\"\">\n\n<div class=\"tc-search-results\">\n\n<<lingo Shadows/Matches>>\n\n<$list filter=\"[all[shadows]search{$:/temp/advancedsearch}sort[title]limit[250]] -[[$:/temp/advancedsearch]]\" template=\"$:/core/ui/ListItemTemplate\"/>\n\n</div>\n\n</$set>\n\n</$list>\n\n</$reveal>\n\n<$reveal state=\"$:/temp/advancedsearch\" type=\"match\" text=\"\">\n\n</$reveal>\n"
},
"$:/core/ui/AdvancedSearch/Standard": {
"title": "$:/core/ui/AdvancedSearch/Standard",
"tags": "$:/tags/AdvancedSearch",
"caption": "{{$:/language/Search/Standard/Caption}}",
"text": "\\define lingo-base() $:/language/Search/\n<$linkcatcher to=\"$:/temp/advancedsearch\">\n\n<<lingo Standard/Hint>>\n\n<div class=\"tc-search\">\n<$edit-text tiddler=\"$:/temp/advancedsearch\" type=\"search\" tag=\"input\" focus={{$:/config/Search/AutoFocus}}/>\n<$reveal state=\"$:/temp/advancedsearch\" type=\"nomatch\" text=\"\">\n<$button class=\"tc-btn-invisible\">\n<$action-setfield $tiddler=\"$:/temp/advancedsearch\" $field=\"text\" $value=\"\"/>\n{{$:/core/images/close-button}}\n</$button>\n</$reveal>\n</div>\n\n</$linkcatcher>\n\n<$reveal state=\"$:/temp/advancedsearch\" type=\"nomatch\" text=\"\">\n<$list filter=\"[{$:/temp/advancedsearch}minlength{$:/config/Search/MinLength}limit[1]]\" emptyMessage=\"\"\"<div class=\"tc-search-results\">{{$:/language/Search/Search/TooShort}}</div>\"\"\" variable=\"listItem\">\n<$set name=\"searchTiddler\" value=\"$:/temp/advancedsearch\">\n<$list filter=\"[all[shadows+tiddlers]tag[$:/tags/SearchResults]!has[draft.of]butfirst[]limit[1]]\" emptyMessage=\"\"\"\n<$list filter=\"[all[shadows+tiddlers]tag[$:/tags/SearchResults]!has[draft.of]]\">\n<$transclude/>\n</$list>\n\"\"\">\n<$macrocall $name=\"tabs\" tabsList=\"[all[shadows+tiddlers]tag[$:/tags/SearchResults]!has[draft.of]]\" default={{$:/config/SearchResults/Default}}/>\n</$list>\n</$set>\n</$list>\n</$reveal>\n"
},
"$:/core/ui/AdvancedSearch/System": {
"title": "$:/core/ui/AdvancedSearch/System",
"tags": "$:/tags/AdvancedSearch",
"caption": "{{$:/language/Search/System/Caption}}",
"text": "\\define lingo-base() $:/language/Search/\n<$linkcatcher to=\"$:/temp/advancedsearch\">\n\n<<lingo System/Hint>>\n\n<div class=\"tc-search\">\n<$edit-text tiddler=\"$:/temp/advancedsearch\" type=\"search\" tag=\"input\" focus={{$:/config/Search/AutoFocus}}/>\n<$reveal state=\"$:/temp/advancedsearch\" type=\"nomatch\" text=\"\">\n<$button class=\"tc-btn-invisible\">\n<$action-setfield $tiddler=\"$:/temp/advancedsearch\" $field=\"text\" $value=\"\"/>\n{{$:/core/images/close-button}}\n</$button>\n</$reveal>\n</div>\n\n</$linkcatcher>\n\n<$reveal state=\"$:/temp/advancedsearch\" type=\"nomatch\" text=\"\">\n\n<$list filter=\"[{$:/temp/advancedsearch}minlength{$:/config/Search/MinLength}limit[1]]\" emptyMessage=\"\"\"<div class=\"tc-search-results\">{{$:/language/Search/Search/TooShort}}</div>\"\"\" variable=\"listItem\">\n\n<$set name=\"resultCount\" value=\"\"\"<$count filter=\"[is[system]search{$:/temp/advancedsearch}] -[[$:/temp/advancedsearch]]\"/>\"\"\">\n\n<div class=\"tc-search-results\">\n\n<<lingo System/Matches>>\n\n<$list filter=\"[is[system]search{$:/temp/advancedsearch}sort[title]limit[250]] -[[$:/temp/advancedsearch]]\" template=\"$:/core/ui/ListItemTemplate\"/>\n\n</div>\n\n</$set>\n\n</$list>\n\n</$reveal>\n\n<$reveal state=\"$:/temp/advancedsearch\" type=\"match\" text=\"\">\n\n</$reveal>\n"
},
"$:/AdvancedSearch": {
"title": "$:/AdvancedSearch",
"icon": "$:/core/images/advanced-search-button",
"color": "#bbb",
"text": "<div class=\"tc-advanced-search\">\n<<tabs \"[all[shadows+tiddlers]tag[$:/tags/AdvancedSearch]!has[draft.of]]\" \"$:/core/ui/AdvancedSearch/System\">>\n</div>\n"
},
"$:/core/ui/AlertTemplate": {
"title": "$:/core/ui/AlertTemplate",
"text": "<div class=\"tc-alert\">\n<div class=\"tc-alert-toolbar\">\n<$button class=\"tc-btn-invisible\"><$action-deletetiddler $tiddler=<<currentTiddler>>/>{{$:/core/images/delete-button}}</$button>\n</div>\n<div class=\"tc-alert-subtitle\">\n<$view field=\"component\"/> - <$view field=\"modified\" format=\"date\" template=\"0hh:0mm:0ss DD MM YYYY\"/> <$reveal type=\"nomatch\" state=\"!!count\" text=\"\"><span class=\"tc-alert-highlight\">({{$:/language/Count}}: <$view field=\"count\"/>)</span></$reveal>\n</div>\n<div class=\"tc-alert-body\">\n\n<$transclude/>\n\n</div>\n</div>\n"
},
"$:/core/ui/BinaryWarning": {
"title": "$:/core/ui/BinaryWarning",
"text": "\\define lingo-base() $:/language/BinaryWarning/\n<div class=\"tc-binary-warning\">\n\n<<lingo Prompt>>\n\n</div>\n"
},
"$:/core/ui/Components/plugin-info": {
"title": "$:/core/ui/Components/plugin-info",
"text": "\\define lingo-base() $:/language/ControlPanel/Plugins/\n\n\\define popup-state-macro()\n$(qualified-state)$-$(currentTiddler)$\n\\end\n\n\\define tabs-state-macro()\n$(popup-state)$-$(pluginInfoType)$\n\\end\n\n\\define plugin-icon-title()\n$(currentTiddler)$/icon\n\\end\n\n\\define plugin-disable-title()\n$:/config/Plugins/Disabled/$(currentTiddler)$\n\\end\n\n\\define plugin-table-body(type,disabledMessage,default-popup-state)\n<div class=\"tc-plugin-info-chunk tc-small-icon\">\n<$reveal type=\"nomatch\" state=<<popup-state>> text=\"yes\" default=\"\"\"$default-popup-state$\"\"\">\n<$button class=\"tc-btn-invisible tc-btn-dropdown\" set=<<popup-state>> setTo=\"yes\">\n{{$:/core/images/right-arrow}}\n</$button>\n</$reveal>\n<$reveal type=\"match\" state=<<popup-state>> text=\"yes\" default=\"\"\"$default-popup-state$\"\"\">\n<$button class=\"tc-btn-invisible tc-btn-dropdown\" set=<<popup-state>> setTo=\"no\">\n{{$:/core/images/down-arrow}}\n</$button>\n</$reveal>\n</div>\n<div class=\"tc-plugin-info-chunk\">\n<$transclude tiddler=<<currentTiddler>> subtiddler=<<plugin-icon-title>>>\n<$transclude tiddler=\"$:/core/images/plugin-generic-$type$\"/>\n</$transclude>\n</div>\n<div class=\"tc-plugin-info-chunk\">\n<h1>\n''<$view field=\"description\"><$view field=\"title\"/></$view>'' $disabledMessage$\n</h1>\n<h2>\n<$view field=\"title\"/>\n</h2>\n<h2>\n<div><em><$view field=\"version\"/></em></div>\n</h2>\n</div>\n\\end\n\n\\define plugin-info(type,default-popup-state)\n<$set name=\"popup-state\" value=<<popup-state-macro>>>\n<$reveal type=\"nomatch\" state=<<plugin-disable-title>> text=\"yes\">\n<$link to={{!!title}} class=\"tc-plugin-info\">\n<<plugin-table-body type:\"$type$\" default-popup-state:\"\"\"$default-popup-state$\"\"\">>\n</$link>\n</$reveal>\n<$reveal type=\"match\" state=<<plugin-disable-title>> text=\"yes\">\n<$link to={{!!title}} class=\"tc-plugin-info tc-plugin-info-disabled\">\n<<plugin-table-body type:\"$type$\" default-popup-state:\"\"\"$default-popup-state$\"\"\" disabledMessage:\"<$macrocall $name='lingo' title='Disabled/Status'/>\">>\n</$link>\n</$reveal>\n<$reveal type=\"match\" text=\"yes\" state=<<popup-state>> default=\"\"\"$default-popup-state$\"\"\">\n<div class=\"tc-plugin-info-dropdown\">\n<div class=\"tc-plugin-info-dropdown-body\">\n<$list filter=\"[all[current]] -[[$:/core]]\">\n<div style=\"float:right;\">\n<$reveal type=\"nomatch\" state=<<plugin-disable-title>> text=\"yes\">\n<$button set=<<plugin-disable-title>> setTo=\"yes\" tooltip={{$:/language/ControlPanel/Plugins/Disable/Hint}} aria-label={{$:/language/ControlPanel/Plugins/Disable/Caption}}>\n<<lingo Disable/Caption>>\n</$button>\n</$reveal>\n<$reveal type=\"match\" state=<<plugin-disable-title>> text=\"yes\">\n<$button set=<<plugin-disable-title>> setTo=\"no\" tooltip={{$:/language/ControlPanel/Plugins/Enable/Hint}} aria-label={{$:/language/ControlPanel/Plugins/Enable/Caption}}>\n<<lingo Enable/Caption>>\n</$button>\n</$reveal>\n</div>\n</$list>\n<$set name=\"tabsList\" filter=\"[<currentTiddler>list[]] contents\">\n<$macrocall $name=\"tabs\" state=<<tabs-state-macro>> tabsList=<<tabsList>> default={{{ [enlist<tabsList>] }}} template=\"$:/core/ui/PluginInfo\"/>\n</$set>\n</div>\n</div>\n</$reveal>\n</$set>\n\\end\n\n<$macrocall $name=\"plugin-info\" type=<<plugin-type>> default-popup-state=<<default-popup-state>>/>\n"
},
"$:/core/ui/Components/tag-link": {
"title": "$:/core/ui/Components/tag-link",
"text": "<$link>\n<$set name=\"backgroundColor\" value={{!!color}}>\n<span style=<<tag-styles>> class=\"tc-tag-label\">\n<$view field=\"title\" format=\"text\"/>\n</span>\n</$set>\n</$link>"
},
"$:/core/ui/ControlPanel/Advanced": {
"title": "$:/core/ui/ControlPanel/Advanced",
"tags": "$:/tags/ControlPanel/Info",
"caption": "{{$:/language/ControlPanel/Advanced/Caption}}",
"text": "{{$:/language/ControlPanel/Advanced/Hint}}\n\n<div class=\"tc-control-panel\">\n<<tabs \"[all[shadows+tiddlers]tag[$:/tags/ControlPanel/Advanced]!has[draft.of]]\" \"$:/core/ui/ControlPanel/TiddlerFields\">>\n</div>\n"
},
"$:/core/ui/ControlPanel/Appearance": {
"title": "$:/core/ui/ControlPanel/Appearance",
"tags": "$:/tags/ControlPanel",
"caption": "{{$:/language/ControlPanel/Appearance/Caption}}",
"text": "{{$:/language/ControlPanel/Appearance/Hint}}\n\n<div class=\"tc-control-panel\">\n<<tabs \"[all[shadows+tiddlers]tag[$:/tags/ControlPanel/Appearance]!has[draft.of]]\" \"$:/core/ui/ControlPanel/Theme\">>\n</div>\n"
},
"$:/core/ui/ControlPanel/Basics": {
"title": "$:/core/ui/ControlPanel/Basics",
"tags": "$:/tags/ControlPanel/Info",
"caption": "{{$:/language/ControlPanel/Basics/Caption}}",
"text": "\\define lingo-base() $:/language/ControlPanel/Basics/\n\n\\define show-filter-count(filter)\n<$button class=\"tc-btn-invisible\">\n<$action-setfield $tiddler=\"$:/temp/advancedsearch\" $value=\"\"\"$filter$\"\"\"/>\n<$action-setfield $tiddler=\"$:/state/tab--1498284803\" $value=\"$:/core/ui/AdvancedSearch/Filter\"/>\n<$action-navigate $to=\"$:/AdvancedSearch\"/>\n''<$count filter=\"\"\"$filter$\"\"\"/>''\n{{$:/core/images/advanced-search-button}}\n</$button>\n\\end\n\n|<<lingo Version/Prompt>> |''<<version>>'' |\n|<$link to=\"$:/SiteTitle\"><<lingo Title/Prompt>></$link> |<$edit-text tiddler=\"$:/SiteTitle\" default=\"\" tag=\"input\"/> |\n|<$link to=\"$:/SiteSubtitle\"><<lingo Subtitle/Prompt>></$link> |<$edit-text tiddler=\"$:/SiteSubtitle\" default=\"\" tag=\"input\"/> |\n|<$link to=\"$:/status/UserName\"><<lingo Username/Prompt>></$link> |<$edit-text tiddler=\"$:/status/UserName\" default=\"\" tag=\"input\"/> |\n|<$link to=\"$:/config/AnimationDuration\"><<lingo AnimDuration/Prompt>></$link> |<$edit-text tiddler=\"$:/config/AnimationDuration\" default=\"\" tag=\"input\"/> |\n|<$link to=\"$:/DefaultTiddlers\"><<lingo DefaultTiddlers/Prompt>></$link> |<<lingo DefaultTiddlers/TopHint>><br> <$edit tag=\"textarea\" tiddler=\"$:/DefaultTiddlers\" class=\"tc-edit-texteditor\"/><br>//<<lingo DefaultTiddlers/BottomHint>>// |\n|<$link to=\"$:/language/DefaultNewTiddlerTitle\"><<lingo NewTiddler/Title/Prompt>></$link> |<$edit-text tiddler=\"$:/language/DefaultNewTiddlerTitle\" default=\"\" tag=\"input\"/> |\n|<$link to=\"$:/config/NewJournal/Title\"><<lingo NewJournal/Title/Prompt>></$link> |<$edit-text tiddler=\"$:/config/NewJournal/Title\" default=\"\" tag=\"input\"/> |\n|<$link to=\"$:/config/NewJournal/Text\"><<lingo NewJournal/Text/Prompt>></$link> |<$edit tiddler=\"$:/config/NewJournal/Text\" tag=\"textarea\" class=\"tc-edit-texteditor\" default=\"\"/> |\n|<$link to=\"$:/config/NewJournal/Tags\"><<lingo NewJournal/Tags/Prompt>></$link> |<$edit-text tiddler=\"$:/config/NewJournal/Tags\" default=\"\" tag=\"input\"/> |\n|<<lingo Language/Prompt>> |{{$:/snippets/minilanguageswitcher}} |\n|<<lingo Tiddlers/Prompt>> |<<show-filter-count \"[!is[system]sort[title]]\">> |\n|<<lingo Tags/Prompt>> |<<show-filter-count \"[tags[]sort[title]]\">> |\n|<<lingo SystemTiddlers/Prompt>> |<<show-filter-count \"[is[system]sort[title]]\">> |\n|<<lingo ShadowTiddlers/Prompt>> |<<show-filter-count \"[all[shadows]sort[title]]\">> |\n|<<lingo OverriddenShadowTiddlers/Prompt>> |<<show-filter-count \"[is[tiddler]is[shadow]sort[title]]\">> |\n"
},
"$:/core/ui/ControlPanel/EditorTypes": {
"title": "$:/core/ui/ControlPanel/EditorTypes",
"tags": "$:/tags/ControlPanel/Advanced",
"caption": "{{$:/language/ControlPanel/EditorTypes/Caption}}",
"text": "\\define lingo-base() $:/language/ControlPanel/EditorTypes/\n\n<<lingo Hint>>\n\n<table>\n<tbody>\n<tr>\n<th><<lingo Type/Caption>></th>\n<th><<lingo Editor/Caption>></th>\n</tr>\n<$list filter=\"[all[shadows+tiddlers]prefix[$:/config/EditorTypeMappings/]sort[title]]\">\n<tr>\n<td>\n<$link>\n<$list filter=\"[all[current]removeprefix[$:/config/EditorTypeMappings/]]\">\n<$text text={{!!title}}/>\n</$list>\n</$link>\n</td>\n<td>\n<$view field=\"text\"/>\n</td>\n</tr>\n</$list>\n</tbody>\n</table>\n"
},
"$:/core/ui/ControlPanel/Info": {
"title": "$:/core/ui/ControlPanel/Info",
"tags": "$:/tags/ControlPanel",
"caption": "{{$:/language/ControlPanel/Info/Caption}}",
"text": "{{$:/language/ControlPanel/Info/Hint}}\n\n<div class=\"tc-control-panel\">\n<<tabs \"[all[shadows+tiddlers]tag[$:/tags/ControlPanel/Info]!has[draft.of]]\" \"$:/core/ui/ControlPanel/Basics\">>\n</div>\n"
},
"$:/core/ui/ControlPanel/KeyboardShortcuts": {
"title": "$:/core/ui/ControlPanel/KeyboardShortcuts",
"tags": "$:/tags/ControlPanel",
"caption": "{{$:/language/ControlPanel/KeyboardShortcuts/Caption}}",
"text": "\\define lingo-base() $:/language/ControlPanel/KeyboardShortcuts/\n\n\\define new-shortcut(title)\n<div class=\"tc-dropdown-item-plain\">\n<$edit-shortcut tiddler=\"$title$\" placeholder={{$:/language/ControlPanel/KeyboardShortcuts/Add/Prompt}} focus=\"true\" style=\"width:auto;\"/> <$button>\n<<lingo Add/Caption>>\n<$action-listops\n\t$tiddler=\"$(shortcutTitle)$\"\n\t$field=\"text\"\n\t$subfilter=\"[{$title$}]\"\n/>\n<$action-deletetiddler\n\t$tiddler=\"$title$\"\n/>\n</$button>\n</div>\n\\end\n\n\\define shortcut-list-item(caption)\n<td>\n</td>\n<td style=\"text-align:right;font-size:0.7em;\">\n<<lingo Platform/$caption$>>\n</td>\n<td>\n<div style=\"position:relative;\">\n<$button popup=<<qualify \"$:/state/dropdown/$(shortcutTitle)$\">> class=\"tc-btn-invisible\">\n{{$:/core/images/edit-button}}\n</$button>\n<$macrocall $name=\"displayshortcuts\" $output=\"text/html\" shortcuts={{$(shortcutTitle)$}} prefix=\"<kbd>\" separator=\"</kbd> <kbd>\" suffix=\"</kbd>\"/>\n\n<$reveal state=<<qualify \"$:/state/dropdown/$(shortcutTitle)$\">> type=\"popup\" position=\"below\" animate=\"yes\">\n<div class=\"tc-block-dropdown-wrapper\">\n<div class=\"tc-block-dropdown tc-edit-type-dropdown tc-popup-keep\">\n<$list filter=\"[list[$(shortcutTitle)$!!text]sort[title]]\" variable=\"shortcut\" emptyMessage=\"\"\"\n<div class=\"tc-dropdown-item-plain\">\n//<<lingo NoShortcuts/Caption>>//\n</div>\n\"\"\">\n<div class=\"tc-dropdown-item-plain\">\n<$button class=\"tc-btn-invisible\" tooltip=<<lingo Remove/Hint>>>\n<$action-listops\n\t$tiddler=\"$(shortcutTitle)$\"\n\t$field=\"text\"\n\t$subfilter=\"+[remove<shortcut>]\"\n/>\n×\n</$button>\n<kbd>\n<$macrocall $name=\"displayshortcuts\" $output=\"text/html\" shortcuts=<<shortcut>>/>\n</kbd>\n</div>\n</$list>\n<hr/>\n<$macrocall $name=\"new-shortcut\" title=<<qualify \"$:/state/new-shortcut/$(shortcutTitle)$\">>/>\n</div>\n</div>\n</$reveal>\n</div>\n</td>\n\\end\n\n\\define shortcut-list(caption,prefix)\n<tr>\n<$list filter=\"[[$prefix$$(shortcutName)$]]\" variable=\"shortcutTitle\">\n<<shortcut-list-item \"$caption$\">>\n</$list>\n</tr>\n\\end\n\n\\define shortcut-editor()\n<<shortcut-list \"All\" \"$:/config/shortcuts/\">>\n<<shortcut-list \"Mac\" \"$:/config/shortcuts-mac/\">>\n<<shortcut-list \"NonMac\" \"$:/config/shortcuts-not-mac/\">>\n<<shortcut-list \"Linux\" \"$:/config/shortcuts-linux/\">>\n<<shortcut-list \"NonLinux\" \"$:/config/shortcuts-not-linux/\">>\n<<shortcut-list \"Windows\" \"$:/config/shortcuts-windows/\">>\n<<shortcut-list \"NonWindows\" \"$:/config/shortcuts-not-windows/\">>\n\\end\n\n\\define shortcut-preview()\n<$macrocall $name=\"displayshortcuts\" $output=\"text/html\" shortcuts={{$(shortcutPrefix)$$(shortcutName)$}} prefix=\"<kbd>\" separator=\"</kbd> <kbd>\" suffix=\"</kbd>\"/>\n\\end\n\n\\define shortcut-item-inner()\n<tr>\n<td>\n<$reveal type=\"nomatch\" state=<<dropdownStateTitle>> text=\"open\">\n<$button class=\"tc-btn-invisible\">\n<$action-setfield\n\t$tiddler=<<dropdownStateTitle>>\n\t$value=\"open\"\n/>\n{{$:/core/images/right-arrow}}\n</$button>\n</$reveal>\n<$reveal type=\"match\" state=<<dropdownStateTitle>> text=\"open\">\n<$button class=\"tc-btn-invisible\">\n<$action-setfield\n\t$tiddler=<<dropdownStateTitle>>\n\t$value=\"close\"\n/>\n{{$:/core/images/down-arrow}}\n</$button>\n</$reveal>\n''<$text text=<<shortcutName>>/>''\n</td>\n<td>\n<$transclude tiddler=\"$:/config/ShortcutInfo/$(shortcutName)$\"/>\n</td>\n<td>\n<$list filter=\"$:/config/shortcuts/ $:/config/shortcuts-mac/ $:/config/shortcuts-not-mac/ $:/config/shortcuts-linux/ $:/config/shortcuts-not-linux/ $:/config/shortcuts-windows/ $:/config/shortcuts-not-windows/\" variable=\"shortcutPrefix\">\n<<shortcut-preview>>\n</$list>\n</td>\n</tr>\n<$set name=\"dropdownState\" value={{$(dropdownStateTitle)$}}>\n<$list filter=\"[<dropdownState>match[open]]\" variable=\"listItem\">\n<<shortcut-editor>>\n</$list>\n</$set>\n\\end\n\n\\define shortcut-item()\n<$set name=\"dropdownStateTitle\" value=<<qualify \"$:/state/dropdown/keyboardshortcut/$(shortcutName)$\">>>\n<<shortcut-item-inner>>\n</$set>\n\\end\n\n<table>\n<tbody>\n<$list filter=\"[all[shadows+tiddlers]removeprefix[$:/config/ShortcutInfo/]]\" variable=\"shortcutName\">\n<<shortcut-item>>\n</$list>\n</tbody>\n</table>\n"
},
"$:/core/ui/ControlPanel/LoadedModules": {
"title": "$:/core/ui/ControlPanel/LoadedModules",
"tags": "$:/tags/ControlPanel/Advanced",
"caption": "{{$:/language/ControlPanel/LoadedModules/Caption}}",
"text": "\\define lingo-base() $:/language/ControlPanel/\n<<lingo LoadedModules/Hint>>\n\n{{$:/snippets/modules}}\n"
},
"$:/core/ui/ControlPanel/Modals/AddPlugins": {
"title": "$:/core/ui/ControlPanel/Modals/AddPlugins",
"subtitle": "{{$:/core/images/download-button}} {{$:/language/ControlPanel/Plugins/Add/Caption}}",
"text": "\\define install-plugin-button()\n<$button>\n<$action-sendmessage $message=\"tm-load-plugin-from-library\" url={{!!url}} title={{$(assetInfo)$!!original-title}}/>\n<$list filter=\"[<assetInfo>get[original-title]get[version]]\" variable=\"installedVersion\" emptyMessage=\"\"\"{{$:/language/ControlPanel/Plugins/Install/Caption}}\"\"\">\n{{$:/language/ControlPanel/Plugins/Reinstall/Caption}}\n</$list>\n</$button>\n\\end\n\n\\define popup-state-macro()\n$:/state/add-plugin-info/$(connectionTiddler)$/$(assetInfo)$\n\\end\n\n\\define display-plugin-info(type)\n<$set name=\"popup-state\" value=<<popup-state-macro>>>\n<div class=\"tc-plugin-info\">\n<div class=\"tc-plugin-info-chunk tc-small-icon\">\n<$reveal type=\"nomatch\" state=<<popup-state>> text=\"yes\">\n<$button class=\"tc-btn-invisible tc-btn-dropdown\" set=<<popup-state>> setTo=\"yes\">\n{{$:/core/images/right-arrow}}\n</$button>\n</$reveal>\n<$reveal type=\"match\" state=<<popup-state>> text=\"yes\">\n<$button class=\"tc-btn-invisible tc-btn-dropdown\" set=<<popup-state>> setTo=\"no\">\n{{$:/core/images/down-arrow}}\n</$button>\n</$reveal>\n</div>\n<div class=\"tc-plugin-info-chunk\">\n<$list filter=\"[<assetInfo>has[icon]]\" emptyMessage=\"\"\"<$transclude tiddler=\"$:/core/images/plugin-generic-$type$\"/>\"\"\">\n<img src={{$(assetInfo)$!!icon}}/>\n</$list>\n</div>\n<div class=\"tc-plugin-info-chunk\">\n<h1><$view tiddler=<<assetInfo>> field=\"description\"/></h1>\n<h2><$view tiddler=<<assetInfo>> field=\"original-title\"/></h2>\n<div><em><$view tiddler=<<assetInfo>> field=\"version\"/></em></div>\n</div>\n<div class=\"tc-plugin-info-chunk\">\n<<install-plugin-button>>\n</div>\n</div>\n<$reveal type=\"match\" text=\"yes\" state=<<popup-state>>>\n<div class=\"tc-plugin-info-dropdown\">\n<div class=\"tc-plugin-info-dropdown-message\">\n<$list filter=\"[<assetInfo>get[original-title]get[version]]\" variable=\"installedVersion\" emptyMessage=\"\"\"{{$:/language/ControlPanel/Plugins/NotInstalled/Hint}}\"\"\">\n<em>\n{{$:/language/ControlPanel/Plugins/AlreadyInstalled/Hint}}\n</em>\n</$list>\n</div>\n<div class=\"tc-plugin-info-dropdown-body\">\n<$transclude tiddler=<<assetInfo>> field=\"readme\" mode=\"block\"/>\n</div>\n</div>\n</$reveal>\n</$set>\n\\end\n\n\\define load-plugin-library-button()\n<$button class=\"tc-btn-big-green\">\n<$action-sendmessage $message=\"tm-load-plugin-library\" url={{!!url}} infoTitlePrefix=\"$:/temp/RemoteAssetInfo/\"/>\n{{$:/core/images/chevron-right}} {{$:/language/ControlPanel/Plugins/OpenPluginLibrary}}\n</$button>\n\\end\n\n\\define display-server-assets(type)\n{{$:/language/Search/Search}}: <$edit-text tiddler=\"\"\"$:/temp/RemoteAssetSearch/$(currentTiddler)$\"\"\" default=\"\" type=\"search\" tag=\"input\"/>\n<$reveal state=\"\"\"$:/temp/RemoteAssetSearch/$(currentTiddler)$\"\"\" type=\"nomatch\" text=\"\">\n<$button class=\"tc-btn-invisible\">\n<$action-setfield $tiddler=\"\"\"$:/temp/RemoteAssetSearch/$(currentTiddler)$\"\"\" $field=\"text\" $value=\"\"/>\n{{$:/core/images/close-button}}\n</$button>\n</$reveal>\n<div class=\"tc-plugin-library-listing\">\n<$list filter=\"[all[tiddlers+shadows]tag[$:/tags/RemoteAssetInfo]server-url{!!url}original-plugin-type[$type$]search:author,description,original-title,readme,title{$:/temp/RemoteAssetSearch/$(currentTiddler)$}sort[description]]\" variable=\"assetInfo\">\n<<display-plugin-info \"$type$\">>\n</$list>\n</div>\n\\end\n\n\\define display-server-connection()\n<$list filter=\"[all[tiddlers+shadows]tag[$:/tags/ServerConnection]suffix{!!url}]\" variable=\"connectionTiddler\" emptyMessage=<<load-plugin-library-button>>>\n\n<<tabs \"[[$:/core/ui/ControlPanel/Plugins/Add/Plugins]] [[$:/core/ui/ControlPanel/Plugins/Add/Themes]] [[$:/core/ui/ControlPanel/Plugins/Add/Languages]]\" \"$:/core/ui/ControlPanel/Plugins/Add/Plugins\">>\n\n</$list>\n\\end\n\n\\define close-library-button()\n<$reveal type='nomatch' state='$:/temp/ServerConnection/$(PluginLibraryURL)$' text=''>\n<$button class='tc-btn-big-green'>\n<$action-sendmessage $message=\"tm-unload-plugin-library\" url={{!!url}}/>\n{{$:/core/images/chevron-left}} {{$:/language/ControlPanel/Plugins/ClosePluginLibrary}}\n<$action-deletetiddler $filter=\"[prefix[$:/temp/ServerConnection/$(PluginLibraryURL)$]][prefix[$:/temp/RemoteAssetInfo/$(PluginLibraryURL)$]]\"/>\n</$button>\n</$reveal>\n\\end\n\n\\define plugin-library-listing()\n<$list filter=\"[all[tiddlers+shadows]tag[$:/tags/PluginLibrary]]\">\n<div class=\"tc-plugin-library\">\n\n!! <$link><$transclude field=\"caption\"><$view field=\"title\"/></$transclude></$link>\n\n//<$view field=\"url\"/>//\n\n<$transclude/>\n\n<$set name=PluginLibraryURL value={{!!url}}>\n<<close-library-button>>\n</$set>\n\n<<display-server-connection>>\n</div>\n</$list>\n\\end\n\n\\import [[$:/core/ui/PageMacros]] [all[shadows+tiddlers]tag[$:/tags/Macro]!has[draft.of]]\n\n<div>\n<<plugin-library-listing>>\n</div>\n"
},
"$:/core/ui/ControlPanel/Palette": {
"title": "$:/core/ui/ControlPanel/Palette",
"tags": "$:/tags/ControlPanel/Appearance",
"caption": "{{$:/language/ControlPanel/Palette/Caption}}",
"text": "\\define lingo-base() $:/language/ControlPanel/Palette/\n\n{{$:/snippets/paletteswitcher}}\n\n<$reveal type=\"nomatch\" state=\"$:/state/ShowPaletteEditor\" text=\"yes\">\n\n<$button set=\"$:/state/ShowPaletteEditor\" setTo=\"yes\"><<lingo ShowEditor/Caption>></$button>\n\n</$reveal>\n\n<$reveal type=\"match\" state=\"$:/state/ShowPaletteEditor\" text=\"yes\">\n\n<$button set=\"$:/state/ShowPaletteEditor\" setTo=\"no\"><<lingo HideEditor/Caption>></$button>\n{{$:/PaletteManager}}\n\n</$reveal>\n\n"
},
"$:/core/ui/ControlPanel/Parsing": {
"title": "$:/core/ui/ControlPanel/Parsing",
"tags": "$:/tags/ControlPanel/Advanced",
"caption": "{{$:/language/ControlPanel/Parsing/Caption}}",
"text": "\\define lingo-base() $:/language/ControlPanel/Parsing/\n\n\\define toggle(Type)\n<$checkbox\ntiddler=\"\"\"$:/config/WikiParserRules/$Type$/$(rule)$\"\"\"\nfield=\"text\"\nchecked=\"enable\"\nunchecked=\"disable\"\ndefault=\"enable\">\n<<rule>>\n</$checkbox>\n\\end\n\n\\define rules(type,Type)\n<$list filter=\"[wikiparserrules[$type$]]\" variable=\"rule\">\n<dd><<toggle $Type$>></dd>\n</$list>\n\\end\n\n<<lingo Hint>>\n\n<dl>\n<dt><<lingo Pragma/Caption>></dt>\n<<rules pragma Pragma>>\n<dt><<lingo Inline/Caption>></dt>\n<<rules inline Inline>>\n<dt><<lingo Block/Caption>></dt>\n<<rules block Block>>\n</dl>"
},
"$:/core/ui/ControlPanel/Plugins/Add/Languages": {
"title": "$:/core/ui/ControlPanel/Plugins/Add/Languages",
"caption": "{{$:/language/ControlPanel/Plugins/Languages/Caption}} (<$count filter=\"[all[tiddlers+shadows]tag[$:/tags/RemoteAssetInfo]server-url{!!url}original-plugin-type[language]]\"/>)",
"text": "<<display-server-assets language>>\n"
},
"$:/core/ui/ControlPanel/Plugins/Add/Plugins": {
"title": "$:/core/ui/ControlPanel/Plugins/Add/Plugins",
"caption": "{{$:/language/ControlPanel/Plugins/Plugins/Caption}} (<$count filter=\"[all[tiddlers+shadows]tag[$:/tags/RemoteAssetInfo]server-url{!!url}original-plugin-type[plugin]]\"/>)",
"text": "<<display-server-assets plugin>>\n"
},
"$:/core/ui/ControlPanel/Plugins/Add/Themes": {
"title": "$:/core/ui/ControlPanel/Plugins/Add/Themes",
"caption": "{{$:/language/ControlPanel/Plugins/Themes/Caption}} (<$count filter=\"[all[tiddlers+shadows]tag[$:/tags/RemoteAssetInfo]server-url{!!url}original-plugin-type[theme]]\"/>)",
"text": "<<display-server-assets theme>>\n"
},
"$:/core/ui/ControlPanel/Plugins/AddPlugins": {
"title": "$:/core/ui/ControlPanel/Plugins/AddPlugins",
"text": "\\define lingo-base() $:/language/ControlPanel/Plugins/\n\n<$button message=\"tm-modal\" param=\"$:/core/ui/ControlPanel/Modals/AddPlugins\" tooltip={{$:/language/ControlPanel/Plugins/Add/Hint}} class=\"tc-btn-big-green tc-primary-btn\">\n{{$:/core/images/download-button}} <<lingo Add/Caption>>\n</$button>\n"
},
"$:/core/ui/ControlPanel/Plugins/Installed/Languages": {
"title": "$:/core/ui/ControlPanel/Plugins/Installed/Languages",
"caption": "{{$:/language/ControlPanel/Plugins/Languages/Caption}} (<$count filter=\"[!has[draft.of]plugin-type[language]]\"/>)",
"text": "<<plugin-table language>>\n"
},
"$:/core/ui/ControlPanel/Plugins/Installed/Plugins": {
"title": "$:/core/ui/ControlPanel/Plugins/Installed/Plugins",
"caption": "{{$:/language/ControlPanel/Plugins/Plugins/Caption}} (<$count filter=\"[!has[draft.of]plugin-type[plugin]]\"/>)",
"text": "<<plugin-table plugin>>\n"
},
"$:/core/ui/ControlPanel/Plugins/Installed/Themes": {
"title": "$:/core/ui/ControlPanel/Plugins/Installed/Themes",
"caption": "{{$:/language/ControlPanel/Plugins/Themes/Caption}} (<$count filter=\"[!has[draft.of]plugin-type[theme]]\"/>)",
"text": "<<plugin-table theme>>\n"
},
"$:/core/ui/ControlPanel/Plugins": {
"title": "$:/core/ui/ControlPanel/Plugins",
"tags": "$:/tags/ControlPanel",
"caption": "{{$:/language/ControlPanel/Plugins/Caption}}",
"text": "\\define lingo-base() $:/language/ControlPanel/Plugins/\n\n\\define plugin-table(type)\n<$set name=\"plugin-type\" value=\"\"\"$type$\"\"\">\n<$set name=\"qualified-state\" value=<<qualify \"$:/state/plugin-info\">>>\n<$list filter=\"[!has[draft.of]plugin-type[$type$]sort[description]]\" emptyMessage=<<lingo \"Empty/Hint\">> template=\"$:/core/ui/Components/plugin-info\"/>\n</$set>\n</$set>\n\\end\n\n{{$:/core/ui/ControlPanel/Plugins/AddPlugins}}\n\n<<lingo Installed/Hint>>\n\n<<tabs \"[[$:/core/ui/ControlPanel/Plugins/Installed/Plugins]] [[$:/core/ui/ControlPanel/Plugins/Installed/Themes]] [[$:/core/ui/ControlPanel/Plugins/Installed/Languages]]\" \"$:/core/ui/ControlPanel/Plugins/Installed/Plugins\">>\n"
},
"$:/core/ui/ControlPanel/Saving/DownloadSaver": {
"title": "$:/core/ui/ControlPanel/Saving/DownloadSaver",
"tags": "$:/tags/ControlPanel/Saving",
"caption": "{{$:/language/ControlPanel/Saving/DownloadSaver/Caption}}",
"text": "\\define lingo-base() $:/language/ControlPanel/Saving/DownloadSaver/\n\n<<lingo Hint>>\n\n!! <$link to=\"$:/config/DownloadSaver/AutoSave\"><<lingo AutoSave/Hint>></$link>\n\n<$checkbox tiddler=\"$:/config/DownloadSaver/AutoSave\" field=\"text\" checked=\"yes\" unchecked=\"no\" default=\"no\"> <<lingo AutoSave/Description>> </$checkbox>\n"
},
"$:/core/ui/ControlPanel/Saving/General": {
"title": "$:/core/ui/ControlPanel/Saving/General",
"tags": "$:/tags/ControlPanel/Saving",
"caption": "{{$:/language/ControlPanel/Saving/General/Caption}}",
"list-before": "",
"text": "\\define lingo-base() $:/language/ControlPanel/Settings/\n\n{{$:/language/ControlPanel/Saving/General/Hint}}\n\n!! <$link to=\"$:/config/AutoSave\"><<lingo AutoSave/Caption>></$link>\n\n<<lingo AutoSave/Hint>>\n\n<$radio tiddler=\"$:/config/AutoSave\" value=\"yes\"> <<lingo AutoSave/Enabled/Description>> </$radio>\n\n<$radio tiddler=\"$:/config/AutoSave\" value=\"no\"> <<lingo AutoSave/Disabled/Description>> </$radio>\n"
},
"$:/core/ui/ControlPanel/Saving/GitHub": {
"title": "$:/core/ui/ControlPanel/Saving/GitHub",
"tags": "$:/tags/ControlPanel/Saving",
"caption": "{{$:/language/ControlPanel/Saving/GitService/GitHub/Caption}}",
"text": "\\define lingo-base() $:/language/ControlPanel/Saving/GitService/\n\\define service-name() ~GitHub\n\n<<lingo Description>>\n\n|<<lingo UserName>> |<$edit-text tiddler=\"$:/GitHub/Username\" default=\"\" tag=\"input\"/> |\n|<<lingo GitHub/Password>> |<$password name=\"github\"/> |\n|<<lingo Repo>> |<$edit-text tiddler=\"$:/GitHub/Repo\" default=\"\" tag=\"input\"/> |\n|<<lingo Branch>> |<$edit-text tiddler=\"$:/GitHub/Branch\" default=\"master\" tag=\"input\"/> |\n|<<lingo Path>> |<$edit-text tiddler=\"$:/GitHub/Path\" default=\"\" tag=\"input\"/> |\n|<<lingo Filename>> |<$edit-text tiddler=\"$:/GitHub/Filename\" default=\"\" tag=\"input\"/> |\n|<<lingo ServerURL>> |<$edit-text tiddler=\"$:/GitHub/ServerURL\" default=\"https://api.github.com\" tag=\"input\"/> |"
},
"$:/core/ui/ControlPanel/Saving/GitLab": {
"title": "$:/core/ui/ControlPanel/Saving/GitLab",
"tags": "$:/tags/ControlPanel/Saving",
"caption": "{{$:/language/ControlPanel/Saving/GitService/GitLab/Caption}}",
"text": "\\define lingo-base() $:/language/ControlPanel/Saving/GitService/\n\\define service-name() ~GitLab\n\n<<lingo Description>>\n\n|<<lingo UserName>> |<$edit-text tiddler=\"$:/GitLab/Username\" default=\"\" tag=\"input\"/> |\n|<<lingo GitLab/Password>> |<$password name=\"gitlab\"/> |\n|<<lingo Repo>> |<$edit-text tiddler=\"$:/GitLab/Repo\" default=\"\" tag=\"input\"/> |\n|<<lingo Branch>> |<$edit-text tiddler=\"$:/GitLab/Branch\" default=\"master\" tag=\"input\"/> |\n|<<lingo Path>> |<$edit-text tiddler=\"$:/GitLab/Path\" default=\"\" tag=\"input\"/> |\n|<<lingo Filename>> |<$edit-text tiddler=\"$:/GitLab/Filename\" default=\"\" tag=\"input\"/> |\n|<<lingo ServerURL>> |<$edit-text tiddler=\"$:/GitLab/ServerURL\" default=\"https://gitlab.com/api/v4\" tag=\"input\"/> |"
},
"$:/core/ui/ControlPanel/Saving/TiddlySpot": {
"title": "$:/core/ui/ControlPanel/Saving/TiddlySpot",
"tags": "$:/tags/ControlPanel/Saving",
"caption": "{{$:/language/ControlPanel/Saving/TiddlySpot/Caption}}",
"text": "\\define lingo-base() $:/language/ControlPanel/Saving/TiddlySpot/\n\n\\define backupURL()\nhttp://$(userName)$.tiddlyspot.com/backup/\n\\end\n\\define backupLink()\n<$reveal type=\"nomatch\" state=\"$:/UploadName\" text=\"\">\n<$set name=\"userName\" value={{$:/UploadName}}>\n<$reveal type=\"match\" state=\"$:/UploadURL\" text=\"\">\n<<backupURL>>\n</$reveal>\n<$reveal type=\"nomatch\" state=\"$:/UploadURL\" text=\"\">\n<$macrocall $name=resolvePath source={{$:/UploadBackupDir}} root={{$:/UploadURL}}>>\n</$reveal>\n</$set>\n</$reveal>\n\\end\n\n<<lingo Description>>\n\n|<<lingo UserName>> |<$edit-text tiddler=\"$:/UploadName\" default=\"\" tag=\"input\"/> |\n|<<lingo Password>> |<$password name=\"upload\"/> |\n|<<lingo Backups>> |<<backupLink>> |\n\n''<<lingo Advanced/Heading>>''\n\n|<<lingo ServerURL>> |<$edit-text tiddler=\"$:/UploadURL\" default=\"\" tag=\"input\"/> |\n|<<lingo Filename>> |<$edit-text tiddler=\"$:/UploadFilename\" default=\"index.html\" tag=\"input\"/> |\n|<<lingo UploadDir>> |<$edit-text tiddler=\"$:/UploadDir\" default=\".\" tag=\"input\"/> |\n|<<lingo BackupDir>> |<$edit-text tiddler=\"$:/UploadBackupDir\" default=\".\" tag=\"input\"/> |\n\n<<lingo TiddlySpot/Hint>>"
},
"$:/core/ui/ControlPanel/Saving": {
"title": "$:/core/ui/ControlPanel/Saving",
"tags": "$:/tags/ControlPanel",
"caption": "{{$:/language/ControlPanel/Saving/Caption}}",
"text": "{{$:/language/ControlPanel/Saving/Hint}}\n\n<div class=\"tc-control-panel\">\n<<tabs \"[all[shadows+tiddlers]tag[$:/tags/ControlPanel/Saving]!has[draft.of]]\" \"$:/core/ui/ControlPanel/Saving/General\">>\n</div>\n"
},
"$:/core/buttonstyles/Borderless": {
"title": "$:/core/buttonstyles/Borderless",
"tags": "$:/tags/ToolbarButtonStyle",
"caption": "{{$:/language/ControlPanel/Settings/ToolbarButtonStyle/Styles/Borderless}}",
"text": "tc-btn-invisible"
},
"$:/core/buttonstyles/Boxed": {
"title": "$:/core/buttonstyles/Boxed",
"tags": "$:/tags/ToolbarButtonStyle",
"caption": "{{$:/language/ControlPanel/Settings/ToolbarButtonStyle/Styles/Boxed}}",
"text": "tc-btn-boxed"
},
"$:/core/buttonstyles/Rounded": {
"title": "$:/core/buttonstyles/Rounded",
"tags": "$:/tags/ToolbarButtonStyle",
"caption": "{{$:/language/ControlPanel/Settings/ToolbarButtonStyle/Styles/Rounded}}",
"text": "tc-btn-rounded"
},
"$:/core/ui/ControlPanel/Settings/CamelCase": {
"title": "$:/core/ui/ControlPanel/Settings/CamelCase",
"tags": "$:/tags/ControlPanel/Settings",
"caption": "{{$:/language/ControlPanel/Settings/CamelCase/Caption}}",
"text": "\\define lingo-base() $:/language/ControlPanel/Settings/CamelCase/\n<<lingo Hint>>\n\n<$checkbox tiddler=\"$:/config/WikiParserRules/Inline/wikilink\" field=\"text\" checked=\"enable\" unchecked=\"disable\" default=\"enable\"> <$link to=\"$:/config/WikiParserRules/Inline/wikilink\"><<lingo Description>></$link> </$checkbox>\n"
},
"$:/core/ui/ControlPanel/Settings/DefaultMoreSidebarTab": {
"title": "$:/core/ui/ControlPanel/Settings/DefaultMoreSidebarTab",
"caption": "{{$:/language/ControlPanel/Settings/DefaultMoreSidebarTab/Caption}}",
"tags": "$:/tags/ControlPanel/Settings",
"text": "\\define lingo-base() $:/language/ControlPanel/Settings/DefaultMoreSidebarTab/\n\n<$link to=\"$:/config/DefaultMoreSidebarTab\"><<lingo Hint>></$link>\n\n<$select tiddler=\"$:/config/DefaultMoreSidebarTab\">\n<$list filter=\"[all[shadows+tiddlers]tag[$:/tags/MoreSideBar]!has[draft.of]]\">\n<option value=<<currentTiddler>>><$transclude field=\"caption\"><$text text=<<currentTiddler>>/></$transclude></option>\n</$list>\n</$select>\n"
},
"$:/core/ui/ControlPanel/Settings/DefaultSidebarTab": {
"title": "$:/core/ui/ControlPanel/Settings/DefaultSidebarTab",
"caption": "{{$:/language/ControlPanel/Settings/DefaultSidebarTab/Caption}}",
"tags": "$:/tags/ControlPanel/Settings",
"text": "\\define lingo-base() $:/language/ControlPanel/Settings/DefaultSidebarTab/\n\n<$link to=\"$:/config/DefaultSidebarTab\"><<lingo Hint>></$link>\n\n<$select tiddler=\"$:/config/DefaultSidebarTab\">\n<$list filter=\"[all[shadows+tiddlers]tag[$:/tags/SideBar]!has[draft.of]]\">\n<option value=<<currentTiddler>>><$transclude field=\"caption\"><$text text=<<currentTiddler>>/></$transclude></option>\n</$list>\n</$select>\n"
},
"$:/core/ui/ControlPanel/Settings/EditorToolbar": {
"title": "$:/core/ui/ControlPanel/Settings/EditorToolbar",
"tags": "$:/tags/ControlPanel/Settings",
"caption": "{{$:/language/ControlPanel/Settings/EditorToolbar/Caption}}",
"text": "\\define lingo-base() $:/language/ControlPanel/Settings/EditorToolbar/\n<<lingo Hint>>\n\n<$checkbox tiddler=\"$:/config/TextEditor/EnableToolbar\" field=\"text\" checked=\"yes\" unchecked=\"no\" default=\"yes\"> <$link to=\"$:/config/TextEditor/EnableToolbar\"><<lingo Description>></$link> </$checkbox>\n\n"
},
"$:/core/ui/ControlPanel/Settings/InfoPanelMode": {
"title": "$:/core/ui/ControlPanel/Settings/InfoPanelMode",
"tags": "$:/tags/ControlPanel/Settings",
"caption": "{{$:/language/ControlPanel/Settings/InfoPanelMode/Caption}}",
"text": "\\define lingo-base() $:/language/ControlPanel/Settings/InfoPanelMode/\n<$link to=\"$:/config/TiddlerInfo/Mode\"><<lingo Hint>></$link>\n\n<$radio tiddler=\"$:/config/TiddlerInfo/Mode\" value=\"popup\"> <<lingo Popup/Description>> </$radio>\n\n<$radio tiddler=\"$:/config/TiddlerInfo/Mode\" value=\"sticky\"> <<lingo Sticky/Description>> </$radio>\n"
},
"$:/core/ui/ControlPanel/Settings/LinkToBehaviour": {
"title": "$:/core/ui/ControlPanel/Settings/LinkToBehaviour",
"tags": "$:/tags/ControlPanel/Settings",
"caption": "{{$:/language/ControlPanel/Settings/LinkToBehaviour/Caption}}",
"text": "\\define lingo-base() $:/language/ControlPanel/Settings/LinkToBehaviour/\n\n<$link to=\"$:/config/Navigation/openLinkFromInsideRiver\"><<lingo \"InsideRiver/Hint\">></$link>\n\n<$select tiddler=\"$:/config/Navigation/openLinkFromInsideRiver\">\n <option value=\"above\"><<lingo \"OpenAbove\">></option>\n <option value=\"below\"><<lingo \"OpenBelow\">></option>\n <option value=\"top\"><<lingo \"OpenAtTop\">></option>\n <option value=\"bottom\"><<lingo \"OpenAtBottom\">></option>\n</$select>\n\n<$link to=\"$:/config/Navigation/openLinkFromOutsideRiver\"><<lingo \"OutsideRiver/Hint\">></$link>\n\n<$select tiddler=\"$:/config/Navigation/openLinkFromOutsideRiver\">\n <option value=\"top\"><<lingo \"OpenAtTop\">></option>\n <option value=\"bottom\"><<lingo \"OpenAtBottom\">></option>\n</$select>\n"
},
"$:/core/ui/ControlPanel/Settings/MissingLinks": {
"title": "$:/core/ui/ControlPanel/Settings/MissingLinks",
"tags": "$:/tags/ControlPanel/Settings",
"caption": "{{$:/language/ControlPanel/Settings/MissingLinks/Caption}}",
"text": "\\define lingo-base() $:/language/ControlPanel/Settings/MissingLinks/\n<<lingo Hint>>\n\n<$checkbox tiddler=\"$:/config/MissingLinks\" field=\"text\" checked=\"yes\" unchecked=\"no\" default=\"yes\"> <$link to=\"$:/config/MissingLinks\"><<lingo Description>></$link> </$checkbox>\n\n"
},
"$:/core/ui/ControlPanel/Settings/NavigationAddressBar": {
"title": "$:/core/ui/ControlPanel/Settings/NavigationAddressBar",
"tags": "$:/tags/ControlPanel/Settings",
"caption": "{{$:/language/ControlPanel/Settings/NavigationAddressBar/Caption}}",
"text": "\\define lingo-base() $:/language/ControlPanel/Settings/NavigationAddressBar/\n\n<$link to=\"$:/config/Navigation/UpdateAddressBar\"><<lingo Hint>></$link>\n\n<$radio tiddler=\"$:/config/Navigation/UpdateAddressBar\" value=\"permaview\"> <<lingo Permaview/Description>> </$radio>\n\n<$radio tiddler=\"$:/config/Navigation/UpdateAddressBar\" value=\"permalink\"> <<lingo Permalink/Description>> </$radio>\n\n<$radio tiddler=\"$:/config/Navigation/UpdateAddressBar\" value=\"no\"> <<lingo No/Description>> </$radio>\n"
},
"$:/core/ui/ControlPanel/Settings/NavigationHistory": {
"title": "$:/core/ui/ControlPanel/Settings/NavigationHistory",
"tags": "$:/tags/ControlPanel/Settings",
"caption": "{{$:/language/ControlPanel/Settings/NavigationHistory/Caption}}",
"text": "\\define lingo-base() $:/language/ControlPanel/Settings/NavigationHistory/\n<$link to=\"$:/config/Navigation/UpdateHistory\"><<lingo Hint>></$link>\n\n<$radio tiddler=\"$:/config/Navigation/UpdateHistory\" value=\"yes\"> <<lingo Yes/Description>> </$radio>\n\n<$radio tiddler=\"$:/config/Navigation/UpdateHistory\" value=\"no\"> <<lingo No/Description>> </$radio>\n"
},
"$:/core/ui/ControlPanel/Settings/NavigationPermalinkviewMode": {
"title": "$:/core/ui/ControlPanel/Settings/NavigationPermalinkviewMode",
"tags": "$:/tags/ControlPanel/Settings",
"caption": "{{$:/language/ControlPanel/Settings/NavigationPermalinkviewMode/Caption}}",
"text": "\\define lingo-base() $:/language/ControlPanel/Settings/NavigationPermalinkviewMode/\n<<lingo Hint>>\n\n<$checkbox tiddler=\"$:/config/Navigation/Permalinkview/CopyToClipboard\" field=\"text\" checked=\"yes\" unchecked=\"no\" default=\"yes\"> <$link to=\"$:/config/Navigation/Permalinkview/CopyToClipboard\"><<lingo CopyToClipboard/Description>></$link> </$checkbox>\n\n<$checkbox tiddler=\"$:/config/Navigation/Permalinkview/UpdateAddressBar\" field=\"text\" checked=\"yes\" unchecked=\"no\" default=\"yes\"> <$link to=\"$:/config/Navigation/Permalinkview/UpdateAddressBar\"><<lingo UpdateAddressBar/Description>></$link> </$checkbox>\n"
},
"$:/core/ui/ControlPanel/Settings/PerformanceInstrumentation": {
"title": "$:/core/ui/ControlPanel/Settings/PerformanceInstrumentation",
"tags": "$:/tags/ControlPanel/Settings",
"caption": "{{$:/language/ControlPanel/Settings/PerformanceInstrumentation/Caption}}",
"text": "\\define lingo-base() $:/language/ControlPanel/Settings/PerformanceInstrumentation/\n<<lingo Hint>>\n\n<$checkbox tiddler=\"$:/config/Performance/Instrumentation\" field=\"text\" checked=\"yes\" unchecked=\"no\" default=\"no\"> <$link to=\"$:/config/Performance/Instrumentation\"><<lingo Description>></$link> </$checkbox>\n"
},
"$:/core/ui/ControlPanel/Settings/TitleLinks": {
"title": "$:/core/ui/ControlPanel/Settings/TitleLinks",
"tags": "$:/tags/ControlPanel/Settings",
"caption": "{{$:/language/ControlPanel/Settings/TitleLinks/Caption}}",
"text": "\\define lingo-base() $:/language/ControlPanel/Settings/TitleLinks/\n<$link to=\"$:/config/Tiddlers/TitleLinks\"><<lingo Hint>></$link>\n\n<$radio tiddler=\"$:/config/Tiddlers/TitleLinks\" value=\"yes\"> <<lingo Yes/Description>> </$radio>\n\n<$radio tiddler=\"$:/config/Tiddlers/TitleLinks\" value=\"no\"> <<lingo No/Description>> </$radio>\n"
},
"$:/core/ui/ControlPanel/Settings/ToolbarButtonStyle": {
"title": "$:/core/ui/ControlPanel/Settings/ToolbarButtonStyle",
"tags": "$:/tags/ControlPanel/Settings",
"caption": "{{$:/language/ControlPanel/Settings/ToolbarButtonStyle/Caption}}",
"text": "\\define lingo-base() $:/language/ControlPanel/Settings/ToolbarButtonStyle/\n<$link to=\"$:/config/Toolbar/ButtonClass\"><<lingo \"Hint\">></$link>\n\n<$select tiddler=\"$:/config/Toolbar/ButtonClass\">\n<$list filter=\"[all[shadows+tiddlers]tag[$:/tags/ToolbarButtonStyle]]\">\n<option value={{!!text}}>{{!!caption}}</option>\n</$list>\n</$select>\n"
},
"$:/core/ui/ControlPanel/Settings/ToolbarButtons": {
"title": "$:/core/ui/ControlPanel/Settings/ToolbarButtons",
"tags": "$:/tags/ControlPanel/Settings",
"caption": "{{$:/language/ControlPanel/Settings/ToolbarButtons/Caption}}",
"text": "\\define lingo-base() $:/language/ControlPanel/Settings/ToolbarButtons/\n<<lingo Hint>>\n\n<$checkbox tiddler=\"$:/config/Toolbar/Icons\" field=\"text\" checked=\"yes\" unchecked=\"no\" default=\"yes\"> <$link to=\"$:/config/Toolbar/Icons\"><<lingo Icons/Description>></$link> </$checkbox>\n\n<$checkbox tiddler=\"$:/config/Toolbar/Text\" field=\"text\" checked=\"yes\" unchecked=\"no\" default=\"no\"> <$link to=\"$:/config/Toolbar/Text\"><<lingo Text/Description>></$link> </$checkbox>\n"
},
"$:/core/ui/ControlPanel/Settings": {
"title": "$:/core/ui/ControlPanel/Settings",
"tags": "$:/tags/ControlPanel",
"caption": "{{$:/language/ControlPanel/Settings/Caption}}",
"text": "\\define lingo-base() $:/language/ControlPanel/Settings/\n\n<<lingo Hint>>\n\n<$list filter=\"[all[shadows+tiddlers]tag[$:/tags/ControlPanel/Settings]]\">\n\n<div style=\"border-top:1px solid #eee;\">\n\n!! <$link><$transclude field=\"caption\"/></$link>\n\n<$transclude/>\n\n</div>\n\n</$list>\n"
},
"$:/core/ui/ControlPanel/StoryView": {
"title": "$:/core/ui/ControlPanel/StoryView",
"tags": "$:/tags/ControlPanel/Appearance",
"caption": "{{$:/language/ControlPanel/StoryView/Caption}}",
"text": "{{$:/snippets/viewswitcher}}\n"
},
"$:/core/ui/ControlPanel/Stylesheets": {
"title": "$:/core/ui/ControlPanel/Stylesheets",
"tags": "$:/tags/ControlPanel/Advanced",
"caption": "{{$:/language/ControlPanel/Stylesheets/Caption}}",
"text": "\\define lingo-base() $:/language/ControlPanel/\n\n<<lingo Stylesheets/Hint>>\n\n{{$:/snippets/peek-stylesheets}}\n"
},
"$:/core/ui/ControlPanel/Theme": {
"title": "$:/core/ui/ControlPanel/Theme",
"tags": "$:/tags/ControlPanel/Appearance",
"caption": "{{$:/language/ControlPanel/Theme/Caption}}",
"text": "{{$:/snippets/themeswitcher}}\n"
},
"$:/core/ui/ControlPanel/TiddlerFields": {
"title": "$:/core/ui/ControlPanel/TiddlerFields",
"tags": "$:/tags/ControlPanel/Advanced",
"caption": "{{$:/language/ControlPanel/TiddlerFields/Caption}}",
"text": "\\define lingo-base() $:/language/ControlPanel/\n\n<<lingo TiddlerFields/Hint>>\n\n{{$:/snippets/allfields}}"
},
"$:/core/ui/ControlPanel/Toolbars/EditToolbar": {
"title": "$:/core/ui/ControlPanel/Toolbars/EditToolbar",
"tags": "$:/tags/ControlPanel/Toolbars",
"caption": "{{$:/language/ControlPanel/Toolbars/EditToolbar/Caption}}",
"text": "\\define lingo-base() $:/language/TiddlerInfo/\n\n\\define config-base() $:/config/EditToolbarButtons/Visibility/\n\n{{$:/language/ControlPanel/Toolbars/EditToolbar/Hint}}\n\n<$set name=\"tv-config-toolbar-icons\" value=\"yes\">\n\n<$set name=\"tv-config-toolbar-text\" value=\"yes\">\n\n<$macrocall $name=\"list-tagged-draggable\" tag=\"$:/tags/EditToolbar\" itemTemplate=\"$:/core/ui/ControlPanel/Toolbars/ItemTemplate\"/>\n\n</$set>\n\n</$set>"
},
"$:/core/ui/ControlPanel/Toolbars/EditorItemTemplate": {
"title": "$:/core/ui/ControlPanel/Toolbars/EditorItemTemplate",
"text": "\\define config-title()\n$(config-base)$$(currentTiddler)$\n\\end\n\n<$draggable tiddler=<<currentTiddler>>>\n<$checkbox tiddler=<<config-title>> field=\"text\" checked=\"show\" unchecked=\"hide\" default=\"show\"/> <span class=\"tc-icon-wrapper\"><$transclude tiddler={{!!icon}}/></span> <$transclude field=\"caption\"/> -- <i class=\"tc-muted\"><$transclude field=\"description\"/></i>\n</$draggable>\n"
},
"$:/core/ui/ControlPanel/Toolbars/EditorToolbar": {
"title": "$:/core/ui/ControlPanel/Toolbars/EditorToolbar",
"tags": "$:/tags/ControlPanel/Toolbars",
"caption": "{{$:/language/ControlPanel/Toolbars/EditorToolbar/Caption}}",
"text": "\\define lingo-base() $:/language/TiddlerInfo/\n\n\\define config-base() $:/config/EditorToolbarButtons/Visibility/\n\n{{$:/language/ControlPanel/Toolbars/EditorToolbar/Hint}}\n\n<$macrocall $name=\"list-tagged-draggable\" tag=\"$:/tags/EditorToolbar\" itemTemplate=\"$:/core/ui/ControlPanel/Toolbars/EditorItemTemplate\"/>\n"
},
"$:/core/ui/ControlPanel/Toolbars/ItemTemplate": {
"title": "$:/core/ui/ControlPanel/Toolbars/ItemTemplate",
"text": "\\define config-title()\n$(config-base)$$(currentTiddler)$\n\\end\n\n<$draggable tiddler=<<currentTiddler>>>\n<$checkbox tiddler=<<config-title>> field=\"text\" checked=\"show\" unchecked=\"hide\" default=\"show\"/> <span class=\"tc-icon-wrapper\"> <$transclude field=\"caption\"/> <i class=\"tc-muted\">-- <$transclude field=\"description\"/></i></span>\n</$draggable>\n"
},
"$:/core/ui/ControlPanel/Toolbars/PageControls": {
"title": "$:/core/ui/ControlPanel/Toolbars/PageControls",
"tags": "$:/tags/ControlPanel/Toolbars",
"caption": "{{$:/language/ControlPanel/Toolbars/PageControls/Caption}}",
"text": "\\define lingo-base() $:/language/TiddlerInfo/\n\n\\define config-base() $:/config/PageControlButtons/Visibility/\n\n{{$:/language/ControlPanel/Toolbars/PageControls/Hint}}\n\n<$set name=\"tv-config-toolbar-icons\" value=\"yes\">\n\n<$set name=\"tv-config-toolbar-text\" value=\"yes\">\n\n<$macrocall $name=\"list-tagged-draggable\" tag=\"$:/tags/PageControls\" itemTemplate=\"$:/core/ui/ControlPanel/Toolbars/ItemTemplate\"/>\n\n</$set>\n\n</$set>\n"
},
"$:/core/ui/ControlPanel/Toolbars/ViewToolbar": {
"title": "$:/core/ui/ControlPanel/Toolbars/ViewToolbar",
"tags": "$:/tags/ControlPanel/Toolbars",
"caption": "{{$:/language/ControlPanel/Toolbars/ViewToolbar/Caption}}",
"text": "\\define lingo-base() $:/language/TiddlerInfo/\n\n\\define config-base() $:/config/ViewToolbarButtons/Visibility/\n\n{{$:/language/ControlPanel/Toolbars/ViewToolbar/Hint}}\n\n<$set name=\"tv-config-toolbar-icons\" value=\"yes\">\n\n<$set name=\"tv-config-toolbar-text\" value=\"yes\">\n\n<$macrocall $name=\"list-tagged-draggable\" tag=\"$:/tags/ViewToolbar\" itemTemplate=\"$:/core/ui/ControlPanel/Toolbars/ItemTemplate\"/>\n\n</$set>\n\n</$set>\n"
},
"$:/core/ui/ControlPanel/Toolbars": {
"title": "$:/core/ui/ControlPanel/Toolbars",
"tags": "$:/tags/ControlPanel/Appearance",
"caption": "{{$:/language/ControlPanel/Toolbars/Caption}}",
"text": "{{$:/language/ControlPanel/Toolbars/Hint}}\n\n<div class=\"tc-control-panel\">\n<<tabs \"[all[shadows+tiddlers]tag[$:/tags/ControlPanel/Toolbars]!has[draft.of]]\" \"$:/core/ui/ControlPanel/Toolbars/ViewToolbar\" \"$:/state/tabs/controlpanel/toolbars\" \"tc-vertical\">>\n</div>\n"
},
"$:/ControlPanel": {
"title": "$:/ControlPanel",
"icon": "$:/core/images/options-button",
"color": "#bbb",
"text": "<div class=\"tc-control-panel\">\n<<tabs \"[all[shadows+tiddlers]tag[$:/tags/ControlPanel]!has[draft.of]]\" \"$:/core/ui/ControlPanel/Info\">>\n</div>\n"
},
"$:/core/ui/DefaultSearchResultList": {
"title": "$:/core/ui/DefaultSearchResultList",
"tags": "$:/tags/SearchResults",
"caption": "{{$:/language/Search/DefaultResults/Caption}}",
"text": "\\define searchResultList()\n//<small>{{$:/language/Search/Matches/Title}}</small>//\n\n<$list filter=\"[!is[system]search:title{$(searchTiddler)$}sort[title]limit[250]]\" template=\"$:/core/ui/ListItemTemplate\"/>\n\n//<small>{{$:/language/Search/Matches/All}}</small>//\n\n<$list filter=\"[!is[system]search{$(searchTiddler)$}sort[title]limit[250]]\" template=\"$:/core/ui/ListItemTemplate\"/>\n\n\\end\n<<searchResultList>>\n"
},
"$:/core/ui/EditTemplate/body/preview/diffs-current": {
"title": "$:/core/ui/EditTemplate/body/preview/diffs-current",
"tags": "$:/tags/EditPreview",
"caption": "differences from current",
"list-after": "$:/core/ui/EditTemplate/body/preview/output",
"text": "<$list filter=\"[<currentTiddler>!is[image]]\" emptyMessage={{$:/core/ui/EditTemplate/body/preview/output}}>\n\n<$macrocall $name=\"compareTiddlerText\" sourceTiddlerTitle={{!!draft.of}} destTiddlerTitle=<<currentTiddler>>/>\n\n</$list>\n\n"
},
"$:/core/ui/EditTemplate/body/preview/diffs-shadow": {
"title": "$:/core/ui/EditTemplate/body/preview/diffs-shadow",
"tags": "$:/tags/EditPreview",
"caption": "differences from shadow (if any)",
"list-after": "$:/core/ui/EditTemplate/body/preview/output",
"text": "<$list filter=\"[<currentTiddler>!is[image]]\" emptyMessage={{$:/core/ui/EditTemplate/body/preview/output}}>\n\n<$macrocall $name=\"compareTiddlerText\" sourceTiddlerTitle={{{ [{!!draft.of}shadowsource[]] }}} sourceSubTiddlerTitle={{!!draft.of}} destTiddlerTitle=<<currentTiddler>>/>\n\n</$list>\n\n"
},
"$:/core/ui/EditTemplate/body/preview/output": {
"title": "$:/core/ui/EditTemplate/body/preview/output",
"tags": "$:/tags/EditPreview",
"caption": "{{$:/language/EditTemplate/Body/Preview/Type/Output}}",
"text": "<$set name=\"tv-tiddler-preview\" value=\"yes\">\n\n<$transclude />\n\n</$set>\n"
},
"$:/state/showeditpreview": {
"title": "$:/state/showeditpreview",
"text": "no"
},
"$:/core/ui/EditTemplate/body/editor": {
"title": "$:/core/ui/EditTemplate/body/editor",
"text": "<$edit\n\n field=\"text\"\n class=\"tc-edit-texteditor\"\n placeholder={{$:/language/EditTemplate/Body/Placeholder}}\n tabindex={{$:/config/EditTabIndex}}\n\n><$set\n\n name=\"targetTiddler\"\n value=<<currentTiddler>>\n\n><$list\n\n filter=\"[all[shadows+tiddlers]tag[$:/tags/EditorToolbar]!has[draft.of]]\"\n\n><$reveal\n\n type=\"nomatch\"\n state=<<config-visibility-title>>\n text=\"hide\"\n class=\"tc-text-editor-toolbar-item-wrapper\"\n\n><$transclude\n\n tiddler=\"$:/core/ui/EditTemplate/body/toolbar/button\"\n mode=\"inline\"\n\n/></$reveal></$list></$set></$edit>\n"
},
"$:/core/ui/EditTemplate/body/toolbar/button": {
"title": "$:/core/ui/EditTemplate/body/toolbar/button",
"text": "\\define toolbar-button-icon()\n<$list\n\n filter=\"[all[current]!has[custom-icon]]\"\n variable=\"no-custom-icon\"\n\n><$transclude\n\n tiddler={{!!icon}}\n\n/></$list>\n\\end\n\n\\define toolbar-button-tooltip()\n{{!!description}}<$macrocall $name=\"displayshortcuts\" $output=\"text/plain\" shortcuts={{!!shortcuts}} prefix=\"` - [\" separator=\"] [\" suffix=\"]`\"/>\n\\end\n\n\\define toolbar-button()\n<$list\n\n filter={{!!condition}}\n variable=\"list-condition\"\n\n><$wikify\n\n name=\"tooltip-text\"\n text=<<toolbar-button-tooltip>>\n mode=\"inline\"\n output=\"text\"\n\n><$list\n\n filter=\"[all[current]!has[dropdown]]\"\n variable=\"no-dropdown\"\n\n><$button\n\n class=\"tc-btn-invisible $(buttonClasses)$\"\n tooltip=<<tooltip-text>>\n actions={{!!actions}}\n\n><span\n\n data-tw-keyboard-shortcut={{!!shortcuts}}\n\n/><<toolbar-button-icon>><$transclude\n\n tiddler=<<currentTiddler>>\n field=\"text\"\n\n/></$button></$list><$list\n\n filter=\"[all[current]has[dropdown]]\"\n variable=\"dropdown\"\n\n><$set\n\n name=\"dropdown-state\"\n value=<<qualify \"$:/state/EditorToolbarDropdown\">>\n\n><$button\n\n popup=<<dropdown-state>>\n class=\"tc-popup-keep tc-btn-invisible $(buttonClasses)$\"\n selectedClass=\"tc-selected\"\n tooltip=<<tooltip-text>>\n actions={{!!actions}}\n\n><span\n\n data-tw-keyboard-shortcut={{!!shortcuts}}\n\n/><<toolbar-button-icon>><$transclude\n\n tiddler=<<currentTiddler>>\n field=\"text\"\n\n/></$button><$reveal\n\n state=<<dropdown-state>>\n type=\"popup\"\n position=\"below\"\n animate=\"yes\"\n tag=\"span\"\n\n><div\n\n class=\"tc-drop-down tc-popup-keep\"\n\n><$transclude\n\n tiddler={{!!dropdown}}\n mode=\"block\"\n\n/></div></$reveal></$set></$list></$wikify></$list>\n\\end\n\n\\define toolbar-button-outer()\n<$set\n\n name=\"buttonClasses\"\n value={{!!button-classes}}\n\n><<toolbar-button>></$set>\n\\end\n\n<<toolbar-button-outer>>"
},
"$:/core/ui/EditTemplate/body": {
"title": "$:/core/ui/EditTemplate/body",
"tags": "$:/tags/EditTemplate",
"text": "\\define lingo-base() $:/language/EditTemplate/Body/\n\\define config-visibility-title()\n$:/config/EditorToolbarButtons/Visibility/$(currentTiddler)$\n\\end\n<$list filter=\"[all[current]has[_canonical_uri]]\">\n\n<div class=\"tc-message-box\">\n\n<<lingo External/Hint>>\n\n<a href={{!!_canonical_uri}}><$text text={{!!_canonical_uri}}/></a>\n\n<$edit-text field=\"_canonical_uri\" class=\"tc-edit-fields\" tabindex={{$:/config/EditTabIndex}}></$edit-text>\n\n</div>\n\n</$list>\n\n<$list filter=\"[all[current]!has[_canonical_uri]]\">\n\n<$reveal state=\"$:/state/showeditpreview\" type=\"match\" text=\"yes\">\n\n<div class=\"tc-tiddler-preview\">\n\n<$transclude tiddler=\"$:/core/ui/EditTemplate/body/editor\" mode=\"inline\"/>\n\n<div class=\"tc-tiddler-preview-preview\">\n\n<$transclude tiddler={{$:/state/editpreviewtype}} mode=\"inline\">\n\n<$transclude tiddler=\"$:/core/ui/EditTemplate/body/preview/output\" mode=\"inline\"/>\n\n</$transclude>\n\n</div>\n\n</div>\n\n</$reveal>\n\n<$reveal state=\"$:/state/showeditpreview\" type=\"nomatch\" text=\"yes\">\n\n<$transclude tiddler=\"$:/core/ui/EditTemplate/body/editor\" mode=\"inline\"/>\n\n</$reveal>\n\n</$list>\n"
},
"$:/core/ui/EditTemplate/controls": {
"title": "$:/core/ui/EditTemplate/controls",
"tags": "$:/tags/EditTemplate",
"text": "\\define config-title()\n$:/config/EditToolbarButtons/Visibility/$(listItem)$\n\\end\n<div class=\"tc-tiddler-title tc-tiddler-edit-title\">\n<$view field=\"title\"/>\n<span class=\"tc-tiddler-controls tc-titlebar\"><$list filter=\"[all[shadows+tiddlers]tag[$:/tags/EditToolbar]!has[draft.of]]\" variable=\"listItem\"><$reveal type=\"nomatch\" state=<<config-title>> text=\"hide\"><$transclude tiddler=<<listItem>>/></$reveal></$list></span>\n<div style=\"clear: both;\"></div>\n</div>\n"
},
"$:/core/ui/EditTemplate/fields": {
"title": "$:/core/ui/EditTemplate/fields",
"tags": "$:/tags/EditTemplate",
"text": "\\define lingo-base() $:/language/EditTemplate/\n\\define config-title()\n$:/config/EditTemplateFields/Visibility/$(currentField)$\n\\end\n\n\\define config-filter()\n[[hide]] -[title{$(config-title)$}]\n\\end\n\n\\define new-field()\n<$vars name={{$:/temp/newfieldname}}>\n<$reveal type=\"nomatch\" text=\"\" default=<<name>>>\n<$button>\n<$action-sendmessage $message=\"tm-add-field\"\n$name=<<name>>\n$value={{$:/temp/newfieldvalue}}/>\n<$action-deletetiddler $tiddler=\"$:/temp/newfieldname\"/>\n<$action-deletetiddler $tiddler=\"$:/temp/newfieldvalue\"/>\n<<lingo Fields/Add/Button>>\n</$button>\n</$reveal>\n<$reveal type=\"match\" text=\"\" default=<<name>>>\n<$button>\n<<lingo Fields/Add/Button>>\n</$button>\n</$reveal>\n</$vars>\n\\end\n\\whitespace trim\n\n<div class=\"tc-edit-fields\">\n<table class=\"tc-edit-fields\">\n<tbody>\n<$list filter=\"[all[current]fields[]] +[sort[title]]\" variable=\"currentField\" storyview=\"pop\">\n<$list filter=<<config-filter>> variable=\"temp\">\n<tr class=\"tc-edit-field\">\n<td class=\"tc-edit-field-name\">\n<$text text=<<currentField>>/>:</td>\n<td class=\"tc-edit-field-value\">\n<$edit-text tiddler=<<currentTiddler>> field=<<currentField>> placeholder={{$:/language/EditTemplate/Fields/Add/Value/Placeholder}} tabindex={{$:/config/EditTabIndex}}/>\n</td>\n<td class=\"tc-edit-field-remove\">\n<$button class=\"tc-btn-invisible\" tooltip={{$:/language/EditTemplate/Field/Remove/Hint}} aria-label={{$:/language/EditTemplate/Field/Remove/Caption}}>\n<$action-deletefield $field=<<currentField>>/>\n{{$:/core/images/delete-button}}\n</$button>\n</td>\n</tr>\n</$list>\n</$list>\n</tbody>\n</table>\n</div>\n\n<$fieldmangler>\n<div class=\"tc-edit-field-add\">\n<em class=\"tc-edit\">\n<<lingo Fields/Add/Prompt>>\n</em>\n<span class=\"tc-edit-field-add-name\">\n<$edit-text tiddler=\"$:/temp/newfieldname\" tag=\"input\" default=\"\" placeholder={{$:/language/EditTemplate/Fields/Add/Name/Placeholder}} focusPopup=<<qualify \"$:/state/popup/field-dropdown\">> class=\"tc-edit-texteditor tc-popup-handle\" tabindex={{$:/config/EditTabIndex}}/>\n</span>\n<$button popup=<<qualify \"$:/state/popup/field-dropdown\">> class=\"tc-btn-invisible tc-btn-dropdown\" tooltip={{$:/language/EditTemplate/Field/Dropdown/Hint}} aria-label={{$:/language/EditTemplate/Field/Dropdown/Caption}}>{{$:/core/images/down-arrow}}</$button>\n<$reveal state=<<qualify \"$:/state/popup/field-dropdown\">> type=\"nomatch\" text=\"\" default=\"\">\n<div class=\"tc-block-dropdown tc-edit-type-dropdown\">\n<$set name=\"tv-show-missing-links\" value=\"yes\">\n<$linkcatcher to=\"$:/temp/newfieldname\">\n<div class=\"tc-dropdown-item\">\n<<lingo Fields/Add/Dropdown/User>>\n</div>\n<$list filter=\"[!is[shadow]!is[system]fields[]search:title{$:/temp/newfieldname}sort[]] -created -creator -draft.of -draft.title -modified -modifier -tags -text -title -type\" variable=\"currentField\">\n<$link to=<<currentField>>>\n<<currentField>>\n</$link>\n</$list>\n<div class=\"tc-dropdown-item\">\n<<lingo Fields/Add/Dropdown/System>>\n</div>\n<$list filter=\"[fields[]search:title{$:/temp/newfieldname}sort[]] -[!is[shadow]!is[system]fields[]]\" variable=\"currentField\">\n<$link to=<<currentField>>>\n<<currentField>>\n</$link>\n</$list>\n</$linkcatcher>\n</$set>\n</div>\n</$reveal>\n<span class=\"tc-edit-field-add-value\">\n<$edit-text tiddler=\"$:/temp/newfieldvalue\" tag=\"input\" default=\"\" placeholder={{$:/language/EditTemplate/Fields/Add/Value/Placeholder}} class=\"tc-edit-texteditor\" tabindex={{$:/config/EditTabIndex}}/>\n</span>\n<span class=\"tc-edit-field-add-button\">\n<$macrocall $name=\"new-field\"/>\n</span>\n</div>\n</$fieldmangler>\n"
},
"$:/core/ui/EditTemplate/shadow": {
"title": "$:/core/ui/EditTemplate/shadow",
"tags": "$:/tags/EditTemplate",
"text": "\\define lingo-base() $:/language/EditTemplate/Shadow/\n\\define pluginLinkBody()\n<$link to=\"\"\"$(pluginTitle)$\"\"\">\n<$text text=\"\"\"$(pluginTitle)$\"\"\"/>\n</$link>\n\\end\n<$list filter=\"[all[current]get[draft.of]is[shadow]!is[tiddler]]\">\n\n<$list filter=\"[all[current]shadowsource[]]\" variable=\"pluginTitle\">\n\n<$set name=\"pluginLink\" value=<<pluginLinkBody>>>\n<div class=\"tc-message-box\">\n\n<<lingo Warning>>\n\n</div>\n</$set>\n</$list>\n\n</$list>\n\n<$list filter=\"[all[current]get[draft.of]is[shadow]is[tiddler]]\">\n\n<$list filter=\"[all[current]shadowsource[]]\" variable=\"pluginTitle\">\n\n<$set name=\"pluginLink\" value=<<pluginLinkBody>>>\n<div class=\"tc-message-box\">\n\n<<lingo OverriddenWarning>>\n\n</div>\n</$set>\n</$list>\n\n</$list>"
},
"$:/core/ui/EditTemplate/tags": {
"title": "$:/core/ui/EditTemplate/tags",
"tags": "$:/tags/EditTemplate",
"text": "\\whitespace trim\n\n\\define lingo-base() $:/language/EditTemplate/\n\n\\define tag-styles()\nbackground-color:$(backgroundColor)$;\nfill:$(foregroundColor)$;\ncolor:$(foregroundColor)$;\n\\end\n\n\\define tag-body-inner(colour,fallbackTarget,colourA,colourB,icon)\n\\whitespace trim\n<$vars foregroundColor=<<contrastcolour target:\"\"\"$colour$\"\"\" fallbackTarget:\"\"\"$fallbackTarget$\"\"\" colourA:\"\"\"$colourA$\"\"\" colourB:\"\"\"$colourB$\"\"\">> backgroundColor=\"\"\"$colour$\"\"\">\n<span style=<<tag-styles>> class=\"tc-tag-label tc-tag-list-item\">\n<$transclude tiddler=\"\"\"$icon$\"\"\"/> <$view field=\"title\" format=\"text\" />\n<$button message=\"tm-remove-tag\" param={{!!title}} class=\"tc-btn-invisible tc-remove-tag-button\">{{$:/core/images/close-button}}</$button>\n</span>\n</$vars>\n\\end\n\n\\define tag-body(colour,palette,icon)\n<$macrocall $name=\"tag-body-inner\" colour=\"\"\"$colour$\"\"\" fallbackTarget={{$palette$##tag-background}} colourA={{$palette$##foreground}} colourB={{$palette$##background}} icon=\"\"\"$icon$\"\"\"/>\n\\end\n\n\\define tag-picker-actions()\n<$action-listops\n\t$tiddler=<<currentTiddler>>\n\t$field=\"tags\"\n\t$subfilter=\"[<tag>] [all[current]tags[]]\"\n/>\n\\end\n\n<div class=\"tc-edit-tags\">\n<$fieldmangler>\n<$list filter=\"[all[current]tags[]sort[title]]\" storyview=\"pop\">\n<$macrocall $name=\"tag-body\" colour={{!!color}} palette={{$:/palette}} icon={{!!icon}}/>\n</$list>\n</$fieldmangler>\n<$set name=\"tabIndex\" value={{$:/config/EditTabIndex}}>\n<$macrocall $name=\"tag-picker\" actions=<<tag-picker-actions>>/>\n</$set>\n</div>\n"
},
"$:/core/ui/EditTemplate/title": {
"title": "$:/core/ui/EditTemplate/title",
"tags": "$:/tags/EditTemplate",
"text": "<$edit-text field=\"draft.title\" class=\"tc-titlebar tc-edit-texteditor\" focus=\"true\" tabindex={{$:/config/EditTabIndex}}/>\n\n<$vars pattern=\"\"\"[\\|\\[\\]{}]\"\"\" bad-chars=\"\"\"`| [ ] { }`\"\"\">\n\n<$list filter=\"[all[current]regexp:draft.title<pattern>]\" variable=\"listItem\">\n\n<div class=\"tc-message-box\">\n\n{{$:/core/images/warning}} {{$:/language/EditTemplate/Title/BadCharacterWarning}}\n\n</div>\n\n</$list>\n\n</$vars>\n\n<$reveal state=\"!!draft.title\" type=\"nomatch\" text={{!!draft.of}} tag=\"div\">\n\n<$list filter=\"[{!!draft.title}!is[missing]]\" variable=\"listItem\">\n\n<div class=\"tc-message-box\">\n\n{{$:/core/images/warning}} {{$:/language/EditTemplate/Title/Exists/Prompt}}\n\n</div>\n\n</$list>\n\n<$list filter=\"[{!!draft.of}!is[missing]]\" variable=\"listItem\">\n\n<$vars fromTitle={{!!draft.of}} toTitle={{!!draft.title}}>\n\n<$checkbox tiddler=\"$:/config/RelinkOnRename\" field=\"text\" checked=\"yes\" unchecked=\"no\" default=\"no\"> {{$:/language/EditTemplate/Title/Relink/Prompt}}</$checkbox>\n\n<$list filter=\"[title<fromTitle>backlinks[]limit[1]]\" variable=\"listItem\">\n\n<$vars stateTiddler=<<qualify \"$:/state/edit/references\">> >\n\n<$reveal type=\"nomatch\" state=<<stateTiddler>> text=\"show\">\n<$button set=<<stateTiddler>> setTo=\"show\" class=\"tc-btn-invisible\">{{$:/core/images/right-arrow}} \n<<lingo EditTemplate/Title/References/Prompt>></$button>\n</$reveal>\n<$reveal type=\"match\" state=<<stateTiddler>> text=\"show\">\n<$button set=<<stateTiddler>> setTo=\"hide\" class=\"tc-btn-invisible\">{{$:/core/images/down-arrow}} \n<<lingo EditTemplate/Title/References/Prompt>></$button>\n</$reveal>\n\n<$reveal type=\"match\" state=<<stateTiddler>> text=\"show\">\n<$tiddler tiddler=<<fromTitle>> >\n<$transclude tiddler=\"$:/core/ui/TiddlerInfo/References\"/>\n</$tiddler>\n</$reveal>\n\n</$vars>\n\n</$list>\n\n</$vars>\n\n</$list>\n\n</$reveal>\n"
},
"$:/core/ui/EditTemplate/type": {
"title": "$:/core/ui/EditTemplate/type",
"tags": "$:/tags/EditTemplate",
"text": "\\define lingo-base() $:/language/EditTemplate/\n<div class=\"tc-type-selector\"><$fieldmangler>\n<em class=\"tc-edit\"><<lingo Type/Prompt>></em> <$edit-text field=\"type\" tag=\"input\" default=\"\" placeholder={{$:/language/EditTemplate/Type/Placeholder}} focusPopup=<<qualify \"$:/state/popup/type-dropdown\">> class=\"tc-edit-typeeditor tc-popup-handle\" tabindex={{$:/config/EditTabIndex}}/> <$button popup=<<qualify \"$:/state/popup/type-dropdown\">> class=\"tc-btn-invisible tc-btn-dropdown\" tooltip={{$:/language/EditTemplate/Type/Dropdown/Hint}} aria-label={{$:/language/EditTemplate/Type/Dropdown/Caption}}>{{$:/core/images/down-arrow}}</$button> <$button message=\"tm-remove-field\" param=\"type\" class=\"tc-btn-invisible tc-btn-icon\" tooltip={{$:/language/EditTemplate/Type/Delete/Hint}} aria-label={{$:/language/EditTemplate/Type/Delete/Caption}}>{{$:/core/images/delete-button}}</$button>\n</$fieldmangler></div>\n\n<div class=\"tc-block-dropdown-wrapper\">\n<$set name=\"tv-show-missing-links\" value=\"yes\">\n<$reveal state=<<qualify \"$:/state/popup/type-dropdown\">> type=\"nomatch\" text=\"\" default=\"\">\n<div class=\"tc-block-dropdown tc-edit-type-dropdown\">\n<$linkcatcher to=\"!!type\">\n<$list filter='[all[shadows+tiddlers]prefix[$:/language/Docs/Types/]each[group]sort[group-sort]]'>\n<div class=\"tc-dropdown-item\">\n<$text text={{!!group}}/>\n</div>\n<$list filter=\"[all[shadows+tiddlers]prefix[$:/language/Docs/Types/]group{!!group}] +[sort[description]]\"><$link to={{!!name}}><$view field=\"description\"/> (<$view field=\"name\"/>)</$link>\n</$list>\n</$list>\n</$linkcatcher>\n</div>\n</$reveal>\n</$set>\n</div>\n"
},
"$:/core/ui/EditTemplate": {
"title": "$:/core/ui/EditTemplate",
"text": "\\define actions()\n<$action-sendmessage $message=\"tm-add-tag\" $param={{$:/temp/NewTagName}}/>\n<$action-deletetiddler $tiddler=\"$:/temp/NewTagName\"/>\n<$action-sendmessage $message=\"tm-add-field\" $name={{$:/temp/newfieldname}} $value={{$:/temp/newfieldvalue}}/>\n<$action-deletetiddler $tiddler=\"$:/temp/newfieldname\"/>\n<$action-deletetiddler $tiddler=\"$:/temp/newfieldvalue\"/>\n<$action-sendmessage $message=\"tm-save-tiddler\"/>\n\\end\n\\define frame-classes()\ntc-tiddler-frame tc-tiddler-edit-frame $(missingTiddlerClass)$ $(shadowTiddlerClass)$ $(systemTiddlerClass)$\n\\end\n<div class=<<frame-classes>> data-tiddler-title=<<currentTiddler>>>\n<$fieldmangler>\n<$set name=\"storyTiddler\" value=<<currentTiddler>>>\n<$keyboard key=\"((cancel-edit-tiddler))\" message=\"tm-cancel-tiddler\">\n<$keyboard key=\"((save-tiddler))\" actions=<<actions>>>\n<$list filter=\"[all[shadows+tiddlers]tag[$:/tags/EditTemplate]!has[draft.of]]\" variable=\"listItem\">\n<$set name=\"tv-config-toolbar-class\" filter=\"[<tv-config-toolbar-class>] [<listItem>encodeuricomponent[]addprefix[tc-btn-]]\">\n<$transclude tiddler=<<listItem>>/>\n</$set>\n</$list>\n</$keyboard>\n</$keyboard>\n</$set>\n</$fieldmangler>\n</div>\n"
},
"$:/core/ui/Buttons/cancel": {
"title": "$:/core/ui/Buttons/cancel",
"tags": "$:/tags/EditToolbar",
"caption": "{{$:/core/images/cancel-button}} {{$:/language/Buttons/Cancel/Caption}}",
"description": "{{$:/language/Buttons/Cancel/Hint}}",
"text": "<$button message=\"tm-cancel-tiddler\" tooltip={{$:/language/Buttons/Cancel/Hint}} aria-label={{$:/language/Buttons/Cancel/Caption}} class=<<tv-config-toolbar-class>>>\n<$list filter=\"[<tv-config-toolbar-icons>match[yes]]\">\n{{$:/core/images/cancel-button}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>match[yes]]\">\n<span class=\"tc-btn-text\"><$text text={{$:/language/Buttons/Cancel/Caption}}/></span>\n</$list>\n</$button>"
},
"$:/core/ui/Buttons/delete": {
"title": "$:/core/ui/Buttons/delete",
"tags": "$:/tags/EditToolbar $:/tags/ViewToolbar",
"caption": "{{$:/core/images/delete-button}} {{$:/language/Buttons/Delete/Caption}}",
"description": "{{$:/language/Buttons/Delete/Hint}}",
"text": "<$button message=\"tm-delete-tiddler\" tooltip={{$:/language/Buttons/Delete/Hint}} aria-label={{$:/language/Buttons/Delete/Caption}} class=<<tv-config-toolbar-class>>>\n<$list filter=\"[<tv-config-toolbar-icons>match[yes]]\">\n{{$:/core/images/delete-button}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>match[yes]]\">\n<span class=\"tc-btn-text\"><$text text={{$:/language/Buttons/Delete/Caption}}/></span>\n</$list>\n</$button>"
},
"$:/core/ui/Buttons/save": {
"title": "$:/core/ui/Buttons/save",
"tags": "$:/tags/EditToolbar",
"caption": "{{$:/core/images/done-button}} {{$:/language/Buttons/Save/Caption}}",
"description": "{{$:/language/Buttons/Save/Hint}}",
"text": "<$fieldmangler><$button tooltip={{$:/language/Buttons/Save/Hint}} aria-label={{$:/language/Buttons/Save/Caption}} class=<<tv-config-toolbar-class>>>\n<$action-sendmessage $message=\"tm-add-tag\" $param={{$:/temp/NewTagName}}/>\n<$action-deletetiddler $tiddler=\"$:/temp/NewTagName\"/>\n<$action-sendmessage $message=\"tm-add-field\" $name={{$:/temp/newfieldname}} $value={{$:/temp/newfieldvalue}}/>\n<$action-deletetiddler $tiddler=\"$:/temp/newfieldname\"/>\n<$action-deletetiddler $tiddler=\"$:/temp/newfieldvalue\"/>\n<$action-sendmessage $message=\"tm-save-tiddler\"/>\n<$list filter=\"[<tv-config-toolbar-icons>match[yes]]\">\n{{$:/core/images/done-button}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>match[yes]]\">\n<span class=\"tc-btn-text\"><$text text={{$:/language/Buttons/Save/Caption}}/></span>\n</$list>\n</$button></$fieldmangler>\n"
},
"$:/core/ui/EditorToolbar/bold": {
"title": "$:/core/ui/EditorToolbar/bold",
"tags": "$:/tags/EditorToolbar",
"icon": "$:/core/images/bold",
"caption": "{{$:/language/Buttons/Bold/Caption}}",
"description": "{{$:/language/Buttons/Bold/Hint}}",
"condition": "[<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]]",
"shortcuts": "((bold))",
"text": "<$action-sendmessage\n\t$message=\"tm-edit-text-operation\"\n\t$param=\"wrap-selection\"\n\tprefix=\"''\"\n\tsuffix=\"''\"\n/>\n"
},
"$:/core/ui/EditorToolbar/clear-dropdown": {
"title": "$:/core/ui/EditorToolbar/clear-dropdown",
"text": "''{{$:/language/Buttons/Clear/Hint}}''\n\n<div class=\"tc-colour-chooser\">\n\n<$macrocall $name=\"colour-picker\" actions=\"\"\"\n\n<$action-sendmessage\n\t$message=\"tm-edit-bitmap-operation\"\n\t$param=\"clear\"\n\tcolour=<<colour-picker-value>>\n/>\n\n<$action-deletetiddler\n\t$tiddler=<<dropdown-state>>\n/>\n\n\"\"\"/>\n\n</div>\n"
},
"$:/core/ui/EditorToolbar/clear": {
"title": "$:/core/ui/EditorToolbar/clear",
"tags": "$:/tags/EditorToolbar",
"icon": "$:/core/images/erase",
"caption": "{{$:/language/Buttons/Clear/Caption}}",
"description": "{{$:/language/Buttons/Clear/Hint}}",
"condition": "[<targetTiddler>is[image]]",
"dropdown": "$:/core/ui/EditorToolbar/clear-dropdown",
"text": ""
},
"$:/core/ui/EditorToolbar/editor-height-dropdown": {
"title": "$:/core/ui/EditorToolbar/editor-height-dropdown",
"text": "\\define lingo-base() $:/language/Buttons/EditorHeight/\n''<<lingo Hint>>''\n\n<$radio tiddler=\"$:/config/TextEditor/EditorHeight/Mode\" value=\"auto\"> {{$:/core/images/auto-height}} <<lingo Caption/Auto>></$radio>\n\n<$radio tiddler=\"$:/config/TextEditor/EditorHeight/Mode\" value=\"fixed\"> {{$:/core/images/fixed-height}} <<lingo Caption/Fixed>> <$edit-text tag=\"input\" tiddler=\"$:/config/TextEditor/EditorHeight/Height\" default=\"100px\"/></$radio>\n"
},
"$:/core/ui/EditorToolbar/editor-height": {
"title": "$:/core/ui/EditorToolbar/editor-height",
"tags": "$:/tags/EditorToolbar",
"icon": "$:/core/images/fixed-height",
"custom-icon": "yes",
"caption": "{{$:/language/Buttons/EditorHeight/Caption}}",
"description": "{{$:/language/Buttons/EditorHeight/Hint}}",
"condition": "[<targetTiddler>type[]] [<targetTiddler>get[type]prefix[text/]] +[first[]]",
"dropdown": "$:/core/ui/EditorToolbar/editor-height-dropdown",
"text": "<$reveal tag=\"span\" state=\"$:/config/TextEditor/EditorHeight/Mode\" type=\"match\" text=\"fixed\">\n{{$:/core/images/fixed-height}}\n</$reveal>\n<$reveal tag=\"span\" state=\"$:/config/TextEditor/EditorHeight/Mode\" type=\"match\" text=\"auto\">\n{{$:/core/images/auto-height}}\n</$reveal>\n"
},
"$:/core/ui/EditorToolbar/excise-dropdown": {
"title": "$:/core/ui/EditorToolbar/excise-dropdown",
"text": "\\define lingo-base() $:/language/Buttons/Excise/\n\n\\define body(config-title)\n''<<lingo Hint>>''\n\n<<lingo Caption/NewTitle>> <$edit-text tag=\"input\" tiddler=\"$config-title$/new-title\" default=\"\" focus=\"true\"/>\n\n<$set name=\"new-title\" value={{$config-title$/new-title}}>\n<$list filter=\"\"\"[<new-title>is[tiddler]]\"\"\">\n<div class=\"tc-error\">\n<<lingo Caption/TiddlerExists>>\n</div>\n</$list>\n</$set>\n\n<$checkbox tiddler=\"\"\"$config-title$/tagnew\"\"\" field=\"text\" checked=\"yes\" unchecked=\"no\" default=\"false\"> <<lingo Caption/Tag>></$checkbox>\n\n<<lingo Caption/Replace>> <$select tiddler=\"\"\"$config-title$/type\"\"\" default=\"transclude\">\n<option value=\"link\"><<lingo Caption/Replace/Link>></option>\n<option value=\"transclude\"><<lingo Caption/Replace/Transclusion>></option>\n<option value=\"macro\"><<lingo Caption/Replace/Macro>></option>\n</$select>\n\n<$reveal state=\"\"\"$config-title$/type\"\"\" type=\"match\" text=\"macro\">\n<<lingo Caption/MacroName>> <$edit-text tag=\"input\" tiddler=\"\"\"$config-title$/macro-title\"\"\" default=\"translink\"/>\n</$reveal>\n\n<$button>\n<$action-sendmessage\n\t$message=\"tm-edit-text-operation\"\n\t$param=\"excise\"\n\ttitle={{$config-title$/new-title}}\n\ttype={{$config-title$/type}}\n\tmacro={{$config-title$/macro-title}}\n\ttagnew={{$config-title$/tagnew}}\n/>\n<$action-deletetiddler\n\t$tiddler=\"$config-title$/new-title\"\n/>\n<$action-deletetiddler\n\t$tiddler=<<dropdown-state>>\n/>\n<<lingo Caption/Excise>>\n</$button>\n\\end\n\n<$macrocall $name=\"body\" config-title=<<qualify \"$:/state/Excise/\">>/>\n"
},
"$:/core/ui/EditorToolbar/excise": {
"title": "$:/core/ui/EditorToolbar/excise",
"tags": "$:/tags/EditorToolbar",
"icon": "$:/core/images/excise",
"caption": "{{$:/language/Buttons/Excise/Caption}}",
"description": "{{$:/language/Buttons/Excise/Hint}}",
"condition": "[<targetTiddler>type[]] [<targetTiddler>type[text/vnd.tiddlywiki]] +[first[]]",
"shortcuts": "((excise))",
"dropdown": "$:/core/ui/EditorToolbar/excise-dropdown",
"text": ""
},
"$:/core/ui/EditorToolbar/heading-1": {
"title": "$:/core/ui/EditorToolbar/heading-1",
"tags": "$:/tags/EditorToolbar",
"icon": "$:/core/images/heading-1",
"caption": "{{$:/language/Buttons/Heading1/Caption}}",
"description": "{{$:/language/Buttons/Heading1/Hint}}",
"condition": "[<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]]",
"button-classes": "tc-text-editor-toolbar-item-start-group",
"shortcuts": "((heading-1))",
"text": "<$action-sendmessage\n\t$message=\"tm-edit-text-operation\"\n\t$param=\"prefix-lines\"\n\tcharacter=\"!\"\n\tcount=\"1\"\n/>\n"
},
"$:/core/ui/EditorToolbar/heading-2": {
"title": "$:/core/ui/EditorToolbar/heading-2",
"tags": "$:/tags/EditorToolbar",
"icon": "$:/core/images/heading-2",
"caption": "{{$:/language/Buttons/Heading2/Caption}}",
"description": "{{$:/language/Buttons/Heading2/Hint}}",
"condition": "[<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]]",
"shortcuts": "((heading-2))",
"text": "<$action-sendmessage\n\t$message=\"tm-edit-text-operation\"\n\t$param=\"prefix-lines\"\n\tcharacter=\"!\"\n\tcount=\"2\"\n/>\n"
},
"$:/core/ui/EditorToolbar/heading-3": {
"title": "$:/core/ui/EditorToolbar/heading-3",
"tags": "$:/tags/EditorToolbar",
"icon": "$:/core/images/heading-3",
"caption": "{{$:/language/Buttons/Heading3/Caption}}",
"description": "{{$:/language/Buttons/Heading3/Hint}}",
"condition": "[<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]]",
"shortcuts": "((heading-3))",
"text": "<$action-sendmessage\n\t$message=\"tm-edit-text-operation\"\n\t$param=\"prefix-lines\"\n\tcharacter=\"!\"\n\tcount=\"3\"\n/>\n"
},
"$:/core/ui/EditorToolbar/heading-4": {
"title": "$:/core/ui/EditorToolbar/heading-4",
"tags": "$:/tags/EditorToolbar",
"icon": "$:/core/images/heading-4",
"caption": "{{$:/language/Buttons/Heading4/Caption}}",
"description": "{{$:/language/Buttons/Heading4/Hint}}",
"condition": "[<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]]",
"shortcuts": "((heading-4))",
"text": "<$action-sendmessage\n\t$message=\"tm-edit-text-operation\"\n\t$param=\"prefix-lines\"\n\tcharacter=\"!\"\n\tcount=\"4\"\n/>\n"
},
"$:/core/ui/EditorToolbar/heading-5": {
"title": "$:/core/ui/EditorToolbar/heading-5",
"tags": "$:/tags/EditorToolbar",
"icon": "$:/core/images/heading-5",
"caption": "{{$:/language/Buttons/Heading5/Caption}}",
"description": "{{$:/language/Buttons/Heading5/Hint}}",
"condition": "[<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]]",
"shortcuts": "((heading-5))",
"text": "<$action-sendmessage\n\t$message=\"tm-edit-text-operation\"\n\t$param=\"prefix-lines\"\n\tcharacter=\"!\"\n\tcount=\"5\"\n/>\n"
},
"$:/core/ui/EditorToolbar/heading-6": {
"title": "$:/core/ui/EditorToolbar/heading-6",
"tags": "$:/tags/EditorToolbar",
"icon": "$:/core/images/heading-6",
"caption": "{{$:/language/Buttons/Heading6/Caption}}",
"description": "{{$:/language/Buttons/Heading6/Hint}}",
"condition": "[<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]]",
"shortcuts": "((heading-6))",
"text": "<$action-sendmessage\n\t$message=\"tm-edit-text-operation\"\n\t$param=\"prefix-lines\"\n\tcharacter=\"!\"\n\tcount=\"6\"\n/>\n"
},
"$:/core/ui/EditorToolbar/italic": {
"title": "$:/core/ui/EditorToolbar/italic",
"tags": "$:/tags/EditorToolbar",
"icon": "$:/core/images/italic",
"caption": "{{$:/language/Buttons/Italic/Caption}}",
"description": "{{$:/language/Buttons/Italic/Hint}}",
"condition": "[<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]]",
"shortcuts": "((italic))",
"text": "<$action-sendmessage\n\t$message=\"tm-edit-text-operation\"\n\t$param=\"wrap-selection\"\n\tprefix=\"//\"\n\tsuffix=\"//\"\n/>\n"
},
"$:/core/ui/EditorToolbar/line-width-dropdown": {
"title": "$:/core/ui/EditorToolbar/line-width-dropdown",
"text": "\\define lingo-base() $:/language/Buttons/LineWidth/\n\n\\define toolbar-line-width-inner()\n<$button tag=\"a\" tooltip=\"\"\"$(line-width)$\"\"\">\n\n<$action-setfield\n\t$tiddler=\"$:/config/BitmapEditor/LineWidth\"\n\t$value=\"$(line-width)$\"\n/>\n\n<$action-deletetiddler\n\t$tiddler=<<dropdown-state>>\n/>\n\n<div style=\"display: inline-block; margin: 4px calc(80px - $(line-width)$); background-color: #000; width: calc(100px + $(line-width)$ * 2); height: $(line-width)$; border-radius: 120px; vertical-align: middle;\"/>\n\n<span style=\"margin-left: 8px;\">\n\n<$text text=\"\"\"$(line-width)$\"\"\"/>\n\n<$reveal state=\"$:/config/BitmapEditor/LineWidth\" type=\"match\" text=\"\"\"$(line-width)$\"\"\" tag=\"span\">\n\n<$entity entity=\" \"/>\n\n<$entity entity=\"✓\"/>\n\n</$reveal>\n\n</span>\n\n</$button>\n\\end\n\n''<<lingo Hint>>''\n\n<$list filter={{$:/config/BitmapEditor/LineWidths}} variable=\"line-width\">\n\n<<toolbar-line-width-inner>>\n\n</$list>\n"
},
"$:/core/ui/EditorToolbar/line-width": {
"title": "$:/core/ui/EditorToolbar/line-width",
"tags": "$:/tags/EditorToolbar",
"icon": "$:/core/images/line-width",
"caption": "{{$:/language/Buttons/LineWidth/Caption}}",
"description": "{{$:/language/Buttons/LineWidth/Hint}}",
"condition": "[<targetTiddler>is[image]]",
"dropdown": "$:/core/ui/EditorToolbar/line-width-dropdown",
"text": "<$text text={{$:/config/BitmapEditor/LineWidth}}/>"
},
"$:/core/ui/EditorToolbar/link-dropdown": {
"title": "$:/core/ui/EditorToolbar/link-dropdown",
"text": "\\define lingo-base() $:/language/Buttons/Link/\n\n\\define add-link-actions()\n<$action-sendmessage $message=\"tm-edit-text-operation\" $param=\"make-link\" text={{$(linkTiddler)$}} />\n<$action-deletetiddler $tiddler=<<dropdown-state>> />\n<$action-deletetiddler $tiddler=<<searchTiddler>> />\n<$action-deletetiddler $tiddler=<<linkTiddler>> />\n\\end\n\n\\define external-link()\n<$button class=\"tc-btn-invisible\" style=\"width: auto; display: inline-block; background-colour: inherit;\" actions=<<add-link-actions>>>\n{{$:/core/images/chevron-right}}\n</$button>\n\\end\n\n\\define body(config-title)\n''<<lingo Hint>>''\n\n<$vars searchTiddler=\"\"\"$config-title$/search\"\"\" linkTiddler=\"\"\"$config-title$/link\"\"\" linktext=\"\" >\n\n<$vars linkTiddler=<<searchTiddler>>>\n<$keyboard key=\"ENTER\" actions=<<add-link-actions>>>\n<$edit-text tiddler=<<searchTiddler>> type=\"search\" tag=\"input\" focus=\"true\" placeholder={{$:/language/Search/Search}} default=\"\"/>\n<$reveal tag=\"span\" state=<<searchTiddler>> type=\"nomatch\" text=\"\">\n<<external-link>>\n<$button class=\"tc-btn-invisible\" style=\"width: auto; display: inline-block; background-colour: inherit;\">\n<$action-setfield $tiddler=<<searchTiddler>> text=\"\" />\n{{$:/core/images/close-button}}\n</$button>\n</$reveal>\n</$keyboard>\n</$vars>\n\n<$reveal tag=\"div\" state=<<searchTiddler>> type=\"nomatch\" text=\"\">\n\n<$linkcatcher actions=<<add-link-actions>> to=<<linkTiddler>>>\n\n{{$:/core/ui/SearchResults}}\n\n</$linkcatcher>\n\n</$reveal>\n\n</$vars>\n\n\\end\n\n<$macrocall $name=\"body\" config-title=<<qualify \"$:/state/Link/\">>/>"
},
"$:/core/ui/EditorToolbar/link": {
"title": "$:/core/ui/EditorToolbar/link",
"tags": "$:/tags/EditorToolbar",
"icon": "$:/core/images/link",
"caption": "{{$:/language/Buttons/Link/Caption}}",
"description": "{{$:/language/Buttons/Link/Hint}}",
"condition": "[<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]]",
"button-classes": "tc-text-editor-toolbar-item-start-group",
"shortcuts": "((link))",
"dropdown": "$:/core/ui/EditorToolbar/link-dropdown",
"text": ""
},
"$:/core/ui/EditorToolbar/linkify": {
"title": "$:/core/ui/EditorToolbar/linkify",
"caption": "{{$:/language/Buttons/Linkify/Caption}}",
"condition": "[<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]]",
"description": "{{$:/language/Buttons/Linkify/Hint}}",
"icon": "$:/core/images/linkify",
"list-before": "$:/core/ui/EditorToolbar/mono-block",
"shortcuts": "((linkify))",
"tags": "$:/tags/EditorToolbar",
"text": "<$action-sendmessage\n\t$message=\"tm-edit-text-operation\"\n\t$param=\"wrap-selection\"\n\tprefix=\"[[\"\n\tsuffix=\"]]\"\n/>\n"
},
"$:/core/ui/EditorToolbar/list-bullet": {
"title": "$:/core/ui/EditorToolbar/list-bullet",
"tags": "$:/tags/EditorToolbar",
"icon": "$:/core/images/list-bullet",
"caption": "{{$:/language/Buttons/ListBullet/Caption}}",
"description": "{{$:/language/Buttons/ListBullet/Hint}}",
"condition": "[<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]]",
"shortcuts": "((list-bullet))",
"text": "<$action-sendmessage\n\t$message=\"tm-edit-text-operation\"\n\t$param=\"prefix-lines\"\n\tcharacter=\"*\"\n\tcount=\"1\"\n/>\n"
},
"$:/core/ui/EditorToolbar/list-number": {
"title": "$:/core/ui/EditorToolbar/list-number",
"tags": "$:/tags/EditorToolbar",
"icon": "$:/core/images/list-number",
"caption": "{{$:/language/Buttons/ListNumber/Caption}}",
"description": "{{$:/language/Buttons/ListNumber/Hint}}",
"condition": "[<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]]",
"shortcuts": "((list-number))",
"text": "<$action-sendmessage\n\t$message=\"tm-edit-text-operation\"\n\t$param=\"prefix-lines\"\n\tcharacter=\"#\"\n\tcount=\"1\"\n/>\n"
},
"$:/core/ui/EditorToolbar/mono-block": {
"title": "$:/core/ui/EditorToolbar/mono-block",
"tags": "$:/tags/EditorToolbar",
"icon": "$:/core/images/mono-block",
"caption": "{{$:/language/Buttons/MonoBlock/Caption}}",
"description": "{{$:/language/Buttons/MonoBlock/Hint}}",
"condition": "[<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]]",
"button-classes": "tc-text-editor-toolbar-item-start-group",
"shortcuts": "((mono-block))",
"text": "<$action-sendmessage\n\t$message=\"tm-edit-text-operation\"\n\t$param=\"wrap-lines\"\n\tprefix=\"\n```\"\n\tsuffix=\"```\"\n/>\n"
},
"$:/core/ui/EditorToolbar/mono-line": {
"title": "$:/core/ui/EditorToolbar/mono-line",
"tags": "$:/tags/EditorToolbar",
"icon": "$:/core/images/mono-line",
"caption": "{{$:/language/Buttons/MonoLine/Caption}}",
"description": "{{$:/language/Buttons/MonoLine/Hint}}",
"condition": "[<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]]",
"shortcuts": "((mono-line))",
"text": "<$action-sendmessage\n\t$message=\"tm-edit-text-operation\"\n\t$param=\"wrap-selection\"\n\tprefix=\"`\"\n\tsuffix=\"`\"\n/>\n"
},
"$:/core/ui/EditorToolbar/more-dropdown": {
"title": "$:/core/ui/EditorToolbar/more-dropdown",
"text": "\\define config-title()\n$:/config/EditorToolbarButtons/Visibility/$(toolbarItem)$\n\\end\n\n\\define conditional-button()\n<$list filter={{$(toolbarItem)$!!condition}} variable=\"condition\">\n<$transclude tiddler=\"$:/core/ui/EditTemplate/body/toolbar/button\" mode=\"inline\"/> <$transclude tiddler=<<toolbarItem>> field=\"description\"/>\n</$list>\n\\end\n\n<div class=\"tc-text-editor-toolbar-more\">\n<$list filter=\"[all[shadows+tiddlers]tag[$:/tags/EditorToolbar]!has[draft.of]] -[[$:/core/ui/EditorToolbar/more]]\">\n<$reveal type=\"match\" state=<<config-visibility-title>> text=\"hide\" tag=\"div\">\n<<conditional-button>>\n</$reveal>\n</$list>\n</div>\n"
},
"$:/core/ui/EditorToolbar/more": {
"title": "$:/core/ui/EditorToolbar/more",
"tags": "$:/tags/EditorToolbar",
"icon": "$:/core/images/down-arrow",
"caption": "{{$:/language/Buttons/More/Caption}}",
"description": "{{$:/language/Buttons/More/Hint}}",
"condition": "[<targetTiddler>]",
"dropdown": "$:/core/ui/EditorToolbar/more-dropdown",
"text": ""
},
"$:/core/ui/EditorToolbar/opacity-dropdown": {
"title": "$:/core/ui/EditorToolbar/opacity-dropdown",
"text": "\\define lingo-base() $:/language/Buttons/Opacity/\n\n\\define toolbar-opacity-inner()\n<$button tag=\"a\" tooltip=\"\"\"$(opacity)$\"\"\">\n\n<$action-setfield\n\t$tiddler=\"$:/config/BitmapEditor/Opacity\"\n\t$value=\"$(opacity)$\"\n/>\n\n<$action-deletetiddler\n\t$tiddler=<<dropdown-state>>\n/>\n\n<div style=\"display: inline-block; vertical-align: middle; background-color: $(current-paint-colour)$; opacity: $(opacity)$; width: 1em; height: 1em; border-radius: 50%;\"/>\n\n<span style=\"margin-left: 8px;\">\n\n<$text text=\"\"\"$(opacity)$\"\"\"/>\n\n<$reveal state=\"$:/config/BitmapEditor/Opacity\" type=\"match\" text=\"\"\"$(opacity)$\"\"\" tag=\"span\">\n\n<$entity entity=\" \"/>\n\n<$entity entity=\"✓\"/>\n\n</$reveal>\n\n</span>\n\n</$button>\n\\end\n\n\\define toolbar-opacity()\n''<<lingo Hint>>''\n\n<$list filter={{$:/config/BitmapEditor/Opacities}} variable=\"opacity\">\n\n<<toolbar-opacity-inner>>\n\n</$list>\n\\end\n\n<$set name=\"current-paint-colour\" value={{$:/config/BitmapEditor/Colour}}>\n\n<$set name=\"current-opacity\" value={{$:/config/BitmapEditor/Opacity}}>\n\n<<toolbar-opacity>>\n\n</$set>\n\n</$set>\n"
},
"$:/core/ui/EditorToolbar/opacity": {
"title": "$:/core/ui/EditorToolbar/opacity",
"tags": "$:/tags/EditorToolbar",
"icon": "$:/core/images/opacity",
"caption": "{{$:/language/Buttons/Opacity/Caption}}",
"description": "{{$:/language/Buttons/Opacity/Hint}}",
"condition": "[<targetTiddler>is[image]]",
"dropdown": "$:/core/ui/EditorToolbar/opacity-dropdown",
"text": "<$text text={{$:/config/BitmapEditor/Opacity}}/>\n"
},
"$:/core/ui/EditorToolbar/paint-dropdown": {
"title": "$:/core/ui/EditorToolbar/paint-dropdown",
"text": "''{{$:/language/Buttons/Paint/Hint}}''\n\n<$macrocall $name=\"colour-picker\" actions=\"\"\"\n\n<$action-setfield\n\t$tiddler=\"$:/config/BitmapEditor/Colour\"\n\t$value=<<colour-picker-value>>\n/>\n\n<$action-deletetiddler\n\t$tiddler=<<dropdown-state>>\n/>\n\n\"\"\"/>\n"
},
"$:/core/ui/EditorToolbar/paint": {
"title": "$:/core/ui/EditorToolbar/paint",
"tags": "$:/tags/EditorToolbar",
"icon": "$:/core/images/paint",
"caption": "{{$:/language/Buttons/Paint/Caption}}",
"description": "{{$:/language/Buttons/Paint/Hint}}",
"condition": "[<targetTiddler>is[image]]",
"dropdown": "$:/core/ui/EditorToolbar/paint-dropdown",
"text": "\\define toolbar-paint()\n<div style=\"display: inline-block; vertical-align: middle; background-color: $(colour-picker-value)$; width: 1em; height: 1em; border-radius: 50%;\"/>\n\\end\n<$set name=\"colour-picker-value\" value={{$:/config/BitmapEditor/Colour}}>\n<<toolbar-paint>>\n</$set>\n"
},
"$:/core/ui/EditorToolbar/picture-dropdown": {
"title": "$:/core/ui/EditorToolbar/picture-dropdown",
"text": "\\define replacement-text()\n[img[$(imageTitle)$]]\n\\end\n\n''{{$:/language/Buttons/Picture/Hint}}''\n\n<$macrocall $name=\"image-picker\" actions=\"\"\"\n\n<$action-sendmessage\n\t$message=\"tm-edit-text-operation\"\n\t$param=\"replace-selection\"\n\ttext=<<replacement-text>>\n/>\n\n<$action-deletetiddler\n\t$tiddler=<<dropdown-state>>\n/>\n\n\"\"\"/>\n"
},
"$:/core/ui/EditorToolbar/picture": {
"title": "$:/core/ui/EditorToolbar/picture",
"tags": "$:/tags/EditorToolbar",
"icon": "$:/core/images/picture",
"caption": "{{$:/language/Buttons/Picture/Caption}}",
"description": "{{$:/language/Buttons/Picture/Hint}}",
"condition": "[<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]]",
"shortcuts": "((picture))",
"dropdown": "$:/core/ui/EditorToolbar/picture-dropdown",
"text": ""
},
"$:/core/ui/EditorToolbar/preview-type-dropdown": {
"title": "$:/core/ui/EditorToolbar/preview-type-dropdown",
"text": "\\define preview-type-button()\n<$button tag=\"a\">\n\n<$action-setfield $tiddler=\"$:/state/editpreviewtype\" $value=\"$(previewType)$\"/>\n\n<$action-deletetiddler\n\t$tiddler=<<dropdown-state>>\n/>\n\n<$transclude tiddler=<<previewType>> field=\"caption\" mode=\"inline\">\n\n<$view tiddler=<<previewType>> field=\"title\" mode=\"inline\"/>\n\n</$transclude> \n\n<$reveal tag=\"span\" state=\"$:/state/editpreviewtype\" type=\"match\" text=<<previewType>> default=\"$:/core/ui/EditTemplate/body/preview/output\">\n\n<$entity entity=\" \"/>\n\n<$entity entity=\"✓\"/>\n\n</$reveal>\n\n</$button>\n\\end\n\n<$list filter=\"[all[shadows+tiddlers]tag[$:/tags/EditPreview]!has[draft.of]]\" variable=\"previewType\">\n\n<<preview-type-button>>\n\n</$list>\n"
},
"$:/core/ui/EditorToolbar/preview-type": {
"title": "$:/core/ui/EditorToolbar/preview-type",
"tags": "$:/tags/EditorToolbar",
"icon": "$:/core/images/chevron-down",
"caption": "{{$:/language/Buttons/PreviewType/Caption}}",
"description": "{{$:/language/Buttons/PreviewType/Hint}}",
"condition": "[all[shadows+tiddlers]tag[$:/tags/EditPreview]!has[draft.of]butfirst[]limit[1]]",
"button-classes": "tc-text-editor-toolbar-item-adjunct",
"dropdown": "$:/core/ui/EditorToolbar/preview-type-dropdown"
},
"$:/core/ui/EditorToolbar/preview": {
"title": "$:/core/ui/EditorToolbar/preview",
"tags": "$:/tags/EditorToolbar",
"icon": "$:/core/images/preview-open",
"custom-icon": "yes",
"caption": "{{$:/language/Buttons/Preview/Caption}}",
"description": "{{$:/language/Buttons/Preview/Hint}}",
"condition": "[<targetTiddler>]",
"button-classes": "tc-text-editor-toolbar-item-start-group",
"shortcuts": "((preview))",
"text": "<$reveal state=\"$:/state/showeditpreview\" type=\"match\" text=\"yes\" tag=\"span\">\n{{$:/core/images/preview-open}}\n<$action-setfield $tiddler=\"$:/state/showeditpreview\" $value=\"no\"/>\n</$reveal>\n<$reveal state=\"$:/state/showeditpreview\" type=\"nomatch\" text=\"yes\" tag=\"span\">\n{{$:/core/images/preview-closed}}\n<$action-setfield $tiddler=\"$:/state/showeditpreview\" $value=\"yes\"/>\n</$reveal>\n"
},
"$:/core/ui/EditorToolbar/quote": {
"title": "$:/core/ui/EditorToolbar/quote",
"tags": "$:/tags/EditorToolbar",
"icon": "$:/core/images/quote",
"caption": "{{$:/language/Buttons/Quote/Caption}}",
"description": "{{$:/language/Buttons/Quote/Hint}}",
"condition": "[<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]]",
"shortcuts": "((quote))",
"text": "<$action-sendmessage\n\t$message=\"tm-edit-text-operation\"\n\t$param=\"wrap-lines\"\n\tprefix=\"\n<<<\"\n\tsuffix=\"<<<\"\n/>\n"
},
"$:/core/ui/EditorToolbar/rotate-left": {
"title": "$:/core/ui/EditorToolbar/rotate-left",
"tags": "$:/tags/EditorToolbar",
"icon": "$:/core/images/rotate-left",
"caption": "{{$:/language/Buttons/RotateLeft/Caption}}",
"description": "{{$:/language/Buttons/RotateLeft/Hint}}",
"condition": "[<targetTiddler>is[image]]",
"text": "<$action-sendmessage\n\t$message=\"tm-edit-bitmap-operation\"\n\t$param=\"rotate-left\"\n/>\n"
},
"$:/core/ui/EditorToolbar/size-dropdown": {
"title": "$:/core/ui/EditorToolbar/size-dropdown",
"text": "\\define lingo-base() $:/language/Buttons/Size/\n\n\\define toolbar-button-size-preset(config-title)\n<$set name=\"width\" filter=\"$(sizePair)$ +[first[]]\">\n\n<$set name=\"height\" filter=\"$(sizePair)$ +[last[]]\">\n\n<$button tag=\"a\">\n\n<$action-setfield\n\t$tiddler=\"\"\"$config-title$/new-width\"\"\"\n\t$value=<<width>>\n/>\n\n<$action-setfield\n\t$tiddler=\"\"\"$config-title$/new-height\"\"\"\n\t$value=<<height>>\n/>\n\n<$action-deletetiddler\n\t$tiddler=\"\"\"$config-title$/presets-popup\"\"\"\n/>\n\n<$text text=<<width>>/> × <$text text=<<height>>/>\n\n</$button>\n\n</$set>\n\n</$set>\n\\end\n\n\\define toolbar-button-size(config-title)\n''{{$:/language/Buttons/Size/Hint}}''\n\n<<lingo Caption/Width>> <$edit-text tag=\"input\" tiddler=\"\"\"$config-title$/new-width\"\"\" default=<<tv-bitmap-editor-width>> focus=\"true\" size=\"8\"/> <<lingo Caption/Height>> <$edit-text tag=\"input\" tiddler=\"\"\"$config-title$/new-height\"\"\" default=<<tv-bitmap-editor-height>> size=\"8\"/> <$button popup=\"\"\"$config-title$/presets-popup\"\"\" class=\"tc-btn-invisible tc-popup-keep\" style=\"width: auto; display: inline-block; background-colour: inherit;\" selectedClass=\"tc-selected\">\n{{$:/core/images/down-arrow}}\n</$button>\n\n<$reveal tag=\"span\" state=\"\"\"$config-title$/presets-popup\"\"\" type=\"popup\" position=\"belowleft\" animate=\"yes\">\n\n<div class=\"tc-drop-down tc-popup-keep\">\n\n<$list filter={{$:/config/BitmapEditor/ImageSizes}} variable=\"sizePair\">\n\n<$macrocall $name=\"toolbar-button-size-preset\" config-title=\"$config-title$\"/>\n\n</$list>\n\n</div>\n\n</$reveal>\n\n<$button>\n<$action-sendmessage\n\t$message=\"tm-edit-bitmap-operation\"\n\t$param=\"resize\"\n\twidth={{$config-title$/new-width}}\n\theight={{$config-title$/new-height}}\n/>\n<$action-deletetiddler\n\t$tiddler=\"\"\"$config-title$/new-width\"\"\"\n/>\n<$action-deletetiddler\n\t$tiddler=\"\"\"$config-title$/new-height\"\"\"\n/>\n<$action-deletetiddler\n\t$tiddler=<<dropdown-state>>\n/>\n<<lingo Caption/Resize>>\n</$button>\n\\end\n\n<$macrocall $name=\"toolbar-button-size\" config-title=<<qualify \"$:/state/Size/\">>/>\n"
},
"$:/core/ui/EditorToolbar/size": {
"title": "$:/core/ui/EditorToolbar/size",
"tags": "$:/tags/EditorToolbar",
"icon": "$:/core/images/size",
"caption": "{{$:/language/Buttons/Size/Caption}}",
"description": "{{$:/language/Buttons/Size/Hint}}",
"condition": "[<targetTiddler>is[image]]",
"dropdown": "$:/core/ui/EditorToolbar/size-dropdown",
"text": ""
},
"$:/core/ui/EditorToolbar/stamp-dropdown": {
"title": "$:/core/ui/EditorToolbar/stamp-dropdown",
"text": "\\define toolbar-button-stamp-inner()\n<$button tag=\"a\">\n\n<$list filter=\"[[$(snippetTitle)$]addsuffix[/prefix]is[missing]removesuffix[/prefix]addsuffix[/suffix]is[missing]]\">\n\n<$action-sendmessage\n\t$message=\"tm-edit-text-operation\"\n\t$param=\"replace-selection\"\n\ttext={{$(snippetTitle)$}}\n/>\n\n</$list>\n\n\n<$list filter=\"[[$(snippetTitle)$]addsuffix[/prefix]is[missing]removesuffix[/prefix]addsuffix[/suffix]!is[missing]] [[$(snippetTitle)$]addsuffix[/prefix]!is[missing]removesuffix[/prefix]addsuffix[/suffix]is[missing]] [[$(snippetTitle)$]addsuffix[/prefix]!is[missing]removesuffix[/prefix]addsuffix[/suffix]!is[missing]]\">\n\n<$action-sendmessage\n\t$message=\"tm-edit-text-operation\"\n\t$param=\"wrap-selection\"\n\tprefix={{{ [[$(snippetTitle)$]addsuffix[/prefix]get[text]] }}}\nsuffix={{{ [[$(snippetTitle)$]addsuffix[/suffix]get[text]] }}}\n/>\n\n</$list>\n\n<$action-deletetiddler\n\t$tiddler=<<dropdown-state>>\n/>\n\n<$view tiddler=<<snippetTitle>> field=\"caption\" mode=\"inline\">\n\n<$view tiddler=<<snippetTitle>> field=\"title\" mode=\"inline\"/>\n\n</$view>\n\n</$button>\n\\end\n\n<$list filter=\"[all[shadows+tiddlers]tag[$:/tags/TextEditor/Snippet]!has[draft.of]sort[caption]]\" variable=\"snippetTitle\">\n\n<<toolbar-button-stamp-inner>>\n\n</$list>\n\n----\n\n<$button tag=\"a\">\n\n<$action-sendmessage\n\t$message=\"tm-new-tiddler\"\n\ttags=\"$:/tags/TextEditor/Snippet\"\n\tcaption={{$:/language/Buttons/Stamp/New/Title}}\n\ttext={{$:/language/Buttons/Stamp/New/Text}}\n/>\n\n<$action-deletetiddler\n\t$tiddler=<<dropdown-state>>\n/>\n\n<em>\n\n<$text text={{$:/language/Buttons/Stamp/Caption/New}}/>\n\n</em>\n\n</$button>\n"
},
"$:/core/ui/EditorToolbar/stamp": {
"title": "$:/core/ui/EditorToolbar/stamp",
"tags": "$:/tags/EditorToolbar",
"icon": "$:/core/images/stamp",
"caption": "{{$:/language/Buttons/Stamp/Caption}}",
"description": "{{$:/language/Buttons/Stamp/Hint}}",
"condition": "[<targetTiddler>type[]] [<targetTiddler>get[type]prefix[text/]] +[first[]]",
"shortcuts": "((stamp))",
"dropdown": "$:/core/ui/EditorToolbar/stamp-dropdown",
"text": ""
},
"$:/core/ui/EditorToolbar/strikethrough": {
"title": "$:/core/ui/EditorToolbar/strikethrough",
"tags": "$:/tags/EditorToolbar",
"icon": "$:/core/images/strikethrough",
"caption": "{{$:/language/Buttons/Strikethrough/Caption}}",
"description": "{{$:/language/Buttons/Strikethrough/Hint}}",
"condition": "[<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]]",
"shortcuts": "((strikethrough))",
"text": "<$action-sendmessage\n\t$message=\"tm-edit-text-operation\"\n\t$param=\"wrap-selection\"\n\tprefix=\"~~\"\n\tsuffix=\"~~\"\n/>\n"
},
"$:/core/ui/EditorToolbar/subscript": {
"title": "$:/core/ui/EditorToolbar/subscript",
"tags": "$:/tags/EditorToolbar",
"icon": "$:/core/images/subscript",
"caption": "{{$:/language/Buttons/Subscript/Caption}}",
"description": "{{$:/language/Buttons/Subscript/Hint}}",
"condition": "[<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]]",
"shortcuts": "((subscript))",
"text": "<$action-sendmessage\n\t$message=\"tm-edit-text-operation\"\n\t$param=\"wrap-selection\"\n\tprefix=\",,\"\n\tsuffix=\",,\"\n/>\n"
},
"$:/core/ui/EditorToolbar/superscript": {
"title": "$:/core/ui/EditorToolbar/superscript",
"tags": "$:/tags/EditorToolbar",
"icon": "$:/core/images/superscript",
"caption": "{{$:/language/Buttons/Superscript/Caption}}",
"description": "{{$:/language/Buttons/Superscript/Hint}}",
"condition": "[<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]]",
"shortcuts": "((superscript))",
"text": "<$action-sendmessage\n\t$message=\"tm-edit-text-operation\"\n\t$param=\"wrap-selection\"\n\tprefix=\"^^\"\n\tsuffix=\"^^\"\n/>\n"
},
"$:/core/ui/EditorToolbar/transcludify": {
"title": "$:/core/ui/EditorToolbar/transcludify",
"caption": "{{$:/language/Buttons/Transcludify/Caption}}",
"condition": "[<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]]",
"description": "{{$:/language/Buttons/Transcludify/Hint}}",
"icon": "$:/core/images/transcludify",
"list-before": "$:/core/ui/EditorToolbar/mono-block",
"shortcuts": "((transcludify))",
"tags": "$:/tags/EditorToolbar",
"text": "<$action-sendmessage\n\t$message=\"tm-edit-text-operation\"\n\t$param=\"wrap-selection\"\n\tprefix=\"{{\"\n\tsuffix=\"}}\"\n/>\n"
},
"$:/core/ui/EditorToolbar/underline": {
"title": "$:/core/ui/EditorToolbar/underline",
"tags": "$:/tags/EditorToolbar",
"icon": "$:/core/images/underline",
"caption": "{{$:/language/Buttons/Underline/Caption}}",
"description": "{{$:/language/Buttons/Underline/Hint}}",
"condition": "[<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]]",
"shortcuts": "((underline))",
"text": "<$action-sendmessage\n\t$message=\"tm-edit-text-operation\"\n\t$param=\"wrap-selection\"\n\tprefix=\"__\"\n\tsuffix=\"__\"\n/>\n"
},
"$:/core/Filters/AllTags": {
"title": "$:/core/Filters/AllTags",
"tags": "$:/tags/Filter",
"filter": "[tags[]!is[system]sort[title]]",
"description": "{{$:/language/Filters/AllTags}}",
"text": ""
},
"$:/core/Filters/AllTiddlers": {
"title": "$:/core/Filters/AllTiddlers",
"tags": "$:/tags/Filter",
"filter": "[!is[system]sort[title]]",
"description": "{{$:/language/Filters/AllTiddlers}}",
"text": ""
},
"$:/core/Filters/Drafts": {
"title": "$:/core/Filters/Drafts",
"tags": "$:/tags/Filter",
"filter": "[has[draft.of]sort[title]]",
"description": "{{$:/language/Filters/Drafts}}",
"text": ""
},
"$:/core/Filters/Missing": {
"title": "$:/core/Filters/Missing",
"tags": "$:/tags/Filter",
"filter": "[all[missing]sort[title]]",
"description": "{{$:/language/Filters/Missing}}",
"text": ""
},
"$:/core/Filters/Orphans": {
"title": "$:/core/Filters/Orphans",
"tags": "$:/tags/Filter",
"filter": "[all[orphans]sort[title]]",
"description": "{{$:/language/Filters/Orphans}}",
"text": ""
},
"$:/core/Filters/OverriddenShadowTiddlers": {
"title": "$:/core/Filters/OverriddenShadowTiddlers",
"tags": "$:/tags/Filter",
"filter": "[is[shadow]]",
"description": "{{$:/language/Filters/OverriddenShadowTiddlers}}",
"text": ""
},
"$:/core/Filters/RecentSystemTiddlers": {
"title": "$:/core/Filters/RecentSystemTiddlers",
"tags": "$:/tags/Filter",
"filter": "[has[modified]!sort[modified]limit[50]]",
"description": "{{$:/language/Filters/RecentSystemTiddlers}}",
"text": ""
},
"$:/core/Filters/RecentTiddlers": {
"title": "$:/core/Filters/RecentTiddlers",
"tags": "$:/tags/Filter",
"filter": "[!is[system]has[modified]!sort[modified]limit[50]]",
"description": "{{$:/language/Filters/RecentTiddlers}}",
"text": ""
},
"$:/core/Filters/SessionTiddlers": {
"title": "$:/core/Filters/SessionTiddlers",
"tags": "$:/tags/Filter",
"filter": "[haschanged[]]",
"description": "{{$:/language/Filters/SessionTiddlers}}",
"text": ""
},
"$:/core/Filters/ShadowTiddlers": {
"title": "$:/core/Filters/ShadowTiddlers",
"tags": "$:/tags/Filter",
"filter": "[all[shadows]sort[title]]",
"description": "{{$:/language/Filters/ShadowTiddlers}}",
"text": ""
},
"$:/core/Filters/StoryList": {
"title": "$:/core/Filters/StoryList",
"tags": "$:/tags/Filter",
"filter": "[list[$:/StoryList]] -$:/AdvancedSearch",
"description": "{{$:/language/Filters/StoryList}}",
"text": ""
},
"$:/core/Filters/SystemTags": {
"title": "$:/core/Filters/SystemTags",
"tags": "$:/tags/Filter",
"filter": "[all[shadows+tiddlers]tags[]is[system]sort[title]]",
"description": "{{$:/language/Filters/SystemTags}}",
"text": ""
},
"$:/core/Filters/SystemTiddlers": {
"title": "$:/core/Filters/SystemTiddlers",
"tags": "$:/tags/Filter",
"filter": "[is[system]sort[title]]",
"description": "{{$:/language/Filters/SystemTiddlers}}",
"text": ""
},
"$:/core/Filters/TypedTiddlers": {
"title": "$:/core/Filters/TypedTiddlers",
"tags": "$:/tags/Filter",
"filter": "[!is[system]has[type]each[type]sort[type]] -[type[text/vnd.tiddlywiki]]",
"description": "{{$:/language/Filters/TypedTiddlers}}",
"text": ""
},
"$:/core/ui/ImportListing": {
"title": "$:/core/ui/ImportListing",
"text": "\\define lingo-base() $:/language/Import/\n\n\\define messageField()\nmessage-$(payloadTiddler)$\n\\end\n\n\\define selectionField()\nselection-$(payloadTiddler)$\n\\end\n\n\\define previewPopupState()\n$(currentTiddler)$!!popup-$(payloadTiddler)$\n\\end\n\n\\define select-all-actions()\n<$list filter=\"[all[current]plugintiddlers[]sort[title]]\" variable=\"payloadTiddler\">\n<$action-setfield $field={{{ [<payloadTiddler>addprefix[selection-]] }}} $value={{$:/state/import/select-all}}/>\n</$list>\n\\end\n\n<table>\n<tbody>\n<tr>\n<th>\n<$checkbox tiddler=\"$:/state/import/select-all\" field=\"text\" checked=\"checked\" unchecked=\"unchecked\" default=\"checked\" actions=<<select-all-actions>>>\n<<lingo Listing/Select/Caption>>\n</$checkbox>\n</th>\n<th>\n<<lingo Listing/Title/Caption>>\n</th>\n<th>\n<<lingo Listing/Status/Caption>>\n</th>\n</tr>\n<$list filter=\"[all[current]plugintiddlers[]sort[title]]\" variable=\"payloadTiddler\">\n<tr>\n<td>\n<$checkbox field=<<selectionField>> checked=\"checked\" unchecked=\"unchecked\" default=\"checked\"/>\n</td>\n<td>\n<$reveal type=\"nomatch\" stateTitle=<<previewPopupState>> text=\"yes\" tag=\"div\">\n<$button class=\"tc-btn-invisible tc-btn-dropdown\" setTitle=<<previewPopupState>> setTo=\"yes\">\n{{$:/core/images/right-arrow}} <$text text=<<payloadTiddler>>/>\n</$button>\n</$reveal>\n<$reveal type=\"match\" stateTitle=<<previewPopupState>> text=\"yes\" tag=\"div\">\n<$button class=\"tc-btn-invisible tc-btn-dropdown\" setTitle=<<previewPopupState>> setTo=\"no\">\n{{$:/core/images/down-arrow}} <$text text=<<payloadTiddler>>/>\n</$button>\n</$reveal>\n</td>\n<td>\n<$view field=<<messageField>>/>\n</td>\n</tr>\n<tr>\n<td colspan=\"3\">\n<$reveal type=\"match\" text=\"yes\" stateTitle=<<previewPopupState>> tag=\"div\">\n<$list filter=\"[{$:/state/importpreviewtype}has[text]]\" variable=\"listItem\" emptyMessage={{$:/core/ui/ImportPreviews/Text}}>\n<$transclude tiddler={{$:/state/importpreviewtype}}/>\n</$list>\n</$reveal>\n</td>\n</tr>\n</$list>\n</tbody>\n</table>\n"
},
"$:/core/ui/ImportPreviews/Diff": {
"title": "$:/core/ui/ImportPreviews/Diff",
"tags": "$:/tags/ImportPreview",
"caption": "{{$:/language/Import/Listing/Preview/Diff}}",
"text": "<$macrocall $name=\"compareTiddlerText\" sourceTiddlerTitle=<<payloadTiddler>> destTiddlerTitle=<<currentTiddler>> destSubTiddlerTitle=<<payloadTiddler>>/>\n"
},
"$:/core/ui/ImportPreviews/DiffFields": {
"title": "$:/core/ui/ImportPreviews/DiffFields",
"tags": "$:/tags/ImportPreview",
"caption": "{{$:/language/Import/Listing/Preview/DiffFields}}",
"text": "<$macrocall $name=\"compareTiddlers\" sourceTiddlerTitle=<<payloadTiddler>> destTiddlerTitle=<<currentTiddler>> destSubTiddlerTitle=<<payloadTiddler>> exclude=\"text\"/>\n"
},
"$:/core/ui/ImportPreviews/Fields": {
"title": "$:/core/ui/ImportPreviews/Fields",
"tags": "$:/tags/ImportPreview",
"caption": "{{$:/language/Import/Listing/Preview/Fields}}",
"text": "<table class=\"tc-view-field-table\">\n<tbody>\n<$list filter=\"[<payloadTiddler>subtiddlerfields<currentTiddler>sort[]] -text\" variable=\"fieldName\">\n<tr class=\"tc-view-field\">\n<td class=\"tc-view-field-name\">\n<$text text=<<fieldName>>/>\n</td>\n<td class=\"tc-view-field-value\">\n<$view field=<<fieldName>> tiddler=<<currentTiddler>> subtiddler=<<payloadTiddler>>/>\n</td>\n</tr>\n</$list>\n</tbody>\n</table>\n"
},
"$:/core/ui/ImportPreviews/Text": {
"title": "$:/core/ui/ImportPreviews/Text",
"tags": "$:/tags/ImportPreview",
"caption": "{{$:/language/Import/Listing/Preview/Text}}",
"text": "<$transclude tiddler=<<currentTiddler>> subtiddler=<<payloadTiddler>> mode=\"block\"/>\n"
},
"$:/core/ui/ImportPreviews/TextRaw": {
"title": "$:/core/ui/ImportPreviews/TextRaw",
"tags": "$:/tags/ImportPreview",
"caption": "{{$:/language/Import/Listing/Preview/TextRaw}}",
"text": "<pre><code><$view tiddler=<<currentTiddler>> subtiddler=<<payloadTiddler>> /></code></pre>"
},
"$:/core/ui/KeyboardShortcuts/advanced-search": {
"title": "$:/core/ui/KeyboardShortcuts/advanced-search",
"tags": "$:/tags/KeyboardShortcut",
"key": "((advanced-search))",
"text": "<$navigator story=\"$:/StoryList\" history=\"$:/HistoryList\">\n<$action-navigate $to=\"$:/AdvancedSearch\"/>\n<$action-sendmessage $message=\"tm-focus-selector\" $param=\"\"\"[data-tiddler-title=\"$:/AdvancedSearch\"] .tc-search input\"\"\"/>\n</$navigator>\n"
},
"$:/core/ui/KeyboardShortcuts/new-image": {
"title": "$:/core/ui/KeyboardShortcuts/new-image",
"tags": "$:/tags/KeyboardShortcut",
"key": "((new-image))",
"text": "<$navigator story=\"$:/StoryList\" history=\"$:/HistoryList\" openLinkFromInsideRiver={{$:/config/Navigation/openLinkFromInsideRiver}} openLinkFromOutsideRiver={{$:/config/Navigation/openLinkFromOutsideRiver}} relinkOnRename={{$:/config/RelinkOnRename}}>\n{{$:/core/ui/Actions/new-image}}\n</$navigator>\n"
},
"$:/core/ui/KeyboardShortcuts/new-journal": {
"title": "$:/core/ui/KeyboardShortcuts/new-journal",
"tags": "$:/tags/KeyboardShortcut",
"key": "((new-journal))",
"text": "<$navigator story=\"$:/StoryList\" history=\"$:/HistoryList\" openLinkFromInsideRiver={{$:/config/Navigation/openLinkFromInsideRiver}} openLinkFromOutsideRiver={{$:/config/Navigation/openLinkFromOutsideRiver}} relinkOnRename={{$:/config/RelinkOnRename}}>\n{{$:/core/ui/Actions/new-journal}}\n</$navigator>\n"
},
"$:/core/ui/KeyboardShortcuts/new-tiddler": {
"title": "$:/core/ui/KeyboardShortcuts/new-tiddler",
"tags": "$:/tags/KeyboardShortcut",
"key": "((new-tiddler))",
"text": "<$navigator story=\"$:/StoryList\" history=\"$:/HistoryList\" openLinkFromInsideRiver={{$:/config/Navigation/openLinkFromInsideRiver}} openLinkFromOutsideRiver={{$:/config/Navigation/openLinkFromOutsideRiver}} relinkOnRename={{$:/config/RelinkOnRename}}>\n{{$:/core/ui/Actions/new-tiddler}}\n</$navigator>\n"
},
"$:/core/ui/KeyboardShortcuts/sidebar-search": {
"title": "$:/core/ui/KeyboardShortcuts/sidebar-search",
"tags": "$:/tags/KeyboardShortcut",
"key": "((sidebar-search))",
"text": "<$action-sendmessage $message=\"tm-focus-selector\" $param=\".tc-search input\"/>\n"
},
"$:/core/ui/KeyboardShortcut/toggle-sidebar": {
"title": "$:/core/ui/KeyboardShortcut/toggle-sidebar",
"tags": "$:/tags/KeyboardShortcut",
"key": "((toggle-sidebar))",
"text": "<$list filter=\"[[$:/state/sidebar]is[missing]] [{$:/state/sidebar}removeprefix[yes]]\" emptyMessage=\"\"\"\n<$action-setfield $tiddler=\"$:/state/sidebar\" text=\"yes\"/>\n\"\"\">\n<$action-setfield $tiddler=\"$:/state/sidebar\" text=\"no\"/>\n</$list>\n"
},
"$:/core/ui/ListItemTemplate": {
"title": "$:/core/ui/ListItemTemplate",
"text": "<div class=\"tc-menu-list-item\">\n<$link to={{!!title}}>\n<$view field=\"title\"/>\n</$link>\n</div>"
},
"$:/Manager/ItemMain/Fields": {
"title": "$:/Manager/ItemMain/Fields",
"tags": "$:/tags/Manager/ItemMain",
"caption": "{{$:/language/Manager/Item/Fields}}",
"text": "<table>\n<tbody>\n<$list filter=\"[all[current]fields[]sort[title]] -text\" template=\"$:/core/ui/TiddlerFieldTemplate\" variable=\"listItem\"/>\n</tbody>\n</table>\n"
},
"$:/Manager/ItemMain/RawText": {
"title": "$:/Manager/ItemMain/RawText",
"tags": "$:/tags/Manager/ItemMain",
"caption": "{{$:/language/Manager/Item/RawText}}",
"text": "<pre><code><$view/></code></pre>\n"
},
"$:/Manager/ItemMain/WikifiedText": {
"title": "$:/Manager/ItemMain/WikifiedText",
"tags": "$:/tags/Manager/ItemMain",
"caption": "{{$:/language/Manager/Item/WikifiedText}}",
"text": "<$transclude mode=\"block\"/>\n"
},
"$:/Manager/ItemSidebar/Colour": {
"title": "$:/Manager/ItemSidebar/Colour",
"tags": "$:/tags/Manager/ItemSidebar",
"caption": "{{$:/language/Manager/Item/Colour}}",
"text": "\\define swatch-styles()\nheight: 1em;\nbackground-color: $(colour)$\n\\end\n\n<$vars colour={{!!color}}>\n<p style=<<swatch-styles>>/>\n</$vars>\n<p>\n<$edit-text field=\"color\" tag=\"input\" type=\"color\"/> / <$edit-text field=\"color\" tag=\"input\" type=\"text\" size=\"9\"/>\n</p>\n"
},
"$:/Manager/ItemSidebar/Icon": {
"title": "$:/Manager/ItemSidebar/Icon",
"tags": "$:/tags/Manager/ItemSidebar",
"caption": "{{$:/language/Manager/Item/Icon}}",
"text": "<p>\n<div class=\"tc-manager-icon-editor\">\n<$button popup=<<qualify \"$:/state/popup/image-picker\">> class=\"tc-btn-invisible\">\n<$transclude tiddler={{!!icon}}>\n{{$:/language/Manager/Item/Icon/None}}\n</$transclude>\n</$button>\n<div class=\"tc-block-dropdown-wrapper\" style=\"position: static;\">\n<$reveal state=<<qualify \"$:/state/popup/image-picker\">> type=\"nomatch\" text=\"\" default=\"\" tag=\"div\" class=\"tc-popup\">\n<div class=\"tc-block-dropdown tc-popup-keep\" style=\"width: 80%; left: 10%; right: 10%; padding: 0.5em;\">\n<$macrocall $name=\"image-picker-include-tagged-images\" actions=\"\"\"\n<$action-setfield $field=\"icon\" $value=<<imageTitle>>/>\n<$action-deletetiddler $tiddler=<<qualify \"$:/state/popup/image-picker\">>/>\n\"\"\"/>\n</div>\n</$reveal>\n</div>\n</div>\n</p>\n"
},
"$:/Manager/ItemSidebar/Tags": {
"title": "$:/Manager/ItemSidebar/Tags",
"tags": "$:/tags/Manager/ItemSidebar",
"caption": "{{$:/language/Manager/Item/Tags}}",
"text": "\\define tag-checkbox-actions()\n<$action-listops\n\t$tiddler=\"$:/config/Manager/RecentTags\"\n\t$subfilter=\"[<tag>] [list[$:/config/Manager/RecentTags]] +[limit[12]]\"\n/>\n\\end\n\n\\define tag-picker-actions()\n<<tag-checkbox-actions>>\n<$action-listops\n\t$tiddler=<<currentTiddler>>\n\t$field=\"tags\"\n\t$subfilter=\"[<tag>] [all[current]tags[]]\"\n/>\n\\end\n\n<p>\n<$list filter=\"[all[current]tags[]] [list[$:/config/Manager/RecentTags]] +[sort[title]] \" variable=\"tag\">\n<div>\n<$checkbox tiddler=<<currentTiddler>> tag=<<tag>> actions=<<tag-checkbox-actions>>>\n<$macrocall $name=\"tag-pill\" tag=<<tag>>/>\n</$checkbox>\n</div>\n</$list>\n</p>\n<p>\n<$macrocall $name=\"tag-picker\" actions=<<tag-picker-actions>>/>\n</p>\n"
},
"$:/Manager/ItemSidebar/Tools": {
"title": "$:/Manager/ItemSidebar/Tools",
"tags": "$:/tags/Manager/ItemSidebar",
"caption": "{{$:/language/Manager/Item/Tools}}",
"text": "<p>\n<$button to=<<currentTiddler>>>{{$:/core/images/link}} open</$button>\n</p>\n<p>\n<$button message=\"tm-edit-tiddler\" param=<<currentTiddler>>>{{$:/core/images/edit-button}} edit</$button>\n</p>\n"
},
"$:/Manager": {
"title": "$:/Manager",
"icon": "$:/core/images/list",
"color": "#bbb",
"text": "\\define lingo-base() $:/language/Manager/\n\n\\define list-item-content-item()\n<div class=\"tc-manager-list-item-content-item\">\n\t<$vars state-title=\"\"\"$:/state/popup/manager/item/$(listItem)$\"\"\">\n\t\t<$reveal state=<<state-title>> type=\"match\" text=\"show\" default=\"show\" tag=\"div\">\n\t\t\t<$button set=<<state-title>> setTo=\"hide\" class=\"tc-btn-invisible tc-manager-list-item-content-item-heading\">\n\t\t\t\t{{$:/core/images/down-arrow}} <$transclude tiddler=<<listItem>> field=\"caption\"/>\n\t\t\t</$button>\n\t\t</$reveal>\n\t\t<$reveal state=<<state-title>> type=\"nomatch\" text=\"show\" default=\"show\" tag=\"div\">\n\t\t\t<$button set=<<state-title>> setTo=\"show\" class=\"tc-btn-invisible tc-manager-list-item-content-item-heading\">\n\t\t\t\t{{$:/core/images/right-arrow}} <$transclude tiddler=<<listItem>> field=\"caption\"/>\n\t\t\t</$button>\n\t\t</$reveal>\n\t\t<$reveal state=<<state-title>> type=\"match\" text=\"show\" default=\"show\" tag=\"div\" class=\"tc-manager-list-item-content-item-body\">\n\t\t\t<$transclude tiddler=<<listItem>>/>\n\t\t</$reveal>\n\t</$vars>\n</div>\n\\end\n\n<div class=\"tc-manager-wrapper\">\n\t<div class=\"tc-manager-controls\">\n\t\t<div class=\"tc-manager-control\">\n\t\t\t<<lingo Controls/Show/Prompt>> <$select tiddler=\"$:/config/Manager/Show\" default=\"tiddlers\">\n\t\t\t\t<option value=\"tiddlers\"><<lingo Controls/Show/Option/Tiddlers>></option>\n\t\t\t\t<option value=\"tags\"><<lingo Controls/Show/Option/Tags>></option>\n\t\t\t</$select>\n\t\t</div>\n\t\t<div class=\"tc-manager-control\">\n\t\t\t<<lingo Controls/Search/Prompt>> <$edit-text tiddler=\"$:/config/Manager/Filter\" tag=\"input\" default=\"\" placeholder={{$:/language/Manager/Controls/Search/Placeholder}}/>\n\t\t</div>\n\t\t<div class=\"tc-manager-control\">\n\t\t\t<<lingo Controls/FilterByTag/Prompt>> <$select tiddler=\"$:/config/Manager/Tag\" default=\"\">\n\t\t\t\t<option value=\"\"><<lingo Controls/FilterByTag/None>></option>\n\t\t\t\t<$list filter=\"[!is{$:/config/Manager/System}tags[]!is[system]sort[title]]\" variable=\"tag\">\n\t\t\t\t\t<option value=<<tag>>><$text text=<<tag>>/></option>\n\t\t\t\t</$list>\n\t\t\t</$select>\n\t\t</div>\n\t\t<div class=\"tc-manager-control\">\n\t\t\t<<lingo Controls/Sort/Prompt>> <$select tiddler=\"$:/config/Manager/Sort\" default=\"title\">\n\t\t\t\t<optgroup label=\"Common\">\n\t\t\t\t\t<$list filter=\"title modified modifier created creator created\" variable=\"field\">\n\t\t\t\t\t\t<option value=<<field>>><$text text=<<field>>/></option>\n\t\t\t\t\t</$list>\n\t\t\t\t</optgroup>\n\t\t\t\t<optgroup label=\"All\">\n\t\t\t\t\t<$list filter=\"[all{$:/config/Manager/Show}!is{$:/config/Manager/System}fields[]sort[title]] -title -modified -modifier -created -creator -created\" variable=\"field\">\n\t\t\t\t\t\t<option value=<<field>>><$text text=<<field>>/></option>\n\t\t\t\t\t</$list>\n\t\t\t\t</optgroup>\n\t\t\t</$select>\n\t\t\t<$checkbox tiddler=\"$:/config/Manager/Order\" field=\"text\" checked=\"reverse\" unchecked=\"forward\" default=\"forward\">\n\t\t\t\t<<lingo Controls/Order/Prompt>>\n\t\t\t</$checkbox>\n\t\t</div>\n\t\t<div class=\"tc-manager-control\">\n\t\t\t<$checkbox tiddler=\"$:/config/Manager/System\" field=\"text\" checked=\"\" unchecked=\"system\" default=\"system\">\n\t\t\t\t{{$:/language/SystemTiddlers/Include/Prompt}}\n\t\t\t</$checkbox>\n\t\t</div>\n\t</div>\n\t<div class=\"tc-manager-list\">\n\t\t<$list filter=\"[all{$:/config/Manager/Show}!is{$:/config/Manager/System}search{$:/config/Manager/Filter}tag:strict{$:/config/Manager/Tag}sort{$:/config/Manager/Sort}order{$:/config/Manager/Order}]\">\n\t\t\t<$vars transclusion=<<currentTiddler>>>\n\t\t\t\t<div style=\"tc-manager-list-item\">\n\t\t\t\t\t<$button popup=<<qualify \"$:/state/manager/popup\">> class=\"tc-btn-invisible tc-manager-list-item-heading\" selectedClass=\"tc-manager-list-item-heading-selected\">\n\t\t\t\t\t\t<$text text=<<currentTiddler>>/>\n\t\t\t\t\t</$button>\n\t\t\t\t\t<$reveal state=<<qualify \"$:/state/manager/popup\">> type=\"nomatch\" text=\"\" default=\"\" tag=\"div\" class=\"tc-manager-list-item-content tc-popup-handle\">\n\t\t\t\t\t\t<div class=\"tc-manager-list-item-content-tiddler\">\n\t\t\t\t\t\t\t<$list filter=\"[all[shadows+tiddlers]tag[$:/tags/Manager/ItemMain]!has[draft.of]]\" variable=\"listItem\">\n\t\t\t\t\t\t\t\t<<list-item-content-item>>\n\t\t\t\t\t\t\t</$list>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div class=\"tc-manager-list-item-content-sidebar\">\n\t\t\t\t\t\t\t<$list filter=\"[all[shadows+tiddlers]tag[$:/tags/Manager/ItemSidebar]!has[draft.of]]\" variable=\"listItem\">\n\t\t\t\t\t\t\t\t<<list-item-content-item>>\n\t\t\t\t\t\t\t</$list>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</$reveal>\n\t\t\t\t</div>\n\t\t\t</$vars>\n\t\t</$list>\n\t</div>\n</div>\n"
},
"$:/core/ui/MissingTemplate": {
"title": "$:/core/ui/MissingTemplate",
"text": "<div class=\"tc-tiddler-missing\">\n<$button popup=<<qualify \"$:/state/popup/missing\">> class=\"tc-btn-invisible tc-missing-tiddler-label\">\n<$view field=\"title\" format=\"text\" />\n</$button>\n<$reveal state=<<qualify \"$:/state/popup/missing\">> type=\"popup\" position=\"below\" animate=\"yes\">\n<div class=\"tc-drop-down\">\n<$transclude tiddler=\"$:/core/ui/ListItemTemplate\"/>\n<hr>\n<$list filter=\"[all[current]backlinks[]sort[title]]\" template=\"$:/core/ui/ListItemTemplate\"/>\n</div>\n</$reveal>\n</div>\n"
},
"$:/core/ui/MoreSideBar/All": {
"title": "$:/core/ui/MoreSideBar/All",
"tags": "$:/tags/MoreSideBar",
"caption": "{{$:/language/SideBar/All/Caption}}",
"text": "<$list filter={{$:/core/Filters/AllTiddlers!!filter}} template=\"$:/core/ui/ListItemTemplate\"/>\n"
},
"$:/core/ui/MoreSideBar/Drafts": {
"title": "$:/core/ui/MoreSideBar/Drafts",
"tags": "$:/tags/MoreSideBar",
"caption": "{{$:/language/SideBar/Drafts/Caption}}",
"text": "<$list filter={{$:/core/Filters/Drafts!!filter}} template=\"$:/core/ui/ListItemTemplate\"/>\n"
},
"$:/core/ui/MoreSideBar/Explorer": {
"title": "$:/core/ui/MoreSideBar/Explorer",
"tags": "$:/tags/MoreSideBar",
"caption": "{{$:/language/SideBar/Explorer/Caption}}",
"text": "<<tree \"$:/\">>\n"
},
"$:/core/ui/MoreSideBar/Missing": {
"title": "$:/core/ui/MoreSideBar/Missing",
"tags": "$:/tags/MoreSideBar",
"caption": "{{$:/language/SideBar/Missing/Caption}}",
"text": "<$list filter={{$:/core/Filters/Missing!!filter}} template=\"$:/core/ui/MissingTemplate\"/>\n"
},
"$:/core/ui/MoreSideBar/Orphans": {
"title": "$:/core/ui/MoreSideBar/Orphans",
"tags": "$:/tags/MoreSideBar",
"caption": "{{$:/language/SideBar/Orphans/Caption}}",
"text": "<$list filter={{$:/core/Filters/Orphans!!filter}} template=\"$:/core/ui/ListItemTemplate\"/>\n"
},
"$:/core/ui/MoreSideBar/Plugins": {
"title": "$:/core/ui/MoreSideBar/Plugins",
"tags": "$:/tags/MoreSideBar",
"caption": "{{$:/language/ControlPanel/Plugins/Caption}}",
"text": "\n{{$:/language/ControlPanel/Plugins/Installed/Hint}}\n\n<<tabs \"[all[shadows+tiddlers]tag[$:/tags/MoreSideBar/Plugins]!has[draft.of]]\" \"$:/core/ui/MoreSideBar/Plugins/Plugins\">>\n"
},
"$:/core/ui/MoreSideBar/Recent": {
"title": "$:/core/ui/MoreSideBar/Recent",
"tags": "$:/tags/MoreSideBar",
"caption": "{{$:/language/SideBar/Recent/Caption}}",
"text": "<$macrocall $name=\"timeline\" format={{$:/language/RecentChanges/DateFormat}}/>\n"
},
"$:/core/ui/MoreSideBar/Shadows": {
"title": "$:/core/ui/MoreSideBar/Shadows",
"tags": "$:/tags/MoreSideBar",
"caption": "{{$:/language/SideBar/Shadows/Caption}}",
"text": "<$list filter={{$:/core/Filters/ShadowTiddlers!!filter}} template=\"$:/core/ui/ListItemTemplate\"/>\n"
},
"$:/core/ui/MoreSideBar/System": {
"title": "$:/core/ui/MoreSideBar/System",
"tags": "$:/tags/MoreSideBar",
"caption": "{{$:/language/SideBar/System/Caption}}",
"text": "<$list filter={{$:/core/Filters/SystemTiddlers!!filter}} template=\"$:/core/ui/ListItemTemplate\"/>\n"
},
"$:/core/ui/MoreSideBar/Tags": {
"title": "$:/core/ui/MoreSideBar/Tags",
"tags": "$:/tags/MoreSideBar",
"caption": "{{$:/language/SideBar/Tags/Caption}}",
"text": "<$set name=\"tv-config-toolbar-icons\" value=\"yes\">\n\n<$set name=\"tv-config-toolbar-text\" value=\"yes\">\n\n<$set name=\"tv-config-toolbar-class\" value=\"\">\n\n{{$:/core/ui/Buttons/tag-manager}}\n\n</$set>\n\n</$set>\n\n</$set>\n\n<$list filter={{$:/core/Filters/AllTags!!filter}}>\n\n<$transclude tiddler=\"$:/core/ui/TagTemplate\"/>\n\n</$list>\n\n<hr class=\"tc-untagged-separator\">\n\n{{$:/core/ui/UntaggedTemplate}}\n"
},
"$:/core/ui/MoreSideBar/Types": {
"title": "$:/core/ui/MoreSideBar/Types",
"tags": "$:/tags/MoreSideBar",
"caption": "{{$:/language/SideBar/Types/Caption}}",
"text": "<$list filter={{$:/core/Filters/TypedTiddlers!!filter}}>\n<div class=\"tc-menu-list-item\">\n<$view field=\"type\"/>\n<$list filter=\"[type{!!type}!is[system]sort[title]]\">\n<div class=\"tc-menu-list-subitem\">\n<$link to={{!!title}}><$view field=\"title\"/></$link>\n</div>\n</$list>\n</div>\n</$list>\n"
},
"$:/core/ui/MoreSideBar/Plugins/Languages": {
"title": "$:/core/ui/MoreSideBar/Plugins/Languages",
"tags": "$:/tags/MoreSideBar/Plugins",
"caption": "{{$:/language/ControlPanel/Plugins/Languages/Caption}}",
"text": "<$list filter=\"[!has[draft.of]plugin-type[language]sort[description]]\" template=\"$:/core/ui/PluginListItemTemplate\" emptyMessage={{$:/language/ControlPanel/Plugins/Empty/Hint}}/>\n"
},
"$:/core/ui/MoreSideBar/Plugins/Plugins": {
"title": "$:/core/ui/MoreSideBar/Plugins/Plugins",
"tags": "$:/tags/MoreSideBar/Plugins",
"caption": "{{$:/language/ControlPanel/Plugins/Plugins/Caption}}",
"text": "<$list filter=\"[!has[draft.of]plugin-type[plugin]sort[description]]\" template=\"$:/core/ui/PluginListItemTemplate\" emptyMessage={{$:/language/ControlPanel/Plugins/Empty/Hint}}>>/>\n"
},
"$:/core/ui/MoreSideBar/Plugins/Theme": {
"title": "$:/core/ui/MoreSideBar/Plugins/Theme",
"tags": "$:/tags/MoreSideBar/Plugins",
"caption": "{{$:/language/ControlPanel/Plugins/Themes/Caption}}",
"text": "<$list filter=\"[!has[draft.of]plugin-type[theme]sort[description]]\" template=\"$:/core/ui/PluginListItemTemplate\" emptyMessage={{$:/language/ControlPanel/Plugins/Empty/Hint}}/>\n"
},
"$:/core/ui/Buttons/advanced-search": {
"title": "$:/core/ui/Buttons/advanced-search",
"tags": "$:/tags/PageControls",
"caption": "{{$:/core/images/advanced-search-button}} {{$:/language/Buttons/AdvancedSearch/Caption}}",
"description": "{{$:/language/Buttons/AdvancedSearch/Hint}}",
"text": "\\define control-panel-button(class)\n<$button to=\"$:/AdvancedSearch\" tooltip={{$:/language/Buttons/AdvancedSearch/Hint}} aria-label={{$:/language/Buttons/AdvancedSearch/Caption}} class=\"\"\"$(tv-config-toolbar-class)$ $class$\"\"\">\n<$list filter=\"[<tv-config-toolbar-icons>match[yes]]\">\n{{$:/core/images/advanced-search-button}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>match[yes]]\">\n<span class=\"tc-btn-text\"><$text text={{$:/language/Buttons/AdvancedSearch/Caption}}/></span>\n</$list>\n</$button>\n\\end\n\n<$list filter=\"[list[$:/StoryList]] +[field:title[$:/AdvancedSearch]]\" emptyMessage=<<control-panel-button>>>\n<<control-panel-button \"tc-selected\">>\n</$list>\n"
},
"$:/core/ui/Buttons/close-all": {
"title": "$:/core/ui/Buttons/close-all",
"tags": "$:/tags/PageControls",
"caption": "{{$:/core/images/close-all-button}} {{$:/language/Buttons/CloseAll/Caption}}",
"description": "{{$:/language/Buttons/CloseAll/Hint}}",
"text": "<$button message=\"tm-close-all-tiddlers\" tooltip={{$:/language/Buttons/CloseAll/Hint}} aria-label={{$:/language/Buttons/CloseAll/Caption}} class=<<tv-config-toolbar-class>>>\n<$list filter=\"[<tv-config-toolbar-icons>match[yes]]\">\n{{$:/core/images/close-all-button}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>match[yes]]\">\n<span class=\"tc-btn-text\"><$text text={{$:/language/Buttons/CloseAll/Caption}}/></span>\n</$list>\n</$button>"
},
"$:/core/ui/Buttons/control-panel": {
"title": "$:/core/ui/Buttons/control-panel",
"tags": "$:/tags/PageControls",
"caption": "{{$:/core/images/options-button}} {{$:/language/Buttons/ControlPanel/Caption}}",
"description": "{{$:/language/Buttons/ControlPanel/Hint}}",
"text": "\\define control-panel-button(class)\n<$button to=\"$:/ControlPanel\" tooltip={{$:/language/Buttons/ControlPanel/Hint}} aria-label={{$:/language/Buttons/ControlPanel/Caption}} class=\"\"\"$(tv-config-toolbar-class)$ $class$\"\"\">\n<$list filter=\"[<tv-config-toolbar-icons>match[yes]]\">\n{{$:/core/images/options-button}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>match[yes]]\">\n<span class=\"tc-btn-text\"><$text text={{$:/language/Buttons/ControlPanel/Caption}}/></span>\n</$list>\n</$button>\n\\end\n\n<$list filter=\"[list[$:/StoryList]] +[field:title[$:/ControlPanel]]\" emptyMessage=<<control-panel-button>>>\n<<control-panel-button \"tc-selected\">>\n</$list>\n"
},
"$:/core/ui/Buttons/encryption": {
"title": "$:/core/ui/Buttons/encryption",
"tags": "$:/tags/PageControls",
"caption": "{{$:/core/images/locked-padlock}} {{$:/language/Buttons/Encryption/Caption}}",
"description": "{{$:/language/Buttons/Encryption/Hint}}",
"text": "<$reveal type=\"match\" state=\"$:/isEncrypted\" text=\"yes\">\n<$button message=\"tm-clear-password\" tooltip={{$:/language/Buttons/Encryption/ClearPassword/Hint}} aria-label={{$:/language/Buttons/Encryption/ClearPassword/Caption}} class=<<tv-config-toolbar-class>>>\n<$list filter=\"[<tv-config-toolbar-icons>match[yes]]\">\n{{$:/core/images/locked-padlock}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>match[yes]]\">\n<span class=\"tc-btn-text\"><$text text={{$:/language/Buttons/Encryption/ClearPassword/Caption}}/></span>\n</$list>\n</$button>\n</$reveal>\n<$reveal type=\"nomatch\" state=\"$:/isEncrypted\" text=\"yes\">\n<$button message=\"tm-set-password\" tooltip={{$:/language/Buttons/Encryption/SetPassword/Hint}} aria-label={{$:/language/Buttons/Encryption/SetPassword/Caption}} class=<<tv-config-toolbar-class>>>\n<$list filter=\"[<tv-config-toolbar-icons>match[yes]]\">\n{{$:/core/images/unlocked-padlock}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>match[yes]]\">\n<span class=\"tc-btn-text\"><$text text={{$:/language/Buttons/Encryption/SetPassword/Caption}}/></span>\n</$list>\n</$button>\n</$reveal>"
},
"$:/core/ui/Buttons/export-page": {
"title": "$:/core/ui/Buttons/export-page",
"tags": "$:/tags/PageControls",
"caption": "{{$:/core/images/export-button}} {{$:/language/Buttons/ExportPage/Caption}}",
"description": "{{$:/language/Buttons/ExportPage/Hint}}",
"text": "<$macrocall $name=\"exportButton\" exportFilter=\"[!is[system]sort[title]]\" lingoBase=\"$:/language/Buttons/ExportPage/\"/>"
},
"$:/core/ui/Buttons/fold-all": {
"title": "$:/core/ui/Buttons/fold-all",
"tags": "$:/tags/PageControls",
"caption": "{{$:/core/images/fold-all-button}} {{$:/language/Buttons/FoldAll/Caption}}",
"description": "{{$:/language/Buttons/FoldAll/Hint}}",
"text": "<$button tooltip={{$:/language/Buttons/FoldAll/Hint}} aria-label={{$:/language/Buttons/FoldAll/Caption}} class=<<tv-config-toolbar-class>>>\n<$action-sendmessage $message=\"tm-fold-all-tiddlers\" $param=<<currentTiddler>> foldedStatePrefix=\"$:/state/folded/\"/>\n<$list filter=\"[<tv-config-toolbar-icons>match[yes]]\" variable=\"listItem\">\n{{$:/core/images/fold-all-button}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>match[yes]]\">\n<span class=\"tc-btn-text\"><$text text={{$:/language/Buttons/FoldAll/Caption}}/></span>\n</$list>\n</$button>"
},
"$:/core/ui/Buttons/full-screen": {
"title": "$:/core/ui/Buttons/full-screen",
"tags": "$:/tags/PageControls",
"caption": "{{$:/core/images/full-screen-button}} {{$:/language/Buttons/FullScreen/Caption}}",
"description": "{{$:/language/Buttons/FullScreen/Hint}}",
"text": "<$button message=\"tm-full-screen\" tooltip={{$:/language/Buttons/FullScreen/Hint}} aria-label={{$:/language/Buttons/FullScreen/Caption}} class=<<tv-config-toolbar-class>>>\n<$list filter=\"[<tv-config-toolbar-icons>match[yes]]\">\n{{$:/core/images/full-screen-button}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>match[yes]]\">\n<span class=\"tc-btn-text\"><$text text={{$:/language/Buttons/FullScreen/Caption}}/></span>\n</$list>\n</$button>"
},
"$:/core/ui/Buttons/home": {
"title": "$:/core/ui/Buttons/home",
"tags": "$:/tags/PageControls",
"caption": "{{$:/core/images/home-button}} {{$:/language/Buttons/Home/Caption}}",
"description": "{{$:/language/Buttons/Home/Hint}}",
"text": "<$button message=\"tm-home\" tooltip={{$:/language/Buttons/Home/Hint}} aria-label={{$:/language/Buttons/Home/Caption}} class=<<tv-config-toolbar-class>>>\n<$list filter=\"[<tv-config-toolbar-icons>match[yes]]\">\n{{$:/core/images/home-button}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>match[yes]]\">\n<span class=\"tc-btn-text\"><$text text={{$:/language/Buttons/Home/Caption}}/></span>\n</$list>\n</$button>"
},
"$:/core/ui/Buttons/import": {
"title": "$:/core/ui/Buttons/import",
"tags": "$:/tags/PageControls",
"caption": "{{$:/core/images/import-button}} {{$:/language/Buttons/Import/Caption}}",
"description": "{{$:/language/Buttons/Import/Hint}}",
"text": "<div class=\"tc-file-input-wrapper\">\n<$button tooltip={{$:/language/Buttons/Import/Hint}} aria-label={{$:/language/Buttons/Import/Caption}} class=<<tv-config-toolbar-class>>>\n<$list filter=\"[<tv-config-toolbar-icons>match[yes]]\">\n{{$:/core/images/import-button}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>match[yes]]\">\n<span class=\"tc-btn-text\"><$text text={{$:/language/Buttons/Import/Caption}}/></span>\n</$list>\n</$button>\n<$browse tooltip={{$:/language/Buttons/Import/Hint}}/>\n</div>"
},
"$:/core/ui/Buttons/language": {
"title": "$:/core/ui/Buttons/language",
"tags": "$:/tags/PageControls",
"caption": "{{$:/core/images/globe}} {{$:/language/Buttons/Language/Caption}}",
"description": "{{$:/language/Buttons/Language/Hint}}",
"text": "\\define flag-title()\n$(languagePluginTitle)$/icon\n\\end\n<span class=\"tc-popup-keep\">\n<$button popup=<<qualify \"$:/state/popup/language\">> tooltip={{$:/language/Buttons/Language/Hint}} aria-label={{$:/language/Buttons/Language/Caption}} class=<<tv-config-toolbar-class>> selectedClass=\"tc-selected\">\n<$list filter=\"[<tv-config-toolbar-icons>match[yes]]\">\n<span class=\"tc-image-button\">\n<$set name=\"languagePluginTitle\" value={{$:/language}}>\n<$image source=<<flag-title>>/>\n</$set>\n</span>\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>match[yes]]\">\n<span class=\"tc-btn-text\"><$text text={{$:/language/Buttons/Language/Caption}}/></span>\n</$list>\n</$button>\n</span>\n<$reveal state=<<qualify \"$:/state/popup/language\">> type=\"popup\" position=\"below\" animate=\"yes\">\n<div class=\"tc-drop-down\">\n{{$:/snippets/languageswitcher}}\n</div>\n</$reveal>"
},
"$:/core/ui/Buttons/manager": {
"title": "$:/core/ui/Buttons/manager",
"tags": "$:/tags/PageControls",
"caption": "{{$:/core/images/list}} {{$:/language/Buttons/Manager/Caption}}",
"description": "{{$:/language/Buttons/Manager/Hint}}",
"text": "\\define manager-button(class)\n<$button to=\"$:/Manager\" tooltip={{$:/language/Buttons/Manager/Hint}} aria-label={{$:/language/Buttons/Manager/Caption}} class=\"\"\"$(tv-config-toolbar-class)$ $class$\"\"\">\n<$list filter=\"[<tv-config-toolbar-icons>match[yes]]\">\n{{$:/core/images/list}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>match[yes]]\">\n<span class=\"tc-btn-text\"><$text text={{$:/language/Buttons/Manager/Caption}}/></span>\n</$list>\n</$button>\n\\end\n\n<$list filter=\"[list[$:/StoryList]] +[field:title[$:/Manager]]\" emptyMessage=<<manager-button>>>\n<<manager-button \"tc-selected\">>\n</$list>\n"
},
"$:/core/ui/Buttons/more-page-actions": {
"title": "$:/core/ui/Buttons/more-page-actions",
"tags": "$:/tags/PageControls",
"caption": "{{$:/core/images/down-arrow}} {{$:/language/Buttons/More/Caption}}",
"description": "{{$:/language/Buttons/More/Hint}}",
"text": "\\define config-title()\n$:/config/PageControlButtons/Visibility/$(listItem)$\n\\end\n<$button popup=<<qualify \"$:/state/popup/more\">> tooltip={{$:/language/Buttons/More/Hint}} aria-label={{$:/language/Buttons/More/Caption}} class=<<tv-config-toolbar-class>> selectedClass=\"tc-selected\">\n<$list filter=\"[<tv-config-toolbar-icons>match[yes]]\">\n{{$:/core/images/down-arrow}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>match[yes]]\">\n<span class=\"tc-btn-text\"><$text text={{$:/language/Buttons/More/Caption}}/></span>\n</$list>\n</$button><$reveal state=<<qualify \"$:/state/popup/more\">> type=\"popup\" position=\"below\" animate=\"yes\">\n\n<div class=\"tc-drop-down\">\n\n<$set name=\"tv-config-toolbar-icons\" value=\"yes\">\n\n<$set name=\"tv-config-toolbar-text\" value=\"yes\">\n\n<$set name=\"tv-config-toolbar-class\" value=\"tc-btn-invisible\">\n\n<$list filter=\"[all[shadows+tiddlers]tag[$:/tags/PageControls]!has[draft.of]] -[[$:/core/ui/Buttons/more-page-actions]]\" variable=\"listItem\">\n\n<$reveal type=\"match\" state=<<config-title>> text=\"hide\">\n\n<$set name=\"tv-config-toolbar-class\" filter=\"[<tv-config-toolbar-class>] [<listItem>encodeuricomponent[]addprefix[tc-btn-]]\">\n\n<$transclude tiddler=<<listItem>> mode=\"inline\"/>\n\n</$set>\n\n</$reveal>\n\n</$list>\n\n</$set>\n\n</$set>\n\n</$set>\n\n</div>\n\n</$reveal>"
},
"$:/core/ui/Buttons/new-image": {
"title": "$:/core/ui/Buttons/new-image",
"tags": "$:/tags/PageControls",
"caption": "{{$:/core/images/new-image-button}} {{$:/language/Buttons/NewImage/Caption}}",
"description": "{{$:/language/Buttons/NewImage/Hint}}",
"text": "<$button tooltip={{$:/language/Buttons/NewImage/Hint}} aria-label={{$:/language/Buttons/NewImage/Caption}} class=<<tv-config-toolbar-class>> actions={{$:/core/ui/Actions/new-image}}>\n<$list filter=\"[<tv-config-toolbar-icons>match[yes]]\">\n{{$:/core/images/new-image-button}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>match[yes]]\">\n<span class=\"tc-btn-text\"><$text text={{$:/language/Buttons/NewImage/Caption}}/></span>\n</$list>\n</$button>\n"
},
"$:/core/ui/Buttons/new-journal": {
"title": "$:/core/ui/Buttons/new-journal",
"tags": "$:/tags/PageControls",
"caption": "{{$:/core/images/new-journal-button}} {{$:/language/Buttons/NewJournal/Caption}}",
"description": "{{$:/language/Buttons/NewJournal/Hint}}",
"text": "\\define journalButton()\n<$button tooltip={{$:/language/Buttons/NewJournal/Hint}} aria-label={{$:/language/Buttons/NewJournal/Caption}} class=<<tv-config-toolbar-class>> actions={{$:/core/ui/Actions/new-journal}}>\n<$list filter=\"[<tv-config-toolbar-icons>match[yes]]\">\n{{$:/core/images/new-journal-button}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>match[yes]]\">\n<span class=\"tc-btn-text\"><$text text={{$:/language/Buttons/NewJournal/Caption}}/></span>\n</$list>\n</$button>\n\\end\n<<journalButton>>\n"
},
"$:/core/ui/Buttons/new-tiddler": {
"title": "$:/core/ui/Buttons/new-tiddler",
"tags": "$:/tags/PageControls",
"caption": "{{$:/core/images/new-button}} {{$:/language/Buttons/NewTiddler/Caption}}",
"description": "{{$:/language/Buttons/NewTiddler/Hint}}",
"text": "<$button actions={{$:/core/ui/Actions/new-tiddler}} tooltip={{$:/language/Buttons/NewTiddler/Hint}} aria-label={{$:/language/Buttons/NewTiddler/Caption}} class=<<tv-config-toolbar-class>>>\n<$list filter=\"[<tv-config-toolbar-icons>match[yes]]\">\n{{$:/core/images/new-button}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>match[yes]]\">\n<span class=\"tc-btn-text\"><$text text={{$:/language/Buttons/NewTiddler/Caption}}/></span>\n</$list>\n</$button>\n"
},
"$:/core/ui/Buttons/palette": {
"title": "$:/core/ui/Buttons/palette",
"tags": "$:/tags/PageControls",
"caption": "{{$:/core/images/palette}} {{$:/language/Buttons/Palette/Caption}}",
"description": "{{$:/language/Buttons/Palette/Hint}}",
"text": "<span class=\"tc-popup-keep\">\n<$button popup=<<qualify \"$:/state/popup/palette\">> tooltip={{$:/language/Buttons/Palette/Hint}} aria-label={{$:/language/Buttons/Palette/Caption}} class=<<tv-config-toolbar-class>> selectedClass=\"tc-selected\">\n<$list filter=\"[<tv-config-toolbar-icons>match[yes]]\">\n{{$:/core/images/palette}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>match[yes]]\">\n<span class=\"tc-btn-text\"><$text text={{$:/language/Buttons/Palette/Caption}}/></span>\n</$list>\n</$button>\n</span>\n<$reveal state=<<qualify \"$:/state/popup/palette\">> type=\"popup\" position=\"below\" animate=\"yes\">\n<div class=\"tc-drop-down\" style=\"font-size:0.7em;\">\n{{$:/snippets/paletteswitcher}}\n</div>\n</$reveal>"
},
"$:/core/ui/Buttons/print": {
"title": "$:/core/ui/Buttons/print",
"tags": "$:/tags/PageControls",
"caption": "{{$:/core/images/print-button}} {{$:/language/Buttons/Print/Caption}}",
"description": "{{$:/language/Buttons/Print/Hint}}",
"text": "<$button message=\"tm-print\" tooltip={{$:/language/Buttons/Print/Hint}} aria-label={{$:/language/Buttons/Print/Caption}} class=<<tv-config-toolbar-class>>>\n<$list filter=\"[<tv-config-toolbar-icons>match[yes]]\">\n{{$:/core/images/print-button}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>match[yes]]\">\n<span class=\"tc-btn-text\"><$text text={{$:/language/Buttons/Print/Caption}}/></span>\n</$list>\n</$button>"
},
"$:/core/ui/Buttons/refresh": {
"title": "$:/core/ui/Buttons/refresh",
"tags": "$:/tags/PageControls",
"caption": "{{$:/core/images/refresh-button}} {{$:/language/Buttons/Refresh/Caption}}",
"description": "{{$:/language/Buttons/Refresh/Hint}}",
"text": "<$button message=\"tm-browser-refresh\" tooltip={{$:/language/Buttons/Refresh/Hint}} aria-label={{$:/language/Buttons/Refresh/Caption}} class=<<tv-config-toolbar-class>>>\n<$list filter=\"[<tv-config-toolbar-icons>match[yes]]\">\n{{$:/core/images/refresh-button}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>match[yes]]\">\n<span class=\"tc-btn-text\"><$text text={{$:/language/Buttons/Refresh/Caption}}/></span>\n</$list>\n</$button>"
},
"$:/core/ui/Buttons/save-wiki": {
"title": "$:/core/ui/Buttons/save-wiki",
"tags": "$:/tags/PageControls",
"caption": "{{$:/core/images/save-button}} {{$:/language/Buttons/SaveWiki/Caption}}",
"description": "{{$:/language/Buttons/SaveWiki/Hint}}",
"text": "<$button tooltip={{$:/language/Buttons/SaveWiki/Hint}} aria-label={{$:/language/Buttons/SaveWiki/Caption}} class=<<tv-config-toolbar-class>>>\n<$wikify name=\"site-title\" text={{$:/config/SaveWikiButton/Filename}}>\n<$action-sendmessage $message=\"tm-save-wiki\" $param={{$:/config/SaveWikiButton/Template}} filename=<<site-title>>/>\n</$wikify>\n<span class=\"tc-dirty-indicator\">\n<$list filter=\"[<tv-config-toolbar-icons>match[yes]]\">\n{{$:/core/images/save-button}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>match[yes]]\">\n<span class=\"tc-btn-text\"><$text text={{$:/language/Buttons/SaveWiki/Caption}}/></span>\n</$list>\n</span>\n</$button>"
},
"$:/core/ui/Buttons/storyview": {
"title": "$:/core/ui/Buttons/storyview",
"tags": "$:/tags/PageControls",
"caption": "{{$:/core/images/storyview-classic}} {{$:/language/Buttons/StoryView/Caption}}",
"description": "{{$:/language/Buttons/StoryView/Hint}}",
"text": "\\define icon()\n$:/core/images/storyview-$(storyview)$\n\\end\n<span class=\"tc-popup-keep\">\n<$button popup=<<qualify \"$:/state/popup/storyview\">> tooltip={{$:/language/Buttons/StoryView/Hint}} aria-label={{$:/language/Buttons/StoryView/Caption}} class=<<tv-config-toolbar-class>> selectedClass=\"tc-selected\">\n<$list filter=\"[<tv-config-toolbar-icons>match[yes]]\">\n<$set name=\"storyview\" value={{$:/view}}>\n<$transclude tiddler=<<icon>>/>\n</$set>\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>match[yes]]\">\n<span class=\"tc-btn-text\"><$text text={{$:/language/Buttons/StoryView/Caption}}/></span>\n</$list>\n</$button>\n</span>\n<$reveal state=<<qualify \"$:/state/popup/storyview\">> type=\"popup\" position=\"below\" animate=\"yes\">\n<div class=\"tc-drop-down\">\n{{$:/snippets/viewswitcher}}\n</div>\n</$reveal>"
},
"$:/core/ui/Buttons/tag-manager": {
"title": "$:/core/ui/Buttons/tag-manager",
"tags": "$:/tags/PageControls",
"caption": "{{$:/core/images/tag-button}} {{$:/language/Buttons/TagManager/Caption}}",
"description": "{{$:/language/Buttons/TagManager/Hint}}",
"text": "\\define control-panel-button(class)\n<$button to=\"$:/TagManager\" tooltip={{$:/language/Buttons/TagManager/Hint}} aria-label={{$:/language/Buttons/TagManager/Caption}} class=\"\"\"$(tv-config-toolbar-class)$ $class$\"\"\">\n<$list filter=\"[<tv-config-toolbar-icons>match[yes]]\">\n{{$:/core/images/tag-button}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>match[yes]]\">\n<span class=\"tc-btn-text\"><$text text={{$:/language/Buttons/TagManager/Caption}}/></span>\n</$list>\n</$button>\n\\end\n\n<$list filter=\"[list[$:/StoryList]] +[field:title[$:/TagManager]]\" emptyMessage=<<control-panel-button>>>\n<<control-panel-button \"tc-selected\">>\n</$list>\n"
},
"$:/core/ui/Buttons/theme": {
"title": "$:/core/ui/Buttons/theme",
"tags": "$:/tags/PageControls",
"caption": "{{$:/core/images/theme-button}} {{$:/language/Buttons/Theme/Caption}}",
"description": "{{$:/language/Buttons/Theme/Hint}}",
"text": "<span class=\"tc-popup-keep\">\n<$button popup=<<qualify \"$:/state/popup/theme\">> tooltip={{$:/language/Buttons/Theme/Hint}} aria-label={{$:/language/Buttons/Theme/Caption}} class=<<tv-config-toolbar-class>> selectedClass=\"tc-selected\">\n<$list filter=\"[<tv-config-toolbar-icons>match[yes]]\">\n{{$:/core/images/theme-button}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>match[yes]]\">\n<span class=\"tc-btn-text\"><$text text={{$:/language/Buttons/Theme/Caption}}/></span>\n</$list>\n</$button>\n</span>\n<$reveal state=<<qualify \"$:/state/popup/theme\">> type=\"popup\" position=\"below\" animate=\"yes\">\n<div class=\"tc-drop-down\">\n<$linkcatcher to=\"$:/theme\">\n{{$:/snippets/themeswitcher}}\n</$linkcatcher>\n</div>\n</$reveal>"
},
"$:/core/ui/Buttons/timestamp": {
"title": "$:/core/ui/Buttons/timestamp",
"tags": "$:/tags/PageControls",
"caption": "{{$:/core/images/timestamp-on}} {{$:/language/Buttons/Timestamp/Caption}}",
"description": "{{$:/language/Buttons/Timestamp/Hint}}",
"text": "<$reveal type=\"nomatch\" state=\"$:/config/TimestampDisable\" text=\"yes\">\n<$button tooltip={{$:/language/Buttons/Timestamp/On/Hint}} aria-label={{$:/language/Buttons/Timestamp/On/Caption}} class=<<tv-config-toolbar-class>>>\n<$action-setfield $tiddler=\"$:/config/TimestampDisable\" $value=\"yes\"/>\n<$list filter=\"[<tv-config-toolbar-icons>match[yes]]\">\n{{$:/core/images/timestamp-on}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>match[yes]]\">\n<span class=\"tc-btn-text\"><$text text={{$:/language/Buttons/Timestamp/On/Caption}}/></span>\n</$list>\n</$button>\n</$reveal>\n<$reveal type=\"match\" state=\"$:/config/TimestampDisable\" text=\"yes\">\n<$button tooltip={{$:/language/Buttons/Timestamp/Off/Hint}} aria-label={{$:/language/Buttons/Timestamp/Off/Caption}} class=<<tv-config-toolbar-class>>>\n<$action-setfield $tiddler=\"$:/config/TimestampDisable\" $value=\"no\"/>\n<$list filter=\"[<tv-config-toolbar-icons>match[yes]]\">\n{{$:/core/images/timestamp-off}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>match[yes]]\">\n<span class=\"tc-btn-text\"><$text text={{$:/language/Buttons/Timestamp/Off/Caption}}/></span>\n</$list>\n</$button>\n</$reveal>"
},
"$:/core/ui/Buttons/unfold-all": {
"title": "$:/core/ui/Buttons/unfold-all",
"tags": "$:/tags/PageControls",
"caption": "{{$:/core/images/unfold-all-button}} {{$:/language/Buttons/UnfoldAll/Caption}}",
"description": "{{$:/language/Buttons/UnfoldAll/Hint}}",
"text": "<$button tooltip={{$:/language/Buttons/UnfoldAll/Hint}} aria-label={{$:/language/Buttons/UnfoldAll/Caption}} class=<<tv-config-toolbar-class>>>\n<$action-sendmessage $message=\"tm-unfold-all-tiddlers\" $param=<<currentTiddler>> foldedStatePrefix=\"$:/state/folded/\"/>\n<$list filter=\"[<tv-config-toolbar-icons>match[yes]]\" variable=\"listItem\">\n{{$:/core/images/unfold-all-button}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>match[yes]]\">\n<span class=\"tc-btn-text\"><$text text={{$:/language/Buttons/UnfoldAll/Caption}}/></span>\n</$list>\n</$button>"
},
"$:/core/ui/PageTemplate/pagecontrols": {
"title": "$:/core/ui/PageTemplate/pagecontrols",
"text": "\\whitespace trim\n\\define config-title()\n$:/config/PageControlButtons/Visibility/$(listItem)$\n\\end\n<div class=\"tc-page-controls\">\n<$list filter=\"[all[shadows+tiddlers]tag[$:/tags/PageControls]!has[draft.of]]\" variable=\"listItem\">\n<$set name=\"hidden\" value=<<config-title>>>\n<$list filter=\"[<hidden>!text[hide]]\" storyview=\"pop\">\n<$set name=\"tv-config-toolbar-class\" filter=\"[<tv-config-toolbar-class>] [<listItem>encodeuricomponent[]addprefix[tc-btn-]]\">\n<$transclude tiddler=<<listItem>> mode=\"inline\"/>\n</$set>\n</$list>\n</$set>\n</$list>\n</div>\n"
},
"$:/core/ui/PageStylesheet": {
"title": "$:/core/ui/PageStylesheet",
"text": "\\import [[$:/core/ui/PageMacros]] [all[shadows+tiddlers]tag[$:/tags/Macro]!has[draft.of]]\n\n<$set name=\"currentTiddler\" value={{$:/language}}>\n\n<$set name=\"languageTitle\" value={{!!name}}>\n\n<$list filter=\"[all[shadows+tiddlers]tag[$:/tags/Stylesheet]!has[draft.of]]\">\n<$transclude mode=\"block\"/>\n</$list>\n\n</$set>\n\n</$set>\n"
},
"$:/core/ui/PageTemplate/alerts": {
"title": "$:/core/ui/PageTemplate/alerts",
"tags": "$:/tags/PageTemplate",
"text": "<div class=\"tc-alerts\">\n\n<$list filter=\"[all[shadows+tiddlers]tag[$:/tags/Alert]!has[draft.of]]\" template=\"$:/core/ui/AlertTemplate\" storyview=\"pop\"/>\n\n</div>\n"
},
"$:/core/ui/PageTemplate/drafts": {
"title": "$:/core/ui/PageTemplate/drafts",
"tags": "$:/tags/PageTemplate",
"text": "\\whitespace trim\n<$reveal state=\"$:/status/IsReadOnly\" type=\"nomatch\" text=\"yes\" tag=\"div\" class=\"tc-drafts-list\">\n<$list filter=\"[has[draft.of]!sort[modified]] -[list[$:/StoryList]]\">\n<$link>\n{{$:/core/images/edit-button}} <$text text=<<currentTiddler>>/>\n</$link>\n</$list>\n</$reveal>\n"
},
"$:/core/ui/PageTemplate/pluginreloadwarning": {
"title": "$:/core/ui/PageTemplate/pluginreloadwarning",
"tags": "$:/tags/PageTemplate",
"text": "\\define lingo-base() $:/language/\n\n<$list filter=\"[has[plugin-type]haschanged[]!plugin-type[import]limit[1]]\">\n\n<$reveal type=\"nomatch\" state=\"$:/temp/HidePluginWarning\" text=\"yes\">\n\n<div class=\"tc-plugin-reload-warning\">\n\n<$set name=\"tv-config-toolbar-class\" value=\"\">\n\n<<lingo PluginReloadWarning>> <$button set=\"$:/temp/HidePluginWarning\" setTo=\"yes\" class=\"tc-btn-invisible\">{{$:/core/images/close-button}}</$button>\n\n</$set>\n\n</div>\n\n</$reveal>\n\n</$list>\n"
},
"$:/core/ui/PageTemplate/sidebar": {
"title": "$:/core/ui/PageTemplate/sidebar",
"tags": "$:/tags/PageTemplate",
"text": "\\whitespace trim\n\\define config-title()\n$:/config/SideBarSegments/Visibility/$(listItem)$\n\\end\n\n<$scrollable fallthrough=\"no\" class=\"tc-sidebar-scrollable\">\n\n<div class=\"tc-sidebar-header\">\n\n<$reveal state=\"$:/state/sidebar\" type=\"match\" text=\"yes\" default=\"yes\" retain=\"yes\" animate=\"yes\">\n\n<$list filter=\"[all[shadows+tiddlers]tag[$:/tags/SideBarSegment]!has[draft.of]]\" variable=\"listItem\">\n\n<$reveal type=\"nomatch\" state=<<config-title>> text=\"hide\" tag=\"div\">\n\n<$transclude tiddler=<<listItem>> mode=\"block\"/>\n\n</$reveal>\n\n</$list>\n\n</$reveal>\n\n</div>\n\n</$scrollable>\n"
},
"$:/core/ui/PageTemplate/story": {
"title": "$:/core/ui/PageTemplate/story",
"tags": "$:/tags/PageTemplate",
"text": "\\whitespace trim\n<section class=\"tc-story-river\">\n\n<section class=\"story-backdrop\">\n\n<$list filter=\"[all[shadows+tiddlers]tag[$:/tags/AboveStory]!has[draft.of]]\">\n\n<$transclude/>\n\n</$list>\n\n</section>\n\n<$list filter=\"[list[$:/StoryList]]\" history=\"$:/HistoryList\" template={{$:/config/ui/ViewTemplate}} editTemplate={{$:/config/ui/EditTemplate}} storyview={{$:/view}} emptyMessage={{$:/config/EmptyStoryMessage}}/>\n\n<section class=\"story-frontdrop\">\n\n<$list filter=\"[all[shadows+tiddlers]tag[$:/tags/BelowStory]!has[draft.of]]\">\n\n<$transclude/>\n\n</$list>\n\n</section>\n\n</section>\n"
},
"$:/core/ui/PageTemplate/topleftbar": {
"title": "$:/core/ui/PageTemplate/topleftbar",
"tags": "$:/tags/PageTemplate",
"text": "<span class=\"tc-topbar tc-topbar-left\">\n\n<$list filter=\"[all[shadows+tiddlers]tag[$:/tags/TopLeftBar]!has[draft.of]]\" variable=\"listItem\" storyview=\"pop\">\n\n<$transclude tiddler=<<listItem>> mode=\"inline\"/>\n\n</$list>\n\n</span>\n"
},
"$:/core/ui/PageTemplate/toprightbar": {
"title": "$:/core/ui/PageTemplate/toprightbar",
"tags": "$:/tags/PageTemplate",
"text": "<span class=\"tc-topbar tc-topbar-right\">\n\n<$list filter=\"[all[shadows+tiddlers]tag[$:/tags/TopRightBar]!has[draft.of]]\" variable=\"listItem\" storyview=\"pop\">\n\n<$transclude tiddler=<<listItem>> mode=\"inline\"/>\n\n</$list>\n\n</span>\n"
},
"$:/core/ui/PageTemplate": {
"title": "$:/core/ui/PageTemplate",
"text": "\\whitespace trim\n\\define containerClasses()\ntc-page-container tc-page-view-$(storyviewTitle)$ tc-language-$(languageTitle)$\n\\end\n\\import [[$:/core/ui/PageMacros]] [all[shadows+tiddlers]tag[$:/tags/Macro]!has[draft.of]]\n\n<$set name=\"tv-config-toolbar-icons\" value={{$:/config/Toolbar/Icons}}>\n\n<$set name=\"tv-config-toolbar-text\" value={{$:/config/Toolbar/Text}}>\n\n<$set name=\"tv-config-toolbar-class\" value={{$:/config/Toolbar/ButtonClass}}>\n\n<$set name=\"tv-show-missing-links\" value={{$:/config/MissingLinks}}>\n\n<$set name=\"storyviewTitle\" value={{$:/view}}>\n\n<$set name=\"languageTitle\" value={{{ [{$:/language}get[name]] }}}>\n\n<div class=<<containerClasses>>>\n\n<$navigator story=\"$:/StoryList\" history=\"$:/HistoryList\" openLinkFromInsideRiver={{$:/config/Navigation/openLinkFromInsideRiver}} openLinkFromOutsideRiver={{$:/config/Navigation/openLinkFromOutsideRiver}} relinkOnRename={{$:/config/RelinkOnRename}}>\n\n<$dropzone>\n\n<$list filter=\"[all[shadows+tiddlers]tag[$:/tags/PageTemplate]!has[draft.of]]\" variable=\"listItem\">\n\n<$transclude tiddler=<<listItem>>/>\n\n</$list>\n\n</$dropzone>\n\n</$navigator>\n\n</div>\n\n</$set>\n\n</$set>\n\n</$set>\n\n</$set>\n\n</$set>\n\n</$set>\n"
},
"$:/PaletteManager": {
"title": "$:/PaletteManager",
"text": "\\define lingo-base() $:/language/ControlPanel/Palette/Editor/\n\\define describePaletteColour(colour)\n<$transclude tiddler=\"$:/language/Docs/PaletteColours/$colour$\"><$text text=\"$colour$\"/></$transclude>\n\\end\n\\define edit-colour-placeholder()\n edit $(colourName)$\n\\end\n\\define colour-tooltip(showhide) $showhide$ editor for $(newColourName)$ \n\\define resolve-colour(macrocall)\n\\import $:/core/macros/utils\n\\whitespace trim\n<$wikify name=\"name\" text=\"\"\"$macrocall$\"\"\">\n<<name>>\n</$wikify>\n\\end\n\\define delete-colour-index-actions() <$action-setfield $index=<<colourName>>/>\n\\define palette-manager-colour-row-segment()\n\\whitespace trim\n<$edit-text index=<<colourName>> tag=\"input\" placeholder=<<edit-colour-placeholder>> default=\"\"/>\n<br>\n<$edit-text index=<<colourName>> type=\"color\" tag=\"input\" class=\"tc-palette-manager-colour-input\"/>\n<$list filter=\"[<currentTiddler>getindex<colourName>removeprefix[<<]removesuffix[>>]] [<currentTiddler>getindex<colourName>removeprefix[<$]removesuffix[/>]]\" variable=\"ignore\">\n<$set name=\"state\" value={{{ [[$:/state/palettemanager/]addsuffix<currentTiddler>addsuffix[/]addsuffix<colourName>] }}}>\n<$wikify name=\"newColourName\" text=\"\"\"<$macrocall $name=\"resolve-colour\" macrocall={{{ [<currentTiddler>getindex<colourName>] }}}/>\"\"\">\n<$reveal state=<<state>> type=\"nomatch\" text=\"show\">\n<$button tooltip=<<colour-tooltip show>> aria-label=<<colour-tooltip show>> class=\"tc-btn-invisible\" set=<<state>> setTo=\"show\">{{$:/core/images/down-arrow}} <$text text=<<newColourName>>/></$button><br>\n</$reveal>\n<$reveal state=<<state>> type=\"match\" text=\"show\">\n<$button tooltip=<<colour-tooltip hide>> aria-label=<<colour-tooltip show>> class=\"tc-btn-invisible\" actions=\"\"\"<$action-deletetiddler $tiddler=<<state>>/>\"\"\">{{$:/core/images/up-arrow}} <$text text=<<newColourName>>/></$button><br>\n</$reveal>\n<$reveal state=<<state>> type=\"match\" text=\"show\">\n<$set name=\"colourName\" value=<<newColourName>>>\n<br>\n<<palette-manager-colour-row-segment>>\n<br><br>\n</$set>\n</$reveal>\n</$wikify>\n</$set>\n</$list>\n\\end\n\\define palette-manager-colour-row()\n\\whitespace trim\n<tr>\n<td>\n<span style=\"float:right;\">\n<$button tooltip=<<lingo Delete/Hint>> aria-label=<<lingo Delete/Hint>> class=\"tc-btn-invisible\" actions=<<delete-colour-index-actions>>>\n{{$:/core/images/delete-button}}</$button>\n</span>\n''<$macrocall $name=\"describePaletteColour\" colour=<<colourName>>/>''<br/>\n<$macrocall $name=\"colourName\" $output=\"text/plain\"/>\n</td>\n<td>\n<<palette-manager-colour-row-segment>>\n</td>\n</tr>\n\\end\n\\define palette-manager-table()\n\\whitespace trim\n<table>\n<tbody>\n<$list filter=\"[all[shadows+tiddlers]tag[$:/tags/Palette]indexes[]]\" variable=\"colourName\">\n<$list filter=\"[<currentTiddler>indexes[]removeprefix<colourName>suffix[]]\" variable=\"ignore\" emptyMessage=\"\"\"\n<$list filter=\"[{$:/state/palettemanager/showexternal}removeprefix[yes]suffix[]]\" variable=\"ignore\">\n<<palette-manager-colour-row>>\n</$list>\n\"\"\">\n<<palette-manager-colour-row>>\n</$list>\n</$list>\n</tbody>\n</table>\n\\end\n<$set name=\"currentTiddler\" value={{$:/palette}}>\n\n<<lingo Prompt>> <$link to={{$:/palette}}><$macrocall $name=\"currentTiddler\" $output=\"text/plain\"/></$link>\n\n<$list filter=\"[all[current]is[shadow]is[tiddler]]\" variable=\"listItem\">\n<<lingo Prompt/Modified>>\n<$button message=\"tm-delete-tiddler\" param={{$:/palette}}><<lingo Reset/Caption>></$button>\n</$list>\n\n<$list filter=\"[all[current]is[shadow]!is[tiddler]]\" variable=\"listItem\">\n<<lingo Clone/Prompt>>\n</$list>\n\n<$button message=\"tm-new-tiddler\" param={{$:/palette}}><<lingo Clone/Caption>></$button>\n\n<$checkbox tiddler=\"$:/state/palettemanager/showexternal\" field=\"text\" checked=\"yes\" unchecked=\"no\"> <<lingo Names/External/Show>></$checkbox>\n\n<<palette-manager-table>>\n"
},
"$:/core/ui/PluginInfo": {
"title": "$:/core/ui/PluginInfo",
"text": "\\define localised-info-tiddler-title()\n$(currentTiddler)$/$(languageTitle)$/$(currentTab)$\n\\end\n\\define info-tiddler-title()\n$(currentTiddler)$/$(currentTab)$\n\\end\n\\define default-tiddler-title()\n$:/core/ui/PluginInfo/Default/$(currentTab)$\n\\end\n<$transclude tiddler=<<localised-info-tiddler-title>> mode=\"block\">\n<$transclude tiddler=<<currentTiddler>> subtiddler=<<localised-info-tiddler-title>> mode=\"block\">\n<$transclude tiddler=<<currentTiddler>> subtiddler=<<info-tiddler-title>> mode=\"block\">\n<$transclude tiddler=<<default-tiddler-title>> mode=\"block\">\n{{$:/language/ControlPanel/Plugin/NoInfoFound/Hint}}\n</$transclude>\n</$transclude>\n</$transclude>\n</$transclude>\n"
},
"$:/core/ui/PluginInfo/Default/contents": {
"title": "$:/core/ui/PluginInfo/Default/contents",
"text": "\\define lingo-base() $:/language/TiddlerInfo/Advanced/PluginInfo/\n<<lingo Hint>>\n<ul>\n<$list filter=\"[all[current]plugintiddlers[]sort[title]]\" emptyMessage=<<lingo Empty/Hint>>>\n<li>\n<$link to={{!!title}}>\n<$view field=\"title\"/>\n</$link>\n</li>\n</$list>\n</ul>\n"
},
"$:/core/ui/PluginListItemTemplate": {
"title": "$:/core/ui/PluginListItemTemplate",
"text": "<div class=\"tc-menu-list-item\">\n<$link to={{!!title}}>\n<$view field=\"description\">\n<$view field=\"title\"/>\n</$view>\n</$link>\n</div>"
},
"$:/core/ui/SearchResults": {
"title": "$:/core/ui/SearchResults",
"text": "<div class=\"tc-search-results\">\n\n<$list filter=\"[all[shadows+tiddlers]tag[$:/tags/SearchResults]!has[draft.of]butfirst[]limit[1]]\" emptyMessage=\"\"\"\n<$list filter=\"[all[shadows+tiddlers]tag[$:/tags/SearchResults]!has[draft.of]]\">\n<$transclude mode=\"block\"/>\n</$list>\n\"\"\">\n\n<$macrocall $name=\"tabs\" tabsList=\"[all[shadows+tiddlers]tag[$:/tags/SearchResults]!has[draft.of]]\" default={{$:/config/SearchResults/Default}}/>\n\n</$list>\n\n</div>\n"
},
"$:/core/ui/SideBar/More": {
"title": "$:/core/ui/SideBar/More",
"tags": "$:/tags/SideBar",
"caption": "{{$:/language/SideBar/More/Caption}}",
"text": "<div class=\"tc-more-sidebar\">\n<$macrocall $name=\"tabs\" tabsList=\"[all[shadows+tiddlers]tag[$:/tags/MoreSideBar]!has[draft.of]]\" default={{$:/config/DefaultMoreSidebarTab}} state=\"$:/state/tab/moresidebar\" class=\"tc-vertical\" />\n</div>"
},
"$:/core/ui/SideBar/Open": {
"title": "$:/core/ui/SideBar/Open",
"tags": "$:/tags/SideBar",
"caption": "{{$:/language/SideBar/Open/Caption}}",
"text": "\\whitespace trim\n\\define lingo-base() $:/language/CloseAll/\n\n\\define drop-actions()\n<$action-listops $tiddler=\"$:/StoryList\" $subfilter=\"+[insertbefore:currentTiddler<actionTiddler>]\"/>\n\\end\n\n\\define placeholder()\n<div class=\"tc-droppable-placeholder\"/>\n\\end\n\n\\define droppable-item(button)\n\\whitespace trim\n<$droppable actions=<<drop-actions>>>\n<<placeholder>>\n<div>\n$button$\n</div>\n</$droppable>\n\\end\n\n<div class=\"tc-sidebar-tab-open\">\n<$list filter=\"[list<tv-story-list>]\" history=<<tv-history-list>> storyview=\"pop\">\n<div class=\"tc-sidebar-tab-open-item\">\n<$macrocall $name=\"droppable-item\" button=\"\"\"<$button message=\"tm-close-tiddler\" tooltip={{$:/language/Buttons/Close/Hint}} aria-label={{$:/language/Buttons/Close/Caption}} class=\"tc-btn-invisible tc-btn-mini\">{{$:/core/images/close-button}}</$button> <$link to={{!!title}}><$view field=\"title\"/></$link>\"\"\"/>\n</div>\n</$list>\n<$tiddler tiddler=\"\">\n<div>\n<$macrocall $name=\"droppable-item\" button=\"\"\"<$button message=\"tm-close-all-tiddlers\" class=\"tc-btn-invisible tc-btn-mini\"><<lingo Button>></$button>\"\"\"/>\n</div>\n</$tiddler>\n</div>\n"
},
"$:/core/ui/SideBar/Recent": {
"title": "$:/core/ui/SideBar/Recent",
"tags": "$:/tags/SideBar",
"caption": "{{$:/language/SideBar/Recent/Caption}}",
"text": "<$macrocall $name=\"timeline\" format={{$:/language/RecentChanges/DateFormat}}/>\n"
},
"$:/core/ui/SideBar/Tools": {
"title": "$:/core/ui/SideBar/Tools",
"tags": "$:/tags/SideBar",
"caption": "{{$:/language/SideBar/Tools/Caption}}",
"text": "\\define lingo-base() $:/language/ControlPanel/\n\\define config-title()\n$:/config/PageControlButtons/Visibility/$(listItem)$\n\\end\n\n<<lingo Basics/Version/Prompt>> <<version>>\n\n<$set name=\"tv-config-toolbar-icons\" value=\"yes\">\n\n<$set name=\"tv-config-toolbar-text\" value=\"yes\">\n\n<$set name=\"tv-config-toolbar-class\" value=\"\">\n\n<$list filter=\"[all[shadows+tiddlers]tag[$:/tags/PageControls]!has[draft.of]]\" variable=\"listItem\">\n\n<div style=\"position:relative;\" class={{{ [<listItem>encodeuricomponent[]addprefix[tc-btn-]] }}}>\n\n<$checkbox tiddler=<<config-title>> field=\"text\" checked=\"show\" unchecked=\"hide\" default=\"show\"/> <$transclude tiddler=<<listItem>>/> <i class=\"tc-muted\"><$transclude tiddler=<<listItem>> field=\"description\"/></i>\n\n</div>\n\n</$list>\n\n</$set>\n\n</$set>\n\n</$set>\n"
},
"$:/core/ui/SideBarLists": {
"title": "$:/core/ui/SideBarLists",
"text": "<$transclude tiddler=\"$:/core/ui/SideBarSegments/search\"/>\n\n<$transclude tiddler=\"$:/core/ui/SideBarSegments/tabs\"/>\n\n"
},
"$:/core/ui/SideBarSegments/page-controls": {
"title": "$:/core/ui/SideBarSegments/page-controls",
"tags": "$:/tags/SideBarSegment",
"text": "{{||$:/core/ui/PageTemplate/pagecontrols}}\n"
},
"$:/core/ui/SideBarSegments/search": {
"title": "$:/core/ui/SideBarSegments/search",
"tags": "$:/tags/SideBarSegment",
"text": "<div class=\"tc-sidebar-lists tc-sidebar-search\">\n\n<$set name=\"searchTiddler\" value=\"$:/temp/search\">\n<div class=\"tc-search\">\n<$edit-text tiddler=\"$:/temp/search\" type=\"search\" tag=\"input\" focus={{$:/config/Search/AutoFocus}} focusPopup=<<qualify \"$:/state/popup/search-dropdown\">> class=\"tc-popup-handle\"/>\n<$reveal state=\"$:/temp/search\" type=\"nomatch\" text=\"\">\n<$button tooltip={{$:/language/Buttons/AdvancedSearch/Hint}} aria-label={{$:/language/Buttons/AdvancedSearch/Caption}} class=\"tc-btn-invisible\">\n<$action-setfield $tiddler=\"$:/temp/advancedsearch\" text={{$:/temp/search}}/>\n<$action-setfield $tiddler=\"$:/temp/search\" text=\"\"/>\n<$action-navigate $to=\"$:/AdvancedSearch\"/>\n{{$:/core/images/advanced-search-button}}\n</$button>\n<$button class=\"tc-btn-invisible\">\n<$action-setfield $tiddler=\"$:/temp/search\" text=\"\" />\n{{$:/core/images/close-button}}\n</$button>\n<$button popup=<<qualify \"$:/state/popup/search-dropdown\">> class=\"tc-btn-invisible\">\n{{$:/core/images/down-arrow}}\n<$list filter=\"[{$:/temp/search}minlength{$:/config/Search/MinLength}limit[1]]\" variable=\"listItem\">\n<$set name=\"searchTerm\" value={{{ [<searchTiddler>get[text]] }}}>\n<$set name=\"resultCount\" value=\"\"\"<$count filter=\"[!is[system]search<searchTerm>]\"/>\"\"\">\n{{$:/language/Search/Matches}}\n</$set>\n</$set>\n</$list>\n</$button>\n</$reveal>\n<$reveal state=\"$:/temp/search\" type=\"match\" text=\"\">\n<$button to=\"$:/AdvancedSearch\" tooltip={{$:/language/Buttons/AdvancedSearch/Hint}} aria-label={{$:/language/Buttons/AdvancedSearch/Caption}} class=\"tc-btn-invisible\">\n{{$:/core/images/advanced-search-button}}\n</$button>\n</$reveal>\n</div>\n\n<$reveal tag=\"div\" class=\"tc-block-dropdown-wrapper\" state=\"$:/temp/search\" type=\"nomatch\" text=\"\">\n\n<$reveal tag=\"div\" class=\"tc-block-dropdown tc-search-drop-down tc-popup-handle\" state=<<qualify \"$:/state/popup/search-dropdown\">> type=\"nomatch\" text=\"\" default=\"\">\n\n<$list filter=\"[{$:/temp/search}minlength{$:/config/Search/MinLength}limit[1]]\" emptyMessage=\"\"\"<div class=\"tc-search-results\">{{$:/language/Search/Search/TooShort}}</div>\"\"\" variable=\"listItem\">\n\n{{$:/core/ui/SearchResults}}\n\n</$list>\n\n</$reveal>\n\n</$reveal>\n\n</$set>\n\n</div>\n"
},
"$:/core/ui/SideBarSegments/site-subtitle": {
"title": "$:/core/ui/SideBarSegments/site-subtitle",
"tags": "$:/tags/SideBarSegment",
"text": "<div class=\"tc-site-subtitle\">\n\n<$transclude tiddler=\"$:/SiteSubtitle\" mode=\"inline\"/>\n\n</div>\n"
},
"$:/core/ui/SideBarSegments/site-title": {
"title": "$:/core/ui/SideBarSegments/site-title",
"tags": "$:/tags/SideBarSegment",
"text": "<h1 class=\"tc-site-title\">\n\n<$transclude tiddler=\"$:/SiteTitle\" mode=\"inline\"/>\n\n</h1>\n"
},
"$:/core/ui/SideBarSegments/tabs": {
"title": "$:/core/ui/SideBarSegments/tabs",
"tags": "$:/tags/SideBarSegment",
"text": "<div class=\"tc-sidebar-lists tc-sidebar-tabs\">\n\n<$macrocall $name=\"tabs\" tabsList=\"[all[shadows+tiddlers]tag[$:/tags/SideBar]!has[draft.of]]\" default={{$:/config/DefaultSidebarTab}} state=\"$:/state/tab/sidebar\" />\n\n</div>\n"
},
"$:/TagManager": {
"title": "$:/TagManager",
"icon": "$:/core/images/tag-button",
"color": "#bbb",
"text": "\\define lingo-base() $:/language/TagManager/\n\\define iconEditorTab(type)\n<$list filter=\"[all[shadows+tiddlers]is[image]] [all[shadows+tiddlers]tag[$:/tags/Image]] -[type[application/pdf]] +[sort[title]] +[$type$is[system]]\">\n<$link to={{!!title}}>\n<$transclude/> <$view field=\"title\"/>\n</$link>\n</$list>\n\\end\n\\define iconEditor(title)\n<div class=\"tc-drop-down-wrapper\">\n<$button popupTitle={{{ [[$:/state/popup/icon/]addsuffix<__title__>] }}} class=\"tc-btn-invisible tc-btn-dropdown\">{{$:/core/images/down-arrow}}</$button>\n<$reveal stateTitle={{{ [[$:/state/popup/icon/]addsuffix<__title__>] }}} type=\"popup\" position=\"belowleft\" text=\"\" default=\"\">\n<div class=\"tc-drop-down\">\n<$linkcatcher actions=\"\"\"<$action-setfield $tiddler=<<__title__>> icon=<<navigateTo>>/>\"\"\">\n<<iconEditorTab type:\"!\">>\n<hr/>\n<<iconEditorTab type:\"\">>\n</$linkcatcher>\n</div>\n</$reveal>\n</div>\n\\end\n\\define toggleButton(state)\n<$reveal stateTitle=<<__state__>> type=\"match\" text=\"closed\" default=\"closed\">\n<$button setTitle=<<__state__>> setTo=\"open\" class=\"tc-btn-invisible tc-btn-dropdown\" selectedClass=\"tc-selected\">\n{{$:/core/images/info-button}}\n</$button>\n</$reveal>\n<$reveal stateTitle=<<__state__>> type=\"match\" text=\"open\" default=\"closed\">\n<$button setTitle=<<__state__>> setTo=\"closed\" class=\"tc-btn-invisible tc-btn-dropdown\" selectedClass=\"tc-selected\">\n{{$:/core/images/info-button}}\n</$button>\n</$reveal>\n\\end\n<table class=\"tc-tag-manager-table\">\n<tbody>\n<tr>\n<th><<lingo Colour/Heading>></th>\n<th class=\"tc-tag-manager-tag\"><<lingo Tag/Heading>></th>\n<th><<lingo Count/Heading>></th>\n<th><<lingo Icon/Heading>></th>\n<th><<lingo Info/Heading>></th>\n</tr>\n<$list filter=\"[tags[]!is[system]sort[title]]\">\n<tr>\n<td><$edit-text field=\"color\" tag=\"input\" type=\"color\"/></td>\n<td>{{||$:/core/ui/TagTemplate}}</td>\n<td><$count filter=\"[all[current]tagging[]]\"/></td>\n<td>\n<$macrocall $name=\"iconEditor\" title={{!!title}}/>\n</td>\n<td>\n<$macrocall $name=\"toggleButton\" state={{{ [[$:/state/tag-manager/]addsuffix<currentTiddler>] }}} /> \n</td>\n</tr>\n<tr>\n<td></td>\n<td colspan=\"4\">\n<$reveal stateTitle={{{ [[$:/state/tag-manager/]addsuffix<currentTiddler>] }}} type=\"match\" text=\"open\" default=\"\">\n<table>\n<tbody>\n<tr><td><<lingo Colour/Heading>></td><td><$edit-text field=\"color\" tag=\"input\" type=\"text\" size=\"9\"/></td></tr>\n<tr><td><<lingo Icon/Heading>></td><td><$edit-text field=\"icon\" tag=\"input\" size=\"45\"/></td></tr>\n</tbody>\n</table>\n</$reveal>\n</td>\n</tr>\n</$list>\n<tr>\n<td></td>\n<td style=\"position:relative;\">\n{{$:/core/ui/UntaggedTemplate}}\n</td>\n<td>\n<small class=\"tc-menu-list-count\"><$count filter=\"[untagged[]!is[system]] -[tags[]]\"/></small>\n</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n"
},
"$:/core/ui/TagTemplate": {
"title": "$:/core/ui/TagTemplate",
"text": "\\whitespace trim\n<span class=\"tc-tag-list-item\">\n<$set name=\"transclusion\" value=<<currentTiddler>>>\n<$macrocall $name=\"tag-pill-body\" tag=<<currentTiddler>> icon={{!!icon}} colour={{!!color}} palette={{$:/palette}} element-tag=\"\"\"$button\"\"\" element-attributes=\"\"\"popup=<<qualify \"$:/state/popup/tag\">> dragFilter='[all[current]tagging[]]' tag='span'\"\"\"/>\n<$reveal state=<<qualify \"$:/state/popup/tag\">> type=\"popup\" position=\"below\" animate=\"yes\" class=\"tc-drop-down\">\n<$set name=\"tv-show-missing-links\" value=\"yes\">\n<$transclude tiddler=\"$:/core/ui/ListItemTemplate\"/>\n</$set>\n<$list filter=\"[all[shadows+tiddlers]tag[$:/tags/TagDropdown]!has[draft.of]]\" variable=\"listItem\"> \n<$transclude tiddler=<<listItem>>/> \n</$list>\n<hr>\n<$macrocall $name=\"list-tagged-draggable\" tag=<<currentTiddler>>/>\n</$reveal>\n</$set>\n</span>\n"
},
"$:/core/ui/TiddlerFieldTemplate": {
"title": "$:/core/ui/TiddlerFieldTemplate",
"text": "<tr class=\"tc-view-field\">\n<td class=\"tc-view-field-name\">\n<$text text=<<listItem>>/>\n</td>\n<td class=\"tc-view-field-value\">\n<$view field=<<listItem>>/>\n</td>\n</tr>"
},
"$:/core/ui/TiddlerFields": {
"title": "$:/core/ui/TiddlerFields",
"text": "<table class=\"tc-view-field-table\">\n<tbody>\n<$list filter=\"[all[current]fields[]sort[title]] -text\" template=\"$:/core/ui/TiddlerFieldTemplate\" variable=\"listItem\"/>\n</tbody>\n</table>\n"
},
"$:/core/ui/TiddlerInfo/Advanced/PluginInfo": {
"title": "$:/core/ui/TiddlerInfo/Advanced/PluginInfo",
"tags": "$:/tags/TiddlerInfo/Advanced",
"text": "\\define lingo-base() $:/language/TiddlerInfo/Advanced/PluginInfo/\n<$list filter=\"[all[current]has[plugin-type]]\">\n\n! <<lingo Heading>>\n\n<<lingo Hint>>\n<ul>\n<$list filter=\"[all[current]plugintiddlers[]sort[title]]\" emptyMessage=<<lingo Empty/Hint>>>\n<li>\n<$link to={{!!title}}>\n<$view field=\"title\"/>\n</$link>\n</li>\n</$list>\n</ul>\n\n</$list>\n"
},
"$:/core/ui/TiddlerInfo/Advanced/ShadowInfo": {
"title": "$:/core/ui/TiddlerInfo/Advanced/ShadowInfo",
"tags": "$:/tags/TiddlerInfo/Advanced",
"text": "\\define lingo-base() $:/language/TiddlerInfo/Advanced/ShadowInfo/\n<$set name=\"infoTiddler\" value=<<currentTiddler>>>\n\n''<<lingo Heading>>''\n\n<$list filter=\"[all[current]!is[shadow]]\">\n\n<<lingo NotShadow/Hint>>\n\n</$list>\n\n<$list filter=\"[all[current]is[shadow]]\">\n\n<<lingo Shadow/Hint>>\n\n<$list filter=\"[all[current]shadowsource[]]\">\n\n<$set name=\"pluginTiddler\" value=<<currentTiddler>>>\n<<lingo Shadow/Source>>\n</$set>\n\n</$list>\n\n<$list filter=\"[all[current]is[shadow]is[tiddler]]\">\n\n<<lingo OverriddenShadow/Hint>>\n\n</$list>\n\n\n</$list>\n</$set>\n"
},
"$:/core/ui/TiddlerInfo/Advanced": {
"title": "$:/core/ui/TiddlerInfo/Advanced",
"tags": "$:/tags/TiddlerInfo",
"caption": "{{$:/language/TiddlerInfo/Advanced/Caption}}",
"text": "<$list filter=\"[all[shadows+tiddlers]tag[$:/tags/TiddlerInfo/Advanced]!has[draft.of]]\" variable=\"listItem\">\n<$transclude tiddler=<<listItem>>/>\n\n</$list>\n"
},
"$:/core/ui/TiddlerInfo/Fields": {
"title": "$:/core/ui/TiddlerInfo/Fields",
"tags": "$:/tags/TiddlerInfo",
"caption": "{{$:/language/TiddlerInfo/Fields/Caption}}",
"text": "<$transclude tiddler=\"$:/core/ui/TiddlerFields\"/>\n"
},
"$:/core/ui/TiddlerInfo/List": {
"title": "$:/core/ui/TiddlerInfo/List",
"tags": "$:/tags/TiddlerInfo",
"caption": "{{$:/language/TiddlerInfo/List/Caption}}",
"text": "\\define lingo-base() $:/language/TiddlerInfo/\n<$list filter=\"[list{!!title}]\" emptyMessage=<<lingo List/Empty>> template=\"$:/core/ui/ListItemTemplate\"/>\n"
},
"$:/core/ui/TiddlerInfo/Listed": {
"title": "$:/core/ui/TiddlerInfo/Listed",
"tags": "$:/tags/TiddlerInfo",
"caption": "{{$:/language/TiddlerInfo/Listed/Caption}}",
"text": "\\define lingo-base() $:/language/TiddlerInfo/\n<$list filter=\"[all[current]listed[]!is[system]]\" emptyMessage=<<lingo Listed/Empty>> template=\"$:/core/ui/ListItemTemplate\"/>\n"
},
"$:/core/ui/TiddlerInfo/References": {
"title": "$:/core/ui/TiddlerInfo/References",
"tags": "$:/tags/TiddlerInfo",
"caption": "{{$:/language/TiddlerInfo/References/Caption}}",
"text": "\\define lingo-base() $:/language/TiddlerInfo/\n<$list filter=\"[all[current]backlinks[]sort[title]]\" emptyMessage=<<lingo References/Empty>> template=\"$:/core/ui/ListItemTemplate\">\n</$list>"
},
"$:/core/ui/TiddlerInfo/Tagging": {
"title": "$:/core/ui/TiddlerInfo/Tagging",
"tags": "$:/tags/TiddlerInfo",
"caption": "{{$:/language/TiddlerInfo/Tagging/Caption}}",
"text": "\\define lingo-base() $:/language/TiddlerInfo/\n<$list filter=\"[all[current]tagging[]]\" emptyMessage=<<lingo Tagging/Empty>> template=\"$:/core/ui/ListItemTemplate\"/>\n"
},
"$:/core/ui/TiddlerInfo/Tools": {
"title": "$:/core/ui/TiddlerInfo/Tools",
"tags": "$:/tags/TiddlerInfo",
"caption": "{{$:/language/TiddlerInfo/Tools/Caption}}",
"text": "\\define lingo-base() $:/language/TiddlerInfo/\n\\define config-title()\n$:/config/ViewToolbarButtons/Visibility/$(listItem)$\n\\end\n<$set name=\"tv-config-toolbar-icons\" value=\"yes\">\n\n<$set name=\"tv-config-toolbar-text\" value=\"yes\">\n\n<$set name=\"tv-config-toolbar-class\" value=\"\">\n\n<$list filter=\"[all[shadows+tiddlers]tag[$:/tags/ViewToolbar]!has[draft.of]]\" variable=\"listItem\">\n\n<$checkbox tiddler=<<config-title>> field=\"text\" checked=\"show\" unchecked=\"hide\" default=\"show\"/> <$transclude tiddler=<<listItem>>/> <i class=\"tc-muted\"><$transclude tiddler=<<listItem>> field=\"description\"/></i>\n\n</$list>\n\n</$set>\n\n</$set>\n\n</$set>\n"
},
"$:/core/ui/TiddlerInfo": {
"title": "$:/core/ui/TiddlerInfo",
"text": "<div style=\"position:relative;\">\n<div class=\"tc-tiddler-controls\" style=\"position:absolute;right:0;\">\n<$reveal state=\"$:/config/TiddlerInfo/Mode\" type=\"match\" text=\"sticky\">\n<$button set=<<tiddlerInfoState>> setTo=\"\" tooltip={{$:/language/Buttons/Info/Hint}} aria-label={{$:/language/Buttons/Info/Caption}} class=\"tc-btn-invisible\">\n{{$:/core/images/close-button}}\n</$button>\n</$reveal>\n</div>\n</div>\n\n<$macrocall $name=\"tabs\" tabsList=\"[all[shadows+tiddlers]tag[$:/tags/TiddlerInfo]!has[draft.of]]\" default={{$:/config/TiddlerInfo/Default}}/>"
},
"$:/core/ui/TopBar/menu": {
"title": "$:/core/ui/TopBar/menu",
"tags": "$:/tags/TopRightBar",
"text": "<$reveal state=\"$:/state/sidebar\" type=\"nomatch\" text=\"no\">\n<$button set=\"$:/state/sidebar\" setTo=\"no\" tooltip={{$:/language/Buttons/HideSideBar/Hint}} aria-label={{$:/language/Buttons/HideSideBar/Caption}} class=\"tc-btn-invisible\">{{$:/core/images/chevron-right}}</$button>\n</$reveal>\n<$reveal state=\"$:/state/sidebar\" type=\"match\" text=\"no\">\n<$button set=\"$:/state/sidebar\" setTo=\"yes\" tooltip={{$:/language/Buttons/ShowSideBar/Hint}} aria-label={{$:/language/Buttons/ShowSideBar/Caption}} class=\"tc-btn-invisible\">{{$:/core/images/chevron-left}}</$button>\n</$reveal>\n"
},
"$:/core/ui/UntaggedTemplate": {
"title": "$:/core/ui/UntaggedTemplate",
"text": "\\define lingo-base() $:/language/SideBar/\n<$button popup=<<qualify \"$:/state/popup/tag\">> class=\"tc-btn-invisible tc-untagged-label tc-tag-label\">\n<<lingo Tags/Untagged/Caption>>\n</$button>\n<$reveal state=<<qualify \"$:/state/popup/tag\">> type=\"popup\" position=\"below\">\n<div class=\"tc-drop-down\">\n<$list filter=\"[untagged[]!is[system]] -[tags[]] +[sort[title]]\" template=\"$:/core/ui/ListItemTemplate\"/>\n</div>\n</$reveal>\n"
},
"$:/core/ui/ViewTemplate/body": {
"title": "$:/core/ui/ViewTemplate/body",
"tags": "$:/tags/ViewTemplate",
"text": "<$reveal tag=\"div\" class=\"tc-tiddler-body\" type=\"nomatch\" stateTitle=<<folded-state>> text=\"hide\" retain=\"yes\" animate=\"yes\">\n\n<$list filter=\"[all[current]!has[plugin-type]!field:hide-body[yes]]\">\n\n<$transclude>\n\n<$transclude tiddler=\"$:/language/MissingTiddler/Hint\"/>\n\n</$transclude>\n\n</$list>\n\n</$reveal>\n"
},
"$:/core/ui/ViewTemplate/classic": {
"title": "$:/core/ui/ViewTemplate/classic",
"tags": "$:/tags/ViewTemplate $:/tags/EditTemplate",
"text": "\\define lingo-base() $:/language/ClassicWarning/\n<$list filter=\"[all[current]type[text/x-tiddlywiki]]\">\n<div class=\"tc-message-box\">\n\n<<lingo Hint>>\n\n<$button set=\"!!type\" setTo=\"text/vnd.tiddlywiki\"><<lingo Upgrade/Caption>></$button>\n\n</div>\n</$list>\n"
},
"$:/core/ui/ViewTemplate/import": {
"title": "$:/core/ui/ViewTemplate/import",
"tags": "$:/tags/ViewTemplate",
"text": "\\define lingo-base() $:/language/Import/\n\n\\define buttons()\n<$button message=\"tm-delete-tiddler\" param=<<currentTiddler>>><<lingo Listing/Cancel/Caption>></$button>\n<$button message=\"tm-perform-import\" param=<<currentTiddler>>><<lingo Listing/Import/Caption>></$button>\n<<lingo Listing/Preview>> <$select tiddler=\"$:/state/importpreviewtype\" default=\"$:/core/ui/ImportPreviews/Text\">\n<$list filter=\"[all[shadows+tiddlers]tag[$:/tags/ImportPreview]!has[draft.of]]\">\n<option value=<<currentTiddler>>>{{!!caption}}</option>\n</$list>\n</$select>\n\\end\n\n<$list filter=\"[all[current]field:plugin-type[import]]\">\n\n<div class=\"tc-import\">\n\n<<lingo Listing/Hint>>\n\n<<buttons>>\n\n{{||$:/core/ui/ImportListing}}\n\n<<buttons>>\n\n</div>\n\n</$list>\n"
},
"$:/core/ui/ViewTemplate/plugin": {
"title": "$:/core/ui/ViewTemplate/plugin",
"tags": "$:/tags/ViewTemplate",
"text": "<$list filter=\"[all[current]has[plugin-type]] -[all[current]field:plugin-type[import]]\">\n<$set name=\"plugin-type\" value={{!!plugin-type}}>\n<$set name=\"default-popup-state\" value=\"yes\">\n<$set name=\"qualified-state\" value=<<qualify \"$:/state/plugin-info\">>>\n{{||$:/core/ui/Components/plugin-info}}\n</$set>\n</$set>\n</$set>\n</$list>\n"
},
"$:/core/ui/ViewTemplate/subtitle": {
"title": "$:/core/ui/ViewTemplate/subtitle",
"tags": "$:/tags/ViewTemplate",
"text": "<$reveal type=\"nomatch\" stateTitle=<<folded-state>> text=\"hide\" tag=\"div\" retain=\"yes\" animate=\"yes\">\n<div class=\"tc-subtitle\">\n<$link to={{!!modifier}}>\n<$view field=\"modifier\"/>\n</$link> <$view field=\"modified\" format=\"date\" template={{$:/language/Tiddler/DateFormat}}/>\n</div>\n</$reveal>\n"
},
"$:/core/ui/ViewTemplate/tags": {
"title": "$:/core/ui/ViewTemplate/tags",
"tags": "$:/tags/ViewTemplate",
"text": "<$reveal type=\"nomatch\" stateTitle=<<folded-state>> text=\"hide\" tag=\"div\" retain=\"yes\" animate=\"yes\">\n<div class=\"tc-tags-wrapper\"><$list filter=\"[all[current]tags[]sort[title]]\" template=\"$:/core/ui/TagTemplate\" storyview=\"pop\"/></div>\n</$reveal>\n"
},
"$:/core/ui/ViewTemplate/title": {
"title": "$:/core/ui/ViewTemplate/title",
"tags": "$:/tags/ViewTemplate",
"text": "\\define title-styles()\nfill:$(foregroundColor)$;\n\\end\n\\define config-title()\n$:/config/ViewToolbarButtons/Visibility/$(listItem)$\n\\end\n<div class=\"tc-tiddler-title\">\n<div class=\"tc-titlebar\">\n<span class=\"tc-tiddler-controls\">\n<$list filter=\"[all[shadows+tiddlers]tag[$:/tags/ViewToolbar]!has[draft.of]]\" variable=\"listItem\"><$reveal type=\"nomatch\" state=<<config-title>> text=\"hide\"><$set name=\"tv-config-toolbar-class\" filter=\"[<tv-config-toolbar-class>] [<listItem>encodeuricomponent[]addprefix[tc-btn-]]\"><$transclude tiddler=<<listItem>>/></$set></$reveal></$list>\n</span>\n<$set name=\"tv-wikilinks\" value={{$:/config/Tiddlers/TitleLinks}}>\n<$link>\n<$set name=\"foregroundColor\" value={{!!color}}>\n<span class=\"tc-tiddler-title-icon\" style=<<title-styles>>>\n<$transclude tiddler={{!!icon}}/>\n</span>\n</$set>\n<$list filter=\"[all[current]removeprefix[$:/]]\">\n<h2 class=\"tc-title\" title={{$:/language/SystemTiddler/Tooltip}}>\n<span class=\"tc-system-title-prefix\">$:/</span><$text text=<<currentTiddler>>/>\n</h2>\n</$list>\n<$list filter=\"[all[current]!prefix[$:/]]\">\n<h2 class=\"tc-title\">\n<$view field=\"title\"/>\n</h2>\n</$list>\n</$link>\n</$set>\n</div>\n\n<$reveal type=\"nomatch\" text=\"\" default=\"\" state=<<tiddlerInfoState>> class=\"tc-tiddler-info tc-popup-handle\" animate=\"yes\" retain=\"yes\">\n\n<$list filter=\"[all[shadows+tiddlers]tag[$:/tags/TiddlerInfoSegment]!has[draft.of]] [[$:/core/ui/TiddlerInfo]]\" variable=\"listItem\"><$transclude tiddler=<<listItem>> mode=\"block\"/></$list>\n\n</$reveal>\n</div>"
},
"$:/core/ui/ViewTemplate/unfold": {
"title": "$:/core/ui/ViewTemplate/unfold",
"tags": "$:/tags/ViewTemplate",
"text": "<$reveal tag=\"div\" type=\"nomatch\" state=\"$:/config/ViewToolbarButtons/Visibility/$:/core/ui/Buttons/fold-bar\" text=\"hide\">\n<$reveal tag=\"div\" type=\"nomatch\" stateTitle=<<folded-state>> text=\"hide\" default=\"show\" retain=\"yes\" animate=\"yes\">\n<$button tooltip={{$:/language/Buttons/Fold/Hint}} aria-label={{$:/language/Buttons/Fold/Caption}} class=\"tc-fold-banner\">\n<$action-sendmessage $message=\"tm-fold-tiddler\" $param=<<currentTiddler>> foldedState=<<folded-state>>/>\n{{$:/core/images/chevron-up}}\n</$button>\n</$reveal>\n<$reveal tag=\"div\" type=\"nomatch\" stateTitle=<<folded-state>> text=\"show\" default=\"show\" retain=\"yes\" animate=\"yes\">\n<$button tooltip={{$:/language/Buttons/Unfold/Hint}} aria-label={{$:/language/Buttons/Unfold/Caption}} class=\"tc-unfold-banner\">\n<$action-sendmessage $message=\"tm-fold-tiddler\" $param=<<currentTiddler>> foldedState=<<folded-state>>/>\n{{$:/core/images/chevron-down}}\n</$button>\n</$reveal>\n</$reveal>\n"
},
"$:/core/ui/ViewTemplate": {
"title": "$:/core/ui/ViewTemplate",
"text": "\\define folded-state()\n$:/state/folded/$(currentTiddler)$\n\\end\n<$vars storyTiddler=<<currentTiddler>> tiddlerInfoState=<<qualify \"$:/state/popup/tiddler-info\">>><div data-tiddler-title=<<currentTiddler>> data-tags={{!!tags}} class={{{ tc-tiddler-frame tc-tiddler-view-frame [<currentTiddler>is[tiddler]then[tc-tiddler-exists]] [<currentTiddler>is[missing]!is[shadow]then[tc-tiddler-missing]] [<currentTiddler>is[shadow]then[tc-tiddler-exists tc-tiddler-shadow]] [<currentTiddler>is[system]then[tc-tiddler-system]] [{!!class}] [<currentTiddler>tags[]encodeuricomponent[]addprefix[tc-tagged-]] +[join[ ]] }}}><$list filter=\"[all[shadows+tiddlers]tag[$:/tags/ViewTemplate]!has[draft.of]]\" variable=\"listItem\"><$transclude tiddler=<<listItem>>/></$list>\n</div>\n</$vars>\n"
},
"$:/core/ui/Buttons/clone": {
"title": "$:/core/ui/Buttons/clone",
"tags": "$:/tags/ViewToolbar",
"caption": "{{$:/core/images/clone-button}} {{$:/language/Buttons/Clone/Caption}}",
"description": "{{$:/language/Buttons/Clone/Hint}}",
"text": "\\whitespace trim\n<$button message=\"tm-new-tiddler\" param=<<currentTiddler>> tooltip={{$:/language/Buttons/Clone/Hint}} aria-label={{$:/language/Buttons/Clone/Caption}} class=<<tv-config-toolbar-class>>>\n<$list filter=\"[<tv-config-toolbar-icons>match[yes]]\">\n{{$:/core/images/clone-button}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>match[yes]]\">\n<span class=\"tc-btn-text\">\n<$text text=\" \"/>\n<$text text={{$:/language/Buttons/Clone/Caption}}/>\n</span>\n</$list>\n</$button>"
},
"$:/core/ui/Buttons/close-others": {
"title": "$:/core/ui/Buttons/close-others",
"tags": "$:/tags/ViewToolbar",
"caption": "{{$:/core/images/close-others-button}} {{$:/language/Buttons/CloseOthers/Caption}}",
"description": "{{$:/language/Buttons/CloseOthers/Hint}}",
"text": "\\whitespace trim\n<$button message=\"tm-close-other-tiddlers\" param=<<currentTiddler>> tooltip={{$:/language/Buttons/CloseOthers/Hint}} aria-label={{$:/language/Buttons/CloseOthers/Caption}} class=<<tv-config-toolbar-class>>>\n<$list filter=\"[<tv-config-toolbar-icons>match[yes]]\">\n{{$:/core/images/close-others-button}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>match[yes]]\">\n<span class=\"tc-btn-text\">\n<$text text=\" \"/>\n<$text text={{$:/language/Buttons/CloseOthers/Caption}}/>\n</span>\n</$list>\n</$button>"
},
"$:/core/ui/Buttons/close": {
"title": "$:/core/ui/Buttons/close",
"tags": "$:/tags/ViewToolbar",
"caption": "{{$:/core/images/close-button}} {{$:/language/Buttons/Close/Caption}}",
"description": "{{$:/language/Buttons/Close/Hint}}",
"text": "\\whitespace trim\n<$button message=\"tm-close-tiddler\" tooltip={{$:/language/Buttons/Close/Hint}} aria-label={{$:/language/Buttons/Close/Caption}} class=<<tv-config-toolbar-class>>>\n<$list filter=\"[<tv-config-toolbar-icons>match[yes]]\">\n{{$:/core/images/close-button}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>match[yes]]\">\n<span class=\"tc-btn-text\">\n<$text text={{$:/language/Buttons/Close/Caption}}/>\n</span>\n</$list>\n</$button>"
},
"$:/core/ui/Buttons/edit": {
"title": "$:/core/ui/Buttons/edit",
"tags": "$:/tags/ViewToolbar",
"caption": "{{$:/core/images/edit-button}} {{$:/language/Buttons/Edit/Caption}}",
"description": "{{$:/language/Buttons/Edit/Hint}}",
"text": "\\whitespace trim\n<$button message=\"tm-edit-tiddler\" tooltip={{$:/language/Buttons/Edit/Hint}} aria-label={{$:/language/Buttons/Edit/Caption}} class=<<tv-config-toolbar-class>>>\n<$list filter=\"[<tv-config-toolbar-icons>match[yes]]\">\n{{$:/core/images/edit-button}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>match[yes]]\">\n<span class=\"tc-btn-text\">\n<$text text=\" \"/>\n<$text text={{$:/language/Buttons/Edit/Caption}}/>\n</span>\n</$list>\n</$button>"
},
"$:/core/ui/Buttons/export-tiddler": {
"title": "$:/core/ui/Buttons/export-tiddler",
"tags": "$:/tags/ViewToolbar",
"caption": "{{$:/core/images/export-button}} {{$:/language/Buttons/ExportTiddler/Caption}}",
"description": "{{$:/language/Buttons/ExportTiddler/Hint}}",
"text": "\\define makeExportFilter()\n[[$(currentTiddler)$]]\n\\end\n<$macrocall $name=\"exportButton\" exportFilter=<<makeExportFilter>> lingoBase=\"$:/language/Buttons/ExportTiddler/\" baseFilename=<<currentTiddler>>/>"
},
"$:/core/ui/Buttons/fold-bar": {
"title": "$:/core/ui/Buttons/fold-bar",
"tags": "$:/tags/ViewToolbar",
"caption": "{{$:/core/images/chevron-up}} {{$:/language/Buttons/Fold/FoldBar/Caption}}",
"description": "{{$:/language/Buttons/Fold/FoldBar/Hint}}",
"text": "<!-- This dummy toolbar button is here to allow visibility of the fold-bar to be controlled as if it were a toolbar button -->"
},
"$:/core/ui/Buttons/fold-others": {
"title": "$:/core/ui/Buttons/fold-others",
"tags": "$:/tags/ViewToolbar",
"caption": "{{$:/core/images/fold-others-button}} {{$:/language/Buttons/FoldOthers/Caption}}",
"description": "{{$:/language/Buttons/FoldOthers/Hint}}",
"text": "\\whitespace trim\n<$button tooltip={{$:/language/Buttons/FoldOthers/Hint}} aria-label={{$:/language/Buttons/FoldOthers/Caption}} class=<<tv-config-toolbar-class>>>\n<$action-sendmessage $message=\"tm-fold-other-tiddlers\" $param=<<currentTiddler>> foldedStatePrefix=\"$:/state/folded/\"/>\n<$list filter=\"[<tv-config-toolbar-icons>match[yes]]\" variable=\"listItem\">\n{{$:/core/images/fold-others-button}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>match[yes]]\">\n<span class=\"tc-btn-text\">\n<$text text=\" \"/>\n<$text text={{$:/language/Buttons/FoldOthers/Caption}}/>\n</span>\n</$list>\n</$button>"
},
"$:/core/ui/Buttons/fold": {
"title": "$:/core/ui/Buttons/fold",
"tags": "$:/tags/ViewToolbar",
"caption": "{{$:/core/images/fold-button}} {{$:/language/Buttons/Fold/Caption}}",
"description": "{{$:/language/Buttons/Fold/Hint}}",
"text": "\\whitespace trim\n<$reveal type=\"nomatch\" stateTitle=<<folded-state>> text=\"hide\" default=\"show\">\n<$button tooltip={{$:/language/Buttons/Fold/Hint}} aria-label={{$:/language/Buttons/Fold/Caption}} class=<<tv-config-toolbar-class>>>\n<$action-sendmessage $message=\"tm-fold-tiddler\" $param=<<currentTiddler>> foldedState=<<folded-state>>/>\n<$list filter=\"[<tv-config-toolbar-icons>match[yes]]\" variable=\"listItem\">\n{{$:/core/images/fold-button}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>match[yes]]\">\n<span class=\"tc-btn-text\">\n<$text text=\" \"/>\n<$text text={{$:/language/Buttons/Fold/Caption}}/>\n</span>\n</$list>\n</$button>\n</$reveal>\n<$reveal type=\"match\" stateTitle=<<folded-state>> text=\"hide\" default=\"show\">\n<$button tooltip={{$:/language/Buttons/Unfold/Hint}} aria-label={{$:/language/Buttons/Unfold/Caption}} class=<<tv-config-toolbar-class>>>\n<$action-sendmessage $message=\"tm-fold-tiddler\" $param=<<currentTiddler>> foldedState=<<folded-state>>/>\n<$list filter=\"[<tv-config-toolbar-icons>match[yes]]\" variable=\"listItem\">\n{{$:/core/images/unfold-button}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>match[yes]]\">\n<span class=\"tc-btn-text\">\n<$text text=\" \"/>\n<$text text={{$:/language/Buttons/Unfold/Caption}}/>\n</span>\n</$list>\n</$button>\n</$reveal>\n"
},
"$:/core/ui/Buttons/info": {
"title": "$:/core/ui/Buttons/info",
"tags": "$:/tags/ViewToolbar",
"caption": "{{$:/core/images/info-button}} {{$:/language/Buttons/Info/Caption}}",
"description": "{{$:/language/Buttons/Info/Hint}}",
"text": "\\whitespace trim\n\\define button-content()\n<$list filter=\"[<tv-config-toolbar-icons>match[yes]]\">\n{{$:/core/images/info-button}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>match[yes]]\">\n<span class=\"tc-btn-text\">\n<$text text={{$:/language/Buttons/Info/Caption}}/>\n</span>\n</$list>\n\\end\n<$reveal state=\"$:/config/TiddlerInfo/Mode\" type=\"match\" text=\"popup\">\n<$button popup=<<tiddlerInfoState>> tooltip={{$:/language/Buttons/Info/Hint}} aria-label={{$:/language/Buttons/Info/Caption}} class=<<tv-config-toolbar-class>> selectedClass=\"tc-selected\">\n<$macrocall $name=\"button-content\" mode=\"inline\"/>\n</$button>\n</$reveal>\n<$reveal state=\"$:/config/TiddlerInfo/Mode\" type=\"match\" text=\"sticky\">\n<$reveal state=<<tiddlerInfoState>> type=\"match\" text=\"\" default=\"\">\n<$button set=<<tiddlerInfoState>> setTo=\"yes\" tooltip={{$:/language/Buttons/Info/Hint}} aria-label={{$:/language/Buttons/Info/Caption}} class=<<tv-config-toolbar-class>> selectedClass=\"tc-selected\">\n<$macrocall $name=\"button-content\" mode=\"inline\"/>\n</$button>\n</$reveal>\n<$reveal state=<<tiddlerInfoState>> type=\"nomatch\" text=\"\" default=\"\">\n<$button set=<<tiddlerInfoState>> setTo=\"\" tooltip={{$:/language/Buttons/Info/Hint}} aria-label={{$:/language/Buttons/Info/Caption}} class=<<tv-config-toolbar-class>> selectedClass=\"tc-selected\">\n<$macrocall $name=\"button-content\" mode=\"inline\"/>\n</$button>\n</$reveal>\n</$reveal>"
},
"$:/core/ui/Buttons/more-tiddler-actions": {
"title": "$:/core/ui/Buttons/more-tiddler-actions",
"tags": "$:/tags/ViewToolbar",
"caption": "{{$:/core/images/down-arrow}} {{$:/language/Buttons/More/Caption}}",
"description": "{{$:/language/Buttons/More/Hint}}",
"text": "\\whitespace trim\n\\define config-title()\n$:/config/ViewToolbarButtons/Visibility/$(listItem)$\n\\end\n<$button popup=<<qualify \"$:/state/popup/more\">> tooltip={{$:/language/Buttons/More/Hint}} aria-label={{$:/language/Buttons/More/Caption}} class=<<tv-config-toolbar-class>> selectedClass=\"tc-selected\">\n<$list filter=\"[<tv-config-toolbar-icons>match[yes]]\">\n{{$:/core/images/down-arrow}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>match[yes]]\">\n<span class=\"tc-btn-text\">\n<$text text=\" \"/>\n<$text text={{$:/language/Buttons/More/Caption}}/>\n</span>\n</$list>\n</$button>\n<$reveal state=<<qualify \"$:/state/popup/more\">> type=\"popup\" position=\"belowleft\" animate=\"yes\">\n\n<div class=\"tc-drop-down\">\n\n<$set name=\"tv-config-toolbar-icons\" value=\"yes\">\n\n<$set name=\"tv-config-toolbar-text\" value=\"yes\">\n\n<$set name=\"tv-config-toolbar-class\" value=\"tc-btn-invisible\">\n\n<$list filter=\"[all[shadows+tiddlers]tag[$:/tags/ViewToolbar]!has[draft.of]] -[[$:/core/ui/Buttons/more-tiddler-actions]]\" variable=\"listItem\">\n\n<$reveal type=\"match\" state=<<config-title>> text=\"hide\">\n\n<$set name=\"tv-config-toolbar-class\" filter=\"[<tv-config-toolbar-class>] [<listItem>encodeuricomponent[]addprefix[tc-btn-]]\">\n\n<$transclude tiddler=<<listItem>> mode=\"inline\"/>\n\n</$set>\n\n</$reveal>\n\n</$list>\n\n</$set>\n\n</$set>\n\n</$set>\n\n</div>\n\n</$reveal>"
},
"$:/core/ui/Buttons/new-here": {
"title": "$:/core/ui/Buttons/new-here",
"tags": "$:/tags/ViewToolbar",
"caption": "{{$:/core/images/new-here-button}} {{$:/language/Buttons/NewHere/Caption}}",
"description": "{{$:/language/Buttons/NewHere/Hint}}",
"text": "\\whitespace trim\n\\define newHereActions()\n<$set name=\"tags\" filter=\"[<currentTiddler>]\">\n<$action-sendmessage $message=\"tm-new-tiddler\" tags=<<tags>>/>\n</$set>\n\\end\n\\define newHereButton()\n<$button actions=<<newHereActions>> tooltip={{$:/language/Buttons/NewHere/Hint}} aria-label={{$:/language/Buttons/NewHere/Caption}} class=<<tv-config-toolbar-class>>>\n<$list filter=\"[<tv-config-toolbar-icons>match[yes]]\">\n{{$:/core/images/new-here-button}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>match[yes]]\">\n<span class=\"tc-btn-text\">\n<$text text={{$:/language/Buttons/NewHere/Caption}}/>\n</span>\n</$list>\n</$button>\n\\end\n<<newHereButton>>"
},
"$:/core/ui/Buttons/new-journal-here": {
"title": "$:/core/ui/Buttons/new-journal-here",
"tags": "$:/tags/ViewToolbar",
"caption": "{{$:/core/images/new-journal-button}} {{$:/language/Buttons/NewJournalHere/Caption}}",
"description": "{{$:/language/Buttons/NewJournalHere/Hint}}",
"text": "\\whitespace trim\n\\define journalButtonTags()\n[[$(currentTiddlerTag)$]] $(journalTags)$\n\\end\n\\define journalButton()\n<$button tooltip={{$:/language/Buttons/NewJournalHere/Hint}} aria-label={{$:/language/Buttons/NewJournalHere/Caption}} class=<<tv-config-toolbar-class>>>\n<$wikify name=\"journalTitle\" text=\"\"\"<$macrocall $name=\"now\" format=<<journalTitleTemplate>>/>\"\"\">\n<$action-sendmessage $message=\"tm-new-tiddler\" title=<<journalTitle>> tags=<<journalButtonTags>>/>\n<$list filter=\"[<tv-config-toolbar-icons>match[yes]]\">\n{{$:/core/images/new-journal-button}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>match[yes]]\">\n<span class=\"tc-btn-text\">\n<$text text={{$:/language/Buttons/NewJournalHere/Caption}}/>\n</span>\n</$list>\n</$wikify>\n</$button>\n\\end\n<$set name=\"journalTitleTemplate\" value={{$:/config/NewJournal/Title}}>\n<$set name=\"journalTags\" value={{$:/config/NewJournal/Tags}}>\n<$set name=\"currentTiddlerTag\" value=<<currentTiddler>>>\n<<journalButton>>\n</$set>\n</$set>\n</$set>"
},
"$:/core/ui/Buttons/open-window": {
"title": "$:/core/ui/Buttons/open-window",
"tags": "$:/tags/ViewToolbar",
"caption": "{{$:/core/images/open-window}} {{$:/language/Buttons/OpenWindow/Caption}}",
"description": "{{$:/language/Buttons/OpenWindow/Hint}}",
"text": "\\whitespace trim\n<$button message=\"tm-open-window\" tooltip={{$:/language/Buttons/OpenWindow/Hint}} aria-label={{$:/language/Buttons/OpenWindow/Caption}} class=<<tv-config-toolbar-class>>>\n<$list filter=\"[<tv-config-toolbar-icons>match[yes]]\">\n{{$:/core/images/open-window}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>match[yes]]\">\n<span class=\"tc-btn-text\">\n<$text text=\" \"/>\n<$text text={{$:/language/Buttons/OpenWindow/Caption}}/>\n</span>\n</$list>\n</$button>"
},
"$:/core/ui/Buttons/permalink": {
"title": "$:/core/ui/Buttons/permalink",
"tags": "$:/tags/ViewToolbar",
"caption": "{{$:/core/images/permalink-button}} {{$:/language/Buttons/Permalink/Caption}}",
"description": "{{$:/language/Buttons/Permalink/Hint}}",
"text": "\\whitespace trim\n<$button message=\"tm-permalink\" tooltip={{$:/language/Buttons/Permalink/Hint}} aria-label={{$:/language/Buttons/Permalink/Caption}} class=<<tv-config-toolbar-class>>>\n<$list filter=\"[<tv-config-toolbar-icons>match[yes]]\">\n{{$:/core/images/permalink-button}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>match[yes]]\">\n<span class=\"tc-btn-text\">\n<$text text=\" \"/>\n<$text text={{$:/language/Buttons/Permalink/Caption}}/>\n</span>\n</$list>\n</$button>"
},
"$:/core/ui/Buttons/permaview": {
"title": "$:/core/ui/Buttons/permaview",
"tags": "$:/tags/ViewToolbar $:/tags/PageControls",
"caption": "{{$:/core/images/permaview-button}} {{$:/language/Buttons/Permaview/Caption}}",
"description": "{{$:/language/Buttons/Permaview/Hint}}",
"text": "\\whitespace trim\n<$button message=\"tm-permaview\" tooltip={{$:/language/Buttons/Permaview/Hint}} aria-label={{$:/language/Buttons/Permaview/Caption}} class=<<tv-config-toolbar-class>>>\n<$list filter=\"[<tv-config-toolbar-icons>match[yes]]\">\n{{$:/core/images/permaview-button}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>match[yes]]\">\n<span class=\"tc-btn-text\">\n<$text text=\" \"/>\n<$text text={{$:/language/Buttons/Permaview/Caption}}/>\n</span>\n</$list>\n</$button>"
},
"$:/DefaultTiddlers": {
"title": "$:/DefaultTiddlers",
"text": "GettingStarted\n"
},
"$:/temp/advancedsearch": {
"title": "$:/temp/advancedsearch",
"text": ""
},
"$:/snippets/allfields": {
"title": "$:/snippets/allfields",
"text": "\\define renderfield(title)\n<tr class=\"tc-view-field\"><td class=\"tc-view-field-name\">''$title$'':</td><td class=\"tc-view-field-value\">//{{$:/language/Docs/Fields/$title$}}//</td></tr>\n\\end\n<table class=\"tc-view-field-table\"><tbody><$list filter=\"[fields[]sort[title]]\" variable=\"listItem\"><$macrocall $name=\"renderfield\" title=<<listItem>>/></$list>\n</tbody></table>\n"
},
"$:/config/AnimationDuration": {
"title": "$:/config/AnimationDuration",
"text": "400"
},
"$:/config/AutoSave": {
"title": "$:/config/AutoSave",
"text": "yes"
},
"$:/config/BitmapEditor/Colour": {
"title": "$:/config/BitmapEditor/Colour",
"text": "#444"
},
"$:/config/BitmapEditor/ImageSizes": {
"title": "$:/config/BitmapEditor/ImageSizes",
"text": "[[62px 100px]] [[100px 62px]] [[124px 200px]] [[200px 124px]] [[248px 400px]] [[371px 600px]] [[400px 248px]] [[556px 900px]] [[600px 371px]] [[742px 1200px]] [[900px 556px]] [[1200px 742px]]"
},
"$:/config/BitmapEditor/LineWidth": {
"title": "$:/config/BitmapEditor/LineWidth",
"text": "3px"
},
"$:/config/BitmapEditor/LineWidths": {
"title": "$:/config/BitmapEditor/LineWidths",
"text": "0.25px 0.5px 1px 2px 3px 4px 6px 8px 10px 16px 20px 28px 40px 56px 80px"
},
"$:/config/BitmapEditor/Opacities": {
"title": "$:/config/BitmapEditor/Opacities",
"text": "0.01 0.025 0.05 0.075 0.1 0.15 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1.0"
},
"$:/config/BitmapEditor/Opacity": {
"title": "$:/config/BitmapEditor/Opacity",
"text": "1.0"
},
"$:/config/DefaultMoreSidebarTab": {
"title": "$:/config/DefaultMoreSidebarTab",
"text": "$:/core/ui/MoreSideBar/Tags"
},
"$:/config/DefaultSidebarTab": {
"title": "$:/config/DefaultSidebarTab",
"text": "$:/core/ui/SideBar/Open"
},
"$:/config/DownloadSaver/AutoSave": {
"title": "$:/config/DownloadSaver/AutoSave",
"text": "no"
},
"$:/config/Drafts/TypingTimeout": {
"title": "$:/config/Drafts/TypingTimeout",
"text": "400"
},
"$:/config/EditTemplateFields/Visibility/title": {
"title": "$:/config/EditTemplateFields/Visibility/title",
"text": "hide"
},
"$:/config/EditTemplateFields/Visibility/tags": {
"title": "$:/config/EditTemplateFields/Visibility/tags",
"text": "hide"
},
"$:/config/EditTemplateFields/Visibility/text": {
"title": "$:/config/EditTemplateFields/Visibility/text",
"text": "hide"
},
"$:/config/EditTemplateFields/Visibility/creator": {
"title": "$:/config/EditTemplateFields/Visibility/creator",
"text": "hide"
},
"$:/config/EditTemplateFields/Visibility/created": {
"title": "$:/config/EditTemplateFields/Visibility/created",
"text": "hide"
},
"$:/config/EditTemplateFields/Visibility/modified": {
"title": "$:/config/EditTemplateFields/Visibility/modified",
"text": "hide"
},
"$:/config/EditTemplateFields/Visibility/modifier": {
"title": "$:/config/EditTemplateFields/Visibility/modifier",
"text": "hide"
},
"$:/config/EditTemplateFields/Visibility/type": {
"title": "$:/config/EditTemplateFields/Visibility/type",
"text": "hide"
},
"$:/config/EditTemplateFields/Visibility/draft.title": {
"title": "$:/config/EditTemplateFields/Visibility/draft.title",
"text": "hide"
},
"$:/config/EditTemplateFields/Visibility/draft.of": {
"title": "$:/config/EditTemplateFields/Visibility/draft.of",
"text": "hide"
},
"$:/config/EditTemplateFields/Visibility/revision": {
"title": "$:/config/EditTemplateFields/Visibility/revision",
"text": "hide"
},
"$:/config/EditTemplateFields/Visibility/bag": {
"title": "$:/config/EditTemplateFields/Visibility/bag",
"text": "hide"
},
"$:/config/EditorToolbarButtons/Visibility/$:/core/ui/EditorToolbar/heading-4": {
"title": "$:/config/EditorToolbarButtons/Visibility/$:/core/ui/EditorToolbar/heading-4",
"text": "hide"
},
"$:/config/EditorToolbarButtons/Visibility/$:/core/ui/EditorToolbar/heading-5": {
"title": "$:/config/EditorToolbarButtons/Visibility/$:/core/ui/EditorToolbar/heading-5",
"text": "hide"
},
"$:/config/EditorToolbarButtons/Visibility/$:/core/ui/EditorToolbar/heading-6": {
"title": "$:/config/EditorToolbarButtons/Visibility/$:/core/ui/EditorToolbar/heading-6",
"text": "hide"
},
"$:/config/EditorTypeMappings/image/gif": {
"title": "$:/config/EditorTypeMappings/image/gif",
"text": "bitmap"
},
"$:/config/EditorTypeMappings/image/webp": {
"title": "$:/config/EditorTypeMappings/image/webp",
"text": "bitmap"
},
"$:/config/EditorTypeMappings/image/heic": {
"title": "$:/config/EditorTypeMappings/image/heic",
"text": "bitmap"
},
"$:/config/EditorTypeMappings/image/heif": {
"title": "$:/config/EditorTypeMappings/image/heif",
"text": "bitmap"
},
"$:/config/EditorTypeMappings/image/jpeg": {
"title": "$:/config/EditorTypeMappings/image/jpeg",
"text": "bitmap"
},
"$:/config/EditorTypeMappings/image/jpg": {
"title": "$:/config/EditorTypeMappings/image/jpg",
"text": "bitmap"
},
"$:/config/EditorTypeMappings/image/png": {
"title": "$:/config/EditorTypeMappings/image/png",
"text": "bitmap"
},
"$:/config/EditorTypeMappings/image/x-icon": {
"title": "$:/config/EditorTypeMappings/image/x-icon",
"text": "bitmap"
},
"$:/config/EditorTypeMappings/text/vnd.tiddlywiki": {
"title": "$:/config/EditorTypeMappings/text/vnd.tiddlywiki",
"text": "text"
},
"$:/config/Manager/Show": {
"title": "$:/config/Manager/Show",
"text": "tiddlers"
},
"$:/config/Manager/Filter": {
"title": "$:/config/Manager/Filter",
"text": ""
},
"$:/config/Manager/Order": {
"title": "$:/config/Manager/Order",
"text": "forward"
},
"$:/config/Manager/Sort": {
"title": "$:/config/Manager/Sort",
"text": "title"
},
"$:/config/Manager/System": {
"title": "$:/config/Manager/System",
"text": "system"
},
"$:/config/Manager/Tag": {
"title": "$:/config/Manager/Tag",
"text": ""
},
"$:/state/popup/manager/item/$:/Manager/ItemMain/RawText": {
"title": "$:/state/popup/manager/item/$:/Manager/ItemMain/RawText",
"text": "hide"
},
"$:/config/MissingLinks": {
"title": "$:/config/MissingLinks",
"text": "yes"
},
"$:/config/Navigation/UpdateAddressBar": {
"title": "$:/config/Navigation/UpdateAddressBar",
"text": "no"
},
"$:/config/Navigation/UpdateHistory": {
"title": "$:/config/Navigation/UpdateHistory",
"text": "no"
},
"$:/config/NewImageType": {
"title": "$:/config/NewImageType",
"text": "jpeg"
},
"$:/config/OfficialPluginLibrary": {
"title": "$:/config/OfficialPluginLibrary",
"tags": "$:/tags/PluginLibrary",
"url": "https://tiddlywiki.com/library/v5.1.20/index.html",
"caption": "{{$:/language/OfficialPluginLibrary}}",
"text": "{{$:/language/OfficialPluginLibrary/Hint}}\n"
},
"$:/config/Navigation/openLinkFromInsideRiver": {
"title": "$:/config/Navigation/openLinkFromInsideRiver",
"text": "below"
},
"$:/config/Navigation/openLinkFromOutsideRiver": {
"title": "$:/config/Navigation/openLinkFromOutsideRiver",
"text": "top"
},
"$:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/advanced-search": {
"title": "$:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/advanced-search",
"text": "hide"
},
"$:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/close-all": {
"title": "$:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/close-all",
"text": "hide"
},
"$:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/encryption": {
"title": "$:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/encryption",
"text": "hide"
},
"$:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/export-page": {
"title": "$:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/export-page",
"text": "hide"
},
"$:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/fold-all": {
"title": "$:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/fold-all",
"text": "hide"
},
"$:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/full-screen": {
"title": "$:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/full-screen",
"text": "hide"
},
"$:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/home": {
"title": "$:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/home",
"text": "hide"
},
"$:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/refresh": {
"title": "$:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/refresh",
"text": "hide"
},
"$:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/import": {
"title": "$:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/import",
"text": "hide"
},
"$:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/language": {
"title": "$:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/language",
"text": "hide"
},
"$:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/tag-manager": {
"title": "$:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/tag-manager",
"text": "hide"
},
"$:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/manager": {
"title": "$:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/manager",
"text": "hide"
},
"$:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/more-page-actions": {
"title": "$:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/more-page-actions",
"text": "hide"
},
"$:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/new-journal": {
"title": "$:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/new-journal",
"text": "hide"
},
"$:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/new-image": {
"title": "$:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/new-image",
"text": "hide"
},
"$:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/palette": {
"title": "$:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/palette",
"text": "hide"
},
"$:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/permaview": {
"title": "$:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/permaview",
"text": "hide"
},
"$:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/print": {
"title": "$:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/print",
"text": "hide"
},
"$:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/storyview": {
"title": "$:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/storyview",
"text": "hide"
},
"$:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/timestamp": {
"title": "$:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/timestamp",
"text": "hide"
},
"$:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/theme": {
"title": "$:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/theme",
"text": "hide"
},
"$:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/unfold-all": {
"title": "$:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/unfold-all",
"text": "hide"
},
"$:/config/Performance/Instrumentation": {
"title": "$:/config/Performance/Instrumentation",
"text": "yes"
},
"$:/config/SaveWikiButton/Template": {
"title": "$:/config/SaveWikiButton/Template",
"text": "$:/core/save/all"
},
"$:/config/SaverFilter": {
"title": "$:/config/SaverFilter",
"text": "[all[]] -[[$:/HistoryList]] -[[$:/StoryList]] -[[$:/Import]] -[[$:/isEncrypted]] -[[$:/UploadName]] -[prefix[$:/state/]] -[prefix[$:/temp/]]"
},
"$:/config/Search/AutoFocus": {
"title": "$:/config/Search/AutoFocus",
"text": "true"
},
"$:/config/Search/MinLength": {
"title": "$:/config/Search/MinLength",
"text": "3"
},
"$:/config/SearchResults/Default": {
"title": "$:/config/SearchResults/Default",
"text": "$:/core/ui/DefaultSearchResultList"
},
"$:/config/ShortcutInfo/advanced-search": {
"title": "$:/config/ShortcutInfo/advanced-search",
"text": "{{$:/language/Buttons/AdvancedSearch/Hint}}"
},
"$:/config/ShortcutInfo/bold": {
"title": "$:/config/ShortcutInfo/bold",
"text": "{{$:/language/Buttons/Bold/Hint}}"
},
"$:/config/ShortcutInfo/cancel-edit-tiddler": {
"title": "$:/config/ShortcutInfo/cancel-edit-tiddler",
"text": "{{$:/language/Buttons/Cancel/Hint}}"
},
"$:/config/ShortcutInfo/excise": {
"title": "$:/config/ShortcutInfo/excise",
"text": "{{$:/language/Buttons/Excise/Hint}}"
},
"$:/config/ShortcutInfo/heading-1": {
"title": "$:/config/ShortcutInfo/heading-1",
"text": "{{$:/language/Buttons/Heading1/Hint}}"
},
"$:/config/ShortcutInfo/heading-2": {
"title": "$:/config/ShortcutInfo/heading-2",
"text": "{{$:/language/Buttons/Heading2/Hint}}"
},
"$:/config/ShortcutInfo/heading-3": {
"title": "$:/config/ShortcutInfo/heading-3",
"text": "{{$:/language/Buttons/Heading3/Hint}}"
},
"$:/config/ShortcutInfo/heading-4": {
"title": "$:/config/ShortcutInfo/heading-4",
"text": "{{$:/language/Buttons/Heading4/Hint}}"
},
"$:/config/ShortcutInfo/heading-5": {
"title": "$:/config/ShortcutInfo/heading-5",
"text": "{{$:/language/Buttons/Heading5/Hint}}"
},
"$:/config/ShortcutInfo/heading-6": {
"title": "$:/config/ShortcutInfo/heading-6",
"text": "{{$:/language/Buttons/Heading6/Hint}}"
},
"$:/config/ShortcutInfo/italic": {
"title": "$:/config/ShortcutInfo/italic",
"text": "{{$:/language/Buttons/Italic/Hint}}"
},
"$:/config/ShortcutInfo/link": {
"title": "$:/config/ShortcutInfo/link",
"text": "{{$:/language/Buttons/Link/Hint}}"
},
"$:/config/ShortcutInfo/list-bullet": {
"title": "$:/config/ShortcutInfo/list-bullet",
"text": "{{$:/language/Buttons/ListBullet/Hint}}"
},
"$:/config/ShortcutInfo/list-number": {
"title": "$:/config/ShortcutInfo/list-number",
"text": "{{$:/language/Buttons/ListNumber/Hint}}"
},
"$:/config/ShortcutInfo/mono-block": {
"title": "$:/config/ShortcutInfo/mono-block",
"text": "{{$:/language/Buttons/MonoBlock/Hint}}"
},
"$:/config/ShortcutInfo/mono-line": {
"title": "$:/config/ShortcutInfo/mono-line",
"text": "{{$:/language/Buttons/MonoLine/Hint}}"
},
"$:/config/ShortcutInfo/new-image": {
"title": "$:/config/ShortcutInfo/new-image",
"text": "{{$:/language/Buttons/NewImage/Hint}}"
},
"$:/config/ShortcutInfo/new-journal": {
"title": "$:/config/ShortcutInfo/new-journal",
"text": "{{$:/language/Buttons/NewJournal/Hint}}"
},
"$:/config/ShortcutInfo/new-tiddler": {
"title": "$:/config/ShortcutInfo/new-tiddler",
"text": "{{$:/language/Buttons/NewTiddler/Hint}}"
},
"$:/config/ShortcutInfo/picture": {
"title": "$:/config/ShortcutInfo/picture",
"text": "{{$:/language/Buttons/Picture/Hint}}"
},
"$:/config/ShortcutInfo/preview": {
"title": "$:/config/ShortcutInfo/preview",
"text": "{{$:/language/Buttons/Preview/Hint}}"
},
"$:/config/ShortcutInfo/quote": {
"title": "$:/config/ShortcutInfo/quote",
"text": "{{$:/language/Buttons/Quote/Hint}}"
},
"$:/config/ShortcutInfo/save-tiddler": {
"title": "$:/config/ShortcutInfo/save-tiddler",
"text": "{{$:/language/Buttons/Save/Hint}}"
},
"$:/config/ShortcutInfo/sidebar-search": {
"title": "$:/config/ShortcutInfo/sidebar-search",
"text": "{{$:/language/Buttons/SidebarSearch/Hint}}"
},
"$:/config/ShortcutInfo/stamp": {
"title": "$:/config/ShortcutInfo/stamp",
"text": "{{$:/language/Buttons/Stamp/Hint}}"
},
"$:/config/ShortcutInfo/strikethrough": {
"title": "$:/config/ShortcutInfo/strikethrough",
"text": "{{$:/language/Buttons/Strikethrough/Hint}}"
},
"$:/config/ShortcutInfo/subscript": {
"title": "$:/config/ShortcutInfo/subscript",
"text": "{{$:/language/Buttons/Subscript/Hint}}"
},
"$:/config/ShortcutInfo/superscript": {
"title": "$:/config/ShortcutInfo/superscript",
"text": "{{$:/language/Buttons/Superscript/Hint}}"
},
"$:/config/ShortcutInfo/toggle-sidebar": {
"title": "$:/config/ShortcutInfo/toggle-sidebar",
"text": "{{$:/language/Buttons/ToggleSidebar/Hint}}"
},
"$:/config/ShortcutInfo/underline": {
"title": "$:/config/ShortcutInfo/underline",
"text": "{{$:/language/Buttons/Underline/Hint}}"
},
"$:/config/SyncFilter": {
"title": "$:/config/SyncFilter",
"text": "[is[tiddler]] -[[$:/HistoryList]] -[[$:/Import]] -[[$:/isEncrypted]] -[prefix[$:/status/]] -[prefix[$:/state/]] -[prefix[$:/temp/]]"
},
"$:/config/Tags/MinLength": {
"title": "$:/config/Tags/MinLength",
"text": "0"
},
"$:/config/TextEditor/EditorHeight/Height": {
"title": "$:/config/TextEditor/EditorHeight/Height",
"text": "400px"
},
"$:/config/TextEditor/EditorHeight/Mode": {
"title": "$:/config/TextEditor/EditorHeight/Mode",
"text": "auto"
},
"$:/config/TiddlerInfo/Default": {
"title": "$:/config/TiddlerInfo/Default",
"text": "$:/core/ui/TiddlerInfo/Fields"
},
"$:/config/TiddlerInfo/Mode": {
"title": "$:/config/TiddlerInfo/Mode",
"text": "popup"
},
"$:/config/Tiddlers/TitleLinks": {
"title": "$:/config/Tiddlers/TitleLinks",
"text": "no"
},
"$:/config/Toolbar/ButtonClass": {
"title": "$:/config/Toolbar/ButtonClass",
"text": "tc-btn-invisible"
},
"$:/config/Toolbar/Icons": {
"title": "$:/config/Toolbar/Icons",
"text": "yes"
},
"$:/config/Toolbar/Text": {
"title": "$:/config/Toolbar/Text",
"text": "no"
},
"$:/config/ViewToolbarButtons/Visibility/$:/core/ui/Buttons/clone": {
"title": "$:/config/ViewToolbarButtons/Visibility/$:/core/ui/Buttons/clone",
"text": "hide"
},
"$:/config/ViewToolbarButtons/Visibility/$:/core/ui/Buttons/close-others": {
"title": "$:/config/ViewToolbarButtons/Visibility/$:/core/ui/Buttons/close-others",
"text": "hide"
},
"$:/config/ViewToolbarButtons/Visibility/$:/core/ui/Buttons/export-tiddler": {
"title": "$:/config/ViewToolbarButtons/Visibility/$:/core/ui/Buttons/export-tiddler",
"text": "hide"
},
"$:/config/ViewToolbarButtons/Visibility/$:/core/ui/Buttons/info": {
"title": "$:/config/ViewToolbarButtons/Visibility/$:/core/ui/Buttons/info",
"text": "hide"
},
"$:/config/ViewToolbarButtons/Visibility/$:/core/ui/Buttons/more-tiddler-actions": {
"title": "$:/config/ViewToolbarButtons/Visibility/$:/core/ui/Buttons/more-tiddler-actions",
"text": "show"
},
"$:/config/ViewToolbarButtons/Visibility/$:/core/ui/Buttons/new-here": {
"title": "$:/config/ViewToolbarButtons/Visibility/$:/core/ui/Buttons/new-here",
"text": "hide"
},
"$:/config/ViewToolbarButtons/Visibility/$:/core/ui/Buttons/new-journal-here": {
"title": "$:/config/ViewToolbarButtons/Visibility/$:/core/ui/Buttons/new-journal-here",
"text": "hide"
},
"$:/config/ViewToolbarButtons/Visibility/$:/core/ui/Buttons/open-window": {
"title": "$:/config/ViewToolbarButtons/Visibility/$:/core/ui/Buttons/open-window",
"text": "hide"
},
"$:/config/ViewToolbarButtons/Visibility/$:/core/ui/Buttons/permalink": {
"title": "$:/config/ViewToolbarButtons/Visibility/$:/core/ui/Buttons/permalink",
"text": "hide"
},
"$:/config/ViewToolbarButtons/Visibility/$:/core/ui/Buttons/permaview": {
"title": "$:/config/ViewToolbarButtons/Visibility/$:/core/ui/Buttons/permaview",
"text": "hide"
},
"$:/config/ViewToolbarButtons/Visibility/$:/core/ui/Buttons/delete": {
"title": "$:/config/ViewToolbarButtons/Visibility/$:/core/ui/Buttons/delete",
"text": "hide"
},
"$:/config/ViewToolbarButtons/Visibility/$:/core/ui/Buttons/fold": {
"title": "$:/config/ViewToolbarButtons/Visibility/$:/core/ui/Buttons/fold",
"text": "hide"
},
"$:/config/ViewToolbarButtons/Visibility/$:/core/ui/Buttons/fold-bar": {
"title": "$:/config/ViewToolbarButtons/Visibility/$:/core/ui/Buttons/fold-bar",
"text": "hide"
},
"$:/config/ViewToolbarButtons/Visibility/$:/core/ui/Buttons/fold-others": {
"title": "$:/config/ViewToolbarButtons/Visibility/$:/core/ui/Buttons/fold-others",
"text": "hide"
},
"$:/config/shortcuts-mac/bold": {
"title": "$:/config/shortcuts-mac/bold",
"text": "meta-B"
},
"$:/config/shortcuts-mac/italic": {
"title": "$:/config/shortcuts-mac/italic",
"text": "meta-I"
},
"$:/config/shortcuts-mac/underline": {
"title": "$:/config/shortcuts-mac/underline",
"text": "meta-U"
},
"$:/config/shortcuts-mac/new-image": {
"title": "$:/config/shortcuts-mac/new-image",
"text": "ctrl-I"
},
"$:/config/shortcuts-mac/new-journal": {
"title": "$:/config/shortcuts-mac/new-journal",
"text": "ctrl-J"
},
"$:/config/shortcuts-mac/new-tiddler": {
"title": "$:/config/shortcuts-mac/new-tiddler",
"text": "ctrl-N"
},
"$:/config/shortcuts-not-mac/bold": {
"title": "$:/config/shortcuts-not-mac/bold",
"text": "ctrl-B"
},
"$:/config/shortcuts-not-mac/italic": {
"title": "$:/config/shortcuts-not-mac/italic",
"text": "ctrl-I"
},
"$:/config/shortcuts-not-mac/underline": {
"title": "$:/config/shortcuts-not-mac/underline",
"text": "ctrl-U"
},
"$:/config/shortcuts-not-mac/new-image": {
"title": "$:/config/shortcuts-not-mac/new-image",
"text": "alt-I"
},
"$:/config/shortcuts-not-mac/new-journal": {
"title": "$:/config/shortcuts-not-mac/new-journal",
"text": "alt-J"
},
"$:/config/shortcuts-not-mac/new-tiddler": {
"title": "$:/config/shortcuts-not-mac/new-tiddler",
"text": "alt-N"
},
"$:/config/shortcuts/advanced-search": {
"title": "$:/config/shortcuts/advanced-search",
"text": "ctrl-shift-A"
},
"$:/config/shortcuts/cancel-edit-tiddler": {
"title": "$:/config/shortcuts/cancel-edit-tiddler",
"text": "escape"
},
"$:/config/shortcuts/excise": {
"title": "$:/config/shortcuts/excise",
"text": "ctrl-E"
},
"$:/config/shortcuts/sidebar-search": {
"title": "$:/config/shortcuts/sidebar-search",
"text": "ctrl-shift-F"
},
"$:/config/shortcuts/heading-1": {
"title": "$:/config/shortcuts/heading-1",
"text": "ctrl-1"
},
"$:/config/shortcuts/heading-2": {
"title": "$:/config/shortcuts/heading-2",
"text": "ctrl-2"
},
"$:/config/shortcuts/heading-3": {
"title": "$:/config/shortcuts/heading-3",
"text": "ctrl-3"
},
"$:/config/shortcuts/heading-4": {
"title": "$:/config/shortcuts/heading-4",
"text": "ctrl-4"
},
"$:/config/shortcuts/heading-5": {
"title": "$:/config/shortcuts/heading-5",
"text": "ctrl-5"
},
"$:/config/shortcuts/heading-6": {
"title": "$:/config/shortcuts/heading-6",
"text": "ctrl-6"
},
"$:/config/shortcuts/link": {
"title": "$:/config/shortcuts/link",
"text": "ctrl-L"
},
"$:/config/shortcuts/linkify": {
"title": "$:/config/shortcuts/linkify",
"text": "alt-shift-L"
},
"$:/config/shortcuts/list-bullet": {
"title": "$:/config/shortcuts/list-bullet",
"text": "ctrl-shift-L"
},
"$:/config/shortcuts/list-number": {
"title": "$:/config/shortcuts/list-number",
"text": "ctrl-shift-N"
},
"$:/config/shortcuts/mono-block": {
"title": "$:/config/shortcuts/mono-block",
"text": "ctrl-shift-M"
},
"$:/config/shortcuts/mono-line": {
"title": "$:/config/shortcuts/mono-line",
"text": "ctrl-M"
},
"$:/config/shortcuts/picture": {
"title": "$:/config/shortcuts/picture",
"text": "ctrl-shift-I"
},
"$:/config/shortcuts/preview": {
"title": "$:/config/shortcuts/preview",
"text": "alt-P"
},
"$:/config/shortcuts/quote": {
"title": "$:/config/shortcuts/quote",
"text": "ctrl-Q"
},
"$:/config/shortcuts/save-tiddler": {
"title": "$:/config/shortcuts/save-tiddler",
"text": "ctrl+enter"
},
"$:/config/shortcuts/stamp": {
"title": "$:/config/shortcuts/stamp",
"text": "ctrl-S"
},
"$:/config/shortcuts/strikethrough": {
"title": "$:/config/shortcuts/strikethrough",
"text": "ctrl-T"
},
"$:/config/shortcuts/subscript": {
"title": "$:/config/shortcuts/subscript",
"text": "ctrl-shift-B"
},
"$:/config/shortcuts/superscript": {
"title": "$:/config/shortcuts/superscript",
"text": "ctrl-shift-P"
},
"$:/config/shortcuts/toggle-sidebar": {
"title": "$:/config/shortcuts/toggle-sidebar",
"text": "alt-shift-S"
},
"$:/config/shortcuts/transcludify": {
"title": "$:/config/shortcuts/transcludify",
"text": "alt-shift-T"
},
"$:/config/ui/EditTemplate": {
"title": "$:/config/ui/EditTemplate",
"text": "$:/core/ui/EditTemplate"
},
"$:/config/ui/ViewTemplate": {
"title": "$:/config/ui/ViewTemplate",
"text": "$:/core/ui/ViewTemplate"
},
"$:/config/WikiParserRules/Inline/wikilink": {
"title": "$:/config/WikiParserRules/Inline/wikilink",
"text": "enable"
},
"$:/snippets/currpalettepreview": {
"title": "$:/snippets/currpalettepreview",
"text": "\\define swatchStyle()\nbackground-color: $(swatchColour)$;\n\\end\n\\define swatch()\n<$set name=\"swatchColour\" value={{##$(colour)$}}\n><div class=\"tc-swatch\" style=<<swatchStyle>> title=<<colour>>/></$set>\n\\end\n<div class=\"tc-swatches-horiz\"><$list filter=\"\nforeground\nbackground\nmuted-foreground\nprimary\npage-background\ntab-background\ntiddler-info-background\n\" variable=\"colour\"><<swatch>></$list></div>"
},
"$:/snippets/download-wiki-button": {
"title": "$:/snippets/download-wiki-button",
"text": "\\define lingo-base() $:/language/ControlPanel/Tools/Download/\n<$button class=\"tc-btn-big-green\">\n<$action-sendmessage $message=\"tm-download-file\" $param=\"$:/core/save/all\" filename=\"index.html\"/>\n<<lingo Full/Caption>> {{$:/core/images/save-button}}\n</$button>"
},
"$:/language": {
"title": "$:/language",
"text": "$:/languages/en-GB"
},
"$:/snippets/languageswitcher": {
"title": "$:/snippets/languageswitcher",
"text": "\\define flag-title()\n$(languagePluginTitle)$/icon\n\\end\n\n<$linkcatcher to=\"$:/language\">\n<div class=\"tc-chooser tc-language-chooser\">\n<$list filter=\"[[$:/languages/en-GB]] [plugin-type[language]sort[description]]\">\n<$set name=\"cls\" filter=\"[all[current]field:title{$:/language}]\" value=\"tc-chooser-item tc-chosen\" emptyValue=\"tc-chooser-item\"><div class=<<cls>>>\n<$link>\n<span class=\"tc-image-button\">\n<$set name=\"languagePluginTitle\" value=<<currentTiddler>>>\n<$transclude subtiddler=<<flag-title>>>\n<$list filter=\"[all[current]field:title[$:/languages/en-GB]]\">\n<$transclude tiddler=\"$:/languages/en-GB/icon\"/>\n</$list>\n</$transclude>\n</$set>\n</span>\n<$view field=\"description\">\n<$view field=\"name\">\n<$view field=\"title\"/>\n</$view>\n</$view>\n</$link>\n</div>\n</$set>\n</$list>\n</div>\n</$linkcatcher>"
},
"$:/core/macros/CSS": {
"title": "$:/core/macros/CSS",
"tags": "$:/tags/Macro",
"text": "\\define colour(name)\n<$transclude tiddler={{$:/palette}} index=\"$name$\"><$transclude tiddler=\"$:/palettes/Vanilla\" index=\"$name$\"/></$transclude>\n\\end\n\n\\define color(name)\n<<colour $name$>>\n\\end\n\n\\define box-shadow(shadow)\n``\n -webkit-box-shadow: $shadow$;\n -moz-box-shadow: $shadow$;\n box-shadow: $shadow$;\n``\n\\end\n\n\\define filter(filter)\n``\n -webkit-filter: $filter$;\n -moz-filter: $filter$;\n filter: $filter$;\n``\n\\end\n\n\\define transition(transition)\n``\n -webkit-transition: $transition$;\n -moz-transition: $transition$;\n transition: $transition$;\n``\n\\end\n\n\\define transform-origin(origin)\n``\n -webkit-transform-origin: $origin$;\n -moz-transform-origin: $origin$;\n transform-origin: $origin$;\n``\n\\end\n\n\\define background-linear-gradient(gradient)\n``\nbackground-image: linear-gradient($gradient$);\nbackground-image: -o-linear-gradient($gradient$);\nbackground-image: -moz-linear-gradient($gradient$);\nbackground-image: -webkit-linear-gradient($gradient$);\nbackground-image: -ms-linear-gradient($gradient$);\n``\n\\end\n\n\\define column-count(columns)\n``\n-moz-column-count: $columns$;\n-webkit-column-count: $columns$;\ncolumn-count: $columns$;\n``\n\\end\n\n\\define datauri(title)\n<$macrocall $name=\"makedatauri\" type={{$title$!!type}} text={{$title$}}/>\n\\end\n\n\\define if-sidebar(text)\n<$reveal state=\"$:/state/sidebar\" type=\"match\" text=\"yes\" default=\"yes\">$text$</$reveal>\n\\end\n\n\\define if-no-sidebar(text)\n<$reveal state=\"$:/state/sidebar\" type=\"nomatch\" text=\"yes\" default=\"yes\">$text$</$reveal>\n\\end\n\n\\define if-background-attachment(text)\n<$reveal state=\"$:/themes/tiddlywiki/vanilla/settings/backgroundimage\" type=\"nomatch\" text=\"\">$text$</$reveal>\n\\end\n"
},
"$:/core/macros/colour-picker": {
"title": "$:/core/macros/colour-picker",
"tags": "$:/tags/Macro",
"text": "\\define colour-picker-update-recent()\n<$action-listops\n\t$tiddler=\"$:/config/ColourPicker/Recent\"\n\t$subfilter=\"$(colour-picker-value)$ [list[$:/config/ColourPicker/Recent]remove[$(colour-picker-value)$]] +[limit[8]]\"\n/>\n\\end\n\n\\define colour-picker-inner(actions)\n<$button tag=\"a\" tooltip=\"\"\"$(colour-picker-value)$\"\"\">\n\n$(colour-picker-update-recent)$\n\n$actions$\n\n<div style=\"background-color: $(colour-picker-value)$; width: 100%; height: 100%; border-radius: 50%;\"/>\n\n</$button>\n\\end\n\n\\define colour-picker-recent-inner(actions)\n<$set name=\"colour-picker-value\" value=\"$(recentColour)$\">\n<$macrocall $name=\"colour-picker-inner\" actions=\"\"\"$actions$\"\"\"/>\n</$set>\n\\end\n\n\\define colour-picker-recent(actions)\n{{$:/language/ColourPicker/Recent}} <$list filter=\"[list[$:/config/ColourPicker/Recent]]\" variable=\"recentColour\">\n<$macrocall $name=\"colour-picker-recent-inner\" actions=\"\"\"$actions$\"\"\"/></$list>\n\\end\n\n\\define colour-picker(actions)\n<div class=\"tc-colour-chooser\">\n\n<$macrocall $name=\"colour-picker-recent\" actions=\"\"\"$actions$\"\"\"/>\n\n---\n\n<$list filter=\"LightPink Pink Crimson LavenderBlush PaleVioletRed HotPink DeepPink MediumVioletRed Orchid Thistle Plum Violet Magenta Fuchsia DarkMagenta Purple MediumOrchid DarkViolet DarkOrchid Indigo BlueViolet MediumPurple MediumSlateBlue SlateBlue DarkSlateBlue Lavender GhostWhite Blue MediumBlue MidnightBlue DarkBlue Navy RoyalBlue CornflowerBlue LightSteelBlue LightSlateGrey SlateGrey DodgerBlue AliceBlue SteelBlue LightSkyBlue SkyBlue DeepSkyBlue LightBlue PowderBlue CadetBlue Azure LightCyan PaleTurquoise Cyan Aqua DarkTurquoise DarkSlateGrey DarkCyan Teal MediumTurquoise LightSeaGreen Turquoise Aquamarine MediumAquamarine MediumSpringGreen MintCream SpringGreen MediumSeaGreen SeaGreen Honeydew LightGreen PaleGreen DarkSeaGreen LimeGreen Lime ForestGreen Green DarkGreen Chartreuse LawnGreen GreenYellow DarkOliveGreen YellowGreen OliveDrab Beige LightGoldenrodYellow Ivory LightYellow Yellow Olive DarkKhaki LemonChiffon PaleGoldenrod Khaki Gold Cornsilk Goldenrod DarkGoldenrod FloralWhite OldLace Wheat Moccasin Orange PapayaWhip BlanchedAlmond NavajoWhite AntiqueWhite Tan BurlyWood Bisque DarkOrange Linen Peru PeachPuff SandyBrown Chocolate SaddleBrown Seashell Sienna LightSalmon Coral OrangeRed DarkSalmon Tomato MistyRose Salmon Snow LightCoral RosyBrown IndianRed Red Brown FireBrick DarkRed Maroon White WhiteSmoke Gainsboro LightGrey Silver DarkGrey Grey DimGrey Black\" variable=\"colour-picker-value\">\n<$macrocall $name=\"colour-picker-inner\" actions=\"\"\"$actions$\"\"\"/>\n</$list>\n\n---\n\n<$edit-text tiddler=\"$:/config/ColourPicker/New\" tag=\"input\" default=\"\" placeholder=\"\"/> \n<$edit-text tiddler=\"$:/config/ColourPicker/New\" type=\"color\" tag=\"input\"/>\n<$set name=\"colour-picker-value\" value={{$:/config/ColourPicker/New}}>\n<$macrocall $name=\"colour-picker-inner\" actions=\"\"\"$actions$\"\"\"/>\n</$set>\n\n</div>\n\n\\end\n"
},
"$:/core/macros/copy-to-clipboard": {
"title": "$:/core/macros/copy-to-clipboard",
"tags": "$:/tags/Macro",
"text": "\\define copy-to-clipboard(src,class:\"tc-btn-invisible\",style)\n<$button class=<<__class__>> style=<<__style__>> message=\"tm-copy-to-clipboard\" param=<<__src__>> tooltip={{$:/language/Buttons/CopyToClipboard/Hint}}>\n{{$:/core/images/copy-clipboard}} <$text text={{$:/language/Buttons/CopyToClipboard/Caption}}/>\n</$button>\n\\end\n\n\\define copy-to-clipboard-above-right(src,class:\"tc-btn-invisible\",style)\n<div style=\"position: relative;\">\n<div style=\"position: absolute; bottom: 0; right: 0;\">\n<$macrocall $name=\"copy-to-clipboard\" src=<<__src__>> class=<<__class__>> style=<<__style__>>/>\n</div>\n</div>\n\\end\n\n"
},
"$:/core/macros/diff": {
"title": "$:/core/macros/diff",
"tags": "$:/tags/Macro",
"text": "\\define compareTiddlerText(sourceTiddlerTitle,sourceSubTiddlerTitle,destTiddlerTitle,destSubTiddlerTitle)\n<$set name=\"source\" tiddler=<<__sourceTiddlerTitle__>> subtiddler=<<__sourceSubTiddlerTitle__>>>\n<$set name=\"dest\" tiddler=<<__destTiddlerTitle__>> subtiddler=<<__destSubTiddlerTitle__>>>\n<$diff-text source=<<source>> dest=<<dest>>/>\n</$set>\n</$set>\n\\end\n\n\\define compareTiddlers(sourceTiddlerTitle,sourceSubTiddlerTitle,destTiddlerTitle,destSubTiddlerTitle,exclude)\n<table class=\"tc-diff-tiddlers\">\n<tbody>\n<$set name=\"sourceFields\" filter=\"[<__sourceTiddlerTitle__>fields[]sort[]]\">\n<$set name=\"destFields\" filter=\"[<__destSubTiddlerTitle__>subtiddlerfields<__destTiddlerTitle__>sort[]]\">\n<$list filter=\"[enlist<sourceFields>] [enlist<destFields>] -[enlist<__exclude__>] +[sort[]]\" variable=\"fieldName\">\n<tr>\n<th>\n<$text text=<<fieldName>>/> \n</th>\n<td>\n<$set name=\"source\" tiddler=<<__sourceTiddlerTitle__>> subtiddler=<<__sourceSubTiddlerTitle__>> field=<<fieldName>>>\n<$set name=\"dest\" tiddler=<<__destTiddlerTitle__>> subtiddler=<<__destSubTiddlerTitle__>> field=<<fieldName>>>\n<$diff-text source=<<source>> dest=<<dest>>>\n</$diff-text>\n</$set>\n</$set>\n</td>\n</tr>\n</$list>\n</$set>\n</$set>\n</tbody>\n</table>\n\\end\n"
},
"$:/core/macros/dumpvariables": {
"title": "$:/core/macros/dumpvariables",
"tags": "$:/tags/Macro",
"text": "\\define dumpvariables()\n<ul>\n<$list filter=\"[variables[]]\" variable=\"varname\">\n<li>\n<strong><code><$text text=<<varname>>/></code></strong>:<br/>\n<$codeblock code={{{ [<varname>getvariable[]] }}}/>\n</li>\n</$list>\n</ul>\n\\end\n"
},
"$:/core/macros/export": {
"title": "$:/core/macros/export",
"tags": "$:/tags/Macro",
"text": "\\define exportButtonFilename(baseFilename)\n$baseFilename$$(extension)$\n\\end\n\n\\define exportButton(exportFilter:\"[!is[system]sort[title]]\",lingoBase,baseFilename:\"tiddlers\")\n<span class=\"tc-popup-keep\"><$button popup=<<qualify \"$:/state/popup/export\">> tooltip={{$lingoBase$Hint}} aria-label={{$lingoBase$Caption}} class=<<tv-config-toolbar-class>> selectedClass=\"tc-selected\">\n<$list filter=\"[<tv-config-toolbar-icons>match[yes]]\">\n{{$:/core/images/export-button}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>match[yes]]\">\n<span class=\"tc-btn-text\"><$text text={{$lingoBase$Caption}}/></span>\n</$list>\n</$button></span><$reveal state=<<qualify \"$:/state/popup/export\">> type=\"popup\" position=\"below\" animate=\"yes\">\n<div class=\"tc-drop-down\">\n<$list filter=\"[all[shadows+tiddlers]tag[$:/tags/Exporter]]\">\n<$set name=\"extension\" value={{!!extension}}>\n<$button class=\"tc-btn-invisible\">\n<$action-sendmessage $message=\"tm-download-file\" $param=<<currentTiddler>> exportFilter=\"\"\"$exportFilter$\"\"\" filename=<<exportButtonFilename \"\"\"$baseFilename$\"\"\">>/>\n<$action-deletetiddler $tiddler=<<qualify \"$:/state/popup/export\">>/>\n<$transclude field=\"description\"/>\n</$button>\n</$set>\n</$list>\n</div>\n</$reveal>\n\\end\n"
},
"$:/core/macros/image-picker": {
"title": "$:/core/macros/image-picker",
"created": "20170715180840889",
"modified": "20170715180914005",
"tags": "$:/tags/Macro",
"type": "text/vnd.tiddlywiki",
"text": "\\define image-picker-thumbnail(actions)\n<$button tag=\"a\" tooltip=\"\"\"$(imageTitle)$\"\"\">\n$actions$\n<$transclude tiddler=<<imageTitle>>/>\n</$button>\n\\end\n\n\\define image-picker-list(filter,actions)\n<$list filter=\"\"\"$filter$\"\"\" variable=\"imageTitle\">\n<$macrocall $name=\"image-picker-thumbnail\" actions=\"\"\"$actions$\"\"\"/>\n</$list>\n\\end\n\n\\define image-picker(actions,filter:\"[all[shadows+tiddlers]is[image]] -[type[application/pdf]] +[!has[draft.of]$subfilter$sort[title]]\",subfilter:\"\")\n<div class=\"tc-image-chooser\">\n<$vars state-system=<<qualify \"$:/state/image-picker/system\">>>\n<$checkbox tiddler=<<state-system>> field=\"text\" checked=\"show\" unchecked=\"hide\" default=\"hide\">\n{{$:/language/SystemTiddlers/Include/Prompt}}\n</$checkbox>\n<$reveal state=<<state-system>> type=\"match\" text=\"hide\" default=\"hide\" tag=\"div\">\n<$macrocall $name=\"image-picker-list\" filter=\"\"\"$filter$ +[!is[system]]\"\"\" actions=\"\"\"$actions$\"\"\"/>\n</$reveal>\n<$reveal state=<<state-system>> type=\"nomatch\" text=\"hide\" default=\"hide\" tag=\"div\">\n<$macrocall $name=\"image-picker-list\" filter=\"\"\"$filter$\"\"\" actions=\"\"\"$actions$\"\"\"/>\n</$reveal>\n</$vars>\n</div>\n\\end\n\n\\define image-picker-include-tagged-images(actions)\n<$macrocall $name=\"image-picker\" filter=\"[all[shadows+tiddlers]is[image]] [all[shadows+tiddlers]tag[$:/tags/Image]] -[type[application/pdf]] +[!has[draft.of]sort[title]]\" actions=\"\"\"$actions$\"\"\"/>\n\\end\n"
},
"$:/core/macros/lingo": {
"title": "$:/core/macros/lingo",
"tags": "$:/tags/Macro",
"text": "\\define lingo-base()\n$:/language/\n\\end\n\n\\define lingo(title)\n{{$(lingo-base)$$title$}}\n\\end\n"
},
"$:/core/macros/list": {
"title": "$:/core/macros/list",
"tags": "$:/tags/Macro",
"text": "\\define list-links(filter,type:\"ul\",subtype:\"li\",class:\"\",emptyMessage)\n\\whitespace trim\n<$type$ class=\"$class$\">\n<$list filter=\"$filter$\" emptyMessage=<<__emptyMessage__>>>\n<$subtype$>\n<$link to={{!!title}}>\n<$transclude field=\"caption\">\n<$view field=\"title\"/>\n</$transclude>\n</$link>\n</$subtype$>\n</$list>\n</$type$>\n\\end\n\n\\define list-links-draggable-drop-actions()\n<$action-listops $tiddler=<<targetTiddler>> $field=<<targetField>> $subfilter=\"+[insertbefore:currentTiddler<actionTiddler>]\"/>\n\\end\n\n\\define list-links-draggable(tiddler,field:\"list\",type:\"ul\",subtype:\"li\",class:\"\",itemTemplate)\n\\whitespace trim\n<span class=\"tc-links-draggable-list\">\n<$vars targetTiddler=\"\"\"$tiddler$\"\"\" targetField=\"\"\"$field$\"\"\">\n<$type$ class=\"$class$\">\n<$list filter=\"[list[$tiddler$!!$field$]]\">\n<$droppable actions=<<list-links-draggable-drop-actions>> tag=\"\"\"$subtype$\"\"\">\n<div class=\"tc-droppable-placeholder\"/>\n<div>\n<$transclude tiddler=\"\"\"$itemTemplate$\"\"\">\n<$link to={{!!title}}>\n<$transclude field=\"caption\">\n<$view field=\"title\"/>\n</$transclude>\n</$link>\n</$transclude>\n</div>\n</$droppable>\n</$list>\n</$type$>\n<$tiddler tiddler=\"\">\n<$droppable actions=<<list-links-draggable-drop-actions>> tag=\"div\">\n<div class=\"tc-droppable-placeholder\">\n \n</div>\n<div style=\"height:0.5em;\"/>\n</$droppable>\n</$tiddler>\n</$vars>\n</span>\n\\end\n\n\\define list-tagged-draggable-drop-actions(tag)\n<!-- Save the current ordering of the tiddlers with this tag -->\n<$set name=\"order\" filter=\"[<__tag__>tagging[]]\">\n<!-- Remove any list-after or list-before fields from the tiddlers with this tag -->\n<$list filter=\"[<__tag__>tagging[]]\">\n<$action-deletefield $field=\"list-before\"/>\n<$action-deletefield $field=\"list-after\"/>\n</$list>\n<!-- Save the new order to the Tag Tiddler -->\n<$action-listops $tiddler=<<__tag__>> $field=\"list\" $filter=\"+[enlist<order>] +[insertbefore:currentTiddler<actionTiddler>]\"/>\n<!-- Make sure the newly added item has the right tag -->\n<!-- Removing this line makes dragging tags within the dropdown work as intended -->\n<!--<$action-listops $tiddler=<<actionTiddler>> $tags=<<__tag__>>/>-->\n<!-- Using the following 5 lines as replacement makes dragging titles from outside into the dropdown apply the tag -->\n<$list filter=\"[<actionTiddler>!contains:tags<__tag__>]\">\n<$fieldmangler tiddler=<<actionTiddler>>>\n<$action-sendmessage $message=\"tm-add-tag\" $param=<<__tag__>>/>\n</$fieldmangler>\n</$list>\n</$set>\n\\end\n\n\\define list-tagged-draggable(tag,subFilter,emptyMessage,itemTemplate,elementTag:\"div\")\n\\whitespace trim\n<span class=\"tc-tagged-draggable-list\">\n<$set name=\"tag\" value=<<__tag__>>>\n<$list filter=\"[<__tag__>tagging[]$subFilter$]\" emptyMessage=<<__emptyMessage__>>>\n<$elementTag$ class=\"tc-menu-list-item\">\n<$droppable actions=\"\"\"<$macrocall $name=\"list-tagged-draggable-drop-actions\" tag=<<__tag__>>/>\"\"\">\n<$elementTag$ class=\"tc-droppable-placeholder\"/>\n<$elementTag$>\n<$transclude tiddler=\"\"\"$itemTemplate$\"\"\">\n<$link to={{!!title}}>\n<$view field=\"title\"/>\n</$link>\n</$transclude>\n</$elementTag$>\n</$droppable>\n</$elementTag$>\n</$list>\n<$tiddler tiddler=\"\">\n<$droppable actions=\"\"\"<$macrocall $name=\"list-tagged-draggable-drop-actions\" tag=<<__tag__>>/>\"\"\">\n<$elementTag$ class=\"tc-droppable-placeholder\"/>\n<$elementTag$ style=\"height:0.5em;\">\n</$elementTag$>\n</$droppable>\n</$tiddler>\n</$set>\n</span>\n\\end\n"
},
"$:/core/macros/tabs": {
"title": "$:/core/macros/tabs",
"tags": "$:/tags/Macro",
"text": "\\define tabs(tabsList,default,state:\"$:/state/tab\",class,template,buttonTemplate,retain)\n<div class=\"tc-tab-set $class$\">\n<div class=\"tc-tab-buttons $class$\">\n<$list filter=\"$tabsList$\" variable=\"currentTab\" storyview=\"pop\"><$set name=\"save-currentTiddler\" value=<<currentTiddler>>><$tiddler tiddler=<<currentTab>>><$button set=<<qualify \"$state$\">> setTo=<<currentTab>> default=\"$default$\" selectedClass=\"tc-tab-selected\" tooltip={{!!tooltip}}>\n<$tiddler tiddler=<<save-currentTiddler>>>\n<$set name=\"tv-wikilinks\" value=\"no\">\n<$transclude tiddler=\"$buttonTemplate$\" mode=\"inline\">\n<$transclude tiddler=<<currentTab>> field=\"caption\">\n<$macrocall $name=\"currentTab\" $type=\"text/plain\" $output=\"text/plain\"/>\n</$transclude>\n</$transclude>\n</$set></$tiddler></$button></$tiddler></$set></$list>\n</div>\n<div class=\"tc-tab-divider $class$\"/>\n<div class=\"tc-tab-content $class$\">\n<$list filter=\"$tabsList$\" variable=\"currentTab\">\n\n<$reveal type=\"match\" state=<<qualify \"$state$\">> text=<<currentTab>> default=\"$default$\" retain=\"\"\"$retain$\"\"\">\n\n<$transclude tiddler=\"$template$\" mode=\"block\">\n\n<$transclude tiddler=<<currentTab>> mode=\"block\"/>\n\n</$transclude>\n\n</$reveal>\n\n</$list>\n</div>\n</div>\n\\end\n"
},
"$:/core/macros/tag-picker": {
"title": "$:/core/macros/tag-picker",
"tags": "$:/tags/Macro",
"text": "\\define add-tag-actions()\n<$action-sendmessage $message=\"tm-add-tag\" $param={{$:/temp/NewTagName}}/>\n<$action-deletetiddler $tiddler=\"$:/temp/NewTagName\"/>\n\\end\n\n\\define tag-button()\n<$button class=\"tc-btn-invisible\" tag=\"a\">\n$(actions)$\n<$action-deletetiddler $tiddler=\"$:/temp/NewTagName\"/>\n<$macrocall $name=\"tag-pill\" tag=<<tag>>/>\n</$button>\n\\end\n\n\\define tag-picker(actions)\n<$set name=\"actions\" value=\"\"\"$actions$\"\"\">\n<div class=\"tc-edit-add-tag\">\n<span class=\"tc-add-tag-name\">\n<$keyboard key=\"ENTER\" actions=<<add-tag-actions>>>\n<$edit-text tiddler=\"$:/temp/NewTagName\" tag=\"input\" default=\"\" placeholder={{$:/language/EditTemplate/Tags/Add/Placeholder}} focusPopup=<<qualify \"$:/state/popup/tags-auto-complete\">> class=\"tc-edit-texteditor tc-popup-handle\" tabindex=<<tabIndex>>/>\n</$keyboard>\n</span> <$button popup=<<qualify \"$:/state/popup/tags-auto-complete\">> class=\"tc-btn-invisible\" tooltip={{$:/language/EditTemplate/Tags/Dropdown/Hint}} aria-label={{$:/language/EditTemplate/Tags/Dropdown/Caption}}>{{$:/core/images/down-arrow}}</$button> <span class=\"tc-add-tag-button\">\n<$set name=\"tag\" value={{$:/temp/NewTagName}}>\n<$button set=\"$:/temp/NewTagName\" setTo=\"\" class=\"\">\n$actions$\n<$action-deletetiddler $tiddler=\"$:/temp/NewTagName\"/>\n{{$:/language/EditTemplate/Tags/Add/Button}}\n</$button>\n</$set>\n</span>\n</div>\n<div class=\"tc-block-dropdown-wrapper\">\n<$reveal state=<<qualify \"$:/state/popup/tags-auto-complete\">> type=\"nomatch\" text=\"\" default=\"\">\n<div class=\"tc-block-dropdown\">\n<$list filter=\"[{$:/temp/NewTagName}minlength{$:/config/Tags/MinLength}limit[1]]\" emptyMessage=\"\"\"<div class=\"tc-search-results\">{{$:/language/Search/Search/TooShort}}</div>\"\"\" variable=\"listItem\">\n<$list filter=\"[tags[]!is[system]search:title{$:/temp/NewTagName}sort[]]\" variable=\"tag\">\n<<tag-button>>\n</$list></$list>\n<hr>\n<$list filter=\"[{$:/temp/NewTagName}minlength{$:/config/Tags/MinLength}limit[1]]\" emptyMessage=\"\"\"<div class=\"tc-search-results\">{{$:/language/Search/Search/TooShort}}</div>\"\"\" variable=\"listItem\">\n<$list filter=\"[tags[]is[system]search:title{$:/temp/NewTagName}sort[]]\" variable=\"tag\">\n<<tag-button>>\n</$list></$list>\n</div>\n</$reveal>\n</div>\n</$set>\n\\end\n"
},
"$:/core/macros/tag": {
"title": "$:/core/macros/tag",
"tags": "$:/tags/Macro",
"text": "\\define tag-pill-styles()\nbackground-color:$(backgroundColor)$;\nfill:$(foregroundColor)$;\ncolor:$(foregroundColor)$;\n\\end\n\n\\define tag-pill-inner(tag,icon,colour,fallbackTarget,colourA,colourB,element-tag,element-attributes,actions)\n<$vars foregroundColor=<<contrastcolour target:\"\"\"$colour$\"\"\" fallbackTarget:\"\"\"$fallbackTarget$\"\"\" colourA:\"\"\"$colourA$\"\"\" colourB:\"\"\"$colourB$\"\"\">> backgroundColor=\"\"\"$colour$\"\"\">\n<$element-tag$ $element-attributes$ class=\"tc-tag-label tc-btn-invisible\" style=<<tag-pill-styles>>>\n$actions$<$transclude tiddler=\"\"\"$icon$\"\"\"/> <$view tiddler=<<__tag__>> field=\"title\" format=\"text\" />\n</$element-tag$>\n</$vars>\n\\end\n\n\\define tag-pill-body(tag,icon,colour,palette,element-tag,element-attributes,actions)\n<$macrocall $name=\"tag-pill-inner\" tag=<<__tag__>> icon=\"\"\"$icon$\"\"\" colour=\"\"\"$colour$\"\"\" fallbackTarget={{$palette$##tag-background}} colourA={{$palette$##foreground}} colourB={{$palette$##background}} element-tag=\"\"\"$element-tag$\"\"\" element-attributes=\"\"\"$element-attributes$\"\"\" actions=\"\"\"$actions$\"\"\"/>\n\\end\n\n\\define tag-pill(tag,element-tag:\"span\",element-attributes:\"\",actions:\"\")\n<span class=\"tc-tag-list-item\">\n<$macrocall $name=\"tag-pill-body\" tag=<<__tag__>> icon={{{ [<__tag__>get[icon]] }}} colour={{{ [<__tag__>get[color]] }}} palette={{$:/palette}} element-tag=\"\"\"$element-tag$\"\"\" element-attributes=\"\"\"$element-attributes$\"\"\" actions=\"\"\"$actions$\"\"\"/>\n</span>\n\\end\n\n\\define tag(tag)\n{{$tag$||$:/core/ui/TagTemplate}}\n\\end\n"
},
"$:/core/macros/thumbnails": {
"title": "$:/core/macros/thumbnails",
"tags": "$:/tags/Macro",
"text": "\\define thumbnail(link,icon,color,background-color,image,caption,width:\"280\",height:\"157\")\n<$link to=\"\"\"$link$\"\"\"><div class=\"tc-thumbnail-wrapper\">\n<div class=\"tc-thumbnail-image\" style=\"width:$width$px;height:$height$px;\"><$reveal type=\"nomatch\" text=\"\" default=\"\"\"$image$\"\"\" tag=\"div\" style=\"width:$width$px;height:$height$px;\">\n[img[$image$]]\n</$reveal><$reveal type=\"match\" text=\"\" default=\"\"\"$image$\"\"\" tag=\"div\" class=\"tc-thumbnail-background\" style=\"width:$width$px;height:$height$px;background-color:$background-color$;\"></$reveal></div><div class=\"tc-thumbnail-icon\" style=\"fill:$color$;color:$color$;\">\n$icon$\n</div><div class=\"tc-thumbnail-caption\">\n$caption$\n</div>\n</div></$link>\n\\end\n\n\\define thumbnail-right(link,icon,color,background-color,image,caption,width:\"280\",height:\"157\")\n<div class=\"tc-thumbnail-right-wrapper\"><<thumbnail \"\"\"$link$\"\"\" \"\"\"$icon$\"\"\" \"\"\"$color$\"\"\" \"\"\"$background-color$\"\"\" \"\"\"$image$\"\"\" \"\"\"$caption$\"\"\" \"\"\"$width$\"\"\" \"\"\"$height$\"\"\">></div>\n\\end\n\n\\define list-thumbnails(filter,width:\"280\",height:\"157\")\n<$list filter=\"\"\"$filter$\"\"\"><$macrocall $name=\"thumbnail\" link={{!!link}} icon={{!!icon}} color={{!!color}} background-color={{!!background-color}} image={{!!image}} caption={{!!caption}} width=\"\"\"$width$\"\"\" height=\"\"\"$height$\"\"\"/></$list>\n\\end\n"
},
"$:/core/macros/timeline": {
"title": "$:/core/macros/timeline",
"created": "20141212105914482",
"modified": "20141212110330815",
"tags": "$:/tags/Macro",
"text": "\\define timeline-title()\n<!-- Override this macro with a global macro \n of the same name if you need to change \n how titles are displayed on the timeline \n -->\n<$view field=\"title\"/>\n\\end\n\\define timeline(limit:\"100\",format:\"DDth MMM YYYY\",subfilter:\"\",dateField:\"modified\")\n<div class=\"tc-timeline\">\n<$list filter=\"[!is[system]$subfilter$has[$dateField$]!sort[$dateField$]limit[$limit$]eachday[$dateField$]]\">\n<div class=\"tc-menu-list-item\">\n<$view field=\"$dateField$\" format=\"date\" template=\"$format$\"/>\n<$list filter=\"[sameday:$dateField${!!$dateField$}!is[system]$subfilter$!sort[$dateField$]]\">\n<div class=\"tc-menu-list-subitem\">\n<$link to={{!!title}}>\n<<timeline-title>>\n</$link>\n</div>\n</$list>\n</div>\n</$list>\n</div>\n\\end\n"
},
"$:/core/macros/toc": {
"title": "$:/core/macros/toc",
"tags": "$:/tags/Macro",
"text": "\\define toc-caption()\n<$set name=\"tv-wikilinks\" value=\"no\">\n <$transclude field=\"caption\">\n <$view field=\"title\"/>\n </$transclude>\n</$set>\n\\end\n\n\\define toc-body(tag,sort:\"\",itemClassFilter,exclude,path)\n<ol class=\"tc-toc\">\n <$list filter=\"\"\"[all[shadows+tiddlers]tag<__tag__>!has[draft.of]$sort$] -[<__tag__>] -[enlist<__exclude__>]\"\"\">\n <$vars item=<<currentTiddler>> path={{{ [<__path__>addsuffix[/]addsuffix<__tag__>] }}}>\n <$set name=\"excluded\" filter=\"\"\"[enlist<__exclude__>] [<__tag__>]\"\"\">\n <$set name=\"toc-item-class\" filter=<<__itemClassFilter__>> emptyValue=\"toc-item-selected\" value=\"toc-item\">\n <li class=<<toc-item-class>>>\n <$list filter=\"[all[current]toc-link[no]]\" emptyMessage=\"<$link><$view field='caption'><$view field='title'/></$view></$link>\">\n <<toc-caption>>\n </$list>\n <$macrocall $name=\"toc-body\" tag=<<item>> sort=<<__sort__>> itemClassFilter=<<__itemClassFilter__>> exclude=<<excluded>> path=<<path>>/>\n </li>\n </$set>\n </$set>\n </$vars>\n </$list>\n</ol>\n\\end\n\n\\define toc(tag,sort:\"\",itemClassFilter:\" \")\n<$macrocall $name=\"toc-body\" tag=<<__tag__>> sort=<<__sort__>> itemClassFilter=<<__itemClassFilter__>> />\n\\end\n\n\\define toc-linked-expandable-body(tag,sort:\"\",itemClassFilter,exclude,path)\n<!-- helper function -->\n<$qualify name=\"toc-state\" title={{{ [[$:/state/toc]addsuffix<__path__>addsuffix[-]addsuffix<currentTiddler>] }}}>\n <$set name=\"toc-item-class\" filter=<<__itemClassFilter__>> emptyValue=\"toc-item-selected\" value=\"toc-item\">\n <li class=<<toc-item-class>>>\n <$link>\n <$reveal type=\"nomatch\" stateTitle=<<toc-state>> text=\"open\">\n <$button setTitle=<<toc-state>> setTo=\"open\" class=\"tc-btn-invisible tc-popup-keep\">\n {{$:/core/images/right-arrow}}\n </$button>\n </$reveal>\n <$reveal type=\"match\" stateTitle=<<toc-state>> text=\"open\">\n <$button setTitle=<<toc-state>> setTo=\"close\" class=\"tc-btn-invisible tc-popup-keep\">\n {{$:/core/images/down-arrow}}\n </$button>\n </$reveal>\n <<toc-caption>>\n </$link>\n <$reveal type=\"match\" stateTitle=<<toc-state>> text=\"open\">\n <$macrocall $name=\"toc-expandable\" tag=<<currentTiddler>> sort=<<__sort__>> itemClassFilter=<<__itemClassFilter__>> exclude=<<__exclude__>> path=<<__path__>>/>\n </$reveal>\n </li>\n </$set>\n</$qualify>\n\\end\n\n\\define toc-unlinked-expandable-body(tag,sort:\"\",itemClassFilter,exclude,path)\n<!-- helper function -->\n<$qualify name=\"toc-state\" title={{{ [[$:/state/toc]addsuffix<__path__>addsuffix[-]addsuffix<currentTiddler>] }}}>\n <$set name=\"toc-item-class\" filter=<<__itemClassFilter__>> emptyValue=\"toc-item-selected\" value=\"toc-item\">\n <li class=<<toc-item-class>>>\n <$reveal type=\"nomatch\" stateTitle=<<toc-state>> text=\"open\">\n <$button setTitle=<<toc-state>> setTo=\"open\" class=\"tc-btn-invisible tc-popup-keep\">\n {{$:/core/images/right-arrow}}\n <<toc-caption>>\n </$button>\n </$reveal>\n <$reveal type=\"match\" stateTitle=<<toc-state>> text=\"open\">\n <$button setTitle=<<toc-state>> setTo=\"close\" class=\"tc-btn-invisible tc-popup-keep\">\n {{$:/core/images/down-arrow}}\n <<toc-caption>>\n </$button>\n </$reveal>\n <$reveal type=\"match\" stateTitle=<<toc-state>> text=\"open\">\n <$macrocall $name=\"toc-expandable\" tag=<<currentTiddler>> sort=<<__sort__>> itemClassFilter=<<__itemClassFilter__>> exclude=<<__exclude__>> path=<<__path__>>/>\n </$reveal>\n </li>\n </$set>\n</$qualify>\n\\end\n\n\\define toc-expandable-empty-message()\n<$macrocall $name=\"toc-linked-expandable-body\" tag=<<tag>> sort=<<sort>> itemClassFilter=<<itemClassFilter>> exclude=<<excluded>> path=<<path>>/>\n\\end\n\n\\define toc-expandable(tag,sort:\"\",itemClassFilter:\" \",exclude,path)\n<$vars tag=<<__tag__>> sort=<<__sort__>> itemClassFilter=<<__itemClassFilter__>> path={{{ [<__path__>addsuffix[/]addsuffix<__tag__>] }}}>\n <$set name=\"excluded\" filter=\"\"\"[enlist<__exclude__>] [<__tag__>]\"\"\">\n <ol class=\"tc-toc toc-expandable\">\n <$list filter=\"\"\"[all[shadows+tiddlers]tag<__tag__>!has[draft.of]$sort$] -[<__tag__>] -[enlist<__exclude__>]\"\"\">\n <$list filter=\"[all[current]toc-link[no]]\" emptyMessage=<<toc-expandable-empty-message>> >\n <$macrocall $name=\"toc-unlinked-expandable-body\" tag=<<__tag__>> sort=<<__sort__>> itemClassFilter=\"\"\"itemClassFilter\"\"\" exclude=<<excluded>> path=<<path>> />\n </$list>\n </$list>\n </ol>\n </$set>\n</$vars>\n\\end\n\n\\define toc-linked-selective-expandable-body(tag,sort:\"\",itemClassFilter,exclude,path)\n<$qualify name=\"toc-state\" title={{{ [[$:/state/toc]addsuffix<__path__>addsuffix[-]addsuffix<currentTiddler>] }}}>\n <$set name=\"toc-item-class\" filter=<<__itemClassFilter__>> emptyValue=\"toc-item-selected\" value=\"toc-item\" >\n <li class=<<toc-item-class>>>\n <$link>\n <$list filter=\"[all[current]tagging[]limit[1]]\" variable=\"ignore\" emptyMessage=\"<$button class='tc-btn-invisible'>{{$:/core/images/blank}}</$button>\">\n <$reveal type=\"nomatch\" stateTitle=<<toc-state>> text=\"open\">\n <$button setTitle=<<toc-state>> setTo=\"open\" class=\"tc-btn-invisible tc-popup-keep\">\n {{$:/core/images/right-arrow}}\n </$button>\n </$reveal>\n <$reveal type=\"match\" stateTitle=<<toc-state>> text=\"open\">\n <$button setTitle=<<toc-state>> setTo=\"close\" class=\"tc-btn-invisible tc-popup-keep\">\n {{$:/core/images/down-arrow}}\n </$button>\n </$reveal>\n </$list>\n <<toc-caption>>\n </$link>\n <$reveal type=\"match\" stateTitle=<<toc-state>> text=\"open\">\n <$macrocall $name=\"toc-selective-expandable\" tag=<<currentTiddler>> sort=<<__sort__>> itemClassFilter=<<__itemClassFilter__>> exclude=<<__exclude__>> path=<<__path__>>/>\n </$reveal>\n </li>\n </$set>\n</$qualify>\n\\end\n\n\\define toc-unlinked-selective-expandable-body(tag,sort:\"\",itemClassFilter,exclude,path)\n<$qualify name=\"toc-state\" title={{{ [[$:/state/toc]addsuffix<__path__>addsuffix[-]addsuffix<currentTiddler>] }}}>\n <$set name=\"toc-item-class\" filter=<<__itemClassFilter__>> emptyValue=\"toc-item-selected\" value=\"toc-item\">\n <li class=<<toc-item-class>>>\n <$list filter=\"[all[current]tagging[]limit[1]]\" variable=\"ignore\" emptyMessage=\"<$button class='tc-btn-invisible'>{{$:/core/images/blank}}</$button> <$view field='caption'><$view field='title'/></$view>\">\n <$reveal type=\"nomatch\" stateTitle=<<toc-state>> text=\"open\">\n <$button setTitle=<<toc-state>> setTo=\"open\" class=\"tc-btn-invisible tc-popup-keep\">\n {{$:/core/images/right-arrow}}\n <<toc-caption>>\n </$button>\n </$reveal>\n <$reveal type=\"match\" stateTitle=<<toc-state>> text=\"open\">\n <$button setTitle=<<toc-state>> setTo=\"close\" class=\"tc-btn-invisible tc-popup-keep\">\n {{$:/core/images/down-arrow}}\n <<toc-caption>>\n </$button>\n </$reveal>\n </$list>\n <$reveal type=\"match\" stateTitle=<<toc-state>> text=\"open\">\n <$macrocall $name=\"toc-selective-expandable\" tag=<<currentTiddler>> sort=<<__sort__>> itemClassFilter=<<__itemClassFilter__>> exclude=<<__exclude__>> path=<<__path__>>/>\n </$reveal>\n </li>\n </$set>\n</$qualify>\n\\end\n\n\\define toc-selective-expandable-empty-message()\n<$macrocall $name=\"toc-linked-selective-expandable-body\" tag=<<tag>> sort=<<sort>> itemClassFilter=<<itemClassFilter>> exclude=<<excluded>> path=<<path>>/>\n\\end\n\n\\define toc-selective-expandable(tag,sort:\"\",itemClassFilter,exclude,path)\n<$vars tag=<<__tag__>> sort=<<__sort__>> itemClassFilter=<<__itemClassFilter__>> path={{{ [<__path__>addsuffix[/]addsuffix<__tag__>] }}}>\n <$set name=\"excluded\" filter=\"\"\"[enlist<__exclude__>] [<__tag__>]\"\"\">\n <ol class=\"tc-toc toc-selective-expandable\">\n <$list filter=\"\"\"[all[shadows+tiddlers]tag<__tag__>!has[draft.of]$sort$] -[<__tag__>] -[enlist<__exclude__>]\"\"\">\n <$list filter=\"[all[current]toc-link[no]]\" variable=\"ignore\" emptyMessage=<<toc-selective-expandable-empty-message>> >\n <$macrocall $name=\"toc-unlinked-selective-expandable-body\" tag=<<__tag__>> sort=<<__sort__>> itemClassFilter=<<__itemClassFilter__>> exclude=<<excluded>> path=<<path>>/>\n </$list>\n </$list>\n </ol>\n </$set>\n</$vars>\n\\end\n\n\\define toc-tabbed-external-nav(tag,sort:\"\",selectedTiddler:\"$:/temp/toc/selectedTiddler\",unselectedText,missingText,template:\"\")\n<$tiddler tiddler={{{ [<__selectedTiddler__>get[text]] }}}>\n <div class=\"tc-tabbed-table-of-contents\">\n <$linkcatcher to=<<__selectedTiddler__>>>\n <div class=\"tc-table-of-contents\">\n <$macrocall $name=\"toc-selective-expandable\" tag=<<__tag__>> sort=<<__sort__>> itemClassFilter=\"[all[current]] -[<__selectedTiddler__>get[text]]\"/>\n </div>\n </$linkcatcher>\n <div class=\"tc-tabbed-table-of-contents-content\">\n <$reveal stateTitle=<<__selectedTiddler__>> type=\"nomatch\" text=\"\">\n <$transclude mode=\"block\" tiddler=<<__template__>>>\n <h1><<toc-caption>></h1>\n <$transclude mode=\"block\">$missingText$</$transclude>\n </$transclude>\n </$reveal>\n <$reveal stateTitle=<<__selectedTiddler__>> type=\"match\" text=\"\">\n $unselectedText$\n </$reveal>\n </div>\n </div>\n</$tiddler>\n\\end\n\n\\define toc-tabbed-internal-nav(tag,sort:\"\",selectedTiddler:\"$:/temp/toc/selectedTiddler\",unselectedText,missingText,template:\"\")\n<$linkcatcher to=<<__selectedTiddler__>>>\n <$macrocall $name=\"toc-tabbed-external-nav\" tag=<<__tag__>> sort=<<__sort__>> selectedTiddler=<<__selectedTiddler__>> unselectedText=<<__unselectedText__>> missingText=<<__missingText__>> template=<<__template__>>/>\n</$linkcatcher>\n\\end\n\n"
},
"$:/core/macros/translink": {
"title": "$:/core/macros/translink",
"tags": "$:/tags/Macro",
"text": "\\define translink(title,mode:\"block\")\n<div style=\"border:1px solid #ccc; padding: 0.5em; background: black; foreground; white;\">\n<$link to=\"\"\"$title$\"\"\">\n<$text text=\"\"\"$title$\"\"\"/>\n</$link>\n<div style=\"border:1px solid #ccc; padding: 0.5em; background: white; foreground; black;\">\n<$transclude tiddler=\"\"\"$title$\"\"\" mode=\"$mode$\">\n\"<$text text=\"\"\"$title$\"\"\"/>\" is missing\n</$transclude>\n</div>\n</div>\n\\end\n"
},
"$:/core/macros/tree": {
"title": "$:/core/macros/tree",
"tags": "$:/tags/Macro",
"text": "\\define leaf-link(full-title,chunk,separator: \"/\")\n<$link to=<<__full-title__>>><$text text=<<__chunk__>>/></$link>\n\\end\n\n\\define leaf-node(prefix,chunk)\n<li>\n<$list filter=\"[<__prefix__>addsuffix<__chunk__>is[shadow]] [<__prefix__>addsuffix<__chunk__>is[tiddler]]\" variable=\"full-title\">\n<$list filter=\"[<full-title>removeprefix<__prefix__>]\" variable=\"chunk\">\n<span>{{$:/core/images/file}}</span> <$macrocall $name=\"leaf-link\" full-title=<<full-title>> chunk=<<chunk>>/>\n</$list>\n</$list>\n</li>\n\\end\n\n\\define branch-node(prefix,chunk,separator: \"/\")\n<li>\n<$set name=\"reveal-state\" value={{{ [[$:/state/tree/]addsuffix<__prefix__>addsuffix<__chunk__>] }}}>\n<$reveal type=\"nomatch\" stateTitle=<<reveal-state>> text=\"show\">\n<$button setTitle=<<reveal-state>> setTo=\"show\" class=\"tc-btn-invisible\">\n{{$:/core/images/folder}} <$text text=<<__chunk__>>/>\n</$button>\n</$reveal>\n<$reveal type=\"match\" stateTitle=<<reveal-state>> text=\"show\">\n<$button setTitle=<<reveal-state>> setTo=\"hide\" class=\"tc-btn-invisible\">\n{{$:/core/images/folder}} <$text text=<<__chunk__>>/>\n</$button>\n</$reveal>\n<span>(<$count filter=\"[all[shadows+tiddlers]removeprefix<__prefix__>removeprefix<__chunk__>] -[<__prefix__>addsuffix<__chunk__>]\"/>)</span>\n<$reveal type=\"match\" stateTitle=<<reveal-state>> text=\"show\">\n<$macrocall $name=\"tree-node\" prefix={{{ [<__prefix__>addsuffix<__chunk__>] }}} separator=<<__separator__>>/>\n</$reveal>\n</$set>\n</li>\n\\end\n\n\\define tree-node(prefix,separator: \"/\")\n<ol>\n<$list filter=\"[all[shadows+tiddlers]removeprefix<__prefix__>splitbefore<__separator__>sort[]!suffix<__separator__>]\" variable=\"chunk\">\n<$macrocall $name=\"leaf-node\" prefix=<<__prefix__>> chunk=<<chunk>> separator=<<__separator__>>/>\n</$list>\n<$list filter=\"[all[shadows+tiddlers]removeprefix<__prefix__>splitbefore<__separator__>sort[]suffix<__separator__>]\" variable=\"chunk\">\n<$macrocall $name=\"branch-node\" prefix=<<__prefix__>> chunk=<<chunk>> separator=<<__separator__>>/>\n</$list>\n</ol>\n\\end\n\n\\define tree(prefix: \"$:/\",separator: \"/\")\n<div class=\"tc-tree\">\n<span><$text text=<<__prefix__>>/></span>\n<div>\n<$macrocall $name=\"tree-node\" prefix=<<__prefix__>> separator=<<__separator__>>/>\n</div>\n</div>\n\\end\n"
},
"$:/core/macros/utils": {
"title": "$:/core/macros/utils",
"text": "\\define colour(colour)\n$colour$\n\\end\n"
},
"$:/snippets/minilanguageswitcher": {
"title": "$:/snippets/minilanguageswitcher",
"text": "<$select tiddler=\"$:/language\">\n<$list filter=\"[[$:/languages/en-GB]] [plugin-type[language]sort[title]]\">\n<option value=<<currentTiddler>>><$view field=\"description\"><$view field=\"name\"><$view field=\"title\"/></$view></$view></option>\n</$list>\n</$select>"
},
"$:/snippets/minithemeswitcher": {
"title": "$:/snippets/minithemeswitcher",
"text": "\\define lingo-base() $:/language/ControlPanel/Theme/\n<<lingo Prompt>> <$select tiddler=\"$:/theme\">\n<$list filter=\"[plugin-type[theme]sort[title]]\">\n<option value=<<currentTiddler>>><$view field=\"name\"><$view field=\"title\"/></$view></option>\n</$list>\n</$select>"
},
"$:/snippets/modules": {
"title": "$:/snippets/modules",
"text": "\\define describeModuleType(type)\n{{$:/language/Docs/ModuleTypes/$type$}}\n\\end\n<$list filter=\"[moduletypes[]]\">\n\n!! <$macrocall $name=\"currentTiddler\" $type=\"text/plain\" $output=\"text/plain\"/>\n\n<$macrocall $name=\"describeModuleType\" type=<<currentTiddler>>/>\n\n<ul><$list filter=\"[all[current]modules[]]\"><li><$link><<currentTiddler>></$link>\n</li>\n</$list>\n</ul>\n</$list>\n"
},
"$:/palette": {
"title": "$:/palette",
"text": "$:/palettes/Vanilla"
},
"$:/snippets/paletteeditor": {
"title": "$:/snippets/paletteeditor",
"text": "<$transclude tiddler=\"$:/PaletteManager\"/>\n"
},
"$:/snippets/palettepreview": {
"title": "$:/snippets/palettepreview",
"text": "<$set name=\"currentTiddler\" value={{$:/palette}}>\n{{||$:/snippets/currpalettepreview}}\n</$set>\n"
},
"$:/snippets/paletteswitcher": {
"title": "$:/snippets/paletteswitcher",
"text": "<$linkcatcher to=\"$:/palette\">\n<div class=\"tc-chooser\"><$list filter=\"[all[shadows+tiddlers]tag[$:/tags/Palette]sort[name]]\"><$set name=\"cls\" filter=\"[all[current]prefix{$:/palette}]\" value=\"tc-chooser-item tc-chosen\" emptyValue=\"tc-chooser-item\"><div class=<<cls>>><$link to={{!!title}}>''<$view field=\"name\" format=\"text\"/>'' - <$view field=\"description\" format=\"text\"/>{{||$:/snippets/currpalettepreview}}</$link>\n</div></$set>\n</$list>\n</div>\n</$linkcatcher>\n"
},
"$:/snippets/peek-stylesheets": {
"title": "$:/snippets/peek-stylesheets",
"text": "\\define expandable-stylesheets-list()\n<ol>\n<$list filter=\"[all[shadows+tiddlers]tag[$:/tags/Stylesheet]!has[draft.of]]\">\n<$vars state=<<qualify \"$:/state/peek-stylesheets/open/\">>>\n<$set name=\"state\" value={{{ [<state>addsuffix<currentTiddler>] }}}>\n<li>\n<$reveal type=\"match\" state=<<state>> text=\"yes\" tag=\"span\">\n<$button set=<<state>> setTo=\"no\" class=\"tc-btn-invisible\">\n{{$:/core/images/down-arrow}}\n</$button>\n</$reveal>\n<$reveal type=\"nomatch\" state=<<state>> text=\"yes\" tag=\"span\">\n<$button set=<<state>> setTo=\"yes\" class=\"tc-btn-invisible\">\n{{$:/core/images/right-arrow}}\n</$button>\n</$reveal>\n<$link>\n<$view field=\"title\"/>\n</$link>\n<$reveal type=\"match\" state=<<state>> text=\"yes\" tag=\"div\">\n<$set name=\"source\" tiddler=<<currentTiddler>>>\n<$wikify name=\"styles\" text=<<source>>>\n<pre>\n<code>\n<$text text=<<styles>>/>\n</code>\n</pre>\n</$wikify>\n</$set>\n</$reveal>\n</li>\n</$set>\n</$vars>\n</$list>\n</ol>\n\\end\n\n\\define stylesheets-list()\n<ol>\n<$list filter=\"[all[shadows+tiddlers]tag[$:/tags/Stylesheet]!has[draft.of]]\">\n<li>\n<$link>\n<$view field=\"title\"/>\n</$link>\n<$set name=\"source\" tiddler=<<currentTiddler>>>\n<$wikify name=\"styles\" text=<<source>>>\n<pre>\n<code>\n<$text text=<<styles>>/>\n</code>\n</pre>\n</$wikify>\n</$set>\n</li>\n</$list>\n</ol>\n\\end\n\n<$vars modeState=<<qualify \"$:/state/peek-stylesheets/mode/\">>>\n\n<$reveal type=\"nomatch\" state=<<modeState>> text=\"expanded\" tag=\"div\">\n<$button set=<<modeState>> setTo=\"expanded\" class=\"tc-btn-invisible\">{{$:/core/images/chevron-right}} {{$:/language/ControlPanel/Stylesheets/Expand/Caption}}</$button>\n</$reveal>\n<$reveal type=\"match\" state=<<modeState>> text=\"expanded\" tag=\"div\">\n<$button set=<<modeState>> setTo=\"restored\" class=\"tc-btn-invisible\">{{$:/core/images/chevron-down}} {{$:/language/ControlPanel/Stylesheets/Restore/Caption}}</$button>\n</$reveal>\n\n<$reveal type=\"nomatch\" state=<<modeState>> text=\"expanded\" tag=\"div\">\n<<expandable-stylesheets-list>>\n</$reveal>\n<$reveal type=\"match\" state=<<modeState>> text=\"expanded\" tag=\"div\">\n<<stylesheets-list>>\n</$reveal>\n\n</$vars>\n"
},
"$:/temp/search": {
"title": "$:/temp/search",
"text": ""
},
"$:/tags/AdvancedSearch": {
"title": "$:/tags/AdvancedSearch",
"list": "[[$:/core/ui/AdvancedSearch/Standard]] [[$:/core/ui/AdvancedSearch/System]] [[$:/core/ui/AdvancedSearch/Shadows]] [[$:/core/ui/AdvancedSearch/Filter]]"
},
"$:/tags/AdvancedSearch/FilterButton": {
"title": "$:/tags/AdvancedSearch/FilterButton",
"list": "$:/core/ui/AdvancedSearch/Filter/FilterButtons/dropdown $:/core/ui/AdvancedSearch/Filter/FilterButtons/clear $:/core/ui/AdvancedSearch/Filter/FilterButtons/export $:/core/ui/AdvancedSearch/Filter/FilterButtons/delete"
},
"$:/tags/ControlPanel": {
"title": "$:/tags/ControlPanel",
"list": "$:/core/ui/ControlPanel/Info $:/core/ui/ControlPanel/Appearance $:/core/ui/ControlPanel/Settings $:/core/ui/ControlPanel/Saving $:/core/ui/ControlPanel/Plugins $:/core/ui/ControlPanel/Tools $:/core/ui/ControlPanel/Internals"
},
"$:/tags/ControlPanel/Info": {
"title": "$:/tags/ControlPanel/Info",
"list": "$:/core/ui/ControlPanel/Basics $:/core/ui/ControlPanel/Advanced"
},
"$:/tags/ControlPanel/Plugins": {
"title": "$:/tags/ControlPanel/Plugins",
"list": "[[$:/core/ui/ControlPanel/Plugins/Installed]] [[$:/core/ui/ControlPanel/Plugins/Add]]"
},
"$:/tags/EditTemplate": {
"title": "$:/tags/EditTemplate",
"list": "[[$:/core/ui/EditTemplate/controls]] [[$:/core/ui/EditTemplate/title]] [[$:/core/ui/EditTemplate/tags]] [[$:/core/ui/EditTemplate/shadow]] [[$:/core/ui/ViewTemplate/classic]] [[$:/core/ui/EditTemplate/body]] [[$:/core/ui/EditTemplate/type]] [[$:/core/ui/EditTemplate/fields]]"
},
"$:/tags/EditToolbar": {
"title": "$:/tags/EditToolbar",
"list": "[[$:/core/ui/Buttons/delete]] [[$:/core/ui/Buttons/cancel]] [[$:/core/ui/Buttons/save]]"
},
"$:/tags/EditorToolbar": {
"title": "$:/tags/EditorToolbar",
"list": "$:/core/ui/EditorToolbar/paint $:/core/ui/EditorToolbar/opacity $:/core/ui/EditorToolbar/line-width $:/core/ui/EditorToolbar/rotate-left $:/core/ui/EditorToolbar/clear $:/core/ui/EditorToolbar/bold $:/core/ui/EditorToolbar/italic $:/core/ui/EditorToolbar/strikethrough $:/core/ui/EditorToolbar/underline $:/core/ui/EditorToolbar/superscript $:/core/ui/EditorToolbar/subscript $:/core/ui/EditorToolbar/mono-line $:/core/ui/EditorToolbar/mono-block $:/core/ui/EditorToolbar/quote $:/core/ui/EditorToolbar/list-bullet $:/core/ui/EditorToolbar/list-number $:/core/ui/EditorToolbar/heading-1 $:/core/ui/EditorToolbar/heading-2 $:/core/ui/EditorToolbar/heading-3 $:/core/ui/EditorToolbar/heading-4 $:/core/ui/EditorToolbar/heading-5 $:/core/ui/EditorToolbar/heading-6 $:/core/ui/EditorToolbar/link $:/core/ui/EditorToolbar/excise $:/core/ui/EditorToolbar/picture $:/core/ui/EditorToolbar/stamp $:/core/ui/EditorToolbar/size $:/core/ui/EditorToolbar/editor-height $:/core/ui/EditorToolbar/more $:/core/ui/EditorToolbar/preview $:/core/ui/EditorToolbar/preview-type"
},
"$:/tags/Manager/ItemMain": {
"title": "$:/tags/Manager/ItemMain",
"list": "$:/Manager/ItemMain/WikifiedText $:/Manager/ItemMain/RawText $:/Manager/ItemMain/Fields"
},
"$:/tags/Manager/ItemSidebar": {
"title": "$:/tags/Manager/ItemSidebar",
"list": "$:/Manager/ItemSidebar/Tags $:/Manager/ItemSidebar/Colour $:/Manager/ItemSidebar/Icon $:/Manager/ItemSidebar/Tools"
},
"$:/tags/MoreSideBar": {
"title": "$:/tags/MoreSideBar",
"list": "[[$:/core/ui/MoreSideBar/All]] [[$:/core/ui/MoreSideBar/Recent]] [[$:/core/ui/MoreSideBar/Tags]] [[$:/core/ui/MoreSideBar/Missing]] [[$:/core/ui/MoreSideBar/Drafts]] [[$:/core/ui/MoreSideBar/Orphans]] [[$:/core/ui/MoreSideBar/Types]] [[$:/core/ui/MoreSideBar/System]] [[$:/core/ui/MoreSideBar/Shadows]] [[$:/core/ui/MoreSideBar/Explorer]] [[$:/core/ui/MoreSideBar/Plugins]]",
"text": ""
},
"$:/tags/PageControls": {
"title": "$:/tags/PageControls",
"list": "[[$:/core/ui/Buttons/home]] [[$:/core/ui/Buttons/close-all]] [[$:/core/ui/Buttons/fold-all]] [[$:/core/ui/Buttons/unfold-all]] [[$:/core/ui/Buttons/permaview]] [[$:/core/ui/Buttons/new-tiddler]] [[$:/core/ui/Buttons/new-journal]] [[$:/core/ui/Buttons/new-image]] [[$:/core/ui/Buttons/import]] [[$:/core/ui/Buttons/export-page]] [[$:/core/ui/Buttons/control-panel]] [[$:/core/ui/Buttons/advanced-search]] [[$:/core/ui/Buttons/manager]] [[$:/core/ui/Buttons/tag-manager]] [[$:/core/ui/Buttons/language]] [[$:/core/ui/Buttons/palette]] [[$:/core/ui/Buttons/theme]] [[$:/core/ui/Buttons/storyview]] [[$:/core/ui/Buttons/encryption]] [[$:/core/ui/Buttons/timestamp]] [[$:/core/ui/Buttons/full-screen]] [[$:/core/ui/Buttons/print]] [[$:/core/ui/Buttons/save-wiki]] [[$:/core/ui/Buttons/refresh]] [[$:/core/ui/Buttons/more-page-actions]]"
},
"$:/tags/PageTemplate": {
"title": "$:/tags/PageTemplate",
"list": "[[$:/core/ui/PageTemplate/topleftbar]] [[$:/core/ui/PageTemplate/toprightbar]] [[$:/core/ui/PageTemplate/sidebar]] [[$:/core/ui/PageTemplate/story]] [[$:/core/ui/PageTemplate/alerts]]",
"text": ""
},
"$:/tags/SideBar": {
"title": "$:/tags/SideBar",
"list": "[[$:/core/ui/SideBar/Open]] [[$:/core/ui/SideBar/Recent]] [[$:/core/ui/SideBar/Tools]] [[$:/core/ui/SideBar/More]]",
"text": ""
},
"$:/tags/SideBarSegment": {
"title": "$:/tags/SideBarSegment",
"list": "[[$:/core/ui/SideBarSegments/site-title]] [[$:/core/ui/SideBarSegments/site-subtitle]] [[$:/core/ui/SideBarSegments/page-controls]] [[$:/core/ui/SideBarSegments/search]] [[$:/core/ui/SideBarSegments/tabs]]"
},
"$:/tags/TiddlerInfo": {
"title": "$:/tags/TiddlerInfo",
"list": "[[$:/core/ui/TiddlerInfo/Tools]] [[$:/core/ui/TiddlerInfo/References]] [[$:/core/ui/TiddlerInfo/Tagging]] [[$:/core/ui/TiddlerInfo/List]] [[$:/core/ui/TiddlerInfo/Listed]] [[$:/core/ui/TiddlerInfo/Fields]]",
"text": ""
},
"$:/tags/TiddlerInfo/Advanced": {
"title": "$:/tags/TiddlerInfo/Advanced",
"list": "[[$:/core/ui/TiddlerInfo/Advanced/ShadowInfo]] [[$:/core/ui/TiddlerInfo/Advanced/PluginInfo]]"
},
"$:/tags/ViewTemplate": {
"title": "$:/tags/ViewTemplate",
"list": "[[$:/core/ui/ViewTemplate/title]] [[$:/core/ui/ViewTemplate/unfold]] [[$:/core/ui/ViewTemplate/subtitle]] [[$:/core/ui/ViewTemplate/tags]] [[$:/core/ui/ViewTemplate/classic]] [[$:/core/ui/ViewTemplate/body]]"
},
"$:/tags/ViewToolbar": {
"title": "$:/tags/ViewToolbar",
"list": "[[$:/core/ui/Buttons/more-tiddler-actions]] [[$:/core/ui/Buttons/info]] [[$:/core/ui/Buttons/new-here]] [[$:/core/ui/Buttons/new-journal-here]] [[$:/core/ui/Buttons/clone]] [[$:/core/ui/Buttons/export-tiddler]] [[$:/core/ui/Buttons/edit]] [[$:/core/ui/Buttons/delete]] [[$:/core/ui/Buttons/permalink]] [[$:/core/ui/Buttons/permaview]] [[$:/core/ui/Buttons/open-window]] [[$:/core/ui/Buttons/close-others]] [[$:/core/ui/Buttons/close]] [[$:/core/ui/Buttons/fold-others]] [[$:/core/ui/Buttons/fold]]"
},
"$:/snippets/themeswitcher": {
"title": "$:/snippets/themeswitcher",
"text": "<$linkcatcher to=\"$:/theme\">\n<div class=\"tc-chooser\"><$list filter=\"[plugin-type[theme]sort[title]]\"><$set name=\"cls\" filter=\"[all[current]field:title{$:/theme}] [[$:/theme]!has[text]addsuffix[s/tiddlywiki/vanilla]field:title<currentTiddler>] +[limit[1]]\" value=\"tc-chooser-item tc-chosen\" emptyValue=\"tc-chooser-item\"><div class=<<cls>>><$link to={{!!title}}>''<$view field=\"name\" format=\"text\"/>'' <$view field=\"description\" format=\"text\"/></$link></div>\n</$set>\n</$list>\n</div>\n</$linkcatcher>"
},
"$:/core/wiki/title": {
"title": "$:/core/wiki/title",
"text": "{{$:/SiteTitle}} --- {{$:/SiteSubtitle}}"
},
"$:/view": {
"title": "$:/view",
"text": "classic"
},
"$:/snippets/viewswitcher": {
"title": "$:/snippets/viewswitcher",
"text": "\\define icon()\n$:/core/images/storyview-$(storyview)$\n\\end\n<$linkcatcher to=\"$:/view\">\n<div class=\"tc-chooser\">\n<$list filter=\"[storyviews[]]\" variable=\"storyview\">\n<$set name=\"cls\" filter=\"[<storyview>prefix{$:/view}]\" value=\"tc-chooser-item tc-chosen\" emptyValue=\"tc-chooser-item\"><div class=<<cls>>>\n<$link to=<<storyview>>>\n<$transclude tiddler=<<icon>>/>\n<$text text=<<storyview>>/>\n</$link>\n</div>\n</$set>\n</$list>\n</div>\n</$linkcatcher>"
}
}
}
Os seguintes tiddlers foram importados:
# [[TranscludeWidget]]
{
"tiddlers": {
"$:/language/Buttons/AdvancedSearch/Caption": {
"title": "$:/language/Buttons/AdvancedSearch/Caption",
"text": "Pesquisa Avançada"
},
"$:/language/Buttons/AdvancedSearch/Hint": {
"title": "$:/language/Buttons/AdvancedSearch/Hint",
"text": "Pesquisa Avançada"
},
"$:/language/Buttons/Bold/Caption": {
"title": "$:/language/Buttons/Bold/Caption",
"text": "Negrito"
},
"$:/language/Buttons/Bold/Hint": {
"title": "$:/language/Buttons/Bold/Hint",
"text": "Formatar a seleção como negrito"
},
"$:/language/Buttons/Cancel/Caption": {
"title": "$:/language/Buttons/Cancel/Caption",
"text": "Cancelar"
},
"$:/language/Buttons/Cancel/Hint": {
"title": "$:/language/Buttons/Cancel/Hint",
"text": "Cancelar a edição deste tiddler"
},
"$:/language/Buttons/Clear/Caption": {
"title": "$:/language/Buttons/Clear/Caption",
"text": "Limpar"
},
"$:/language/Buttons/Clear/Hint": {
"title": "$:/language/Buttons/Clear/Hint",
"text": "Preencher o quadro com cor"
},
"$:/language/Buttons/Clone/Caption": {
"title": "$:/language/Buttons/Clone/Caption",
"text": "Duplicar"
},
"$:/language/Buttons/Clone/Hint": {
"title": "$:/language/Buttons/Clone/Hint",
"text": "Duplicar este tiddler"
},
"$:/language/Buttons/Close/Caption": {
"title": "$:/language/Buttons/Close/Caption",
"text": "Fechar"
},
"$:/language/Buttons/Close/Hint": {
"title": "$:/language/Buttons/Close/Hint",
"text": "Fechar este Tiddler"
},
"$:/language/Buttons/CloseAll/Caption": {
"title": "$:/language/Buttons/CloseAll/Caption",
"text": "Fechar Todos"
},
"$:/language/Buttons/CloseAll/Hint": {
"title": "$:/language/Buttons/CloseAll/Hint",
"text": "Fechar Todos os Tiddlers"
},
"$:/language/Buttons/CloseOthers/Caption": {
"title": "$:/language/Buttons/CloseOthers/Caption",
"text": "Fechar Outros"
},
"$:/language/Buttons/CloseOthers/Hint": {
"title": "$:/language/Buttons/CloseOthers/Hint",
"text": "Fechar os Outros Tiddlers"
},
"$:/language/Buttons/ControlPanel/Caption": {
"title": "$:/language/Buttons/ControlPanel/Caption",
"text": "Painel de Controle"
},
"$:/language/Buttons/ControlPanel/Hint": {
"title": "$:/language/Buttons/ControlPanel/Hint",
"text": "Abrir o Painel de Controle"
},
"$:/language/Buttons/Delete/Caption": {
"title": "$:/language/Buttons/Delete/Caption",
"text": "Apagar"
},
"$:/language/Buttons/Delete/Hint": {
"title": "$:/language/Buttons/Delete/Hint",
"text": "Apagar este Tiddler"
},
"$:/language/Buttons/Edit/Caption": {
"title": "$:/language/Buttons/Edit/Caption",
"text": "Editar"
},
"$:/language/Buttons/Edit/Hint": {
"title": "$:/language/Buttons/Edit/Hint",
"text": "Editar este Tiddler"
},
"$:/language/Buttons/EditorHeight/Caption": {
"title": "$:/language/Buttons/EditorHeight/Caption",
"text": "Altura do Editor"
},
"$:/language/Buttons/EditorHeight/Caption/Auto": {
"title": "$:/language/Buttons/EditorHeight/Caption/Auto",
"text": "Ajustar automaticamente a altura ao tamanho do conteúdo"
},
"$:/language/Buttons/EditorHeight/Caption/Fixed": {
"title": "$:/language/Buttons/EditorHeight/Caption/Fixed",
"text": "Altura Fixa:"
},
"$:/language/Buttons/EditorHeight/Hint": {
"title": "$:/language/Buttons/EditorHeight/Hint",
"text": "Escolha a altura do editor de texto"
},
"$:/language/Buttons/Encryption/Caption": {
"title": "$:/language/Buttons/Encryption/Caption",
"text": "Criptografia"
},
"$:/language/Buttons/Encryption/ClearPassword/Caption": {
"title": "$:/language/Buttons/Encryption/ClearPassword/Caption",
"text": "Limpar Senha"
},
"$:/language/Buttons/Encryption/ClearPassword/Hint": {
"title": "$:/language/Buttons/Encryption/ClearPassword/Hint",
"text": "Limpar a senha e salvar esta wiki sem criptografia"
},
"$:/language/Buttons/Encryption/Hint": {
"title": "$:/language/Buttons/Encryption/Hint",
"text": "Definir ou limpar a senha de gravação desta wiki"
},
"$:/language/Buttons/Encryption/SetPassword/Caption": {
"title": "$:/language/Buttons/Encryption/SetPassword/Caption",
"text": "Definir Senha"
},
"$:/language/Buttons/Encryption/SetPassword/Hint": {
"title": "$:/language/Buttons/Encryption/SetPassword/Hint",
"text": "Definir a senha para salvar esta wiki com criptografia"
},
"$:/language/Buttons/Excise/Caption": {
"title": "$:/language/Buttons/Excise/Caption",
"text": "Separar"
},
"$:/language/Buttons/Excise/Caption/Excise": {
"title": "$:/language/Buttons/Excise/Caption/Excise",
"text": "Executar separação"
},
"$:/language/Buttons/Excise/Caption/MacroName": {
"title": "$:/language/Buttons/Excise/Caption/MacroName",
"text": "Nome da Macro:"
},
"$:/language/Buttons/Excise/Caption/NewTitle": {
"title": "$:/language/Buttons/Excise/Caption/NewTitle",
"text": "Título do novo tiddler:"
},
"$:/language/Buttons/Excise/Caption/Replace": {
"title": "$:/language/Buttons/Excise/Caption/Replace",
"text": "Substituir texto separado por:"
},
"$:/language/Buttons/Excise/Caption/Replace/Link": {
"title": "$:/language/Buttons/Excise/Caption/Replace/Link",
"text": "Link"
},
"$:/language/Buttons/Excise/Caption/Replace/Macro": {
"title": "$:/language/Buttons/Excise/Caption/Replace/Macro",
"text": "Macro"
},
"$:/language/Buttons/Excise/Caption/Replace/Transclusion": {
"title": "$:/language/Buttons/Excise/Caption/Replace/Transclusion",
"text": "Inclusão"
},
"$:/language/Buttons/Excise/Caption/Tag": {
"title": "$:/language/Buttons/Excise/Caption/Tag",
"text": "Etiquetar novo tiddler com o título deste tiddler"
},
"$:/language/Buttons/Excise/Caption/TiddlerExists": {
"title": "$:/language/Buttons/Excise/Caption/TiddlerExists",
"text": "Atenção: Esse tiddler já existente"
},
"$:/language/Buttons/Excise/Hint": {
"title": "$:/language/Buttons/Excise/Hint",
"text": "Separar o texto selecionado para um novo tiddler"
},
"$:/language/Buttons/ExportPage/Caption": {
"title": "$:/language/Buttons/ExportPage/Caption",
"text": "Exportar Tudo"
},
"$:/language/Buttons/ExportPage/Hint": {
"title": "$:/language/Buttons/ExportPage/Hint",
"text": "Exportar Todos os Tiddlers"
},
"$:/language/Buttons/ExportTiddler/Caption": {
"title": "$:/language/Buttons/ExportTiddler/Caption",
"text": "Exportar Tiddler"
},
"$:/language/Buttons/ExportTiddler/Hint": {
"title": "$:/language/Buttons/ExportTiddler/Hint",
"text": "Exportar Tiddler"
},
"$:/language/Buttons/ExportTiddlers/Caption": {
"title": "$:/language/Buttons/ExportTiddlers/Caption",
"text": "Exportar Tiddlers"
},
"$:/language/Buttons/ExportTiddlers/Hint": {
"title": "$:/language/Buttons/ExportTiddlers/Hint",
"text": "Exportar Tiddlers"
},
"$:/language/Buttons/Fold/Caption": {
"title": "$:/language/Buttons/Fold/Caption",
"text": "Fechar Tiddler"
},
"$:/language/Buttons/Fold/FoldBar/Caption": {
"title": "$:/language/Buttons/Fold/FoldBar/Caption",
"text": "Menu-Lateral"
},
"$:/language/Buttons/Fold/FoldBar/Hint": {
"title": "$:/language/Buttons/Fold/FoldBar/Hint",
"text": "Barra de menu opcional para fechar e abrir tiddlers"
},
"$:/language/Buttons/Fold/Hint": {
"title": "$:/language/Buttons/Fold/Hint",
"text": "Fechar o conteúdo deste Tiddler"
},
"$:/language/Buttons/FoldAll/Caption": {
"title": "$:/language/Buttons/FoldAll/Caption",
"text": "Fechar todos os Tiddlers"
},
"$:/language/Buttons/FoldAll/Hint": {
"title": "$:/language/Buttons/FoldAll/Hint",
"text": "Fechar o conteúdo de todos os tiddlers abertos"
},
"$:/language/Buttons/FoldOthers/Caption": {
"title": "$:/language/Buttons/FoldOthers/Caption",
"text": "Fechar outros Tiddlers"
},
"$:/language/Buttons/FoldOthers/Hint": {
"title": "$:/language/Buttons/FoldOthers/Hint",
"text": "Fechar o conteúdo dos outros tiddlers abertos"
},
"$:/language/Buttons/FullScreen/Caption": {
"title": "$:/language/Buttons/FullScreen/Caption",
"text": "Tela Cheia"
},
"$:/language/Buttons/FullScreen/Hint": {
"title": "$:/language/Buttons/FullScreen/Hint",
"text": "Entrar ou sair do modo tela cheia"
},
"$:/language/Buttons/Heading1/Caption": {
"title": "$:/language/Buttons/Heading1/Caption",
"text": "Cabeçalho 1"
},
"$:/language/Buttons/Heading1/Hint": {
"title": "$:/language/Buttons/Heading1/Hint",
"text": "Formatar todas linhas selecionadas com o nível 1 de cabeçalho"
},
"$:/language/Buttons/Heading2/Caption": {
"title": "$:/language/Buttons/Heading2/Caption",
"text": "Cabeçalho 2"
},
"$:/language/Buttons/Heading2/Hint": {
"title": "$:/language/Buttons/Heading2/Hint",
"text": "Formatar todas linhas selecionadas com o nível 2 de cabeçalho"
},
"$:/language/Buttons/Heading3/Caption": {
"title": "$:/language/Buttons/Heading3/Caption",
"text": "Cabeçalho 3"
},
"$:/language/Buttons/Heading3/Hint": {
"title": "$:/language/Buttons/Heading3/Hint",
"text": "Formatar todas linhas selecionadas com o nível 3 de cabeçalho"
},
"$:/language/Buttons/Heading4/Caption": {
"title": "$:/language/Buttons/Heading4/Caption",
"text": "Cabeçalho 4"
},
"$:/language/Buttons/Heading4/Hint": {
"title": "$:/language/Buttons/Heading4/Hint",
"text": "Formatar todas linhas selecionadas com o nível 4 de cabeçalho"
},
"$:/language/Buttons/Heading5/Caption": {
"title": "$:/language/Buttons/Heading5/Caption",
"text": "Cabeçalho 5"
},
"$:/language/Buttons/Heading5/Hint": {
"title": "$:/language/Buttons/Heading5/Hint",
"text": "Formatar todas linhas selecionadas com o nível 5 de cabeçalho"
},
"$:/language/Buttons/Heading6/Caption": {
"title": "$:/language/Buttons/Heading6/Caption",
"text": "Cabeçalho 6"
},
"$:/language/Buttons/Heading6/Hint": {
"title": "$:/language/Buttons/Heading6/Hint",
"text": "Formatar todas linhas selecionadas com o nível 6 de cabeçalho"
},
"$:/language/Buttons/Help/Caption": {
"title": "$:/language/Buttons/Help/Caption",
"text": "Ajuda"
},
"$:/language/Buttons/Help/Hint": {
"title": "$:/language/Buttons/Help/Hint",
"text": "Mostrar Painel de Ajuda"
},
"$:/language/Buttons/HideSideBar/Caption": {
"title": "$:/language/Buttons/HideSideBar/Caption",
"text": "Ocultar Barra de Menu"
},
"$:/language/Buttons/HideSideBar/Hint": {
"title": "$:/language/Buttons/HideSideBar/Hint",
"text": "Ocultar a barra lateral"
},
"$:/language/Buttons/Home/Caption": {
"title": "$:/language/Buttons/Home/Caption",
"text": "Início"
},
"$:/language/Buttons/Home/Hint": {
"title": "$:/language/Buttons/Home/Hint",
"text": "Abrir os tiddlers padrão"
},
"$:/language/Buttons/Import/Caption": {
"title": "$:/language/Buttons/Import/Caption",
"text": "Importar"
},
"$:/language/Buttons/Import/Hint": {
"title": "$:/language/Buttons/Import/Hint",
"text": "Importar arquivos de vários formatos, incluindo texto, imagem, Tiddlywiki ou JSON"
},
"$:/language/Buttons/Info/Caption": {
"title": "$:/language/Buttons/Info/Caption",
"text": "Informação"
},
"$:/language/Buttons/Info/Hint": {
"title": "$:/language/Buttons/Info/Hint",
"text": "Mostrar informações sobre este tiddler"
},
"$:/language/Buttons/Italic/Caption": {
"title": "$:/language/Buttons/Italic/Caption",
"text": "Itálico"
},
"$:/language/Buttons/Italic/Hint": {
"title": "$:/language/Buttons/Italic/Hint",
"text": "Aplicar formatação itálico a seleção"
},
"$:/language/Buttons/Language/Caption": {
"title": "$:/language/Buttons/Language/Caption",
"text": "Idioma"
},
"$:/language/Buttons/Language/Hint": {
"title": "$:/language/Buttons/Language/Hint",
"text": "Escolher a idioma da interface do usuário"
},
"$:/language/Buttons/LineWidth/Caption": {
"title": "$:/language/Buttons/LineWidth/Caption",
"text": "espessura da linha"
},
"$:/language/Buttons/LineWidth/Hint": {
"title": "$:/language/Buttons/LineWidth/Hint",
"text": "Definir a espessura da linha d caneta"
},
"$:/language/Buttons/Link/Caption": {
"title": "$:/language/Buttons/Link/Caption",
"text": "Link"
},
"$:/language/Buttons/Link/Hint": {
"title": "$:/language/Buttons/Link/Hint",
"text": "Criar link em wikitext"
},
"$:/language/Buttons/ListBullet/Caption": {
"title": "$:/language/Buttons/ListBullet/Caption",
"text": "Lista com marcador circular)"
},
"$:/language/Buttons/ListBullet/Hint": {
"title": "$:/language/Buttons/ListBullet/Hint",
"text": "Formatar a seleção com marcadores circular"
},
"$:/language/Buttons/ListNumber/Caption": {
"title": "$:/language/Buttons/ListNumber/Caption",
"text": "Lista Numerada"
},
"$:/language/Buttons/ListNumber/Hint": {
"title": "$:/language/Buttons/ListNumber/Hint",
"text": "Gerenciador Tiddler"
},
"$:/language/Buttons/Manager/Caption": {
"title": "$:/language/Buttons/Manager/Caption",
"text": "Gerenciador Tiddler"
},
"$:/language/Buttons/Manager/Hint": {
"title": "$:/language/Buttons/Manager/Hint",
"text": "Abrir Gerenciador Tiddler"
},
"$:/language/Buttons/MonoBlock/Caption": {
"title": "$:/language/Buttons/MonoBlock/Caption",
"text": "Justificado"
},
"$:/language/Buttons/MonoBlock/Hint": {
"title": "$:/language/Buttons/MonoBlock/Hint",
"text": "Justificar bloco selecionado"
},
"$:/language/Buttons/MonoLine/Caption": {
"title": "$:/language/Buttons/MonoLine/Caption",
"text": "Espaçamento Uniforme"
},
"$:/language/Buttons/MonoLine/Hint": {
"title": "$:/language/Buttons/MonoLine/Hint",
"text": "Aplicar o espaçamento uniforme formatação da seleção"
},
"$:/language/Buttons/More/Caption": {
"title": "$:/language/Buttons/More/Caption",
"text": "Mais"
},
"$:/language/Buttons/More/Hint": {
"title": "$:/language/Buttons/More/Hint",
"text": "Mais Opções"
},
"$:/language/Buttons/NewHere/Caption": {
"title": "$:/language/Buttons/NewHere/Caption",
"text": "Novo"
},
"$:/language/Buttons/NewHere/Hint": {
"title": "$:/language/Buttons/NewHere/Hint",
"text": "Criar um novo tiddler no mesmo assunto"
},
"$:/language/Buttons/NewImage/Caption": {
"title": "$:/language/Buttons/NewImage/Caption",
"text": "Nova Imagem"
},
"$:/language/Buttons/NewImage/Hint": {
"title": "$:/language/Buttons/NewImage/Hint",
"text": "Criar novo tiddler de desenho"
},
"$:/language/Buttons/NewJournal/Caption": {
"title": "$:/language/Buttons/NewJournal/Caption",
"text": "Nova Edição"
},
"$:/language/Buttons/NewJournal/Hint": {
"title": "$:/language/Buttons/NewJournal/Hint",
"text": "Criar uma nova edição"
},
"$:/language/Buttons/NewJournalHere/Caption": {
"title": "$:/language/Buttons/NewJournalHere/Caption",
"text": "Nova edição aqui"
},
"$:/language/Buttons/NewJournalHere/Hint": {
"title": "$:/language/Buttons/NewJournalHere/Hint",
"text": "Criar uma nova edição do mesmo assunto"
},
"$:/language/Buttons/NewMarkdown/Caption": {
"title": "$:/language/Buttons/NewMarkdown/Caption",
"text": "Criar tiddler Marcado"
},
"$:/language/Buttons/NewMarkdown/Hint": {
"title": "$:/language/Buttons/NewMarkdown/Hint",
"text": "Criar um novo tiddler marcado"
},
"$:/language/Buttons/NewTiddler/Caption": {
"title": "$:/language/Buttons/NewTiddler/Caption",
"text": "Novo Tiddler"
},
"$:/language/Buttons/NewTiddler/Hint": {
"title": "$:/language/Buttons/NewTiddler/Hint",
"text": "Criar um novo tiddler"
},
"$:/language/Buttons/Opacity/Caption": {
"title": "$:/language/Buttons/Opacity/Caption",
"text": "Opacidade"
},
"$:/language/Buttons/Opacity/Hint": {
"title": "$:/language/Buttons/Opacity/Hint",
"text": "Definir opacidade de desenho"
},
"$:/language/Buttons/OpenWindow/Caption": {
"title": "$:/language/Buttons/OpenWindow/Caption",
"text": "Abrir em nova janela"
},
"$:/language/Buttons/OpenWindow/Hint": {
"title": "$:/language/Buttons/OpenWindow/Hint",
"text": "Abrir tiddler em nova janela"
},
"$:/language/Buttons/Paint/Caption": {
"title": "$:/language/Buttons/Paint/Caption",
"text": "Cor de desenho"
},
"$:/language/Buttons/Paint/Hint": {
"title": "$:/language/Buttons/Paint/Hint",
"text": "Definir a cor de desenho"
},
"$:/language/Buttons/Palette/Caption": {
"title": "$:/language/Buttons/Palette/Caption",
"text": "Cores"
},
"$:/language/Buttons/Palette/Hint": {
"title": "$:/language/Buttons/Palette/Hint",
"text": "Escolher a paleta de cores"
},
"$:/language/Buttons/Permalink/Caption": {
"title": "$:/language/Buttons/Permalink/Caption",
"text": "Link Permanente"
},
"$:/language/Buttons/Permalink/Hint": {
"title": "$:/language/Buttons/Permalink/Hint",
"text": "Configure um link direto na barra de endereços do navegador para todos os tiddlers neste assunto"
},
"$:/language/Buttons/Permaview/Caption": {
"title": "$:/language/Buttons/Permaview/Caption",
"text": "Exibido agora"
},
"$:/language/Buttons/Permaview/Hint": {
"title": "$:/language/Buttons/Permaview/Hint",
"text": "Definir na endereço do navegador uma URL que inclui todos os tiddlers visiveis agora"
},
"$:/language/Buttons/Picture/Caption": {
"title": "$:/language/Buttons/Picture/Caption",
"text": "Imagem"
},
"$:/language/Buttons/Picture/Hint": {
"title": "$:/language/Buttons/Picture/Hint",
"text": "Inserir imagem"
},
"$:/language/Buttons/Preview/Caption": {
"title": "$:/language/Buttons/Preview/Caption",
"text": "Pré-visualizar"
},
"$:/language/Buttons/Preview/Hint": {
"title": "$:/language/Buttons/Preview/Hint",
"text": "Mostrar pré-visualização"
},
"$:/language/Buttons/PreviewType/Caption": {
"title": "$:/language/Buttons/PreviewType/Caption",
"text": "pré-visualização por tipo de arquivo"
},
"$:/language/Buttons/PreviewType/Hint": {
"title": "$:/language/Buttons/PreviewType/Hint",
"text": "Escolher o tipo de pré-visualização"
},
"$:/language/Buttons/Print/Caption": {
"title": "$:/language/Buttons/Print/Caption",
"text": "Imprimir página"
},
"$:/language/Buttons/Print/Hint": {
"title": "$:/language/Buttons/Print/Hint",
"text": "Imprimir a página atual"
},
"$:/language/Buttons/Quote/Caption": {
"title": "$:/language/Buttons/Quote/Caption",
"text": "Citação"
},
"$:/language/Buttons/Quote/Hint": {
"title": "$:/language/Buttons/Quote/Hint",
"text": "Formatar as linhas selecionadas como citação"
},
"$:/language/Buttons/Refresh/Caption": {
"title": "$:/language/Buttons/Refresh/Caption",
"text": "Atualizar"
},
"$:/language/Buttons/Refresh/Hint": {
"title": "$:/language/Buttons/Refresh/Hint",
"text": "Recarregar totalmente a wiki atual"
},
"$:/language/Buttons/Save/Caption": {
"title": "$:/language/Buttons/Save/Caption",
"text": "Salvar"
},
"$:/language/Buttons/Save/Hint": {
"title": "$:/language/Buttons/Save/Hint",
"text": "Salvar este tiddler"
},
"$:/language/Buttons/SaveWiki/Caption": {
"title": "$:/language/Buttons/SaveWiki/Caption",
"text": "Salvar alterações"
},
"$:/language/Buttons/SaveWiki/Hint": {
"title": "$:/language/Buttons/SaveWiki/Hint",
"text": "Salvar as alterações"
},
"$:/language/Buttons/ShowSideBar/Caption": {
"title": "$:/language/Buttons/ShowSideBar/Caption",
"text": "Exibir barra lateral"
},
"$:/language/Buttons/ShowSideBar/Hint": {
"title": "$:/language/Buttons/ShowSideBar/Hint",
"text": "Exibir a barra lateral"
},
"$:/language/Buttons/Size/Caption": {
"title": "$:/language/Buttons/Size/Caption",
"text": "Tamanho da imagem"
},
"$:/language/Buttons/Size/Caption/Height": {
"title": "$:/language/Buttons/Size/Caption/Height",
"text": "Altura:"
},
"$:/language/Buttons/Size/Caption/Resize": {
"title": "$:/language/Buttons/Size/Caption/Resize",
"text": "Redimensionar imagem"
},
"$:/language/Buttons/Size/Caption/Width": {
"title": "$:/language/Buttons/Size/Caption/Width",
"text": "Largura:"
},
"$:/language/Buttons/Size/Hint": {
"title": "$:/language/Buttons/Size/Hint",
"text": "Definir tamanho da imagem"
},
"$:/language/Buttons/Stamp/Caption": {
"title": "$:/language/Buttons/Stamp/Caption",
"text": "Selo"
},
"$:/language/Buttons/Stamp/Caption/New": {
"title": "$:/language/Buttons/Stamp/Caption/New",
"text": "Adicione o seu"
},
"$:/language/Buttons/Stamp/Hint": {
"title": "$:/language/Buttons/Stamp/Hint",
"text": "Inserir um trecho de texto pré configurado"
},
"$:/language/Buttons/Stamp/New/Text": {
"title": "$:/language/Buttons/Stamp/New/Text",
"text": "Novo trecho de texto (Lembre-se de adicionar um título."
},
"$:/language/Buttons/Stamp/New/Title": {
"title": "$:/language/Buttons/Stamp/New/Title",
"text": "Nome exibido no menu"
},
"$:/language/Buttons/StoryView/Caption": {
"title": "$:/language/Buttons/StoryView/Caption",
"text": "Estilo de exibição"
},
"$:/language/Buttons/StoryView/Hint": {
"title": "$:/language/Buttons/StoryView/Hint",
"text": "Escolher o estilo de exibição principal"
},
"$:/language/Buttons/Strikethrough/Caption": {
"title": "$:/language/Buttons/Strikethrough/Caption",
"text": "Riscado"
},
"$:/language/Buttons/Strikethrough/Hint": {
"title": "$:/language/Buttons/Strikethrough/Hint",
"text": "Formatar o texto selecionado com riscado"
},
"$:/language/Buttons/Subscript/Caption": {
"title": "$:/language/Buttons/Subscript/Caption",
"text": "Subscrito"
},
"$:/language/Buttons/Subscript/Hint": {
"title": "$:/language/Buttons/Subscript/Hint",
"text": "Formatar o texto selecionado com subscrito"
},
"$:/language/Buttons/Superscript/Caption": {
"title": "$:/language/Buttons/Superscript/Caption",
"text": "Sobrescrito"
},
"$:/language/Buttons/Superscript/Hint": {
"title": "$:/language/Buttons/Superscript/Hint",
"text": "Formatar o texto selecionado com sobrescrito"
},
"$:/language/Buttons/TagManager/Caption": {
"title": "$:/language/Buttons/TagManager/Caption",
"text": "Gerenciador de Assuntos (Tags)"
},
"$:/language/Buttons/TagManager/Hint": {
"title": "$:/language/Buttons/TagManager/Hint",
"text": "Abrir gerenciador de assuntos(Tags)"
},
"$:/language/Buttons/Theme/Caption": {
"title": "$:/language/Buttons/Theme/Caption",
"text": "Estilo"
},
"$:/language/Buttons/Theme/Hint": {
"title": "$:/language/Buttons/Theme/Hint",
"text": "Escolher o tema de exibição"
},
"$:/language/Buttons/Timestamp/Caption": {
"title": "$:/language/Buttons/Timestamp/Caption",
"text": "Data e hora"
},
"$:/language/Buttons/Timestamp/Hint": {
"title": "$:/language/Buttons/Timestamp/Hint",
"text": "Define atualização de Data/Hora"
},
"$:/language/Buttons/Timestamp/Off/Caption": {
"title": "$:/language/Buttons/Timestamp/Off/Caption",
"text": "Data/Hora Desativado"
},
"$:/language/Buttons/Timestamp/Off/Hint": {
"title": "$:/language/Buttons/Timestamp/Off/Hint",
"text": "Não atualizar data e hora quando os tiddlers forem modificados"
},
"$:/language/Buttons/Timestamp/On/Caption": {
"title": "$:/language/Buttons/Timestamp/On/Caption",
"text": "Data/Hora Ativado"
},
"$:/language/Buttons/Timestamp/On/Hint": {
"title": "$:/language/Buttons/Timestamp/On/Hint",
"text": "Atualizar data e hora quando os tiddlers forem modificados"
},
"$:/language/Buttons/Underline/Caption": {
"title": "$:/language/Buttons/Underline/Caption",
"text": "Sublinhado"
},
"$:/language/Buttons/Underline/Hint": {
"title": "$:/language/Buttons/Underline/Hint",
"text": "Formatar a seleção como texto sublinhado"
},
"$:/language/Buttons/Unfold/Caption": {
"title": "$:/language/Buttons/Unfold/Caption",
"text": "Abrir tiddler"
},
"$:/language/Buttons/Unfold/Hint": {
"title": "$:/language/Buttons/Unfold/Hint",
"text": "Abrir o conteúdo deste tiddler"
},
"$:/language/Buttons/UnfoldAll/Caption": {
"title": "$:/language/Buttons/UnfoldAll/Caption",
"text": "Abrir todos os tiddlers"
},
"$:/language/Buttons/UnfoldAll/Hint": {
"title": "$:/language/Buttons/UnfoldAll/Hint",
"text": "Abrir o conteúdo de todos os tiddlers"
},
"$:/language/ControlPanel/Advanced/Caption": {
"title": "$:/language/ControlPanel/Advanced/Caption",
"text": "Avançado"
},
"$:/language/ControlPanel/Advanced/Hint": {
"title": "$:/language/ControlPanel/Advanced/Hint",
"text": "Informações Interna sobre esta TiddlyWiki"
},
"$:/language/ControlPanel/Appearance/Caption": {
"title": "$:/language/ControlPanel/Appearance/Caption",
"text": "Aparência"
},
"$:/language/ControlPanel/Appearance/Hint": {
"title": "$:/language/ControlPanel/Appearance/Hint",
"text": "Formas de personalizar a aparência da sua TiddlyWiki."
},
"$:/language/ControlPanel/Basics/AnimDuration/Prompt": {
"title": "$:/language/ControlPanel/Basics/AnimDuration/Prompt",
"text": "Duração da animação:"
},
"$:/language/ControlPanel/Basics/Caption": {
"title": "$:/language/ControlPanel/Basics/Caption",
"text": "Básicos"
},
"$:/language/ControlPanel/Basics/DefaultTiddlers/BottomHint": {
"title": "$:/language/ControlPanel/Basics/DefaultTiddlers/BottomHint",
"text": "Utilize [[colchetes ]] para títulos com espaços. Ou então <$button set=\"$:/DefaultTiddlers\" setTo=\"[list[$:/StoryList]]\">Clique aqui para inserir a ordem cronológica</$button>"
},
"$:/language/ControlPanel/Basics/DefaultTiddlers/Prompt": {
"title": "$:/language/ControlPanel/Basics/DefaultTiddlers/Prompt",
"text": "Tiddlers Padrão:"
},
"$:/language/ControlPanel/Basics/DefaultTiddlers/TopHint": {
"title": "$:/language/ControlPanel/Basics/DefaultTiddlers/TopHint",
"text": "Escolha quais tiddlers serão exibidos ao iniciar:"
},
"$:/language/ControlPanel/Basics/Language/Prompt": {
"title": "$:/language/ControlPanel/Basics/Language/Prompt",
"text": "Seleção do Idioma:"
},
"$:/language/ControlPanel/Basics/NewJournal/Tags/Prompt": {
"title": "$:/language/ControlPanel/Basics/NewJournal/Tags/Prompt",
"text": "Assunto das novas edições"
},
"$:/language/ControlPanel/Basics/NewJournal/Title/Prompt": {
"title": "$:/language/ControlPanel/Basics/NewJournal/Title/Prompt",
"text": "Título das novas edições tiddlers"
},
"$:/language/ControlPanel/Basics/OverriddenShadowTiddlers/Prompt": {
"title": "$:/language/ControlPanel/Basics/OverriddenShadowTiddlers/Prompt",
"text": "Tiddlers-Sombra Sobrescritos:"
},
"$:/language/ControlPanel/Basics/ShadowTiddlers/Prompt": {
"title": "$:/language/ControlPanel/Basics/ShadowTiddlers/Prompt",
"text": "Tiddlers-Sombra:"
},
"$:/language/ControlPanel/Basics/Subtitle/Prompt": {
"title": "$:/language/ControlPanel/Basics/Subtitle/Prompt",
"text": "Subtítulo:"
},
"$:/language/ControlPanel/Basics/SystemTiddlers/Prompt": {
"title": "$:/language/ControlPanel/Basics/SystemTiddlers/Prompt",
"text": "Tiddlers de Sistema:"
},
"$:/language/ControlPanel/Basics/Tags/Prompt": {
"title": "$:/language/ControlPanel/Basics/Tags/Prompt",
"text": "Assuntos(Tags):"
},
"$:/language/ControlPanel/Basics/Tiddlers/Prompt": {
"title": "$:/language/ControlPanel/Basics/Tiddlers/Prompt",
"text": "Tiddlers:"
},
"$:/language/ControlPanel/Basics/Title/Prompt": {
"title": "$:/language/ControlPanel/Basics/Title/Prompt",
"text": "Título desta ~TiddlyWiki:"
},
"$:/language/ControlPanel/Basics/Username/Prompt": {
"title": "$:/language/ControlPanel/Basics/Username/Prompt",
"text": "Nome de usuário para assinar edições:"
},
"$:/language/ControlPanel/Basics/Version/Prompt": {
"title": "$:/language/ControlPanel/Basics/Version/Prompt",
"text": "Versão da ~TiddlyWiki:"
},
"$:/language/ControlPanel/EditorTypes/Caption": {
"title": "$:/language/ControlPanel/EditorTypes/Caption",
"text": "Tipos de Editor"
},
"$:/language/ControlPanel/EditorTypes/Editor/Caption": {
"title": "$:/language/ControlPanel/EditorTypes/Editor/Caption",
"text": "Editor"
},
"$:/language/ControlPanel/EditorTypes/Hint": {
"title": "$:/language/ControlPanel/EditorTypes/Hint",
"text": "Estes tiddlers determinam qual editor é utilizado para editar os tipos específicos de tiddler."
},
"$:/language/ControlPanel/EditorTypes/Type/Caption": {
"title": "$:/language/ControlPanel/EditorTypes/Type/Caption",
"text": "Tipo"
},
"$:/language/ControlPanel/Info/Caption": {
"title": "$:/language/ControlPanel/Info/Caption",
"text": "Opções do Wiki"
},
"$:/language/ControlPanel/Info/Hint": {
"title": "$:/language/ControlPanel/Info/Hint",
"text": "Opções e informações sobre desta TiddlyWiki"
},
"$:/language/ControlPanel/KeyboardShortcuts/Add/Caption": {
"title": "$:/language/ControlPanel/KeyboardShortcuts/Add/Caption",
"text": "Adicionar Atalho"
},
"$:/language/ControlPanel/KeyboardShortcuts/Add/Prompt": {
"title": "$:/language/ControlPanel/KeyboardShortcuts/Add/Prompt",
"text": "Digite o atalho aqui"
},
"$:/language/ControlPanel/KeyboardShortcuts/Caption": {
"title": "$:/language/ControlPanel/KeyboardShortcuts/Caption",
"text": "Atalhos de Teclado"
},
"$:/language/ControlPanel/KeyboardShortcuts/Hint": {
"title": "$:/language/ControlPanel/KeyboardShortcuts/Hint",
"text": "Definir atalhos de teclado"
},
"$:/language/ControlPanel/KeyboardShortcuts/NoShortcuts/Caption": {
"title": "$:/language/ControlPanel/KeyboardShortcuts/NoShortcuts/Caption",
"text": "Nenhuns atalhos de teclado foi definidos"
},
"$:/language/ControlPanel/KeyboardShortcuts/Platform/All": {
"title": "$:/language/ControlPanel/KeyboardShortcuts/Platform/All",
"text": "Todas as plataformas"
},
"$:/language/ControlPanel/KeyboardShortcuts/Platform/Linux": {
"title": "$:/language/ControlPanel/KeyboardShortcuts/Platform/Linux",
"text": "Apenas plataforma Linux"
},
"$:/language/ControlPanel/KeyboardShortcuts/Platform/Mac": {
"title": "$:/language/ControlPanel/KeyboardShortcuts/Platform/Mac",
"text": "Apenas plataforma Macintosh"
},
"$:/language/ControlPanel/KeyboardShortcuts/Platform/NonLinux": {
"title": "$:/language/ControlPanel/KeyboardShortcuts/Platform/NonLinux",
"text": "Apenas plataformas não Linux"
},
"$:/language/ControlPanel/KeyboardShortcuts/Platform/NonMac": {
"title": "$:/language/ControlPanel/KeyboardShortcuts/Platform/NonMac",
"text": "Apenas plataformas não Macintosh"
},
"$:/language/ControlPanel/KeyboardShortcuts/Platform/NonWindows": {
"title": "$:/language/ControlPanel/KeyboardShortcuts/Platform/NonWindows",
"text": "Apenas plataformas não Windows"
},
"$:/language/ControlPanel/KeyboardShortcuts/Platform/Windows": {
"title": "$:/language/ControlPanel/KeyboardShortcuts/Platform/Windows",
"text": "Apenas plataforma Windows"
},
"$:/language/ControlPanel/KeyboardShortcuts/Remove/Hint": {
"title": "$:/language/ControlPanel/KeyboardShortcuts/Remove/Hint",
"text": "remover atalho de teclado"
},
"$:/language/ControlPanel/LoadedModules/Caption": {
"title": "$:/language/ControlPanel/LoadedModules/Caption",
"text": "Módulos Carregados"
},
"$:/language/ControlPanel/LoadedModules/Hint": {
"title": "$:/language/ControlPanel/LoadedModules/Hint",
"text": "Estes módulos tiddler são carregados junto com seus tiddlers fonte. Módulos em itálico não têm tiddler fonte, geralmente por serem carregados durante a inicialização."
},
"$:/language/ControlPanel/Palette/Caption": {
"title": "$:/language/ControlPanel/Palette/Caption",
"text": "Paleta de Cores"
},
"$:/language/ControlPanel/Palette/Editor/Clone/Caption": {
"title": "$:/language/ControlPanel/Palette/Editor/Clone/Caption",
"text": "Duplicar"
},
"$:/language/ControlPanel/Palette/Editor/Clone/Prompt": {
"title": "$:/language/ControlPanel/Palette/Editor/Clone/Prompt",
"text": "Recomenda-se que duplique esta paleta-sombra antes de editá-la"
},
"$:/language/ControlPanel/Palette/Editor/Prompt": {
"title": "$:/language/ControlPanel/Palette/Editor/Prompt",
"text": "Edição"
},
"$:/language/ControlPanel/Palette/Editor/Prompt/Modified": {
"title": "$:/language/ControlPanel/Palette/Editor/Prompt/Modified",
"text": "Esta paleta-sombra foi modificada"
},
"$:/language/ControlPanel/Palette/Editor/Reset/Caption": {
"title": "$:/language/ControlPanel/Palette/Editor/Reset/Caption",
"text": "Reiniciar"
},
"$:/language/ControlPanel/Palette/HideEditor/Caption": {
"title": "$:/language/ControlPanel/Palette/HideEditor/Caption",
"text": "Ocultar Editor"
},
"$:/language/ControlPanel/Palette/Prompt": {
"title": "$:/language/ControlPanel/Palette/Prompt",
"text": "Paleta Ativa:"
},
"$:/language/ControlPanel/Palette/ShowEditor/Caption": {
"title": "$:/language/ControlPanel/Palette/ShowEditor/Caption",
"text": "Mostrar Editor"
},
"$:/language/ControlPanel/Parsing/Block/Caption": {
"title": "$:/language/ControlPanel/Parsing/Block/Caption",
"text": "Regras de análise de blocos"
},
"$:/language/ControlPanel/Parsing/Caption": {
"title": "$:/language/ControlPanel/Parsing/Caption",
"text": "Análise"
},
"$:/language/ControlPanel/Parsing/Hint": {
"title": "$:/language/ControlPanel/Parsing/Hint",
"text": "Aqui você pode desativar globalmente as regras de analise individuais do wiki. Tome cuidado, algumas delas quando desligadas podem causar erros no ~TiddlyWiki, Se isso acontecer use o modo de recuperação para corrigir. [[modo de recuperação|http://tiddlywiki.com/#SafeMode]] )"
},
"$:/language/ControlPanel/Parsing/Inline/Caption": {
"title": "$:/language/ControlPanel/Parsing/Inline/Caption",
"text": "Regras de Análise em Linha"
},
"$:/language/ControlPanel/Parsing/Pragma/Caption": {
"title": "$:/language/ControlPanel/Parsing/Pragma/Caption",
"text": "Regras de Análise Pragma"
},
"$:/language/ControlPanel/Plugins/Add/Caption": {
"title": "$:/language/ControlPanel/Plugins/Add/Caption",
"text": "Importar mais extensões"
},
"$:/language/ControlPanel/Plugins/Add/Hint": {
"title": "$:/language/ControlPanel/Plugins/Add/Hint",
"text": "Instalar extensões da biblioteca de extensões oficial"
},
"$:/language/ControlPanel/Plugins/AlreadyInstalled/Hint": {
"title": "$:/language/ControlPanel/Plugins/AlreadyInstalled/Hint",
"text": "Esta extensão já está instalada com está versão<$text text=<<installedVersion>>/>"
},
"$:/language/ControlPanel/Plugins/Caption": {
"title": "$:/language/ControlPanel/Plugins/Caption",
"text": "Extensões"
},
"$:/language/ControlPanel/Plugins/Disable/Caption": {
"title": "$:/language/ControlPanel/Plugins/Disable/Caption",
"text": "Desativar"
},
"$:/language/ControlPanel/Plugins/Disable/Hint": {
"title": "$:/language/ControlPanel/Plugins/Disable/Hint",
"text": "Desativar esta extensão quando reiniciar a página"
},
"$:/language/ControlPanel/Plugins/Disabled/Status": {
"title": "$:/language/ControlPanel/Plugins/Disabled/Status",
"text": "(desativado)"
},
"$:/language/ControlPanel/Plugins/Empty/Hint": {
"title": "$:/language/ControlPanel/Plugins/Empty/Hint",
"text": "Nenhum"
},
"$:/language/ControlPanel/Plugins/Enable/Caption": {
"title": "$:/language/ControlPanel/Plugins/Enable/Caption",
"text": "ativar"
},
"$:/language/ControlPanel/Plugins/Enable/Hint": {
"title": "$:/language/ControlPanel/Plugins/Enable/Hint",
"text": "Ativar esta extensão quando reiniciar a página"
},
"$:/language/ControlPanel/Plugins/Install/Caption": {
"title": "$:/language/ControlPanel/Plugins/Install/Caption",
"text": "Instalar"
},
"$:/language/ControlPanel/Plugins/Installed/Hint": {
"title": "$:/language/ControlPanel/Plugins/Installed/Hint",
"text": "Extensões instaladas:"
},
"$:/language/ControlPanel/Plugins/Language/Prompt": {
"title": "$:/language/ControlPanel/Plugins/Language/Prompt",
"text": "Idiomas"
},
"$:/language/ControlPanel/Plugins/Languages/Caption": {
"title": "$:/language/ControlPanel/Plugins/Languages/Caption",
"text": "Idiomas"
},
"$:/language/ControlPanel/Plugins/Languages/Hint": {
"title": "$:/language/ControlPanel/Plugins/Languages/Hint",
"text": "Extensões de pacotes de idiomas"
},
"$:/language/ControlPanel/Plugins/NoInfoFound/Hint": {
"title": "$:/language/ControlPanel/Plugins/NoInfoFound/Hint",
"text": "''\"<$text text=<<currentTab>>/>\"'' não encontrado"
},
"$:/language/ControlPanel/Plugins/NoInformation/Hint": {
"title": "$:/language/ControlPanel/Plugins/NoInformation/Hint",
"text": "Nenhuma informação fornecida"
},
"$:/language/ControlPanel/Plugins/NotInstalled/Hint": {
"title": "$:/language/ControlPanel/Plugins/NotInstalled/Hint",
"text": "Esta extensão não está instalada"
},
"$:/language/ControlPanel/Plugins/OpenPluginLibrary": {
"title": "$:/language/ControlPanel/Plugins/OpenPluginLibrary",
"text": "Abrir biblioteca de extensões"
},
"$:/language/ControlPanel/Plugins/Plugin/Prompt": {
"title": "$:/language/ControlPanel/Plugins/Plugin/Prompt",
"text": "Extensões"
},
"$:/language/ControlPanel/Plugins/Plugins/Caption": {
"title": "$:/language/ControlPanel/Plugins/Plugins/Caption",
"text": "Extensões"
},
"$:/language/ControlPanel/Plugins/Plugins/Hint": {
"title": "$:/language/ControlPanel/Plugins/Plugins/Hint",
"text": "Extensões"
},
"$:/language/ControlPanel/Plugins/Reinstall/Caption": {
"title": "$:/language/ControlPanel/Plugins/Reinstall/Caption",
"text": "Reinstalar"
},
"$:/language/ControlPanel/Plugins/Theme/Prompt": {
"title": "$:/language/ControlPanel/Plugins/Theme/Prompt",
"text": "Estilos"
},
"$:/language/ControlPanel/Plugins/Themes/Caption": {
"title": "$:/language/ControlPanel/Plugins/Themes/Caption",
"text": "Estilo da Página"
},
"$:/language/ControlPanel/Plugins/Themes/Hint": {
"title": "$:/language/ControlPanel/Plugins/Themes/Hint",
"text": "Extensões de Temas"
},
"$:/language/ControlPanel/Saving/Caption": {
"title": "$:/language/ControlPanel/Saving/Caption",
"text": "Backups"
},
"$:/language/ControlPanel/Saving/DownloadSaver/AutoSave/Description": {
"title": "$:/language/ControlPanel/Saving/DownloadSaver/AutoSave/Description",
"text": "Aplicar as configurações a todas copias protegidas"
},
"$:/language/ControlPanel/Saving/DownloadSaver/Caption": {
"title": "$:/language/ControlPanel/Saving/DownloadSaver/Caption",
"text": "Geral"
},
"$:/language/ControlPanel/Saving/DownloadSaver/Hint": {
"title": "$:/language/ControlPanel/Saving/DownloadSaver/Hint",
"text": "Aplica configurações compatível com HTML5- no Download Seguro"
},
"$:/language/ControlPanel/Saving/General/Caption": {
"title": "$:/language/ControlPanel/Saving/General/Caption",
"text": "Download Seguro"
},
"$:/language/ControlPanel/Saving/General/Hint": {
"title": "$:/language/ControlPanel/Saving/General/Hint",
"text": "Ativar Autosalvar no Download Seguro"
},
"$:/language/ControlPanel/Saving/Heading": {
"title": "$:/language/ControlPanel/Saving/Heading",
"text": "Salvando"
},
"$:/language/ControlPanel/Saving/Hint": {
"title": "$:/language/ControlPanel/Saving/Hint",
"text": "Configurações usadas para salvar todo o TiddlyWiki como um único arquivo através do módulo de proteção"
},
"$:/language/ControlPanel/Saving/TiddlySpot/Advanced/Heading": {
"title": "$:/language/ControlPanel/Saving/TiddlySpot/Advanced/Heading",
"text": "Definições Avançadas"
},
"$:/language/ControlPanel/Saving/TiddlySpot/BackupDir": {
"title": "$:/language/ControlPanel/Saving/TiddlySpot/BackupDir",
"text": "Diretório de cópias de segurança"
},
"$:/language/ControlPanel/Saving/TiddlySpot/Backups": {
"title": "$:/language/ControlPanel/Saving/TiddlySpot/Backups",
"text": "Cópias de Segurança"
},
"$:/language/ControlPanel/Saving/TiddlySpot/Description": {
"title": "$:/language/ControlPanel/Saving/TiddlySpot/Description",
"text": "Estas definições só serão utilizadas quando gravar para http://tiddlyspot.com ou um servidor remoto compatível"
},
"$:/language/ControlPanel/Saving/TiddlySpot/Filename": {
"title": "$:/language/ControlPanel/Saving/TiddlySpot/Filename",
"text": "Nome do arquivo para envio"
},
"$:/language/ControlPanel/Saving/TiddlySpot/Heading": {
"title": "$:/language/ControlPanel/Saving/TiddlySpot/Heading",
"text": "~TiddlySpot"
},
"$:/language/ControlPanel/Saving/TiddlySpot/Hint": {
"title": "$:/language/ControlPanel/Saving/TiddlySpot/Hint",
"text": "//O URL por padrão será `http://<wikiname>.tiddlyspot.com/store.cgi` e pode ser alterado para utilizar um endereço de servidor personalizado//"
},
"$:/language/ControlPanel/Saving/TiddlySpot/Password": {
"title": "$:/language/ControlPanel/Saving/TiddlySpot/Password",
"text": "Senha"
},
"$:/language/ControlPanel/Saving/TiddlySpot/ServerURL": {
"title": "$:/language/ControlPanel/Saving/TiddlySpot/ServerURL",
"text": "URL do Servidor"
},
"$:/language/ControlPanel/Saving/TiddlySpot/UploadDir": {
"title": "$:/language/ControlPanel/Saving/TiddlySpot/UploadDir",
"text": "Diretório de Envio"
},
"$:/language/ControlPanel/Saving/TiddlySpot/UserName": {
"title": "$:/language/ControlPanel/Saving/TiddlySpot/UserName",
"text": "Usuário de acesso"
},
"$:/language/ControlPanel/Settings/AutoSave/Caption": {
"title": "$:/language/ControlPanel/Settings/AutoSave/Caption",
"text": "Gravação Automática"
},
"$:/language/ControlPanel/Settings/AutoSave/Disabled/Description": {
"title": "$:/language/ControlPanel/Settings/AutoSave/Disabled/Description",
"text": "Não fazer gravação automática"
},
"$:/language/ControlPanel/Settings/AutoSave/Enabled/Description": {
"title": "$:/language/ControlPanel/Settings/AutoSave/Enabled/Description",
"text": "Fazer gravação automática"
},
"$:/language/ControlPanel/Settings/AutoSave/Hint": {
"title": "$:/language/ControlPanel/Settings/AutoSave/Hint",
"text": "Salvar alterações automaticamente durante a edição"
},
"$:/language/ControlPanel/Settings/CamelCase/Caption": {
"title": "$:/language/ControlPanel/Settings/CamelCase/Caption",
"text": "Link Wiki em Camel Case"
},
"$:/language/ControlPanel/Settings/CamelCase/Description": {
"title": "$:/language/ControlPanel/Settings/CamelCase/Description",
"text": "Ativar link em frases ~CamelCase automaticamente"
},
"$:/language/ControlPanel/Settings/CamelCase/Hint": {
"title": "$:/language/ControlPanel/Settings/CamelCase/Hint",
"text": "Pode desativar a criação automática de link em frases em ~CamelCase. Requer reiniciar o texto para que tome efeito"
},
"$:/language/ControlPanel/Settings/Caption": {
"title": "$:/language/ControlPanel/Settings/Caption",
"text": "Definições"
},
"$:/language/ControlPanel/Settings/DefaultSidebarTab/Caption": {
"title": "$:/language/ControlPanel/Settings/DefaultSidebarTab/Caption",
"text": "Separador da barra lateral pré-definido"
},
"$:/language/ControlPanel/Settings/DefaultSidebarTab/Hint": {
"title": "$:/language/ControlPanel/Settings/DefaultSidebarTab/Hint",
"text": "Definir que separador da barra lateral é exibido por padrão"
},
"$:/language/ControlPanel/Settings/EditorToolbar/Caption": {
"title": "$:/language/ControlPanel/Settings/EditorToolbar/Caption",
"text": "Barra de Ferramentas do Editor"
},
"$:/language/ControlPanel/Settings/EditorToolbar/Description": {
"title": "$:/language/ControlPanel/Settings/EditorToolbar/Description",
"text": "Mostrar barra de ferramentas do editor"
},
"$:/language/ControlPanel/Settings/EditorToolbar/Hint": {
"title": "$:/language/ControlPanel/Settings/EditorToolbar/Hint",
"text": "Ativar ou desativar a barra de ferramentas do editor"
},
"$:/language/ControlPanel/Settings/Hint": {
"title": "$:/language/ControlPanel/Settings/Hint",
"text": "Estas definições permitem personalizar o comportamento da TiddlyWiki."
},
"$:/language/ControlPanel/Settings/InfoPanelMode/Caption": {
"title": "$:/language/ControlPanel/Settings/InfoPanelMode/Caption",
"text": "Modo Painel de Informações do Tiddler"
},
"$:/language/ControlPanel/Settings/InfoPanelMode/Hint": {
"title": "$:/language/ControlPanel/Settings/InfoPanelMode/Hint",
"text": "Controle quando o painel informações tiddler fecha:"
},
"$:/language/ControlPanel/Settings/InfoPanelMode/Popup/Description": {
"title": "$:/language/ControlPanel/Settings/InfoPanelMode/Popup/Description",
"text": "Painel informações Tiddler fecha automaticamente"
},
"$:/language/ControlPanel/Settings/InfoPanelMode/Sticky/Description": {
"title": "$:/language/ControlPanel/Settings/InfoPanelMode/Sticky/Description",
"text": "Manter o Painel informações Tiddler aberto até ser explicitamente fechado"
},
"$:/language/ControlPanel/Settings/LinkToBehaviour/Caption": {
"title": "$:/language/ControlPanel/Settings/LinkToBehaviour/Caption",
"text": "Comportamento de Abertura de Tiddlers"
},
"$:/language/ControlPanel/Settings/LinkToBehaviour/InsideRiver/Hint": {
"title": "$:/language/ControlPanel/Settings/LinkToBehaviour/InsideRiver/Hint",
"text": "Navegação do //interior// do frame de tiddlers"
},
"$:/language/ControlPanel/Settings/LinkToBehaviour/OpenAbove": {
"title": "$:/language/ControlPanel/Settings/LinkToBehaviour/OpenAbove",
"text": "Abrir acima do tiddler atual"
},
"$:/language/ControlPanel/Settings/LinkToBehaviour/OpenAtBottom": {
"title": "$:/language/ControlPanel/Settings/LinkToBehaviour/OpenAtBottom",
"text": "Abrir no fim do frame de tiddlers"
},
"$:/language/ControlPanel/Settings/LinkToBehaviour/OpenAtTop": {
"title": "$:/language/ControlPanel/Settings/LinkToBehaviour/OpenAtTop",
"text": "Abrir no topo do frame de tiddlers"
},
"$:/language/ControlPanel/Settings/LinkToBehaviour/OpenBelow": {
"title": "$:/language/ControlPanel/Settings/LinkToBehaviour/OpenBelow",
"text": "Abrir abaixo do tiddler atual"
},
"$:/language/ControlPanel/Settings/LinkToBehaviour/OutsideRiver/Hint": {
"title": "$:/language/ControlPanel/Settings/LinkToBehaviour/OutsideRiver/Hint",
"text": "Navegação do //exterior // do frame de tiddlers"
},
"$:/language/ControlPanel/Settings/MissingLinks/Caption": {
"title": "$:/language/ControlPanel/Settings/MissingLinks/Caption",
"text": "Link Wiki"
},
"$:/language/ControlPanel/Settings/MissingLinks/Description": {
"title": "$:/language/ControlPanel/Settings/MissingLinks/Description",
"text": "Ativar link para tiddlers em falta"
},
"$:/language/ControlPanel/Settings/MissingLinks/Hint": {
"title": "$:/language/ControlPanel/Settings/MissingLinks/Hint",
"text": "Selecione se quiser link para tiddlers que ainda não existem"
},
"$:/language/ControlPanel/Settings/NavigationAddressBar/Caption": {
"title": "$:/language/ControlPanel/Settings/NavigationAddressBar/Caption",
"text": "Barra de Endereços de Navegação"
},
"$:/language/ControlPanel/Settings/NavigationAddressBar/Hint": {
"title": "$:/language/ControlPanel/Settings/NavigationAddressBar/Hint",
"text": "Comportamento da barra de endereços do navegador quando abrir um tiddler:"
},
"$:/language/ControlPanel/Settings/NavigationAddressBar/No/Description": {
"title": "$:/language/ControlPanel/Settings/NavigationAddressBar/No/Description",
"text": "Não atualizar a barra de endereços"
},
"$:/language/ControlPanel/Settings/NavigationAddressBar/Permalink/Description": {
"title": "$:/language/ControlPanel/Settings/NavigationAddressBar/Permalink/Description",
"text": "Incluir o tiddler de destino"
},
"$:/language/ControlPanel/Settings/NavigationAddressBar/Permaview/Description": {
"title": "$:/language/ControlPanel/Settings/NavigationAddressBar/Permaview/Description",
"text": "Incluir o tiddler de destino e toda a sequência em exibição"
},
"$:/language/ControlPanel/Settings/NavigationHistory/Caption": {
"title": "$:/language/ControlPanel/Settings/NavigationHistory/Caption",
"text": "Histórico de Navegação"
},
"$:/language/ControlPanel/Settings/NavigationHistory/Hint": {
"title": "$:/language/ControlPanel/Settings/NavigationHistory/Hint",
"text": "Atualizar o histórico do navegador quando navegar para um tiddler"
},
"$:/language/ControlPanel/Settings/NavigationHistory/No/Description": {
"title": "$:/language/ControlPanel/Settings/NavigationHistory/No/Description",
"text": "Não atualizar o histórico"
},
"$:/language/ControlPanel/Settings/NavigationHistory/Yes/Description": {
"title": "$:/language/ControlPanel/Settings/NavigationHistory/Yes/Description",
"text": "Atualizar o histórico"
},
"$:/language/ControlPanel/Settings/PerformanceInstrumentation/Caption": {
"title": "$:/language/ControlPanel/Settings/PerformanceInstrumentation/Caption",
"text": "O painel de instrumentos de desempenho"
},
"$:/language/ControlPanel/Settings/PerformanceInstrumentation/Description": {
"title": "$:/language/ControlPanel/Settings/PerformanceInstrumentation/Description",
"text": "Ativar instrumentos de desempenho"
},
"$:/language/ControlPanel/Settings/PerformanceInstrumentation/Hint": {
"title": "$:/language/ControlPanel/Settings/PerformanceInstrumentation/Hint",
"text": "Exibe estatísticas de performance na consola de desenvolvimento do navegador. Requer recarregamento para que tome efeito"
},
"$:/language/ControlPanel/Settings/TitleLinks/Caption": {
"title": "$:/language/ControlPanel/Settings/TitleLinks/Caption",
"text": "Títulos dos Tiddlers"
},
"$:/language/ControlPanel/Settings/TitleLinks/Hint": {
"title": "$:/language/ControlPanel/Settings/TitleLinks/Hint",
"text": "Exibir opcionalmente títulos dos tiddlers como link"
},
"$:/language/ControlPanel/Settings/TitleLinks/No/Description": {
"title": "$:/language/ControlPanel/Settings/TitleLinks/No/Description",
"text": "Não exibir títulos dos tiddlers como link"
},
"$:/language/ControlPanel/Settings/TitleLinks/Yes/Description": {
"title": "$:/language/ControlPanel/Settings/TitleLinks/Yes/Description",
"text": "Exibir títulos dos tiddlers como link"
},
"$:/language/ControlPanel/Settings/ToolbarButtons/Caption": {
"title": "$:/language/ControlPanel/Settings/ToolbarButtons/Caption",
"text": "Botões da Barra de Ferramentas"
},
"$:/language/ControlPanel/Settings/ToolbarButtons/Hint": {
"title": "$:/language/ControlPanel/Settings/ToolbarButtons/Hint",
"text": "Aparência pré definida dos botões da barra de ferramentas:"
},
"$:/language/ControlPanel/Settings/ToolbarButtons/Icons/Description": {
"title": "$:/language/ControlPanel/Settings/ToolbarButtons/Icons/Description",
"text": "Incluir ícone"
},
"$:/language/ControlPanel/Settings/ToolbarButtons/Text/Description": {
"title": "$:/language/ControlPanel/Settings/ToolbarButtons/Text/Description",
"text": "Incluir texto"
},
"$:/language/ControlPanel/Settings/ToolbarButtonStyle/Caption": {
"title": "$:/language/ControlPanel/Settings/ToolbarButtonStyle/Caption",
"text": "Estilo dos botões da barra de ferramentas"
},
"$:/language/ControlPanel/Settings/ToolbarButtonStyle/Hint": {
"title": "$:/language/ControlPanel/Settings/ToolbarButtonStyle/Hint",
"text": "Escolha o estilo dos botões da barra de ferramentas:"
},
"$:/language/ControlPanel/Settings/ToolbarButtonStyle/Styles/Borderless": {
"title": "$:/language/ControlPanel/Settings/ToolbarButtonStyle/Styles/Borderless",
"text": "Sem moldura"
},
"$:/language/ControlPanel/Settings/ToolbarButtonStyle/Styles/Boxed": {
"title": "$:/language/ControlPanel/Settings/ToolbarButtonStyle/Styles/Boxed",
"text": "Caixa"
},
"$:/language/ControlPanel/Settings/ToolbarButtonStyle/Styles/Rounded": {
"title": "$:/language/ControlPanel/Settings/ToolbarButtonStyle/Styles/Rounded",
"text": "Arredondados"
},
"$:/language/ControlPanel/StoryView/Caption": {
"title": "$:/language/ControlPanel/StoryView/Caption",
"text": "Estilo de Exibição"
},
"$:/language/ControlPanel/StoryView/Prompt": {
"title": "$:/language/ControlPanel/StoryView/Prompt",
"text": "Estilo:"
},
"$:/language/ControlPanel/Theme/Caption": {
"title": "$:/language/ControlPanel/Theme/Caption",
"text": "Estilo"
},
"$:/language/ControlPanel/Theme/Prompt": {
"title": "$:/language/ControlPanel/Theme/Prompt",
"text": "O tema que está usado agora é o"
},
"$:/language/ControlPanel/TiddlerFields/Caption": {
"title": "$:/language/ControlPanel/TiddlerFields/Caption",
"text": "Campos dos Tiddlers"
},
"$:/language/ControlPanel/TiddlerFields/Hint": {
"title": "$:/language/ControlPanel/TiddlerFields/Hint",
"text": "Esta é uma lista completa dos campos dos tiddlers em utilização nesta wiki (incluindo tiddlers de sistema mas excluindo tiddlers-sombra)."
},
"$:/language/ControlPanel/Toolbars/Caption": {
"title": "$:/language/ControlPanel/Toolbars/Caption",
"text": "Botões de Controle"
},
"$:/language/ControlPanel/Toolbars/EditorToolbar/Caption": {
"title": "$:/language/ControlPanel/Toolbars/EditorToolbar/Caption",
"text": "Botões do editor de textos"
},
"$:/language/ControlPanel/Toolbars/EditorToolbar/Hint": {
"title": "$:/language/ControlPanel/Toolbars/EditorToolbar/Hint",
"text": "Escolha que botões devem ser exibidos na barra de ferramentas do editor. Alguns botões só serão exibidos enquanto edita tiddlers de um determinado formato"
},
"$:/language/ControlPanel/Toolbars/EditToolbar/Caption": {
"title": "$:/language/ControlPanel/Toolbars/EditToolbar/Caption",
"text": "Botões do modo de edição"
},
"$:/language/ControlPanel/Toolbars/EditToolbar/Hint": {
"title": "$:/language/ControlPanel/Toolbars/EditToolbar/Hint",
"text": "Escolher que botões são exibidos para tiddlers em modo de edição"
},
"$:/language/ControlPanel/Toolbars/Hint": {
"title": "$:/language/ControlPanel/Toolbars/Hint",
"text": "Seleccionar que botões da barra de ferramentas são exibidos"
},
"$:/language/ControlPanel/Toolbars/PageControls/Caption": {
"title": "$:/language/ControlPanel/Toolbars/PageControls/Caption",
"text": "Botões da barra de menu"
},
"$:/language/ControlPanel/Toolbars/PageControls/Hint": {
"title": "$:/language/ControlPanel/Toolbars/PageControls/Hint",
"text": "Escolher que botões são exibidos na barra de ferramentas principal da página"
},
"$:/language/ControlPanel/Toolbars/ViewToolbar/Caption": {
"title": "$:/language/ControlPanel/Toolbars/ViewToolbar/Caption",
"text": "Botões de opções do tiddler"
},
"$:/language/ControlPanel/Toolbars/ViewToolbar/Hint": {
"title": "$:/language/ControlPanel/Toolbars/ViewToolbar/Hint",
"text": "Escolher que botões são exibidos para tiddlers em modo de visualização"
},
"$:/language/ControlPanel/Tools/Download/Full/Caption": {
"title": "$:/language/ControlPanel/Tools/Download/Full/Caption",
"text": "Transferir wiki completa"
},
"$:/core/pt-BR/readme": {
"title": "$:/core/pt-BR/readme",
"text": "Esta extensão contém os componentes principais da TiddlyWiki compostos por:\n\n* Módulos de código JavaScript\n* Ícones\n* Modelos necessários para criar o interface do usuário da TiddlyWiki\n* Traduções em Inglês Britânico (en-GB) dos textos traduzíveis utilizados pelo núcleo\n"
},
"$:/language/Date/DaySuffix/1": {
"title": "$:/language/Date/DaySuffix/1",
"text": "°"
},
"$:/language/Date/DaySuffix/10": {
"title": "$:/language/Date/DaySuffix/10",
"text": ""
},
"$:/language/Date/DaySuffix/11": {
"title": "$:/language/Date/DaySuffix/11",
"text": ""
},
"$:/language/Date/DaySuffix/12": {
"title": "$:/language/Date/DaySuffix/12",
"text": ""
},
"$:/language/Date/DaySuffix/13": {
"title": "$:/language/Date/DaySuffix/13",
"text": ""
},
"$:/language/Date/DaySuffix/14": {
"title": "$:/language/Date/DaySuffix/14",
"text": ""
},
"$:/language/Date/DaySuffix/15": {
"title": "$:/language/Date/DaySuffix/15",
"text": ""
},
"$:/language/Date/DaySuffix/16": {
"title": "$:/language/Date/DaySuffix/16",
"text": ""
},
"$:/language/Date/DaySuffix/17": {
"title": "$:/language/Date/DaySuffix/17",
"text": ""
},
"$:/language/Date/DaySuffix/18": {
"title": "$:/language/Date/DaySuffix/18",
"text": ""
},
"$:/language/Date/DaySuffix/19": {
"title": "$:/language/Date/DaySuffix/19",
"text": ""
},
"$:/language/Date/DaySuffix/2": {
"title": "$:/language/Date/DaySuffix/2",
"text": ""
},
"$:/language/Date/DaySuffix/20": {
"title": "$:/language/Date/DaySuffix/20",
"text": ""
},
"$:/language/Date/DaySuffix/21": {
"title": "$:/language/Date/DaySuffix/21",
"text": ""
},
"$:/language/Date/DaySuffix/22": {
"title": "$:/language/Date/DaySuffix/22",
"text": ""
},
"$:/language/Date/DaySuffix/23": {
"title": "$:/language/Date/DaySuffix/23",
"text": ""
},
"$:/language/Date/DaySuffix/24": {
"title": "$:/language/Date/DaySuffix/24",
"text": ""
},
"$:/language/Date/DaySuffix/25": {
"title": "$:/language/Date/DaySuffix/25",
"text": ""
},
"$:/language/Date/DaySuffix/26": {
"title": "$:/language/Date/DaySuffix/26",
"text": ""
},
"$:/language/Date/DaySuffix/27": {
"title": "$:/language/Date/DaySuffix/27",
"text": ""
},
"$:/language/Date/DaySuffix/28": {
"title": "$:/language/Date/DaySuffix/28",
"text": ""
},
"$:/language/Date/DaySuffix/29": {
"title": "$:/language/Date/DaySuffix/29",
"text": ""
},
"$:/language/Date/DaySuffix/3": {
"title": "$:/language/Date/DaySuffix/3",
"text": ""
},
"$:/language/Date/DaySuffix/30": {
"title": "$:/language/Date/DaySuffix/30",
"text": ""
},
"$:/language/Date/DaySuffix/31": {
"title": "$:/language/Date/DaySuffix/31",
"text": ""
},
"$:/language/Date/DaySuffix/4": {
"title": "$:/language/Date/DaySuffix/4",
"text": ""
},
"$:/language/Date/DaySuffix/5": {
"title": "$:/language/Date/DaySuffix/5",
"text": ""
},
"$:/language/Date/DaySuffix/6": {
"title": "$:/language/Date/DaySuffix/6",
"text": ""
},
"$:/language/Date/DaySuffix/7": {
"title": "$:/language/Date/DaySuffix/7",
"text": ""
},
"$:/language/Date/DaySuffix/8": {
"title": "$:/language/Date/DaySuffix/8",
"text": ""
},
"$:/language/Date/DaySuffix/9": {
"title": "$:/language/Date/DaySuffix/9",
"text": ""
},
"$:/language/Date/Long/Day/0": {
"title": "$:/language/Date/Long/Day/0",
"text": "Domingo"
},
"$:/language/Date/Long/Day/1": {
"title": "$:/language/Date/Long/Day/1",
"text": "Segunda"
},
"$:/language/Date/Long/Day/2": {
"title": "$:/language/Date/Long/Day/2",
"text": "Terça"
},
"$:/language/Date/Long/Day/3": {
"title": "$:/language/Date/Long/Day/3",
"text": "Quarta"
},
"$:/language/Date/Long/Day/4": {
"title": "$:/language/Date/Long/Day/4",
"text": "Quinta"
},
"$:/language/Date/Long/Day/5": {
"title": "$:/language/Date/Long/Day/5",
"text": "Sexta"
},
"$:/language/Date/Long/Day/6": {
"title": "$:/language/Date/Long/Day/6",
"text": "Sábado"
},
"$:/language/Date/Long/Month/1": {
"title": "$:/language/Date/Long/Month/1",
"text": "Janeiro"
},
"$:/language/Date/Long/Month/10": {
"title": "$:/language/Date/Long/Month/10",
"text": "Outubro"
},
"$:/language/Date/Long/Month/11": {
"title": "$:/language/Date/Long/Month/11",
"text": "Novembro"
},
"$:/language/Date/Long/Month/12": {
"title": "$:/language/Date/Long/Month/12",
"text": "Dezembro"
},
"$:/language/Date/Long/Month/2": {
"title": "$:/language/Date/Long/Month/2",
"text": "Fevereiro"
},
"$:/language/Date/Long/Month/3": {
"title": "$:/language/Date/Long/Month/3",
"text": "Março"
},
"$:/language/Date/Long/Month/4": {
"title": "$:/language/Date/Long/Month/4",
"text": "Abril"
},
"$:/language/Date/Long/Month/5": {
"title": "$:/language/Date/Long/Month/5",
"text": "Maio"
},
"$:/language/Date/Long/Month/6": {
"title": "$:/language/Date/Long/Month/6",
"text": "Junho"
},
"$:/language/Date/Long/Month/7": {
"title": "$:/language/Date/Long/Month/7",
"text": "Julho"
},
"$:/language/Date/Long/Month/8": {
"title": "$:/language/Date/Long/Month/8",
"text": "Agosto"
},
"$:/language/Date/Long/Month/9": {
"title": "$:/language/Date/Long/Month/9",
"text": "Setembro"
},
"$:/language/Date/Period/pm": {
"title": "$:/language/Date/Period/pm",
"text": "pm"
},
"$:/language/Date/Short/Day/0": {
"title": "$:/language/Date/Short/Day/0",
"text": "Dom"
},
"$:/language/Date/Short/Day/1": {
"title": "$:/language/Date/Short/Day/1",
"text": "Seg"
},
"$:/language/Date/Short/Day/2": {
"title": "$:/language/Date/Short/Day/2",
"text": "Ter"
},
"$:/language/Date/Short/Day/3": {
"title": "$:/language/Date/Short/Day/3",
"text": "Qua"
},
"$:/language/Date/Short/Day/4": {
"title": "$:/language/Date/Short/Day/4",
"text": "Qui"
},
"$:/language/Date/Short/Day/5": {
"title": "$:/language/Date/Short/Day/5",
"text": "Sex"
},
"$:/language/Date/Short/Day/6": {
"title": "$:/language/Date/Short/Day/6",
"text": "Sab"
},
"$:/language/Date/Short/Month/1": {
"title": "$:/language/Date/Short/Month/1",
"text": "Jan"
},
"$:/language/Date/Short/Month/10": {
"title": "$:/language/Date/Short/Month/10",
"text": "Out"
},
"$:/language/Date/Short/Month/11": {
"title": "$:/language/Date/Short/Month/11",
"text": "Nov"
},
"$:/language/Date/Short/Month/12": {
"title": "$:/language/Date/Short/Month/12",
"text": "Dez"
},
"$:/language/Date/Short/Month/2": {
"title": "$:/language/Date/Short/Month/2",
"text": "Fev"
},
"$:/language/Date/Short/Month/3": {
"title": "$:/language/Date/Short/Month/3",
"text": "Mar"
},
"$:/language/Date/Short/Month/4": {
"title": "$:/language/Date/Short/Month/4",
"text": "Abr"
},
"$:/language/Date/Short/Month/5": {
"title": "$:/language/Date/Short/Month/5",
"text": "Mai"
},
"$:/language/Date/Short/Month/6": {
"title": "$:/language/Date/Short/Month/6",
"text": "Jun"
},
"$:/language/Date/Short/Month/7": {
"title": "$:/language/Date/Short/Month/7",
"text": "Jul"
},
"$:/language/Date/Short/Month/8": {
"title": "$:/language/Date/Short/Month/8",
"text": "Ago"
},
"$:/language/Date/Short/Month/9": {
"title": "$:/language/Date/Short/Month/9",
"text": "Set"
},
"$:/language/RelativeDate/Future/Days": {
"title": "$:/language/RelativeDate/Future/Days",
"text": "Dentro de <<period>> dias"
},
"$:/language/RelativeDate/Future/Hours": {
"title": "$:/language/RelativeDate/Future/Hours",
"text": "Dentro de <<period>> horas"
},
"$:/language/RelativeDate/Future/Minutes": {
"title": "$:/language/RelativeDate/Future/Minutes",
"text": "Dentro de <<period>> minutos"
},
"$:/language/RelativeDate/Future/Months": {
"title": "$:/language/RelativeDate/Future/Months",
"text": "Dentro de <<period>> meses"
},
"$:/language/RelativeDate/Future/Second": {
"title": "$:/language/RelativeDate/Future/Second",
"text": "Daqui a 1 segundo"
},
"$:/language/RelativeDate/Future/Seconds": {
"title": "$:/language/RelativeDate/Future/Seconds",
"text": "Dentro de <<period>> segundos"
},
"$:/language/RelativeDate/Future/Years": {
"title": "$:/language/RelativeDate/Future/Years",
"text": "Dentro de <<period>> anos"
},
"$:/language/RelativeDate/Past/Days": {
"title": "$:/language/RelativeDate/Past/Days",
"text": "Há <<period>> dias"
},
"$:/language/RelativeDate/Past/Hours": {
"title": "$:/language/RelativeDate/Past/Hours",
"text": "Há <<period>> horas"
},
"$:/language/RelativeDate/Past/Minutes": {
"title": "$:/language/RelativeDate/Past/Minutes",
"text": "Há <<period>> minutos"
},
"$:/language/RelativeDate/Past/Months": {
"title": "$:/language/RelativeDate/Past/Months",
"text": "Há <<period>> meses"
},
"$:/language/RelativeDate/Past/Second": {
"title": "$:/language/RelativeDate/Past/Second",
"text": "Há 1 segundo"
},
"$:/language/RelativeDate/Past/Seconds": {
"title": "$:/language/RelativeDate/Past/Seconds",
"text": "Há <<period>> segundos"
},
"$:/language/RelativeDate/Past/Years": {
"title": "$:/language/RelativeDate/Past/Years",
"text": "Há <<period>> anos"
},
"$:/language/Docs/ModuleTypes/allfilteroperator": {
"title": "$:/language/Docs/ModuleTypes/allfilteroperator",
"text": "Uma sub-operador para \"todos\" operadoradores de filtro."
},
"$:/language/Docs/ModuleTypes/animation": {
"title": "$:/language/Docs/ModuleTypes/animation",
"text": "Animações que podem ser utilizadas com a RevealWidget."
},
"$:/language/Docs/ModuleTypes/bitmapeditoroperation": {
"title": "$:/language/Docs/ModuleTypes/bitmapeditoroperation",
"text": "Uma barra de ferramentas para edições de bitmap."
},
"$:/language/Docs/ModuleTypes/command": {
"title": "$:/language/Docs/ModuleTypes/command",
"text": "Comandos que podem ser executados no Node.js."
},
"$:/language/Docs/ModuleTypes/config": {
"title": "$:/language/Docs/ModuleTypes/config",
"text": "Informação a ser inserida em `$tw.config`."
},
"$:/language/Docs/ModuleTypes/filteroperator": {
"title": "$:/language/Docs/ModuleTypes/filteroperator",
"text": "Métodos de filtragem individuais."
},
"$:/language/Docs/ModuleTypes/global": {
"title": "$:/language/Docs/ModuleTypes/global",
"text": "Informação global a ser inserida em `$tw`."
},
"$:/language/Docs/ModuleTypes/info": {
"title": "$:/language/Docs/ModuleTypes/info",
"text": "Publica informações do sistema através do [[$:/temp/info-plugin]] pseudo-plugin."
},
"$:/language/Docs/ModuleTypes/isfilteroperator": {
"title": "$:/language/Docs/ModuleTypes/isfilteroperator",
"text": "Operandos para o operador de filtragem ''is''."
},
"$:/language/Docs/ModuleTypes/library": {
"title": "$:/language/Docs/ModuleTypes/library",
"text": "Tipo de módulo genérico para fins gerais de módulos JavaScript."
},
"$:/language/Docs/ModuleTypes/macro": {
"title": "$:/language/Docs/ModuleTypes/macro",
"text": "Definições de macros JavaScript."
},
"$:/language/Docs/ModuleTypes/parser": {
"title": "$:/language/Docs/ModuleTypes/parser",
"text": "Interpretadores para diferentes tipos de conteúdo."
},
"$:/language/Docs/ModuleTypes/saver": {
"title": "$:/language/Docs/ModuleTypes/saver",
"text": "Os savers controlam diferentes métodos para salvar arquivos a partir do navegador."
},
"$:/language/Docs/ModuleTypes/startup": {
"title": "$:/language/Docs/ModuleTypes/startup",
"text": "Funções de arranque."
},
"$:/language/Docs/ModuleTypes/storyview": {
"title": "$:/language/Docs/ModuleTypes/storyview",
"text": "As story views personalizam as animações e comportamento das ferramentas de listagem."
},
"$:/language/Docs/ModuleTypes/texteditoroperation": {
"title": "$:/language/Docs/ModuleTypes/texteditoroperation",
"text": "Uma barra de ferramentas do editor de texto."
},
"$:/language/Docs/ModuleTypes/tiddlerdeserializer": {
"title": "$:/language/Docs/ModuleTypes/tiddlerdeserializer",
"text": "Converte diferentes tipos de conteúdo em tiddlers."
},
"$:/language/Docs/ModuleTypes/tiddlerfield": {
"title": "$:/language/Docs/ModuleTypes/tiddlerfield",
"text": "Define o comportamento individual de um campo de tiddler."
},
"$:/language/Docs/ModuleTypes/tiddlermethod": {
"title": "$:/language/Docs/ModuleTypes/tiddlermethod",
"text": "Adiciona um método ao protótipo `$tw.Tiddler`."
},
"$:/language/Docs/ModuleTypes/upgrader": {
"title": "$:/language/Docs/ModuleTypes/upgrader",
"text": "Aplica processamento de atualização durante o processo de importação/atualização de versão."
},
"$:/language/Docs/ModuleTypes/utils": {
"title": "$:/language/Docs/ModuleTypes/utils",
"text": "Adiciona métodos a `$tw.utils`."
},
"$:/language/Docs/ModuleTypes/utils-node": {
"title": "$:/language/Docs/ModuleTypes/utils-node",
"text": "Adiciona métodos específicos para o Node.js a `$tw.utils`."
},
"$:/language/Docs/ModuleTypes/widget": {
"title": "$:/language/Docs/ModuleTypes/widget",
"text": "As ferramentas widgets contém representação e atualização de DOM."
},
"$:/language/Docs/ModuleTypes/wikimethod": {
"title": "$:/language/Docs/ModuleTypes/wikimethod",
"text": "Adiciona métodos a `$tw.Wiki`."
},
"$:/language/Docs/ModuleTypes/wikirule": {
"title": "$:/language/Docs/ModuleTypes/wikirule",
"text": "Regras individuais de interpretação para o interpretador principal de WikiText."
},
"$:/language/Docs/PaletteColours/alert-background": {
"title": "$:/language/Docs/PaletteColours/alert-background",
"text": "Fundo de alertas"
},
"$:/language/Docs/PaletteColours/alert-border": {
"title": "$:/language/Docs/PaletteColours/alert-border",
"text": "Margem de alertas"
},
"$:/language/Docs/PaletteColours/alert-highlight": {
"title": "$:/language/Docs/PaletteColours/alert-highlight",
"text": "Realce de alertas"
},
"$:/language/Docs/PaletteColours/alert-muted-foreground": {
"title": "$:/language/Docs/PaletteColours/alert-muted-foreground",
"text": "Fundo de alertas silenciados"
},
"$:/language/Docs/PaletteColours/background": {
"title": "$:/language/Docs/PaletteColours/background",
"text": "Fundo geral"
},
"$:/language/Docs/PaletteColours/blockquote-bar": {
"title": "$:/language/Docs/PaletteColours/blockquote-bar",
"text": "Barra de citação"
},
"$:/language/Docs/PaletteColours/button-background": {
"title": "$:/language/Docs/PaletteColours/button-background",
"text": "Fundo de botão pré-definido"
},
"$:/language/Docs/PaletteColours/button-border": {
"title": "$:/language/Docs/PaletteColours/button-border",
"text": "Moldura de botão pré-definido"
},
"$:/language/Docs/PaletteColours/button-foreground": {
"title": "$:/language/Docs/PaletteColours/button-foreground",
"text": "Primeiro plano de botão pré-definido"
},
"$:/language/Docs/PaletteColours/code-background": {
"title": "$:/language/Docs/PaletteColours/code-background",
"text": "Fundo de código"
},
"$:/language/Docs/PaletteColours/code-border": {
"title": "$:/language/Docs/PaletteColours/code-border",
"text": "Margem de código"
},
"$:/language/Docs/PaletteColours/code-foreground": {
"title": "$:/language/Docs/PaletteColours/code-foreground",
"text": "Primeiro plano de código"
},
"$:/language/Docs/PaletteColours/dirty-indicator": {
"title": "$:/language/Docs/PaletteColours/dirty-indicator",
"text": "Indicador de alterações por salvar"
},
"$:/language/Docs/PaletteColours/download-background": {
"title": "$:/language/Docs/PaletteColours/download-background",
"text": "Fundo do botão de transferências"
},
"$:/language/Docs/PaletteColours/download-foreground": {
"title": "$:/language/Docs/PaletteColours/download-foreground",
"text": "Primeiro plano do botão de transferências"
},
"$:/language/Docs/PaletteColours/dragger-background": {
"title": "$:/language/Docs/PaletteColours/dragger-background",
"text": "Fundo da zona de arrasto"
},
"$:/language/Docs/PaletteColours/dragger-foreground": {
"title": "$:/language/Docs/PaletteColours/dragger-foreground",
"text": "Primeiro plano da zona de arrasto"
},
"$:/language/Docs/PaletteColours/dropdown-background": {
"title": "$:/language/Docs/PaletteColours/dropdown-background",
"text": "Fundo de menu suspenso"
},
"$:/language/Docs/PaletteColours/dropdown-border": {
"title": "$:/language/Docs/PaletteColours/dropdown-border",
"text": "Margem de menu suspenso"
},
"$:/language/Docs/PaletteColours/dropdown-tab-background": {
"title": "$:/language/Docs/PaletteColours/dropdown-tab-background",
"text": "Fundo de separador suspenso"
},
"$:/language/Docs/PaletteColours/dropdown-tab-background-selected": {
"title": "$:/language/Docs/PaletteColours/dropdown-tab-background-selected",
"text": "Fundo para separador suspenso selecionado"
},
"$:/language/Docs/PaletteColours/dropzone-background": {
"title": "$:/language/Docs/PaletteColours/dropzone-background",
"text": "Fundo de zona de largada"
},
"$:/language/Docs/PaletteColours/external-link-background": {
"title": "$:/language/Docs/PaletteColours/external-link-background",
"text": "Fundo do link externa"
},
"$:/language/Docs/PaletteColours/external-link-background-hover": {
"title": "$:/language/Docs/PaletteColours/external-link-background-hover",
"text": "Fundo do link externa sob o cursor"
},
"$:/language/Docs/PaletteColours/external-link-background-visited": {
"title": "$:/language/Docs/PaletteColours/external-link-background-visited",
"text": "Fundo do link externa visitada"
},
"$:/language/Docs/PaletteColours/external-link-foreground": {
"title": "$:/language/Docs/PaletteColours/external-link-foreground",
"text": "Primeiro plano do link externa"
},
"$:/language/Docs/PaletteColours/external-link-foreground-hover": {
"title": "$:/language/Docs/PaletteColours/external-link-foreground-hover",
"text": "Primeiro plano do link externa sob o cursor"
},
"$:/language/Docs/PaletteColours/external-link-foreground-visited": {
"title": "$:/language/Docs/PaletteColours/external-link-foreground-visited",
"text": "Primeiro plano do link externa visitada"
},
"$:/language/Docs/PaletteColours/foreground": {
"title": "$:/language/Docs/PaletteColours/foreground",
"text": "Primeiro plano geral"
},
"$:/language/Docs/PaletteColours/message-background": {
"title": "$:/language/Docs/PaletteColours/message-background",
"text": "Fundo de caixa de mensagem"
},
"$:/language/Docs/PaletteColours/message-border": {
"title": "$:/language/Docs/PaletteColours/message-border",
"text": "Margem de caixa de mensagem"
},
"$:/language/Docs/PaletteColours/message-foreground": {
"title": "$:/language/Docs/PaletteColours/message-foreground",
"text": "Primeiro plano de caixa de mensagem"
},
"$:/language/Docs/PaletteColours/modal-backdrop": {
"title": "$:/language/Docs/PaletteColours/modal-backdrop",
"text": "Cenário de modal"
},
"$:/language/Docs/PaletteColours/modal-background": {
"title": "$:/language/Docs/PaletteColours/modal-background",
"text": "Fundo de modal"
},
"$:/language/Docs/PaletteColours/modal-border": {
"title": "$:/language/Docs/PaletteColours/modal-border",
"text": "Margem de modal"
},
"$:/language/Docs/PaletteColours/modal-footer-background": {
"title": "$:/language/Docs/PaletteColours/modal-footer-background",
"text": "Fundo do rodapé modal"
},
"$:/language/Docs/PaletteColours/modal-footer-border": {
"title": "$:/language/Docs/PaletteColours/modal-footer-border",
"text": "Margem do rodapé modal"
},
"$:/language/Docs/PaletteColours/modal-header-border": {
"title": "$:/language/Docs/PaletteColours/modal-header-border",
"text": "Margem do cabeçalho modal"
},
"$:/language/Docs/PaletteColours/muted-foreground": {
"title": "$:/language/Docs/PaletteColours/muted-foreground",
"text": "Primeiro plano silenciado geral"
},
"$:/language/Docs/PaletteColours/notification-background": {
"title": "$:/language/Docs/PaletteColours/notification-background",
"text": "Fundo de notificação"
},
"$:/language/Docs/PaletteColours/notification-border": {
"title": "$:/language/Docs/PaletteColours/notification-border",
"text": "Margem de notificação"
},
"$:/language/Docs/PaletteColours/page-background": {
"title": "$:/language/Docs/PaletteColours/page-background",
"text": "Fundo de página"
},
"$:/language/Docs/PaletteColours/pre-background": {
"title": "$:/language/Docs/PaletteColours/pre-background",
"text": "Fundo de código pré formatado"
},
"$:/language/Docs/PaletteColours/pre-border": {
"title": "$:/language/Docs/PaletteColours/pre-border",
"text": "Margem de código pré formatado"
},
"$:/language/Docs/PaletteColours/primary": {
"title": "$:/language/Docs/PaletteColours/primary",
"text": "Primário geral"
},
"$:/language/Docs/PaletteColours/sidebar-button-foreground": {
"title": "$:/language/Docs/PaletteColours/sidebar-button-foreground",
"text": "Fundo de botões da barra lateral"
},
"$:/language/Docs/PaletteColours/sidebar-controls-foreground": {
"title": "$:/language/Docs/PaletteColours/sidebar-controls-foreground",
"text": "Primeiro plano de controles da barra lateral"
},
"$:/language/Docs/PaletteColours/sidebar-controls-foreground-hover": {
"title": "$:/language/Docs/PaletteColours/sidebar-controls-foreground-hover",
"text": "Primeiro plano de controles da barra lateral sob cursor"
},
"$:/language/Docs/PaletteColours/sidebar-foreground": {
"title": "$:/language/Docs/PaletteColours/sidebar-foreground",
"text": "Primeiro plano da barra lateral"
},
"$:/language/Docs/PaletteColours/sidebar-foreground-shadow": {
"title": "$:/language/Docs/PaletteColours/sidebar-foreground-shadow",
"text": "Sombra de primeiro plano da barra lateral"
},
"$:/language/Docs/PaletteColours/sidebar-muted-foreground": {
"title": "$:/language/Docs/PaletteColours/sidebar-muted-foreground",
"text": "Primeiro plano silenciado da barra lateral"
},
"$:/language/Docs/PaletteColours/sidebar-muted-foreground-hover": {
"title": "$:/language/Docs/PaletteColours/sidebar-muted-foreground-hover",
"text": "Primeiro plano silenciado da barra lateral sob cursor"
},
"$:/language/Docs/PaletteColours/sidebar-tab-background": {
"title": "$:/language/Docs/PaletteColours/sidebar-tab-background",
"text": "Fundo de separador da barra lateral"
},
"$:/language/Docs/PaletteColours/sidebar-tab-background-selected": {
"title": "$:/language/Docs/PaletteColours/sidebar-tab-background-selected",
"text": "Fundo de separador selecionado da barra lateral"
},
"$:/language/Docs/PaletteColours/sidebar-tab-border": {
"title": "$:/language/Docs/PaletteColours/sidebar-tab-border",
"text": "Margem de separador da barra lateral"
},
"$:/language/Docs/PaletteColours/sidebar-tab-border-selected": {
"title": "$:/language/Docs/PaletteColours/sidebar-tab-border-selected",
"text": "Margem de separador selecionado da barra lateral"
},
"$:/language/Docs/PaletteColours/sidebar-tab-divider": {
"title": "$:/language/Docs/PaletteColours/sidebar-tab-divider",
"text": "Divisão de separador da barra lateral"
},
"$:/language/Docs/PaletteColours/sidebar-tab-foreground": {
"title": "$:/language/Docs/PaletteColours/sidebar-tab-foreground",
"text": "Primeiro plano de separador da barra lateral"
},
"$:/language/Docs/PaletteColours/sidebar-tab-foreground-selected": {
"title": "$:/language/Docs/PaletteColours/sidebar-tab-foreground-selected",
"text": "Primeiro plano de separador selecionado da barra lateral"
},
"$:/language/Docs/PaletteColours/sidebar-tiddler-link-foreground": {
"title": "$:/language/Docs/PaletteColours/sidebar-tiddler-link-foreground",
"text": "Primeiro plano do link para tiddler na barra lateral"
},
"$:/language/Docs/PaletteColours/sidebar-tiddler-link-foreground-hover": {
"title": "$:/language/Docs/PaletteColours/sidebar-tiddler-link-foreground-hover",
"text": "Primeiro plano do link para tiddler na barra lateral sob o cursor"
},
"$:/language/Docs/PaletteColours/site-title-foreground": {
"title": "$:/language/Docs/PaletteColours/site-title-foreground",
"text": "Primeiro plano do site"
},
"$:/language/Docs/PaletteColours/static-alert-foreground": {
"title": "$:/language/Docs/PaletteColours/static-alert-foreground",
"text": "Primeiro plano de alerta estático"
},
"$:/language/Docs/PaletteColours/tab-background": {
"title": "$:/language/Docs/PaletteColours/tab-background",
"text": "Fundo de separador"
},
"$:/language/Docs/PaletteColours/tab-background-selected": {
"title": "$:/language/Docs/PaletteColours/tab-background-selected",
"text": "Fundo de separador selecionado"
},
"$:/language/Docs/PaletteColours/tab-border": {
"title": "$:/language/Docs/PaletteColours/tab-border",
"text": "Margem de separador"
},
"$:/language/Docs/PaletteColours/tab-border-selected": {
"title": "$:/language/Docs/PaletteColours/tab-border-selected",
"text": "Margem de separador selecionado"
},
"$:/language/Docs/PaletteColours/tab-divider": {
"title": "$:/language/Docs/PaletteColours/tab-divider",
"text": "Divisão de separador"
},
"$:/language/Docs/PaletteColours/tab-foreground": {
"title": "$:/language/Docs/PaletteColours/tab-foreground",
"text": "Primeiro plano de separador"
},
"$:/language/Docs/PaletteColours/tab-foreground-selected": {
"title": "$:/language/Docs/PaletteColours/tab-foreground-selected",
"text": "Primeiro plano de separadores selecionados"
},
"$:/language/Docs/PaletteColours/table-border": {
"title": "$:/language/Docs/PaletteColours/table-border",
"text": "Margem de tabela"
},
"$:/language/Docs/PaletteColours/table-footer-background": {
"title": "$:/language/Docs/PaletteColours/table-footer-background",
"text": "Fundo de rodapé de tabela"
},
"$:/language/Docs/PaletteColours/table-header-background": {
"title": "$:/language/Docs/PaletteColours/table-header-background",
"text": "Fundo de cabeçalho de tabela"
},
"$:/language/Docs/PaletteColours/tag-background": {
"title": "$:/language/Docs/PaletteColours/tag-background",
"text": "Cor de fundo do botão assunto"
},
"$:/language/Docs/PaletteColours/tag-foreground": {
"title": "$:/language/Docs/PaletteColours/tag-foreground",
"text": "Primeiro plano de assunto"
},
"$:/language/Docs/PaletteColours/tiddler-background": {
"title": "$:/language/Docs/PaletteColours/tiddler-background",
"text": "Cor de fundo doe Tiddler"
},
"$:/language/Docs/PaletteColours/tiddler-border": {
"title": "$:/language/Docs/PaletteColours/tiddler-border",
"text": "Margem de Tiddler"
},
"$:/language/Docs/PaletteColours/tiddler-controls-foreground": {
"title": "$:/language/Docs/PaletteColours/tiddler-controls-foreground",
"text": "Primeiro plano de controles dos Tiddlers"
},
"$:/language/Docs/PaletteColours/tiddler-controls-foreground-hover": {
"title": "$:/language/Docs/PaletteColours/tiddler-controls-foreground-hover",
"text": "Primeiro plano de controles dos Tiddlers sob o cursor"
},
"$:/language/Docs/PaletteColours/tiddler-controls-foreground-selected": {
"title": "$:/language/Docs/PaletteColours/tiddler-controls-foreground-selected",
"text": "Primeiro plano de controles dos Tiddlers selecionados"
},
"$:/language/Docs/PaletteColours/tiddler-editor-background": {
"title": "$:/language/Docs/PaletteColours/tiddler-editor-background",
"text": "Fundo do editor de Tiddlers"
},
"$:/language/Docs/PaletteColours/tiddler-editor-border": {
"title": "$:/language/Docs/PaletteColours/tiddler-editor-border",
"text": "Margem do editor de Tiddlers"
},
"$:/language/Docs/PaletteColours/tiddler-editor-border-image": {
"title": "$:/language/Docs/PaletteColours/tiddler-editor-border-image",
"text": "Imagem de margem do editor de Tiddlers"
},
"$:/language/Docs/PaletteColours/tiddler-editor-fields-even": {
"title": "$:/language/Docs/PaletteColours/tiddler-editor-fields-even",
"text": "Fundo de campos pares do editor de Tiddlers"
},
"$:/language/Docs/PaletteColours/tiddler-editor-fields-odd": {
"title": "$:/language/Docs/PaletteColours/tiddler-editor-fields-odd",
"text": "Fundo de campos ímpares do editor de Tiddlers"
},
"$:/language/Docs/PaletteColours/tiddler-info-background": {
"title": "$:/language/Docs/PaletteColours/tiddler-info-background",
"text": "Fundo do painel de informação de Tiddlers"
},
"$:/language/Docs/PaletteColours/tiddler-info-border": {
"title": "$:/language/Docs/PaletteColours/tiddler-info-border",
"text": "Margem do painel de informação de Tiddlers"
},
"$:/language/Docs/PaletteColours/tiddler-info-tab-background": {
"title": "$:/language/Docs/PaletteColours/tiddler-info-tab-background",
"text": "Fundo de separadores do painel de informação de Tiddlers"
},
"$:/language/Docs/PaletteColours/tiddler-link-background": {
"title": "$:/language/Docs/PaletteColours/tiddler-link-background",
"text": "Fundo do link para Tiddlers"
},
"$:/language/Docs/PaletteColours/tiddler-link-foreground": {
"title": "$:/language/Docs/PaletteColours/tiddler-link-foreground",
"text": "Primeiro plano do link para Tiddlers"
},
"$:/language/Docs/PaletteColours/tiddler-subtitle-foreground": {
"title": "$:/language/Docs/PaletteColours/tiddler-subtitle-foreground",
"text": "Primeiro plano de subtítulo de Tiddlers"
},
"$:/language/Docs/PaletteColours/tiddler-title-foreground": {
"title": "$:/language/Docs/PaletteColours/tiddler-title-foreground",
"text": "Primeiro plano de título de Tiddlers"
},
"$:/language/Docs/PaletteColours/toolbar-cancel-button": {
"title": "$:/language/Docs/PaletteColours/toolbar-cancel-button",
"text": "Botão 'cancelar' da barra de ferramentas"
},
"$:/language/Docs/PaletteColours/toolbar-close-button": {
"title": "$:/language/Docs/PaletteColours/toolbar-close-button",
"text": "Botão 'fechar' da barra de ferramentas"
},
"$:/language/Docs/PaletteColours/toolbar-delete-button": {
"title": "$:/language/Docs/PaletteColours/toolbar-delete-button",
"text": "Botão 'apagar' da barra de ferramentas"
},
"$:/language/Docs/PaletteColours/toolbar-done-button": {
"title": "$:/language/Docs/PaletteColours/toolbar-done-button",
"text": "Botão 'concluir' da barra de ferramentas"
},
"$:/language/Docs/PaletteColours/toolbar-edit-button": {
"title": "$:/language/Docs/PaletteColours/toolbar-edit-button",
"text": "Botão 'editar' da barra de ferramentas"
},
"$:/language/Docs/PaletteColours/toolbar-info-button": {
"title": "$:/language/Docs/PaletteColours/toolbar-info-button",
"text": "Botão 'informação' da barra de ferramentas"
},
"$:/language/Docs/PaletteColours/toolbar-new-button": {
"title": "$:/language/Docs/PaletteColours/toolbar-new-button",
"text": "Botão 'novo tiddler' da barra de ferramentas"
},
"$:/language/Docs/PaletteColours/toolbar-options-button": {
"title": "$:/language/Docs/PaletteColours/toolbar-options-button",
"text": "Botão 'opções' da barra de ferramentas"
},
"$:/language/Docs/PaletteColours/toolbar-save-button": {
"title": "$:/language/Docs/PaletteColours/toolbar-save-button",
"text": "Botão 'salvar' da barra de ferramentas"
},
"$:/language/Docs/PaletteColours/untagged-background": {
"title": "$:/language/Docs/PaletteColours/untagged-background",
"text": "Fundo de cápsula sem assunto"
},
"$:/language/Docs/PaletteColours/very-muted-foreground": {
"title": "$:/language/Docs/PaletteColours/very-muted-foreground",
"text": "Fundo muito silenciado"
},
"$:/language/EditTemplate/Body/External/Hint": {
"title": "$:/language/EditTemplate/Body/External/Hint",
"text": "Este é um tiddler armazenado fora do arquivo principal da Tiddlywiki. Pode mudar os assuntos mas não pode editar o seu conteúdo"
},
"$:/language/EditTemplate/Body/Placeholder": {
"title": "$:/language/EditTemplate/Body/Placeholder",
"text": "Escreva o texto para este tiddler"
},
"$:/language/EditTemplate/Body/Preview/Type/Output": {
"title": "$:/language/EditTemplate/Body/Preview/Type/Output",
"text": "resultado"
},
"$:/language/EditTemplate/Field/Remove/Caption": {
"title": "$:/language/EditTemplate/Field/Remove/Caption",
"text": "remover campo"
},
"$:/language/EditTemplate/Field/Remove/Hint": {
"title": "$:/language/EditTemplate/Field/Remove/Hint",
"text": "Remover campo"
},
"$:/language/EditTemplate/Fields/Add/Button": {
"title": "$:/language/EditTemplate/Fields/Add/Button",
"text": "adicionar"
},
"$:/language/EditTemplate/Fields/Add/Dropdown/System": {
"title": "$:/language/EditTemplate/Fields/Add/Dropdown/System",
"text": "Campos de Sistema"
},
"$:/language/EditTemplate/Fields/Add/Dropdown/User": {
"title": "$:/language/EditTemplate/Fields/Add/Dropdown/User",
"text": "Campos do usuário"
},
"$:/language/EditTemplate/Fields/Add/Name/Placeholder": {
"title": "$:/language/EditTemplate/Fields/Add/Name/Placeholder",
"text": "nome do campo"
},
"$:/language/EditTemplate/Fields/Add/Prompt": {
"title": "$:/language/EditTemplate/Fields/Add/Prompt",
"text": "Adicionar novo campo"
},
"$:/language/EditTemplate/Fields/Add/Value/Placeholder": {
"title": "$:/language/EditTemplate/Fields/Add/Value/Placeholder",
"text": "valor do campo"
},
"$:/language/EditTemplate/Shadow/OverriddenWarning": {
"title": "$:/language/EditTemplate/Shadow/OverriddenWarning",
"text": "Isto é um tiddler-sombra modificado. Pode voltar à configuração pré-definida apagando este tiddler"
},
"$:/language/EditTemplate/Shadow/Warning": {
"title": "$:/language/EditTemplate/Shadow/Warning",
"text": "Isto é um tiddler-sombra. Quaisquer alterações irão sobrepor-se à versão pré-definida"
},
"$:/language/EditTemplate/Tags/Add/Button": {
"title": "$:/language/EditTemplate/Tags/Add/Button",
"text": "adicionar"
},
"$:/language/EditTemplate/Tags/Add/Placeholder": {
"title": "$:/language/EditTemplate/Tags/Add/Placeholder",
"text": "nome do assunto"
},
"$:/language/EditTemplate/Tags/Dropdown/Caption": {
"title": "$:/language/EditTemplate/Tags/Dropdown/Caption",
"text": "lista de assuntos"
},
"$:/language/EditTemplate/Tags/Dropdown/Hint": {
"title": "$:/language/EditTemplate/Tags/Dropdown/Hint",
"text": "Mostrar a lista de assuntos"
},
"$:/language/EditTemplate/Title/BadCharacterWarning": {
"title": "$:/language/EditTemplate/Title/BadCharacterWarning",
"text": "Atenção: Evite utilizar os caracteres <<bad-chars>> no título de tiddlers"
},
"$:/language/EditTemplate/Title/Exists/Prompt": {
"title": "$:/language/EditTemplate/Title/Exists/Prompt",
"text": "O Tiddler especificado já existe"
},
"$:/language/EditTemplate/Title/Relink/Prompt": {
"title": "$:/language/EditTemplate/Title/Relink/Prompt",
"text": "Substituindo ''<$text text=<<fromTitle>>/>'' por ''<$text text=<<toTitle>>/>'' nas //lista//, //tags// e campos de outros tiddlers"
},
"$:/language/EditTemplate/Type/Delete/Caption": {
"title": "$:/language/EditTemplate/Type/Delete/Caption",
"text": "apagar formato de arquivo"
},
"$:/language/EditTemplate/Type/Delete/Hint": {
"title": "$:/language/EditTemplate/Type/Delete/Hint",
"text": "Apagar formato de arquivo"
},
"$:/language/EditTemplate/Type/Dropdown/Caption": {
"title": "$:/language/EditTemplate/Type/Dropdown/Caption",
"text": "Lista de formato de arquivo"
},
"$:/language/EditTemplate/Type/Dropdown/Hint": {
"title": "$:/language/EditTemplate/Type/Dropdown/Hint",
"text": "Mostrar a lista de formato de arquivo"
},
"$:/language/EditTemplate/Type/Placeholder": {
"title": "$:/language/EditTemplate/Type/Placeholder",
"text": "formato de arquivo"
},
"$:/language/EditTemplate/Type/Prompt": {
"title": "$:/language/EditTemplate/Type/Prompt",
"text": "Tipo:"
},
"$:/language/Exporters/CsvFile": {
"title": "$:/language/Exporters/CsvFile",
"text": "Arquivos CSV dos tiddlers"
},
"$:/language/Exporters/JsonFile": {
"title": "$:/language/Exporters/JsonFile",
"text": "Arquivos JSON dos tiddlers"
},
"$:/language/Exporters/StaticRiver": {
"title": "$:/language/Exporters/StaticRiver",
"text": "Sequência de tiddlers como arquivo estático HTML"
},
"$:/language/Exporters/TidFile": {
"title": "$:/language/Exporters/TidFile",
"text": "Tiddler individual em arquivo \".tid\""
},
"$:/language/Docs/Fields/_canonical_uri": {
"title": "$:/language/Docs/Fields/_canonical_uri",
"text": "O URI completo dum tiddler de imagem externa"
},
"$:/language/Docs/Fields/bag": {
"title": "$:/language/Docs/Fields/bag",
"text": "O nome do saco de onde veio o tiddler"
},
"$:/language/Docs/Fields/caption": {
"title": "$:/language/Docs/Fields/caption",
"text": "O texto a exibir num separador ou botão"
},
"$:/language/Docs/Fields/color": {
"title": "$:/language/Docs/Fields/color",
"text": "O valor CSS da cor associada ao tiddler"
},
"$:/language/Docs/Fields/component": {
"title": "$:/language/Docs/Fields/component",
"text": "O nome do componente responsável por um [[tiddler alerta|AlertMechanism]]"
},
"$:/language/Docs/Fields/created": {
"title": "$:/language/Docs/Fields/created",
"text": "A data de criação do tiddler"
},
"$:/language/Docs/Fields/creator": {
"title": "$:/language/Docs/Fields/creator",
"text": "O nome da pessoa que criou o tiddler"
},
"$:/language/Docs/Fields/current-tiddler": {
"title": "$:/language/Docs/Fields/current-tiddler",
"text": "Utilizado para armazenar o primeiro tiddler numa [[lista de histórico|HistoryMechanism]]"
},
"$:/language/Docs/Fields/dependents": {
"title": "$:/language/Docs/Fields/dependents",
"text": "Para uma extensão, lista os títulos de extensões dependentes"
},
"$:/language/Docs/Fields/description": {
"title": "$:/language/Docs/Fields/description",
"text": "O texto descritivo de uma extensão, ou diálogo modal"
},
"$:/language/Docs/Fields/draft.of": {
"title": "$:/language/Docs/Fields/draft.of",
"text": "Para tiddlers rascunho, contém o título do tiddler do qual este é rascunho"
},
"$:/language/Docs/Fields/draft.title": {
"title": "$:/language/Docs/Fields/draft.title",
"text": "Para tiddlers rascunho, contém o título proposto para o novo tiddler"
},
"$:/language/Docs/Fields/footer": {
"title": "$:/language/Docs/Fields/footer",
"text": "O texto de rodapé para um assistente"
},
"$:/language/Docs/Fields/hack-to-give-us-something-to-compare-against": {
"title": "$:/language/Docs/Fields/hack-to-give-us-something-to-compare-against",
"text": "Um campo temporário utilizado em [[$:/core/templates/static.content]]"
},
"$:/language/Docs/Fields/icon": {
"title": "$:/language/Docs/Fields/icon",
"text": "O título do tiddler que contém o ícone associado com determinado tiddler"
},
"$:/language/Docs/Fields/library": {
"title": "$:/language/Docs/Fields/library",
"text": "Se definido como \"yes\" indica que o tiddler deve ser gravado como uma biblioteca JavaScript"
},
"$:/language/Docs/Fields/list": {
"title": "$:/language/Docs/Fields/list",
"text": "Uma lista ordenada de títulos de tiddlers associados com um determinado tiddler"
},
"$:/language/Docs/Fields/list-after": {
"title": "$:/language/Docs/Fields/list-after",
"text": "Se definido, o título do tiddler a seguir ao qual este tiddler deve ser adicionado numa lista ordenada de títulos de tiddlers"
},
"$:/language/Docs/Fields/list-before": {
"title": "$:/language/Docs/Fields/list-before",
"text": "Se definido, o título do tiddler a antes do qual este tiddler deve ser adicionado numa lista ordenada de títulos de tiddlers, ou no início da lista se este campo estiver presente mas vazio"
},
"$:/language/Docs/Fields/modified": {
"title": "$:/language/Docs/Fields/modified",
"text": "A data e hora da última modificação de um tiddler"
},
"$:/language/Docs/Fields/modifier": {
"title": "$:/language/Docs/Fields/modifier",
"text": "Título do tiddler associado à última pessoa que modificou o tiddler"
},
"$:/language/Docs/Fields/name": {
"title": "$:/language/Docs/Fields/name",
"text": "O nome humanamente legível associado a um tiddler extensão"
},
"$:/language/Docs/Fields/plugin-priority": {
"title": "$:/language/Docs/Fields/plugin-priority",
"text": "Valor numérico indicador da prioridade de um tiddler extensão"
},
"$:/language/Docs/Fields/plugin-type": {
"title": "$:/language/Docs/Fields/plugin-type",
"text": "O tipo de extensão de um tiddler extensão"
},
"$:/language/Docs/Fields/released": {
"title": "$:/language/Docs/Fields/released",
"text": "Data de lançamento de uma versão da TiddlyWiki"
},
"$:/language/Docs/Fields/revision": {
"title": "$:/language/Docs/Fields/revision",
"text": "A revisão do tiddler guardada no servidor"
},
"$:/language/Docs/Fields/source": {
"title": "$:/language/Docs/Fields/source",
"text": "O URL fonte associado a um tiddler"
},
"$:/language/Docs/Fields/subtitle": {
"title": "$:/language/Docs/Fields/subtitle",
"text": "O texto do subtítulo de um assistente"
},
"$:/language/Docs/Fields/tags": {
"title": "$:/language/Docs/Fields/tags",
"text": "Lista de assuntos associadas a um tiddler"
},
"$:/language/Docs/Fields/text": {
"title": "$:/language/Docs/Fields/text",
"text": "O texto do conteúdo de um tiddler"
},
"$:/language/Docs/Fields/title": {
"title": "$:/language/Docs/Fields/title",
"text": "O nome único de um tiddler"
},
"$:/language/Docs/Fields/type": {
"title": "$:/language/Docs/Fields/type",
"text": "O formato de arquivo de um tiddler"
},
"$:/language/Docs/Fields/version": {
"title": "$:/language/Docs/Fields/version",
"text": "Informação de versão de uma extensão"
},
"$:/language/Filters/AllTags": {
"title": "$:/language/Filters/AllTags",
"text": "Todas as assuntos exceto os de sistema"
},
"$:/language/Filters/AllTiddlers": {
"title": "$:/language/Filters/AllTiddlers",
"text": "Todos os tiddlers exceto os tiddlers de sistema"
},
"$:/language/Filters/Drafts": {
"title": "$:/language/Filters/Drafts",
"text": "Tiddlers rascunho"
},
"$:/language/Filters/Missing": {
"title": "$:/language/Filters/Missing",
"text": "Tiddlers em falta"
},
"$:/language/Filters/Orphans": {
"title": "$:/language/Filters/Orphans",
"text": "Tiddlers órfãos"
},
"$:/language/Filters/OverriddenShadowTiddlers": {
"title": "$:/language/Filters/OverriddenShadowTiddlers",
"text": "Tiddlers-sombra substituídos"
},
"$:/language/Filters/RecentSystemTiddlers": {
"title": "$:/language/Filters/RecentSystemTiddlers",
"text": "Tiddlers recentemente modificados, incluindo tiddlers de sistema"
},
"$:/language/Filters/RecentTiddlers": {
"title": "$:/language/Filters/RecentTiddlers",
"text": "Tiddlers modificados recentemente"
},
"$:/language/Filters/ShadowTiddlers": {
"title": "$:/language/Filters/ShadowTiddlers",
"text": "Tiddlers-sombra"
},
"$:/language/Filters/StoryList": {
"title": "$:/language/Filters/StoryList",
"text": "Tiddlers no Histórico, escluindo $:/AdvancedSearch"
},
"$:/language/Filters/SystemTags": {
"title": "$:/language/Filters/SystemTags",
"text": "Assuntos de sistema"
},
"$:/language/Filters/SystemTiddlers": {
"title": "$:/language/Filters/SystemTiddlers",
"text": "Tiddlers de sistema"
},
"$:/language/Filters/TypedTiddlers": {
"title": "$:/language/Filters/TypedTiddlers",
"text": "Tiddlers que não são sonWikiText"
},
"GettingStarted": {
"title": "GettingStarted",
"text": "\\define lingo-base() $:/language/ControlPanel/Basics/\nBem vindo à ~TiddlyWiki e à comunidade ~TiddlyWiki\n\nAntes de começar a armazenar informação importante na ~TiddlyWiki é importante certificar-se que consegue gravar alterações de forma fiável. Para mais detalhes veja http://tiddlywiki.com/#GettingStarted\n\n!! Configurar esta ~TiddlyWiki\n\n<div class=\"tc-control-panel\">\n\n|<$link to=\"$:/SiteTitle\"><<lingo Title/Prompt>></$link> |<$edit-text tiddler=\"$:/SiteTitle\" default=\"\" tag=\"input\"/> |\n|<$link to=\"$:/SiteSubtitle\"><<lingo Subtitle/Prompt>></$link> |<$edit-text tiddler=\"$:/SiteSubtitle\" default=\"\" tag=\"input\"/> |\n|<$link to=\"$:/DefaultTiddlers\"><<lingo DefaultTiddlers/Prompt>></$link> |<<lingo DefaultTiddlers/TopHint>><br> <$edit-text tag=\"textarea\" tiddler=\"$:/DefaultTiddlers\"/><br>//<<lingo DefaultTiddlers/BottomHint>>// |\n</div>\n\nVeja o [[painel de controle|$:/ControlPanel]] para mais opções.\n"
},
"$:/language/Help/build": {
"title": "$:/language/Help/build",
"description": "Executar comandos configurados automaticamente",
"text": "Construir os alvos de construção especificados para a wiki atual. Se nenhum alvo for especificado todos os alvos disponíveis serão construídos.\n\n```\n--build <alvo> [<alvo> ...]\n```\n\nOs alvos de construção são definidos no arquivo `tiddlywiki.info` na pasta da wiki.\n\n"
},
"$:/language/Help/clearpassword": {
"title": "$:/language/Help/clearpassword",
"description": "Remover senha para as operações criptográficas subsequentes",
"text": "Remover a senha para as operações criptográficas subsequentes\n\n```\n--clearpassword\n```\n"
},
"$:/language/Help/default": {
"title": "$:/language/Help/default",
"description": "",
"text": "\\define commandTitle()\n$:/language/Help/$(command)$\n\\end\n```\nusage: tiddlywiki [<wikifolder>] [--<command> [<args>...]...]\n```\n\nComandos disponíveis:\n\n<ul>\n<$list filter=\"[commands[]sort[title]]\" variable=\"command\">\n<li><$link to=<<commandTitle>>><$macrocall $name=\"command\" $type=\"text/plain\" $output=\"text/plain\"/></$link>: <$transclude tiddler=<<commandTitle>> field=\"description\"/></li>\n</$list>\n</ul>\n\nPara obter ajuda detalhada sobre um comando:\n\n```\ntiddlywiki --help <command>\n```\n"
},
"$:/language/Help/editions": {
"title": "$:/language/Help/editions",
"description": "Lista as edições da TiddlyWiki disponíveis",
"text": "Lista os nomes e descrições das edições disponíveis. Pode criar uma nova wiki da edição especificada com o comando `--init` .\n\n```\n--editions\n```\n"
},
"$:/language/Help/help": {
"title": "$:/language/Help/help",
"description": "Mostra a ajuda para comandos da TiddlyWiki",
"text": "Mostra a ajuda para um comando:\n\n```\n--help [<command>]\n```\n\nSe o comando for omitido será exibida uma lista de comandos disponíveis.\n"
},
"$:/language/Help/init": {
"title": "$:/language/Help/init",
"description": "Inicializar uma nova pasta wiki",
"text": "Inicializa uma [[PastaWiki|WikiFolders]] vazia com uma cópia da edição especificada.\n\n```\n--init <edition> [<edition> ...]\n```\n\nPor exemplo:\n\n```\ntiddlywiki ./MyWikiFolder --init empty\n```\n\nNota:\n\n* A pasta para a wiki será criada se não existir\n* Por omissão a \"edition\" será ''empty''\n* O comando init irá falhar se a pasta especificada não estiver vazia\n* O comando init remove quaisquer definições de `includeWikis` no arquivo `tiddlywiki.info` da edição\n* Quando múltiplas edições são especificadas, as edições inicializadas posteriormente substituem quaisquer arquivos partilhados com edições anteriores (de modo que o arquivo `tiddlywiki.info` final será copiado da última edição)\n* `--editions` mostra uma lista de edições disponíveis\n"
},
"$:/language/Help/load": {
"title": "$:/language/Help/load",
"description": "Carregar tiddlers de um arquivo",
"text": "Carregar tiddlers de arquivos da TiddlyWiki 2.x.x (`.html`), `.tiddler`, `.tid`, `.json` ou outros arquivos\n\n```\n--load <filepath>\n```\n\nPara carregar tiddlers de um arquivo TiddlyWiki encriptado deve primeiro especificar uma senha com o comando Password. Por exemplo:\n\n```\ntiddlywiki ./MyWiki --password pa55w0rd --load my_encrypted_wiki.html\n```\n\nA TiddlyWiki não carregará uma versão anterior de um plugin já carregado.\n"
},
"$:/language/Help/makelibrary": {
"title": "$:/language/Help/makelibrary",
"description": "Constrói a extensão de biblioteca necessária para o processo de atualização",
"text": "Constrói o tiddler `$:/UpgradeLibrary` para o processo de atualização.\n\nA biblioteca de atualização é formatada como uma extensão normal com o tipo de extensão definido como `library`. Contém uma cópia de cada uma das extensões, temas e pacotes de línguas disponíveis dentro do repositório da TiddlyWiki5.\n\nEste comando é para uso interno; é apenas importante para usuário que criem um processo de atualização personalizado.\n\n```\n--makelibrary <title>\n```\n\nPor omissão o argumento será `$:/UpgradeLibrary`.\n"
},
"$:/language/Help/notfound": {
"title": "$:/language/Help/notfound",
"description": "",
"text": "Item de ajuda inexistente"
},
"$:/language/Help/output": {
"title": "$:/language/Help/output",
"description": "Define a pasta de destino para os comandos subsequentes",
"text": "Define o diretório base de destino para os comandos subsequentes. A pasta de destino pré definida é a sub-pasta `output` dentro da pasta da edição.\n\n```\n--output <caminho>\n```\n\nSe o caminho especificado é relativo este será resolvido em relação à atual pasta de trabalho. Por exemplo `--output .` define o diretório de destino para a atual pasta de trabalho.\n\n"
},
"$:/language/Help/password": {
"title": "$:/language/Help/password",
"description": "Definir senha para operações criptográficas subsequentes",
"text": "Define a senha para as operações criptográficas subsequentes\n\n```\n--password <password>\n```\n\n"
},
"$:/language/Help/rendertiddler": {
"title": "$:/language/Help/rendertiddler",
"description": "Interpretar tiddler individual conforme tipo ContentType especificado",
"text": "Interpreta um tiddler individual conforme o ContentType especificado, pré definição é `text/html`, e guarda-o para o arquivo especificado:\n\n```\n--rendertiddler <título> <caminho> [<tipo>]\n```\n\nPor padrão, o caminho é resolvido relativamente à sub-pasta `output` do diretório de edição. O comando `--output` pode ser utilizado para redireccionar para umo diretório de destino diferente.\n\nQuaisquer pastas em falta no caminho de destino serão automaticamente criadas.\n"
},
"$:/language/Help/rendertiddlers": {
"title": "$:/language/Help/rendertiddlers",
"description": "Interpretar tiddlers respeitantes de um filtro para o ContentType especificado",
"text": "Interpreta um conjunto de tiddlers respeitante de um determinado filtro para arquivos separados de um determinado ContentType (por padrão `text/html`) e extensão (por padrão `.html`).\n\n```\n--rendertiddlers <filtro> <modelo> <caminho> [<tipo>] [<extensão>]\n```\n\nPor exemplo:\n\n```\n--rendertiddlers [!is[system]] $:/core/templates/static.tiddler.html ./static text/plain\n```\n\nPor padrão, o caminho é resolvido relativamente à sub-pasta `output` do diretório de edição. O comando `--output` pode ser utilizado para redireccionar para umo diretório de destino diferente.\n\nQuaisquer arquivos no diretório de destino serão apagados. Quaisquer pastas em falta nos caminhos de destino serão automaticamente criadas se em falta.\n"
},
"$:/language/Help/savetiddler": {
"title": "$:/language/Help/savetiddler",
"description": "Salva tiddler em bruto para um arquivo",
"text": "Salva um tiddler individual no seu formato bruto texto ou binário para o caminho especificado. \n\n```\n--savetiddler <título> <nome do arquivo>\n```\n\nPor padrão, o caminho é resolvido relativamente à sub-pasta `output` do diretório de edição. O comando `--output` pode ser utilizado para redireccionar para umo diretório de destino diferente.\n\nQuaisquer pastas em falta no caminho de destino serão automaticamente criadas.\n"
},
"$:/language/Help/savetiddlers": {
"title": "$:/language/Help/savetiddlers",
"description": "Salva um conjunto de tiddlers em bruto para uma pasta",
"text": "Salva um conjunto de tiddlers no seu formato bruto texto ou binário para o caminho especificado.\n\n```\n--savetiddlers <filtro> <caminho>\n```\n\nPor padrão, o caminho é resolvido relativamente à sub-pasta `output` do diretório de edição. O comando `--output` pode ser utilizado para redireccionar para umo diretório de destino diferente.\n\nQuaisquer pastas em falta no caminho de destino serão automaticamente criadas.\n"
},
"$:/language/Help/server": {
"title": "$:/language/Help/server",
"description": "Atribui um interface de servidor HTTP à TiddlyWiki",
"text": "O servidor incluído na TiddlyWiki 5 é muito elementar. Apesar de compatível com a TiddlyWeb não suporta muitas das funcionalidades necessárias para utilização robusta com interface pela Internet.\n\nNa sua forma mais elementar serve a representação de um tiddler específico. Com parâmetros adicionais serve tiddlers codificados em JSON, e suporta operações HTTP básicas para `GET`, `PUT` e `DELETE`.\n\n```\n--server <port> <roottiddler> <rendertype> <servetype> <username> <password> <host> <pathprefix>\n```\n\nOs parâmetros são:\n\n* ''port'' - número da porta pela qual servir (por padrão \"8080\")\n* ''roottiddler'' - o tiddler a ser servido na raiz (por padrão \"$:/core/save/all\") \n* ''rendertype'' - o formato de arquivo para o qual o tiddler deve ser representado (por padrão \"text/plain\")\n* ''servetype'' - o formato de arquivo para o qual o tiddler deve ser apresentado (por padrão \"text/html\")\n* ''username'' - o nome de usuário pré definido com o qual se assinam as edições\n* ''password'' - senha opcional para autenticação básica\n* ''host'' - endereço opcional do servidor de onde servir (por padrão \"127.0.0.1\" conhecido como \"localhost\")\n* ''pathprefix'' - prefixo opcional para caminhos\n\nSe o parâmetro senha for especificado o navegador irá pedir ao usuário um nome e senha. Tenha em atenção que a senha é transmitida em texto simples tornando esta implementação imprópria para utilização geral\n\nPor exemplo:\n\n```\n--server 8080 $:/core/save/all text/plain text/html MyUserName passw0rd\n```\n\nO nome de usuário e a senha podem ser vazios se necessitar de definir o nome do servidor ou prefixo para caminhos e não pretender que a senha seja requerida:\n\n```\n--server 8080 $:/core/save/all text/plain text/html \"\" \"\" 192.168.0.245\n```\n\nPara correr servidores TiddlyWiki múltiplos ao mesmo tempo é necessário colocar cada um numa porta diferente.\n"
},
"$:/language/Help/setfield": {
"title": "$:/language/Help/setfield",
"description": "Prepara tiddlers externos para utilização",
"text": "//Este comando é experimental e pode mudar ou ser substituído antes de ser finalizado//\n\nDefine um determinado campo de um grupo de tiddlers para o resultado de interpretar um tiddler modelo com a variável `currentTiddler` definida como o tiddler.\n\n```\n--setfield <filter> <fieldname> <templatetitle> <rendertype>\n```\n\nOs parâmetros são:\n\n* ''filter'' - filtro que selecciona os tiddlers a ser afectados\n* ''fieldname'' - nome do campo a modificar (por padrão \"texto\")\n* ''templatetitle'' - o tiddler a interpretar para o campo especificado. Se for deixado em branco ou estiver em falta o campo especificado será eliminado\n* ''rendertype'' - O tipo de texto a interpretar (por padrão \"text/plain\"; \"text/html\" pode ser utilizado para incluir assuntos HTML)\n"
},
"$:/language/Help/unpackplugin": {
"title": "$:/language/Help/unpackplugin",
"description": "Extrair tiddlers de conteúdo de uma extensão",
"text": "Extrai o conteúdo de uma extensão, recriando-o como tiddlers vulgares:\n\n```\n--unpackplugin <título>\n```\n"
},
"$:/language/Help/verbose": {
"title": "$:/language/Help/verbose",
"description": "Activa o modo de exibição relatório verboso",
"text": "Activa a exibição relatório verboso, útil para correcção de erros\n\n```\n--verbose\n```\n"
},
"$:/language/Help/version": {
"title": "$:/language/Help/version",
"description": "Mostra o numero da versão da TiddlyWiki.",
"text": "Mostra o numero da versão da TiddlyWiki.\n\n```\n--version\n```\n"
},
"$:/language/Import/Imported/Hint": {
"title": "$:/language/Import/Imported/Hint",
"text": "Os seguintes tiddlers foram importados:"
},
"$:/language/Import/Listing/Cancel/Caption": {
"title": "$:/language/Import/Listing/Cancel/Caption",
"text": "Cancelar"
},
"$:/language/Import/Listing/Hint": {
"title": "$:/language/Import/Listing/Hint",
"text": "Estes tiddlers estão prontos a importar:"
},
"$:/language/Import/Listing/Import/Caption": {
"title": "$:/language/Import/Listing/Import/Caption",
"text": "Importar"
},
"$:/language/Import/Listing/Select/Caption": {
"title": "$:/language/Import/Listing/Select/Caption",
"text": "Seleccionar"
},
"$:/language/Import/Listing/Status/Caption": {
"title": "$:/language/Import/Listing/Status/Caption",
"text": "Estado"
},
"$:/language/Import/Listing/Title/Caption": {
"title": "$:/language/Import/Listing/Title/Caption",
"text": "Título"
},
"$:/language/Import/Upgrader/Plugins/Suppressed/Incompatible": {
"title": "$:/language/Import/Upgrader/Plugins/Suppressed/Incompatible",
"text": "Extensões bloqueadas, incompatíveis ou obsoletas"
},
"$:/language/Import/Upgrader/Plugins/Suppressed/Version": {
"title": "$:/language/Import/Upgrader/Plugins/Suppressed/Version",
"text": "Extensão bloqueada (devido a <<incoming>> ser anterior à <<existing>> existente)"
},
"$:/language/Import/Upgrader/Plugins/Upgraded": {
"title": "$:/language/Import/Upgrader/Plugins/Upgraded",
"text": "Extensão atualizada de <<incoming>> para <<upgraded>>"
},
"$:/language/Import/Upgrader/State/Suppressed": {
"title": "$:/language/Import/Upgrader/State/Suppressed",
"text": "Tiddler de estado temporário bloqueado"
},
"$:/language/Import/Upgrader/System/Suppressed": {
"title": "$:/language/Import/Upgrader/System/Suppressed",
"text": "Tiddler de sistema bloqueado"
},
"$:/language/Import/Upgrader/ThemeTweaks/Created": {
"title": "$:/language/Import/Upgrader/ThemeTweaks/Created",
"text": "Tema migrado ajustado de <$text text=<<from>>/>"
},
"$:/language/AboveStory/ClassicPlugin/Warning": {
"title": "$:/language/AboveStory/ClassicPlugin/Warning",
"text": "Parece que está tentando caregar um plugin desenvolvido para o ~TiddlyWiki Classic. <br>"
},
"$:/language/BinaryWarning/Prompt": {
"title": "$:/language/BinaryWarning/Prompt",
"text": "Este tiddler contém informação binária"
},
"$:/language/ClassicWarning/Hint": {
"title": "$:/language/ClassicWarning/Hint",
"text": "Este tiddler está escrito no formato de texto wiki da TiddlyWiki Clássica, que não é totalmente compatível com a TiddlyWiki versão 5. Veja http://tiddlywiki.com/static/Upgrading.html para mais detalhes."
},
"$:/language/ClassicWarning/Upgrade/Caption": {
"title": "$:/language/ClassicWarning/Upgrade/Caption",
"text": "Atualizar"
},
"$:/language/CloseAll/Button": {
"title": "$:/language/CloseAll/Button",
"text": "Fechar Todos"
},
"$:/language/ColourPicker/Recent": {
"title": "$:/language/ColourPicker/Recent",
"text": "Últimas cores usadas:"
},
"$:/language/ConfirmCancelTiddler": {
"title": "$:/language/ConfirmCancelTiddler",
"text": "Gostaria de descartar as alterações feitas no tiddler \"<$text text=<<title>>/>\"?"
},
"$:/language/ConfirmDeleteTiddler": {
"title": "$:/language/ConfirmDeleteTiddler",
"text": "Gostaria apagar o tiddler \"<$text text=<<title>>/>\"?"
},
"$:/language/ConfirmEditShadowTiddler": {
"title": "$:/language/ConfirmEditShadowTiddler",
"text": "Está prestes a editar um Tiddler-Sombra. Quaisquer alterações sobrepor-se-ão aos valores padrão de sistema, tornando futuras atualizações mais complexas. Tenha a certeza que pretende editar \"<$text text=<<title>>/>\"?"
},
"$:/language/ConfirmOverwriteTiddler": {
"title": "$:/language/ConfirmOverwriteTiddler",
"text": "Gostaria de substituir o tiddler \"<$text text=<<title>>/>\"?"
},
"$:/language/Count": {
"title": "$:/language/Count",
"text": "contagem"
},
"$:/language/DefaultNewTiddlerTitle": {
"title": "$:/language/DefaultNewTiddlerTitle",
"text": "Novo Tiddler"
},
"$:/language/DropMessage": {
"title": "$:/language/DropMessage",
"text": "Arraste e solte aqui os seus arquivos, imagens, tiddlers ou plugins para adicioná-los (ou tecle Esc para cancelar)"
},
"$:/language/Encryption/Cancel": {
"title": "$:/language/Encryption/Cancel",
"text": "Cancelar"
},
"$:/language/Encryption/ConfirmClearPassword": {
"title": "$:/language/Encryption/ConfirmClearPassword",
"text": "Gostaria remover a senha? Isso irá removerá a criptografia aplicada quando salvar esta wiki"
},
"$:/language/Encryption/Password": {
"title": "$:/language/Encryption/Password",
"text": "Senha"
},
"$:/language/Encryption/PasswordNoMatch": {
"title": "$:/language/Encryption/PasswordNoMatch",
"text": "As senhas devem ser iguais nos dois campos"
},
"$:/language/Encryption/PromptSetPassword": {
"title": "$:/language/Encryption/PromptSetPassword",
"text": "Definir nova senha para esta TiddlyWiki"
},
"$:/language/Encryption/RepeatPassword": {
"title": "$:/language/Encryption/RepeatPassword",
"text": "Repetir senha"
},
"$:/language/Encryption/SetPassword": {
"title": "$:/language/Encryption/SetPassword",
"text": "Definir senha"
},
"$:/language/Encryption/Username": {
"title": "$:/language/Encryption/Username",
"text": "Nome de usuário"
},
"$:/language/Error/Caption": {
"title": "$:/language/Error/Caption",
"text": "Erro"
},
"$:/language/Error/Filter": {
"title": "$:/language/Error/Filter",
"text": "Erro de filtro"
},
"$:/language/Error/FilterSyntax": {
"title": "$:/language/Error/FilterSyntax",
"text": "Erro de sintaxe na expressão do filtro"
},
"$:/language/Error/IsFilterOperator": {
"title": "$:/language/Error/IsFilterOperator",
"text": "Erro de Filtro: Operando desconhecido para o operador de filtro 'is'"
},
"$:/language/Error/LoadingPluginLibrary": {
"title": "$:/language/Error/LoadingPluginLibrary",
"text": "Erro ao carregar a biblioteca de extensões"
},
"$:/language/Error/RecursiveTransclusion": {
"title": "$:/language/Error/RecursiveTransclusion",
"text": "Erro de transclusão recursiva na widget de transclusão"
},
"$:/language/Error/RetrievingSkinny": {
"title": "$:/language/Error/RetrievingSkinny",
"text": "Erro ao obter a lista simples de tiddlers"
},
"$:/language/Error/SavingToTWEdit": {
"title": "$:/language/Error/SavingToTWEdit",
"text": "Erro ao gravar em TWEdit"
},
"$:/language/Error/WhileSaving": {
"title": "$:/language/Error/WhileSaving",
"text": "Erro ao gravar"
},
"$:/language/Error/XMLHttpRequest": {
"title": "$:/language/Error/XMLHttpRequest",
"text": "Código de erro XMLHttpRequest"
},
"$:/language/InternalJavaScriptError/Hint": {
"title": "$:/language/InternalJavaScriptError/Hint",
"text": "Bem, isto é embaraçoso. Para corrigir, reinicie a sua TiddlyWiki recarregando a página em seu navegador. Normalmente o atalho é (F5)"
},
"$:/language/InternalJavaScriptError/Title": {
"title": "$:/language/InternalJavaScriptError/Title",
"text": "Erro interno JavaScript"
},
"$:/language/InvalidFieldName": {
"title": "$:/language/InvalidFieldName",
"text": "Caracteres ilegais no nome do arquivo \"<$text text=<<fieldName>>/>\". Os campos apenas podem conter letras minúsculas, dígitos e os caracteres sublinhado (`_`), hífen (`-`) e ponto final (`.`)"
},
"$:/language/LazyLoadingWarning": {
"title": "$:/language/LazyLoadingWarning",
"text": "<p>Carregando um texto externo de ''<$text text={{!!_canonical_uri}}/>''</p><p>Se esta mensagem não desaparecer pode ser que esteja usando um navegador que não suporte textos remoto com esta configuração. Veja http://tiddlywiki.com/#ExternalText</p>"
},
"$:/language/LoginToTiddlySpace": {
"title": "$:/language/LoginToTiddlySpace",
"text": "Entrar em TiddlySpace"
},
"$:/language/Manager/Controls/FilterByTag/None": {
"title": "$:/language/Manager/Controls/FilterByTag/None",
"text": "(nenhum)"
},
"$:/language/Manager/Controls/FilterByTag/Prompt": {
"title": "$:/language/Manager/Controls/FilterByTag/Prompt",
"text": "Filtrar por Tag:"
},
"$:/language/Manager/Controls/Order/Prompt": {
"title": "$:/language/Manager/Controls/Order/Prompt",
"text": "Inverter a ordem"
},
"$:/language/Manager/Controls/Search/Placeholder": {
"title": "$:/language/Manager/Controls/Search/Placeholder",
"text": "Pesquisar"
},
"$:/language/Manager/Controls/Search/Prompt": {
"title": "$:/language/Manager/Controls/Search/Prompt",
"text": "Pesquisar:"
},
"$:/language/Manager/Controls/Show/Option/Tags": {
"title": "$:/language/Manager/Controls/Show/Option/Tags",
"text": "tags"
},
"$:/language/Manager/Controls/Show/Option/Tiddlers": {
"title": "$:/language/Manager/Controls/Show/Option/Tiddlers",
"text": "tiddlers"
},
"$:/language/Manager/Controls/Show/Prompt": {
"title": "$:/language/Manager/Controls/Show/Prompt",
"text": "Exibir:"
},
"$:/language/Manager/Controls/Sort/Prompt": {
"title": "$:/language/Manager/Controls/Sort/Prompt",
"text": "Organizar por:"
},
"$:/language/Manager/Item/Colour": {
"title": "$:/language/Manager/Item/Colour",
"text": "Cores"
},
"$:/language/Manager/Item/Fields": {
"title": "$:/language/Manager/Item/Fields",
"text": "Campos"
},
"$:/language/Manager/Item/Icon": {
"title": "$:/language/Manager/Item/Icon",
"text": "Icones"
},
"$:/language/Manager/Item/Icon/None": {
"title": "$:/language/Manager/Item/Icon/None",
"text": "(nenhum)"
},
"$:/language/Manager/Item/RawText": {
"title": "$:/language/Manager/Item/RawText",
"text": "Texto bruto"
},
"$:/language/Manager/Item/Tags": {
"title": "$:/language/Manager/Item/Tags",
"text": "Tags"
},
"$:/language/Manager/Item/Tools": {
"title": "$:/language/Manager/Item/Tools",
"text": "Ferramentas"
},
"$:/language/Manager/Item/WikifiedText": {
"title": "$:/language/Manager/Item/WikifiedText",
"text": "Texto Wikified"
},
"$:/language/MissingTiddler/Hint": {
"title": "$:/language/MissingTiddler/Hint",
"text": "Tiddler \"<$text text=<<currentTiddler>>/>\" não existe - clique {{$:/core/images/edit-button}} para criar"
},
"$:/language/No": {
"title": "$:/language/No",
"text": "Não"
},
"$:/language/OfficialPluginLibrary": {
"title": "$:/language/OfficialPluginLibrary",
"text": "Biblioteca de Extensões Official ~TiddlyWiki"
},
"$:/language/OfficialPluginLibrary/Hint": {
"title": "$:/language/OfficialPluginLibrary/Hint",
"text": "A Biblioteca de Extensões Official ~TiddlyWiki em tiddlywiki.com. Extensões temas e pacotes de idiomas são mantidos pela equipa principal."
},
"$:/language/PluginReloadWarning": {
"title": "$:/language/PluginReloadWarning",
"text": "Por favor grave {{$:/core/ui/Buttons/save-wiki}} e recarregue {{$:/core/ui/Buttons/refresh}} para que as alterações às extensões tomem efeito"
},
"$:/language/RecentChanges/DateFormat": {
"title": "$:/language/RecentChanges/DateFormat",
"text": "DD MMM YYYY às hh:0mm"
},
"$:/language/SystemTiddler/Tooltip": {
"title": "$:/language/SystemTiddler/Tooltip",
"text": "Este é um tiddler de sistema"
},
"$:/language/SystemTiddlers/Include/Prompt": {
"title": "$:/language/SystemTiddlers/Include/Prompt",
"text": "Incluir tiddlers do sistema"
},
"$:/language/TagManager/Colour/Heading": {
"title": "$:/language/TagManager/Colour/Heading",
"text": "Cor"
},
"$:/language/TagManager/Count/Heading": {
"title": "$:/language/TagManager/Count/Heading",
"text": "Quantia"
},
"$:/language/TagManager/Icon/Heading": {
"title": "$:/language/TagManager/Icon/Heading",
"text": "Ícone"
},
"$:/language/TagManager/Info/Heading": {
"title": "$:/language/TagManager/Info/Heading",
"text": "Infos"
},
"$:/language/TagManager/Tag/Heading": {
"title": "$:/language/TagManager/Tag/Heading",
"text": "Assunto"
},
"$:/language/Tiddler/DateFormat": {
"title": "$:/language/Tiddler/DateFormat",
"text": "DD de MMM de YYYY às hh:0mm"
},
"$:/language/UnsavedChangesWarning": {
"title": "$:/language/UnsavedChangesWarning",
"text": "Têm alterações não guardadas na TiddlyWiki"
},
"$:/language/Yes": {
"title": "$:/language/Yes",
"text": "Sim"
},
"$:/language/Modals/Download": {
"title": "$:/language/Modals/Download",
"type": "text/vnd.tiddlywiki",
"subtitle": "Download changes",
"footer": "<$button message=\"tm-close-tiddler\">Close</$button>",
"help": "http://tiddlywiki.com/static/DownloadingChanges.html",
"text": "O seu navegador apenas suporta gravação manual.\n\nPara salvar a sua wiki modificada clique no botão abaixo e selecione \"Baixar o arquivo\" ou \"Salvar Arquivo\", então escolha uma pasta e um nome para o arquivo.\n\n//Pode-se acelerar o processo pressionando a tecla Control enquanto clica no link (Windows) ou a tecla Options/Alt (Mac OS X). Não será pedido que especifique uma pasta ou nome para o arquivo, mas provavelmente o navegador irá criar um nome irreconhecível -- poderá ter de alterar o nome de modo a incluir a extensão '.html' antes de conseguir usa-lo.//\n\nNos dispositivos móveis que não permitem copia de arquivos a alternativa é salvar o link nos seus favoritos, e no seu computador sincronizar e então gravar normalmente."
},
"$:/language/Modals/SaveInstructions": {
"title": "$:/language/Modals/SaveInstructions",
"type": "text/vnd.tiddlywiki",
"subtitle": "Save your work",
"footer": "<$button message=\"tm-close-tiddler\">Close</$button>",
"help": "http://tiddlywiki.com/static/SavingChanges.html",
"text": "As suas alterações a esta wiki necessitam ser gravadas como um arquivo HTML ~TiddlyWiki\n\n!!! Navegadores de computador pessoal\n\n# Selecione ''Salvar como'' do menu ''Arquivo''\n# Escolha um nome e uma localização para o seu arquivo\n#* Alguns navegadores necessitam que se especifique explicitamente o formato de gravação como ''Página da Internet, apenas HTML'' ou algo similar\n# Fechar esta guia\n\n!!! Navegadores em smartfones, tablets e celulares\n\n# Crie um marcador ou favorito desta página\n#* Se tiver o iCloud ou Google Sync configurados o seu marcador irá ser automaticamente sincronizado com o seu computador pessoal onde poderá abrir e gravar conforme indicado acima\n# Fechar esta guia\n\n//Se abrir o marcador outra vez no Mobile Safari verá esta mensagem outra vez. Se quiser prosseguir e utilizar o arquivo, clique no botão ''fechar'' abaixo//\n"
},
"$:/config/NewJournal/Tags": {
"title": "$:/config/NewJournal/Tags",
"text": "Edições"
},
"$:/config/NewJournal/Title": {
"title": "$:/config/NewJournal/Title",
"text": "DD de MMM de YYYY"
},
"$:/language/Notifications/Save/Done": {
"title": "$:/language/Notifications/Save/Done",
"text": "Wiki gravada"
},
"$:/language/Notifications/Save/Starting": {
"title": "$:/language/Notifications/Save/Starting",
"text": "A iniciar processo de gravação da wiki"
},
"$:/language/Search/DefaultResults/Caption": {
"title": "$:/language/Search/DefaultResults/Caption",
"text": "Lista"
},
"$:/language/Search/Filter/Caption": {
"title": "$:/language/Search/Filter/Caption",
"text": "Filtro"
},
"$:/language/Search/Filter/Hint": {
"title": "$:/language/Search/Filter/Hint",
"text": "Procurar através de [[expressão de filtros|http://tiddlywiki.com/static/Filters.html]]"
},
"$:/language/Search/Filter/Matches": {
"title": "$:/language/Search/Filter/Matches",
"text": "//<small><<resultCount>> resultados</small>//"
},
"$:/language/Search/Matches": {
"title": "$:/language/Search/Matches",
"text": "//<small><<resultCount>> resultados</small>//"
},
"$:/language/Search/Matches/All": {
"title": "$:/language/Search/Matches/All",
"text": "Todas as correspondências:"
},
"$:/language/Search/Matches/Title": {
"title": "$:/language/Search/Matches/Title",
"text": "Correspondências em títulos:"
},
"$:/language/Search/Search": {
"title": "$:/language/Search/Search",
"text": "Pesquisar"
},
"$:/language/Search/Search/TooShort": {
"title": "$:/language/Search/Search/TooShort",
"text": "Pesquisa de textos pequenos"
},
"$:/language/Search/Shadows/Caption": {
"title": "$:/language/Search/Shadows/Caption",
"text": "Sombras"
},
"$:/language/Search/Shadows/Hint": {
"title": "$:/language/Search/Shadows/Hint",
"text": "Procurar tiddlers-sombra"
},
"$:/language/Search/Shadows/Matches": {
"title": "$:/language/Search/Shadows/Matches",
"text": "//<small><<resultCount>> resultados</small>//"
},
"$:/language/Search/Standard/Caption": {
"title": "$:/language/Search/Standard/Caption",
"text": "Padrão"
},
"$:/language/Search/Standard/Hint": {
"title": "$:/language/Search/Standard/Hint",
"text": "Procurar tiddlers normais"
},
"$:/language/Search/Standard/Matches": {
"title": "$:/language/Search/Standard/Matches",
"text": "//<small><<resultCount>> resultados</small>//"
},
"$:/language/Search/System/Caption": {
"title": "$:/language/Search/System/Caption",
"text": "Sistema"
},
"$:/language/Search/System/Hint": {
"title": "$:/language/Search/System/Hint",
"text": "Procurar tiddlers de sistema"
},
"$:/language/Search/System/Matches": {
"title": "$:/language/Search/System/Matches",
"text": "//<small><<resultCount>> resultados</small>//"
},
"$:/language/SideBar/All/Caption": {
"title": "$:/language/SideBar/All/Caption",
"text": "Todos"
},
"$:/language/SideBar/Contents/Caption": {
"title": "$:/language/SideBar/Contents/Caption",
"text": "Assuntos"
},
"$:/language/SideBar/Drafts/Caption": {
"title": "$:/language/SideBar/Drafts/Caption",
"text": "Rascunhos"
},
"$:/language/SideBar/Missing/Caption": {
"title": "$:/language/SideBar/Missing/Caption",
"text": "Ausentes:"
},
"$:/language/SideBar/More/Caption": {
"title": "$:/language/SideBar/More/Caption",
"text": "Mais"
},
"$:/language/SideBar/Open/Caption": {
"title": "$:/language/SideBar/Open/Caption",
"text": "Abrir"
},
"$:/language/SideBar/Orphans/Caption": {
"title": "$:/language/SideBar/Orphans/Caption",
"text": "Órfãos:"
},
"$:/language/SideBar/Recent/Caption": {
"title": "$:/language/SideBar/Recent/Caption",
"text": "Recentes"
},
"$:/language/SideBar/Shadows/Caption": {
"title": "$:/language/SideBar/Shadows/Caption",
"text": "Sombras:"
},
"$:/language/SideBar/System/Caption": {
"title": "$:/language/SideBar/System/Caption",
"text": "Sistema:"
},
"$:/language/SideBar/Tags/Caption": {
"title": "$:/language/SideBar/Tags/Caption",
"text": "Assuntos:"
},
"$:/language/SideBar/Tags/Untagged/Caption": {
"title": "$:/language/SideBar/Tags/Untagged/Caption",
"text": "sem assuntos"
},
"$:/language/SideBar/Tools/Caption": {
"title": "$:/language/SideBar/Tools/Caption",
"text": "Opções"
},
"$:/language/SideBar/Types/Caption": {
"title": "$:/language/SideBar/Types/Caption",
"text": "Por Tipo:"
},
"$:/SiteSubtitle": {
"title": "$:/SiteSubtitle",
"text": "Tradução em Português do Brasil"
},
"$:/SiteTitle": {
"title": "$:/SiteTitle",
"text": "~TiddlyWiki 5 - Brasil"
},
"$:/language/Snippets/ListByTag": {
"title": "$:/language/Snippets/ListByTag",
"tags": "$:/tags/TextEditor/Snippet",
"caption": "Lista de tiddlers por assunto",
"text": "<<list-links \"[tag[task]sort[title]]\">>\n"
},
"$:/language/Snippets/MacroDefinition": {
"title": "$:/language/Snippets/MacroDefinition",
"tags": "$:/tags/TextEditor/Snippet",
"caption": "Definição de Macro",
"text": "\\define macroName(param1:\"default value\",param2)\nTexto da macro\n\\end\n"
},
"$:/language/Snippets/Table4x3": {
"title": "$:/language/Snippets/Table4x3",
"tags": "$:/tags/TextEditor/Snippet",
"caption": "Tabela com 4 colunas por 3 linhas",
"text": "|! |!Alfa |!Beta |!Gama |!Delta |\n|!Um| | | | |\n|!Dois| | | | |\n|!Três | | | | |\n"
},
"$:/language/Snippets/TableOfContents": {
"title": "$:/language/Snippets/TableOfContents",
"tags": "$:/tags/TextEditor/Snippet",
"caption": "Lista de Assuntos",
"text": "<div class=\"tc-table-of-contents\">\n\n<<toc-selective-expandable 'TableOfContents'>>\n\n</div>"
},
"$:/language/ThemeTweaks/Metrics": {
"title": "$:/language/ThemeTweaks/Metrics",
"text": "Dimensões"
},
"$:/language/ThemeTweaks/Metrics/BodyFontSize": {
"title": "$:/language/ThemeTweaks/Metrics/BodyFontSize",
"text": "Tamanho da fonte no corpo do tiddler"
},
"$:/language/ThemeTweaks/Metrics/BodyLineHeight": {
"title": "$:/language/ThemeTweaks/Metrics/BodyLineHeight",
"text": "Espaçamento entre linha no corpo do tiddler"
},
"$:/language/ThemeTweaks/Metrics/FontSize": {
"title": "$:/language/ThemeTweaks/Metrics/FontSize",
"text": "Tamanho de fonte"
},
"$:/language/ThemeTweaks/Metrics/LineHeight": {
"title": "$:/language/ThemeTweaks/Metrics/LineHeight",
"text": "Altura de linha"
},
"$:/language/ThemeTweaks/Metrics/SidebarBreakpoint": {
"title": "$:/language/ThemeTweaks/Metrics/SidebarBreakpoint",
"text": "Ponto de quebra da barra de menu"
},
"$:/language/ThemeTweaks/Metrics/SidebarBreakpoint/Hint": {
"title": "$:/language/ThemeTweaks/Metrics/SidebarBreakpoint/Hint",
"text": "Largura mínima da página exibindo o frame de<br>tiddlers e a barra de menu lado-a-lado"
},
"$:/language/ThemeTweaks/Metrics/SidebarWidth": {
"title": "$:/language/ThemeTweaks/Metrics/SidebarWidth",
"text": "Largura da barra de menu"
},
"$:/language/ThemeTweaks/Metrics/SidebarWidth/Hint": {
"title": "$:/language/ThemeTweaks/Metrics/SidebarWidth/Hint",
"text": "Largura da barra de menu no esquema fluido-fixo"
},
"$:/language/ThemeTweaks/Metrics/StoryLeft": {
"title": "$:/language/ThemeTweaks/Metrics/StoryLeft",
"text": "Margem à esquerda do frame de tiddlers"
},
"$:/language/ThemeTweaks/Metrics/StoryLeft/Hint": {
"title": "$:/language/ThemeTweaks/Metrics/StoryLeft/Hint",
"text": "Distancia a que a margem esquerda do frame de tiddlers<br>(área dos tiddlers) está da esquerda da página"
},
"$:/language/ThemeTweaks/Metrics/StoryRight": {
"title": "$:/language/ThemeTweaks/Metrics/StoryRight",
"text": "Rolo à direita"
},
"$:/language/ThemeTweaks/Metrics/StoryRight/Hint": {
"title": "$:/language/ThemeTweaks/Metrics/StoryRight/Hint",
"text": "distancia da margem esquerda da barra<br>de menu esquerda da página"
},
"$:/language/ThemeTweaks/Metrics/StoryTop": {
"title": "$:/language/ThemeTweaks/Metrics/StoryTop",
"text": "Posição vertical do rolo"
},
"$:/language/ThemeTweaks/Metrics/StoryTop/Hint": {
"title": "$:/language/ThemeTweaks/Metrics/StoryTop/Hint",
"text": "distancia da margem superior do<br>frame ao topo da página"
},
"$:/language/ThemeTweaks/Metrics/StoryWidth": {
"title": "$:/language/ThemeTweaks/Metrics/StoryWidth",
"text": "Largura do rol"
},
"$:/language/ThemeTweaks/Metrics/StoryWidth/Hint": {
"title": "$:/language/ThemeTweaks/Metrics/StoryWidth/Hint",
"text": "largura total do frame de tiddlers"
},
"$:/language/ThemeTweaks/Metrics/TiddlerWidth": {
"title": "$:/language/ThemeTweaks/Metrics/TiddlerWidth",
"text": "Largura dos tiddlers"
},
"$:/language/ThemeTweaks/Metrics/TiddlerWidth/Hint": {
"title": "$:/language/ThemeTweaks/Metrics/TiddlerWidth/Hint",
"text": "largura do frame de tiddlers"
},
"$:/language/ThemeTweaks/Options": {
"title": "$:/language/ThemeTweaks/Options",
"text": "Comportamento da página"
},
"$:/language/ThemeTweaks/Options/CodeWrapping": {
"title": "$:/language/ThemeTweaks/Options/CodeWrapping",
"text": "Dividir linhas longas em blocos de código"
},
"$:/language/ThemeTweaks/Options/SidebarLayout": {
"title": "$:/language/ThemeTweaks/Options/SidebarLayout",
"text": "Comportamento da Página e Menu"
},
"$:/language/ThemeTweaks/Options/SidebarLayout/Fixed-Fluid": {
"title": "$:/language/ThemeTweaks/Options/SidebarLayout/Fixed-Fluid",
"text": "Página fixa, Menu fluido"
},
"$:/language/ThemeTweaks/Options/SidebarLayout/Fluid-Fixed": {
"title": "$:/language/ThemeTweaks/Options/SidebarLayout/Fluid-Fixed",
"text": "Página fluida, Menu fixo"
},
"$:/language/ThemeTweaks/Options/StickyTitles": {
"title": "$:/language/ThemeTweaks/Options/StickyTitles",
"text": "Títulos persistentes"
},
"$:/language/ThemeTweaks/Options/StickyTitles/Hint": {
"title": "$:/language/ThemeTweaks/Options/StickyTitles/Hint",
"text": "Torna as barras de título dos tiddlers sempre visíveis, como se ficassem coladas no topo da janela do navegador. Atenção, não funciona de todo com o Chrome, e pode causar problemas de apresentação no Firefox"
},
"$:/language/ThemeTweaks/Settings": {
"title": "$:/language/ThemeTweaks/Settings",
"text": "Configurações de conteúdo"
},
"$:/language/ThemeTweaks/Settings/BackgroundImage": {
"title": "$:/language/ThemeTweaks/Settings/BackgroundImage",
"text": "Imagem do plano de fundo"
},
"$:/language/ThemeTweaks/Settings/BackgroundImageAttachment": {
"title": "$:/language/ThemeTweaks/Settings/BackgroundImageAttachment",
"text": "Comportamento do plano de fundo"
},
"$:/language/ThemeTweaks/Settings/BackgroundImageAttachment/Fixed": {
"title": "$:/language/ThemeTweaks/Settings/BackgroundImageAttachment/Fixed",
"text": "Fixar em relação à janela"
},
"$:/language/ThemeTweaks/Settings/BackgroundImageAttachment/Scroll": {
"title": "$:/language/ThemeTweaks/Settings/BackgroundImageAttachment/Scroll",
"text": "Rolar com tiddlers"
},
"$:/language/ThemeTweaks/Settings/BackgroundImageSize": {
"title": "$:/language/ThemeTweaks/Settings/BackgroundImageSize",
"text": "Tamanho da imagem de fundo"
},
"$:/language/ThemeTweaks/Settings/BackgroundImageSize/Auto": {
"title": "$:/language/ThemeTweaks/Settings/BackgroundImageSize/Auto",
"text": "Repetir"
},
"$:/language/ThemeTweaks/Settings/BackgroundImageSize/Contain": {
"title": "$:/language/ThemeTweaks/Settings/BackgroundImageSize/Contain",
"text": "Estender"
},
"$:/language/ThemeTweaks/Settings/BackgroundImageSize/Cover": {
"title": "$:/language/ThemeTweaks/Settings/BackgroundImageSize/Cover",
"text": "Completar"
},
"$:/language/ThemeTweaks/Settings/CodeFontFamily": {
"title": "$:/language/ThemeTweaks/Settings/CodeFontFamily",
"text": "Família da fonte de código"
},
"$:/language/ThemeTweaks/Settings/FontFamily": {
"title": "$:/language/ThemeTweaks/Settings/FontFamily",
"text": "Família da fonte"
},
"$:/language/ThemeTweaks/ThemeTweaks": {
"title": "$:/language/ThemeTweaks/ThemeTweaks",
"text": "Personalizar Estilo"
},
"$:/language/ThemeTweaks/ThemeTweaks/Hint": {
"title": "$:/language/ThemeTweaks/ThemeTweaks/Hint",
"text": "Pode ajustar alguns parâmetros do tema ''Vanilla''."
},
"$:/language/TiddlerInfo/Advanced/Caption": {
"title": "$:/language/TiddlerInfo/Advanced/Caption",
"text": "Avançado"
},
"$:/language/TiddlerInfo/Advanced/PluginInfo/Empty/Hint": {
"title": "$:/language/TiddlerInfo/Advanced/PluginInfo/Empty/Hint",
"text": "nenhum"
},
"$:/language/TiddlerInfo/Advanced/PluginInfo/Heading": {
"title": "$:/language/TiddlerInfo/Advanced/PluginInfo/Heading",
"text": "Detalhes da extensão"
},
"$:/language/TiddlerInfo/Advanced/PluginInfo/Hint": {
"title": "$:/language/TiddlerInfo/Advanced/PluginInfo/Hint",
"text": "Esta extensão contém os seguintes tiddlers-sombra:"
},
"$:/language/TiddlerInfo/Advanced/ShadowInfo/Heading": {
"title": "$:/language/TiddlerInfo/Advanced/ShadowInfo/Heading",
"text": "Estado da Sombra"
},
"$:/language/TiddlerInfo/Advanced/ShadowInfo/NotShadow/Hint": {
"title": "$:/language/TiddlerInfo/Advanced/ShadowInfo/NotShadow/Hint",
"text": "O tiddler <$link to=<<infoTiddler>>><$text text=<<infoTiddler>>/></$link> não é um tiddler-sombra"
},
"$:/language/TiddlerInfo/Advanced/ShadowInfo/OverriddenShadow/Hint": {
"title": "$:/language/TiddlerInfo/Advanced/ShadowInfo/OverriddenShadow/Hint",
"text": "Sobrescrito por um tiddler normal"
},
"$:/language/TiddlerInfo/Advanced/ShadowInfo/Shadow/Hint": {
"title": "$:/language/TiddlerInfo/Advanced/ShadowInfo/Shadow/Hint",
"text": "O tiddler <$link to=<<infoTiddler>>><$text text=<<infoTiddler>>/></$link> é um tiddler sombra"
},
"$:/language/TiddlerInfo/Advanced/ShadowInfo/Shadow/Source": {
"title": "$:/language/TiddlerInfo/Advanced/ShadowInfo/Shadow/Source",
"text": "Está definido na extensão <$link to=<<pluginTiddler>>><$text text=<<pluginTiddler>>/></$link>"
},
"$:/language/TiddlerInfo/Fields/Caption": {
"title": "$:/language/TiddlerInfo/Fields/Caption",
"text": "Campos"
},
"$:/language/TiddlerInfo/List/Caption": {
"title": "$:/language/TiddlerInfo/List/Caption",
"text": "Lista"
},
"$:/language/TiddlerInfo/List/Empty": {
"title": "$:/language/TiddlerInfo/List/Empty",
"text": "Este tiddler não tem uma lista"
},
"$:/language/TiddlerInfo/Listed/Caption": {
"title": "$:/language/TiddlerInfo/Listed/Caption",
"text": "Listado"
},
"$:/language/TiddlerInfo/Listed/Empty": {
"title": "$:/language/TiddlerInfo/Listed/Empty",
"text": "Este tiddler não está listado por nenhum outro"
},
"$:/language/TiddlerInfo/References/Caption": {
"title": "$:/language/TiddlerInfo/References/Caption",
"text": "Referências"
},
"$:/language/TiddlerInfo/References/Empty": {
"title": "$:/language/TiddlerInfo/References/Empty",
"text": "Nenhum tiddler tem link associado"
},
"$:/language/TiddlerInfo/Tagging/Caption": {
"title": "$:/language/TiddlerInfo/Tagging/Caption",
"text": "Assuntos"
},
"$:/language/TiddlerInfo/Tagging/Empty": {
"title": "$:/language/TiddlerInfo/Tagging/Empty",
"text": "Nenhum tiddler do mesmo assunto"
},
"$:/language/TiddlerInfo/Tools/Caption": {
"title": "$:/language/TiddlerInfo/Tools/Caption",
"text": "Opções"
},
"$:/language/Docs/Types/application/javascript": {
"title": "$:/language/Docs/Types/application/javascript",
"description": "Código JavaScript",
"name": "application/javascript",
"group": "Programador"
},
"$:/language/Docs/Types/application/json": {
"title": "$:/language/Docs/Types/application/json",
"description": "Informações JSON",
"name": "application/json",
"group": "Programador"
},
"$:/language/Docs/Types/application/x-tiddler-dictionary": {
"title": "$:/language/Docs/Types/application/x-tiddler-dictionary",
"description": "Dicionário de Informações",
"name": "application/x-tiddler-dictionary",
"group": "Programador"
},
"$:/language/Docs/Types/image/gif": {
"title": "$:/language/Docs/Types/image/gif",
"description": "Imagem GIF",
"name": "image/gif",
"group": "Imagem"
},
"$:/language/Docs/Types/image/jpeg": {
"title": "$:/language/Docs/Types/image/jpeg",
"description": "Imagem JPEG",
"name": "image/jpeg",
"group": "Imagem"
},
"$:/language/Docs/Types/image/png": {
"title": "$:/language/Docs/Types/image/png",
"description": "Imagem PNG",
"name": "image/png",
"group": "Imagem"
},
"$:/language/Docs/Types/image/svg+xml": {
"title": "$:/language/Docs/Types/image/svg+xml",
"description": "Imagem SVG (Scalable Vector Graphics)",
"name": "image/svg+xml",
"group": "Imagem"
},
"$:/language/Docs/Types/image/x-icon": {
"title": "$:/language/Docs/Types/image/x-icon",
"description": "Ícone em formato de arquivo ICO",
"name": "image/x-icon",
"group": "Imagem"
},
"$:/language/Docs/Types/text/css": {
"title": "$:/language/Docs/Types/text/css",
"description": "Folha de estilos estática",
"name": "text/css",
"group": "Programador"
},
"$:/language/Docs/Types/text/html": {
"title": "$:/language/Docs/Types/text/html",
"description": "Notação HTML",
"name": "text/html",
"group": "Texto"
},
"$:/language/Docs/Types/text/plain": {
"title": "$:/language/Docs/Types/text/plain",
"description": "Texto Simples",
"name": "text/plain",
"group": "Texto"
},
"$:/language/Docs/Types/text/vnd.tiddlywiki": {
"title": "$:/language/Docs/Types/text/vnd.tiddlywiki",
"description": "TiddlyWiki 5",
"name": "text/vnd.tiddlywiki",
"group": "Texto"
},
"$:/language/Docs/Types/text/x-tiddlywiki": {
"title": "$:/language/Docs/Types/text/x-tiddlywiki",
"description": "TiddlyWiki Clássica",
"name": "text/x-tiddlywiki",
"group": "Texto"
},
"$:/languages/pt-BR/icon": {
"title": "$:/languages/pt-BR/icon",
"type": "image/svg+xml",
"text": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<svg\n xmlns:dc=\"http://purl.org/dc/elements/1.1/\"\n xmlns:cc=\"http://creativecommons.org/ns#\"\n xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\"\n xmlns:svg=\"http://www.w3.org/2000/svg\"\n xmlns=\"http://www.w3.org/2000/svg\"\n style=\"fill-rule:evenodd;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision\"\n version=\"1.1\"\n id=\"svg2\"\n viewBox=\"0 0 120000 80000\"\n height=\"400\"\n width=\"600\"\n xml:space=\"preserve\"><defs\n id=\"defs20\" /><g\n transform=\"translate(9999.999,4999.999)\"\n id=\"g3355\"><rect\n x=\"-9999.999\"\n y=\"-4999.999\"\n width=\"120000\"\n height=\"80000\"\n id=\"rect4\"\n style=\"fill:#00923f\" /><g\n id=\"g3348\"\n transform=\"translate(-9999.9989,7000.0016)\"><path\n style=\"fill:#f8c300\"\n id=\"path6\"\n d=\"M 60000.001,-3800.0016 10200,27999.999 60000.001,59800 109800,27999.999 60000.001,-3800.0016 Z\" /><circle\n style=\"fill:#28166f\"\n id=\"circle8\"\n r=\"20956.801\"\n cy=\"28000\"\n cx=\"59955.602\" /><path\n style=\"fill:#ffffff\"\n id=\"path10\"\n d=\"m 62079.601,32520.399 253.2,639.6 685.2,43.2 -528,439.2 169.2,666 -579.6,-368.4 -580.8,368.4 170.4,-666 -529.2,-439.2 685.2,-43.2 254.4,-639.6 z m 15667.201,2236.8 216,544.8 584.4,37.2 -451.2,374.4 145.2,566.4 -494.4,-313.2 -495.6,313.2 145.2,-566.4 -450,-374.4 584.4,-37.2 216,-544.8 z m -2242.8,1736.4 254.4,638.4 685.2,44.4 -529.2,438 170.4,666 -580.8,-367.2 -580.8,367.2 170.4,-666 -529.2,-438 686.4,-44.4 253.2,-638.4 z m -831.6,-2247.6 301.2,757.2 812.4,52.8 -626.4,519.6 201.6,788.4 -688.8,-435.6 -687.6,435.6 201.6,-788.4 -626.4,-519.6 812.4,-52.8 300,-757.2 z m -160.8,3914.4 253.2,638.4 686.4,43.2 -529.2,439.2 170.4,666 -580.8,-368.4 -580.8,368.4 170.4,-666 -529.2,-439.2 685.2,-43.2 254.4,-638.4 z m -1962,1032 216,543.6 584.4,38.4 -450,373.2 145.2,567.6 -495.6,-313.2 -494.4,313.2 145.2,-567.6 -451.2,-373.2 584.4,-38.4 216,-543.6 z m -2017.2,1875.6 254.4,638.4 685.2,44.4 -529.2,438 170.4,666 -580.8,-368.4 -579.6,368.4 169.2,-666 -528,-438 685.2,-44.4 253.2,-638.4 z m -24,2347.2 216,544.8 584.4,37.2 -450,374.4 145.2,567.6 -495.6,-313.2 -494.4,313.2 145.2,-567.6 -451.2,-374.4 584.4,-37.2 216,-544.8 z m -32.4,-4243.2 216,543.6 584.4,37.2 -451.2,374.4 145.2,567.6 -494.4,-313.2 -495.6,313.2 145.2,-567.6 -451.2,-374.4 585.6,-37.2 216,-543.6 z m -2472,486 217.2,544.8 584.4,37.2 -451.2,374.4 145.2,567.6 -495.6,-313.2 -494.4,313.2 145.2,-567.6 -451.2,-374.4 584.4,-37.2 216,-544.8 z m -1585.201,-20113.2 301.2,757.2 812.401,51.6 -626.401,519.6 201.6,788.4 -688.8,-435.6 -687.6,435.6 201.6,-788.4 -626.4,-519.6 812.4,-51.6 300,-757.2 z m -331.2,22032 253.2,639.6 686.4,43.2 -529.2,439.2 170.4,664.8 -580.8,-367.2 -580.8,367.2 170.4,-664.8 -529.2,-439.2 685.2,-43.2 254.4,-639.6 z m -1166.4,-15662.4 217.2,543.6 584.4,38.4 -451.2,373.2 145.2,567.6 -495.6,-313.2 -494.4,313.2 145.2,-567.6 -451.2,-373.2 584.4,-38.4 216,-543.6 z m -555.6,13215.6 216,544.8 584.4,37.2 -450,373.2 145.2,567.6 -495.6,-313.2 -494.4,313.2 145.2,-567.6 -451.2,-373.2 584.4,-37.2 216,-544.8 z m -4207.2,-8406 253.2,638.4 686.4,44.4 -529.2,438 170.4,666 -580.8,-367.2 -580.8,367.2 170.4,-666 -529.2,-438 685.2,-44.4 254.4,-638.4 z m -122.4,5944.8 300,757.2 813.6,51.6 -627.6,519.6 201.6,789.6 -687.6,-435.6 -687.6,435.6 201.6,-789.6 -627.6,-519.6 813.6,-51.6 300,-757.2 z m 68.4,7580.4 115.2,290.4 312,20.4 -240,199.2 76.8,303.6 -264,-168 -264,168 76.8,-303.6 -240,-199.2 312,-20.4 115.2,-290.4 z m -1323.6,-10018.8 162,408 436.8,27.6 -337.2,279.6 109.2,424.8 -370.8,-235.2 -369.6,235.2 108,-424.8 -337.2,-279.6 438,-27.6 160.8,-408 z m -1531.2,-1323.6 216,544.8 584.4,37.2 -451.2,373.2 145.2,567.6 -494.4,-313.2 -495.6,313.2 145.2,-567.6 -451.2,-373.2 585.6,-37.2 216,-544.8 z m -5443.2,-5004 253.2,639.6 685.2,43.2 -528,439.2 169.2,666 -579.6,-368.4 -580.8,368.4 170.4,-666 -529.2,-439.2 685.2,-43.2 254.4,-639.6 z m -613.2,10585.2 300,757.2 813.6,52.8 -627.6,519.6 201.6,788.4 -687.6,-435.6 -688.8,435.6 202.8,-788.4 -627.6,-519.6 812.4,-52.8 301.2,-757.2 z m -2301.6,-4178.4 254.4,638.4 685.2,44.4 -529.2,438 170.4,666 -580.8,-368.4 -579.6,368.4 169.2,-666 -528,-438 685.2,-44.4 253.2,-638.4 z m -758.4,2354.4 216,544.8 584.4,37.2 -451.2,373.2 145.2,567.6 -494.4,-313.2 -495.6,313.2 145.2,-567.6 -451.2,-373.2 584.4,-37.2 217.2,-544.8 z m -1563.6,-5355.6 162,406.8 436.8,28.8 -337.2,279.6 109.2,423.6 -370.8,-234 -369.6,234 108,-423.6 -337.2,-279.6 438,-28.8 160.8,-406.8 z m -1923.6,844.8 300,757.2 813.6,51.6 -627.6,519.6 201.6,789.6 -687.6,-435.6 -687.6,435.6 201.6,-789.6 -627.6,-519.6 813.6,-51.6 300,-757.2 z m -1726.8,-8719.2 301.2,757.2 812.4,51.6 -626.4,519.6 201.6,789.6 -688.8,-435.6 -687.6,435.6 201.6,-789.6 -626.4,-519.6 812.4,-51.6 300,-757.2 z m -472.8,10711.2 254.4,639.6 685.2,43.2 -529.2,439.2 170.4,664.8 -580.8,-367.2 -580.8,367.2 170.4,-664.8 -529.2,-439.2 686.4,-43.2 253.2,-639.6 z\" /><path\n style=\"fill:#ffffff\"\n id=\"path12\"\n d=\"m 47444.401,21525.999 c 12465.6,0 23893.201,4585.2 32685.601,12152.4 290.4,-1020 505.2,-2071.2 638.4,-3146.4 -9116.4,-7394.4 -20718.001,-11834.4 -33324.001,-11834.4 -2185.2,0 -4340.4,136.8 -6458.4,396 -452.4,966 -834,1970.4 -1137.6,3008.4 2478,-379.2 5014.8,-576 7596,-576 z\" /><path\n style=\"fill:#00923f\"\n id=\"path14\"\n d=\"m 42052.801,20437.599 c 16.8,205.2 76.8,360 177.6,465.6 100.8,105.6 232.8,151.2 397.2,138 164.4,-14.4 289.2,-81.6 370.8,-204 82.8,-121.2 114,-284.4 97.2,-489.6 -18,-205.2 -78,-360 -178.8,-465.6 -102,-105.6 -235.2,-151.2 -400.8,-136.8 -164.4,13.2 -286.8,81.6 -368.4,202.8 -80.4,120 -112.8,283.2 -94.8,489.6 z m -391.2,33.6 c -26.4,-301.2 36,-547.2 184.8,-738 148.8,-190.8 362.4,-297.6 640.8,-321.6 278.4,-24 507.6,45.6 687.6,207.6 180,163.2 283.2,394.8 308.4,694.8 26.4,301.2 -36,547.2 -186,738 -148.8,190.8 -363.6,298.8 -640.8,322.8 -279.6,24 -507.6,-45.6 -687.6,-208.8 -178.8,-163.2 -282,-394.8 -307.2,-694.8 z m 3043.2,-348 452.4,-15.6 c 98.4,-3.6 169.2,-25.2 214.8,-67.2 44.4,-40.8 64.8,-104.4 62.4,-189.6 -2.4,-81.6 -27.6,-142.8 -73.2,-182.4 -46.8,-40.8 -114,-60 -202.8,-56.4 l -470.4,15.6 16.8,495.6 z m -349.2,1064.4 -62.4,-1869.6 907.2,-30 c 202.8,-7.2 355.2,31.2 456,115.2 102,84 154.8,216 160.8,394.8 3.6,114 -16.8,210 -62.4,288 -44.4,78 -111.6,132 -200.4,163.2 81.6,26.4 141.6,68.4 177.6,126 36,58.8 58.8,150 68.4,274.8 l 15.6,220.8 c 0,1.2 0,3.6 0,7.2 6,111.6 32.4,178.8 79.2,200.4 l 1.2,57.6 -421.2,14.4 c -14.4,-26.4 -25.2,-57.6 -33.6,-96 -8.4,-38.4 -15.6,-84 -18,-138 l -12,-196.8 c -8.4,-115.2 -32.4,-193.2 -73.2,-231.6 -40.8,-39.6 -112.8,-57.6 -214.8,-54 l -408,13.2 25.2,727.2 -385.2,13.2 z m 2760,-420 308.4,6 c 178.8,3.6 309.6,-40.8 391.2,-133.2 81.6,-91.2 124.8,-243.6 128.4,-452.4 3.6,-210 -30,-363.6 -103.2,-463.2 -73.2,-99.6 -188.4,-151.2 -346.8,-153.6 l -355.2,-7.2 -22.8,1203.6 z m -384,330 36,-1869.6 732,13.2 c 288,6 500.4,87.6 638.4,244.8 138,157.2 204,393.6 198,709.2 -3.6,170.4 -32.4,320.4 -86.4,450 -55.2,129.6 -133.2,232.8 -232.8,310.8 -75.6,57.6 -160.8,98.4 -256.8,122.4 -94.8,24 -228,34.8 -399.6,31.2 l -628.8,-12 z m 2373.6,42 100.8,-1867.2 1357.2,73.2 -18,324 -978,-52.8 -20.4,398.4 892.8,48 -16.8,319.2 -894,-48 -25.2,480 1022.4,55.2 -18,345.6 -1402.8,-75.6 z m 2202,130.8 198,-1860 566.4,60 218.4,1455.6 516,-1376.4 567.6,60 -198,1860 -358.8,-38.4 159.6,-1500 -537.6,1460.4 -391.2,-42 -222,-1540.8 -160.8,1500 -357.6,-38.4 z m 4956,638.4 391.2,-1828.8 1328.4,284.4 -68.4,318 -956.4,-205.2 -84,390 876,187.2 -67.2,313.2 -876,-188.4 -100.8,470.4 1002,214.8 -72,338.4 -1372.8,-294 z m 4950,115.2 360,97.2 c 97.2,25.2 172.8,24 228,-4.8 55.2,-30 96,-90 120,-182.4 24,-85.2 19.2,-156 -12,-212.4 -31.2,-55.2 -90,-94.8 -176.4,-117.6 l -378,-102 -141.6,522 z m -90,326.4 -172.8,642 -372,-99.6 486,-1806 804,216 c 189.6,51.6 319.2,140.4 391.2,264 70.8,124.8 80.4,283.2 28.8,474 -49.2,186 -135.6,316.8 -259.2,391.2 -122.4,75.6 -273.6,88.8 -450,42 l -456,-123.6 z m 2248.8,294 432,133.2 c 93.6,28.8 169.2,31.2 224.4,6 56.4,-24 96,-78 121.2,-159.6 24,-76.8 20.4,-142.8 -9.6,-195.6 -30,-54 -88.8,-93.6 -172.8,-120 l -450,-138 -145.2,474 z m -676.8,892.8 548.4,-1788 867.6,266.4 c 194.4,60 326.4,146.4 394.8,258 68.4,112.8 75.6,254.4 22.8,426 -33.6,109.2 -84,193.2 -152.4,252 -68.4,58.8 -148.8,88.8 -242.4,88.8 68.4,51.6 111.6,110.4 127.2,177.6 14.4,67.2 6,160.8 -25.2,282 l -57.6,213.6 c 0,1.2 -1.2,3.6 -2.4,7.2 -30,106.8 -27.6,178.8 9.6,214.8 l -16.8,55.2 -403.2,-124.8 c -4.8,-28.8 -6,-62.4 -1.2,-102 4.8,-38.4 13.2,-84 27.6,-135.6 l 52.8,-189.6 c 30,-111.6 32.4,-193.2 7.2,-242.4 -26.4,-50.4 -87.6,-91.2 -186,-121.2 l -390,-120 -213.6,694.8 -367.2,-112.8 z m 2847.6,-6 c -70.8,193.2 -81.6,358.8 -34.8,498 45.6,138 146.4,235.2 301.2,291.6 156,56.4 296.4,48 422.4,-27.6 126,-75.6 224.4,-210 295.2,-403.2 69.6,-193.2 81.6,-358.8 34.8,-496.8 -48,-139.2 -150,-237.6 -306,-294 -153.6,-56.4 -294,-46.8 -418.8,27.6 -124.8,75.6 -223.2,210 -294,404.4 z m -368.4,-135.6 c 104.4,-283.2 264,-480 478.8,-590.4 216,-109.2 454.8,-116.4 717.6,-20.4 261.6,96 440.4,255.6 535.2,478.8 94.8,224.4 90,477.6 -14.4,760.8 -103.2,283.2 -262.8,480 -480,589.2 -216,110.4 -456,117.6 -717.6,21.6 -262.8,-96 -440.4,-255.6 -534,-478.8 -93.6,-223.2 -88.8,-477.6 14.4,-760.8 z m 3460.801,2197.2 c -100.8,58.8 -200.4,91.2 -300,97.2 -98.4,6 -202.8,-14.4 -312,-61.2 -240,-103.2 -399.6,-268.8 -477.6,-499.2 -78,-231.6 -58.8,-482.4 56.4,-753.6 117.6,-274.8 285.6,-462 504,-562.8 218.4,-102 452.4,-99.6 699.6,6 216,92.4 369.6,218.4 462,380.4 92.4,160.8 112.8,337.2 61.2,529.2 l -361.2,-153.6 c 16.8,-98.4 1.2,-186 -46.8,-261.6 -46.8,-75.6 -124.8,-135.6 -232.8,-182.4 -144,-61.2 -279.6,-56.4 -406.8,14.4 -127.2,69.6 -230.4,198 -309.6,384 -80.4,187.2 -99.6,351.6 -58.8,494.4 40.8,142.8 135.6,246 284.4,309.6 112.8,46.8 220.8,54 324,20.4 104.4,-34.8 189.6,-105.6 256.8,-212.4 l -390,-166.8 124.8,-294 712.8,303.6 -397.2,931.2 -236.4,-100.8 43.2,-222 z m 1778.4,-49.2 405.6,199.2 c 88.8,43.2 162,56.4 220.8,40.8 58.8,-15.6 106.8,-61.2 145.2,-139.2 34.8,-72 42,-136.8 20.4,-194.4 -21.6,-57.6 -73.2,-105.6 -152.4,-145.2 l -422.4,-206.4 -217.2,445.2 z m -808.8,775.2 822,-1678.8 814.8,398.4 c 183.6,90 300,195.6 349.2,316.8 50.4,121.2 36,262.8 -43.2,423.6 -50.4,103.2 -114,177.6 -189.6,225.6 -76.8,46.8 -162,63.6 -254.4,49.2 60,62.4 92.4,126 98.4,195.6 3.6,68.4 -19.2,159.6 -69.6,273.6 l -90,202.8 c 0,1.2 -1.2,3.6 -3.6,6 -46.8,100.8 -55.2,172.8 -24,214.8 l -25.2,50.4 -379.2,-184.8 c 0,-30 4.8,-63.6 15.6,-100.8 10.8,-38.4 26.4,-81.6 49.2,-129.6 l 81.6,-178.8 c 46.8,-105.6 61.2,-186 44.4,-240 -18,-54 -73.2,-103.2 -164.4,-147.6 l -366,-180 -320.4,652.8 -345.6,-169.2 z m 2090.4,1074 909.6,-1634.4 1186.8,660 -158.4,284.4 -855.6,-476.4 -193.2,349.2 782.4,434.4 -156,279.6 -782.4,-434.4 -234,420 896.4,498 -168,302.4 -1227.6,-682.8 z m 2110.8,579.6 325.2,195.6 c -40.8,94.8 -44.4,182.4 -10.8,260.4 33.6,78 106.8,151.2 219.6,218.4 96,58.8 177.6,85.2 247.2,79.2 69.6,-3.6 123.6,-39.6 164.4,-106.8 57.6,-97.2 -33.6,-261.6 -273.6,-493.2 -3.6,-3.6 -6,-6 -8.4,-8.4 -6,-6 -15.6,-15.6 -28.8,-27.6 -130.8,-123.6 -214.8,-224.4 -253.2,-303.6 -36,-69.6 -49.2,-145.2 -42,-224.4 7.2,-79.2 36,-159.6 86.4,-243.6 93.6,-156 218.4,-242.4 374.4,-262.8 156,-18 334.8,32.4 534,152.4 187.2,112.8 307.2,246 358.8,397.2 52.8,152.4 32.4,310.8 -57.6,475.2 l -316.8,-190.8 c 40.8,-81.6 46.8,-158.4 16.8,-230.4 -28.8,-73.2 -93.6,-140.4 -192,-199.2 -86.4,-52.8 -163.2,-75.6 -230.4,-70.8 -67.2,6 -118.8,39.6 -157.2,102 -51.6,85.2 2.4,202.8 158.4,355.2 42,40.8 75.6,73.2 98.4,96 99.6,100.8 168,174 207.6,219.6 38.4,46.8 69.6,90 93.6,133.2 43.2,75.6 63.6,152.4 60,231.6 -3.6,80.4 -30,162 -80.4,244.8 -100.8,166.8 -234,261.6 -402,285.6 -168,24 -354,-25.2 -558,-148.8 -201.6,-121.2 -332.4,-262.8 -390,-426 -57.6,-162 -39.6,-332.4 56.4,-510 z m 1970.4,1232.4 314.4,213.6 c -45.6,92.4 -52.8,178.8 -22.8,259.2 28.8,79.2 98.4,156 207.6,229.2 92.4,62.4 172.8,93.6 242.4,92.4 69.6,-1.2 126,-33.6 169.2,-98.4 63.6,-94.8 -19.2,-262.8 -247.2,-507.6 -2.4,-2.4 -6,-6 -7.2,-8.4 -7.2,-6 -15.6,-15.6 -27.6,-30 -123.6,-129.6 -202.8,-234 -237.6,-315.6 -31.2,-70.8 -40.8,-147.6 -30,-225.6 12,-79.2 44.4,-158.4 99.6,-238.8 102,-151.2 231.6,-231.6 387.6,-242.4 157.2,-10.8 332.4,49.2 525.6,180 181.2,122.4 292.8,260.4 337.2,415.2 44.4,154.8 16.8,310.8 -82.8,470.4 l -307.2,-206.4 c 45.6,-79.2 55.2,-156 30,-230.4 -25.2,-74.4 -86.4,-144 -181.2,-208.8 -84,-56.4 -159.6,-84 -226.8,-81.6 -67.2,2.4 -121.2,33.6 -162,93.6 -55.2,81.6 -8.4,202.8 139.2,362.4 40.8,43.2 72,78 93.6,102 93.6,104.4 158.4,182.4 195.6,229.2 36,48 64.8,94.8 86.4,138 39.6,78 55.2,156 48,235.2 -7.2,79.2 -38.4,159.6 -93.6,240 -108,160.8 -247.2,249.6 -416.4,264 -169.2,15.6 -351.6,-43.2 -549.6,-177.6 -194.4,-132 -316.8,-280.8 -366,-445.2 -50.4,-165.6 -22.8,-334.8 81.6,-507.6 z m 2377.2,1261.2 c -124.8,164.4 -184.8,320.4 -180,465.6 3.6,146.4 72,268.8 202.8,368.4 132,99.6 270,132 412.8,97.2 141.6,-34.8 274.8,-135.6 399.6,-300 123.6,-163.2 183.6,-319.2 178.8,-465.6 -6,-146.4 -74.4,-270 -206.4,-369.6 -130.8,-99.6 -267.6,-130.8 -409.2,-94.8 -141.6,34.8 -274.8,134.4 -398.4,298.8 z m -313.2,-236.4 c 182.4,-240 392.4,-381.6 630,-424.8 238.8,-42 469.2,21.6 692.4,189.6 223.2,169.2 346.8,373.2 372,615.6 24,241.2 -54,482.4 -235.2,722.4 -182.4,241.2 -393.6,382.8 -632.4,423.6 -238.8,42 -470.4,-20.4 -692.4,-188.4 -223.2,-169.2 -346.8,-374.4 -370.8,-615.6 -24,-240 54,-481.2 236.4,-722.4 z\" /></g></g><metadata\n id=\"metadata16\"><rdf:RDF><cc:Work\n rdf:about=\"\"><dc:title></dc:title><dc:description /><dc:subject><rdf:Bag /></dc:subject><dc:publisher><cc:Agent\n rdf:about=\"http://www.openclipart.org\"><dc:title /></cc:Agent></dc:publisher><dc:date /><dc:format>image/svg+xml</dc:format><dc:type\n rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" /><cc:license\n rdf:resource=\"\"><dc:date /></cc:license><dc:language /></cc:Work><cc:License\n rdf:about=\"http://web.resource.org/cc/PublicDomain\"><cc:permits\n rdf:resource=\"http://web.resource.org/cc/Reproduction\" /><cc:permits\n rdf:resource=\"http://web.resource.org/cc/Distribution\" /><cc:permits\n rdf:resource=\"http://web.resource.org/cc/DerivativeWorks\" /></cc:License></rdf:RDF></metadata></svg>"
}
}
}
\define ref(label)
<$button popup="$:/state/$label$" class="tc-btn-invisible tc-slider"><sup style="color:green">$label$</sup></$button>
\end
\define definition(label,text)
<$reveal type="popup" state="$:/state/$label$" animate="yes">
<div class="tc-drop-down">
<dl>
<dt>$label$</dt>
<dd>$text$</dd>
</dl>
</div>
</$reveal>
\end
\define footnote(label,text)
<<ref "$label$">>
<<definition "$label$" "$text$">>
\end
\define footnotes(label,text)
<<definition "$label$" "$text$">>
<sub><span style="color:green">$label$ : </span> $text$</sub>
\end
/*\
title: $:/macros/skeeve/dateTime.js
type: application/javascript
module-type: macro
<<dateTime format date add>>
Examples:
<<dateTime>>
<<dateTime "YYYY-0MM-0DD 0hh:0mm:0ss">>
<$macrocall $name="dateTime" ts={{!!created}} format="MMM DD. YY"/>
Format Strings:
Please find all format strings listed in the JavaScript code of function
formatDateString in $:/core/modules/utils/utils.js
Add String
The add string may contain a sequence of integer numbers followed by a time unit. These numbers are added to the given timestamp. Time units are:
"Y", "M", "D", "h", "m", "s" for year, month, day, hour, minute, second.
"+" and "-" before a number can be used to define whether to add (default) or subtract the number.
It's also possible to put a "=" between the number and its unit to set a certain value as a date component.
Examples
Tomorrow in one year = <<dateTime "" "" "1D 1Y">>
One month ago = <<dateTime "" "" "-1M">>
Christmas last year = <<dateTime "" "" "-1Y 12=M 24=D">>
\*/
(function(){
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
/*
Information about this macro
This is a macro to get formatted date and time
*/
exports.name = "dateTime";
exports.params = [
{ name: "format" },
{ name: "ts" },
{ name: "add" }
];
/*
Run the macro
*/
exports.run = function(format, ts, add) {
if(!ts) {
ts = new Date;
}
else {
ts = $tw.utils.parseDate(ts);
}
while (add !== "") {
var val= parseInt(add);
if(isNaN(val)) break;
add=add.replace(/^\s*([+\-]\s*)?\d+\s*/, "");
var unit= add.charAt(0);
var set= unit === "=";
if( set) unit= add.charAt(1);
add=add.replace(/^[^\d+\-]+/, "");
switch(unit) {
case 'Y': ts.setFullYear(val + (set ? 0 : ts.getFullYear())); break;
case 'M': ts.setMonth(val + (set ? -1 : ts.getMonth())); break;
case 'D': ts.setDate(val + (set ? 0 : ts.getDate())); break;
case 'h': ts.setHour(val + (set ? 0 : ts.getHour())); break;
case 'm': ts.setMinute(val + (set ? 0 : ts.getMinute())); break;
case 's': ts.setSecond(val + (set ? 0 : ts.getSecond())); break;
default: break;
}
}
if(!format)
format = "YYYY-0MM-0DD 0hh:0mm:0ss";
return $tw.utils.formatDateString(ts, format);
};
})();
/*\
title: $:/macros/skeeve/mysamplemacro.js
type: application/javascript
module-type: macro
<<mysamplemacro character address>>
Example:
<<mysamplemacro>>
<<mysamplemacro "Donald Duck">>
<<mysamplemacro "Mickey Mouse" "Mouse House">>
\*/
(function(){
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
/*
Information about this macro
This is the mysamplemacro of Tiddly Wiki 5 written in JavaScript
*/
exports.name = "mysamplemacro";
exports.params = [
{ name: "character" },
{ name: "address" }
];
/*
Run the macro
*/
exports.run = function(character, address) {
if( !character) character = "Bugs Bunny";
if( !address) address = "Rabbit Hole Hill";
var output ="Hi, I'm " + character + " and I live in " + address;
return output;
};
})();
/*\
title: $:/macros/skeeve/uuid.js
type: application/javascript
module-type: macro
<<uuid>>
\*/
(function(){
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
/*
Information about this macro
uuid.js - Version 0.3
JavaScript Class to create a UUID like identifier
Copyright (C) 2006-2008, Erik Giberti (AF-Design), All rights reserved.
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation; either version 2 of the License, or (at your option) any later
version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with
this program; if not, write to the Free Software Foundation, Inc., 59 Temple
Place, Suite 330, Boston, MA 02111-1307 USA
The latest version of this file can be downloaded from
http://www.af-design.com/resources/javascript_uuid.php
HISTORY:
6/5/06 - Initial Release
5/22/08 - Updated code to run faster, removed randrange(min,max) in favor of
a simpler rand(max) function. Reduced overhead by using getTime()
method of date class (suggestion by James Hall).
9/5/08 - Fixed a bug with rand(max) and additional efficiencies pointed out
by Robert Kieffer http://broofa.com/
KNOWN ISSUES:
- Still no way to get MAC address in JavaScript
- Research into other versions of UUID show promising possibilities
(more research needed)
- Documentation needs improvement
*/
// On creation of a UUID object, set it's initial value
function UUID(){
this.id = this.createUUID();
}
// When asked what this Object is, lie and return it's value
UUID.prototype.valueOf = function(){ return this.id; }
UUID.prototype.toString = function(){ return this.id; }
//
// INSTANCE SPECIFIC METHODS
//
UUID.prototype.createUUID = function(){
//
// Loose interpretation of the specification DCE 1.1: Remote Procedure Call
// described at http://www.opengroup.org/onlinepubs/009629399/apdxa.htm#tagtcjh_37
// since JavaScript doesn't allow access to internal systems, the last 48 bits
// of the node section is made up using a series of random numbers (6 octets long).
//
var dg = new Date(1582, 10, 15, 0, 0, 0, 0);
var dc = new Date();
var t = dc.getTime() - dg.getTime();
var h = '-';
var tl = UUID.getIntegerBits(t,0,31);
var tm = UUID.getIntegerBits(t,32,47);
var thv = UUID.getIntegerBits(t,48,59) + '1'; // version 1, security version is 2
var csar = UUID.getIntegerBits(UUID.rand(4095),0,7);
var csl = UUID.getIntegerBits(UUID.rand(4095),0,7);
// since detection of anything about the machine/browser is far to buggy,
// include some more random numbers here
// if NIC or an IP can be obtained reliably, that should be put in
// here instead.
var n = UUID.getIntegerBits(UUID.rand(8191),0,7) +
UUID.getIntegerBits(UUID.rand(8191),8,15) +
UUID.getIntegerBits(UUID.rand(8191),0,7) +
UUID.getIntegerBits(UUID.rand(8191),8,15) +
UUID.getIntegerBits(UUID.rand(8191),0,15); // this last number is two octets long
return tl + h + tm + h + thv + h + csar + csl + h + n;
}
//
// GENERAL METHODS (Not instance specific)
//
// Pull out only certain bits from a very large integer, used to get the time
// code information for the first part of a UUID. Will return zero's if there
// aren't enough bits to shift where it needs to.
UUID.getIntegerBits = function(val,start,end){
var base16 = UUID.returnBase(val,16);
var quadArray = new Array();
var quadString = '';
var i = 0;
for(i=0;i<base16.length;i++){
quadArray.push(base16.substring(i,i+1));
}
for(i=Math.floor(start/4);i<=Math.floor(end/4);i++){
if(!quadArray[i] || quadArray[i] == '') quadString += '0';
else quadString += quadArray[i];
}
return quadString;
}
// Replaced from the original function to leverage the built in methods in
// JavaScript. Thanks to Robert Kieffer for pointing this one out
UUID.returnBase = function(number, base){
return (number).toString(base).toUpperCase();
}
// pick a random number within a range of numbers
// int b rand(int a); where 0 <= b <= a
UUID.rand = function(max){
return Math.floor(Math.random() * (max + 1));
}
// end of UUID class file
exports.name = "uuid";
exports.params = [];
exports.run = function() {
var uuid= new UUID();
return uuid.toString();
};
})();
{
"tiddlers": {
"$:/macros/welford/macros/tyif.js": {
"text": "/*\\\r\ntitle: $:/macros/welford/macros/tyif.js\r\ntype: application/javascript\r\nmodule-type: macro\r\n\r\ncreates a youtube iframe, uses tiddler data if possible \r\n\\*/\r\n\r\n(function(){\r\n\r\n\"use strict\";\r\n\r\nexports.name = \"ytif\";\r\n\r\nexports.params = [\r\n\t{ name: \"name\" },\r\n\t{ name: \"code\" },\r\n\t{ name: \"start\" }\r\n];\r\n\r\n//stolen from Rich Shumaker http://www.richshumaker.com/tw5/TiddlyWiki-Hangouts.html#%24%3A%2F.rich%2Fmacros%2Fyoutube-embed.js\r\n//might change this......\r\nvar seconds = function(time) {\r\n\tvar hms = time || \"00:00:00\";\r\n\tvar bits = hms.split(\":\");\r\n\tvar h = +bits[0], m = +bits[1], s = +bits[2];\r\n\treturn h*60*60 + m*60 + s;\r\n}\r\n\r\nexports.run = function(name, code, start) {\t\r\n\tstart = seconds(start);\r\n\tvar tiddler = this.wiki.getTiddler(this.getVariable(\"currentTiddler\"));\r\n\tif(tiddler) {\r\n\t\tif(\"yt-name\" in tiddler.fields && !name){\r\n\t\t\tname = tiddler.fields[\"yt-name\"];\r\n\t\t}\t\t\r\n\t\tif(\"yt-code\" in tiddler.fields && !code){\r\n\t\t\tcode = tiddler.fields[\"yt-code\"];\r\n\t\t}\r\n\t}\t\r\n\tname = name || \"default-iframe\";\r\n\tcode = code || \"jNQXAC9IVRw\";\r\n\tvar output = [\"<iframe class='ytif' name='\",name,\"' frameborder='0' theme=light src='http://www.youtube.com/embed/\", code, \"?start=\", start,\"&theme=dark&color=red&wmode=opaque' allowfullscreen/>\\n\\n\"];\r\n\treturn output.join(\"\");\r\n};\r\n\r\n\r\n})();",
"title": "$:/macros/welford/macros/tyif.js",
"type": "application/javascript",
"module-type": "macro"
},
"$:/macros/welford/macros/tylnk.js": {
"text": "/*\\\r\ntitle: $:/macros/welford/macros/tylnk.js\r\ntype: application/javascript\r\nmodule-type: macro\r\n\r\nupdates an existing YT iframe's time\r\n\\*/\r\n\r\n(function(){\r\n\r\n\"use strict\";\r\n\r\nexports.name = \"ytlnk\";\r\n\r\nexports.params = [\r\n\t{ name: \"start\" },\r\n\t{ name: \"name\" },\r\n\t{ name: \"code\" }\r\n\t\r\n];\r\n\r\n//stolen from Rich Shumaker http://www.richshumaker.com/tw5/TiddlyWiki-Hangouts.html#%24%3A%2F.rich%2Fmacros%2Fyoutube-embed.js\r\n//might change this......\r\nvar seconds = function(time) {\r\n\tvar hms = time || \"00:00:00\";\r\n\tvar bits = hms.split(\":\");\r\n\tvar h = +bits[0], m = +bits[1], s = +bits[2];\r\n\treturn h*60*60 + m*60 + s;\r\n}\r\n\r\nexports.run = function(start, name, code) {\t\r\n\tstart = start || \"0:00:00\";\r\n\tvar ms_start = seconds(start);\r\n\tvar tiddler = this.wiki.getTiddler(this.getVariable(\"currentTiddler\"));\r\n\tif(tiddler) {\r\n\t\tif(\"yt-name\" in tiddler.fields && !name){\r\n\t\t\tname = tiddler.fields[\"yt-name\"];\r\n\t\t}\t\t\r\n\t\tif(\"yt-code\" in tiddler.fields && !code){\r\n\t\t\tcode = tiddler.fields[\"yt-code\"];\r\n\t\t}\r\n\t}\t\r\n\tname = name || \"default-iframe\";\r\n\tcode = code || \"jNQXAC9IVRw\";\r\n\tvar output = [\"<a target='\",name,\"' href='http://www.youtube.com/embed/\", code, \"?start=\", ms_start,\"&autoplay=1&theme=dark&color=red&wmode=opaque'>\",start,\"</a>\"];\r\n\t//<a href=<<video 2037>> target=\"chandler\">@t=2037</a>\r\n\treturn output.join(\"\");\r\n};\r\n\r\n})();",
"title": "$:/macros/welford/macros/tylnk.js",
"type": "application/javascript",
"module-type": "macro"
}
}
}
{
"tiddlers": {
"$:/plugins/ahahn/tinka/createDialog": {
"created": "20150429173743678",
"text": "\\define plugin-tiddler-selection()\n[[$(target)$]plugintiddlers[]]\n\\end\n\n\\define qualified-modify-add()\n$(qualifiedTiddler)$-$(target)$-add\n\\end\n\n\\define qualified-modify-diff()\n$(qualifiedTiddler)$-$(target)$-diff\n\\end\n\n\\define diff-plugin-title()\n$(qualifiedTiddler)$-$(target)$-diff!!create-title\n\\end\n\n\\define added-filter()\n[[$(addedTiddlers)$]tags[]]\n\\end\n\n\\define concatPluginTitle(prefix, sep)\n$prefix$$(createTitleOrg)$$sep$$(createTitleName)$\n\\end\n\n\\define tiddlerReference(ref)\n$(currentTiddler)$$ref$\n\\end\n\n\\define varsReference(ref)\n$(TinkaVars)$$ref$\n\\end\n\n\n!! Create New Plugin\n\n<span class=\"tinka-note\">Usage: Enter the necessary metadata for your plugin and use the Filter selection below to pick the tiddlers that should be added to the plugin. After selecting the tiddlers, press 'Package Plugin'. Refer to the [[Documentation|$:/plugins/ahahn/tinka/usage]] for further help.</span>\n\n<$set name=\"target\" value=\"skeleton\">\n<$set name=\"qualifiedTiddler\" value=<<qualify \"$:/temp/tinka/modify\">> >\n\n!!! Step 1: Enter Metadata\n\n\n<$set name=\"currentTiddler\" value=<<qualified-modify-diff>>>\n\t<$transclude mode=\"block\" tiddler=\"$:/plugins/ahahn/tinka/createMetadata\"/>\n</$set>\n\n!!! Step 2: Add Tiddlers\n\nUse the search box below to select the tiddlers you want to add to the plugin.\n\n{{$:/plugins/ahahn/tinka/searchDisplay}}\n\n\n''Added Tiddlers''\n\n<$set name=\"addedTiddlers\" value=<<qualified-modify-add>> >\n<ul>\n<$list filter=<<added-filter>> emptyMessage=\"<i>No tiddlers added.</i>\">\n\t\t<li class=\"tinka-list-item\">\n <$checkbox tiddler=<<qualified-modify-add>> tag={{!!title}} />\n <$link to={{!!title}}>{{!!title}}</$link>\n </li>\n</$list>\n</ul>\n</$set>\n\n\n<$button class=\"tc-btn-big-green tinka-orange\">\n<$set name=\"TinkaVars\" value=\"$:/temp/tinka/CreateVars\">\n<$set name=\"currentTiddler\" value=<<qualified-modify-diff>>>\n\t<$action-deletetiddler $tiddler=<<TinkaVars>> />\n\t<$action-setfield $tiddler=<<TinkaVars>> result=\"false\" />\n\n\t<!-- Check whether a plugin title was given -->\n\t<$tinka-check text={{!!create-title-org}} pattern=\"^[^\\s]+$\">\n\t\t<$tinka-filter verb=\"fail\">\n\t\t\t<$action-setfield $tiddler=<<TinkaVars>> result=\"true\"/>\n\t\t\t<$action-setfield $tiddler=<<TinkaVars>> errorTitle=\"The plugin title is not allowed to be empty or contain whitespaces.\"/>\n\t\t</$tinka-filter>\n\t</$tinka-check>\n\t\t\n\t<$tinka-check text={{!!create-title-name}} pattern=\"^[^\\s]+$\">\n\t\t<$tinka-filter verb=\"fail\">\n\t\t\t<$action-setfield $tiddler=<<TinkaVars>> result=\"true\"/>\n\t\t\t<$action-setfield $tiddler=<<TinkaVars>> errorTitle=\"The plugin path is not allowed to be empty or contain whitespaces.\"/>\n\t\t</$tinka-filter>\n\t</$tinka-check>\n\t\t\n\t<!-- Check whether a plugin type is set-->\n\t<$tinka-check text={{!!create-plugin-type}} pattern=\"^.+$\">\n\t\t<$tinka-filter verb=\"fail\">\n\t\t\t<$action-setfield $tiddler=<<TinkaVars>> result=\"true\"/>\n\t\t\t<$action-setfield $tiddler=<<TinkaVars>> errorType=\"You have to set a plugin type.\"/>\n\t\t</$tinka-filter>\n\t</$tinka-check>\n\t\t\n\t\t<!-- Check whether a name was given, depending on the plugin type-->\n\t\t<$reveal state=<<tiddlerReference \"!!create-plugin-type\">> type=\"match\" text=\"plugin\">\n\t\t\t<$tinka-check text={{!!create-description}} pattern=\"^.+$\">\n\t\t\t\t<$tinka-filter verb=\"fail\">\n\t\t\t\t\t<$action-setfield $tiddler=<<TinkaVars>> result=\"true\"/>\n\t\t\t\t\t<$action-setfield $tiddler=<<TinkaVars>> errorPlugin=\"You have to enter a plugin title.\"/>\n\t\t\t\t</$tinka-filter>\n\t\t\t</$tinka-check>\n\t\t</$reveal>\n\t\t<$reveal state=<<tiddlerReference \"!!create-plugin-type\">> type=\"match\" text=\"theme\">\n\t\t\t<$tinka-check text={{!!create-name}} pattern=\"^.+$\">\n\t\t\t\t<$tinka-filter verb=\"fail\">\n\t\t\t\t\t<$action-setfield $tiddler=<<TinkaVars>> result=\"true\"/>\n\t\t\t\t\t<$action-setfield $tiddler=<<TinkaVars>> errorTheme=\"You have to enter a theme title.\"/>\n\t\t\t\t</$tinka-filter>\n\t\t\t</$tinka-check>\n\t\t</$reveal>\n\t\t\n\t\t<!--Check Version numbers, if entered-->\n\t\t<$reveal state=<<tiddlerReference \"!!create-version\">> type=\"nomatch\" text=\"\">\n\t\t\t<$tinka-check text={{!!create-version}} pattern=\"^(\\d)+\\.(\\d)+\\.(\\d)+(-[a-zA-z0-9]+)?$\">\n\t\t\t\t<$tinka-filter verb=\"fail\">\n\t\t\t\t\t<$action-setfield $tiddler=<<TinkaVars>> result=\"true\"/>\n\t\t\t\t\t<$action-setfield $tiddler=<<TinkaVars>> errorVersion=\"Version numbers must have the following format: X.X.X (e.g. 1.0.0).\"/>\n\t\t\t\t</$tinka-filter>\n\t\t\t</$tinka-check>\n\t\t</$reveal>\n\t\t\n\t\t<$reveal state=<<tiddlerReference \"!!create-core-version\">> type=\"nomatch\" text=\"\">\n\t\t\t<$tinka-check text={{!!create-core-version}} pattern=\"^(\\d)+\\.(\\d)+\\.(\\d)+(-[a-zA-z0-9]+)?$\">\n\t\t\t\t<$tinka-filter verb=\"fail\">\n\t\t\t\t\t<$action-setfield $tiddler=<<TinkaVars>> result=\"true\"/>\n\t\t\t\t\t<$action-setfield $tiddler=<<TinkaVars>> errorCoreVersion=\"The core version number must have the following format: [>|>=|<|<=|]X.X.X-AAAA (e.g. >=5.1.8).\"/>\n\t\t\t\t</$tinka-filter>\n\t\t\t</$tinka-check>\n\t\t</$reveal>\n\n\t<$set name=\"currentTiddler\" value=<<TinkaVars>> >\n\t<$tinka-check text={{!!result}} pattern=\"^false$\">\n\t<$set name=\"currentTiddler\" value=<<qualified-modify-diff>>>\n\t<$tinka-filter verb=\"pass\">\n\t<!--Compute the plugin title (create-title> from the create-title-org and create-title-name fields -->\n\n\t\t<$set name=\"createTitleOrg\" value={{!!create-title-org}}>\n\t\t\t<$set name=\"createTitleName\" value={{!!create-title-name}}>\n\t\t\t\t<$action-setfield create-title=<<concatPluginTitle \"$:/plugins/\" \"/\">> />\n\t\t\t</$set>\n\t\t</$set>\n\t\n\t\t<$tinka-saveTaglistToField $target=<<qualified-modify-add>> $tiddler=<<qualified-modify-diff>> $field=\"addTiddlers\"/>\n\t\t<$tinka-repackagePlugin $plugin=\"$:/plugins/unknown/newPlugin\" $create=\"yes\" $diff=<<qualified-modify-diff>> />\n\t\t<$action-deletetiddler $tiddler=<<qualified-modify-add>>/>\n\t\t<$action-deletetiddler $tiddler=<<qualified-modify-diff>>/>\n\t\t<$action-sendmessage $message=\"tm-modal\" $param=\"$:/plugins/ahahn/tinka/packageSuccess\" />\n\t</$tinka-filter>\n\t<$tinka-filter verb=\"fail\">\n\t\t<$action-sendmessage $message=\"tm-modal\" $param=\"$:/plugins/ahahn/tinka/packageErrors\" errorVars=<<TinkaVars>>/>\n\t</$tinka-filter>\n\t</$set>\n\t</$tinka-check>\n\t</$set>\n</$set>\n</$set>\nPackage plugin</$button>\n\n\n</$set>\n</$set>",
"caption": "Create a new Plugin",
"modified": "20150920123325745",
"tags": "$:/tags/tinka/ControlPanel",
"title": "$:/plugins/ahahn/tinka/createDialog"
},
"$:/plugins/ahahn/tinka/createMetadata": {
"created": "20150429174811520",
"text": "''Plugin-Type:'' <$edit-text tag=\"input\" type=\"text\" field=\"create-plugin-type\"/>\n <$button popup=\"$:/temp/tinka/NewPluginPopup\" class=\"tc-btn-invisible tc-btn-dropdown\">{{$:/core/images/down-arrow}}</$button>\n\t\n\t\t<$reveal state=\"$:/temp/tinka/NewPluginPopup\" type=\"popup\" position=\"below\">\n\t\t<div class=\"tc-block-dropdown tc-edit-type-dropdown\">\n\t\t<$linkcatcher to=\"!!create-plugin-type\">\n\t\t\t<$link to=\"plugin\">Plugin</$link>\n\t\t\t<$link to=\"theme\">Theme</$link>\n\t\t</$linkcatcher>\n\t\t</div>\n\t\t</$reveal>\n\n<$reveal state=\"!!create-plugin-type\" type=\"nomatch\" text=\"plugin\" >\n\t<$reveal state=\"!!create-plugin-type\" type=\"nomatch\" text=\"theme\" >\n\t\t<table class=\"tinka-meta-table\">\n\t\t<$transclude tiddler=\"$:/plugins/ahahn/tinka/createMetadata/tableHead\" />\n\t\t<$transclude tiddler=\"$:/plugins/ahahn/tinka/createMetadata/noSpecialPluginType\" />\n\t\t<$transclude tiddler=\"$:/plugins/ahahn/tinka/createMetadata/tableEnd\" />\n\t\t</table>\n\t</$reveal>\n</$reveal>\n\n<$reveal state=\"!!create-plugin-type\" type=\"match\" text=\"plugin\">\n\t\t<table class=\"tinka-meta-table\">\n\t\t<$transclude tiddler=\"$:/plugins/ahahn/tinka/createMetadata/tableHead\" />\n\t\t<$transclude tiddler=\"$:/plugins/ahahn/tinka/createMetadata/pluginPluginType\" />\n\t\t<$transclude tiddler=\"$:/plugins/ahahn/tinka/createMetadata/tableEnd\" />\n\t\t</table>\n</$reveal>\n\n<$reveal state=\"!!create-plugin-type\" type=\"match\" text=\"theme\">\n\t\t<table class=\"tinka-meta-table\">\n\t\t<$transclude tiddler=\"$:/plugins/ahahn/tinka/createMetadata/tableHead\" />\n\t\t<$transclude tiddler=\"$:/plugins/ahahn/tinka/createMetadata/themePluginType\" />\n\t\t<$transclude tiddler=\"$:/plugins/ahahn/tinka/createMetadata/tableEnd\" />\n\t\t</table>\n</$reveal>\n\n''bold'' = //required field//\n",
"create-plugin-type": "plugin",
"create-title": "",
"modified": "20150919225602399",
"tags": "",
"title": "$:/plugins/ahahn/tinka/createMetadata"
},
"$:/plugins/ahahn/tinka/dropdownManage": {
"text": "\\define plugin-tiddler-selection()\n[[$(target)$]plugintiddlers[]]\n\\end\n\n\\define qualified-remove-popup()\n$:/state/popup/$(qualifiedTiddler)$-$(target)$-remove-popup\n\\end\n\n\\define qualified-modify-remove()\n$(qualifiedTiddler)$-$(target)$-remove\n\\end\n\n\\define qualified-modify-add()\n$(qualifiedTiddler)$-$(target)$-add\n\\end\n\n\\define qualified-modify-diff()\n$(qualifiedTiddler)$-$(target)$-diff\n\\end\n\n\\define added-filter()\n[[$(addedTiddlers)$]tags[]]\n\\end\n\n\\define pluginSuffixFilter()\n[[$(target)$]removeprefix[$:/plugins/]]\n\\end\n\n\\define sideTabNameBuilder()\n$:/plugins/ahahn/tinka/temp/$(pluginSuffix)$ - Help Tab\n\\end\n\n\\define helpTabCaption()\n$(pluginSuffix)$ - Help Tab\n\\end\n\n\\define helpTabText()\n<$set name=\"pluginPrefix\" value=\"$(target)$\" >\n<$set name=\"currentTiddler\" value=\"$(sideTabName)$\" >\n\n<$transclude tiddler=\"$:/plugins/ahahn/tinka/pluginSidePanel\" />\n\n</$set>\n</$set>\n\\end\n\n<$set name=\"qualifiedTiddler\" value=<<qualify \"$:/temp/tinka/modify\">> >\n\n<$list filter=<<pluginSuffixFilter>> variable=\"pluginSuffix\">\n<<SidebarTabName>>\n<$set name=\"sideTabName\" value=<<sideTabNameBuilder>> >\n\n<$reveal state=<<sideTabName>> type=\"match\" text=\"\">\n<$button>Enable Help-Tab\n<$action-setfield $tiddler=<<sideTabName>> text=<<helpTabText>> caption=<<helpTabCaption>> tags=\"$:/tags/SideBar\" />\n</$button>\n\n</$reveal>\n\n<$reveal state=<<sideTabName>> type=\"nomatch\" text=\"\">\n<$button>Disable Help-Tab\n<$action-deletetiddler $tiddler=<<sideTabName>> />\n</$button>\n</$reveal>\n</$set>\n</$list>\n\nIf you have edited the shadow tiddlers that belong to the plugin, just repackage without making any changes. That way the packaged plugin will incorporate the changes made to the individual tiddlers. Refer to the [[Documentation|$:/plugins/ahahn/tinka/usage]] for help.\n\nIt is recommended to create a backup before repackaging a plugin.\n\n!!! Edit Metadata\n<span class=\"tinka-note\">Note: Changes will be committed immediately.</span>\n\n<$set name=\"currentTiddler\" value=<<target>>>\n\t<$transclude mode=\"block\" tiddler=\"$:/plugins/ahahn/tinka/editMetadata\"/>\n</$set>\n\n!!! Remove Tiddlers\n<span class=\"tinka-note\">Note: Re-packaging required for changes to take effect.</span>\n\n<$reveal type=\"match\" text=\"\" state=<<qualified-remove-popup>> ><$button set=<<qualified-remove-popup>> setTo=\"show\" class=\"tc-btn-invisible\">{{$:/core/images/right-arrow}} Show plugin tiddlers</$button></$reveal>\n<$reveal type=\"nomatch\" text=\"\" state=<<qualified-remove-popup>> >\n<$button set=<<qualified-remove-popup>> setTo=\"\" class=\"tc-btn-invisible\">{{$:/core/images/down-arrow}} Hide plugin tiddlers</$button>\n<ul>\n\t<$list filter=<<plugin-tiddler-selection>> emptyMessage=\"<i>No tiddlers in plugin.</i>\">\n\t\t<li class=\"tinka-list-item\">\n <$checkbox tiddler=<<qualified-modify-remove>> tag={{!!title}} />\n <$link to={{!!title}}>{{!!title}}</$link></li>\n\t</$list>\n</ul>\n</$reveal>\n\n!!! Add Tiddlers\n<span class=\"tinka-note\">Note: Re-packaging required for changes to take effect.</span>\n\nUse the search box below to select the tiddlers you want to add to the plugin.\n\n{{$:/plugins/ahahn/tinka/searchDisplay}}\n\n\n''Added Tiddlers''\n\n<$set name=\"addedTiddlers\" value=<<qualified-modify-add>> >\n<ul>\n<$list filter=<<added-filter>> emptyMessage=\"<i>No tiddlers added.</i>\">\n\t\t<li class=\"tinka-list-item\">\n <$checkbox tiddler=<<qualified-modify-add>> tag={{!!title}} />\n <$link to={{!!title}}>{{!!title}}</$link>\n </li>\n</$list>\n</ul>\n</$set>\n\n\n<$button class=\"tc-btn-big-green tinka-orange\">\n<$tinka-saveTaglistToField $target=<<qualified-modify-remove>> $tiddler=<<qualified-modify-diff>> $field=\"removeTiddlers\"/>\n<$tinka-saveTaglistToField $target=<<qualified-modify-add>> $tiddler=<<qualified-modify-diff>> $field=\"addTiddlers\"/>\n<$tinka-repackagePlugin $plugin=<<target>> $create=\"no\" $diff=<<qualified-modify-diff>> />\n<$action-deletetiddler $tiddler=<<qualified-modify-remove>>/>\n<$action-deletetiddler $tiddler=<<qualified-modify-add>>/>\n<$action-deletetiddler $tiddler=<<qualified-modify-diff>>/>\n<$action-sendmessage $message=\"tm-modal\" $param=\"$:/plugins/ahahn/tinka/packageSuccess\" />Re-package plugin</$button>\n<$button class=\"tc-btn-big-green tinka-blue\">\n<$tinka-backupPlugin $plugin=<<target>> />\n<$action-sendmessage $message=\"tm-modal\" $param=\"$:/plugins/ahahn/tinka/backupSuccess\" />Create Backup</$button>\n\n</$set>",
"created": "20150429083124963",
"modified": "20150919221235491",
"tags": "",
"title": "$:/plugins/ahahn/tinka/dropdownManage"
},
"$:/plugins/ahahn/tinka/editMetadata": {
"created": "20150429172238640",
"text": "|tinka-meta-table|k\n|Author:|<$edit-text type=\"text\" tag=\"input\" field=\"author\"/>|Description:|<$edit-text tag=\"input\" type=\"text\" field=\"description\"/>|\n|Dependents:|<$edit-text tag=\"input\" type=\"text\" field=\"dependents\"/>|List:|<$edit-text tag=\"input\" type=\"text\" field=\"list\"/>|\n|Plugin-Type:|<$edit-text tag=\"input\" type=\"text\" field=\"plugin-type\"/>|Version:|<$edit-text tag=\"input\" type=\"text\" field=\"version\"/>|\n|Source:|<$edit-text tag=\"input\" type=\"text\" field=\"source\"/>|Name:|<$edit-text tag=\"input\" type=\"text\" field=\"name\"/>|\n|Core-Version:|<$edit-text tag=\"input\" type=\"text\" field=\"core-version\"/>|||\n",
"modified": "20150920015137109",
"tags": "",
"title": "$:/plugins/ahahn/tinka/editMetadata"
},
"$:/plugins/ahahn/tinka/packageSuccess": {
"text": "<div class=\"tinka-success\">\n\n!!{{$:/core/images/done-button}} (Re-)Packaging Success !\n\nThe plugin was successfully (re-)packaged. It is recommended to save and reload the wiki now in order to avoid plugins to misbehave.\n\n</div>\n",
"caption": "Packaging Success",
"created": "20150429170712886",
"modified": "20150430084455618",
"tags": "",
"title": "$:/plugins/ahahn/tinka/packageSuccess"
},
"$:/plugins/ahahn/tinka/pluginManagement": {
"text": "\\define popup-state-macro()\n$:/state/popup-$(qualified-state)$-$(currentTiddler)$\n\\end\n\n\\define tabs-state-macro()\n$(popup-state)$-$(pluginInfoType)$\n\\end\n\n\\define plugin-icon-title()\n$(currentTiddler)$/icon\n\\end\n\n\\define plugin-disable-title()\n$:/config/Plugins/Disabled/$(currentTiddler)$\n\\end\n\n\\define plugin-table-body(type,disabledMessage)\n<div class=\"tc-plugin-info-chunk tc-small-icon\">\n<$reveal type=\"nomatch\" state=<<popup-state>> text=\"yes\">\n<$button class=\"tc-btn-invisible tc-btn-dropdown\" set=<<popup-state>> setTo=\"yes\">\n{{$:/core/images/right-arrow}}\n</$button>\n</$reveal>\n<$reveal type=\"match\" state=<<popup-state>> text=\"yes\">\n<$button class=\"tc-btn-invisible tc-btn-dropdown\" set=<<popup-state>> setTo=\"no\">\n{{$:/core/images/down-arrow}}\n</$button>\n</$reveal>\n</div>\n<div class=\"tc-plugin-info-chunk\">\n<$transclude tiddler=<<currentTiddler>> subtiddler=<<plugin-icon-title>>>\n<$transclude tiddler=\"$:/core/images/plugin-generic-$type$\"/>\n</$transclude>\n</div>\n<div class=\"tc-plugin-info-chunk\">\n<h1>\n''<$view field=\"description\"><$view field=\"title\"/></$view>'' $disabledMessage$\n</h1>\n<h2>\n<$view field=\"title\"/>\n</h2>\n<h2>\n<div><em><$view field=\"version\"/></em></div>\n</h2>\n</div>\n\\end\n\n\\define plugin-table(type)\n<$set name=\"qualified-state\" value=<<qualify \"$:/state/plugin-info\">>>\n<$list filter=\"[!has[draft.of]plugin-type[$type$]sort[description]]\" emptyMessage=<<lingo \"Empty/Hint\">>>\n<$set name=\"popup-state\" value=<<popup-state-macro>>>\n<$link to={{!!title}} class=\"tc-plugin-info\">\n<<plugin-table-body type:\"$type$\">>\n</$link>\n<$reveal type=\"match\" text=\"yes\" state=<<popup-state>>>\n<div class=\"tc-plugin-info-dropdown\">\n<div class=\"tc-plugin-info-dropdown-body\">\n<$set name=\"target\" value={{!!title}}>\n\n{{$:/plugins/ahahn/tinka/dropdownManage}}\n\n</$set>\n</div>\n</div>\n</$reveal>\n</$set>\n</$list>\n</$set>\n\\end\n\n!!Installed Plugins\n\n<<plugin-table plugin>>\n\n!!Installed Themes\n\n<<plugin-table theme>>",
"caption": "Installed",
"created": "20150429081349763",
"modified": "20150623141038339",
"tags": "$:/tags/tinka/ControlPanel",
"title": "$:/plugins/ahahn/tinka/pluginManagement"
},
"$:/plugins/ahahn/tinka/style": {
"text": "button.tinka-blue, button.tinka-orange{\nfont-weight: normal;\nfont-size: 1em;\ncolor: #fff;\n}\n\n.tinka-blue {\nbackground-color: #5E9FCA;\n}\n\n.tinka-orange {\nbackground-color: #FF8C19;\n}\n\n.tinka-list-item {\n\tlist-style: none;\n}\n\n.tinka-note {\ndisplay:block;\npadding-left: 5px;\nbackground-color: #FFF9B0;\ncolor: #7F7A32;\nborder: 1px solid #7F7A32;\nborder-radius: 5px;\nfont-style: italic;\nfont-size: 0.8em;\n}\n\n.tinka-success {\ncolor: #26CC50;\n}\n\n.tinka-success .tc-image-done-button {\nfill: #26CC50;\n}\n\n.tinka-error {\ncolor: #F00;\n}\n\n.tinka-error .tc-image-close-button {\nfill: #F00;\n}\n\n.tinka-archive-buttons {\npadding-left: 30px;\ndisplay: inline-block;\n}\n\nbutton.tinka-sidebar-button, button.tinka-invisible {\ncolor: #acacac;\nfill: #acacac;\n}\n\ntable.tinka-meta-table tr td {\npadding: 5px;\n}\n\n.tc-control-panel input.tinka-inline-edit {\nwidth: auto;\n}\n\n.tc-control-panel input.tinka-full-edit, input.tinka-full-edit {\nwidth: 100%;\n}",
"created": "20150429083343361",
"list-after": "$:/themes/tiddlywiki/vanilla/base",
"modified": "20150920010712218",
"tags": "$:/tags/Stylesheet",
"title": "$:/plugins/ahahn/tinka/style"
},
"$:/plugins/ahahn/tinka/tinkaActions.js": {
"text": "/*\\\ntitle: $:/plugins/ahahn/tinka/tinkaActions.js\ntype: application/javascript\nmodule-type: widget\n\nAction widgets related to Tinka.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar SaveTaglistToFieldWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nSaveTaglistToFieldWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nSaveTaglistToFieldWidget.prototype.render = function(parent,nextSibling) {\n\tthis.computeAttributes();\n\tthis.execute();\n};\n\n/*\nCompute the internal state of the widget\n*/\nSaveTaglistToFieldWidget.prototype.execute = function() {\n\tthis.actionTarget = this.getAttribute(\"$target\");\n\tthis.actionTiddler = this.getAttribute(\"$tiddler\");\n \tthis.actionField = this.getAttribute(\"$field\");\n};\n\n/*\nRefresh the widget by ensuring our attributes are up to date\n*/\nSaveTaglistToFieldWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\tif(changedAttributes[\"$target\"] || changedAttributes[\"$tiddler\"] || changedAttributes[\"$field\"]) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t}\n\treturn this.refreshChildren(changedTiddlers);\n};\n\n/*\nInvoke the action associated with this widget\n*/\nSaveTaglistToFieldWidget.prototype.invokeAction = function(triggeringWidget,event) {\n\tvar taglist = [];\n \tvar field = \"text\";\n \n if (this.actionTarget) {\n \tvar targetTags = this.wiki.getTiddler(this.actionTarget);\n \t\n \tif (targetTags) {\n \t\ttaglist = targetTags.fields.tags || [];\n \t}\n }\n \n \tif (this.actionField) {\n \t\tfield = this.actionField;\n \t}\n \n \tif(this.actionTiddler) {\n \t\t//save taglist in field on tiddler\n \tthis.wiki.setTextReference(this.actionTiddler+ \"!!\" +field, taglist, this.getVariable(\"currentTiddler\")); \n \t}\n\n return true; // Action was invoked\n};\n\n/*\n\nrepackagePlugin action widget\n\n<$repackagePlugin $plugin=<<target>> $repackage=\"yes\" $diff=<<qualified-modify-diff>> />\n*/\n \nvar repackagePluginWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nrepackagePluginWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nrepackagePluginWidget.prototype.render = function(parent,nextSibling) {\n\tthis.computeAttributes();\n\tthis.execute();\n \tthis.renderChildren(parent,nextSibling);\n};\n\n/*\nCompute the internal state of the widget\n*/\nrepackagePluginWidget.prototype.execute = function() {\n\tthis.actionPlugin = this.getAttribute(\"$plugin\");\n\tthis.actionCreate = this.getAttribute(\"$create\");\n \tthis.actionDiff = this.getAttribute(\"$diff\");\n this.makeChildWidgets();\n};\n\n/*\nRefresh the widget by ensuring our attributes are up to date\n*/\nrepackagePluginWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\tif(changedAttributes[\"$plugin\"] || changedAttributes[\"$create\"] || changedAttributes[\"$diff\"]) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t}\n\treturn this.refreshChildren(changedTiddlers);\n};\n\n/*\nInvoke the action associated with this widget\n*/\nrepackagePluginWidget.prototype.invokeAction = function(triggeringWidget,event) {\n \tvar diff = {};\n \tvar title = \"\";\n \tif (this.actionPlugin) {\n title = this.actionPlugin;\n if (this.actionDiff) {\n \tvar tid = this.wiki.getTiddler(this.actionDiff);\n diff = tid || {};\n }\n \n if (this.actionCreate == \"yes\") {\n //create new plugin Tiddler with the data from the diff tiddler\n var pluginTid = {};\n \n title = diff.fields[\"create-title\"] || this.actionPlugin;\n pluginTid.title = title;\n pluginTid[\"text\"] =\t\"{\\\"tiddlers\\\": {}}\";\n pluginTid[\"type\"] = \"application/json\";\n pluginTid[\"author\"] = diff.fields[\"create-author\"];\n pluginTid[\"description\"] = diff.fields[\"create-description\"];\n\t\tpluginTid[\"name\"] = diff.fields[\"create-name\"];\n pluginTid[\"list\"] = diff.fields[\"create-list\"];\n pluginTid[\"plugin-type\"] = diff.fields[\"create-plugin-type\"];\n pluginTid[\"dependents\"] = diff.fields[\"create-dependents\"];\n pluginTid[\"version\"] = diff.fields[\"create-version\"];\n pluginTid[\"core-version\"] = diff.fields[\"create-core-version\"];\n this.wiki.addTiddler(new $tw.Tiddler(pluginTid));\n }\n \n //execute repackaging\n $tw.utils.repackPlugin(title, diff.fields.addTiddlers, diff.fields.removeTiddlers);\n \t}\n};\n \n \n \n/*\n\tbackUpPlugin Action Widget\n \n\tBacks up the specified plugin tiddler and modifies the \n 'plugin-type' and 'title' field accordingly.\n*/\nvar BackupPluginWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nBackupPluginWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nBackupPluginWidget.prototype.render = function(parent,nextSibling) {\n\tthis.computeAttributes();\n\tthis.execute();\n};\n\n/*\nCompute the internal state of the widget\n*/\nBackupPluginWidget.prototype.execute = function() {\n\tthis.actionPlugin = this.getAttribute(\"$plugin\", \"\");\n \tthis.actionRestore = this.getAttribute(\"$restore\", \"no\");\n};\n\n/*\nRefresh the widget by ensuring our attributes are up to date\n*/\nBackupPluginWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\tif(changedAttributes[\"$plugin\"] || changedAttributes[\"$restore\"]) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t}\n\treturn this.refreshChildren(changedTiddlers);\n};\n\n/*\nInvoke the action associated with this widget\n*/\nBackupPluginWidget.prototype.invokeAction = function(triggeringWidget,event) {\n\n\tif (this.actionPlugin) {\n \tif (this.actionRestore == \"yes\") {\n \tvar backupTiddler = this.wiki.getTiddler(this.actionPlugin);\n \tvar operationConfirmed = true;\n \tif (backupTiddler instanceof $tw.Tiddler) { \n \t\t\tif (this.checkIfExists(backupTiddler.fields[\"original-title\"])) {\n \toperationConfirmed = confirm(\"You are about to restore a backup, but another version of this plugin is already active. Do you want to backup the current version (if not already existing) and restore this backup anyway ?\");\n \tif (operationConfirmed) {\n // after backing up, delete current $original-title Tiddler\n this.backupPlugin(backupTiddler.fields[\"original-title\"]);\n this.wiki.deleteTiddler(backupTiddler.fields[\"original-title\"]); \t\n }\n }\n \n \tif (operationConfirmed) {\n var pluginType = this.determinePluginType(backupTiddler.fields[\"plugin-type\"]);\n this.wiki.addTiddler(new $tw.Tiddler(backupTiddler, {\n \"title\": backupTiddler.fields[\"original-title\"],\n \"original-title\": undefined,\n \"plugin-type\": pluginType\n }));\n \t}\n }\n }\n \telse {\n \t\tthis.backupPlugin(this.actionPlugin);\n \t}\n }\n \treturn true; // Action was invoked\n};\n\nBackupPluginWidget.prototype.determinePluginType = function(name) {\n\tvar reg = /(.*)-backup/;\n \tvar matches = name.match(reg);\n \t\n \tif (matches != null) {\n \t\treturn matches[1]; \n }\n \n \treturn \"plugin\";\n}\n\n\nBackupPluginWidget.prototype.backupPlugin = function(plugin) {\n\tvar pluginTiddler = this.wiki.getTiddler(plugin);\n var didBackup = false;\n \tif (pluginTiddler instanceof $tw.Tiddler) {\n var backupTitle = this.getBackupTitle(pluginTiddler.fields.title, pluginTiddler.fields.version);\n didBackup = true;\n \n \t//Don't make a backup if a backup already exists\n \tif (!this.checkIfExists(backupTitle)) {\n var backupTiddler = new $tw.Tiddler(pluginTiddler, {\n \"title\": backupTitle,\n \"original-title\": pluginTiddler.fields.title,\n \"plugin-type\": \"\" + pluginTiddler.fields[\"plugin-type\"] + \"-backup\"\n });\n\n this.wiki.addTiddler(backupTiddler); \n \t}\n }\n \treturn didBackup;\n}\n\nBackupPluginWidget.prototype.getBackupTitle = function(title, version) {\n \treturn \"\" + title + \"-\" + version + \"-backup\";\n};\n \nBackupPluginWidget.prototype.checkIfExists = function(tiddler) {\n\treturn this.wiki.getTiddler(tiddler) != undefined;\n}\n \nexports[\"tinka-saveTaglistToField\"] = SaveTaglistToFieldWidget;\nexports[\"tinka-repackagePlugin\"] = repackagePluginWidget;\nexports[\"tinka-backupPlugin\"] = BackupPluginWidget;\n\n \n})();",
"created": "20150429142821657",
"modified": "20150919221130419",
"module-type": "widget",
"tags": "",
"title": "$:/plugins/ahahn/tinka/tinkaActions.js",
"type": "application/javascript"
},
"$:/plugins/ahahn/tinka/readme": {
"created": "20150429192607942",
"text": "This is a Control Panel extension that aims to simplify the plugin creation and editing process. After installing, you will find a new tab in your control panel that makes creating and modifying plugins a little bit easier.\n\n<a target=\"blank\" href=\"http://twguides.org/tinka\">Project Homepage on TWGuides.org</a>\n\n!! Version History\n\n!!! 2015-09-20 Release of version 0.2.0-beta\n\n''Changelog''\n\n* Added Help-Tab capabilities to quickly navigate between plugin tiddlers.\n* Moved Create-Plugin wizard to its own tab.\n* Redid Create-Plugin UI to be easier and more accessible.\n* Backups can now also be downloaded/exported.\n* Added more documentation.\n\n!!! 2015-05-18 Release of version 0.1.0\n\n''Changelog''\n\n* The metadata section now include edit fields for the `name` and `source` fields.\n* The //default search// box now only searches for title matches.\n* Backups can now be exported/downloaded.\n* <div>Backups can now be restored and made active again. If another version of the plugin is already active, the option is given to back it up,before restoring the backup.\n\n\n''Warning: For this mechanism to work, there has to be an 'original-title' field present in the backup tiddler. This is automatically added by Tinka, however earlier versions of Tinka did not add this field. If you want to restore a backup from an earlier version of Tinka, you will have to add the 'original-title' field manually and populate it with the former title of the plugin tiddler, in order for the restore function to work.''\n</div>\n\n!!! 2015-04-30 Release of version 0.0.2\n\n''Changelog''\n\n* The list of plugin tiddlers is now hidden by default, since some lists can get very long.\n* Added a different search option (default/filter)\n* Improved Documentation slightly\n* Added a backup option, so a plugin can be backed up before repackaging.\n\n \n!!! 2015-04-29 Release of version 0.0.1",
"modified": "20150920041326335",
"tags": "",
"title": "$:/plugins/ahahn/tinka/readme"
},
"$:/plugins/ahahn/tinka/backupList": {
"text": "\\define plugin-export()\n[title[$(currentTiddler)$]]\n\\end\n\n\\define plugin-icon-title()\n$(currentTiddler)$/icon\n\\end\n\n\\define plugin-disable-title()\n$:/config/Plugins/Disabled/$(currentTiddler)$\n\\end\n\n\\define plugin-table-body(type,disabledMessage)\n<div class=\"tc-plugin-info-chunk\">\n<$transclude tiddler=<<currentTiddler>> subtiddler=<<plugin-icon-title>>>\n<$transclude tiddler=\"$:/core/images/plugin-generic-$type$\"/>\n</$transclude></div>\n<div class=\"tc-plugin-info-chunk\">\n<h1>''<$view field=\"description\"><$view field=\"title\"/></$view>'' $disabledMessage$\n</h1>\n<h2>\n<$view field=\"title\"/>\n</h2>\n<h2>\n<div><em><$view field=\"version\"/></em></div>\n</h2></div>\n<div class=\"tinka-archive-buttons\">\n<$macrocall $name=\"tinkaExportButton\" exportFilter=<<plugin-export>> />\n<$button class=\"tc-btn-big-green tinka-blue\">\n<$tinka-backupPlugin $plugin=<<currentTiddler>> $restore=\"yes\"/>\n<$action-sendmessage $message=\"tm-modal\" $param=\"$:/plugins/ahahn/tinka/backupRestored\" />Restore</$button>\n</div>\n\\end\n\n\\define plugin-table(type)\n<$list filter=\"[!has[draft.of]plugin-type[$type$]sort[description]]\" emptyMessage=<<lingo \"Empty/Hint\">>>\n<$link to={{!!title}} class=\"tc-plugin-info\">\n<<plugin-table-body type:\"$type$\">>\n</$link>\n</$list>\n\\end\n\n!!Backups\n\n<<plugin-table plugin-backup>>\n<<plugin-table theme-backup>>\n<<plugin-table language-backup>>\n",
"caption": "Archive",
"created": "20150430102053890",
"list-after": "$:/plugins/ahahn/tinka/pluginManagement",
"modified": "20150919221649350",
"tags": "$:/tags/tinka/ControlPanel",
"title": "$:/plugins/ahahn/tinka/backupList"
},
"$:/plugins/ahahn/tinka/backupSuccess": {
"text": "<div class=\"tinka-success\">\n\n!!{{$:/core/images/done-button}} Backup Success !\n\nA backup of the plugin was successfully created.\n\n</div>\n",
"caption": "Backup Success",
"created": "20150430101135881",
"modified": "20150430101220633",
"tags": "",
"title": "$:/plugins/ahahn/tinka/backupSuccess"
},
"$:/plugins/ahahn/tinka/controlPanelExtension": {
"text": "<<tabs \"[[$:/plugins/ahahn/tinka/pluginManagement]] [[$:/plugins/ahahn/tinka/createDialog]] [[$:/plugins/ahahn/tinka/backupList]]\" \"$:/plugins/ahahn/tinka/pluginManagement\" \"$:/temp/tinka/cpTabs\">>",
"caption": "Tinka Plugin Management",
"created": "20150430102528177",
"modified": "20150605210413940",
"tags": "$:/tags/ControlPanel",
"title": "$:/plugins/ahahn/tinka/controlPanelExtension"
},
"$:/plugins/ahahn/tinka/search-default": {
"created": "20150430085404794",
"text": "\\define searchstring()\n[all[tiddlers]search:title{$(searchTiddler)$}sort[title]]\n\\end\n\nEnter search term: <$edit-text tiddler=\"$:/temp/tinka/search\" type=\"search\" default=\"\" tag=\"input\"/> <$reveal state=\"$:/temp/tinka/search\" type=\"nomatch\" text=\"\"><$button class=\"tc-btn-invisible\" set=\"$:/temp/tinka/search\" setTo=\"\">{{$:/core/images/close-button}}</$button></$reveal>\n<$reveal state=\"$:/temp/tinka/search\" type=\"nomatch\" text=\"\">\n<ul>\n<$set name=\"searchTiddler\" value=\"$:/temp/tinka/search\">\n<$list filter=<<searchstring>> emptyMessage=\"<i>No Tiddlers selected.</i>\">\n\t\t<li class=\"tinka-list-item\">\n <$checkbox tiddler=<<qualified-modify-add>> tag={{!!title}} />\n <$link to={{!!title}}>{{!!title}}</$link>\n </li>\n</$list>\n</$set>\n</ul>\n</$reveal>\n<$reveal state=\"$/temp/tinka/search\" type=\"match\" text=\"\">\n<ul>\n<li class=\"tinka-list-item\"><i>No Tiddlers selected.</i></li>\n</ul>\n</$reveal>",
"caption": "Default search",
"modified": "20150518065244651",
"tags": "$:/tags/TinkaSearch",
"title": "$:/plugins/ahahn/tinka/search-default"
},
"$:/plugins/ahahn/tinka/search-filter": {
"text": "Enter Filterstring to select tiddlers: <$edit-text tiddler=\"$:/temp/tinka/search\" type=\"search\" default=\"\" tag=\"input\"/> <$reveal state=\"$:/temp/tinka/search\" type=\"nomatch\" text=\"\"><$button class=\"tc-btn-invisible\" set=\"$:/temp/tinka/search\" setTo=\"\">{{$:/core/images/close-button}}</$button></$reveal>\n<ul>\n<$list filter={{$:/temp/tinka/search}} emptyMessage=\"<i>No Tiddlers selected.</i>\">\n\t\t<li class=\"tinka-list-item\">\n <$checkbox tiddler=<<qualified-modify-add>> tag={{!!title}} />\n <$link to={{!!title}}>{{!!title}}</$link>\n </li>\n</$list>\n</ul>",
"caption": "Filter search",
"created": "20150430084600236",
"list-after": "$:/plugins/ahahn/tinka/search-default",
"modified": "20150430092220463",
"tags": "$:/tags/TinkaSearch",
"title": "$:/plugins/ahahn/tinka/search-filter"
},
"$:/plugins/ahahn/tinka/searchDisplay": {
"text": "<<tabs \"[[$:/plugins/ahahn/tinka/search-default]] [[$:/plugins/ahahn/tinka/search-filter]]\" \"$:/plugins/ahahn/tinka/search-default\" \"$/temp/tinka/searchTab\">>",
"created": "20150430091839143",
"modified": "20150430103828300",
"tags": "",
"title": "$:/plugins/ahahn/tinka/searchDisplay"
},
"$:/plugins/ahahn/tinka/usage": {
"created": "20150430092825762",
"text": "{{$:/plugins/ahahn/tinka/docs/How to create a new plugin}}\n\n{{$:/plugins/ahahn/tinka/docs/Help Tab}}\n\n!! Notes\n\nWhen packaging or repackaging a plugin, the version number of the plugin is automatically increased. This might not be wanted in all cases and has to be manually corrected after packaging.\n\nAlso version suffixes such as:\n\n* -prerelease\n* -beta\n\nare supported and will be appended to the new version number when present.\n\n!! Plugin mechanism\nFor more information about how the plugin mechanism in TiddlyWiki works, see the official documentation: http://tiddlywiki.com/#PluginMechanism\n\n!! Filter language\nFilters are useful to select a subset of tiddlers from a wiki. If you are new to filters, learn more about them here: http://tiddlywiki.com/#Filters",
"caption": "Usage/Help",
"modified": "20150920123108372",
"tags": "",
"title": "$:/plugins/ahahn/tinka/usage"
},
"$:/plugins/ahahn/tinka/restoreSuccess": {
"text": "<div class=\"tinka-success\">\n\n!!{{$:/core/images/done-button}} Restore Success !\n\nThe backup was successfully restored!\n\n</div>\n",
"caption": "Backup Success",
"created": "20150518063135697",
"modified": "20150518063156354",
"tags": "",
"title": "$:/plugins/ahahn/tinka/restoreSuccess"
},
"$:/plugins/ahahn/tinka/tinka-export": {
"text": "\\define tinkaExportButtonFilename(baseFilename)\n$baseFilename$$(extension)$\n\\end\n\n\\define tinkaExportQualifiedState()\n$:/state/popup/tinkaExport-$(currentTiddler)$\n\\end\n\n\\define tinkaExportButton(exportFilter:\"[!is[system]sort[title]]\",lingoBase,baseFilename:\"tiddlers\")\n<span class=\"tc-popup-keep\">\n<$button popup=<<tinkaExportQualifiedState>> tooltip={{$lingoBase$Hint}} aria-label={{$lingoBase$Caption}} class=<<tv-config-toolbar-class>> selectedClass=\"tc-selected\">\n<$list filter=\"[<tv-config-toolbar-icons>prefix[yes]]\">\n{{$:/core/images/export-button}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>prefix[yes]]\">\n<span class=\"tc-btn-text\"><$text text={{$lingoBase$Caption}}/></span>\n</$list>\n</$button>\n</span>\n<$reveal state=<<tinkaExportQualifiedState>> type=\"popup\" position=\"below\" animate=\"yes\">\n<div class=\"tc-drop-down\">\n<$list filter=\"[all[shadows+tiddlers]tag[$:/tags/Exporter]]\">\n<$set name=\"extension\" value={{!!extension}}>\n<$button class=\"tc-btn-invisible\">\n<$action-sendmessage $message=\"tm-download-file\" $param=<<currentTiddler>> exportFilter=\"\"\"$exportFilter$\"\"\" filename=<<exportButtonFilename \"\"\"$baseFilename$\"\"\">>/>\n<$action-deletetiddler $tiddler=<<tinkaExportQualifiedState>>/>\n<$transclude field=\"description\"/>\n</$button>\n</$set>\n</$list>\n</div>\n</$reveal>\n\\end",
"created": "20150516093002511",
"modified": "20150516093448826",
"tags": "$:/tags/Macro",
"title": "$:/plugins/ahahn/tinka/tinka-export"
},
"$:/plugins/ahahn/tinka/icon": {
"created": "20150518101723465",
"title": "$:/plugins/ahahn/tinka/icon",
"type": "image/svg+xml",
"text": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<!-- Created with Inkscape (http://www.inkscape.org/) -->\n\n<svg\n xmlns:dc=\"http://purl.org/dc/elements/1.1/\"\n xmlns:cc=\"http://creativecommons.org/ns#\"\n xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\"\n xmlns:svg=\"http://www.w3.org/2000/svg\"\n xmlns=\"http://www.w3.org/2000/svg\"\n xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"\n xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"\n width=\"28\"\n height=\"28\"\n id=\"svg2\"\n version=\"1.1\"\n inkscape:version=\"0.48.4 r9939\"\n sodipodi:docname=\"tinka_logo.svg\">\n <defs\n id=\"defs4\" />\n <sodipodi:namedview\n id=\"base\"\n pagecolor=\"#ffffff\"\n bordercolor=\"#666666\"\n borderopacity=\"1.0\"\n inkscape:pageopacity=\"0.0\"\n inkscape:pageshadow=\"2\"\n inkscape:zoom=\"22.627417\"\n inkscape:cx=\"12.192879\"\n inkscape:cy=\"16.062665\"\n inkscape:document-units=\"px\"\n inkscape:current-layer=\"layer1\"\n showgrid=\"false\"\n inkscape:window-width=\"1920\"\n inkscape:window-height=\"1137\"\n inkscape:window-x=\"-8\"\n inkscape:window-y=\"-8\"\n inkscape:window-maximized=\"1\" />\n <metadata\n id=\"metadata7\">\n <rdf:RDF>\n <cc:Work\n rdf:about=\"\">\n <dc:format>image/svg+xml</dc:format>\n <dc:type\n rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" />\n <dc:title></dc:title>\n </cc:Work>\n </rdf:RDF>\n </metadata>\n <g\n inkscape:label=\"Ebene 1\"\n inkscape:groupmode=\"layer\"\n id=\"layer1\"\n transform=\"translate(0,-1024.3622)\">\n <g\n id=\"g2987\"\n transform=\"matrix(0.21875,0,0,0.21875,-0.03334395,1024.3224)\"\n style=\"fill-rule:evenodd\">\n <path\n id=\"path2989\"\n d=\"m 40.397288,76.445699 0,18.894708 14.119729,0 0,0 c -4.64e-4,-0.0019 -9.28e-4,-0.0038 -0.0014,-0.0057 0.09369,0.0038 0.187859,0.0057 0.282472,0.0057 3.817607,0 6.912389,-3.094782 6.912389,-6.912389 0,-1.808236 -0.694317,-3.454305 -1.830894,-4.686151 l 0,0 c 0.0154,-0.0077 0.03082,-0.01536 0.04626,-0.02299 -1.041794,-1.210214 -1.671559,-2.785252 -1.671559,-4.50738 0,-3.817607 3.094781,-6.912389 6.912388,-6.912389 3.817607,0 6.912389,3.094782 6.912389,6.912389 0,1.983922 -0.835789,3.772635 -2.174474,5.033245 l 0,0 c 0.02875,0.01818 0.05739,0.0365 0.08594,0.05496 l 0,0 c -0.859106,1.151989 -1.367662,2.580762 -1.367662,4.128315 0,3.430479 2.498947,6.277297 5.775777,6.81939 -0.0073,0.03105 -0.01478,0.06205 -0.02239,0.093 l 21.320134,0 0,-19.772549 0,0 c -0.04975,0.013 -0.09964,0.02563 -0.149675,0.0379 0.0038,-0.09369 0.0057,-0.187859 0.0057,-0.282472 0,-3.817607 -3.094782,-6.912389 -6.912389,-6.912389 -1.808236,0 -3.454305,0.694317 -4.686152,1.830894 l 0,0 c -0.0077,-0.0154 -0.01536,-0.03082 -0.02299,-0.04626 -1.210214,1.041794 -2.785253,1.671559 -4.507381,1.671559 -3.817607,0 -6.912388,-3.094781 -6.912388,-6.912388 0,-3.817607 3.094781,-6.912389 6.912388,-6.912389 1.983923,0 3.772636,0.835789 5.033245,2.174474 l 0,0 c 0.01818,-0.02875 0.0365,-0.05739 0.05496,-0.08594 l 0,0 c 1.151989,0.859106 2.580762,1.367662 4.128315,1.367662 3.430479,0 6.277297,-2.498947 6.81939,-5.775777 0.07936,0.01871 0.158369,0.03834 0.237007,0.05889 l 0,-15.740322 -21.320134,0 0,0 c 0.0076,-0.03094 0.01507,-0.06194 0.02239,-0.093 l 0,0 c -3.27683,-0.542092 -5.775777,-3.388911 -5.775777,-6.81939 0,-1.547552 0.508556,-2.976326 1.367662,-4.128315 -0.02855,-0.01846 -0.0572,-0.03678 -0.08594,-0.05496 1.338685,-1.260609 2.174474,-3.049323 2.174474,-5.033245 C 72.07907,20.094782 68.984288,17 65.166681,17 c -3.817607,0 -6.912388,3.094782 -6.912388,6.912389 0,1.722128 0.629765,3.297167 1.671559,4.50738 l 0,0 c -0.01544,0.0076 -0.03086,0.01529 -0.04626,0.02299 1.136577,1.231846 1.830894,2.877915 1.830894,4.686151 0,3.817607 -3.094782,6.912389 -6.912389,6.912389 -0.09461,0 -0.188783,-0.0019 -0.282472,-0.0057 l 0,0 c 4.63e-4,0.0019 9.27e-4,0.0038 0.0014,0.0057 l -14.119729,0 0,12.846368 0,0 c 0.0944,0.455349 0.144008,0.927098 0.144008,1.410434 0,3.817607 -3.094782,6.912389 -6.912389,6.912389 -1.547552,0 -2.976326,-0.508556 -4.128315,-1.367663 -0.01846,0.02855 -0.03678,0.0572 -0.05496,0.08594 -1.260609,-1.338685 -3.049323,-2.174474 -5.033245,-2.174474 -3.817607,0 -6.912389,3.094781 -6.912389,6.912388 0,3.817607 3.094782,6.912389 6.912389,6.912389 1.722128,0 3.297167,-0.629765 4.50738,-1.671559 l 0,0 c 0.0076,0.01544 0.01529,0.03086 0.02299,0.04626 1.231846,-1.136577 2.877915,-1.830894 4.686151,-1.830894 3.817607,0 6.912389,3.094782 6.912389,6.912389 0,0.483335 -0.04961,0.955085 -0.144008,1.410434 z M 64,0 l 54.5596,32 0,64 L 64,128 9.4403996,96 l 0,-64 L 64,0 z\"\n inkscape:connector-curvature=\"0\" />\n </g>\n <path\n sodipodi:type=\"arc\"\n style=\"fill:#630fb2;fill-opacity:1;fill-rule:nonzero;stroke:none\"\n id=\"path2999\"\n sodipodi:cx=\"456.42856\"\n sodipodi:cy=\"165.93361\"\n sodipodi:rx=\"162.14285\"\n sodipodi:ry=\"162.14285\"\n d=\"m 618.57141,165.93361 a 162.14285,162.14285 0 1 1 -0.002,-0.80734\"\n sodipodi:start=\"0\"\n sodipodi:end=\"6.2782061\"\n sodipodi:open=\"true\"\n transform=\"matrix(0.06593776,0,0,0.06593776,-16.215024,1027.2261)\" />\n <path\n style=\"fill:#3cff80;fill-opacity:1;fill-rule:nonzero;stroke:none\"\n d=\"m 14.745406,1034.4667 -1.99638,3.2989 0,0.1196 0,7.1336 0,3.4185 1.99638,-3.299 0,-0.1195 0,-7.1336 0,-3.4185 z\"\n id=\"rect3769\"\n inkscape:connector-curvature=\"0\" />\n <path\n style=\"fill:#ffa600;fill-opacity:1;fill-rule:nonzero;stroke:none\"\n d=\"m 7.3063061,1034.2471 3.2989499,-3.1032 0.11951,0 7.13365,0 3.41846,0 -3.29895,3.1032 -0.11951,0 -7.13365,0 -3.4184599,0 z\"\n id=\"rect3769-0\"\n inkscape:connector-curvature=\"0\" />\n </g>\n</svg>\n",
"modified": "20150518101956638"
},
"$:/plugins/ahahn/tinka/emptyDiff": {
"text": "",
"created": "20150811103346284",
"modified": "20150811103359959",
"tags": "",
"title": "$:/plugins/ahahn/tinka/emptyDiff"
},
"$:/plugins/ahahn/tinka/pluginSidePanel": {
"text": "\\define pluginFilter()\n[[$(pluginPrefix)$]plugintiddlers[]sort[]]\n\\end\n\n\\define pluginDirFilter()\n[all[tiddlers]prefix[$(pluginPrefix)$]sort[]]\n\\end\n\n\\define newPluginTiddler()\n$(pluginPrefix)$/New Tiddler\n\\end\n\n<$button class=\"tc-btn-invisible tinka-invisible\">\n<$action-sendmessage $message=\"tm-new-tiddler\" $param=<<newPluginTiddler>> />''\n{{$:/core/images/new-button}} Add Tiddler''</$button>\n\n!!!Shadow tiddlers contained in the plugin:\n\n<$list filter=<<pluginFilter>> template=\"$:/core/ui/ListItemTemplate\"/>\n\n!!!Normal tiddlers in the plugin directory:\n<$list filter=<<pluginDirFilter>> template=\"$:/core/ui/ListItemTemplate\"/>\n\n<$reveal state=\"!!extender\" type=\"nomatch\" text=\"open\">\n<$button set=\"!!extender\" setTo=\"open\" class=\"tc-btn-invisible tinka-sidebar-button\"><h3>{{$:/core/images/chevron-right}} Filter search</h3></$button>\n</$reveal>\n<$reveal state=\"!!extender\" type=\"match\" text=\"open\">\n<$button set=\"!!extender\" setTo=\"close\" class=\"tc-btn-invisible tinka-sidebar-button\"><h3>{{$:/core/images/chevron-down}} Filter search</h3></$button>\n<div>\n<$edit-text type=\"search\" tiddler=\"$:/plugins/ahahn/tinka/temp/helpTabSearch\" field=\"filterSearch\" />\n<$list filter={{$:/plugins/ahahn/tinka/temp/helpTabSearch!!filterSearch}} template=\"$:/core/ui/ListItemTemplate\"/>\n</div>\n</$reveal>\n\n<$button class=\"tc-btn-big-green tinka-orange\">\n<$tinka-repackagePlugin $plugin=<<pluginPrefix>> $create=\"no\" $diff=\"$:/plugins/ahahn/tinka/emptyDiff\" />\n<$action-sendmessage $message=\"tm-modal\" $param=\"$:/plugins/ahahn/tinka/packageSuccess\" />Quick-Package</$button>\n<$button class=\"tc-btn-big-green tinka-blue\">\n<$action-deletetiddler $tiddler=<<currentTiddler>> />\nDisable Help Tab</$button>\n",
"created": "20150809152549762",
"modified": "20150919221431355",
"tags": "",
"title": "$:/plugins/ahahn/tinka/pluginSidePanel"
},
"$:/plugins/ahahn/tinka/createMetadata/noSpecialPluginType": {
"text": "<tr>\n \t<td>Description:</td>\n <td><$edit-text tag=\"input\" type=\"text\" placeholder=\"e.g. Tinka - Plugin Packer\" field=\"create-description\"/></td>\n \n <td>Name:</td>\n <td><$edit-text tag=\"input\" type=\"text\" field=\"create-name\"/></td>\n</tr>",
"created": "20150919211444556",
"modified": "20150919212436686",
"tags": "",
"title": "$:/plugins/ahahn/tinka/createMetadata/noSpecialPluginType"
},
"$:/plugins/ahahn/tinka/createMetadata/pluginPluginType": {
"created": "20150919211823505",
"text": "<tr>\n \t<td>''Plugin Title:''</td>\n <td colspan=\"3\"><$edit-text class=\"tinka-full-edit\" tag=\"input\" type=\"text\" placeholder=\"e.g. Tinka - Plugin Packer\" field=\"create-description\"/></td>\n</tr>",
"modified": "20150919225352353",
"tags": "",
"title": "$:/plugins/ahahn/tinka/createMetadata/pluginPluginType"
},
"$:/plugins/ahahn/tinka/createMetadata/tableEnd": {
"text": "<tr>\n <td>Version:</td>\n <td><$edit-text tag=\"input\" type=\"text\" field=\"create-version\"/></td>\n \n\t\t<td>Core-Version:</td>\n <td><$edit-text type=\"text\" placeholder=\"e.g. >=5.1.8\" tag=\"input\" field=\"create-core-version\"/></td>\n\t</tr>",
"created": "20150919211710224",
"modified": "20150919211726902",
"tags": "",
"title": "$:/plugins/ahahn/tinka/createMetadata/tableEnd"
},
"$:/plugins/ahahn/tinka/createMetadata/tableHead": {
"created": "20150919211345358",
"text": "\t<tr>\n\t\t<td>''Plugin Path:''</td>\n <td colspan=\"3\">`$:/plugins/`<$edit-text class=\"tinka-inline-edit\" type=\"text\" placeholder=\"e.g. myName\" tag=\"input\" field=\"create-title-org\"/>`/`<$edit-text type=\"text\" class=\"tinka-inline-edit\" placeholder=\"e.g. myPlugin\" tag=\"input\" field=\"create-title-name\" /></td> \n\t</tr>\n \n <tr>\n\t\t<td>Author:</td>\n <td><$edit-text type=\"text\" placeholder=\"e.g. John Doe\" tag=\"input\" field=\"create-author\"/></td>\n\t\t\n\t\t<td>Source:</td>\n <td><$edit-text tag=\"input\" type=\"text\" placeholder=\"e.g. http://twguides.org\" field=\"source\"/></td>\n\t</tr>\n\n\t<tr>\n\t\t<td>Dependents:</td>\n <td><$edit-text tag=\"input\" type=\"text\" field=\"create-dependents\"/></td>\n \n <td>List:</td>\n <td><$edit-text tag=\"input\" type=\"text\" placeholder=\"e.g. readme usage\" field=\"create-list\"/></td>\n \t</tr>",
"modified": "20150920015233332",
"tags": "",
"title": "$:/plugins/ahahn/tinka/createMetadata/tableHead"
},
"$:/plugins/ahahn/tinka/createMetadata/themePluginType": {
"created": "20150919211756488",
"text": "<tr>\n <td>''Theme Title:''</td>\n <td colspan=\"3\"><$edit-text class=\"tinka-full-edit\" tag=\"input\" type=\"text\" field=\"create-name\"/></td>\n</tr>",
"modified": "20150919225338775",
"tags": "",
"title": "$:/plugins/ahahn/tinka/createMetadata/themePluginType"
},
"$:/plugins/ahahn/tinka/tinkaCommonAction.js": {
"text": "/*\\\ntitle: $:/plugins/ahahn/tinka/tinkaCommonAction.js\ntype: application/javascript\nmodule-type: widget\n\nTinka common action widget\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar CommonActionWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nCommonActionWidget.prototype = new Widget();\n\n/*\nSetup an action widget with these properties\n*/\nCommonActionWidget.prototype.setup = function(allowPropagation, doRenderChildren, preparedParams, refreshOnAttributeChange) {\n\tthis.doRenderChildren = doRenderChildren;\n\tthis.preparedParams = preparedParams;\n\tthis.allowPropagation = allowPropagation;\n\tthis.refreshOnAttributeChange = refreshOnAttributeChange;\n}\n \n \n/*\nRender this widget into the DOM\n*/\nCommonActionWidget.prototype.render = function(parent,nextSibling) {\n\tthis.parentDomNode = parent;\n\tthis.computeAttributes();\n\tthis.execute();\n \tif (this.doRenderChildren) {\n\t\tthis.renderChildren(parent,nextSibling);\n \t}\n};\n\n/*\nCompute the internal state of the widget\n*/\nCommonActionWidget.prototype.execute = function() {\n this.processAttributes();\n\t// Construct the child widgets\n\tif (this.doRenderChildren) {\n\t\tthis.makeChildWidgets();\n\t}\n};\n\t\n/*\nCompute the values of our attributes\n*/\nCommonActionWidget.prototype.processAttributes = function() {\n\tvar self = this;\n\tthis.computeAttributes();\n\tthis.param = {};\n\t$tw.utils.each(this.preparedParams, function(name) {\n\t\tself.param[name] = self.getAttribute(name);\n\t});\n}\n\nCommonActionWidget.prototype.allowActionPropagation = function() {\n\treturn this.allowPropagation;\t\n}\n\nCommonActionWidget.prototype.isEmptyObject = function(obj) {\n\tfor(var prop in obj) {\n if(obj.hasOwnProperty(prop))\n return false;\n }\n\n return true;\n}\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nCommonActionWidget.prototype.refresh = function(changedTiddlers) {\n \tvar changedAttributes = this.computeAttributes();\n\tconsole.log(changedAttributes);\n\t\t\n\tif(!this.isEmptyObject(changedAttributes) && this.refreshOnAttributeChange) {\n\t\tthis.refreshSelf();\n\t\tconsole.log(this.param);\n\t\treturn true;\n }\n\telse if (!this.isEmptyObject(changedAttributes)) {\n\t\tthis.processAttributes();\n\t\tconsole.log(this.param);\n\t}\n\t\n\treturn this.refreshChildren(changedTiddlers);\t\t\n};\n\nexports.tinkaCommonAction = CommonActionWidget;\n\n})();\n",
"created": "20150811173925660",
"modified": "20150811174024738",
"module-type": "widget",
"tags": "",
"title": "$:/plugins/ahahn/tinka/tinkaCommonAction.js",
"type": "application/javascript"
},
"$:/plugins/ahahn/tinka/tinka-filter.js": {
"text": "/*\\\ntitle: $:/plugins/ahahn/tinka/tinka-filter.js\ntype: application/javascript\nmodule-type: widget\n\nWidgets to filters actions according to their verb.\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar TinkaCommonActionWidget = require(\"$:/plugins/ahahn/tinka/tinkaCommonAction.js\").tinkaCommonAction;\n\nvar FilterAction = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n\tthis.setup(false, true, [\"verb\"], true);\n};\n\nFilterAction.prototype = new TinkaCommonActionWidget();\n/*\nInvoke the action associated with this widget\n*/\nFilterAction.prototype.invokeAction = function(triggeringWidget,event) {\n\tif (event.verb === this.param[\"verb\"]) {\n\t\tthis.invokeActions(triggeringWidget, event);\n\t}\n\treturn true; // Action was invoked\n};\n\nexports[\"tinka-filter\"] = FilterAction;\n\n})();\n",
"created": "20150811175714804",
"modified": "20150920001847809",
"module-type": "widget",
"tags": "",
"title": "$:/plugins/ahahn/tinka/tinka-filter.js",
"type": "application/javascript"
},
"$:/plugins/ahahn/tinka/packageErrors": {
"text": "\\define errorFilter()\n[[$(errorVars)$]fields[]prefix[error]]\n\\end\n\n\n<div class=\"tinka-error\">\n\n!!{{$:/core/images/close-button}} There were some errors !\n\nThe follwoing errors occured whilst processing your request:\n\n<ul>\n\t<$list filter=<<errorFilter>> variable=\"errorField\">\n\t\t<li><$view tiddler=<<errorVars>> field=<<errorField>> /></li>\n\t</$list>\n</ul>\n</div>\n",
"caption": "Packaging Success",
"created": "20150920010500455",
"modified": "20150920013901041",
"tags": "",
"title": "$:/plugins/ahahn/tinka/packageErrors"
},
"$:/plugins/ahahn/tinka/docs/Help Tab": {
"text": "!!Using the Help Tab\n\nWhen working on a plugin, it is often handy to be able to navigate quickly between the plugin tiddlers. That is what the Help Tab is for.\nAfter enabling it in the \"Tinka Plugin Management\" tab for a specific plugin in the Control Panel, it gives you an additional sidebar tab, that contains a list of all the tiddlers that are contained in the plugin in question. Furthermore, it also shows you tiddlers that live in the same \"directory\" which are likely tiddlers that you want to add to the plugin eventually.\n\nIf you have tiddlers whose names aren't prefixed by the plugin path, you can use the Filter search included in the help tab to select those. For example, if the rest of your tiddlers is scattered somewhere in the wiki, but tagged with <span class=\"tc-tag-label\">myPlugin</span>, you could use the filter: `[tag[myPlugin]]` to select them.\n\nAlso included in the Help Tab is a button to quickly add a new tiddler to a plugin without having to type out the whole `$:/plugins.../...` path and an option to disable the Help Tab again. Lastly, the \"Quick Package\" button gives you the option of quickly integrating changes you made to individual tiddlers into the plugin. Note that the \"Quick Package\" Button will only integrate the changes you made to tiddlers already contained in the plugin into the plugin tiddler itself, you can't add new tiddlers to a plugin this way. For those tasks, you will still have to use the control panel menu.",
"created": "20150920114346387",
"modified": "20150920123008933",
"tags": "",
"title": "$:/plugins/ahahn/tinka/docs/Help Tab"
},
"$:/plugins/ahahn/tinka/docs/How to create a new plugin": {
"text": "!! How to create a new plugin\n\nTo create a completely new plugin, first go to the Control Panel extension Tinka provides and click on the \"Create new Plugin\" button. Next enter the ''plugin type'' of the plugin you want to create or choose a type from the dropdown menu. Usually you will want to use either the value \"''plugin''\" or \"''theme''\", as this covers most cases of plugins.\n\nNext is the ''plugin path'': This is the name of the tiddler where the finished plugin is going to be stored in. TiddlyWiki uses a special naming theme for these, so you will mostly find that the actual tiddlers that contain a plugin are named in this scheme:\n\n`$:/plugins/myOrganisation/pluginName`. \n\nThis ensures that plugins can be not only immideately recognized, but are also separate from other tiddlers in the wiki.\n\nAfter also entering a title for your new plugin or theme, you are basically good to go. These three fields: ''plugin type'', ''plugin path'' and the ''plugin title'' are all the fields that are required for a functioning plugin. In theory, you could now go ahead and press the \"''Package Plugin''\" button, which will give you an empty plugin shell to which you can add tiddlers later.\n\nIn most cases however it is desired to also fill out the rest of the metadata fields. In detail, these are:\n\n* ''Author:'' Name of the plugin author.\n* ''Source:'' Website or URL of the plugin, also the place where updates are found.\n* ''Dependents:'' List of plugins this plugin depends on (usually empty, but e.g. `$:/core`)\n* ''List'': List of tiddlers contained in the plugin, that will serve as readme tiddlers, when inspecting a plugin via the control panel. (e.g. `$:/plugins/ahahn/tinka/readme`)\n* ''Version:'' Version of your plugin in the format: X.X.X\n* ''Core-Version:'' Usually the minimal TiddlyWiki version your plugin requires in order for it to work (e.g //>=5.1.8//)\n\nDepending on the plugin type you chose, you might also come across the following metadata fields:\n\n* ''Description:'' For plugins, this contains the plugin title that is shown in the control panel.\n* ''Name:'' For themes, this contains the theme title that is shown in the control panel.\n\nAfter entering the metadata, all that is left is to select the tiddlers you want to include in the plugin. You can search for these via the default search field, but you can also use a filter to find them (e.g. based on a tag). In most cases it is sufficient to enter the name of the plugin into the default search in order to find the tiddlers that belong to the plugin. Lastly, just click the \"''Package Plugin''\" button and you're done, you have now created your first plugin. A save&refresh will be required for it to be loaded into TiddlyWiki.\n",
"created": "20150920115806567",
"modified": "20150920123659205",
"tags": "",
"title": "$:/plugins/ahahn/tinka/docs/How to create a new plugin"
},
"$:/plugins/ahahn/tinka/tinka-check.js": {
"text": "/*\\\ntitle: $:/plugins/ahahn/tinka/tinka-check.js\ntype: application/javascript\nmodule-type: widget\n\nChecks param \"text\" for match with \"pattern\".\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar TinkaCommonActionWidget = require(\"$:/plugins/ahahn/tinka/tinkaCommonAction.js\").tinkaCommonAction;\n\nvar CheckAction = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n\tthis.setup(false, true, [\"text\", \"pattern\"], true);\n};\n\nCheckAction.prototype = new TinkaCommonActionWidget();\n/*\nInvoke the action associated with this widget\n*/\nCheckAction.prototype.invokeAction = function(triggeringWidget,event) {\n\t//important: recompute Attributes\n\tthis.processAttributes();\n\tvar regexp = new RegExp(this.param[\"pattern\"]);\n\t\n\tif (regexp.test(this.param[\"text\"])){\n\t\tvar ev = {};\n\t\tev.verb = \"pass\";\n\t\tev.data = event;\n\t\tthis.invokeActions(triggeringWidget, ev); \n\t}\n\telse {\n\t\tvar ev = {};\n\t\tev.verb = \"fail\";\n\t\tev.data = event;\n\t\tthis.invokeActions(triggeringWidget, ev);\n\t}\n\t\n\treturn true; // Action was invoked\n};\n\nexports[\"tinka-check\"] = CheckAction;\n\n})();\n",
"created": "20150920000614566",
"modified": "20150920001922841",
"module-type": "widget",
"tags": "",
"title": "$:/plugins/ahahn/tinka/tinka-check.js",
"type": "application/javascript"
}
}
}
{
"tiddlers": {
"$:/plugins/danielo/encryptTiddler/Changelog": {
"title": "$:/plugins/danielo/encryptTiddler/Changelog",
"text": "!! V2.1\n* Added control panel.\n* Added ability to batch encrypt and decrypt tiddlers.\n* Added some documentation an language strings.\n\n"
},
"$:/plugins/danielo/encryptTiddler/control-panel/batch-encrypt": {
"title": "$:/plugins/danielo/encryptTiddler/control-panel/batch-encrypt",
"caption": "Batch Encryption",
"text": "\\define lingo-base() $:/language/Search/\n<<lingo Filter/Hint>>\n{{$:/plugins/danielo/encryptTiddler/language/batch}}\n\n<$linkcatcher to=\"$:/temp/encrypt/filter\">\n\n<div class=\"tc-search tc-advanced-search\">\n<$edit-text tiddler=\"$:/temp/encrypt/filter\" type=\"search\" tag=\"input\" default=\"\" placeholder=\"filter tiddlers\"/>\n<$button popup=<<qualify \"$:/state/filterDropdown\">> class=\"tc-btn-invisible\">\n{{$:/core/images/down-arrow}}\n</$button>\n<$reveal state=\"$:/temp/encrypt/filter\" type=\"nomatch\" text=\"\">\n<$button class=\"tc-btn-invisible\">\n<$action-setfield $tiddler=\"$:/temp/encrypt/filter\" $field=\"text\" $value=\"\"/>\n{{$:/core/images/close-button}}\n</$button>\n\n\n<$edit-text tag=\"input\" tiddler=\"$:/temp/password\" placeholder=\"password\" type=\"password\" default=\"\" col=\"4\"/><$encryptTiddler passwordTiddler=\"$:/temp/password\" filter={{$:/temp/encrypt/filter}}>\n<$button message=\"tw-encrypt-tiddler\">\nEncrypt\n</$button>\n<$button message=\"tw-decrypt-tiddler\">\nDecrypt\n</$button>\n</$encryptTiddler>\n</$reveal>\n</div>\n\n<div class=\"tc-block-dropdown-wrapper\">\n<$reveal state=<<qualify \"$:/state/filterDropdown\">> type=\"nomatch\" text=\"\" default=\"\">\n<div class=\"tc-block-dropdown tc-edit-type-dropdown\">\n<$list filter=\"[all[shadows+tiddlers]tag[$:/tags/Filter]!sort[]] -[[$:/core/Filters/SystemTags]] -[[$:/core/Filters/AllTags]]\"><$link to={{!!filter}}><$transclude field=\"description\"/></$link>\n</$list>\n</div>\n</$reveal>\n</div>\n\n</$linkcatcher>\n\n<$reveal state=\"$:/temp/encrypt/filter\" type=\"nomatch\" text=\"\">\n<$set name=\"resultCount\" value=\"\"\"<$count filter={{$:/temp/encrypt/filter}}/>\"\"\">\n<div class=\"tc-search-results\">\n<<lingo Filter/Matches>>\n<$list filter={{$:/temp/encrypt/filter}} template=\"$:/plugins/danielo/encryptTiddler/ui/listItemTemplate\"/>\n</div>\n</$set>\n</$reveal>"
},
"$:/plugins/danielo/encryptTiddler/control-panel": {
"title": "$:/plugins/danielo/encryptTiddler/control-panel",
"tags": "$:/tags/ControlPanel",
"caption": "Encrypt Tiddlers",
"text": "\\define prefix(name) $:/plugins/danielo/encryptTiddler/control-panel/$name$\n\n<$macrocall $name=\"tabs\" tabsList=\"[all[shadows+tiddlers]prefix[$:/plugins/danielo/encryptTiddler/control-panel/]]\" default=<<prefix \"batch-encrypt\">> state=\"$:/state/encryptTiddler/control-panel/tabs\">>"
},
"$:/plugins/danielo/encryptTiddler/crypt-batch-button": {
"creator": "Danielo",
"title": "$:/plugins/danielo/encryptTiddler/crypt-batch-button",
"text": "<span title=\"Encrypt/Decrypt tiddler\" class=\"pc-batch-controls\">\n<$reveal state=<<qualify \"$:/state/encrypt\">> type=\"nomatch\" text={{!!title}} animate=\"no\"><$button set=<<qualify \"$:/state/encrypt\">> setTo={{!!title}} class=\"tc-btn-invisible\">{{$:/plugins/danielo/encryptTiddler/unlocked}}</$button></$reveal><$reveal state=<<qualify \"$:/state/encrypt\">> type=\"match\" text={{!!title}} animate=\"no\"><$button set=<<qualify \"$:/state/encrypt\">> setTo=\"\" class=\"tc-btn-invisible\">{{$:/plugins/danielo/encryptTiddler/unlocked}}</$button></$reveal>\n<$encryptTiddler passwordTiddler=\"$:/temp/password\" filter={{$:/temp/encrypt/filter}}><$reveal state=<<qualify \"$:/state/encrypt\">> type=\"match\" text={{!!title}} animate=\"yes\">\n<div class=\"tc-block-dropdown tw-crypt-dropdown\">\n<span class=\"tw-password-field\"><$edit-text tiddler=\"$:/temp/password\" tag=\"input\" type=\"password\" default=\"\" placeholder=\"password\" class=\"tc-edit-texteditor\"/></span>\n<span class=\"tw-crypt-button\"> <$button message=\"tw-encrypt-tiddler\" set=<<qualify \"$:/state/encrypt\">> setTo=\"\" >Encrypt</$button> <$button message=\"tw-decrypt-tiddler\" set=<<qualify \"$:/state/encrypt\">> setTo=\"\" >Decrypt</$button></span>\n</div>\n</$reveal></$encryptTiddler>\n</span>"
},
"$:/plugins/danielo/encryptTiddler/crypt-button": {
"created": "20140405233000477",
"creator": "Danielo",
"modified": "20140608121335075",
"tags": "$:/tags/ViewToolbar button encrypt export",
"title": "$:/plugins/danielo/encryptTiddler/crypt-button",
"type": "text/vnd.tiddlywiki",
"text": "<span title=\"Encrypt/Decrypt tiddler\"><$transclude tiddler=\"$:/plugins/danielo/encryptTiddler/openPopup\"/>\n</span><$encryptTiddler passwordTiddler=\"$:/temp/password\"><$reveal state=\"$:/state/encrypt\" type=\"match\" text={{!!title}} animate=\"yes\">\n<div class=\"tc-block-dropdown tw-crypt-dropdown\">\n<span class=\"tw-password-field\"><$edit-text tiddler=\"$:/temp/password\" tag=\"input\" type=\"password\" default=\"\" placeholder=\"password\" class=\"tc-edit-texteditor\"/></span>\n<span class=\"tw-crypt-button\"> <$list filter=\"[all[current]!has[encrypted]]\"> <$button message=\"tw-encrypt-tiddler\" set=\"$:/state/encrypt\" setTo=\"\" >Encrypt</$button></$list><$list filter=\"[is[current]has[encrypted]]\"> <$button message=\"tw-decrypt-tiddler\" set=\"$:/state/encrypt\" setTo=\"\" >Decrypt</$button></$list></span>\n</div>\n</$reveal></$encryptTiddler>\n"
},
"$:/plugins/danielo/encryptTiddler/Encrypt-Tiddler": {
"created": "20140406153742691",
"creator": "pepito",
"description": "add the hability to encrypt individual tiddlers",
"modified": "20141029152631265",
"modifier": "Danielo Rodriguez",
"tags": "index plugins",
"title": "$:/plugins/danielo/encryptTiddler/Encrypt-Tiddler",
"type": "text/vnd.tiddlywiki",
"caption": "readme",
"text": "This plugin adds the ability to encrypt your tiddlers individually. This have several advantages:\n\n* You can specify a different password for each tiddler if you want.\n* You don't have to encrypt your whole wiky.\n* If you forget your password, you only lose a tiddler.\n* It's possible to edit the tiddler content , tags and fields ''except the encrypt field'' after encryption. Decrypting your tiddler will restore it to its original state when you encrypted it. This way you can hide the encrypted tiddlers as a \"different\" thing.\n* You can even encrypt images.\n* You can have sensible data in a day to day wiky.\n* I didn't try this, but theoretically you can apply double encryption by encrypting your wiki too."
},
"$:/plugins/danielo/encryptTiddler/encrypttiddler.js": {
"text": "/*\\\ntitle: $:/plugins/danielo/encryptTiddler/encrypttiddler.js\ntype: application/javascript\nmodule-type: widget\n\nencrypttiddler widget\n\n```\n\n```\n\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar encryptTiddlerWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n\tthis.addEventListeners([\n\t\t\t{type: \"tw-encrypt-tiddler\", handler: \"handleEncryptevent\"},\n\t\t\t{type: \"tw-decrypt-tiddler\", handler: \"handleDecryptevent\"},\n\t\t\t]);\n};\n\n/*\nInherit from the base widget class\n*/\nencryptTiddlerWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nencryptTiddlerWidget.prototype.render = function(parent,nextSibling) {\n\tconsole.log(\"Render\");\n\tthis.parentDomNode = parent;\n\tthis.computeAttributes();\n\tthis.execute();\n\tthis.renderChildren(parent,nextSibling);\n};\n\n/*\nCompute the internal state of the widget\n*/\nencryptTiddlerWidget.prototype.execute = function() {\n\t// Get attributes\n\t this.tiddlerTitle=this.getAttribute(\"tiddler\",this.getVariable(\"currentTiddler\"));\n\t this.filter=this.getAttribute(\"filter\",undefined);\n \t this.passwordTiddler=this.getAttribute(\"passwordTiddler\");\n\t// Construct the child widgets\n\tconsole.log(this.targetTiddler);\n\t\tthis.makeChildWidgets();\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nencryptTiddlerWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\tif(changedAttributes.tiddler || changedAttributes.filter) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t} else {\n\t\treturn this.refreshChildren(changedTiddlers);\n\t}\n};\n\nencryptTiddlerWidget.prototype.getTiddlersToProcess = function(){\n\tif(this.filter){ //we have a filter to work with\n\t\treturn this.wiki.filterTiddlers(this.filter);\n\t}else{ //single tiddler case\n\t\tvar tiddler = this.wiki.getTiddler(this.tiddlerTitle);\n\t\treturn tiddler? [tiddler.fields.title] : [];\n\t}\n};\n\nencryptTiddlerWidget.prototype.handleEncryptevent = function(event){\n\tvar password = this.getPassword();\n\tvar tiddlers = this.getTiddlersToProcess();\n\n\tif(tiddlers.length > 0 && password){\n\t\tvar self = this;\n\t\t$tw.utils.each(tiddlers, function(title){\n\t\t\tvar tiddler = self.wiki.getTiddler(title);\n\t\t\tvar fields={text:\"!This is an encrypted Tiddler\",\n\t\t\t\t\t\t\t\t encrypted:self.encryptFields(title,password)};\n\t\t\tself.saveTiddler(tiddler,fields);\n\t\t});\n\n\t}else{\n\t\tconsole.log(\"We did not find any tiddler to encrypt or password not set!\")\n\t}\n};\n\nencryptTiddlerWidget.prototype.handleDecryptevent = function(event){\n\tvar password =this.getPassword();\n\tvar tiddlers = this.getTiddlersToProcess();\n\n\tif(tiddlers.length > 0 && password){\n\t\tvar self = this;\n\t\t$tw.utils.each(tiddlers, function(title){\n\t\t\tvar tiddler = self.wiki.getTiddler(title);\n\t\t\tvar fields = self.decryptFields(tiddler,password);\n\t\t\tif(fields)self.saveTiddler(tiddler,fields);\n\t\t});\n\t}\n};\n\nencryptTiddlerWidget.prototype.saveTiddler=function(tiddler,fields){\n\tthis.wiki.addTiddler( new $tw.Tiddler(this.wiki.getModificationFields(),tiddler,this.clearNonStandardFields(tiddler), fields ) )\n}\n\nencryptTiddlerWidget.prototype.encryptFields = function (title,password){\n\tvar jsonData=this.wiki.getTiddlerAsJson(title);\n\treturn $tw.crypto.encrypt(jsonData,password);\n\n};\n\nencryptTiddlerWidget.prototype.decryptFields = function(tiddler,password){\n\t\tvar JSONfields =$tw.crypto.decrypt(tiddler.fields.encrypted,password);\n\t\tif(JSONfields!==null){\n\t\t\treturn JSON.parse(JSONfields);\n\t\t}\n\t\tconsole.log(\"Error decrypting \"+tiddler.fields.title+\". Probably bad password\")\n\t\treturn false\n};\n\nencryptTiddlerWidget.prototype.getPassword = function(){\n\tvar tiddler=this.wiki.getTiddler(this.passwordTiddler);\n\tif(tiddler){\n\t\tvar password=tiddler.fields.text;\n\t\tthis.saveTiddler(tiddler); //reset password tiddler\n\t\treturn password;\n\t}\n\n\treturn false\n};\n\n// This function erases every field of a tiddler that is not standard and also\n// the text field\nencryptTiddlerWidget.prototype.clearNonStandardFields =function(tiddler) {\n\tvar standardFieldNames = \"title tags modified modifier created creator\".split(\" \");\n\t\tvar clearFields = {};\n\t\tfor(var fieldName in tiddler.fields) {\n\t\t\tif(standardFieldNames.indexOf(fieldName) === -1) {\n\t\t\t\tclearFields[fieldName] = undefined;\n\t\t\t}\n\t\t}\n\t\tconsole.log(\"Cleared fields \"+JSON.stringify(clearFields));\n\t\treturn clearFields;\n};\n\nexports.encryptTiddler = encryptTiddlerWidget;\n\n})();",
"title": "$:/plugins/danielo/encryptTiddler/encrypttiddler.js",
"type": "application/javascript",
"module-type": "widget"
},
"$:/plugins/danielo/encryptTiddler/Filters/encrypted-tiddlers": {
"title": "$:/plugins/danielo/encryptTiddler/Filters/encrypted-tiddlers",
"description": "All encrypted tiddlers",
"filter": "[has[encrypted]]",
"tags": "$:/tags/Filter"
},
"$:/plugins/danielo/encryptTiddler/Filters/normal-unencrypted-tiddlers": {
"title": "$:/plugins/danielo/encryptTiddler/Filters/normal-unencrypted-tiddlers",
"filter": "[!is[system]!has[encrypted]]",
"description": "Non-encrypted normal tiddlers",
"tags": "$:/tags/Filter"
},
"$:/plugins/danielo/encryptTiddler/language/batch": {
"title": "$:/plugins/danielo/encryptTiddler/language/batch",
"text": "Use below controls to encrypt or decrypt a bunch of tiddlers. Encryption ''controls are hidden'' until you type something in the search box. All listed tiddlers will be affected. The presence of a small padlock (<span class=\"pc-listItem-lock\">{{$:/core/images/locked-padlock}}</span>) next to the tiddler title indicates that particular tiddler is already encrypted."
},
"$:/plugins/danielo/encryptTiddler/ui/listItemTemplate": {
"title": "$:/plugins/danielo/encryptTiddler/ui/listItemTemplate",
"text": "<div class=\"tc-menu-list-item\">\n<$link to={{!!title}}>\n<$view field=\"title\"/>\n<$list filter=\"[all[current]has[encrypted]]\">\n<span class=\"pc-listItem-lock\">{{$:/core/images/locked-padlock}}</span>\n</$list>\n</$link>\n</div>"
},
"$:/plugins/danielo/encryptTiddler/openPopup": {
"created": "20140406151910358",
"creator": "Danielo",
"modified": "20140608121417975",
"modifier": "pepito",
"tags": "button encrypt export",
"title": "$:/plugins/danielo/encryptTiddler/openPopup",
"type": "text/vnd.tiddlywiki",
"text": "<$reveal state=\"$:/state/encrypt\" type=\"nomatch\" text={{!!title}} animate=\"no\"><$button set=\"$:/state/encrypt\" setTo={{!!title}} class=\"tc-btn-invisible\">{{$:/plugins/danielo/encryptTiddler/unlocked}}</$button></$reveal><$reveal state=\"$:/state/encrypt\" type=\"match\" text={{!!title}} animate=\"no\"><$button set=\"$:/state/encrypt\" setTo=\"\" class=\"tc-btn-invisible\">{{$:/plugins/danielo/encryptTiddler/unlocked}}</$button></$reveal>"
},
"$:/plugins/danielo/encryptTiddler/styles": {
"created": "20140406110705085",
"creator": "pepito",
"modified": "20140608121510064",
"modifier": "pepito",
"tags": "$:/tags/Stylesheet encrypt export",
"title": "$:/plugins/danielo/encryptTiddler/styles",
"type": "text/plain",
"text": ".tw-password-field {\n\tdisplay: inline-block;\n\twidth: 55%;\n font-size:1em;\n line-height:0;\n margin:0;\n\tpadding-left:7%;\n}\n\n.pc-batch-controls .tw-crypt-dropdown{\n\tright: 0px;\n}\n\n.pc-batch-controls{\n\t\tposition:relative;\n}\n\n.pc-listItem-lock svg{\n\theight: 1em;\n\twidth: 1em;\n\tfill: #aaaaaa;\n}\n\n/*It is for use in combination with tc-block-dropdown */\n.tw-crypt-dropdown{\n line-height:0;\n\t\t\tpadding-left:5px;\n\t\t\t}\n\n.tw-password-field input{\n font-size:0.5em;\n\n}\n\n.tw-crypt-button {\n\tdisplay: inline-block;\n\twidth: 10%;\n}\n\n.tw-crypt-button button{\n\tfont-size:0.5em;\n}\n"
},
"$:/plugins/danielo/encryptTiddler/unlocked": {
"created": "20140406101339943",
"creator": "danielo515",
"modified": "20140608121532690",
"modifier": "danielo515",
"tags": "encrypt export",
"title": "$:/plugins/danielo/encryptTiddler/unlocked",
"type": "text/vnd.tiddlywiki",
"text": "<svg version=\"1.1\" id=\"Capa_1\" xmlns=\"http://www.w3.org/2000/svg\" class=\"tc-image-button\"\n\t viewBox=\"0 0 100 100\" style=\"enable-background:new 0 0 100 100;\" xml:space=\"preserve\">\n<g>\n\t<path d=\"M77.555,50H35.304V31.63c0-4.057,1.435-7.521,4.305-10.391c2.87-2.87,6.333-4.305,10.391-4.305\n\t\tc4.056,0,7.52,1.435,10.39,4.305s4.305,6.335,4.305,10.391c0,0.996,0.363,1.857,1.091,2.583c0.727,0.729,1.588,1.09,2.583,1.09\n\t\th3.674c0.995,0,1.856-0.361,2.583-1.09c0.727-0.727,1.091-1.588,1.091-2.583c0-7.079-2.517-13.136-7.549-18.17\n\t\tC63.136,8.428,57.08,5.912,50,5.912c-7.081,0-13.137,2.516-18.169,7.548c-5.033,5.034-7.549,11.091-7.549,18.17V50h-1.837\n\t\tc-1.531,0-2.833,0.536-3.904,1.608c-1.072,1.072-1.607,2.372-1.607,3.902v33.067c0,1.532,0.535,2.832,1.607,3.904\n\t\tc1.071,1.072,2.372,1.608,3.904,1.608h55.11c1.53,0,2.832-0.536,3.904-1.608c1.071-1.072,1.607-2.372,1.607-3.904V55.51\n\t\tc0-1.529-0.536-2.83-1.607-3.902C80.387,50.536,79.085,50,77.555,50z M54.315,72.937V83.72c0,2.173-1.762,3.935-3.935,3.935H49.62\n\t\tc-2.173,0-3.935-1.762-3.935-3.935V72.937c-2.31-1.443-3.852-4.001-3.852-6.925c0-4.511,3.657-8.167,8.167-8.167\n\t\ts8.167,3.657,8.167,8.167C58.167,68.937,56.625,71.495,54.315,72.937z\"/>\n</g>\n</svg>\n"
}
}
}
{
"tiddlers": {
"$:/plugins/danielo515/ContextPlugin/widgets/context.js": {
"created": "20140418153435777",
"creator": "danielo",
"modified": "20140530231943517",
"modifier": "danielo",
"module-type": "widget",
"title": "$:/plugins/danielo515/ContextPlugin/widgets/context.js",
"type": "application/javascript",
"text": "/*\\\\\ntitle: $:/core/modules/widgets/danielo/context-widget.js\ntype: application/javascript\nmodule-type: widget\n\nEdit-text widget\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\nvar contextWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\ncontextWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\ncontextWidget.prototype.render = function(parent,nextSibling) {\n // Save the parent dom node\n\tthis.parentDomNode = parent;\n\t// Compute our attributes\n\tthis.computeAttributes();\n\t// Execute our logic\n\tthis.execute();\n \n if(this.term && this.term.length>3){\n \n this.createRegexp();\n var matches = this.executeRegexp();\n\t if(matches.length > 0){ \n this.domNode = this.document.createElement(this.element);\n this.domNode.className=\"tw-context\";\n this.composeResults( matches ); //this appends to domNode \n \t// Insert element\n \tparent.insertBefore(this.domNode,nextSibling);\n \tthis.renderChildren(this.domNode,null);\n\t \tthis.domNodes.push(this.domNode);\n }\n }\n\t\n};\n\n/*\nCompute the internal state of the widget\n*/\ncontextWidget.prototype.execute = function() {\n\t// Get the parameters from the attributes\n this.matchedClass = this.getAttribute(\"matchClass\",\"matched\");\n\tthis.tiddler = this.getAttribute( \"tiddler\",this.getVariable(\"currentTiddler\") );\n this.term = this.getAttribute(\"term\",this.getAttribute(\"searchTerm\"));\n\tthis.contextLength = this.getAttribute(\"length\",50);\n this.before = this.getAttribute(\"before\",this.contextLength);\n this.after = this.getAttribute(\"after\",this.contextLength);\n this.maxMatches = this.getAttribute(\"maxMatches\",10);\n this.element = this.getAttribute(\"element\",\"pre\");\n\tthis.makeChildWidgets();\n};\n\n /*Create the regular expression*/\ncontextWidget.prototype.createRegexp = function()\n{\n var regString = \"(\\\\w+[\\\\s\\\\S]{0,#before#})?(#term#)([\\\\s\\\\S]{0,#after#}\\\\w+)?\";\n\n var regString = regString.replace(\"#before#\",this.before).replace(\"#term#\", $tw.utils.escapeRegExp(this.term) ) .replace(\"#after#\",this.after);\n this.regexp = new RegExp(regString,\"ig\");\n //console.log(regString);\n};\n/*\nexecute the regular expresion\n*/\ncontextWidget.prototype.executeRegexp = function()\n{\n var text = this.wiki.getTiddlerText(this.tiddler), match,results = new Array();\n while( (match = this.regexp.exec( text ) ) && (results.length < this.maxMatches) )\n { results.push(match) }\n //console.log(\"matches\",results);\n return results;\n};\n\n/*\ncompose the results\nmatches : array of match objects from regular expression execute\n*/\ncontextWidget.prototype.composeResults = function(matches){\n var result=[], self=this, node = this.domNode,\n dots = textNode(\"...\\n\"),\n span = matchedNode( this.term );\n\n for(var i=0; i < matches.length; i++){\n processMatch( matches[i] );\n }\n \n function processMatch(match){\n if( match.index !== 0) node.appendChild( dots.cloneNode(true) );\n for( var i=1;i<match.length;i++ ) {//match[0] full matched text (all groups together)\n if( match[i] ) {\n if ( match[i].toLowerCase() == self.term.toLowerCase() ) \n node.appendChild( match[i] == self.term ? span.cloneNode(true) : matchedNode( match[i] ) )\n else\n node.appendChild( textNode( match[i]) )\n }\n }\n if( match.index + match[0].length < match.input.length) node.appendChild( dots.cloneNode(true) );\n }\n \n function textNode(text){ return self.document.createTextNode(text) }\n function matchedNode(text) { \n var node = self.document.createElement(\"span\"); node.appendChild( textNode(text) ); node.className = self.matchedClass;\n return node }\n \n};\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\ncontextWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\tif(changedAttributes.tiddler || changedAttributes.term || changedAttributes.length || changedAttributes.matchedClass) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t}\n return this.refreshChildren(changedTiddlers);\n};\n\nexports.context = contextWidget;\n\n})();"
},
"$:/plugins/danielo515/ContextPlugin/visualizer": {
"title": "$:/plugins/danielo515/ContextPlugin/visualizer",
"tags": "$:/tags/SearchResults",
"caption": "Context",
"text": "<$list filter=\"[!is[system]search{$:/temp/search}sort[title]limit[250]]\">\r\n {{!!title||$:/core/ui/ListItemTemplate}}\r\n <$context term={{$:/temp/search}} />\r\n</$list>\r\n"
},
"$:/plugins/danielo515/ContextPlugin/Stylesheet/results": {
"created": "20140529162823729",
"tags": "$:/tags/Stylesheet contextPlugin",
"title": "$:/plugins/danielo515/ContextPlugin/Stylesheet/results",
"type": "text/css",
"text": ".matched{background-color:yellow}\n.tw-context {/*border:1px solid;\n /*word-break: break-all; word-wrap: break-word*/}"
},
"$:/plugins/danielo515/ContextPlugin/Caption": {
"created": "20140530174219263",
"tags": "contextPlugin",
"title": "$:/plugins/danielo515/ContextPlugin/Caption",
"type": "text/vnd.tiddlywiki",
"text": "Context search"
},
"Context Search": {
"caption": "{{$:/plugins/danielo515/ContextPlugin/Caption}}",
"created": "20140530173407542",
"tags": "$:/tags/AdvancedSearch",
"title": "Context Search",
"type": "text/vnd.tiddlywiki",
"text": "\\define lingo-base() $:/language/Search/\n<$linkcatcher to=\"$:/temp/advancedsearch\">\n\n<<lingo Standard/Hint>>\n\n<div class=\"tw-search\"><$edit-text tiddler=\"$:/temp/advancedsearch\" type=\"search\" tag=\"input\"/><$reveal state=\"$:/temp/advancedsearch\" type=\"nomatch\" text=\"\"> <$link to=\"\" class=\"btn-invisible\">{{$:/core/images/close-button}}</$link></$reveal></div>\n\n</$linkcatcher>\n\n<$reveal state=\"$:/temp/advancedsearch\" type=\"nomatch\" text=\"\">\n<div class=\"tw-search-results\">\n\n<<lingo Standard/Matches>>\n\n<$list filter=\"[!is[system]search{$:/temp/advancedsearch}sort[title]limit[250]]\">\n{{!!title||$:/core/ui/ListItemTemplate}}\n<$context term={{$:/temp/advancedsearch}}/>\n</$list>\n\n</div>\n\n</$reveal>\n\n<$reveal state=\"$:/temp/advancedsearch\" type=\"match\" text=\"\">\n\n</$reveal>\n"
},
"$:/plugins/danielo515/ContextPlugin/readme": {
"title": "$:/plugins/danielo515/ContextPlugin/readme",
"text": "!Usage\n\nAfter installing the plugin you will have a new tab in [[$:/AdvancedSearch]] called [[Context Search]]. If you want this functionality in other places you will have to edit the desired tiddler yourself adding the ''context widget''. For more details about using the widget see the section below.\n\n!!Using the widget\n\nThe very basic usage of the widget is the following:\n\n```\r\n<$context term=\"lorem\"/>\r\n```\r\nWhich will render as:\r\n<$context term=\"lorem\"/>\n\nThe widgets will search inside the current tiddler by default. Because that you see the same content twice here. This example is not very useful. Other more meaningful would be:\n\n```\r\n<$list filter=\"[search{$:/temp/advancedsearch}sort[title]limit[250]]\">\r\n{{!!title||$:/core/ui/ListItemTemplate}}\r\n<$context term={{$:/temp/advancedsearch}}/>\r\n</$list>\r\n```\n\nThat will search for tiddlers containing the text specified in [[$:/temp/advancedsearch]] and will display a link to the matching tiddlers plus a preview of the matching content. Something very similar is used in [[Context Search]]. Below you can find a complete list of parameters and their default values.\n\n|! parameter |! description | !default |\r\n| term | The term you want to search ||\r\n| searchTerm | An alias for the previous one ||\r\n| tiddler | The tiddler's name to look into | current tiddler |\r\n| length | Number of context characters to show | 50 |\r\n| before | Number of characters before the matched term to show | the value of the length parameter |\r\n| after | Number of characters after the matched term to show | the value of the length parameter |\r\n| maxMatches | maximun number of matched elements to show. Incrementing this can cause several performance issues | 10 |\r\n| element | Node element to create. This element will contain the results of the search. If you want to style it its class is `tw-context` | `<pre>` |\r\n| matchClass | The css class to assign to the matched terms in the results. This is used to highlight the results | matched |\n\n!Customizing the output\r\nThere are not many ways to customize the output of this widget. You can specify ''what type of node you want to create'' to wrap the results (div,span...). The default is `<pre>`. This container is created with the class `tw-context` so you can easily apply styles to it. Something similar happens to the ''highlighted'' words. You can specify the name of the class to assign to it and also you can apply styles to that class.\n\nA very basic example of customization could be:\n\n# Create a tiddler, for example [[$/plugins/danielo515/context/css]]\r\n# Paste the following text or any css rule you want: \"\"\"\n\n<pre>\r\n.matched{background-color:yellow}\r\n.tw-context {\r\n border:1px solid blue;\r\n word-break: break-all; word-wrap: break-word;}\r\n</pre>\r\n\"\"\"\r\n# Tag it with `$:/tags/stylesheet`\r\n# Save the tiddler"
}
}
}
{"tiddlers":{"$:/plugins/eucaly/titleme/defaultEditText":{"created":"20140913074836587","creator":"EucalyJ","modified":"20140913083405960","modifier":"EucalyJ","tags":"$:/_readme $:/_titleme","title":"$:/plugins/eucaly/titleme/defaultEditText","type":"text/vnd.tiddlywiki","text":"Edit"},"$:/plugins/eucaly/titleme/defaultShowText":{"created":"20140913073834507","creator":"EucalyJ","modified":"20140913083445205","modifier":"EucalyJ","tags":"$:/_readme $:/_titleme","title":"$:/plugins/eucaly/titleme/defaultShowText","type":"text/vnd.tiddlywiki","text":"View"},"$:/plugins/eucaly/titleme/history":{"caption":"History","created":"20140913085909578","creator":"EucalyJ","lastupdate":"20140913.6","modified":"20140913111506455","modifier":"EucalyJ","tags":"$:/_readme $:/_titleme","title":"$:/plugins/eucaly/titleme/history","type":"text/vnd.tiddlywiki","text":"!!!History\n* 20140913 / ''0.0.1'' ( 12.3K / 6.8K )\n** Implement a javascript `<<TitleMe>>` macro\n** `<<LinkMe>>`, `<<ShowMe>>`, `<<EditMe>>`, `<<trace-variable>>` also availbale\n* 20140910\n** Raise a request to __dedect location through ~PageTemplate hierarchy__ at [[TiddlyWiki Forum|http://groups.google.com/forum/#!topic/tiddlywiki/yKLkIWf0lGQ]]\n** Implement a javascript macro ''trace-variable.js'' to trace a variable through widget/transclude hierarchy.\n** Hint by @Jermolene that the ''transclusion'' variable will help to trace transclude hierarchy\n"},"$:/plugins/eucaly/titleme/macros-render":{"created":"20140913075557300","creator":"EucalyJ","modified":"20140913102929280","modifier":"EucalyJ","tags":"$:/_macros $:/_titleme","title":"$:/plugins/eucaly/titleme/macros-render","type":"text/vnd.tiddlywiki","text":"\\define beginRegEx() (beg|[(<])(?i)\n\\define midRegEx() (mid|[|\\/])(?i)\n\\define endRegEx() (end|[)}>])(?i)\n\n\\define ttme-render-link(text)\n<$link to=\"$(me)$\">\n\t<$transclude tiddler=\"$text$\">\n\t\t<$list filter=\"[[$text$]regexp[\\S]first[]]\" variable=\"text1\">\t<!-- $text$ not empty -->\n\t\t\t<$text text=\"$text$\"/>\n\t\t</$list>\n\t\t<$list filter=\"[[$text$]!regexp[\\S]first[]]\" variable=\"text2\">\t<!-- $text$ is empty -->\n\t\t\t<$text text=\"$(me)$\"/>\n\t\t</$list>\n\t</$transclude>\n</$link>\n\\end\n\n\\define ttme-render-button(text:\"\", message:\"tm-navigate\", tooltip:\"\", class:\"-\")\n<$button param=\"$(me)$\" message=\"$message$\" tooltip=\"$tooltip$\" class=\"$class$\">\n\t<$transclude tiddler=\"$text$\">\n\t\t<$list filter=\"[[$text$]regexp[\\S]first[]]\" variable=\"text1\">\t<!-- $text$ not empty -->\n\t\t\t<$text text=\"$text$\"/>\n\t\t</$list>\n\t\t<$list filter=\"[[$text$]!regexp[\\S]first[]]\" variable=\"text2\">\t<!-- $text$ is empty -->\n\t\t\t<$text text=\"$(me)$\"/>\n\t\t</$list>\n\t</$transclude>\n</$button>\n\\end\n\n\\define ttme-render-full(editText:\"\", showText:\"\", beginText:\"\" endText:\"\", midText:\"\", class:\"\", order:\"< edit / show >\")\n<$list filter=\"$order$\" variable=\"thisItem\">\n\t<$list filter=\"[<thisItem>regexp[show(?i)]first[]]\" variable=\"text0\">\t<!-- show -->\n<$list filter=\"[[$showText$]regexp[\\S]first[]]\" variable=\"text1\">\t<!-- not empty -->\n\t\t<<ttme-render-button \"$showText$\" message:\"tm-navigate\" tooltip:\"Show $(me)$\" class:\"$class$\">>\n</$list>\n<$list filter=\"[[$showText$]!regexp[\\S]first[]]\" variable=\"text2\">\t<!-- is empty -->\n\t\t<<ttme-render-button \"$:/plugins/eucaly/titleme/defaultShowText\" message:\"tm-navigate\" tooltip:\"Show $(me)$\" class:\"$class$\">>\n</$list>\n\t</$list>\n\t<$list filter=\"[<thisItem>regexp[edit(?i)]first[]]\" variable=\"text0\">\t<!-- edit -->\n<$list filter=\"[[$editText$]regexp[\\S]first[]]\" variable=\"text1\">\t<!-- not empty -->\n\t\t<<ttme-render-button text:\"$editText$\" message:\"tm-edit-tiddler\" tooltip:\"Edit $(me)$\" class:\"$class$\">>\n</$list>\n<$list filter=\"[[$editText$]!regexp[\\S]first[]]\" variable=\"text2\">\t<!-- is empty -->\n\t\t<<ttme-render-button text:\"$:/plugins/eucaly/titleme/defaultEditText\" message:\"tm-edit-tiddler\" tooltip:\"Edit $(me)$\" class:\"$class$\">>\n</$list>\n\t</$list>\n\t<$list filter=\"[<thisItem>regexp<beginRegEx>first[]]\" variable=\"text0\">\t<!-- begin -->\n\t\t<$text text=\"$beginText$\"/>\n\t</$list>\n\t<$list filter=\"[<thisItem>regexp<midRegEx>first[]]\" variable=\"text0\">\t<!-- mid -->\n\t\t<$text text=\"$midText$\"/>\n\t</$list>\n\t<$list filter=\"[<thisItem>regexp<endRegEx>first[]]\" variable=\"text0\">\t<!-- end -->\n\t\t<$text text=\"$endText$\"/>\n\t</$list>\n</$list>\n\\end"},"$:/plugins/eucaly/titleme/macros":{"created":"20140913031711920","creator":"EucalyJ","modified":"20140913081020618","modifier":"EucalyJ","tags":"$:/tags/Macro $:/_macros $:/_titleme","title":"$:/plugins/eucaly/titleme/macros","type":"text/vnd.tiddlywiki","text":"\\define LinkMe(linkText:\"\")\n<$set name=\"me\" value=<<TitleMe>> >\n<$importvariables filter=\"[all[shadows+tiddlers]prefix[$:/plugins/eucaly/titleme/macros-]]\">\n\t<<ttme-render-link \"$linkText$\">>\n</$importvariables>\n</$set>\n\\end\n\n\\define EditOrShowMe(editText:\"\", showText:\"\", beginText:\"\" midText:\"\", endText:\"\", class=\"$class$\", order:\"< edit / show >\" mode:\"link\")\n<$importvariables filter=\"[all[shadows+tiddlers]prefix[$:/plugins/eucaly/titleme/macros-]]\">\n<$set name=\"me\" value=<<TitleMe>> >\n\t<<ttme-render-full editText:\"$editText$\" showText:\"$showText$\" beginText:\"$beginText$\" midText:\"$midText$\" endText:\"$endText$\" class:\"$class$\" order:\"$order$\">>\n</$set>\n</$importvariables>\n\\end\n\n\\define ShowMe(text:\"\", beginText:\"\", endText:\"\", class:\"\")\n\t<<EditOrShowMe showText:\"$text$\" beginText:\"$beginText$\" endText:\"$endText$\" class:\"$class$\" mode:\"link\" order:\"< show >\">>\n\\end\n\n\\define EditMe(text:\"\", beginText:\"\", endText:\"\", class:\"\")\n\t<<EditOrShowMe editText:\"$text$\" beginText:\"$beginText$\" endText:\"$endText$\" class:\"$class$\" mode:\"link\" order:\"( edit )\">>\n\\end"},"$:/plugins/eucaly/titleme/readme":{"caption":"~TitleMe","created":"20140913032347138","creator":"EucalyJ","example1":"<<TitleMe>>","example2":"<<LinkMe \"This link to source\">>","example3":"<<ShowMe>> and <<EditMe>>","example4":"<<ShowMe Open \"Here to \" \" the source tiddler.\">>","example5":"<<EditMe \"$:/core/images/edit-button\" \"This \" \" button to edit.\" \"tc-btn-invisible\">>","lastupdate":"20140913.6","modified":"20140914032952899","modifier":"EucalyJ","tags":"$:/_readme $:/_titleme","title":"$:/plugins/eucaly/titleme/readme","type":"text/vnd.tiddlywiki","text":"\\define example-code-table(src) \n<table>\n<tr><th style=\"width:50%;\"> Code </th><th> Result </th></tr>\n<$list filter=\"example1 example2 example3 example4 example5\" variable=\"field\">\n<tr>\n<td><p><$view tiddler=\"$:/plugins/eucaly/titleme/readme\" field=<<field>>/></p></td>\n<td><$transclude tiddler=\"$:/plugins/eucaly/titleme/readme\" field=<<field>> /></td>\n</tr>\n</$list>\n\\end\n\n!!<<LinkMe \"TitleMe Plugin\">>\n<hr>\n\nTitleMe - Return in-place tiddler title, to link / show / edit the source tiddler\n\n!!!Features\n`**` All below macros help you to __access the \"source tiddler\"__ (even in transclude hierarchy, tabs, sidebar, or toolbar)\n\n# `<<TitleMe>>` -- returns the title of source tiddler \n# `<<LinkMe>>` -- links to the source tiddler\n# `<<ShowMe>>` -- a button to show the source tiddler\n# `<<EditMe>>` -- a button to edit the source tiddler\n# `<<trace-variable>>` -- trace a variable through widget/transclude hierarchy.\n\n!!!Install\n* Drag&Drop -- [[$:/plugins/eucaly/titleme]] (with documentation)\n\n!!!Uasge\n<table>\n<tr><th style=\"width:50%;\"> Syntax </th><th> Parameters </th></tr>\n<tr>\n<td><p>`<<TitleMe>>` <br/>-- returns the title of source tiddler</p></td>\n<td>\n\n* no parameter needed\n</td></tr><tr>\n<td><p>`<<LinkMe text>>` <br/>-- links to the source tiddler</p></td>\n<td> \n\n* Default as tiddler title, if `text` is not specified\n</td></tr><tr>\n<td><p>`<<ShowMe text:\"\" beginText:\"\" endText:\"\" class:\"\">>` <br/>-- a button to show the source tiddler</p></td>\n<td>\n\n* Default `text` defined in [[$:/plugins/eucaly/titleme/defaultShowText]]. \n* Can also put image there, such as `{{$:/core/images/down-arrow}}`\n* Surrounding text (`beginText` and `endText`) will disappear if this plugin is disabled.\n* `class` to specify the button CSS style, such as `tc-btn-invisible` or user defined style.\n</td></tr><tr>\n<td><p>`<<EditMe text:\"\" beginText:\"\" endText:\"\" class:\"\">>` <br/>-- a button to edit the source tiddler</p></td>\n<td>\n\n* Default `text` defined in [[$:/plugins/eucaly/titleme/defaultEditText]].\n* Others are similar to `<<ShowMe>>`\n</td></tr><tr>\n<td><p>\n`<<trace-variable variableName>>`</p>\n<p>`<<trace-variable variableName delimiter>>`</p></td>\n<td>\n\n* If delimiter not specified, could be applied as filter in `<$list>` widget, see [[trace-variable Example]]\n<$text text=\"[[value of this]] [[value of parent widget]] ... [[value until root widget]]\"/>\n\n* Will use `delimiter` if specified\n</td></tr></table>\n\n* Example\n<<example-code-table>>\n<!--\n\n\n\n<<EditOrShowMe \"toEdit\" \"toShow\" \"</\" \"=\" \">\" >>\n<<LinkMe>>\n<<LinkMe \"this is test\">> \n{{$:/core/images/down-arrow}} -->"},"$:/plugins/eucaly/titleme/titleme.js":{"created":"20140913021122630","creator":"EucalyJ","modified":"20140913031054832","modifier":"EucalyJ","module-type":"macro","tags":"$:/_js $:/_titleme","title":"$:/plugins/eucaly/titleme/titleme.js","type":"application/javascript","text":"/*\\\n$:/plugins/eucaly/titleme/titleme.js\ntype: application/javascript\nmodule-type: macro\n\n!!! Feature\nThis TitleMe macro returns the title of source tiddler (even in a transclude hierarchy)\n\n!!! Usage\n<<TitleMe>>\n* returns the title of source tiddler\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.name = \"TitleMe\";\n\nexports.params = [\n];\n\n/*\nRun the macro\n*/\nexports.run = function() {\n var output = \"\",\n\tvariable_name = \"transclusion\",\n meRegex = /\\{[^|]*\\|([^|]*)\\|/,\n p = this,\n v0 = \"\";\n while (p)\n {\n var v = p.getVariable(variable_name);\n\t\tif ( v && v!=v0 )\n {\n \tvar match = meRegex.exec(v);\n if (match && match.length>1)\n {\n\t\t\t\toutput = match[1];\n break;\n\t\t\t}\n\t\t}\n\t\tp = p.parentWidget;\n }\n\treturn output;\n};\n\n})();"},"$:/plugins/eucaly/titleme/trace-variable.js":{"created":"20140910075050264","creator":"EucalyJ","modified":"20140913024303804","modifier":"EucalyJ","module-type":"macro","tags":"$:/_js $:/_titleme","title":"$:/plugins/eucaly/titleme/trace-variable.js","type":"application/javascript","text":"/*\\\n$:/macros/eucaly/trace-variable.js\ntype: application/javascript\nmodule-type: macro\n\n!!! Feature\nThis trace-variable macro trace the variable through widget/transclude hierarchy.\nUndefined and neighboring redundant values are dropped.\n\n!!! Usage\n<<trace-variable variableName>>\n<<trace-variable variableName delimiter>>\n\n!!! Return value\n* if delimiter not specified\n[[value of this]] [[value of parent widget]] ... [[value until root widget]]\n\n!!! Example\n<$text text=<<trace-variable \"listItem\">>/>\n\n<$list filter=<<trace-variable \"listItem\">>>\n\t{{!!title}} - {{!!tags}}<br/>\n</$list>\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nInformation about this macro\nThis is the mysamplemacro of Tiddly Wiki 5 written in JavaScript \n*/\n\nexports.name = \"trace-variable\";\n\nexports.params = [\n\t{ name: \"variable_name\" },\n { name: \"delimiter\" }\n];\n\n/*\nRun the macro\n*/\nexports.run = function(variable_name, delimiter) {\n\tvar output = \"\";\n var p = this;\n var v0 = \"\";\n while (p)\n {\n var v = p.getVariable(variable_name);\n\t\tif ( v && v!=v0 )\n {\n\t\t\tif (delimiter) {\n\t\t\t\toutput = output + v + delimiter;\n\t\t\t} else {\n\t\t\t\toutput = output + \"[[\" + v + \"]] \";\n }\n\t\t\tv0 = v;\n\t\t}\n\t\tp = p.parentWidget;\n }\n\treturn output;\n};\n\n})();"}}}
{
"tiddlers": {
"$:/plugins/felixhayashi/hotzone/config.js": {
"title": "$:/plugins/felixhayashi/hotzone/config.js",
"text": "/*\\\n\ntitle: $:/plugins/felixhayashi/hotzone/config.js\ntype: application/javascript\nmodule-type: library\n\n@preserve\n\n\\*/\n(function(){\"use strict\";exports.config={classNames:{storyRiver:\"tc-story-river\",tiddlerFrame:\"tc-tiddler-frame\",tiddlerTitle:\"tc-title\"},references:{userConfig:\"$:/config/hotzone/focusOffset\",focussedTiddlerStore:\"$:/temp/focussedTiddler\"},checkbackTime:$tw.utils.getAnimationDuration()}})();",
"type": "application/javascript",
"module-type": "library"
},
"$:/plugins/felixhayashi/hotzone/hotzone.js": {
"title": "$:/plugins/felixhayashi/hotzone/hotzone.js",
"text": "/*\\\n\ntitle: $:/plugins/felixhayashi/hotzone/hotzone.js\ntype: application/javascript\nmodule-type: startup\n\n@preserve\n\n\\*/\n(function(){\"use strict\";exports.name=\"hotzone\";exports.platforms=[\"browser\"];exports.after=[\"story\"];exports.synchronous=true;exports.startup=function(){var t=require(\"$:/plugins/felixhayashi/hotzone/config.js\").config;var e=null;var i=false;var r=document.getElementsByClassName(t.classNames.storyRiver)[0];var s=$tw.wiki.getTiddlerData(t.references.userConfig,{});var a=isNaN(parseInt(s.focusOffset))?150:parseInt(s.focusOffset);var n=function(e,i,r){if(!(e instanceof Element))return;if(!$tw.utils.hasClass(e,t.classNames.tiddlerFrame))return;var s=e.getElementsByClassName(t.classNames.tiddlerTitle)[0];if(s){var a=s.innerText||s.textContent;return a.trim()}};var o=function(t){if(!i){i=true;window.setTimeout(f,t||0)}};var l=function(e,i){$tw.wiki.addTiddler(new $tw.Tiddler({title:t.references.focussedTiddlerStore,text:e},$tw.wiki.getModificationFields()));if(i){var r=document.getElementsByClassName(\"hzone-focus\")[0];if(r){$tw.utils.removeClass(r,\"hzone-focus\")}$tw.utils.addClass(i,\"hzone-focus\")}};var f=function(){i=false;var s=$tw.wiki.getTiddler(\"$:/StoryList\");if(s&&s.fields.list.length){var o=null;var f=Number.MAX_VALUE;var d=r.children;var u=t.classNames.tiddlerFrame;for(var c=d.length;c--;){if($tw.utils.hasClass(d[c],u)){var v=d[c].getBoundingClientRect();var w=Math.min(Math.abs(a-v.top),Math.abs(a-v.bottom));if(w<f){o=d[c];f=w}}}var m=n(o);if(m!==e&&$tw.wiki.getTiddler(m)){e=m;l(e,o);return}}else if(e){e=\"\";l(e)}};var d=function(t){if(t[\"$:/HistoryList\"]){if(!$tw.wiki.tiddlerExists(\"$:/HistoryList\"))return;var e=$tw.wiki.getTiddler(\"$:/HistoryList\").fields[\"current-tiddler\"];var i=$tw.wiki.getTiddlerList(\"$:/StoryList\");var r=i.indexOf(e)>=0;if(!r)return;o($tw.utils.getAnimationDuration()+100)}else if(t[\"$:/StoryList\"]){o($tw.utils.getAnimationDuration()+100)}};var u=function(t){o(250)};$tw.wiki.addEventListener(\"change\",d);window.addEventListener(\"scroll\",u,false);u()}})();",
"type": "application/javascript",
"module-type": "startup"
},
"$:/plugins/felixhayashi/hotzone/Configuration": {
"title": "$:/plugins/felixhayashi/hotzone/Configuration",
"text": "Please see the [[GitHub page|https://github.com/felixhayashi/TW5-HotZone]] for more information on the options.\n\nSave and reload the wiki to activate changes.\n\n<table>\n <tr>\n <th align=\"left\">Focus offset:</th>\n <td><$edit-text tiddler=\"$:/config/hotzone/focusOffset\" tag=\"input\" default=\"71px\" /></td>\n </tr>\n</table>"
},
"$:/temp/focussedTiddler": {
"title": "$:/temp/focussedTiddler"
},
"$:/plugins/felixhayashi/hotzone/License": {
"title": "$:/plugins/felixhayashi/hotzone/License",
"text": "This code is released under the BSD license. For the exact terms visit:\n\nhttps://github.com/felixhayashi/TW5-HotZone/blob/master/LICENSE"
},
"$:/plugins/felixhayashi/hotzone/Readme": {
"title": "$:/plugins/felixhayashi/hotzone/Readme",
"text": "Please visit the [[GitHub page|https://github.com/felixhayashi/TW5-HotZone]] for more information."
}
}
}
{
"tiddlers": {
"$:/plugins/felixhayashi/topstoryview/config.js": {
"title": "$:/plugins/felixhayashi/topstoryview/config.js",
"text": "/*\\\n\ntitle: $:/plugins/felixhayashi/topstoryview/config.js\ntype: application/javascript\nmodule-type: library\n\n@preserve\n\n\\*/\n(function(){\"use strict\";exports.config={classNames:{storyRiver:\"tc-story-river\",backDrop:\"story-backdrop\",tiddlerFrame:\"tc-tiddler-frame\",tiddlerTitle:\"tc-title\"},references:{userConfig:\"$:/config/topStoryView\",focussedTiddlerStore:\"$:/temp/focussedTiddler\",refreshTrigger:\"$:/temp/focussedTiddler/refresh\"},checkbackTime:$tw.utils.getAnimationDuration()}})();",
"type": "application/javascript",
"module-type": "library"
},
"$:/plugins/felixhayashi/topstoryview/layout": {
"text": "html .tc-story-river:after {\n content: \"\";\n display: block; }\n",
"title": "$:/plugins/felixhayashi/topstoryview/layout",
"type": "text/vnd.tiddlywiki",
"tags": [
"$:/tags/Stylesheet"
]
},
"$:/plugins/felixhayashi/topstoryview/Configuration": {
"title": "$:/plugins/felixhayashi/topstoryview/Configuration",
"text": "Please see the [[GitHub page|https://github.com/felixhayashi/TW5-TopStoryView]] for more information on the options.\n\nSave and reload the wiki to activate changes.\n\n<table>\n <tr>\n <th align=\"left\">Scroll offset:</th>\n <td><$edit-text tiddler=\"$:/config/topStoryView\" field=\"scroll-offset\" tag=\"input\" default=\"150px\" /></td>\n </tr>\n</table>"
},
"$:/plugins/felixhayashi/topstoryview/License": {
"title": "$:/plugins/felixhayashi/topstoryview/License",
"text": "This code is released under the BSD license. For the exact terms visit:\n\nhttps://github.com/felixhayashi/TW5-TopStoryView/blob/master/LICENSE"
},
"$:/plugins/felixhayashi/topstoryview/Readme": {
"title": "$:/plugins/felixhayashi/topstoryview/Readme",
"text": "Please visit the [[GitHub page|https://github.com/felixhayashi/TW5-TopStoryView]] for more information."
},
"$:/plugins/felixhayashi/topstoryview/top.js": {
"title": "$:/plugins/felixhayashi/topstoryview/top.js",
"text": "/*\\\ntitle: $:/plugins/felixhayashi/topstoryview/top.js\ntype: application/javascript\nmodule-type: storyview\n\nViews the story as a linear sequence\n\n@preserve\n\n\\*/\n(function(){\"use strict\";var t=require(\"$:/plugins/felixhayashi/topstoryview/config.js\").config;var e=\"cubic-bezier(0.645, 0.045, 0.355, 1)\";var i=function(e){this.listWidget=e;this.pageScroller=new $tw.utils.PageScroller;this.pageScroller.scrollIntoView=this.scrollIntoView;this.pageScroller.storyRiverDomNode=document.getElementsByClassName(t.classNames.storyRiver)[0];var i=$tw.wiki.getTiddler(t.references.userConfig);var o=i?i.fields:{};$tw.hooks.addHook(\"th-opening-default-tiddlers-list\",this.hookOpenDefaultTiddlers);var r=parseInt(o[\"scroll-offset\"]);this.pageScroller.scrollOffset=isNaN(r)?71:r;this.recalculateBottomSpace()};i.prototype.refreshStart=function(t,e){};i.prototype.refreshEnd=function(t,e){};i.prototype.hookOpenDefaultTiddlers=function(t){return t};i.prototype.navigateTo=function(t){var e=this.listWidget.findListItem(0,t.title);if(e===undefined)return;var i=this.listWidget.children[e];var o=i.findFirstDomNode();if(!(o instanceof Element))return;this.pageScroller.scrollIntoView(o)};i.prototype.insert=function(t){if(!t)return;var e=t.findFirstDomNode();if(!(e instanceof Element))return;this.startInsertAnimation(e,function(){this.recalculateBottomSpace()}.bind(this))};i.prototype.remove=function(t){if(!t)return;var e=t.findFirstDomNode();if(!(e instanceof Element)){t.removeChildDomNodes();return}var i=this.getLastFrame()===e;this.startRemoveAnimation(t,e,function(){t.removeChildDomNodes();this.recalculateBottomSpace();if(i){this.pageScroller.scrollIntoView(this.getLastFrame())}}.bind(this))};i.prototype.getLastFrame=function(){var t=this.listWidget.children[this.listWidget.children.length-1];return t?t.findFirstDomNode():null};i.prototype.recalculateBottomSpace=function(){var t=this.pageScroller.storyRiverDomNode;if(this.getLastFrame()){var e=this.getLastFrame().getBoundingClientRect();var i=window.innerHeight;if(e.height<i){t.style[\"paddingBottom\"]=i-e.height+\"px\";return}}t.style[\"paddingBottom\"]=\"\"};i.prototype.scrollIntoView=function(t){if(this.preventNextScrollAttempt){this.preventNextScrollAttempt=false}if(!t)return;var e=$tw.utils.getAnimationDuration();this.cancelScroll();this.startTime=Date.now();var i=$tw.utils.getScrollPosition();var o=t.getBoundingClientRect(),r={left:o.left+i.x,top:o.top+i.y,width:o.width,height:o.height};var n=function(t,e,i,o){if(t<=i){return t}else if(e<o&&i<t+e-o){return t+e-o}else if(i<t){return t}else{return i}},s=n(r.left,r.width,i.x,window.innerWidth),a=r.top-this.scrollOffset;if(s!==i.x||a!==i.y){var l=this,c;c=function(){var t;if(e<=0){t=1}else{t=(Date.now()-l.startTime)/e}if(t>=1){l.cancelScroll();t=1}t=$tw.utils.slowInSlowOut(t);window.scrollTo(i.x+(s-i.x)*t,i.y+(a-i.y)*t);if(t<1){l.idRequestFrame=l.requestAnimationFrame.call(window,c)}};c()}};i.prototype.startInsertAnimation=function(t,i){var o=$tw.utils.getAnimationDuration();var r=window.getComputedStyle(t),n=parseInt(r.marginBottom,10),s=parseInt(r.marginTop,10),a=t.offsetHeight+s;setTimeout(function(){$tw.utils.setStyle(t,[{transition:\"none\"},{marginBottom:\"\"}]);i()},o);$tw.utils.setStyle(t,[{transition:\"none\"},{marginBottom:-a+\"px\"},{opacity:\"0.0\"}]);$tw.utils.forceLayout(t);$tw.utils.setStyle(t,[{transition:\"opacity \"+o+\"ms \"+e+\", \"+\"margin-bottom \"+o+\"ms \"+e},{marginBottom:n+\"px\"},{opacity:\"1.0\"}])};i.prototype.startRemoveAnimation=function(t,i,o){var r=$tw.utils.getAnimationDuration();var n=i.offsetWidth,s=window.getComputedStyle(i),a=parseInt(s.marginBottom,10),l=parseInt(s.marginTop,10),c=i.offsetHeight+l;setTimeout(o,r);$tw.utils.setStyle(i,[{transition:\"none\"},{transform:\"translateX(0px)\"},{marginBottom:a+\"px\"},{opacity:\"1.0\"}]);$tw.utils.forceLayout(i);$tw.utils.setStyle(i,[{transition:$tw.utils.roundTripPropertyName(\"transform\")+\" \"+r+\"ms \"+e+\", \"+\"opacity \"+r+\"ms \"+e+\", \"+\"margin-bottom \"+r+\"ms \"+e},{transform:\"translateX(-\"+n+\"px)\"},{marginBottom:-c+\"px\"},{opacity:\"0.0\"}])};exports.top=i})();",
"type": "application/javascript",
"module-type": "storyview"
}
}
}
{
"tiddlers": {
"$:/plugins/Guitlle/vuewiki/parser.js": {
"title": "$:/plugins/Guitlle/vuewiki/parser.js",
"created": "20180831235154636",
"modified": "20180904171256790",
"module-type": "parser",
"tags": "",
"type": "application/javascript",
"text": "/*\\\ntitle: $:/plugins/Guitlle/vuewiki/parser.js\ntype: application/javascript\nmodule-type: parser\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar VuewikiParser = function(type,text,options) {\n this.tree = [{type: \"vuewrapper\", tag: \"$vuewrapper\", children: [ \n { type: \"raw\", value: text }\n ]}];\n};\n\n/*\n\n*/\n\nexports[\"application/prs.vuejs\"] = VuewikiParser;\n\n})();\n"
},
"$:/plugins/Guitlle/vuewiki/vuewrapper.js": {
"title": "$:/plugins/Guitlle/vuewiki/vuewrapper.js",
"created": "20180901052828383",
"modified": "20180909214106162",
"module-type": "widget",
"tags": "",
"type": "application/javascript",
"text": "/*\\\ntitle: $:/plugins/Guitlle/vuewiki/vuewrapper.js\ntype: application/javascript\nmodule-type: widget\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Vue = require(\"$:/usr/lib/vue/vue.min.js\"),\n Uiv = require(\"$:/usr/lib/vue/uiv/uiv.min.js\"),\n Widget = require(\"$:/core/modules/widgets/widget.js\").widget, \n VueInstances = {}, UID = 0;\n\nVue.use(Uiv);\n\nfunction bindTWField(wiki, objectClone, tiddler, field) {\n Object.defineProperty(objectClone, field, {\n get: function () {\n var tidObject = wiki.getTiddler(tiddler),\n value = null;\n try {\n value = JSON.parse(tidObject.fields[field]);\n }\n catch (e) {\n value = tidObject.fields[field];\n }\n return value;\n },\n set: function (newVal) { \n var tidObject = wiki.getTiddler(tiddler),\n val = tidObject.fields[field];\n newVal = JSON.stringify(newVal);\n if (val == newVal) return;\n wiki.setText(tiddler, field, null, newVal);\n },\n enumerable: true\n });\n}\n\nvar VueWrapper = function(parseTreeNode,options) {\n this.initialise(parseTreeNode,options);\n this.importsMap = {};\n};\n\nVueWrapper.prototype = new Widget();\n\nVueWrapper.prototype.refresh = function (changedTiddlers) {\n var that = this, selfData = {};\n Object.getOwnPropertyNames(changedTiddlers).forEach(function (tiddlerName) {\n if (that.importsMap[tiddlerName]) {\n that.app.$data.imports[that.importsMap[tiddlerName]] = that.importTiddler(tiddlerName);\n }\n });\n if (changedTiddlers[that.currentTiddler.fields.title]) {\n that.currentTiddler = that.wiki.getTiddler(that.getVariable(\"currentTiddler\"));\n Object.assign(selfData, that.currentTiddler.fields);\n Object.getOwnPropertyNames(selfData).forEach(function (field) {\n if (field!==\"text\") {\n that.app.$data.self[field] = selfData[field];\n }\n }); \n }\n};\n\nVueWrapper.prototype.importTiddler = function(name) {\n var importTd = this.wiki.getTiddler(name),\n importData = {}, importProcessedData = {},\n that = this;\n // Temporary clone just to iterate over the object properties.\n // The TW native object is not iterable.\n Object.assign(importData, importTd.fields);\n Object.getOwnPropertyNames(importData).forEach(function (importField) {\n bindTWField(that.wiki, importProcessedData, name, importField)\n });\n // ensure clone is deleted\n importData = null;\n return importProcessedData;\n};\n\nVueWrapper.prototype.render = function(parent,nextSibling) {\n this.parentDomNode = parent;\n this.execute();\n this.currentTiddlerTitle = this.getVariable(\"currentTiddler\");\n this.currentTiddler = this.wiki.getTiddler(this.currentTiddlerTitle);\n var that = this,\n vueInstance = VueInstances[that.currentTiddler.fields.title],\n foundParentNode = (vueInstance !== undefined) && that.document.contains(vueInstance.$el),\n selfData = {}, selfBindings = {}, imports = {}, watches = {};\n \n \n if (vueInstance !== undefined && !foundParentNode) {\n VueInstances[this.currentTiddler.fields.title].$destroy();\n delete VueInstances[this.currentTiddler.fields.title];\n }\n\n Object.assign(selfData, that.currentTiddler.fields);\n delete selfData.text;\n\n Object.getOwnPropertyNames(selfData).forEach(function (field) {\n if (field.startsWith(\"tiddler_\")) {\n if (! that.importsMap[selfData[field]]) {\n var importNamespace = field.split(\"_\")[1];\n if (importNamespace === \"\") return;\n imports[importNamespace] = that.importTiddler(selfData[field]);\n that.importsMap[selfData[field]] = importNamespace;\n }\n }\n else {\n bindTWField(that.wiki, selfBindings, that.currentTiddlerTitle, field)\n }\n });\n \n selfData = null;\n \n if (vueInstance === undefined || !foundParentNode) {\n var domNode = this.document.createElement(\"div\");\n parent.insertBefore(domNode,nextSibling);\n this.app = VueInstances[this.currentTiddlerTitle] = new Vue({\n el: domNode,\n template: this.parseTreeNode.children[0].value,\n data: {\n self: selfBindings,\n imports: imports\n },\n methods: {\n wikify: function (wikiText) {\n return that.wiki.renderText(\"text/html\", \"text/vnd.tiddlywiki\", wikiText)\n },\n arrayPush: function(fieldPath, extraPath, item) {\n var pointer = this.$data,\n pathKeys = fieldPath.split(\".\");\n for(var i = 0; i < pathKeys.length - 1; i++) { \n pointer = pointer[pathKeys[i]];\n }\n var pointer2 = pointer[pathKeys[pathKeys.length - 1]];\n if (extraPath !== \"\") {\n var pathKeys2 = extraPath.split(\".\")\n for(var i = 0; i < pathKeys2.length - 1; i++) { \n pointer2 = pointer2[pathKeys2[i]];\n }\n var target = pointer2[pathKeys2[pathKeys2.length-1]];\n target.push(item);\n }\n else {\n pointer2.push(item);\n }\n this.$set(pointer, pathKeys[pathKeys.length - 1], pointer2);\n },\n arraySplice: function(fieldPath, extraPath, start, delCount, item) {\n var pointer = this.$data,\n pathKeys = fieldPath.split(\".\");\n for(var i = 0; i < pathKeys.length - 1; i++) { \n pointer = pointer[pathKeys[i]];\n }\n var pointer2 = pointer[pathKeys[pathKeys.length - 1]];\n if (extraPath !== \"\") {\n var pathKeys2 = extraPath.split(\".\")\n for(var i = 0; i < pathKeys2.length - 1; i++) { \n pointer2 = pointer2[pathKeys2[i]];\n }\n var target = pointer2[pathKeys2[pathKeys2.length-1]];\n if (item === undefined)\n target = target.splice(start, delCount);\n else \n target = target.splice(start, delCount, item);\n }\n else {\n if (item === undefined) \n pointer2.splice(start, delCount);\n else\n pointer2.splice(start, delCount, item);\n }\n this.$set(pointer, pathKeys[pathKeys.length - 1], pointer2);\n },\n objectSet: function(fieldPath, extraPath, value) {\n var pointer = this.$data,\n pathKeys = fieldPath.split(\".\");\n for(var i = 0; i < pathKeys.length - 1; i++) { \n pointer = pointer[pathKeys[i]];\n }\n var pointer2 = pointer[pathKeys[pathKeys.length - 1]],\n pointer3 = pointer2;\n \n if (extraPath !== \"\") {\n var pathKeys2 = extraPath.split(\".\")\n for(var i = 0; i < pathKeys2.length - 1; i++) { \n pointer3 = pointer3[pathKeys2[i]];\n }\n pointer3[pathKeys2[pathKeys2.length-1]] = value;\n this.$set(pointer, pathKeys[pathKeys.length - 1], pointer2);\n }\n }\n }\n });\n }\n else {\n this.app = VueInstances[this.currentTiddlerTitle];\n this.app.$forceUpdate();\n }\n};\n\nexports.vuewrapper = VueWrapper;\n\n})();\n"
},
"$:/usr/lib/bootstrap3/bootstrap.min.css": {
"title": "$:/usr/lib/bootstrap3/bootstrap.min.css",
"created": "20180901225317350",
"modified": "20180901225412368",
"tags": "$:/tags/Stylesheet",
"type": "text/css",
"text": "/*!\n * Bootstrap v3.3.7 (http://getbootstrap.com)\n * Copyright 2011-2016 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:\" (\" attr(href) \")\"}abbr[title]:after{content:\" (\" attr(title) \")\"}a[href^=\"javascript:\"]:after,a[href^=\"#\"]:after{content:\"\"}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:\"\\002a\"}.glyphicon-plus:before{content:\"\\002b\"}.glyphicon-eur:before,.glyphicon-euro:before{content:\"\\20ac\"}.glyphicon-minus:before{content:\"\\2212\"}.glyphicon-cloud:before{content:\"\\2601\"}.glyphicon-envelope:before{content:\"\\2709\"}.glyphicon-pencil:before{content:\"\\270f\"}.glyphicon-glass:before{content:\"\\e001\"}.glyphicon-music:before{content:\"\\e002\"}.glyphicon-search:before{content:\"\\e003\"}.glyphicon-heart:before{content:\"\\e005\"}.glyphicon-star:before{content:\"\\e006\"}.glyphicon-star-empty:before{content:\"\\e007\"}.glyphicon-user:before{content:\"\\e008\"}.glyphicon-film:before{content:\"\\e009\"}.glyphicon-th-large:before{content:\"\\e010\"}.glyphicon-th:before{content:\"\\e011\"}.glyphicon-th-list:before{content:\"\\e012\"}.glyphicon-ok:before{content:\"\\e013\"}.glyphicon-remove:before{content:\"\\e014\"}.glyphicon-zoom-in:before{content:\"\\e015\"}.glyphicon-zoom-out:before{content:\"\\e016\"}.glyphicon-off:before{content:\"\\e017\"}.glyphicon-signal:before{content:\"\\e018\"}.glyphicon-cog:before{content:\"\\e019\"}.glyphicon-trash:before{content:\"\\e020\"}.glyphicon-home:before{content:\"\\e021\"}.glyphicon-file:before{content:\"\\e022\"}.glyphicon-time:before{content:\"\\e023\"}.glyphicon-road:before{content:\"\\e024\"}.glyphicon-download-alt:before{content:\"\\e025\"}.glyphicon-download:before{content:\"\\e026\"}.glyphicon-upload:before{content:\"\\e027\"}.glyphicon-inbox:before{content:\"\\e028\"}.glyphicon-play-circle:before{content:\"\\e029\"}.glyphicon-repeat:before{content:\"\\e030\"}.glyphicon-refresh:before{content:\"\\e031\"}.glyphicon-list-alt:before{content:\"\\e032\"}.glyphicon-lock:before{content:\"\\e033\"}.glyphicon-flag:before{content:\"\\e034\"}.glyphicon-headphones:before{content:\"\\e035\"}.glyphicon-volume-off:before{content:\"\\e036\"}.glyphicon-volume-down:before{content:\"\\e037\"}.glyphicon-volume-up:before{content:\"\\e038\"}.glyphicon-qrcode:before{content:\"\\e039\"}.glyphicon-barcode:before{content:\"\\e040\"}.glyphicon-tag:before{content:\"\\e041\"}.glyphicon-tags:before{content:\"\\e042\"}.glyphicon-book:before{content:\"\\e043\"}.glyphicon-bookmark:before{content:\"\\e044\"}.glyphicon-print:before{content:\"\\e045\"}.glyphicon-camera:before{content:\"\\e046\"}.glyphicon-font:before{content:\"\\e047\"}.glyphicon-bold:before{content:\"\\e048\"}.glyphicon-italic:before{content:\"\\e049\"}.glyphicon-text-height:before{content:\"\\e050\"}.glyphicon-text-width:before{content:\"\\e051\"}.glyphicon-align-left:before{content:\"\\e052\"}.glyphicon-align-center:before{content:\"\\e053\"}.glyphicon-align-right:before{content:\"\\e054\"}.glyphicon-align-justify:before{content:\"\\e055\"}.glyphicon-list:before{content:\"\\e056\"}.glyphicon-indent-left:before{content:\"\\e057\"}.glyphicon-indent-right:before{content:\"\\e058\"}.glyphicon-facetime-video:before{content:\"\\e059\"}.glyphicon-picture:before{content:\"\\e060\"}.glyphicon-map-marker:before{content:\"\\e062\"}.glyphicon-adjust:before{content:\"\\e063\"}.glyphicon-tint:before{content:\"\\e064\"}.glyphicon-edit:before{content:\"\\e065\"}.glyphicon-share:before{content:\"\\e066\"}.glyphicon-check:before{content:\"\\e067\"}.glyphicon-move:before{content:\"\\e068\"}.glyphicon-step-backward:before{content:\"\\e069\"}.glyphicon-fast-backward:before{content:\"\\e070\"}.glyphicon-backward:before{content:\"\\e071\"}.glyphicon-play:before{content:\"\\e072\"}.glyphicon-pause:before{content:\"\\e073\"}.glyphicon-stop:before{content:\"\\e074\"}.glyphicon-forward:before{content:\"\\e075\"}.glyphicon-fast-forward:before{content:\"\\e076\"}.glyphicon-step-forward:before{content:\"\\e077\"}.glyphicon-eject:before{content:\"\\e078\"}.glyphicon-chevron-left:before{content:\"\\e079\"}.glyphicon-chevron-right:before{content:\"\\e080\"}.glyphicon-plus-sign:before{content:\"\\e081\"}.glyphicon-minus-sign:before{content:\"\\e082\"}.glyphicon-remove-sign:before{content:\"\\e083\"}.glyphicon-ok-sign:before{content:\"\\e084\"}.glyphicon-question-sign:before{content:\"\\e085\"}.glyphicon-info-sign:before{content:\"\\e086\"}.glyphicon-screenshot:before{content:\"\\e087\"}.glyphicon-remove-circle:before{content:\"\\e088\"}.glyphicon-ok-circle:before{content:\"\\e089\"}.glyphicon-ban-circle:before{content:\"\\e090\"}.glyphicon-arrow-left:before{content:\"\\e091\"}.glyphicon-arrow-right:before{content:\"\\e092\"}.glyphicon-arrow-up:before{content:\"\\e093\"}.glyphicon-arrow-down:before{content:\"\\e094\"}.glyphicon-share-alt:before{content:\"\\e095\"}.glyphicon-resize-full:before{content:\"\\e096\"}.glyphicon-resize-small:before{content:\"\\e097\"}.glyphicon-exclamation-sign:before{content:\"\\e101\"}.glyphicon-gift:before{content:\"\\e102\"}.glyphicon-leaf:before{content:\"\\e103\"}.glyphicon-fire:before{content:\"\\e104\"}.glyphicon-eye-open:before{content:\"\\e105\"}.glyphicon-eye-close:before{content:\"\\e106\"}.glyphicon-warning-sign:before{content:\"\\e107\"}.glyphicon-plane:before{content:\"\\e108\"}.glyphicon-calendar:before{content:\"\\e109\"}.glyphicon-random:before{content:\"\\e110\"}.glyphicon-comment:before{content:\"\\e111\"}.glyphicon-magnet:before{content:\"\\e112\"}.glyphicon-chevron-up:before{content:\"\\e113\"}.glyphicon-chevron-down:before{content:\"\\e114\"}.glyphicon-retweet:before{content:\"\\e115\"}.glyphicon-shopping-cart:before{content:\"\\e116\"}.glyphicon-folder-close:before{content:\"\\e117\"}.glyphicon-folder-open:before{content:\"\\e118\"}.glyphicon-resize-vertical:before{content:\"\\e119\"}.glyphicon-resize-horizontal:before{content:\"\\e120\"}.glyphicon-hdd:before{content:\"\\e121\"}.glyphicon-bullhorn:before{content:\"\\e122\"}.glyphicon-bell:before{content:\"\\e123\"}.glyphicon-certificate:before{content:\"\\e124\"}.glyphicon-thumbs-up:before{content:\"\\e125\"}.glyphicon-thumbs-down:before{content:\"\\e126\"}.glyphicon-hand-right:before{content:\"\\e127\"}.glyphicon-hand-left:before{content:\"\\e128\"}.glyphicon-hand-up:before{content:\"\\e129\"}.glyphicon-hand-down:before{content:\"\\e130\"}.glyphicon-circle-arrow-right:before{content:\"\\e131\"}.glyphicon-circle-arrow-left:before{content:\"\\e132\"}.glyphicon-circle-arrow-up:before{content:\"\\e133\"}.glyphicon-circle-arrow-down:before{content:\"\\e134\"}.glyphicon-globe:before{content:\"\\e135\"}.glyphicon-wrench:before{content:\"\\e136\"}.glyphicon-tasks:before{content:\"\\e137\"}.glyphicon-filter:before{content:\"\\e138\"}.glyphicon-briefcase:before{content:\"\\e139\"}.glyphicon-fullscreen:before{content:\"\\e140\"}.glyphicon-dashboard:before{content:\"\\e141\"}.glyphicon-paperclip:before{content:\"\\e142\"}.glyphicon-heart-empty:before{content:\"\\e143\"}.glyphicon-link:before{content:\"\\e144\"}.glyphicon-phone:before{content:\"\\e145\"}.glyphicon-pushpin:before{content:\"\\e146\"}.glyphicon-usd:before{content:\"\\e148\"}.glyphicon-gbp:before{content:\"\\e149\"}.glyphicon-sort:before{content:\"\\e150\"}.glyphicon-sort-by-alphabet:before{content:\"\\e151\"}.glyphicon-sort-by-alphabet-alt:before{content:\"\\e152\"}.glyphicon-sort-by-order:before{content:\"\\e153\"}.glyphicon-sort-by-order-alt:before{content:\"\\e154\"}.glyphicon-sort-by-attributes:before{content:\"\\e155\"}.glyphicon-sort-by-attributes-alt:before{content:\"\\e156\"}.glyphicon-unchecked:before{content:\"\\e157\"}.glyphicon-expand:before{content:\"\\e158\"}.glyphicon-collapse-down:before{content:\"\\e159\"}.glyphicon-collapse-up:before{content:\"\\e160\"}.glyphicon-log-in:before{content:\"\\e161\"}.glyphicon-flash:before{content:\"\\e162\"}.glyphicon-log-out:before{content:\"\\e163\"}.glyphicon-new-window:before{content:\"\\e164\"}.glyphicon-record:before{content:\"\\e165\"}.glyphicon-save:before{content:\"\\e166\"}.glyphicon-open:before{content:\"\\e167\"}.glyphicon-saved:before{content:\"\\e168\"}.glyphicon-import:before{content:\"\\e169\"}.glyphicon-export:before{content:\"\\e170\"}.glyphicon-send:before{content:\"\\e171\"}.glyphicon-floppy-disk:before{content:\"\\e172\"}.glyphicon-floppy-saved:before{content:\"\\e173\"}.glyphicon-floppy-remove:before{content:\"\\e174\"}.glyphicon-floppy-save:before{content:\"\\e175\"}.glyphicon-floppy-open:before{content:\"\\e176\"}.glyphicon-credit-card:before{content:\"\\e177\"}.glyphicon-transfer:before{content:\"\\e178\"}.glyphicon-cutlery:before{content:\"\\e179\"}.glyphicon-header:before{content:\"\\e180\"}.glyphicon-compressed:before{content:\"\\e181\"}.glyphicon-earphone:before{content:\"\\e182\"}.glyphicon-phone-alt:before{content:\"\\e183\"}.glyphicon-tower:before{content:\"\\e184\"}.glyphicon-stats:before{content:\"\\e185\"}.glyphicon-sd-video:before{content:\"\\e186\"}.glyphicon-hd-video:before{content:\"\\e187\"}.glyphicon-subtitles:before{content:\"\\e188\"}.glyphicon-sound-stereo:before{content:\"\\e189\"}.glyphicon-sound-dolby:before{content:\"\\e190\"}.glyphicon-sound-5-1:before{content:\"\\e191\"}.glyphicon-sound-6-1:before{content:\"\\e192\"}.glyphicon-sound-7-1:before{content:\"\\e193\"}.glyphicon-copyright-mark:before{content:\"\\e194\"}.glyphicon-registration-mark:before{content:\"\\e195\"}.glyphicon-cloud-download:before{content:\"\\e197\"}.glyphicon-cloud-upload:before{content:\"\\e198\"}.glyphicon-tree-conifer:before{content:\"\\e199\"}.glyphicon-tree-deciduous:before{content:\"\\e200\"}.glyphicon-cd:before{content:\"\\e201\"}.glyphicon-save-file:before{content:\"\\e202\"}.glyphicon-open-file:before{content:\"\\e203\"}.glyphicon-level-up:before{content:\"\\e204\"}.glyphicon-copy:before{content:\"\\e205\"}.glyphicon-paste:before{content:\"\\e206\"}.glyphicon-alert:before{content:\"\\e209\"}.glyphicon-equalizer:before{content:\"\\e210\"}.glyphicon-king:before{content:\"\\e211\"}.glyphicon-queen:before{content:\"\\e212\"}.glyphicon-pawn:before{content:\"\\e213\"}.glyphicon-bishop:before{content:\"\\e214\"}.glyphicon-knight:before{content:\"\\e215\"}.glyphicon-baby-formula:before{content:\"\\e216\"}.glyphicon-tent:before{content:\"\\26fa\"}.glyphicon-blackboard:before{content:\"\\e218\"}.glyphicon-bed:before{content:\"\\e219\"}.glyphicon-apple:before{content:\"\\f8ff\"}.glyphicon-erase:before{content:\"\\e221\"}.glyphicon-hourglass:before{content:\"\\231b\"}.glyphicon-lamp:before{content:\"\\e223\"}.glyphicon-duplicate:before{content:\"\\e224\"}.glyphicon-piggy-bank:before{content:\"\\e225\"}.glyphicon-scissors:before{content:\"\\e226\"}.glyphicon-bitcoin:before{content:\"\\e227\"}.glyphicon-btc:before{content:\"\\e227\"}.glyphicon-xbt:before{content:\"\\e227\"}.glyphicon-yen:before{content:\"\\00a5\"}.glyphicon-jpy:before{content:\"\\00a5\"}.glyphicon-ruble:before{content:\"\\20bd\"}.glyphicon-rub:before{content:\"\\20bd\"}.glyphicon-scale:before{content:\"\\e230\"}.glyphicon-ice-lolly:before{content:\"\\e231\"}.glyphicon-ice-lolly-tasted:before{content:\"\\e232\"}.glyphicon-education:before{content:\"\\e233\"}.glyphicon-option-horizontal:before{content:\"\\e234\"}.glyphicon-option-vertical:before{content:\"\\e235\"}.glyphicon-menu-hamburger:before{content:\"\\e236\"}.glyphicon-modal-window:before{content:\"\\e237\"}.glyphicon-oil:before{content:\"\\e238\"}.glyphicon-grain:before{content:\"\\e239\"}.glyphicon-sunglasses:before{content:\"\\e240\"}.glyphicon-text-size:before{content:\"\\e241\"}.glyphicon-text-color:before{content:\"\\e242\"}.glyphicon-text-background:before{content:\"\\e243\"}.glyphicon-object-align-top:before{content:\"\\e244\"}.glyphicon-object-align-bottom:before{content:\"\\e245\"}.glyphicon-object-align-horizontal:before{content:\"\\e246\"}.glyphicon-object-align-left:before{content:\"\\e247\"}.glyphicon-object-align-vertical:before{content:\"\\e248\"}.glyphicon-object-align-right:before{content:\"\\e249\"}.glyphicon-triangle-right:before{content:\"\\e250\"}.glyphicon-triangle-left:before{content:\"\\e251\"}.glyphicon-triangle-bottom:before{content:\"\\e252\"}.glyphicon-triangle-top:before{content:\"\\e253\"}.glyphicon-console:before{content:\"\\e254\"}.glyphicon-superscript:before{content:\"\\e255\"}.glyphicon-subscript:before{content:\"\\e256\"}.glyphicon-menu-left:before{content:\"\\e257\"}.glyphicon-menu-right:before{content:\"\\e258\"}.glyphicon-menu-down:before{content:\"\\e259\"}.glyphicon-menu-up:before{content:\"\\e260\"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:\"Helvetica Neue\",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-5px;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\\2014 \\00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\\00A0 \\2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,\"Courier New\",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\\9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:4px\\9;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#337ab7;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:\"\";border-top:0;border-bottom:4px dashed;border-bottom:4px solid\\9}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:\"/\\00a0\"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{padding-right:15px;padding-left:15px;border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-right:auto;margin-left:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:\"Helvetica Neue\",Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;filter:alpha(opacity=0);opacity:0;line-break:auto}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:\"Helvetica Neue\",Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);line-break:auto}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{content:\"\";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:\" \";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:\" \";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:\" \";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:\" \";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;font-family:serif;line-height:1}.carousel-control .icon-prev:before{content:'\\2039'}.carousel-control .icon-next:before{content:'\\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000\\9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:\" \"}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}\n/*# sourceMappingURL=bootstrap.min.css.map */"
},
"$:/usr/lib/bootstrap3/glyphicons-halflings-regular.woff.b64.css": {
"title": "$:/usr/lib/bootstrap3/glyphicons-halflings-regular.woff.b64.css",
"created": "20180903051316063",
"modified": "20180903052449119",
"tags": "$:/tags/Stylesheet",
"text": "@font-face{\n font-family:'Glyphicons Halflings';\n src:url(\"data:application/font-woff;charset=utf-8;base64,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\") format('woff');\n}"
},
"$:/usr/lib/vue/uiv/uiv.min.js": {
"title": "$:/usr/lib/vue/uiv/uiv.min.js",
"created": "20180901225236082",
"modified": "20180901225558448",
"module-type": "library",
"type": "application/javascript",
"text": "vueRequirePath = \"$:/usr/lib/vue/vue.min.js\";\n!function(t,e){\"object\"==typeof exports&&\"object\"==typeof module?module.exports=e(require(vueRequirePath)):\"function\"==typeof define&&define.amd?define(\"uiv\",[vueRequirePath],e):\"object\"==typeof exports?exports.uiv=e(require(vueRequirePath)):t.uiv=e(t.Vue)}(\"undefined\"!=typeof self?self:this,function(t){return function(t){function e(i){if(n[i])return n[i].exports;var o=n[i]={i:i,l:!1,exports:{}};return t[i].call(o.exports,o,o.exports,e),o.l=!0,o.exports}var n={};return e.m=t,e.c=n,e.d=function(t,n,i){e.o(t,n)||Object.defineProperty(t,n,{configurable:!1,enumerable:!0,get:i})},e.n=function(t){var n=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(n,\"a\",n),n},e.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},e.p=\"\",e(e.s=15)}([function(t,e){t.exports=function(t,e,n,i,o,r){var s,a=t=t||{},l=typeof t.default;\"object\"!==l&&\"function\"!==l||(s=t,a=t.default);var u=\"function\"==typeof a?a.options:a;e&&(u.render=e.render,u.staticRenderFns=e.staticRenderFns,u._compiled=!0),n&&(u.functional=!0),o&&(u._scopeId=o);var c;if(r?(c=function(t){(t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||\"undefined\"==typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),i&&i.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(r)},u._ssrRegister=c):i&&(c=i),c){var h=u.functional,d=h?u.render:u.beforeCreate;h?(u._injectStyles=c,u.render=function(t,e){return c.call(e),d(t,e)}):u.beforeCreate=d?[].concat(d,c):[c]}return{esModule:s,exports:a,options:u}}},function(t,e,n){\"use strict\";e.__esModule=!0;var i=function(t){return t&&t.__esModule?t:{default:t}}(n(16));e.default=function(t,e,n){return e in t?(0,i.default)(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}},function(t,e,n){\"use strict\";e.__esModule=!0;var i=function(t){return t&&t.__esModule?t:{default:t}}(n(27));e.default=i.default||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(t[i]=n[i])}return t}},function(t,e,n){t.exports=!n(8)(function(){return 7!=Object.defineProperty({},\"a\",{get:function(){return 7}}).a})},function(e,n){e.exports=t},function(t,e){var n=t.exports=\"undefined\"!=typeof window&&window.Math==Math?window:\"undefined\"!=typeof self&&self.Math==Math?self:Function(\"return this\")();\"number\"==typeof __g&&(__g=n)},function(t,e){var n=t.exports={version:\"2.5.1\"};\"number\"==typeof __e&&(__e=n)},function(t,e){t.exports=function(t){return\"object\"==typeof t?null!==t:\"function\"==typeof t}},function(t,e){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,e,n){var i=n(5),o=n(6),r=n(19),s=n(21),a=\"prototype\",l=function(t,e,n){var u,c,h,d=t&l.F,f=t&l.G,p=t&l.S,v=t&l.P,m=t&l.B,g=t&l.W,y=f?o:o[e]||(o[e]={}),b=y[a],w=f?i:p?i[e]:(i[e]||{})[a];f&&(n=e);for(u in n)(c=!d&&w&&void 0!==w[u])&&u in y||(h=c?w[u]:n[u],y[u]=f&&\"function\"!=typeof w[u]?n[u]:m&&c?r(h,i):g&&w[u]==h?function(t){var e=function(e,n,i){if(this instanceof t){switch(arguments.length){case 0:return new t;case 1:return new t(e);case 2:return new t(e,n)}return new t(e,n,i)}return t.apply(this,arguments)};return e[a]=t[a],e}(h):v&&\"function\"==typeof h?r(Function.call,h):h,v&&((y.virtual||(y.virtual={}))[u]=h,t&l.R&&b&&!b[u]&&s(b,u,h)))};l.F=1,l.G=2,l.S=4,l.P=8,l.B=16,l.W=32,l.U=64,l.R=128,t.exports=l},function(t,e,n){var i=n(22),o=n(23),r=n(25),s=Object.defineProperty;e.f=n(3)?Object.defineProperty:function(t,e,n){if(i(t),e=r(e,!0),i(n),o)try{return s(t,e,n)}catch(t){}if(\"get\"in n||\"set\"in n)throw TypeError(\"Accessors not supported!\");return\"value\"in n&&(t[e]=n.value),t}},function(t,e,n){var i=n(12),o=n(13);t.exports=function(t){return i(o(t))}},function(t,e,n){var i=n(34);t.exports=Object(\"z\").propertyIsEnumerable(0)?Object:function(t){return\"String\"==i(t)?t.split(\"\"):Object(t)}},function(t,e){t.exports=function(t){if(void 0==t)throw TypeError(\"Can't call method on \"+t);return t}},function(t,e){var n=Math.ceil,i=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?i:n)(t)}},function(t,e,n){\"use strict\";function i(t){return void 0!==t&&null!==t}function o(t){return\"function\"==typeof t}function r(t){return\"number\"==typeof t}function s(t){return\"string\"==typeof t}function a(){return\"undefined\"!=typeof window&&i(window.Promise)}function l(t,e){if(Array.isArray(t)){var n=t.indexOf(e);n>=0&&t.splice(n,1)}}function u(t){return Array.prototype.slice.call(t||[])}function c(t,e,n){return n.indexOf(t)===e}function h(t){return window.getComputedStyle(t)}function d(){return{width:Math.max(document.documentElement.clientWidth,window.innerWidth||0),height:Math.max(document.documentElement.clientHeight,window.innerHeight||0)}}function f(t,e,n){t.addEventListener(e,n)}function p(t,e,n){t.removeEventListener(e,n)}function v(t){return t&&t.nodeType===Node.ELEMENT_NODE}function m(t){v(t)&&v(t.parentNode)&&t.parentNode.removeChild(t)}function g(){Element.prototype.matches||(Element.prototype.matches=Element.prototype.matchesSelector||Element.prototype.mozMatchesSelector||Element.prototype.msMatchesSelector||Element.prototype.oMatchesSelector||Element.prototype.webkitMatchesSelector||function(t){for(var e=(this.document||this.ownerDocument).querySelectorAll(t),n=e.length;--n>=0&&e.item(n)!==this;);return n>-1})}function y(t,e){if(v(t))if(t.className){var n=t.className.split(\" \");n.indexOf(e)<0&&(n.push(e),t.className=n.join(\" \"))}else t.className=e}function b(t,e){if(v(t)&&t.className){for(var n=t.className.split(\" \"),i=[],o=0,r=n.length;o<r;o++)n[o]!==e&&i.push(n[o]);t.className=i.join(\" \")}}function w(t,e,n){var i=t.getBoundingClientRect(),o=e.getBoundingClientRect(),r=d(),s=!0,a=!0,l=!0,u=!0;switch(n){case tt.TOP:s=i.top>=o.height,u=i.left+i.width/2>=o.width/2,a=i.right-i.width/2+o.width/2<=r.width;break;case tt.BOTTOM:l=i.bottom+o.height<=r.height,u=i.left+i.width/2>=o.width/2,a=i.right-i.width/2+o.width/2<=r.width;break;case tt.RIGHT:a=i.right+o.width<=r.width,s=i.top+i.height/2>=o.height/2,l=i.bottom-i.height/2+o.height/2<=r.height;break;case tt.LEFT:u=i.left>=o.width,s=i.top+i.height/2>=o.height/2,l=i.bottom-i.height/2+o.height/2<=r.height}return s&&a&&l&&u}function x(t){var e=t.scrollHeight>t.clientHeight,n=h(t);return e||\"scroll\"===n.overflow||\"scroll\"===n.overflowY}function _(t){var e=document.body;if(t)b(e,\"modal-open\"),e.style.paddingRight=null;else{var n=-1!==window.navigator.appVersion.indexOf(\"MSIE 10\")||!!window.MSInputMethodContext&&!!document.documentMode;(x(document.documentElement)||x(document.body))&&!n&&(e.style.paddingRight=function(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0],e=d();if(null!==et&&!t&&e.height===nt.height&&e.width===nt.width)return et;if(\"loading\"===document.readyState)return null;var n=document.createElement(\"div\"),i=document.createElement(\"div\");return n.style.width=i.style.width=n.style.height=i.style.height=\"100px\",n.style.overflow=\"scroll\",i.style.overflow=\"hidden\",document.body.appendChild(n),document.body.appendChild(i),et=Math.abs(n.scrollHeight-i.scrollHeight),document.body.removeChild(n),document.body.removeChild(i),nt=e,et}()+\"px\"),y(e,\"modal-open\")}}function k(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;g();for(var i=[],o=t.parentElement;o;){if(o.matches(e))i.push(o);else if(n&&(n===o||o.matches(n)))break;o=o.parentElement}return i}function C(t){v(t)&&(!t.getAttribute(\"tabindex\")&&t.setAttribute(\"tabindex\",\"-1\"),t.focus())}function T(){for(var t,e,n={},i=arguments.length;i--;)for(var o=0,r=Object.keys(arguments[i]);o<r.length;o++)switch(t=r[o]){case\"class\":case\"style\":case\"directives\":Array.isArray(n[t])||(n[t]=[]),n[t]=n[t].concat(arguments[i][t]);break;case\"staticClass\":if(!arguments[i][t])break;void 0===n[t]&&(n[t]=\"\"),n[t]&&(n[t]+=\" \"),n[t]+=arguments[i][t].trim();break;case\"on\":case\"nativeOn\":n[t]||(n[t]={});for(var s=0,a=Object.keys(arguments[i][t]);s<a.length;s++)e=a[s],n[t][e]?n[t][e]=[].concat(n[t][e],arguments[i][t][e]):n[t][e]=arguments[i][t][e];break;case\"attrs\":case\"props\":case\"domProps\":case\"scopedSlots\":case\"staticStyle\":case\"hook\":case\"transition\":n[t]||(n[t]={}),n[t]=bt({},arguments[i][t],n[t]);break;case\"slot\":case\"key\":case\"ref\":case\"tag\":case\"show\":case\"keepAlive\":default:n[t]||(n[t]=arguments[i][t])}return n}function S(t,e){for(var n=e-(t+=\"\").length;n>0;n--)t=\"0\"+t;return t}function E(t){return new Date(t.getUTCFullYear(),t.getUTCMonth(),t.getUTCDate(),t.getUTCHours(),t.getUTCMinutes(),t.getUTCSeconds())}function $(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:\"body\",n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};this.el=t,this.opts=dt()({},$.DEFAULTS,n),this.opts.target=e,this.scrollElement=\"body\"===e?window:document.querySelector(\"[id=\"+e+\"]\"),this.selector=\"li > a\",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.scrollElement&&(this.refresh(),this.process())}Object.defineProperty(e,\"__esModule\",{value:!0});var B={};n.d(B,\"Carousel\",function(){return D}),n.d(B,\"Slide\",function(){return R}),n.d(B,\"Collapse\",function(){return st}),n.d(B,\"Dropdown\",function(){return lt}),n.d(B,\"Modal\",function(){return Et}),n.d(B,\"Tab\",function(){return Ot}),n.d(B,\"Tabs\",function(){return Dt}),n.d(B,\"DatePicker\",function(){return Kt}),n.d(B,\"Affix\",function(){return Zt}),n.d(B,\"Alert\",function(){return ne}),n.d(B,\"Pagination\",function(){return re}),n.d(B,\"Tooltip\",function(){return le}),n.d(B,\"Popover\",function(){return ce}),n.d(B,\"TimePicker\",function(){return fe}),n.d(B,\"Typeahead\",function(){return me}),n.d(B,\"ProgressBar\",function(){return ye}),n.d(B,\"ProgressBarStack\",function(){return ge}),n.d(B,\"Breadcrumbs\",function(){return we}),n.d(B,\"BreadcrumbItem\",function(){return be}),n.d(B,\"Btn\",function(){return kt}),n.d(B,\"BtnGroup\",function(){return xt}),n.d(B,\"BtnToolbar\",function(){return xe}),n.d(B,\"MultiSelect\",function(){return Ce}),n.d(B,\"Navbar\",function(){return Ee}),n.d(B,\"NavbarNav\",function(){return $e}),n.d(B,\"NavbarForm\",function(){return Be}),n.d(B,\"NavbarText\",function(){return Oe});var O={};n.d(O,\"tooltip\",function(){return Fe}),n.d(O,\"popover\",function(){return ze}),n.d(O,\"scrollspy\",function(){return We});var I={};n.d(I,\"MessageBox\",function(){return nn}),n.d(I,\"Notification\",function(){return yn});var P={props:{value:Number,indicators:{type:Boolean,default:!0},controls:{type:Boolean,default:!0},interval:{type:Number,default:5e3},iconControlLeft:{type:String,default:\"glyphicon glyphicon-chevron-left\"},iconControlRight:{type:String,default:\"glyphicon glyphicon-chevron-right\"}},data:function(){return{slides:[],activeIndex:0,timeoutId:0,intervalId:0}},watch:{interval:function(){this.startInterval()},value:function(t,e){this.run(t,e),this.activeIndex=t}},mounted:function(){i(this.value)&&(this.activeIndex=this.value),this.slides.length>0&&this.$select(this.activeIndex),this.startInterval()},beforeDestroy:function(){this.stopInterval()},methods:{run:function(t,e){var n=this,i=e||0,o=void 0;o=t>i?[\"next\",\"left\"]:[\"prev\",\"right\"],this.slides[t].slideClass[o[0]]=!0,this.$nextTick(function(){n.slides[t].$el.offsetHeight,n.slides.forEach(function(e,n){n===i?(e.slideClass.active=!0,e.slideClass[o[1]]=!0):n===t&&(e.slideClass[o[1]]=!0)}),n.timeoutId=setTimeout(function(){n.$select(t),n.$emit(\"change\",t),n.timeoutId=0},600)})},startInterval:function(){var t=this;this.stopInterval(),this.interval>0&&(this.intervalId=setInterval(function(){t.next()},this.interval))},stopInterval:function(){clearInterval(this.intervalId),this.intervalId=0},resetAllSlideClass:function(){this.slides.forEach(function(t){t.slideClass.active=!1,t.slideClass.left=!1,t.slideClass.right=!1,t.slideClass.next=!1,t.slideClass.prev=!1})},$select:function(t){this.resetAllSlideClass(),this.slides[t].slideClass.active=!0},select:function(t){0===this.timeoutId&&t!==this.activeIndex&&(i(this.value)?this.$emit(\"input\",t):(this.run(t,this.activeIndex),this.activeIndex=t))},prev:function(){this.select(0===this.activeIndex?this.slides.length-1:this.activeIndex-1)},next:function(){this.select(this.activeIndex===this.slides.length-1?0:this.activeIndex+1)}}},M={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"div\",{staticClass:\"carousel slide\",attrs:{\"data-ride\":\"carousel\"},on:{mouseenter:t.stopInterval,mouseleave:t.startInterval}},[t.indicators?t._t(\"indicators\",[n(\"ol\",{staticClass:\"carousel-indicators\"},t._l(t.slides,function(e,i){return n(\"li\",{class:{active:i===t.activeIndex},on:{click:function(e){t.select(i)}}})}))],{select:t.select,activeIndex:t.activeIndex}):t._e(),t._v(\" \"),n(\"div\",{staticClass:\"carousel-inner\",attrs:{role:\"listbox\"}},[t._t(\"default\")],2),t._v(\" \"),t.controls?n(\"a\",{staticClass:\"left carousel-control\",attrs:{href:\"#\",role:\"button\"},on:{click:function(e){e.preventDefault(),t.prev()}}},[n(\"span\",{class:t.iconControlLeft,attrs:{\"aria-hidden\":\"true\"}}),t._v(\" \"),n(\"span\",{staticClass:\"sr-only\"},[t._v(\"Previous\")])]):t._e(),t._v(\" \"),t.controls?n(\"a\",{staticClass:\"right carousel-control\",attrs:{href:\"#\",role:\"button\"},on:{click:function(e){e.preventDefault(),t.next()}}},[n(\"span\",{class:t.iconControlRight,attrs:{\"aria-hidden\":\"true\"}}),t._v(\" \"),n(\"span\",{staticClass:\"sr-only\"},[t._v(\"Next\")])]):t._e()],2)},staticRenderFns:[]},D=n(0)(P,M,!1,null,null,null).exports,N={data:function(){return{slideClass:{active:!1,prev:!1,next:!1,left:!1,right:!1}}},created:function(){try{this.$parent.slides.push(this)}catch(t){throw new Error(\"Slide parent must be Carousel.\")}},beforeDestroy:function(){l(this.$parent&&this.$parent.slides,this)}},F={render:function(){var t=this.$createElement;return(this._self._c||t)(\"div\",{staticClass:\"item\",class:this.slideClass},[this._t(\"default\")],2)},staticRenderFns:[]},R=n(0)(N,F,!1,null,null,null).exports,A=\"mouseenter\",L=\"mouseleave\",z=\"focus\",j=\"blur\",H=\"click\",V=\"input\",Y=\"keydown\",q=\"keyup\",K=\"resize\",W=\"scroll\",U=\"touchend\",G=\"click\",X=\"hover\",J=\"focus\",Q=\"hover-focus\",Z=\"outside-click\",tt={TOP:\"top\",RIGHT:\"right\",BOTTOM:\"bottom\",LEFT:\"left\"},et=null,nt=null,it=\"collapse\",ot=\"collapsing\",rt={render:function(t){return t(this.tag,{},this.$slots.default)},props:{tag:{type:String,default:\"div\"},value:{type:Boolean,default:!1},transitionDuration:{type:Number,default:350}},data:function(){return{timeoutId:0}},watch:{value:function(t){this.toggle(t)}},mounted:function(){var t=this.$el;y(t,it),this.value&&y(t,\"in\")},methods:{toggle:function(t){var e=this;clearTimeout(this.timeoutId);var n=this.$el;if(t){this.$emit(\"show\"),b(n,it),n.style.height=\"auto\";var i=window.getComputedStyle(n).height;n.style.height=null,y(n,ot),n.offsetHeight,n.style.height=i,this.timeoutId=setTimeout(function(){b(n,ot),y(n,it),y(n,\"in\"),n.style.height=null,e.timeoutId=0,e.$emit(\"shown\")},this.transitionDuration)}else this.$emit(\"hide\"),n.style.height=window.getComputedStyle(n).height,b(n,\"in\"),b(n,it),n.offsetHeight,n.style.height=null,y(n,ot),this.timeoutId=setTimeout(function(){y(n,it),b(n,ot),n.style.height=null,e.timeoutId=0,e.$emit(\"hidden\")},this.transitionDuration)}}},st=n(0)(rt,null,!1,null,null,null).exports,at={render:function(t){return t(this.tag,{class:{\"btn-group\":\"div\"===this.tag,dropdown:!this.dropup,dropup:this.dropup,open:this.show}},[this.$slots.default,t(\"ul\",{class:{\"dropdown-menu\":!0,\"dropdown-menu-right\":this.menuRight},ref:\"dropdown\"},[this.$slots.dropdown])])},props:{tag:{type:String,default:\"div\"},appendToBody:{type:Boolean,default:!1},value:Boolean,dropup:{type:Boolean,default:!1},menuRight:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},notCloseElements:Array,positionElement:null},data:function(){return{show:!1,triggerEl:void 0}},watch:{value:function(t){this.toggle(t)}},mounted:function(){this.initTrigger(),this.triggerEl&&(f(this.triggerEl,H,this.toggle),f(this.triggerEl,Y,this.onKeyPress)),f(this.$refs.dropdown,Y,this.onKeyPress),f(window,H,this.windowClicked),f(window,U,this.windowClicked),this.value&&this.toggle(!0)},beforeDestroy:function(){this.removeDropdownFromBody(),this.triggerEl&&(p(this.triggerEl,H,this.toggle),p(this.triggerEl,Y,this.onKeyPress)),p(this.$refs.dropdown,Y,this.onKeyPress),p(window,H,this.windowClicked),p(window,U,this.windowClicked)},methods:{onKeyPress:function(t){if(this.show){var e=this.$refs.dropdown,n=t.keyCode||t.which;if(27===n)this.toggle(!1),this.triggerEl&&this.triggerEl.focus();else if(13===n){var i=e.querySelector(\"li > a:focus\");i&&i.click()}else if(38===n||40===n){t.preventDefault(),t.stopPropagation();var o=e.querySelector(\"li > a:focus\"),r=e.querySelectorAll(\"li:not(.disabled) > a\");if(o){for(var s=0;s<r.length;s++)if(o===r[s]){38===n&&s<r.length>0?C(r[s-1]):40===n&&s<r.length-1&&C(r[s+1]);break}}else C(r[0])}}},initTrigger:function(){var t=this.$el.querySelector('[data-role=\"trigger\"]')||this.$el.querySelector(\".dropdown-toggle\")||this.$el.firstChild;this.triggerEl=t&&t!==this.$refs.dropdown?t:null},toggle:function(t){this.disabled||(!function(t){return\"boolean\"==typeof t}(t)?this.show=!this.show:this.show=t,this.appendToBody&&(this.show?this.appendDropdownToBody():this.removeDropdownFromBody()),this.$emit(\"input\",this.show))},windowClicked:function(t){var e=t.target;if(this.show&&e){var n=!1;if(this.notCloseElements)for(var i=0,o=this.notCloseElements.length;i<o;i++){var r=this.notCloseElements[i].contains(e),s=r;if(this.appendToBody){var a=this.$refs.dropdown.contains(e),l=this.notCloseElements.indexOf(this.$el)>=0;s=r||a&&l}if(s){n=!0;break}}var u=this.$refs.dropdown.contains(e),c=this.$el.contains(e)&&!u,h=u&&\"touchend\"===t.type;c||n||h||this.toggle(!1)}},appendDropdownToBody:function(){try{var t=this.$refs.dropdown;t.style.display=\"block\",document.body.appendChild(t);!function(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},i=document.documentElement,o=(window.pageXOffset||i.scrollLeft)-(i.clientLeft||0),r=(window.pageYOffset||i.scrollTop)-(i.clientTop||0),s=e.getBoundingClientRect(),a=t.getBoundingClientRect();t.style.right=\"auto\",t.style.bottom=\"auto\",n.menuRight?t.style.left=o+s.left+s.width-a.width+\"px\":t.style.left=o+s.left+\"px\",n.dropup?t.style.top=r+s.top-a.height-4+\"px\":t.style.top=r+s.top+s.height+\"px\"}(t,this.positionElement||this.$el,this)}catch(t){}},removeDropdownFromBody:function(){try{var t=this.$refs.dropdown;t.removeAttribute(\"style\"),this.$el.appendChild(t)}catch(t){}}}},lt=n(0)(at,null,!1,null,null,null).exports,ut=n(1),ct=n.n(ut),ht=n(2),dt=n.n(ht),ft={uiv:{datePicker:{clear:\"Clear\",today:\"Today\",month:\"Month\",month1:\"January\",month2:\"February\",month3:\"March\",month4:\"April\",month5:\"May\",month6:\"June\",month7:\"July\",month8:\"August\",month9:\"September\",month10:\"October\",month11:\"November\",month12:\"December\",year:\"Year\",week1:\"Mon\",week2:\"Tue\",week3:\"Wed\",week4:\"Thu\",week5:\"Fri\",week6:\"Sat\",week7:\"Sun\"},timePicker:{am:\"AM\",pm:\"PM\"},modal:{cancel:\"Cancel\",ok:\"OK\"},multiSelect:{placeholder:\"Select...\",filterPlaceholder:\"Search...\"}}},pt=function(){var t=Object.getPrototypeOf(this).$t;if(o(t))try{return t.apply(this,arguments)}catch(t){return this.$t.apply(this,arguments)}},vt=function(t,e){e=e||{};var n=pt.apply(this,arguments);if(i(n)&&!e.$$locale)return n;for(var o=t.split(\".\"),r=e.$$locale||ft,s=0,a=o.length;s<a;s++){if(n=r[o[s]],s===a-1)return n;if(!n)return\"\";r=n}return\"\"},mt=function(t){ft=t||ft},gt=function(t){pt=t||pt},yt={methods:{t:function(){for(var t=arguments.length,e=Array(t),n=0;n<t;n++)e[n]=arguments[n];return e[1]=dt()({$$locale:this.locale},e[1]),vt.apply(this,e)}},props:{locale:Object}},bt=Object.assign||function(t){for(var e,n=1,i=arguments.length;n<i;n++){e=arguments[n];for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])}return t},wt={props:{href:String,target:String,to:null,replace:{type:Boolean,default:!1},append:{type:Boolean,default:!1},exact:{type:Boolean,default:!1}}},xt={functional:!0,render:function(t,e){var n=e.props,i=e.children;return t(\"div\",T(e.data,{class:ct()({\"btn-group\":!n.vertical,\"btn-group-vertical\":n.vertical,\"btn-group-justified\":n.justified},\"btn-group-\"+n.size,n.size),attrs:{role:\"group\",\"data-toggle\":\"buttons\"}}),i)},props:{size:String,vertical:{type:Boolean,default:!1},justified:{type:Boolean,default:!1}}},_t=\"checkbox\",kt={functional:!0,mixins:[wt],render:function(t,e){var n,i=e.children,o=e.props,r=e.data,s=r.on||{},a=o.inputType===_t?o.value.indexOf(o.inputValue)>=0:o.value===o.inputValue,l=(n={btn:!0,active:o.inputType?a:o.active,disabled:o.disabled,\"btn-block\":o.block},ct()(n,\"btn-\"+o.type,Boolean(o.type)),ct()(n,\"btn-\"+o.size,Boolean(o.size)),n),u={click:function(t){o.disabled&&t instanceof Event&&(t.preventDefault(),t.stopPropagation())}},c=void 0,h=void 0,d=void 0;return o.href?(c=\"a\",d=i,h=T(r,{on:u,class:l,attrs:{role:\"button\",href:o.href,target:o.target}})):o.to?(c=\"router-link\",d=i,h=T(r,{nativeOn:u,class:l,props:{event:o.disabled?\"\":\"click\",to:o.to,replace:o.replace,append:o.append,exact:o.exact},attrs:{role:\"button\"}})):o.inputType?(c=\"label\",h=T(r,{on:u,class:l}),d=[t(\"input\",{attrs:{autocomplete:\"off\",type:o.inputType,checked:a?\"checked\":null,disabled:o.disabled},domProps:{checked:a},on:{change:function(){if(o.inputType===_t){var t=o.value.slice();a?t.splice(t.indexOf(o.inputValue),1):t.push(o.inputValue),s.input(t)}else s.input(o.inputValue)}}}),i]):o.justified?(c=xt,h={},d=[t(\"button\",T(r,{on:u,class:l,attrs:{type:o.nativeType,disabled:o.disabled}}),i)]):(c=\"button\",d=i,h=T(r,{on:u,class:l,attrs:{type:o.nativeType,disabled:o.disabled}})),t(c,h,d)},props:{justified:{type:Boolean,default:!1},type:{type:String,default:\"default\"},nativeType:{type:String,default:\"button\"},size:String,block:{type:Boolean,default:!1},active:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},value:null,inputValue:null,inputType:{type:String,validator:function(t){return t===_t||\"radio\"===t}}}},Ct=function(){return document.querySelectorAll(\".modal-backdrop\").length},Tt={mixins:[yt],components:{Btn:kt},props:{value:{type:Boolean,default:!1},title:String,size:String,backdrop:{type:Boolean,default:!0},footer:{type:Boolean,default:!0},header:{type:Boolean,default:!0},cancelText:String,cancelType:{type:String,default:\"default\"},okText:String,okType:{type:String,default:\"primary\"},dismissBtn:{type:Boolean,default:!0},transitionDuration:{type:Number,default:150},autoFocus:{type:Boolean,default:!1},keyboard:{type:Boolean,default:!0},beforeClose:Function,zOffset:{type:Number,default:20},appendToBody:{type:Boolean,default:!1}},data:function(){return{msg:\"\",timeoutId:0}},computed:{modalSizeClass:function(){return ct()({},\"modal-\"+this.size,Boolean(this.size))}},watch:{value:function(t){this.$toggle(t)}},mounted:function(){m(this.$refs.backdrop),f(window,q,this.onKeyPress),this.value&&this.$toggle(!0)},beforeDestroy:function(){clearTimeout(this.timeoutId),m(this.$refs.backdrop),m(this.$el),0===Ct()&&_(!0),p(window,q,this.onKeyPress)},methods:{onKeyPress:function(t){this.keyboard&&this.value&&27===t.keyCode&&this.toggle(!1)},toggle:function(t,e){(t||!o(this.beforeClose)||this.beforeClose(e))&&(this.msg=e,this.$emit(\"input\",t))},$toggle:function(t){var e=this,n=this.$el,i=this.$refs.backdrop;if(clearTimeout(this.timeoutId),t){var o=Ct();if(document.body.appendChild(i),this.appendToBody&&document.body.appendChild(n),n.style.display=\"block\",n.scrollTop=0,i.offsetHeight,_(!1),y(i,\"in\"),y(n,\"in\"),o>0){var r=parseInt(h(n).zIndex)||1050,s=parseInt(h(i).zIndex)||1040,a=o*this.zOffset;n.style.zIndex=\"\"+(r+a),i.style.zIndex=\"\"+(s+a)}this.timeoutId=setTimeout(function(){if(e.autoFocus){var t=e.$el.querySelector('[data-action=\"auto-focus\"]');t&&t.focus()}e.$emit(\"show\"),e.timeoutId=0},this.transitionDuration)}else b(i,\"in\"),b(n,\"in\"),this.timeoutId=setTimeout(function(){n.style.display=\"none\",m(i),e.appendToBody&&m(n),0===Ct()&&_(!0),e.$emit(\"hide\",e.msg||\"dismiss\"),e.msg=\"\",e.timeoutId=0,n.style.zIndex=\"\",i.style.zIndex=\"\"},this.transitionDuration)},backdropClicked:function(t){this.backdrop&&this.toggle(!1)}}},St={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"div\",{staticClass:\"modal\",class:{fade:t.transitionDuration>0},attrs:{tabindex:\"-1\",role:\"dialog\"},on:{click:function(e){if(e.target!==e.currentTarget)return null;t.backdropClicked(e)}}},[n(\"div\",{ref:\"dialog\",staticClass:\"modal-dialog\",class:t.modalSizeClass,attrs:{role:\"document\"}},[n(\"div\",{staticClass:\"modal-content\"},[t.header?n(\"div\",{staticClass:\"modal-header\"},[t._t(\"header\",[t.dismissBtn?n(\"button\",{staticClass:\"close\",staticStyle:{position:\"relative\",\"z-index\":\"1060\"},attrs:{type:\"button\",\"aria-label\":\"Close\"},on:{click:function(e){t.toggle(!1)}}},[n(\"span\",{attrs:{\"aria-hidden\":\"true\"}},[t._v(\"×\")])]):t._e(),t._v(\" \"),n(\"h4\",{staticClass:\"modal-title\"},[t._t(\"title\",[t._v(t._s(t.title))])],2)])],2):t._e(),t._v(\" \"),n(\"div\",{staticClass:\"modal-body\"},[t._t(\"default\")],2),t._v(\" \"),t.footer?n(\"div\",{staticClass:\"modal-footer\"},[t._t(\"footer\",[n(\"btn\",{attrs:{type:t.cancelType},on:{click:function(e){t.toggle(!1,\"cancel\")}}},[n(\"span\",[t._v(t._s(t.cancelText||t.t(\"uiv.modal.cancel\")))])]),t._v(\" \"),n(\"btn\",{attrs:{type:t.okType,\"data-action\":\"auto-focus\"},on:{click:function(e){t.toggle(!1,\"ok\")}}},[n(\"span\",[t._v(t._s(t.okText||t.t(\"uiv.modal.ok\")))])])])],2):t._e()])]),t._v(\" \"),n(\"div\",{ref:\"backdrop\",staticClass:\"modal-backdrop\",class:{fade:t.transitionDuration>0}})])},staticRenderFns:[]},Et=n(0)(Tt,St,!1,null,null,null).exports,$t={props:{title:{type:String,default:\"Tab Title\"},htmlTitle:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},\"tab-classes\":{type:Object,default:function(){return{}}},group:String,pullRight:{type:Boolean,default:!1}},data:function(){return{active:!0,transition:150}},watch:{active:function(t){var e=this;t?setTimeout(function(){y(e.$el,\"active\"),e.$el.offsetHeight,y(e.$el,\"in\");try{e.$parent.$emit(\"after-change\",e.$parent.activeIndex)}catch(t){throw new Error(\"<tab> parent must be <tabs>.\")}},this.transition):(b(this.$el,\"in\"),setTimeout(function(){b(e.$el,\"active\")},this.transition))}},created:function(){try{this.$parent.tabs.push(this)}catch(t){throw new Error(\"<tab> parent must be <tabs>.\")}},beforeDestroy:function(){l(this.$parent&&this.$parent.tabs,this)},methods:{show:function(){var t=this;this.$nextTick(function(){y(t.$el,\"active\"),y(t.$el,\"in\")})}}},Bt={render:function(){var t=this.$createElement;return(this._self._c||t)(\"div\",{staticClass:\"tab-pane\",class:{fade:this.transition>0},attrs:{role:\"tabpanel\"}},[this._t(\"default\")],2)},staticRenderFns:[]},Ot=n(0)($t,Bt,!1,null,null,null).exports,It=\"before-change\",Pt={components:{Dropdown:lt},props:{value:{type:Number,validator:function(t){return t>=0}},transitionDuration:{type:Number,default:150},justified:Boolean,pills:Boolean,stacked:Boolean},data:function(){return{tabs:[],activeIndex:0}},watch:{value:{immediate:!0,handler:function(t){r(t)&&(this.activeIndex=t,this.selectCurrent())}},tabs:function(t){var e=this;t.forEach(function(t,n){t.transition=e.transitionDuration,n===e.activeIndex&&t.show()}),this.selectCurrent()}},computed:{navClasses:function(){return{nav:!0,\"nav-justified\":this.justified,\"nav-tabs\":!this.pills,\"nav-pills\":this.pills,\"nav-stacked\":this.stacked&&this.pills}},groupedTabs:function(){var t=[],e={};return this.tabs.forEach(function(n){n.group?(e.hasOwnProperty(n.group)?t[e[n.group]].tabs.push(n):(t.push({tabs:[n],group:n.group}),e[n.group]=t.length-1),n.active&&(t[e[n.group]].active=!0),n.pullRight&&(t[e[n.group]].pullRight=!0)):t.push(n)}),t}},methods:{getTabClasses:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n={active:t.active,disabled:t.disabled,\"pull-right\":t.pullRight&&!e};return dt()(n,t.tabClasses)},selectCurrent:function(){var t=this,e=!1;this.tabs.forEach(function(n,i){i===t.activeIndex?(e=!n.active,n.active=!0):n.active=!1}),e&&this.$emit(\"change\",this.activeIndex)},selectValidate:function(t){var e=this;o(this.$listeners[It])?this.$emit(It,this.activeIndex,t,function(n){i(n)||e.$select(t)}):this.$select(t)},select:function(t){this.tabs[t].disabled||t===this.activeIndex||this.selectValidate(t)},$select:function(t){r(this.value)?this.$emit(\"input\",t):(this.activeIndex=t,this.selectCurrent())}}},Mt={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"section\",[n(\"ul\",{class:t.navClasses,attrs:{role:\"tablist\"}},[t._l(t.groupedTabs,function(e,i){return[e.tabs?n(\"dropdown\",{class:t.getTabClasses(e),attrs:{role:\"presentation\",tag:\"li\"}},[n(\"a\",{staticClass:\"dropdown-toggle\",attrs:{role:\"tab\",href:\"#\"},on:{click:function(t){t.preventDefault()}}},[t._v(t._s(e.group)+\" \"),n(\"span\",{staticClass:\"caret\"})]),t._v(\" \"),n(\"template\",{slot:\"dropdown\"},t._l(e.tabs,function(e){return n(\"li\",{class:t.getTabClasses(e,!0)},[n(\"a\",{attrs:{href:\"#\"},on:{click:function(n){n.preventDefault(),t.select(t.tabs.indexOf(e))}}},[t._v(t._s(e.title))])])}))],2):n(\"li\",{class:t.getTabClasses(e),attrs:{role:\"presentation\"}},[n(\"a\",{attrs:{role:\"tab\",href:\"#\"},on:{click:function(n){n.preventDefault(),t.select(t.tabs.indexOf(e))}}},[e.htmlTitle?n(\"span\",{domProps:{innerHTML:t._s(e.title)}}):[t._v(t._s(e.title))]],2)])]}),t._v(\" \"),!t.justified&&t.$slots[\"nav-right\"]?n(\"li\",{staticClass:\"pull-right\"},[t._t(\"nav-right\")],2):t._e()],2),t._v(\" \"),n(\"div\",{staticClass:\"tab-content\"},[t._t(\"default\")],2)])},staticRenderFns:[]},Dt=n(0)(Pt,Mt,!1,null,null,null).exports,Nt=[\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"],Ft={mixins:[yt],props:{month:Number,year:Number,date:Date,today:Date,limit:Object,weekStartsWith:Number,iconControlLeft:String,iconControlRight:String,dateClass:Function,yearMonthFormatter:Function,weekNumbers:Boolean},components:{Btn:kt},computed:{weekDays:function(){for(var t=[],e=this.weekStartsWith;t.length<7;)t.push(e++),e>6&&(e=0);return t},yearMonthStr:function(){return this.yearMonthFormatter?this.yearMonthFormatter(this.year,this.month):i(this.month)?this.year+\" \"+this.t(\"uiv.datePicker.month\"+(this.month+1)):this.year},monthDayRows:function(){var t=[],e=new Date(this.year,this.month,1),n=new Date(this.year,this.month,0).getDate(),i=e.getDay(),r=function(t,e){return new Date(e,t+1,0).getDate()}(this.month,this.year),s=0;s=this.weekStartsWith>i?7-this.weekStartsWith:0-this.weekStartsWith;for(var a=0;a<6;a++){t.push([]);for(var l=0-s;l<7-s;l++){var u=7*a+l,c={year:this.year,disabled:!1};u<i?(c.date=n-i+u+1,this.month>0?c.month=this.month-1:(c.month=11,c.year--)):u<i+r?(c.date=u-i+1,c.month=this.month):(c.date=u-i-r+1,this.month<11?c.month=this.month+1:(c.month=0,c.year++));var h=new Date(c.year,c.month,c.date),d=!0,f=!0;this.limit&&this.limit.from&&(d=h>=this.limit.from),this.limit&&this.limit.to&&(f=h<this.limit.to),c.disabled=!d||!f,c.classes=o(this.dateClass)?this.dateClass(h):\"\",t[a].push(c)}}return t}},methods:{getWeekNumber:function(t){(t=new Date(Date.UTC(t.year,t.month,t.date))).setUTCDate(t.getUTCDate()+4-(t.getUTCDay()||7));var e=new Date(Date.UTC(t.getUTCFullYear(),0,1));return Math.ceil(((t-e)/864e5+1)/7)},tWeekName:function(t){return this.t(\"uiv.datePicker.week\"+t)},getBtnType:function(t){return this.date&&t.date===this.date.getDate()&&t.month===this.date.getMonth()&&t.year===this.date.getFullYear()?\"primary\":t.date===this.today.getDate()&&t.month===this.today.getMonth()&&t.year===this.today.getFullYear()?\"info\":\"default\"},select:function(t){this.$emit(\"date-change\",t)},goPrevMonth:function(){var t=this.month,e=this.year;this.month>0?t--:(t=11,e--,this.$emit(\"year-change\",e)),this.$emit(\"month-change\",t)},goNextMonth:function(){var t=this.month,e=this.year;this.month<11?t++:(t=0,e++,this.$emit(\"year-change\",e)),this.$emit(\"month-change\",t)},changeView:function(){this.$emit(\"view-change\",\"m\")}}},Rt={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"table\",{staticStyle:{width:\"100%\"},attrs:{role:\"grid\"}},[n(\"thead\",[n(\"tr\",[n(\"td\",[n(\"btn\",{staticStyle:{border:\"none\"},attrs:{block:\"\",size:\"sm\"},on:{click:t.goPrevMonth}},[n(\"i\",{class:t.iconControlLeft})])],1),t._v(\" \"),n(\"td\",{attrs:{colspan:t.weekNumbers?6:5}},[n(\"btn\",{staticStyle:{border:\"none\"},attrs:{block:\"\",size:\"sm\"},on:{click:t.changeView}},[n(\"b\",[t._v(t._s(t.yearMonthStr))])])],1),t._v(\" \"),n(\"td\",[n(\"btn\",{staticStyle:{border:\"none\"},attrs:{block:\"\",size:\"sm\"},on:{click:t.goNextMonth}},[n(\"i\",{class:t.iconControlRight})])],1)]),t._v(\" \"),n(\"tr\",{attrs:{align:\"center\"}},[t.weekNumbers?n(\"td\"):t._e(),t._v(\" \"),t._l(t.weekDays,function(e){return n(\"td\",{attrs:{width:\"14.2857142857%\"}},[n(\"small\",[t._v(t._s(t.tWeekName(0===e?7:e)))])])})],2)]),t._v(\" \"),n(\"tbody\",t._l(t.monthDayRows,function(e){return n(\"tr\",[t.weekNumbers?n(\"td\",{staticClass:\"text-center\",staticStyle:{\"border-right\":\"1px solid #eee\"}},[n(\"small\",{staticClass:\"text-muted\"},[t._v(t._s(t.getWeekNumber(e[t.weekStartsWith])))])]):t._e(),t._v(\" \"),t._l(e,function(e){return n(\"td\",[n(\"btn\",{class:e.classes,staticStyle:{border:\"none\"},attrs:{block:\"\",size:\"sm\",\"data-action\":\"select\",type:t.getBtnType(e),disabled:e.disabled},on:{click:function(n){t.select(e)}}},[n(\"span\",{class:{\"text-muted\":t.month!==e.month},attrs:{\"data-action\":\"select\"}},[t._v(t._s(e.date))])])],1)})],2)}))])},staticRenderFns:[]},At=n(0)(Ft,Rt,!1,null,null,null).exports,Lt={components:{Btn:kt},mixins:[yt],props:{month:Number,year:Number,iconControlLeft:String,iconControlRight:String},data:function(){return{rows:[]}},mounted:function(){for(var t=0;t<4;t++){this.rows.push([]);for(var e=0;e<3;e++)this.rows[t].push(3*t+e+1)}},methods:{tCell:function(t){return this.t(\"uiv.datePicker.month\"+t)},getBtnClass:function(t){return t===this.month?\"primary\":\"default\"},goPrevYear:function(){this.$emit(\"year-change\",this.year-1)},goNextYear:function(){this.$emit(\"year-change\",this.year+1)},changeView:function(t){i(t)?(this.$emit(\"month-change\",t),this.$emit(\"view-change\",\"d\")):this.$emit(\"view-change\",\"y\")}}},zt={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"table\",{staticStyle:{width:\"100%\"},attrs:{role:\"grid\"}},[n(\"thead\",[n(\"tr\",[n(\"td\",[n(\"btn\",{staticStyle:{border:\"none\"},attrs:{block:\"\",size:\"sm\"},on:{click:t.goPrevYear}},[n(\"i\",{class:t.iconControlLeft})])],1),t._v(\" \"),n(\"td\",{attrs:{colspan:\"4\"}},[n(\"btn\",{staticStyle:{border:\"none\"},attrs:{block:\"\",size:\"sm\"},on:{click:function(e){t.changeView()}}},[n(\"b\",[t._v(t._s(t.year))])])],1),t._v(\" \"),n(\"td\",[n(\"btn\",{staticStyle:{border:\"none\"},attrs:{block:\"\",size:\"sm\"},on:{click:t.goNextYear}},[n(\"i\",{class:t.iconControlRight})])],1)])]),t._v(\" \"),n(\"tbody\",t._l(t.rows,function(e,i){return n(\"tr\",t._l(e,function(e,o){return n(\"td\",{attrs:{colspan:\"2\",width:\"33.333333%\"}},[n(\"btn\",{staticStyle:{border:\"none\"},attrs:{block:\"\",size:\"sm\",type:t.getBtnClass(3*i+o)},on:{click:function(e){t.changeView(3*i+o)}}},[n(\"span\",[t._v(t._s(t.tCell(e)))])])],1)}))}))])},staticRenderFns:[]},jt=n(0)(Lt,zt,!1,null,null,null).exports,Ht={components:{Btn:kt},props:{year:Number,iconControlLeft:String,iconControlRight:String},computed:{rows:function(){for(var t=[],e=this.year-this.year%20,n=0;n<4;n++){t.push([]);for(var i=0;i<5;i++)t[n].push(e+5*n+i)}return t},yearStr:function(){var t=this.year-this.year%20;return t+\" ~ \"+(t+19)}},methods:{getBtnClass:function(t){return t===this.year?\"primary\":\"default\"},goPrevYear:function(){this.$emit(\"year-change\",this.year-20)},goNextYear:function(){this.$emit(\"year-change\",this.year+20)},changeView:function(t){this.$emit(\"year-change\",t),this.$emit(\"view-change\",\"m\")}}},Vt={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"table\",{staticStyle:{width:\"100%\"},attrs:{role:\"grid\"}},[n(\"thead\",[n(\"tr\",[n(\"td\",[n(\"btn\",{staticStyle:{border:\"none\"},attrs:{block:\"\",size:\"sm\"},on:{click:t.goPrevYear}},[n(\"i\",{class:t.iconControlLeft})])],1),t._v(\" \"),n(\"td\",{attrs:{colspan:\"3\"}},[n(\"btn\",{staticStyle:{border:\"none\"},attrs:{block:\"\",size:\"sm\"}},[n(\"b\",[t._v(t._s(t.yearStr))])])],1),t._v(\" \"),n(\"td\",[n(\"btn\",{staticStyle:{border:\"none\"},attrs:{block:\"\",size:\"sm\"},on:{click:t.goNextYear}},[n(\"i\",{class:t.iconControlRight})])],1)])]),t._v(\" \"),n(\"tbody\",t._l(t.rows,function(e){return n(\"tr\",t._l(e,function(e){return n(\"td\",{attrs:{width:\"20%\"}},[n(\"btn\",{staticStyle:{border:\"none\"},attrs:{block:\"\",size:\"sm\",type:t.getBtnClass(e)},on:{click:function(n){t.changeView(e)}}},[n(\"span\",[t._v(t._s(e))])])],1)}))}))])},staticRenderFns:[]},Yt={mixins:[yt],components:{DateView:At,MonthView:jt,YearView:n(0)(Ht,Vt,!1,null,null,null).exports,Btn:kt},props:{value:null,width:{type:Number,default:270},todayBtn:{type:Boolean,default:!0},clearBtn:{type:Boolean,default:!0},closeOnSelected:{type:Boolean,default:!0},limitFrom:null,limitTo:null,format:{type:String,default:\"yyyy-MM-dd\"},initialView:{type:String,default:\"d\"},dateParser:{type:Function,default:Date.parse},dateClass:Function,yearMonthFormatter:Function,weekStartsWith:{type:Number,default:0,validator:function(t){return t>=0&&t<=6}},weekNumbers:Boolean,iconControlLeft:{type:String,default:\"glyphicon glyphicon-chevron-left\"},iconControlRight:{type:String,default:\"glyphicon glyphicon-chevron-right\"}},data:function(){return{show:!1,now:new Date,currentMonth:0,currentYear:0,view:\"d\"}},computed:{valueDateObj:function(){var t=this.dateParser(this.value);if(isNaN(t))return null;var e=new Date(t);return 0!==e.getHours()&&(e=new Date(t+60*e.getTimezoneOffset()*1e3)),e},pickerStyle:function(){return{width:this.width+\"px\"}},limit:function(){var t={};if(this.limitFrom){var e=this.dateParser(this.limitFrom);isNaN(e)||((e=E(new Date(e))).setHours(0,0,0,0),t.from=e)}if(this.limitTo){var n=this.dateParser(this.limitTo);isNaN(n)||((n=E(new Date(n))).setHours(0,0,0,0),t.to=n)}return t}},mounted:function(){this.value?this.setMonthAndYearByValue(this.value):(this.currentMonth=this.now.getMonth(),this.currentYear=this.now.getFullYear(),this.view=this.initialView)},watch:{value:function(t,e){this.setMonthAndYearByValue(t,e)}},methods:{setMonthAndYearByValue:function(t,e){var n=this.dateParser(t);if(!isNaN(n)){var i=new Date(n);0!==i.getHours()&&(i=new Date(n+60*i.getTimezoneOffset()*1e3)),this.limit&&(this.limit.from&&i<this.limit.from||this.limit.to&&i>=this.limit.to)?this.$emit(\"input\",e||\"\"):(this.currentMonth=i.getMonth(),this.currentYear=i.getFullYear())}},onMonthChange:function(t){this.currentMonth=t},onYearChange:function(t){this.currentYear=t,this.currentMonth=void 0},onDateChange:function(t){if(t&&r(t.date)&&r(t.month)&&r(t.year)){var e=new Date(t.year,t.month,t.date);this.$emit(\"input\",function(t,e){try{var n=t.getFullYear(),i=t.getMonth()+1,o=t.getDate(),r=Nt[i-1];return e.replace(/yyyy/g,n).replace(/MMMM/g,r).replace(/MMM/g,r.substring(0,3)).replace(/MM/g,S(i,2)).replace(/dd/g,S(o,2)).replace(/yy/g,n).replace(/M(?!a)/g,i).replace(/d/g,o)}catch(t){return\"\"}}(e,this.format))}else this.$emit(\"input\",\"\")},onViewChange:function(t){this.view=t},selectToday:function(){this.view=\"d\",this.onDateChange({date:this.now.getDate(),month:this.now.getMonth(),year:this.now.getFullYear()})},clearSelect:function(){this.currentMonth=this.now.getMonth(),this.currentYear=this.now.getFullYear(),this.view=this.initialView,this.onDateChange()},onPickerClick:function(t){\"select\"===t.target.getAttribute(\"data-action\")&&this.closeOnSelected||t.stopPropagation()}}},qt={render:function(){var t=this.$createElement,e=this._self._c||t;return e(\"div\",{style:this.pickerStyle,attrs:{\"data-role\":\"date-picker\"},on:{click:this.onPickerClick}},[e(\"date-view\",{directives:[{name:\"show\",rawName:\"v-show\",value:\"d\"===this.view,expression:\"view==='d'\"}],attrs:{month:this.currentMonth,year:this.currentYear,date:this.valueDateObj,today:this.now,limit:this.limit,\"week-starts-with\":this.weekStartsWith,\"icon-control-left\":this.iconControlLeft,\"icon-control-right\":this.iconControlRight,\"date-class\":this.dateClass,\"year-month-formatter\":this.yearMonthFormatter,\"week-numbers\":this.weekNumbers,locale:this.locale},on:{\"month-change\":this.onMonthChange,\"year-change\":this.onYearChange,\"date-change\":this.onDateChange,\"view-change\":this.onViewChange}}),this._v(\" \"),e(\"month-view\",{directives:[{name:\"show\",rawName:\"v-show\",value:\"m\"===this.view,expression:\"view==='m'\"}],attrs:{month:this.currentMonth,year:this.currentYear,\"icon-control-left\":this.iconControlLeft,\"icon-control-right\":this.iconControlRight,locale:this.locale},on:{\"month-change\":this.onMonthChange,\"year-change\":this.onYearChange,\"view-change\":this.onViewChange}}),this._v(\" \"),e(\"year-view\",{directives:[{name:\"show\",rawName:\"v-show\",value:\"y\"===this.view,expression:\"view==='y'\"}],attrs:{year:this.currentYear,\"icon-control-left\":this.iconControlLeft,\"icon-control-right\":this.iconControlRight},on:{\"year-change\":this.onYearChange,\"view-change\":this.onViewChange}}),this._v(\" \"),this.todayBtn||this.clearBtn?e(\"div\",[e(\"br\"),this._v(\" \"),e(\"div\",{staticClass:\"text-center\"},[this.todayBtn?e(\"btn\",{attrs:{\"data-action\":\"select\",type:\"info\",size:\"sm\"},domProps:{textContent:this._s(this.t(\"uiv.datePicker.today\"))},on:{click:this.selectToday}}):this._e(),this._v(\" \"),this.clearBtn?e(\"btn\",{attrs:{\"data-action\":\"select\",size:\"sm\"},domProps:{textContent:this._s(this.t(\"uiv.datePicker.clear\"))},on:{click:this.clearSelect}}):this._e()],1)]):this._e()],1)},staticRenderFns:[]},Kt=n(0)(Yt,qt,!1,null,null,null).exports,Wt=\"_uiv_scroll_handler\",Ut=[K,W],Gt=function(t,e){var n=e.value;o(n)&&(Xt(t),t[Wt]=n,Ut.forEach(function(e){f(window,e,t[Wt])}))},Xt=function(t){Ut.forEach(function(e){p(window,e,t[Wt])}),delete t[Wt]},Jt={directives:{scroll:{bind:Gt,unbind:Xt,update:function(t,e){e.value!==e.oldValue&&Gt(t,e)}}},props:{offset:{type:Number,default:0}},data:function(){return{affixed:!1}},computed:{classes:function(){return{affix:this.affixed}},styles:function(){return{top:this.affixed?this.offset+\"px\":null}}},methods:{onScroll:function(){var t=this;if(this.$el.offsetWidth||this.$el.offsetHeight||this.$el.getClientRects().length){for(var e={},n={},i=this.$el.getBoundingClientRect(),o=document.body,r=[\"Top\",\"Left\"],s=0;s<r.length;s++){var a=r[s],l=a.toLowerCase();e[l]=window[\"page\"+(\"Top\"===a?\"Y\":\"X\")+\"Offset\"],n[l]=e[l]+i[l]-(this.$el[\"client\"+a]||o[\"client\"+a]||0)}var u=e.top>n.top-this.offset;this.affixed!==u&&(this.affixed=u,this.affixed&&(this.$emit(\"affix\"),this.$nextTick(function(){t.$emit(\"affixed\")})))}}}},Qt={render:function(){var t=this.$createElement,e=this._self._c||t;return e(\"div\",{staticClass:\"hidden-print\"},[e(\"div\",{directives:[{name:\"scroll\",rawName:\"v-scroll\",value:this.onScroll,expression:\"onScroll\"}],class:this.classes,style:this.styles},[this._t(\"default\")],2)])},staticRenderFns:[]},Zt=n(0)(Jt,Qt,!1,null,null,null).exports,te={props:{dismissible:{type:Boolean,default:!1},duration:{type:Number,default:0},type:{type:String,default:\"info\"}},data:function(){return{timeout:0}},computed:{alertClass:function(){var t;return t={alert:!0},ct()(t,\"alert-\"+this.type,Boolean(this.type)),ct()(t,\"alert-dismissible\",this.dismissible),t}},methods:{closeAlert:function(){clearTimeout(this.timeout),this.$emit(\"dismissed\")}},mounted:function(){this.duration>0&&(this.timeout=setTimeout(this.closeAlert,this.duration))},destroyed:function(){clearTimeout(this.timeout)}},ee={render:function(){var t=this.$createElement,e=this._self._c||t;return e(\"div\",{class:this.alertClass,attrs:{role:\"alert\"}},[this.dismissible?e(\"button\",{staticClass:\"close\",attrs:{type:\"button\",\"aria-label\":\"Close\"},on:{click:this.closeAlert}},[e(\"span\",{attrs:{\"aria-hidden\":\"true\"}},[this._v(\"×\")])]):this._e(),this._v(\" \"),this._t(\"default\")],2)},staticRenderFns:[]},ne=n(0)(te,ee,!1,null,null,null).exports,ie={props:{value:{type:Number,required:!0,validator:function(t){return t>=1}},boundaryLinks:{type:Boolean,default:!1},directionLinks:{type:Boolean,default:!0},size:String,align:String,totalPage:{type:Number,required:!0,validator:function(t){return t>=0}},maxSize:{type:Number,default:5,validator:function(t){return t>=0}},disabled:Boolean},data:function(){return{sliceStart:0}},computed:{navClasses:function(){return ct()({},\"text-\"+this.align,Boolean(this.align))},classes:function(){return ct()({},\"pagination-\"+this.size,Boolean(this.size))},sliceArray:function(){return function(t){for(var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:1,i=[],o=e;o<t;o+=n)i.push(o);return i}(this.totalPage).slice(this.sliceStart,this.sliceStart+this.maxSize)}},methods:{calculateSliceStart:function(){var t=this.value,e=this.maxSize,n=this.sliceStart;if(t>n+e){var i=this.totalPage-e;this.sliceStart=t>i?i:t-1}else t<n+1&&(this.sliceStart=t>e?t-e:0)},onPageChange:function(t){!this.disabled&&t>0&&t<=this.totalPage&&t!==this.value&&(this.$emit(\"input\",t),this.$emit(\"change\",t))},toPage:function(t){if(!this.disabled){var e=this.maxSize,n=this.sliceStart,i=this.totalPage-e,o=t?n-e:n+e;this.sliceStart=o<0?0:o>i?i:o}}},created:function(){this.$watch(function(t){return[t.value,t.maxSize,t.totalPage].join()},this.calculateSliceStart,{immediate:!0})}},oe={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"nav\",{class:t.navClasses,attrs:{\"aria-label\":\"Page navigation\"}},[n(\"ul\",{staticClass:\"pagination\",class:t.classes},[t.boundaryLinks?n(\"li\",{class:{disabled:t.value<=1||t.disabled}},[n(\"a\",{attrs:{href:\"#\",role:\"button\",\"aria-label\":\"First\"},on:{click:function(e){e.preventDefault(),t.onPageChange(1)}}},[n(\"span\",{attrs:{\"aria-hidden\":\"true\"}},[t._v(\"«\")])])]):t._e(),t._v(\" \"),t.directionLinks?n(\"li\",{class:{disabled:t.value<=1||t.disabled}},[n(\"a\",{attrs:{href:\"#\",role:\"button\",\"aria-label\":\"Previous\"},on:{click:function(e){e.preventDefault(),t.onPageChange(t.value-1)}}},[n(\"span\",{attrs:{\"aria-hidden\":\"true\"}},[t._v(\"‹\")])])]):t._e(),t._v(\" \"),t.sliceStart>0?n(\"li\",{class:{disabled:t.disabled}},[n(\"a\",{attrs:{href:\"#\",role:\"button\",\"aria-label\":\"Previous group\"},on:{click:function(e){e.preventDefault(),t.toPage(1)}}},[n(\"span\",{attrs:{\"aria-hidden\":\"true\"}},[t._v(\"…\")])])]):t._e(),t._v(\" \"),t._l(t.sliceArray,function(e){return n(\"li\",{key:e,class:{active:t.value===e+1,disabled:t.disabled}},[n(\"a\",{attrs:{href:\"#\",role:\"button\"},on:{click:function(n){n.preventDefault(),t.onPageChange(e+1)}}},[t._v(t._s(e+1))])])}),t._v(\" \"),t.sliceStart<t.totalPage-t.maxSize?n(\"li\",{class:{disabled:t.disabled}},[n(\"a\",{attrs:{href:\"#\",role:\"button\",\"aria-label\":\"Next group\"},on:{click:function(e){e.preventDefault(),t.toPage(0)}}},[n(\"span\",{attrs:{\"aria-hidden\":\"true\"}},[t._v(\"…\")])])]):t._e(),t._v(\" \"),t.directionLinks?n(\"li\",{class:{disabled:t.value>=t.totalPage||t.disabled}},[n(\"a\",{attrs:{href:\"#\",role:\"button\",\"aria-label\":\"Next\"},on:{click:function(e){e.preventDefault(),t.onPageChange(t.value+1)}}},[n(\"span\",{attrs:{\"aria-hidden\":\"true\"}},[t._v(\"›\")])])]):t._e(),t._v(\" \"),t.boundaryLinks?n(\"li\",{class:{disabled:t.value>=t.totalPage||t.disabled}},[n(\"a\",{attrs:{href:\"#\",role:\"button\",\"aria-label\":\"Last\"},on:{click:function(e){e.preventDefault(),t.onPageChange(t.totalPage)}}},[n(\"span\",{attrs:{\"aria-hidden\":\"true\"}},[t._v(\"»\")])])]):t._e()],2)])},staticRenderFns:[]},re=n(0)(ie,oe,!1,null,null,null).exports,se={props:{value:{type:Boolean,default:!1},tag:{type:String,default:\"span\"},placement:{type:String,default:tt.TOP},autoPlacement:{type:Boolean,default:!0},appendTo:{type:String,default:\"body\"},transitionDuration:{type:Number,default:150},enable:{type:Boolean,default:!0},enterable:{type:Boolean,default:!0},target:null},data:function(){return{triggerEl:null,timeoutId:0}},watch:{value:function(t){t?this.show():this.hide()},trigger:function(){this.clearListeners(),this.initListeners()},target:function(t){this.clearListeners(),this.initTriggerElByTarget(t),this.initListeners()},allContent:function(t){var e=this;this.isNotEmpty()?this.$nextTick(function(){e.isShown()&&e.resetPosition()}):this.hide()},enable:function(t){t||this.hide()}},mounted:function(){var t=this;g(),m(this.$refs.popup),this.$nextTick(function(){t.initTriggerElByTarget(t.target),t.initListeners(),t.value&&t.show()})},beforeDestroy:function(){this.clearListeners(),m(this.$refs.popup)},methods:{initTriggerElByTarget:function(t){if(t)s(t)?this.triggerEl=document.querySelector(t):v(t)?this.triggerEl=t:v(t.$el)&&(this.triggerEl=t.$el);else{var e=this.$el.querySelector('[data-role=\"trigger\"]');if(e)this.triggerEl=e;else{var n=this.$el.firstChild;this.triggerEl=n===this.$refs.popup?null:n}}},initListeners:function(){this.triggerEl&&(this.trigger===X?(f(this.triggerEl,A,this.show),f(this.triggerEl,L,this.hide)):this.trigger===J?(f(this.triggerEl,z,this.show),f(this.triggerEl,j,this.hide)):this.trigger===Q?(f(this.triggerEl,A,this.handleAuto),f(this.triggerEl,L,this.handleAuto),f(this.triggerEl,z,this.handleAuto),f(this.triggerEl,j,this.handleAuto)):this.trigger!==G&&this.trigger!==Z||f(this.triggerEl,H,this.toggle)),f(window,H,this.windowClicked)},clearListeners:function(){this.triggerEl&&(p(this.triggerEl,z,this.show),p(this.triggerEl,j,this.hide),p(this.triggerEl,A,this.show),p(this.triggerEl,L,this.hide),p(this.triggerEl,H,this.toggle),p(this.triggerEl,A,this.handleAuto),p(this.triggerEl,L,this.handleAuto),p(this.triggerEl,z,this.handleAuto),p(this.triggerEl,j,this.handleAuto)),p(window,H,this.windowClicked)},resetPosition:function(){var t=this.$refs.popup;!function(t,e,n,o,r){var s=void 0,a=void 0,l=void 0;if(i(r)&&\"body\"!==r)l=(s=document.querySelector(r)).scrollLeft,a=s.scrollTop;else{s=document.body;var u=document.documentElement;l=(window.pageXOffset||u.scrollLeft)-(u.clientLeft||0),a=(window.pageYOffset||u.scrollTop)-(u.clientTop||0)}if(o){var c=[tt.RIGHT,tt.BOTTOM,tt.LEFT,tt.TOP],h=function(e){c.forEach(function(e){b(t,e)}),y(t,e)};if(!w(e,t,n)){for(var d=0,f=c.length;d<f;d++)if(h(c[d]),w(e,t,c[d])){n=c[d];break}h(n)}}var p=e.getBoundingClientRect(),v=t.getBoundingClientRect();n===tt.BOTTOM?(t.style.top=a+p.top+p.height+\"px\",t.style.left=l+p.left+p.width/2-v.width/2+\"px\"):n===tt.LEFT?(t.style.top=a+p.top+p.height/2-v.height/2+\"px\",t.style.left=l+p.left-v.width+\"px\"):n===tt.RIGHT?(t.style.top=a+p.top+p.height/2-v.height/2+\"px\",t.style.left=l+p.left+p.width+\"px\"):(t.style.top=a+p.top-v.height+\"px\",t.style.left=l+p.left+p.width/2-v.width/2+\"px\")}(t,this.triggerEl,this.placement,this.autoPlacement,this.appendTo),t.offsetHeight},hideOnLeave:function(){(this.trigger===X||this.trigger===Q&&!this.triggerEl.matches(\":focus\"))&&this.$hide()},toggle:function(){this.isShown()?this.hide():this.show()},show:function(){if(this.enable&&this.triggerEl&&this.isNotEmpty()&&!this.isShown()){var t=this.$refs.popup;if(this.timeoutId>0)clearTimeout(this.timeoutId),this.timeoutId=0;else{t.className=this.name+\" \"+this.placement+\" fade\";document.querySelector(this.appendTo).appendChild(t),this.resetPosition()}y(t,\"in\"),this.$emit(\"input\",!0),this.$emit(\"show\")}},hide:function(){var t=this;this.isShown()&&(!this.enterable||this.trigger!==X&&this.trigger!==Q?this.$hide():setTimeout(function(){t.$refs.popup.matches(\":hover\")||t.$hide()},100))},$hide:function(){var t=this;this.isShown()&&(clearTimeout(this.timeoutId),b(this.$refs.popup,\"in\"),this.timeoutId=setTimeout(function(){m(t.$refs.popup),t.timeoutId=0,t.$emit(\"input\",!1),t.$emit(\"hide\")},this.transitionDuration))},isShown:function(){return function(t,e){if(!v(t))return!1;for(var n=t.className.split(\" \"),i=0,o=n.length;i<o;i++)if(n[i]===e)return!0;return!1}(this.$refs.popup,\"in\")},windowClicked:function(t){this.triggerEl&&!this.triggerEl.contains(t.target)&&this.trigger===Z&&!this.$refs.popup.contains(t.target)&&this.isShown()&&this.hide()},handleAuto:function(){var t=this;setTimeout(function(){t.triggerEl.matches(\":hover, :focus\")?t.show():t.hide()},20)}}},ae={mixins:[se],data:function(){return{name:\"tooltip\"}},render:function(t){return t(this.tag,[this.$slots.default,t(\"div\",{ref:\"popup\",attrs:{role:\"tooltip\"},on:{mouseleave:this.hideOnLeave}},[t(\"div\",{class:\"tooltip-arrow\"}),t(\"div\",{class:\"tooltip-inner\",domProps:{innerHTML:this.text}})])])},props:{text:{type:String,default:\"\"},trigger:{type:String,default:Q}},computed:{allContent:function(){return this.text}},methods:{isNotEmpty:function(){return this.text}}},le=n(0)(ae,null,!1,null,null,null).exports,ue={mixins:[se],data:function(){return{name:\"popover\"}},render:function(t){return t(this.tag,[this.$slots.default,t(\"div\",{style:{display:\"block\"},ref:\"popup\",on:{mouseleave:this.hideOnLeave}},[t(\"div\",{class:\"arrow\"}),t(\"h3\",{class:\"popover-title\",directives:[{name:\"show\",value:this.title}]},this.title),t(\"div\",{class:\"popover-content\"},[this.content||this.$slots.popover])])])},props:{title:{type:String,default:\"\"},content:{type:String,default:\"\"},trigger:{type:String,default:Z}},computed:{allContent:function(){return this.title+this.content}},methods:{isNotEmpty:function(){return this.title||this.content||this.$slots.popover}}},ce=n(0)(ue,null,!1,null,null,null).exports,he={components:{Btn:kt},mixins:[yt],props:{value:{type:Date,required:!0},showMeridian:{type:Boolean,default:!0},min:Date,max:Date,hourStep:{type:Number,default:1},minStep:{type:Number,default:1},readonly:{type:Boolean,default:!1},controls:{type:Boolean,default:!0},iconControlUp:{type:String,default:\"glyphicon glyphicon-chevron-up\"},iconControlDown:{type:String,default:\"glyphicon glyphicon-chevron-down\"}},data:function(){return{hours:0,minutes:0,meridian:!0,hoursText:\"\",minutesText:\"\"}},mounted:function(){this.updateByValue(this.value)},watch:{value:function(t){this.updateByValue(t)},showMeridian:function(t){this.setTime()},hoursText:function(t){if(0!==this.hours||\"\"!==t){var e=parseInt(t);this.showMeridian?e>=1&&e<=12&&(this.meridian?this.hours=12===e?0:e:this.hours=12===e?12:e+12):e>=0&&e<=23&&(this.hours=e),this.setTime()}},minutesText:function(t){if(0!==this.minutes||\"\"!==t){var e=parseInt(t);e>=0&&e<=59&&(this.minutes=e),this.setTime()}}},methods:{updateByValue:function(t){if(isNaN(t.getTime()))return this.hours=0,this.minutes=0,this.hoursText=\"\",this.minutesText=\"\",void(this.meridian=!0);this.hours=t.getHours(),this.minutes=t.getMinutes(),this.showMeridian?this.hours>=12?(12===this.hours?this.hoursText=this.hours+\"\":this.hoursText=S(this.hours-12,2),this.meridian=!1):(0===this.hours?this.hoursText=12..toString():this.hoursText=S(this.hours,2),this.meridian=!0):this.hoursText=S(this.hours,2),this.minutesText=S(this.minutes,2),this.$refs.hoursInput.value=this.hoursText,this.$refs.minutesInput.value=this.minutesText},addHour:function(t){t=t||this.hourStep,this.hours=this.hours>=23?0:this.hours+t},reduceHour:function(t){t=t||this.hourStep,this.hours=this.hours<=0?23:this.hours-t},addMinute:function(){this.minutes>=59?(this.minutes=0,this.addHour(1)):this.minutes+=this.minStep},reduceMinute:function(){this.minutes<=0?(this.minutes=60-this.minStep,this.reduceHour(1)):this.minutes-=this.minStep},changeTime:function(t,e){this.readonly||(t&&e?this.addHour():t&&!e?this.reduceHour():!t&&e?this.addMinute():this.reduceMinute(),this.setTime())},toggleMeridian:function(){this.meridian=!this.meridian,this.meridian?this.hours-=12:this.hours+=12,this.setTime()},onWheel:function(t,e){this.readonly||(t.preventDefault(),this.changeTime(e,t.deltaY<0))},setTime:function(){var t=this.value;if(isNaN(t.getTime())&&((t=new Date).setHours(0),t.setMinutes(0)),t.setHours(this.hours),t.setMinutes(this.minutes),this.max){var e=new Date(t);e.setHours(this.max.getHours()),e.setMinutes(this.max.getMinutes()),t=t>e?e:t}if(this.min){var n=new Date(t);n.setHours(this.min.getHours()),n.setMinutes(this.min.getMinutes()),t=t<n?n:t}this.$emit(\"input\",new Date(t))},selectInputValue:function(t){t.target.setSelectionRange(0,2)}}},de={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"section\",{on:{click:function(t){t.stopPropagation()}}},[n(\"table\",[n(\"tbody\",[t.controls?n(\"tr\",{staticClass:\"text-center\"},[n(\"td\",[n(\"btn\",{attrs:{type:\"link\",size:\"sm\",disabled:t.readonly},on:{click:function(e){t.changeTime(1,1)}}},[n(\"i\",{class:t.iconControlUp})])],1),t._v(\" \"),n(\"td\",[t._v(\" \")]),t._v(\" \"),n(\"td\",[n(\"btn\",{attrs:{type:\"link\",size:\"sm\",disabled:t.readonly},on:{click:function(e){t.changeTime(0,1)}}},[n(\"i\",{class:t.iconControlUp})])],1),t._v(\" \"),t.showMeridian?n(\"td\"):t._e()]):t._e(),t._v(\" \"),n(\"tr\",[n(\"td\",{staticClass:\"form-group\"},[n(\"input\",{directives:[{name:\"model\",rawName:\"v-model.lazy\",value:t.hoursText,expression:\"hoursText\",modifiers:{lazy:!0}}],ref:\"hoursInput\",staticClass:\"form-control text-center\",staticStyle:{width:\"50px\"},attrs:{type:\"tel\",pattern:\"\\\\d*\",placeholder:\"HH\",readonly:t.readonly,maxlength:\"2\",size:\"2\"},domProps:{value:t.hoursText},on:{mouseup:t.selectInputValue,keydown:[function(e){if(!(\"button\"in e)&&t._k(e.keyCode,\"up\",38,e.key))return null;e.preventDefault(),t.changeTime(1,1)},function(e){if(!(\"button\"in e)&&t._k(e.keyCode,\"down\",40,e.key))return null;e.preventDefault(),t.changeTime(1,0)}],wheel:function(e){t.onWheel(e,!0)},change:function(e){t.hoursText=e.target.value}}})]),t._v(\" \"),t._m(0),t._v(\" \"),n(\"td\",{staticClass:\"form-group\"},[n(\"input\",{directives:[{name:\"model\",rawName:\"v-model.lazy\",value:t.minutesText,expression:\"minutesText\",modifiers:{lazy:!0}}],ref:\"minutesInput\",staticClass:\"form-control text-center\",staticStyle:{width:\"50px\"},attrs:{type:\"tel\",pattern:\"\\\\d*\",placeholder:\"MM\",readonly:t.readonly,maxlength:\"2\",size:\"2\"},domProps:{value:t.minutesText},on:{mouseup:t.selectInputValue,keydown:[function(e){if(!(\"button\"in e)&&t._k(e.keyCode,\"up\",38,e.key))return null;e.preventDefault(),t.changeTime(0,1)},function(e){if(!(\"button\"in e)&&t._k(e.keyCode,\"down\",40,e.key))return null;e.preventDefault(),t.changeTime(0,0)}],wheel:function(e){t.onWheel(e,!1)},change:function(e){t.minutesText=e.target.value}}})]),t._v(\" \"),t.showMeridian?n(\"td\",[t._v(\"\\n \\n \"),n(\"btn\",{attrs:{\"data-action\":\"toggleMeridian\",disabled:t.readonly},domProps:{textContent:t._s(t.meridian?t.t(\"uiv.timePicker.am\"):t.t(\"uiv.timePicker.pm\"))},on:{click:t.toggleMeridian}})],1):t._e()]),t._v(\" \"),t.controls?n(\"tr\",{staticClass:\"text-center\"},[n(\"td\",[n(\"btn\",{attrs:{type:\"link\",size:\"sm\",disabled:t.readonly},on:{click:function(e){t.changeTime(1,0)}}},[n(\"i\",{class:t.iconControlDown})])],1),t._v(\" \"),n(\"td\",[t._v(\" \")]),t._v(\" \"),n(\"td\",[n(\"btn\",{attrs:{type:\"link\",size:\"sm\",disabled:t.readonly},on:{click:function(e){t.changeTime(0,0)}}},[n(\"i\",{class:t.iconControlDown})])],1),t._v(\" \"),t.showMeridian?n(\"td\"):t._e()]):t._e()])])])},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e(\"td\",[this._v(\" \"),e(\"b\",[this._v(\":\")]),this._v(\" \")])}]},fe=n(0)(he,de,!1,null,null,null).exports,pe={components:{Dropdown:lt},props:{value:{required:!0},data:Array,itemKey:String,appendToBody:{type:Boolean,default:!1},ignoreCase:{type:Boolean,default:!0},matchStart:{type:Boolean,default:!1},forceSelect:{type:Boolean,default:!1},forceClear:{type:Boolean,default:!1},limit:{type:Number,default:10},asyncSrc:String,asyncKey:String,asyncFunction:Function,debounce:{type:Number,default:200},openOnFocus:{type:Boolean,default:!0},openOnEmpty:{type:Boolean,default:!1},target:{required:!0},preselect:{type:Boolean,default:!0}},data:function(){return{inputEl:null,items:[],activeIndex:0,timeoutID:0,elements:[],open:!1,dropdownMenuEl:null}},computed:{regexOptions:function(){var t=\"\";return this.ignoreCase&&(t+=\"i\"),this.matchStart||(t+=\"g\"),t}},mounted:function(){var t=this;g(),this.$nextTick(function(){t.initInputElByTarget(t.target),t.initListeners(),t.dropdownMenuEl=t.$refs.dropdown.$el.querySelector(\".dropdown-menu\"),t.value&&t.setInputTextByValue(t.value)})},beforeDestroy:function(){this.removeListeners()},watch:{target:function(t){this.removeListeners(),this.initInputElByTarget(t),this.initListeners()},value:function(t){this.setInputTextByValue(t)}},methods:{setInputTextByValue:function(t){s(t)?this.inputEl.value=t:t?this.inputEl.value=this.itemKey?t[this.itemKey]:t:null===t&&(this.inputEl.value=\"\")},hasEmptySlot:function(){return!!this.$slots.empty||!!this.$scopedSlots.empty},initInputElByTarget:function(t){t&&(s(t)?this.inputEl=document.querySelector(t):v(t)?this.inputEl=t:v(t.$el)&&(this.inputEl=t.$el))},initListeners:function(){this.inputEl&&(this.elements=[this.inputEl],f(this.inputEl,z,this.inputFocused),f(this.inputEl,j,this.inputBlured),f(this.inputEl,V,this.inputChanged),f(this.inputEl,Y,this.inputKeyPressed))},removeListeners:function(){this.elements=[],this.inputEl&&(p(this.inputEl,z,this.inputFocused),p(this.inputEl,j,this.inputBlured),p(this.inputEl,V,this.inputChanged),p(this.inputEl,Y,this.inputKeyPressed))},prepareItems:function(t){if(arguments.length>1&&void 0!==arguments[1]&&arguments[1])this.items=t.slice(0,this.limit);else{this.items=[],this.activeIndex=this.preselect?0:-1;for(var e=0,n=t.length;e<n;e++){var i=t[e],o=this.itemKey?i[this.itemKey]:i;o=o.toString();var r=-1;if(r=this.ignoreCase?o.toLowerCase().indexOf(this.inputEl.value.toLowerCase()):o.indexOf(this.inputEl.value),(this.matchStart?0===r:r>=0)&&this.items.push(i),this.items.length>=this.limit)break}}},fetchItems:function(t,e){var n=this;if(clearTimeout(this.timeoutID),\"\"!==t||this.openOnEmpty){if(this.data)this.prepareItems(this.data),this.open=this.hasEmptySlot()||Boolean(this.items.length);else if(this.asyncSrc)this.timeoutID=setTimeout(function(){n.$emit(\"loading\"),function(t){var e=new window.XMLHttpRequest,n={},r={then:function(t,e){return r.done(t).fail(e)},catch:function(t){return r.fail(t)},always:function(t){return r.done(t).fail(t)}};return[\"done\",\"fail\"].forEach(function(t){n[t]=[],r[t]=function(e){return e instanceof Function&&n[t].push(e),r}}),r.done(JSON.parse),e.onreadystatechange=function(){if(4===e.readyState){var t={status:e.status};if(200===e.status){var r=e.responseText;for(var s in n.done)if(n.done.hasOwnProperty(s)&&o(n.done[s])){var a=n.done[s](r);i(a)&&(r=a)}}else n.fail.forEach(function(e){return e(t)})}},e.open(\"GET\",t),e.setRequestHeader(\"Accept\",\"application/json\"),e.send(),r}(n.asyncSrc+encodeURIComponent(t)).then(function(t){n.inputEl.matches(\":focus\")&&(n.prepareItems(n.asyncKey?t[n.asyncKey]:t,!0),n.open=n.hasEmptySlot()||Boolean(n.items.length)),n.$emit(\"loaded\")}).catch(function(t){console.error(t),n.$emit(\"loaded-error\")})},e);else if(this.asyncFunction){var r=function(t){n.inputEl.matches(\":focus\")&&(n.prepareItems(t,!0),n.open=n.hasEmptySlot()||Boolean(n.items.length)),n.$emit(\"loaded\")};this.timeoutID=setTimeout(function(){n.$emit(\"loading\"),n.asyncFunction(t,r)},e)}}else this.open=!1},inputChanged:function(){var t=this.inputEl.value;this.fetchItems(t,this.debounce),this.$emit(\"input\",this.forceSelect?void 0:t)},inputFocused:function(){if(this.openOnFocus){var t=this.inputEl.value;this.fetchItems(t,0)}},inputBlured:function(){var t=this;this.dropdownMenuEl.matches(\":hover\")||(this.open=!1),this.inputEl&&this.forceClear&&this.$nextTick(function(){void 0===t.value&&(t.inputEl.value=\"\")})},inputKeyPressed:function(t){if(this.open)switch(t.keyCode){case 13:this.activeIndex>=0?this.selectItem(this.items[this.activeIndex]):this.open=!1;break;case 27:this.open=!1;break;case 38:this.activeIndex=this.activeIndex>0?this.activeIndex-1:0;break;case 40:var e=this.items.length-1;this.activeIndex=this.activeIndex<e?this.activeIndex+1:e}},selectItem:function(t){this.$emit(\"input\",t),this.open=!1},highlight:function(t){var e=this.itemKey?t[this.itemKey]:t,n=this.inputEl.value.replace(/[-[\\]{}()*+?.,\\\\^$|#\\s]/g,\"\\\\$&\");return e.replace(new RegExp(\"\"+n,this.regexOptions),\"<b>$&</b>\")}}},ve={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"dropdown\",{ref:\"dropdown\",attrs:{tag:\"section\",\"append-to-body\":t.appendToBody,\"not-close-elements\":t.elements,\"position-element\":t.inputEl},model:{value:t.open,callback:function(e){t.open=e},expression:\"open\"}},[n(\"template\",{slot:\"dropdown\"},[t._t(\"item\",t._l(t.items,function(e,i){return n(\"li\",{class:{active:t.activeIndex===i}},[n(\"a\",{attrs:{href:\"#\"},on:{click:function(n){n.preventDefault(),t.selectItem(e)}}},[n(\"span\",{domProps:{innerHTML:t._s(t.highlight(e))}})])])}),{items:t.items,activeIndex:t.activeIndex,select:t.selectItem,highlight:t.highlight}),t._v(\" \"),t.items&&0!==t.items.length?t._e():t._t(\"empty\")],2)],2)},staticRenderFns:[]},me=n(0)(pe,ve,!1,null,null,null).exports,ge={functional:!0,render:function(t,e){var n=e.props;return t(\"div\",T(e.data,{class:ct()({\"progress-bar\":!0,\"progress-bar-striped\":n.striped,active:n.striped&&n.active},\"progress-bar-\"+n.type,Boolean(n.type)),style:{minWidth:n.minWidth?\"2em\":null,width:n.value+\"%\"},attrs:{role:\"progressbar\",\"aria-valuemin\":0,\"aria-valuenow\":n.value,\"aria-valuemax\":100}}),n.label?n.labelText?n.labelText:n.value+\"%\":null)},props:{value:{type:Number,required:!0,validator:function(t){return t>=0&&t<=100}},labelText:String,type:String,label:{type:Boolean,default:!1},minWidth:{type:Boolean,default:!1},striped:{type:Boolean,default:!1},active:{type:Boolean,default:!1}}},ye={functional:!0,render:function(t,e){var n=e.props,i=e.data,o=e.children;return t(\"div\",T(i,{class:\"progress\"}),o&&o.length?o:[t(ge,{props:n})])}},be={functional:!0,mixins:[wt],render:function(t,e){var n=e.props,i=e.data,o=e.children,r=void 0;return r=n.active?o:n.to?[t(\"router-link\",{props:{to:n.to,replace:n.replace,append:n.append,exact:n.exact}},o)]:[t(\"a\",{attrs:{href:n.href,target:n.target}},o)],t(\"li\",T(i,{class:{active:n.active}}),r)},props:{active:{type:Boolean,default:!1}}},we={functional:!0,render:function(t,e){var n=e.props,i=e.data,o=e.children,r=[];return o&&o.length?r=o:n.items&&(r=n.items.map(function(e,i){return t(be,{key:e.hasOwnProperty(\"key\")?e.key:i,props:{active:e.hasOwnProperty(\"active\")?e.active:i===n.items.length-1,href:e.href,target:e.target,to:e.to,replace:e.replace,append:e.append,exact:e.exact}},e.text)})),t(\"ol\",T(i,{class:\"breadcrumb\"}),r)},props:{items:Array}},xe={functional:!0,render:function(t,e){var n=e.children;return t(\"div\",T(e.data,{class:{\"btn-toolbar\":!0},attrs:{role:\"toolbar\"}}),n)}},_e={mixins:[yt],components:{Dropdown:lt},props:{value:{type:Array,required:!0},options:{type:Array,required:!0},labelKey:{type:String,default:\"label\"},valueKey:{type:String,default:\"value\"},limit:{type:Number,default:0},size:String,placeholder:String,split:{type:String,default:\", \"},disabled:{type:Boolean,default:!1},appendToBody:{type:Boolean,default:!1},block:{type:Boolean,default:!1},collapseSelected:{type:Boolean,default:!1},filterable:{type:Boolean,default:!1},filterAutoFocus:{type:Boolean,default:!0},filterFunction:Function,filterPlaceholder:String,selectedIcon:{type:String,default:\"glyphicon glyphicon-ok\"},itemSelectedClass:String},data:function(){return{showDropdown:!1,els:[],filterInput:\"\",currentActive:-1}},computed:{containerStyles:function(){return{width:this.block?\"100%\":\"\"}},filteredOptions:function(){var t=this;if(this.filterable&&this.filterInput){if(this.filterFunction)return this.filterFunction(this.filterInput);var e=this.filterInput.toLowerCase();return this.options.filter(function(n){return n[t.valueKey].toString().toLowerCase().indexOf(e)>=0||n[t.labelKey].toString().toLowerCase().indexOf(e)>=0})}return this.options},groupedOptions:function(){var t=this;return this.filteredOptions.map(function(t){return t.group}).filter(c).map(function(e){return{options:t.filteredOptions.filter(function(t){return t.group===e}),$group:e}})},flatternGroupedOptions:function(){if(this.groupedOptions&&this.groupedOptions.length){var t=[];return this.groupedOptions.forEach(function(e){t=t.concat(e.options)}),t}return[]},selectClasses:function(){return ct()({},\"input-\"+this.size,this.size)},selectedIconClasses:function(){var t;return t={},ct()(t,this.selectedIcon,!0),ct()(t,\"pull-right\",!0),t},selectTextClasses:function(){return{\"text-muted\":0===this.value.length}},labelValue:function(){var t=this,e=this.options.map(function(e){return e[t.valueKey]});return this.value.map(function(n){var i=e.indexOf(n);return i>=0?t.options[i][t.labelKey]:n})},selectedText:function(){if(this.value.length){var t=this.labelValue;if(this.collapseSelected){var e=t[0];return e+=t.length>1?this.split+\"+\"+(t.length-1):\"\"}return t.join(this.split)}return this.placeholder||this.t(\"uiv.multiSelect.placeholder\")}},watch:{showDropdown:function(t){var e=this;this.filterInput=\"\",this.currentActive=-1,this.$emit(\"visible-change\",t),t&&this.filterable&&this.filterAutoFocus&&this.$nextTick(function(){e.$refs.filterInput.focus()})}},mounted:function(){this.els=[this.$el]},methods:{goPrevOption:function(){this.showDropdown&&(this.currentActive>0?this.currentActive--:this.currentActive=this.flatternGroupedOptions.length-1)},goNextOption:function(){this.showDropdown&&(this.currentActive<this.flatternGroupedOptions.length-1?this.currentActive++:this.currentActive=0)},selectOption:function(){var t=this.currentActive,e=this.flatternGroupedOptions;this.showDropdown?t>=0&&t<e.length&&this.toggle(e[t]):this.showDropdown=!0},itemClasses:function(t){var e={disabled:t.disabled,active:this.currentActive===this.flatternGroupedOptions.indexOf(t)};return this.itemSelectedClass&&(e[this.itemSelectedClass]=this.isItemSelected(t)),e},isItemSelected:function(t){return this.value.indexOf(t[this.valueKey])>=0},toggle:function(t){if(!t.disabled){var e=t[this.valueKey],n=this.value.indexOf(e);if(1===this.limit){var i=n>=0?[]:[e];this.$emit(\"input\",i),this.$emit(\"change\",i)}else n>=0?(this.value.splice(n,1),this.$emit(\"change\",this.value)):0===this.limit||this.value.length<this.limit?(this.value.push(e),this.$emit(\"change\",this.value)):this.$emit(\"limit-exceed\")}}}},ke={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"dropdown\",{ref:\"dropdown\",style:t.containerStyles,attrs:{\"not-close-elements\":t.els,\"append-to-body\":t.appendToBody,disabled:t.disabled},nativeOn:{keydown:function(e){if(!(\"button\"in e)&&t._k(e.keyCode,\"esc\",27,e.key))return null;t.showDropdown=!1}},model:{value:t.showDropdown,callback:function(e){t.showDropdown=e},expression:\"showDropdown\"}},[n(\"div\",{staticClass:\"form-control dropdown-toggle clearfix\",class:t.selectClasses,attrs:{disabled:t.disabled,tabindex:\"0\"},on:{click:function(e){t.showDropdown=!0},focus:function(e){t.$emit(\"focus\",e)},blur:function(e){t.$emit(\"blur\",e)},keydown:[function(e){if(!(\"button\"in e)&&t._k(e.keyCode,\"down\",40,e.key))return null;e.preventDefault(),t.goNextOption(e)},function(e){if(!(\"button\"in e)&&t._k(e.keyCode,\"up\",38,e.key))return null;e.preventDefault(),t.goPrevOption(e)},function(e){if(!(\"button\"in e)&&t._k(e.keyCode,\"enter\",13,e.key))return null;e.preventDefault(),t.selectOption(e)}]}},[n(\"div\",{class:t.selectTextClasses,staticStyle:{display:\"inline-block\",\"vertical-align\":\"middle\"}},[t._v(t._s(t.selectedText))]),t._v(\" \"),n(\"div\",{staticClass:\"pull-right\",staticStyle:{display:\"inline-block\",\"vertical-align\":\"middle\"}},[n(\"span\",[t._v(\" \")]),t._v(\" \"),n(\"span\",{staticClass:\"caret\"})])]),t._v(\" \"),n(\"template\",{slot:\"dropdown\"},[t.filterable?n(\"li\",{staticStyle:{padding:\"4px 8px\"}},[n(\"input\",{directives:[{name:\"model\",rawName:\"v-model\",value:t.filterInput,expression:\"filterInput\"}],ref:\"filterInput\",staticClass:\"form-control input-sm\",attrs:{type:\"text\",placeholder:t.filterPlaceholder||t.t(\"uiv.multiSelect.filterPlaceholder\")},domProps:{value:t.filterInput},on:{keydown:[function(e){if(!(\"button\"in e)&&t._k(e.keyCode,\"down\",40,e.key))return null;e.preventDefault(),t.goNextOption(e)},function(e){if(!(\"button\"in e)&&t._k(e.keyCode,\"up\",38,e.key))return null;e.preventDefault(),t.goPrevOption(e)},function(e){if(!(\"button\"in e)&&t._k(e.keyCode,\"enter\",13,e.key))return null;e.preventDefault(),t.selectOption(e)}],input:function(e){e.target.composing||(t.filterInput=e.target.value)}}})]):t._e(),t._v(\" \"),t._l(t.groupedOptions,function(e){return[e.$group?n(\"li\",{staticClass:\"dropdown-header\",domProps:{textContent:t._s(e.$group)}}):t._e(),t._v(\" \"),t._l(e.options,function(e){return[n(\"li\",{class:t.itemClasses(e),on:{click:function(n){t.toggle(e)},mouseenter:function(e){t.currentActive=-1}}},[t.isItemSelected(e)?n(\"a\",{attrs:{role:\"button\"}},[n(\"b\",[t._v(t._s(e[t.labelKey]))]),t._v(\" \"),t.selectedIcon?n(\"span\",{class:t.selectedIconClasses}):t._e()]):n(\"a\",{attrs:{role:\"button\"}},[n(\"span\",[t._v(t._s(e[t.labelKey]))])])])]})]})],2)],2)},staticRenderFns:[]},Ce=n(0)(_e,ke,!1,null,null,null).exports,Te={components:{Collapse:st},props:{value:Boolean,fluid:{type:Boolean,default:!0},fixedTop:Boolean,fixedBottom:Boolean,staticTop:Boolean,inverse:Boolean},data:function(){return{show:!1}},computed:{navClasses:function(){return{navbar:!0,\"navbar-default\":!this.inverse,\"navbar-inverse\":this.inverse,\"navbar-static-top\":this.staticTop,\"navbar-fixed-bottom\":this.fixedBottom,\"navbar-fixed-top\":this.fixedTop}}},mounted:function(){this.show=!!this.value},watch:{value:function(t){this.show=t}},methods:{toggle:function(){this.show=!this.show,this.$emit(\"input\",this.show)}}},Se={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"nav\",{class:t.navClasses},[n(\"div\",{class:t.fluid?\"container-fluid\":\"container\"},[n(\"div\",{staticClass:\"navbar-header\"},[t._t(\"collapse-btn\",[n(\"button\",{staticClass:\"navbar-toggle collapsed\",attrs:{type:\"button\"},on:{click:t.toggle}},[n(\"span\",{staticClass:\"sr-only\"},[t._v(\"Toggle navigation\")]),t._v(\" \"),n(\"span\",{staticClass:\"icon-bar\"}),t._v(\" \"),n(\"span\",{staticClass:\"icon-bar\"}),t._v(\" \"),n(\"span\",{staticClass:\"icon-bar\"})])]),t._v(\" \"),t._t(\"brand\")],2),t._v(\" \"),t._t(\"default\"),t._v(\" \"),n(\"collapse\",{staticClass:\"navbar-collapse\",model:{value:t.show,callback:function(e){t.show=e},expression:\"show\"}},[t._t(\"collapse\")],2)],2)])},staticRenderFns:[]},Ee=n(0)(Te,Se,!1,null,null,null).exports,$e={functional:!0,render:function(t,e){var n=e.children,i=e.data,o=e.props;return t(\"ul\",T(i,{class:{nav:!0,\"navbar-nav\":!0,\"navbar-left\":o.left,\"navbar-right\":o.right}}),n)},props:{left:Boolean,right:Boolean}},Be={functional:!0,render:function(t,e){var n=e.children,i=e.data,o=e.props;return t(\"form\",T(i,{class:{\"navbar-form\":!0,\"navbar-left\":o.left,\"navbar-right\":o.right}}),n)},props:{left:Boolean,right:Boolean}},Oe={functional:!0,render:function(t,e){var n=e.children,i=e.data,o=e.props;return t(\"p\",T(i,{class:{\"navbar-text\":!0,\"navbar-left\":o.left,\"navbar-right\":o.right}}),n)},props:{left:Boolean,right:Boolean}},Ie=n(4),Pe=n.n(Ie),Me=\"_uiv_tooltip_instance\",De=function(t,e){Ne(t);var n=new(Pe.a.extend(le))({propsData:{target:t,appendTo:e.arg&&\"#\"+e.arg,text:e.value&&e.value.toString()}}),i=[];for(var o in e.modifiers)e.modifiers.hasOwnProperty(o)&&e.modifiers[o]&&i.push(o);i.forEach(function(t){/(top)|(left)|(right)|(bottom)/.test(t)?n.placement=t:/(hover)|(focus)|(click)/.test(t)?n.trigger=t:/unenterable/.test(t)&&(n.enterable=!1)}),n.$mount(),t[Me]=n},Ne=function(t){var e=t[Me];e&&e.$destroy(),delete t[Me]},Fe={bind:De,unbind:Ne,update:function(t,e){e.value!==e.oldValue&&De(t,e)}},Re=\"_uiv_popover_instance\",Ae=function(t,e){Le(t);var n=new(Pe.a.extend(ce))({propsData:{target:t,appendTo:e.arg&&\"#\"+e.arg,title:e.value&&e.value.title&&e.value.title.toString(),content:e.value&&e.value.content&&e.value.content.toString()}}),i=[];for(var o in e.modifiers)e.modifiers.hasOwnProperty(o)&&e.modifiers[o]&&i.push(o);i.forEach(function(t){/(top)|(left)|(right)|(bottom)/.test(t)?n.placement=t:/(hover)|(focus)|(click)/.test(t)?n.trigger=t:/unenterable/.test(t)&&(n.enterable=!1)}),n.$mount(),t[Re]=n},Le=function(t){var e=t[Re];e&&e.$destroy(),delete t[Re]},ze={bind:Ae,unbind:Le,update:function(t,e){e.value!==e.oldValue&&Ae(t,e)}};$.DEFAULTS={offset:10,callback:function(t){return 0}},$.prototype.getScrollHeight=function(){return this.scrollElement.scrollHeight||Math.max(document.body.scrollHeight,document.documentElement.scrollHeight)},$.prototype.refresh=function(){var t=this;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight();var e=u(this.el.querySelectorAll(this.selector)),n=this.scrollElement===window;e.map(function(e){var i=e.getAttribute(\"href\");if(/^#./.test(i)){var o=document.documentElement,r=(n?document:t.scrollElement).querySelector(\"[id='\"+i.slice(1)+\"']\"),s=(window.pageYOffset||o.scrollTop)-(o.clientTop||0);return[n?r.getBoundingClientRect().top+s:r.offsetTop+t.scrollElement.scrollTop,i]}return null}).filter(function(t){return t}).sort(function(t,e){return t[0]-e[0]}).forEach(function(e){t.offsets.push(e[0]),t.targets.push(e[1])})},$.prototype.process=function(){var t=this.scrollElement===window,e=(t?window.pageYOffset:this.scrollElement.scrollTop)+this.opts.offset,n=this.getScrollHeight(),i=t?d().height:this.scrollElement.getBoundingClientRect().height,o=this.opts.offset+n-i,r=this.offsets,s=this.targets,a=this.activeTarget,l=void 0;if(this.scrollHeight!==n&&this.refresh(),e>=o)return a!==(l=s[s.length-1])&&this.activate(l);if(a&&e<r[0])return this.activeTarget=null,this.clear();for(l=r.length;l--;)a!==s[l]&&e>=r[l]&&(void 0===r[l+1]||e<r[l+1])&&this.activate(s[l])},$.prototype.activate=function(t){this.activeTarget=t,this.clear();var e=this.selector+'[data-target=\"'+t+'\"],'+this.selector+'[href=\"'+t+'\"]',n=this.opts.callback;u(this.el.querySelectorAll(e)).forEach(function(t){k(t,\"li\").forEach(function(t){y(t,\"active\"),n(t)}),k(t,\".dropdown-menu\").length&&y(function(t,e){g();for(var n=void 0,i=t;i;){if((n=i.parentElement)&&n.matches(e))return n;i=n}return null}(t,\"li.dropdown\"),\"active\")})},$.prototype.clear=function(){var t=this;u(this.el.querySelectorAll(this.selector)).forEach(function(e){k(e,\".active\",t.opts.target).forEach(function(t){b(t,\"active\")})})};var je,He=\"_uiv_scrollspy_instance\",Ve=[K,W],Ye=function(t,e){Ke(t)},qe=function(t,e){var n=new $(t,e.arg,e.value);n.scrollElement&&(n.handler=function(){n.process()},Ve.forEach(function(t){f(n.scrollElement,t,n.handler)})),t[He]=n},Ke=function(t){var e=t[He];e&&e.scrollElement&&(Ve.forEach(function(t){p(e.scrollElement,t,e.handler)}),delete t[He])},We={bind:Ye,unbind:Ke,update:function(t,e){e.value!==e.oldValue&&(Ye(t),qe(t,e))},inserted:qe},Ue={ALERT:0,CONFIRM:1,PROMPT:2},Ge={mixins:[yt],components:{Modal:Et,Btn:kt},props:{backdrop:null,title:String,content:String,html:{type:Boolean,default:!1},okText:String,okType:{type:String,default:\"primary\"},cancelText:String,cancelType:{type:String,default:\"default\"},type:{type:Number,default:Ue.ALERT},size:{type:String,default:\"sm\"},cb:{type:Function,required:!0},validator:{type:Function,default:function(){return null}},customClass:null},data:function(){return{TYPES:Ue,show:!1,input:\"\",dirty:!1}},computed:{closeOnBackdropClick:function(){return i(this.backdrop)?Boolean(this.backdrop):this.type!==Ue.ALERT},inputError:function(){return this.validator(this.input)},inputNotValid:function(){return this.dirty&&this.inputError},okBtnText:function(){return this.okText||this.t(\"uiv.modal.ok\")},cancelBtnText:function(){return this.cancelText||this.t(\"uiv.modal.cancel\")}},methods:{toggle:function(t,e){this.$refs.modal.toggle(t,e)},validate:function(){this.dirty=!0,i(this.inputError)||this.toggle(!1,{value:this.input})}}},Xe={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"modal\",{ref:\"modal\",class:t.customClass,attrs:{\"auto-focus\":\"\",size:t.size,title:t.title,header:!!t.title,backdrop:t.closeOnBackdropClick,\"cancel-text\":t.cancelText,\"ok-text\":t.okText},on:{hide:t.cb},model:{value:t.show,callback:function(e){t.show=e},expression:\"show\"}},[t.html?n(\"div\",{domProps:{innerHTML:t._s(t.content)}}):n(\"p\",[t._v(t._s(t.content))]),t._v(\" \"),t.type===t.TYPES.PROMPT?n(\"div\",[n(\"div\",{staticClass:\"form-group\",class:{\"has-error\":t.inputNotValid}},[n(\"input\",{directives:[{name:\"model\",rawName:\"v-model\",value:t.input,expression:\"input\"}],ref:\"input\",staticClass:\"form-control\",attrs:{type:\"text\",required:\"\",\"data-action\":\"auto-focus\"},domProps:{value:t.input},on:{change:function(e){t.dirty=!0},keyup:function(e){if(!(\"button\"in e)&&t._k(e.keyCode,\"enter\",13,e.key))return null;t.validate(e)},input:function(e){e.target.composing||(t.input=e.target.value)}}}),t._v(\" \"),n(\"span\",{directives:[{name:\"show\",rawName:\"v-show\",value:t.inputNotValid,expression:\"inputNotValid\"}],staticClass:\"help-block\"},[t._v(t._s(t.inputError))])])]):t._e(),t._v(\" \"),t.type===t.TYPES.ALERT?n(\"template\",{slot:\"footer\"},[n(\"btn\",{attrs:{type:t.okType,\"data-action\":\"auto-focus\"},on:{click:function(e){t.toggle(!1,\"ok\")}}},[t._v(t._s(t.okBtnText))])],1):n(\"template\",{slot:\"footer\"},[n(\"btn\",{attrs:{type:t.cancelType},on:{click:function(e){t.toggle(!1,\"cancel\")}}},[t._v(t._s(t.cancelBtnText))]),t._v(\" \"),t.type===t.TYPES.CONFIRM?n(\"btn\",{attrs:{type:t.okType,\"data-action\":\"auto-focus\"},on:{click:function(e){t.toggle(!1,\"ok\")}}},[[t._v(t._s(t.okBtnText))]],2):n(\"btn\",{attrs:{type:t.okType},on:{click:t.validate}},[t._v(t._s(t.okBtnText))])],1)],2)},staticRenderFns:[]},Je=n(0)(Ge,Xe,!1,null,null,null).exports,Qe=[],Ze=function(t,e){return t===Ue.CONFIRM?\"ok\"===e:i(e)&&s(e.value)},tn=function(t,e,n){var i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null,r=arguments.length>4&&void 0!==arguments[4]?arguments[4]:null,s=this.$i18n,a=new Pe.a({extends:Je,i18n:s,propsData:dt()({type:t},e,{cb:function(e){!function(t){m(t.$el),t.$destroy(),l(Qe,t)}(a),o(n)?t===Ue.CONFIRM?Ze(t,e)?n(null,e):n(e):t===Ue.PROMPT&&Ze(t,e)?n(null,e.value):n(e):i&&r&&(t===Ue.CONFIRM?Ze(t,e)?i(e):r(e):t===Ue.PROMPT?Ze(t,e)?i(e.value):r(e):i(e))}})});a.$mount(),document.body.appendChild(a.$el),a.show=!0,Qe.push(a)},en=function(t){var e=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},i=arguments[2];if(a())return new Promise(function(o,r){tn.apply(e,[t,n,i,o,r])});tn.apply(this,[t,n,i])},nn={alert:function(t,e){return en.apply(this,[Ue.ALERT,t,e])},confirm:function(t,e){return en.apply(this,[Ue.CONFIRM,t,e])},prompt:function(t,e){return en.apply(this,[Ue.PROMPT,t,e])}},on=\"success\",rn=\"info\",sn=\"danger\",an=\"warning\",ln=\"top-left\",un=\"top-right\",cn=\"bottom-left\",hn=\"bottom-right\",dn=\"glyphicon\",fn={components:{Alert:ne},props:{title:String,content:String,html:{type:Boolean,default:!1},duration:{type:Number,default:5e3},dismissible:{type:Boolean,default:!0},type:String,placement:String,icon:String,customClass:null,cb:{type:Function,required:!0},queue:{type:Array,required:!0},offsetY:{type:Number,default:15},offsetX:{type:Number,default:15},offset:{type:Number,default:15}},data:function(){return{height:0,top:0,horizontal:this.placement===ln||this.placement===cn?\"left\":\"right\",vertical:this.placement===ln||this.placement===un?\"top\":\"bottom\"}},created:function(){this.top=this.getTotalHeightOfQueue(this.queue)},mounted:function(){var t=this,e=this.$el;e.style[this.vertical]=this.top+\"px\",this.$nextTick(function(){e.style[t.horizontal]=\"-300px\",t.height=e.offsetHeight,e.style[t.horizontal]=t.offsetX+\"px\",y(e,\"in\")})},computed:{styles:function(){var t,e=this.queue,n=e.indexOf(this);return t={position:\"fixed\"},ct()(t,this.vertical,this.getTotalHeightOfQueue(e,n)+\"px\"),ct()(t,\"width\",\"300px\"),ct()(t,\"transition\",\"all 0.3s ease-in-out\"),t},icons:function(){if(s(this.icon))return this.icon;switch(this.type){case rn:case an:return dn+\" \"+dn+\"-info-sign\";case on:return dn+\" \"+dn+\"-ok-sign\";case sn:return dn+\" \"+dn+\"-remove-sign\";default:return null}}},methods:{getTotalHeightOfQueue:function(t){for(var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:t.length,n=this.offsetY,i=0;i<e;i++)n+=t[i].height+this.offset;return n},onDismissed:function(){b(this.$el,\"in\"),setTimeout(this.cb,300)}}},pn={render:function(){var t=this.$createElement,e=this._self._c||t;return e(\"alert\",{staticClass:\"fade\",class:this.customClass,style:this.styles,attrs:{type:this.type,duration:this.duration,dismissible:this.dismissible},on:{dismissed:this.onDismissed}},[e(\"div\",{staticClass:\"media\",staticStyle:{margin:\"0\"}},[this.icons?e(\"div\",{staticClass:\"media-left\"},[e(\"span\",{class:this.icons,staticStyle:{\"font-size\":\"1.5em\"}})]):this._e(),this._v(\" \"),e(\"div\",{staticClass:\"media-body\"},[this.title?e(\"div\",{staticClass:\"media-heading\"},[e(\"b\",[this._v(this._s(this.title))])]):this._e(),this._v(\" \"),this.html?e(\"div\",{domProps:{innerHTML:this._s(this.content)}}):e(\"div\",[this._v(this._s(this.content))])])])])},staticRenderFns:[]},vn=n(0)(fn,pn,!1,null,null,null).exports,mn=(je={},ct()(je,ln,[]),ct()(je,un,[]),ct()(je,cn,[]),ct()(je,hn,[]),je),gn=function(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null,s=t.placement,a=mn[s];if(i(a)){var u=new Pe.a({extends:vn,propsData:dt()({queue:a,placement:s},t,{cb:function(t){!function(t,e){m(e.$el),e.$destroy(),l(t,e)}(a,u),o(e)?e(t):n&&r&&n(t)}})});u.$mount(),document.body.appendChild(u.$el),a.push(u)}},yn={notify:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=arguments[1];if(s(t)&&(t={content:t}),i(t.placement)||(t.placement=un),a())return new Promise(function(n,i){gn(t,e,n,i)});gn(t,e)}},bn=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};mt(e.locale),gt(e.i18n),Object.keys(B).forEach(function(n){var i=e.prefix?e.prefix+n:n;t.component(i,B[n])}),Object.keys(O).forEach(function(n){var i=e.prefix?e.prefix+\"-\"+n:n;t.directive(i,O[n])}),Object.keys(I).forEach(function(n){var i=I[n];Object.keys(i).forEach(function(n){var o=e.prefix?e.prefix+\"_\"+n:n;t.prototype[\"$\"+o]=i[n]})})};n.d(e,\"install\",function(){return bn}),n.d(e,\"Carousel\",function(){return D}),n.d(e,\"Slide\",function(){return R}),n.d(e,\"Collapse\",function(){return st}),n.d(e,\"Dropdown\",function(){return lt}),n.d(e,\"Modal\",function(){return Et}),n.d(e,\"Tab\",function(){return Ot}),n.d(e,\"Tabs\",function(){return Dt}),n.d(e,\"DatePicker\",function(){return Kt}),n.d(e,\"Affix\",function(){return Zt}),n.d(e,\"Alert\",function(){return ne}),n.d(e,\"Pagination\",function(){return re}),n.d(e,\"Tooltip\",function(){return le}),n.d(e,\"Popover\",function(){return ce}),n.d(e,\"TimePicker\",function(){return fe}),n.d(e,\"Typeahead\",function(){return me}),n.d(e,\"ProgressBar\",function(){return ye}),n.d(e,\"ProgressBarStack\",function(){return ge}),n.d(e,\"Breadcrumbs\",function(){return we}),n.d(e,\"BreadcrumbItem\",function(){return be}),n.d(e,\"Btn\",function(){return kt}),n.d(e,\"BtnGroup\",function(){return xt}),n.d(e,\"BtnToolbar\",function(){return xe}),n.d(e,\"MultiSelect\",function(){return Ce}),n.d(e,\"Navbar\",function(){return Ee}),n.d(e,\"NavbarNav\",function(){return $e}),n.d(e,\"NavbarForm\",function(){return Be}),n.d(e,\"NavbarText\",function(){return Oe}),n.d(e,\"tooltip\",function(){return Fe}),n.d(e,\"popover\",function(){return ze}),n.d(e,\"scrollspy\",function(){return We}),n.d(e,\"MessageBox\",function(){return nn}),n.d(e,\"Notification\",function(){return yn}),\"undefined\"!=typeof window&&window.Vue&&bn(window.Vue,window.__uiv_options||{})},function(t,e,n){t.exports={default:n(17),__esModule:!0}},function(t,e,n){n(18);var i=n(6).Object;t.exports=function(t,e,n){return i.defineProperty(t,e,n)}},function(t,e,n){var i=n(9);i(i.S+i.F*!n(3),\"Object\",{defineProperty:n(10).f})},function(t,e,n){var i=n(20);t.exports=function(t,e,n){if(i(t),void 0===e)return t;switch(n){case 1:return function(n){return t.call(e,n)};case 2:return function(n,i){return t.call(e,n,i)};case 3:return function(n,i,o){return t.call(e,n,i,o)}}return function(){return t.apply(e,arguments)}}},function(t,e){t.exports=function(t){if(\"function\"!=typeof t)throw TypeError(t+\" is not a function!\");return t}},function(t,e,n){var i=n(10),o=n(26);t.exports=n(3)?function(t,e,n){return i.f(t,e,o(1,n))}:function(t,e,n){return t[e]=n,t}},function(t,e,n){var i=n(7);t.exports=function(t){if(!i(t))throw TypeError(t+\" is not an object!\");return t}},function(t,e,n){t.exports=!n(3)&&!n(8)(function(){return 7!=Object.defineProperty(n(24)(\"div\"),\"a\",{get:function(){return 7}}).a})},function(t,e,n){var i=n(7),o=n(5).document,r=i(o)&&i(o.createElement);t.exports=function(t){return r?o.createElement(t):{}}},function(t,e,n){var i=n(7);t.exports=function(t,e){if(!i(t))return t;var n,o;if(e&&\"function\"==typeof(n=t.toString)&&!i(o=n.call(t)))return o;if(\"function\"==typeof(n=t.valueOf)&&!i(o=n.call(t)))return o;if(!e&&\"function\"==typeof(n=t.toString)&&!i(o=n.call(t)))return o;throw TypeError(\"Can't convert object to primitive value\")}},function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},function(t,e,n){t.exports={default:n(28),__esModule:!0}},function(t,e,n){n(29),t.exports=n(6).Object.assign},function(t,e,n){var i=n(9);i(i.S+i.F,\"Object\",{assign:n(30)})},function(t,e,n){\"use strict\";var i=n(31),o=n(42),r=n(43),s=n(44),a=n(12),l=Object.assign;t.exports=!l||n(8)(function(){var t={},e={},n=Symbol(),i=\"abcdefghijklmnopqrst\";return t[n]=7,i.split(\"\").forEach(function(t){e[t]=t}),7!=l({},t)[n]||Object.keys(l({},e)).join(\"\")!=i})?function(t,e){for(var n=s(t),l=arguments.length,u=1,c=o.f,h=r.f;l>u;)for(var d,f=a(arguments[u++]),p=c?i(f).concat(c(f)):i(f),v=p.length,m=0;v>m;)h.call(f,d=p[m++])&&(n[d]=f[d]);return n}:l},function(t,e,n){var i=n(32),o=n(41);t.exports=Object.keys||function(t){return i(t,o)}},function(t,e,n){var i=n(33),o=n(11),r=n(35)(!1),s=n(38)(\"IE_PROTO\");t.exports=function(t,e){var n,a=o(t),l=0,u=[];for(n in a)n!=s&&i(a,n)&&u.push(n);for(;e.length>l;)i(a,n=e[l++])&&(~r(u,n)||u.push(n));return u}},function(t,e){var n={}.hasOwnProperty;t.exports=function(t,e){return n.call(t,e)}},function(t,e){var n={}.toString;t.exports=function(t){return n.call(t).slice(8,-1)}},function(t,e,n){var i=n(11),o=n(36),r=n(37);t.exports=function(t){return function(e,n,s){var a,l=i(e),u=o(l.length),c=r(s,u);if(t&&n!=n){for(;u>c;)if((a=l[c++])!=a)return!0}else for(;u>c;c++)if((t||c in l)&&l[c]===n)return t||c||0;return!t&&-1}}},function(t,e,n){var i=n(14),o=Math.min;t.exports=function(t){return t>0?o(i(t),9007199254740991):0}},function(t,e,n){var i=n(14),o=Math.max,r=Math.min;t.exports=function(t,e){return(t=i(t))<0?o(t+e,0):r(t,e)}},function(t,e,n){var i=n(39)(\"keys\"),o=n(40);t.exports=function(t){return i[t]||(i[t]=o(t))}},function(t,e,n){var i=n(5),o=\"__core-js_shared__\",r=i[o]||(i[o]={});t.exports=function(t){return r[t]||(r[t]={})}},function(t,e){var n=0,i=Math.random();t.exports=function(t){return\"Symbol(\".concat(void 0===t?\"\":t,\")_\",(++n+i).toString(36))}},function(t,e){t.exports=\"constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf\".split(\",\")},function(t,e){e.f=Object.getOwnPropertySymbols},function(t,e){e.f={}.propertyIsEnumerable},function(t,e,n){var i=n(13);t.exports=function(t){return Object(i(t))}}])});\n//# sourceMappingURL=uiv.min.js.map"
},
"$:/usr/lib/vue/vue.min.js": {
"title": "$:/usr/lib/vue/vue.min.js",
"created": "20180831235006944",
"modified": "20180901222106659",
"module-type": "library",
"type": "application/javascript",
"text": "/*!\n * Vue.js v2.5.17\n * (c) 2014-2018 Evan You\n * Released under the MIT License.\n */\n!function(e,t){\"object\"==typeof exports&&\"undefined\"!=typeof module?module.exports=t():\"function\"==typeof define&&define.amd?define(t):e.Vue=t()}(this,function(){\"use strict\";var y=Object.freeze({});function M(e){return null==e}function D(e){return null!=e}function S(e){return!0===e}function T(e){return\"string\"==typeof e||\"number\"==typeof e||\"symbol\"==typeof e||\"boolean\"==typeof e}function P(e){return null!==e&&\"object\"==typeof e}var r=Object.prototype.toString;function l(e){return\"[object Object]\"===r.call(e)}function i(e){var t=parseFloat(String(e));return 0<=t&&Math.floor(t)===t&&isFinite(e)}function t(e){return null==e?\"\":\"object\"==typeof e?JSON.stringify(e,null,2):String(e)}function F(e){var t=parseFloat(e);return isNaN(t)?e:t}function s(e,t){for(var n=Object.create(null),r=e.split(\",\"),i=0;i<r.length;i++)n[r[i]]=!0;return t?function(e){return n[e.toLowerCase()]}:function(e){return n[e]}}var c=s(\"slot,component\",!0),u=s(\"key,ref,slot,slot-scope,is\");function f(e,t){if(e.length){var n=e.indexOf(t);if(-1<n)return e.splice(n,1)}}var n=Object.prototype.hasOwnProperty;function p(e,t){return n.call(e,t)}function e(t){var n=Object.create(null);return function(e){return n[e]||(n[e]=t(e))}}var o=/-(\\w)/g,g=e(function(e){return e.replace(o,function(e,t){return t?t.toUpperCase():\"\"})}),d=e(function(e){return e.charAt(0).toUpperCase()+e.slice(1)}),a=/\\B([A-Z])/g,_=e(function(e){return e.replace(a,\"-$1\").toLowerCase()});var v=Function.prototype.bind?function(e,t){return e.bind(t)}:function(n,r){function e(e){var t=arguments.length;return t?1<t?n.apply(r,arguments):n.call(r,e):n.call(r)}return e._length=n.length,e};function h(e,t){t=t||0;for(var n=e.length-t,r=new Array(n);n--;)r[n]=e[n+t];return r}function m(e,t){for(var n in t)e[n]=t[n];return e}function b(e){for(var t={},n=0;n<e.length;n++)e[n]&&m(t,e[n]);return t}function $(e,t,n){}var O=function(e,t,n){return!1},w=function(e){return e};function C(t,n){if(t===n)return!0;var e=P(t),r=P(n);if(!e||!r)return!e&&!r&&String(t)===String(n);try{var i=Array.isArray(t),o=Array.isArray(n);if(i&&o)return t.length===n.length&&t.every(function(e,t){return C(e,n[t])});if(i||o)return!1;var a=Object.keys(t),s=Object.keys(n);return a.length===s.length&&a.every(function(e){return C(t[e],n[e])})}catch(e){return!1}}function x(e,t){for(var n=0;n<e.length;n++)if(C(e[n],t))return n;return-1}function R(e){var t=!1;return function(){t||(t=!0,e.apply(this,arguments))}}var E=\"data-server-rendered\",k=[\"component\",\"directive\",\"filter\"],A=[\"beforeCreate\",\"created\",\"beforeMount\",\"mounted\",\"beforeUpdate\",\"updated\",\"beforeDestroy\",\"destroyed\",\"activated\",\"deactivated\",\"errorCaptured\"],j={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:O,isReservedAttr:O,isUnknownElement:O,getTagNamespace:$,parsePlatformTagName:w,mustUseProp:O,_lifecycleHooks:A};function N(e,t,n,r){Object.defineProperty(e,t,{value:n,enumerable:!!r,writable:!0,configurable:!0})}var L=/[^\\w.$]/;var I,H=\"__proto__\"in{},B=\"undefined\"!=typeof window,U=\"undefined\"!=typeof WXEnvironment&&!!WXEnvironment.platform,V=U&&WXEnvironment.platform.toLowerCase(),z=B&&window.navigator.userAgent.toLowerCase(),K=z&&/msie|trident/.test(z),J=z&&0<z.indexOf(\"msie 9.0\"),q=z&&0<z.indexOf(\"edge/\"),W=(z&&z.indexOf(\"android\"),z&&/iphone|ipad|ipod|ios/.test(z)||\"ios\"===V),G=(z&&/chrome\\/\\d+/.test(z),{}.watch),Z=!1;if(B)try{var X={};Object.defineProperty(X,\"passive\",{get:function(){Z=!0}}),window.addEventListener(\"test-passive\",null,X)}catch(e){}var Y=function(){return void 0===I&&(I=!B&&!U&&\"undefined\"!=typeof global&&\"server\"===global.process.env.VUE_ENV),I},Q=B&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function ee(e){return\"function\"==typeof e&&/native code/.test(e.toString())}var te,ne=\"undefined\"!=typeof Symbol&&ee(Symbol)&&\"undefined\"!=typeof Reflect&&ee(Reflect.ownKeys);te=\"undefined\"!=typeof Set&&ee(Set)?Set:function(){function e(){this.set=Object.create(null)}return e.prototype.has=function(e){return!0===this.set[e]},e.prototype.add=function(e){this.set[e]=!0},e.prototype.clear=function(){this.set=Object.create(null)},e}();var re=$,ie=0,oe=function(){this.id=ie++,this.subs=[]};oe.prototype.addSub=function(e){this.subs.push(e)},oe.prototype.removeSub=function(e){f(this.subs,e)},oe.prototype.depend=function(){oe.target&&oe.target.addDep(this)},oe.prototype.notify=function(){for(var e=this.subs.slice(),t=0,n=e.length;t<n;t++)e[t].update()},oe.target=null;var ae=[];function se(e){oe.target&&ae.push(oe.target),oe.target=e}function ce(){oe.target=ae.pop()}var le=function(e,t,n,r,i,o,a,s){this.tag=e,this.data=t,this.children=n,this.text=r,this.elm=i,this.ns=void 0,this.context=o,this.fnContext=void 0,this.fnOptions=void 0,this.fnScopeId=void 0,this.key=t&&t.key,this.componentOptions=a,this.componentInstance=void 0,this.parent=void 0,this.raw=!1,this.isStatic=!1,this.isRootInsert=!0,this.isComment=!1,this.isCloned=!1,this.isOnce=!1,this.asyncFactory=s,this.asyncMeta=void 0,this.isAsyncPlaceholder=!1},ue={child:{configurable:!0}};ue.child.get=function(){return this.componentInstance},Object.defineProperties(le.prototype,ue);var fe=function(e){void 0===e&&(e=\"\");var t=new le;return t.text=e,t.isComment=!0,t};function pe(e){return new le(void 0,void 0,void 0,String(e))}function de(e){var t=new le(e.tag,e.data,e.children,e.text,e.elm,e.context,e.componentOptions,e.asyncFactory);return t.ns=e.ns,t.isStatic=e.isStatic,t.key=e.key,t.isComment=e.isComment,t.fnContext=e.fnContext,t.fnOptions=e.fnOptions,t.fnScopeId=e.fnScopeId,t.isCloned=!0,t}var ve=Array.prototype,he=Object.create(ve);[\"push\",\"pop\",\"shift\",\"unshift\",\"splice\",\"sort\",\"reverse\"].forEach(function(o){var a=ve[o];N(he,o,function(){for(var e=[],t=arguments.length;t--;)e[t]=arguments[t];var n,r=a.apply(this,e),i=this.__ob__;switch(o){case\"push\":case\"unshift\":n=e;break;case\"splice\":n=e.slice(2)}return n&&i.observeArray(n),i.dep.notify(),r})});var me=Object.getOwnPropertyNames(he),ye=!0;function ge(e){ye=e}var _e=function(e){(this.value=e,this.dep=new oe,this.vmCount=0,N(e,\"__ob__\",this),Array.isArray(e))?((H?be:$e)(e,he,me),this.observeArray(e)):this.walk(e)};function be(e,t,n){e.__proto__=t}function $e(e,t,n){for(var r=0,i=n.length;r<i;r++){var o=n[r];N(e,o,t[o])}}function we(e,t){var n;if(P(e)&&!(e instanceof le))return p(e,\"__ob__\")&&e.__ob__ instanceof _e?n=e.__ob__:ye&&!Y()&&(Array.isArray(e)||l(e))&&Object.isExtensible(e)&&!e._isVue&&(n=new _e(e)),t&&n&&n.vmCount++,n}function Ce(n,e,r,t,i){var o=new oe,a=Object.getOwnPropertyDescriptor(n,e);if(!a||!1!==a.configurable){var s=a&&a.get;s||2!==arguments.length||(r=n[e]);var c=a&&a.set,l=!i&&we(r);Object.defineProperty(n,e,{enumerable:!0,configurable:!0,get:function(){var e=s?s.call(n):r;return oe.target&&(o.depend(),l&&(l.dep.depend(),Array.isArray(e)&&function e(t){for(var n=void 0,r=0,i=t.length;r<i;r++)(n=t[r])&&n.__ob__&&n.__ob__.dep.depend(),Array.isArray(n)&&e(n)}(e))),e},set:function(e){var t=s?s.call(n):r;e===t||e!=e&&t!=t||(c?c.call(n,e):r=e,l=!i&&we(e),o.notify())}})}}function xe(e,t,n){if(Array.isArray(e)&&i(t))return e.length=Math.max(e.length,t),e.splice(t,1,n),n;if(t in e&&!(t in Object.prototype))return e[t]=n;var r=e.__ob__;return e._isVue||r&&r.vmCount?n:r?(Ce(r.value,t,n),r.dep.notify(),n):e[t]=n}function ke(e,t){if(Array.isArray(e)&&i(t))e.splice(t,1);else{var n=e.__ob__;e._isVue||n&&n.vmCount||p(e,t)&&(delete e[t],n&&n.dep.notify())}}_e.prototype.walk=function(e){for(var t=Object.keys(e),n=0;n<t.length;n++)Ce(e,t[n])},_e.prototype.observeArray=function(e){for(var t=0,n=e.length;t<n;t++)we(e[t])};var Ae=j.optionMergeStrategies;function Oe(e,t){if(!t)return e;for(var n,r,i,o=Object.keys(t),a=0;a<o.length;a++)r=e[n=o[a]],i=t[n],p(e,n)?l(r)&&l(i)&&Oe(r,i):xe(e,n,i);return e}function Se(n,r,i){return i?function(){var e=\"function\"==typeof r?r.call(i,i):r,t=\"function\"==typeof n?n.call(i,i):n;return e?Oe(e,t):t}:r?n?function(){return Oe(\"function\"==typeof r?r.call(this,this):r,\"function\"==typeof n?n.call(this,this):n)}:r:n}function Te(e,t){return t?e?e.concat(t):Array.isArray(t)?t:[t]:e}function Ee(e,t,n,r){var i=Object.create(e||null);return t?m(i,t):i}Ae.data=function(e,t,n){return n?Se(e,t,n):t&&\"function\"!=typeof t?e:Se(e,t)},A.forEach(function(e){Ae[e]=Te}),k.forEach(function(e){Ae[e+\"s\"]=Ee}),Ae.watch=function(e,t,n,r){if(e===G&&(e=void 0),t===G&&(t=void 0),!t)return Object.create(e||null);if(!e)return t;var i={};for(var o in m(i,e),t){var a=i[o],s=t[o];a&&!Array.isArray(a)&&(a=[a]),i[o]=a?a.concat(s):Array.isArray(s)?s:[s]}return i},Ae.props=Ae.methods=Ae.inject=Ae.computed=function(e,t,n,r){if(!e)return t;var i=Object.create(null);return m(i,e),t&&m(i,t),i},Ae.provide=Se;var je=function(e,t){return void 0===t?e:t};function Ne(n,r,i){\"function\"==typeof r&&(r=r.options),function(e,t){var n=e.props;if(n){var r,i,o={};if(Array.isArray(n))for(r=n.length;r--;)\"string\"==typeof(i=n[r])&&(o[g(i)]={type:null});else if(l(n))for(var a in n)i=n[a],o[g(a)]=l(i)?i:{type:i};e.props=o}}(r),function(e,t){var n=e.inject;if(n){var r=e.inject={};if(Array.isArray(n))for(var i=0;i<n.length;i++)r[n[i]]={from:n[i]};else if(l(n))for(var o in n){var a=n[o];r[o]=l(a)?m({from:o},a):{from:a}}}}(r),function(e){var t=e.directives;if(t)for(var n in t){var r=t[n];\"function\"==typeof r&&(t[n]={bind:r,update:r})}}(r);var e=r.extends;if(e&&(n=Ne(n,e,i)),r.mixins)for(var t=0,o=r.mixins.length;t<o;t++)n=Ne(n,r.mixins[t],i);var a,s={};for(a in n)c(a);for(a in r)p(n,a)||c(a);function c(e){var t=Ae[e]||je;s[e]=t(n[e],r[e],i,e)}return s}function Le(e,t,n,r){if(\"string\"==typeof n){var i=e[t];if(p(i,n))return i[n];var o=g(n);if(p(i,o))return i[o];var a=d(o);return p(i,a)?i[a]:i[n]||i[o]||i[a]}}function Ie(e,t,n,r){var i=t[e],o=!p(n,e),a=n[e],s=Pe(Boolean,i.type);if(-1<s)if(o&&!p(i,\"default\"))a=!1;else if(\"\"===a||a===_(e)){var c=Pe(String,i.type);(c<0||s<c)&&(a=!0)}if(void 0===a){a=function(e,t,n){if(!p(t,\"default\"))return;var r=t.default;if(e&&e.$options.propsData&&void 0===e.$options.propsData[n]&&void 0!==e._props[n])return e._props[n];return\"function\"==typeof r&&\"Function\"!==Me(t.type)?r.call(e):r}(r,i,e);var l=ye;ge(!0),we(a),ge(l)}return a}function Me(e){var t=e&&e.toString().match(/^\\s*function (\\w+)/);return t?t[1]:\"\"}function De(e,t){return Me(e)===Me(t)}function Pe(e,t){if(!Array.isArray(t))return De(t,e)?0:-1;for(var n=0,r=t.length;n<r;n++)if(De(t[n],e))return n;return-1}function Fe(e,t,n){if(t)for(var r=t;r=r.$parent;){var i=r.$options.errorCaptured;if(i)for(var o=0;o<i.length;o++)try{if(!1===i[o].call(r,e,t,n))return}catch(e){Re(e,r,\"errorCaptured hook\")}}Re(e,t,n)}function Re(e,t,n){if(j.errorHandler)try{return j.errorHandler.call(null,e,t,n)}catch(e){He(e,null,\"config.errorHandler\")}He(e,t,n)}function He(e,t,n){if(!B&&!U||\"undefined\"==typeof console)throw e;console.error(e)}var Be,Ue,Ve=[],ze=!1;function Ke(){ze=!1;for(var e=Ve.slice(0),t=Ve.length=0;t<e.length;t++)e[t]()}var Je=!1;if(\"undefined\"!=typeof setImmediate&&ee(setImmediate))Ue=function(){setImmediate(Ke)};else if(\"undefined\"==typeof MessageChannel||!ee(MessageChannel)&&\"[object MessageChannelConstructor]\"!==MessageChannel.toString())Ue=function(){setTimeout(Ke,0)};else{var qe=new MessageChannel,We=qe.port2;qe.port1.onmessage=Ke,Ue=function(){We.postMessage(1)}}if(\"undefined\"!=typeof Promise&&ee(Promise)){var Ge=Promise.resolve();Be=function(){Ge.then(Ke),W&&setTimeout($)}}else Be=Ue;function Ze(e,t){var n;if(Ve.push(function(){if(e)try{e.call(t)}catch(e){Fe(e,t,\"nextTick\")}else n&&n(t)}),ze||(ze=!0,Je?Ue():Be()),!e&&\"undefined\"!=typeof Promise)return new Promise(function(e){n=e})}var Xe=new te;function Ye(e){!function e(t,n){var r,i;var o=Array.isArray(t);if(!o&&!P(t)||Object.isFrozen(t)||t instanceof le)return;if(t.__ob__){var a=t.__ob__.dep.id;if(n.has(a))return;n.add(a)}if(o)for(r=t.length;r--;)e(t[r],n);else for(i=Object.keys(t),r=i.length;r--;)e(t[i[r]],n)}(e,Xe),Xe.clear()}var Qe,et=e(function(e){var t=\"&\"===e.charAt(0),n=\"~\"===(e=t?e.slice(1):e).charAt(0),r=\"!\"===(e=n?e.slice(1):e).charAt(0);return{name:e=r?e.slice(1):e,once:n,capture:r,passive:t}});function tt(e){function i(){var e=arguments,t=i.fns;if(!Array.isArray(t))return t.apply(null,arguments);for(var n=t.slice(),r=0;r<n.length;r++)n[r].apply(null,e)}return i.fns=e,i}function nt(e,t,n,r,i){var o,a,s,c;for(o in e)a=e[o],s=t[o],c=et(o),M(a)||(M(s)?(M(a.fns)&&(a=e[o]=tt(a)),n(c.name,a,c.once,c.capture,c.passive,c.params)):a!==s&&(s.fns=a,e[o]=s));for(o in t)M(e[o])&&r((c=et(o)).name,t[o],c.capture)}function rt(e,t,n){var r;e instanceof le&&(e=e.data.hook||(e.data.hook={}));var i=e[t];function o(){n.apply(this,arguments),f(r.fns,o)}M(i)?r=tt([o]):D(i.fns)&&S(i.merged)?(r=i).fns.push(o):r=tt([i,o]),r.merged=!0,e[t]=r}function it(e,t,n,r,i){if(D(t)){if(p(t,n))return e[n]=t[n],i||delete t[n],!0;if(p(t,r))return e[n]=t[r],i||delete t[r],!0}return!1}function ot(e){return T(e)?[pe(e)]:Array.isArray(e)?function e(t,n){var r=[];var i,o,a,s;for(i=0;i<t.length;i++)M(o=t[i])||\"boolean\"==typeof o||(a=r.length-1,s=r[a],Array.isArray(o)?0<o.length&&(at((o=e(o,(n||\"\")+\"_\"+i))[0])&&at(s)&&(r[a]=pe(s.text+o[0].text),o.shift()),r.push.apply(r,o)):T(o)?at(s)?r[a]=pe(s.text+o):\"\"!==o&&r.push(pe(o)):at(o)&&at(s)?r[a]=pe(s.text+o.text):(S(t._isVList)&&D(o.tag)&&M(o.key)&&D(n)&&(o.key=\"__vlist\"+n+\"_\"+i+\"__\"),r.push(o)));return r}(e):void 0}function at(e){return D(e)&&D(e.text)&&!1===e.isComment}function st(e,t){return(e.__esModule||ne&&\"Module\"===e[Symbol.toStringTag])&&(e=e.default),P(e)?t.extend(e):e}function ct(e){return e.isComment&&e.asyncFactory}function lt(e){if(Array.isArray(e))for(var t=0;t<e.length;t++){var n=e[t];if(D(n)&&(D(n.componentOptions)||ct(n)))return n}}function ut(e,t,n){n?Qe.$once(e,t):Qe.$on(e,t)}function ft(e,t){Qe.$off(e,t)}function pt(e,t,n){Qe=e,nt(t,n||{},ut,ft),Qe=void 0}function dt(e,t){var n={};if(!e)return n;for(var r=0,i=e.length;r<i;r++){var o=e[r],a=o.data;if(a&&a.attrs&&a.attrs.slot&&delete a.attrs.slot,o.context!==t&&o.fnContext!==t||!a||null==a.slot)(n.default||(n.default=[])).push(o);else{var s=a.slot,c=n[s]||(n[s]=[]);\"template\"===o.tag?c.push.apply(c,o.children||[]):c.push(o)}}for(var l in n)n[l].every(vt)&&delete n[l];return n}function vt(e){return e.isComment&&!e.asyncFactory||\" \"===e.text}function ht(e,t){t=t||{};for(var n=0;n<e.length;n++)Array.isArray(e[n])?ht(e[n],t):t[e[n].key]=e[n].fn;return t}var mt=null;function yt(e){for(;e&&(e=e.$parent);)if(e._inactive)return!0;return!1}function gt(e,t){if(t){if(e._directInactive=!1,yt(e))return}else if(e._directInactive)return;if(e._inactive||null===e._inactive){e._inactive=!1;for(var n=0;n<e.$children.length;n++)gt(e.$children[n]);_t(e,\"activated\")}}function _t(t,n){se();var e=t.$options[n];if(e)for(var r=0,i=e.length;r<i;r++)try{e[r].call(t)}catch(e){Fe(e,t,n+\" hook\")}t._hasHookEvent&&t.$emit(\"hook:\"+n),ce()}var bt=[],$t=[],wt={},Ct=!1,xt=!1,kt=0;function At(){var e,t;for(xt=!0,bt.sort(function(e,t){return e.id-t.id}),kt=0;kt<bt.length;kt++)t=(e=bt[kt]).id,wt[t]=null,e.run();var n=$t.slice(),r=bt.slice();kt=bt.length=$t.length=0,wt={},Ct=xt=!1,function(e){for(var t=0;t<e.length;t++)e[t]._inactive=!0,gt(e[t],!0)}(n),function(e){var t=e.length;for(;t--;){var n=e[t],r=n.vm;r._watcher===n&&r._isMounted&&_t(r,\"updated\")}}(r),Q&&j.devtools&&Q.emit(\"flush\")}var Ot=0,St=function(e,t,n,r,i){this.vm=e,i&&(e._watcher=this),e._watchers.push(this),r?(this.deep=!!r.deep,this.user=!!r.user,this.lazy=!!r.lazy,this.sync=!!r.sync):this.deep=this.user=this.lazy=this.sync=!1,this.cb=n,this.id=++Ot,this.active=!0,this.dirty=this.lazy,this.deps=[],this.newDeps=[],this.depIds=new te,this.newDepIds=new te,this.expression=\"\",\"function\"==typeof t?this.getter=t:(this.getter=function(e){if(!L.test(e)){var n=e.split(\".\");return function(e){for(var t=0;t<n.length;t++){if(!e)return;e=e[n[t]]}return e}}}(t),this.getter||(this.getter=function(){})),this.value=this.lazy?void 0:this.get()};St.prototype.get=function(){var e;se(this);var t=this.vm;try{e=this.getter.call(t,t)}catch(e){if(!this.user)throw e;Fe(e,t,'getter for watcher \"'+this.expression+'\"')}finally{this.deep&&Ye(e),ce(),this.cleanupDeps()}return e},St.prototype.addDep=function(e){var t=e.id;this.newDepIds.has(t)||(this.newDepIds.add(t),this.newDeps.push(e),this.depIds.has(t)||e.addSub(this))},St.prototype.cleanupDeps=function(){for(var e=this.deps.length;e--;){var t=this.deps[e];this.newDepIds.has(t.id)||t.removeSub(this)}var n=this.depIds;this.depIds=this.newDepIds,this.newDepIds=n,this.newDepIds.clear(),n=this.deps,this.deps=this.newDeps,this.newDeps=n,this.newDeps.length=0},St.prototype.update=function(){this.lazy?this.dirty=!0:this.sync?this.run():function(e){var t=e.id;if(null==wt[t]){if(wt[t]=!0,xt){for(var n=bt.length-1;kt<n&&bt[n].id>e.id;)n--;bt.splice(n+1,0,e)}else bt.push(e);Ct||(Ct=!0,Ze(At))}}(this)},St.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||P(e)||this.deep){var t=this.value;if(this.value=e,this.user)try{this.cb.call(this.vm,e,t)}catch(e){Fe(e,this.vm,'callback for watcher \"'+this.expression+'\"')}else this.cb.call(this.vm,e,t)}}},St.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},St.prototype.depend=function(){for(var e=this.deps.length;e--;)this.deps[e].depend()},St.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||f(this.vm._watchers,this);for(var e=this.deps.length;e--;)this.deps[e].removeSub(this);this.active=!1}};var Tt={enumerable:!0,configurable:!0,get:$,set:$};function Et(e,t,n){Tt.get=function(){return this[t][n]},Tt.set=function(e){this[t][n]=e},Object.defineProperty(e,n,Tt)}function jt(e){e._watchers=[];var t=e.$options;t.props&&function(n,r){var i=n.$options.propsData||{},o=n._props={},a=n.$options._propKeys=[];n.$parent&&ge(!1);var e=function(e){a.push(e);var t=Ie(e,r,i,n);Ce(o,e,t),e in n||Et(n,\"_props\",e)};for(var t in r)e(t);ge(!0)}(e,t.props),t.methods&&function(e,t){e.$options.props;for(var n in t)e[n]=null==t[n]?$:v(t[n],e)}(e,t.methods),t.data?function(e){var t=e.$options.data;l(t=e._data=\"function\"==typeof t?function(e,t){se();try{return e.call(t,t)}catch(e){return Fe(e,t,\"data()\"),{}}finally{ce()}}(t,e):t||{})||(t={});var n=Object.keys(t),r=e.$options.props,i=(e.$options.methods,n.length);for(;i--;){var o=n[i];r&&p(r,o)||(void 0,36!==(a=(o+\"\").charCodeAt(0))&&95!==a&&Et(e,\"_data\",o))}var a;we(t,!0)}(e):we(e._data={},!0),t.computed&&function(e,t){var n=e._computedWatchers=Object.create(null),r=Y();for(var i in t){var o=t[i],a=\"function\"==typeof o?o:o.get;r||(n[i]=new St(e,a||$,$,Nt)),i in e||Lt(e,i,o)}}(e,t.computed),t.watch&&t.watch!==G&&function(e,t){for(var n in t){var r=t[n];if(Array.isArray(r))for(var i=0;i<r.length;i++)Mt(e,n,r[i]);else Mt(e,n,r)}}(e,t.watch)}var Nt={lazy:!0};function Lt(e,t,n){var r=!Y();\"function\"==typeof n?(Tt.get=r?It(t):n,Tt.set=$):(Tt.get=n.get?r&&!1!==n.cache?It(t):n.get:$,Tt.set=n.set?n.set:$),Object.defineProperty(e,t,Tt)}function It(t){return function(){var e=this._computedWatchers&&this._computedWatchers[t];if(e)return e.dirty&&e.evaluate(),oe.target&&e.depend(),e.value}}function Mt(e,t,n,r){return l(n)&&(n=(r=n).handler),\"string\"==typeof n&&(n=e[n]),e.$watch(t,n,r)}function Dt(t,e){if(t){for(var n=Object.create(null),r=ne?Reflect.ownKeys(t).filter(function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}):Object.keys(t),i=0;i<r.length;i++){for(var o=r[i],a=t[o].from,s=e;s;){if(s._provided&&p(s._provided,a)){n[o]=s._provided[a];break}s=s.$parent}if(!s&&\"default\"in t[o]){var c=t[o].default;n[o]=\"function\"==typeof c?c.call(e):c}}return n}}function Pt(e,t){var n,r,i,o,a;if(Array.isArray(e)||\"string\"==typeof e)for(n=new Array(e.length),r=0,i=e.length;r<i;r++)n[r]=t(e[r],r);else if(\"number\"==typeof e)for(n=new Array(e),r=0;r<e;r++)n[r]=t(r+1,r);else if(P(e))for(o=Object.keys(e),n=new Array(o.length),r=0,i=o.length;r<i;r++)a=o[r],n[r]=t(e[a],a,r);return D(n)&&(n._isVList=!0),n}function Ft(e,t,n,r){var i,o=this.$scopedSlots[e];if(o)n=n||{},r&&(n=m(m({},r),n)),i=o(n)||t;else{var a=this.$slots[e];a&&(a._rendered=!0),i=a||t}var s=n&&n.slot;return s?this.$createElement(\"template\",{slot:s},i):i}function Rt(e){return Le(this.$options,\"filters\",e)||w}function Ht(e,t){return Array.isArray(e)?-1===e.indexOf(t):e!==t}function Bt(e,t,n,r,i){var o=j.keyCodes[t]||n;return i&&r&&!j.keyCodes[t]?Ht(i,r):o?Ht(o,e):r?_(r)!==t:void 0}function Ut(n,r,i,o,a){if(i)if(P(i)){var s;Array.isArray(i)&&(i=b(i));var e=function(t){if(\"class\"===t||\"style\"===t||u(t))s=n;else{var e=n.attrs&&n.attrs.type;s=o||j.mustUseProp(r,e,t)?n.domProps||(n.domProps={}):n.attrs||(n.attrs={})}t in s||(s[t]=i[t],a&&((n.on||(n.on={}))[\"update:\"+t]=function(e){i[t]=e}))};for(var t in i)e(t)}else;return n}function Vt(e,t){var n=this._staticTrees||(this._staticTrees=[]),r=n[e];return r&&!t||Kt(r=n[e]=this.$options.staticRenderFns[e].call(this._renderProxy,null,this),\"__static__\"+e,!1),r}function zt(e,t,n){return Kt(e,\"__once__\"+t+(n?\"_\"+n:\"\"),!0),e}function Kt(e,t,n){if(Array.isArray(e))for(var r=0;r<e.length;r++)e[r]&&\"string\"!=typeof e[r]&&Jt(e[r],t+\"_\"+r,n);else Jt(e,t,n)}function Jt(e,t,n){e.isStatic=!0,e.key=t,e.isOnce=n}function qt(e,t){if(t)if(l(t)){var n=e.on=e.on?m({},e.on):{};for(var r in t){var i=n[r],o=t[r];n[r]=i?[].concat(i,o):o}}else;return e}function Wt(e){e._o=zt,e._n=F,e._s=t,e._l=Pt,e._t=Ft,e._q=C,e._i=x,e._m=Vt,e._f=Rt,e._k=Bt,e._b=Ut,e._v=pe,e._e=fe,e._u=ht,e._g=qt}function Gt(e,t,n,o,r){var a,s=r.options;p(o,\"_uid\")?(a=Object.create(o))._original=o:o=(a=o)._original;var i=S(s._compiled),c=!i;this.data=e,this.props=t,this.children=n,this.parent=o,this.listeners=e.on||y,this.injections=Dt(s.inject,o),this.slots=function(){return dt(n,o)},i&&(this.$options=s,this.$slots=this.slots(),this.$scopedSlots=e.scopedSlots||y),s._scopeId?this._c=function(e,t,n,r){var i=rn(a,e,t,n,r,c);return i&&!Array.isArray(i)&&(i.fnScopeId=s._scopeId,i.fnContext=o),i}:this._c=function(e,t,n,r){return rn(a,e,t,n,r,c)}}function Zt(e,t,n,r){var i=de(e);return i.fnContext=n,i.fnOptions=r,t.slot&&((i.data||(i.data={})).slot=t.slot),i}function Xt(e,t){for(var n in t)e[g(n)]=t[n]}Wt(Gt.prototype);var Yt={init:function(e,t,n,r){if(e.componentInstance&&!e.componentInstance._isDestroyed&&e.data.keepAlive){var i=e;Yt.prepatch(i,i)}else{(e.componentInstance=function(e,t,n,r){var i={_isComponent:!0,parent:t,_parentVnode:e,_parentElm:n||null,_refElm:r||null},o=e.data.inlineTemplate;D(o)&&(i.render=o.render,i.staticRenderFns=o.staticRenderFns);return new e.componentOptions.Ctor(i)}(e,mt,n,r)).$mount(t?e.elm:void 0,t)}},prepatch:function(e,t){var n=t.componentOptions;!function(e,t,n,r,i){var o=!!(i||e.$options._renderChildren||r.data.scopedSlots||e.$scopedSlots!==y);if(e.$options._parentVnode=r,e.$vnode=r,e._vnode&&(e._vnode.parent=r),e.$options._renderChildren=i,e.$attrs=r.data.attrs||y,e.$listeners=n||y,t&&e.$options.props){ge(!1);for(var a=e._props,s=e.$options._propKeys||[],c=0;c<s.length;c++){var l=s[c],u=e.$options.props;a[l]=Ie(l,u,t,e)}ge(!0),e.$options.propsData=t}n=n||y;var f=e.$options._parentListeners;e.$options._parentListeners=n,pt(e,n,f),o&&(e.$slots=dt(i,r.context),e.$forceUpdate())}(t.componentInstance=e.componentInstance,n.propsData,n.listeners,t,n.children)},insert:function(e){var t,n=e.context,r=e.componentInstance;r._isMounted||(r._isMounted=!0,_t(r,\"mounted\")),e.data.keepAlive&&(n._isMounted?((t=r)._inactive=!1,$t.push(t)):gt(r,!0))},destroy:function(e){var t=e.componentInstance;t._isDestroyed||(e.data.keepAlive?function e(t,n){if(!(n&&(t._directInactive=!0,yt(t))||t._inactive)){t._inactive=!0;for(var r=0;r<t.$children.length;r++)e(t.$children[r]);_t(t,\"deactivated\")}}(t,!0):t.$destroy())}},Qt=Object.keys(Yt);function en(e,t,n,r,i){if(!M(e)){var o=n.$options._base;if(P(e)&&(e=o.extend(e)),\"function\"==typeof e){var a,s,c,l,u,f,p;if(M(e.cid)&&void 0===(e=function(t,n,e){if(S(t.error)&&D(t.errorComp))return t.errorComp;if(D(t.resolved))return t.resolved;if(S(t.loading)&&D(t.loadingComp))return t.loadingComp;if(!D(t.contexts)){var r=t.contexts=[e],i=!0,o=function(){for(var e=0,t=r.length;e<t;e++)r[e].$forceUpdate()},a=R(function(e){t.resolved=st(e,n),i||o()}),s=R(function(e){D(t.errorComp)&&(t.error=!0,o())}),c=t(a,s);return P(c)&&(\"function\"==typeof c.then?M(t.resolved)&&c.then(a,s):D(c.component)&&\"function\"==typeof c.component.then&&(c.component.then(a,s),D(c.error)&&(t.errorComp=st(c.error,n)),D(c.loading)&&(t.loadingComp=st(c.loading,n),0===c.delay?t.loading=!0:setTimeout(function(){M(t.resolved)&&M(t.error)&&(t.loading=!0,o())},c.delay||200)),D(c.timeout)&&setTimeout(function(){M(t.resolved)&&s(null)},c.timeout))),i=!1,t.loading?t.loadingComp:t.resolved}t.contexts.push(e)}(a=e,o,n)))return s=a,c=t,l=n,u=r,f=i,(p=fe()).asyncFactory=s,p.asyncMeta={data:c,context:l,children:u,tag:f},p;t=t||{},dn(e),D(t.model)&&function(e,t){var n=e.model&&e.model.prop||\"value\",r=e.model&&e.model.event||\"input\";(t.props||(t.props={}))[n]=t.model.value;var i=t.on||(t.on={});D(i[r])?i[r]=[t.model.callback].concat(i[r]):i[r]=t.model.callback}(e.options,t);var d=function(e,t,n){var r=t.options.props;if(!M(r)){var i={},o=e.attrs,a=e.props;if(D(o)||D(a))for(var s in r){var c=_(s);it(i,a,s,c,!0)||it(i,o,s,c,!1)}return i}}(t,e);if(S(e.options.functional))return function(e,t,n,r,i){var o=e.options,a={},s=o.props;if(D(s))for(var c in s)a[c]=Ie(c,s,t||y);else D(n.attrs)&&Xt(a,n.attrs),D(n.props)&&Xt(a,n.props);var l=new Gt(n,a,i,r,e),u=o.render.call(null,l._c,l);if(u instanceof le)return Zt(u,n,l.parent,o);if(Array.isArray(u)){for(var f=ot(u)||[],p=new Array(f.length),d=0;d<f.length;d++)p[d]=Zt(f[d],n,l.parent,o);return p}}(e,d,t,n,r);var v=t.on;if(t.on=t.nativeOn,S(e.options.abstract)){var h=t.slot;t={},h&&(t.slot=h)}!function(e){for(var t=e.hook||(e.hook={}),n=0;n<Qt.length;n++){var r=Qt[n];t[r]=Yt[r]}}(t);var m=e.options.name||i;return new le(\"vue-component-\"+e.cid+(m?\"-\"+m:\"\"),t,void 0,void 0,void 0,n,{Ctor:e,propsData:d,listeners:v,tag:i,children:r},a)}}}var tn=1,nn=2;function rn(e,t,n,r,i,o){return(Array.isArray(n)||T(n))&&(i=r,r=n,n=void 0),S(o)&&(i=nn),function(e,t,n,r,i){if(D(n)&&D(n.__ob__))return fe();D(n)&&D(n.is)&&(t=n.is);if(!t)return fe();Array.isArray(r)&&\"function\"==typeof r[0]&&((n=n||{}).scopedSlots={default:r[0]},r.length=0);i===nn?r=ot(r):i===tn&&(r=function(e){for(var t=0;t<e.length;t++)if(Array.isArray(e[t]))return Array.prototype.concat.apply([],e);return e}(r));var o,a;if(\"string\"==typeof t){var s;a=e.$vnode&&e.$vnode.ns||j.getTagNamespace(t),o=j.isReservedTag(t)?new le(j.parsePlatformTagName(t),n,r,void 0,void 0,e):D(s=Le(e.$options,\"components\",t))?en(s,n,e,r,t):new le(t,n,r,void 0,void 0,e)}else o=en(t,n,e,r);return Array.isArray(o)?o:D(o)?(D(a)&&function e(t,n,r){t.ns=n;\"foreignObject\"===t.tag&&(n=void 0,r=!0);if(D(t.children))for(var i=0,o=t.children.length;i<o;i++){var a=t.children[i];D(a.tag)&&(M(a.ns)||S(r)&&\"svg\"!==a.tag)&&e(a,n,r)}}(o,a),D(n)&&function(e){P(e.style)&&Ye(e.style);P(e.class)&&Ye(e.class)}(n),o):fe()}(e,t,n,r,i)}var on,an,sn,cn,ln,un,fn,pn=0;function dn(e){var t=e.options;if(e.super){var n=dn(e.super);if(n!==e.superOptions){e.superOptions=n;var r=function(e){var t,n=e.options,r=e.extendOptions,i=e.sealedOptions;for(var o in n)n[o]!==i[o]&&(t||(t={}),t[o]=vn(n[o],r[o],i[o]));return t}(e);r&&m(e.extendOptions,r),(t=e.options=Ne(n,e.extendOptions)).name&&(t.components[t.name]=e)}}return t}function vn(e,t,n){if(Array.isArray(e)){var r=[];n=Array.isArray(n)?n:[n],t=Array.isArray(t)?t:[t];for(var i=0;i<e.length;i++)(0<=t.indexOf(e[i])||n.indexOf(e[i])<0)&&r.push(e[i]);return r}return e}function hn(e){this._init(e)}function mn(e){e.cid=0;var a=1;e.extend=function(e){e=e||{};var t=this,n=t.cid,r=e._Ctor||(e._Ctor={});if(r[n])return r[n];var i=e.name||t.options.name,o=function(e){this._init(e)};return((o.prototype=Object.create(t.prototype)).constructor=o).cid=a++,o.options=Ne(t.options,e),o.super=t,o.options.props&&function(e){var t=e.options.props;for(var n in t)Et(e.prototype,\"_props\",n)}(o),o.options.computed&&function(e){var t=e.options.computed;for(var n in t)Lt(e.prototype,n,t[n])}(o),o.extend=t.extend,o.mixin=t.mixin,o.use=t.use,k.forEach(function(e){o[e]=t[e]}),i&&(o.options.components[i]=o),o.superOptions=t.options,o.extendOptions=e,o.sealedOptions=m({},o.options),r[n]=o}}function yn(e){return e&&(e.Ctor.options.name||e.tag)}function gn(e,t){return Array.isArray(e)?-1<e.indexOf(t):\"string\"==typeof e?-1<e.split(\",\").indexOf(t):(n=e,\"[object RegExp]\"===r.call(n)&&e.test(t));var n}function _n(e,t){var n=e.cache,r=e.keys,i=e._vnode;for(var o in n){var a=n[o];if(a){var s=yn(a.componentOptions);s&&!t(s)&&bn(n,o,r,i)}}}function bn(e,t,n,r){var i=e[t];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),e[t]=null,f(n,t)}hn.prototype._init=function(e){var t,n,r,i,o=this;o._uid=pn++,o._isVue=!0,e&&e._isComponent?function(e,t){var n=e.$options=Object.create(e.constructor.options),r=t._parentVnode;n.parent=t.parent,n._parentVnode=r,n._parentElm=t._parentElm,n._refElm=t._refElm;var i=r.componentOptions;n.propsData=i.propsData,n._parentListeners=i.listeners,n._renderChildren=i.children,n._componentTag=i.tag,t.render&&(n.render=t.render,n.staticRenderFns=t.staticRenderFns)}(o,e):o.$options=Ne(dn(o.constructor),e||{},o),function(e){var t=e.$options,n=t.parent;if(n&&!t.abstract){for(;n.$options.abstract&&n.$parent;)n=n.$parent;n.$children.push(e)}e.$parent=n,e.$root=n?n.$root:e,e.$children=[],e.$refs={},e._watcher=null,e._inactive=null,e._directInactive=!1,e._isMounted=!1,e._isDestroyed=!1,e._isBeingDestroyed=!1}((o._renderProxy=o)._self=o),function(e){e._events=Object.create(null),e._hasHookEvent=!1;var t=e.$options._parentListeners;t&&pt(e,t)}(o),function(i){i._vnode=null,i._staticTrees=null;var e=i.$options,t=i.$vnode=e._parentVnode,n=t&&t.context;i.$slots=dt(e._renderChildren,n),i.$scopedSlots=y,i._c=function(e,t,n,r){return rn(i,e,t,n,r,!1)},i.$createElement=function(e,t,n,r){return rn(i,e,t,n,r,!0)};var r=t&&t.data;Ce(i,\"$attrs\",r&&r.attrs||y,null,!0),Ce(i,\"$listeners\",e._parentListeners||y,null,!0)}(o),_t(o,\"beforeCreate\"),(n=Dt((t=o).$options.inject,t))&&(ge(!1),Object.keys(n).forEach(function(e){Ce(t,e,n[e])}),ge(!0)),jt(o),(i=(r=o).$options.provide)&&(r._provided=\"function\"==typeof i?i.call(r):i),_t(o,\"created\"),o.$options.el&&o.$mount(o.$options.el)},on=hn,an={get:function(){return this._data}},sn={get:function(){return this._props}},Object.defineProperty(on.prototype,\"$data\",an),Object.defineProperty(on.prototype,\"$props\",sn),on.prototype.$set=xe,on.prototype.$delete=ke,on.prototype.$watch=function(e,t,n){if(l(t))return Mt(this,e,t,n);(n=n||{}).user=!0;var r=new St(this,e,t,n);return n.immediate&&t.call(this,r.value),function(){r.teardown()}},ln=/^hook:/,(cn=hn).prototype.$on=function(e,t){if(Array.isArray(e))for(var n=0,r=e.length;n<r;n++)this.$on(e[n],t);else(this._events[e]||(this._events[e]=[])).push(t),ln.test(e)&&(this._hasHookEvent=!0);return this},cn.prototype.$once=function(e,t){var n=this;function r(){n.$off(e,r),t.apply(n,arguments)}return r.fn=t,n.$on(e,r),n},cn.prototype.$off=function(e,t){var n=this;if(!arguments.length)return n._events=Object.create(null),n;if(Array.isArray(e)){for(var r=0,i=e.length;r<i;r++)this.$off(e[r],t);return n}var o=n._events[e];if(!o)return n;if(!t)return n._events[e]=null,n;if(t)for(var a,s=o.length;s--;)if((a=o[s])===t||a.fn===t){o.splice(s,1);break}return n},cn.prototype.$emit=function(t){var n=this,e=n._events[t];if(e){e=1<e.length?h(e):e;for(var r=h(arguments,1),i=0,o=e.length;i<o;i++)try{e[i].apply(n,r)}catch(e){Fe(e,n,'event handler for \"'+t+'\"')}}return n},(un=hn).prototype._update=function(e,t){var n=this;n._isMounted&&_t(n,\"beforeUpdate\");var r=n.$el,i=n._vnode,o=mt;(mt=n)._vnode=e,i?n.$el=n.__patch__(i,e):(n.$el=n.__patch__(n.$el,e,t,!1,n.$options._parentElm,n.$options._refElm),n.$options._parentElm=n.$options._refElm=null),mt=o,r&&(r.__vue__=null),n.$el&&(n.$el.__vue__=n),n.$vnode&&n.$parent&&n.$vnode===n.$parent._vnode&&(n.$parent.$el=n.$el)},un.prototype.$forceUpdate=function(){this._watcher&&this._watcher.update()},un.prototype.$destroy=function(){var e=this;if(!e._isBeingDestroyed){_t(e,\"beforeDestroy\"),e._isBeingDestroyed=!0;var t=e.$parent;!t||t._isBeingDestroyed||e.$options.abstract||f(t.$children,e),e._watcher&&e._watcher.teardown();for(var n=e._watchers.length;n--;)e._watchers[n].teardown();e._data.__ob__&&e._data.__ob__.vmCount--,e._isDestroyed=!0,e.__patch__(e._vnode,null),_t(e,\"destroyed\"),e.$off(),e.$el&&(e.$el.__vue__=null),e.$vnode&&(e.$vnode.parent=null)}},Wt((fn=hn).prototype),fn.prototype.$nextTick=function(e){return Ze(e,this)},fn.prototype._render=function(){var t,n=this,e=n.$options,r=e.render,i=e._parentVnode;i&&(n.$scopedSlots=i.data.scopedSlots||y),n.$vnode=i;try{t=r.call(n._renderProxy,n.$createElement)}catch(e){Fe(e,n,\"render\"),t=n._vnode}return t instanceof le||(t=fe()),t.parent=i,t};var $n,wn,Cn,xn=[String,RegExp,Array],kn={KeepAlive:{name:\"keep-alive\",abstract:!0,props:{include:xn,exclude:xn,max:[String,Number]},created:function(){this.cache=Object.create(null),this.keys=[]},destroyed:function(){for(var e in this.cache)bn(this.cache,e,this.keys)},mounted:function(){var e=this;this.$watch(\"include\",function(t){_n(e,function(e){return gn(t,e)})}),this.$watch(\"exclude\",function(t){_n(e,function(e){return!gn(t,e)})})},render:function(){var e=this.$slots.default,t=lt(e),n=t&&t.componentOptions;if(n){var r=yn(n),i=this.include,o=this.exclude;if(i&&(!r||!gn(i,r))||o&&r&&gn(o,r))return t;var a=this.cache,s=this.keys,c=null==t.key?n.Ctor.cid+(n.tag?\"::\"+n.tag:\"\"):t.key;a[c]?(t.componentInstance=a[c].componentInstance,f(s,c),s.push(c)):(a[c]=t,s.push(c),this.max&&s.length>parseInt(this.max)&&bn(a,s[0],s,this._vnode)),t.data.keepAlive=!0}return t||e&&e[0]}}};$n=hn,Cn={get:function(){return j}},Object.defineProperty($n,\"config\",Cn),$n.util={warn:re,extend:m,mergeOptions:Ne,defineReactive:Ce},$n.set=xe,$n.delete=ke,$n.nextTick=Ze,$n.options=Object.create(null),k.forEach(function(e){$n.options[e+\"s\"]=Object.create(null)}),m(($n.options._base=$n).options.components,kn),$n.use=function(e){var t=this._installedPlugins||(this._installedPlugins=[]);if(-1<t.indexOf(e))return this;var n=h(arguments,1);return n.unshift(this),\"function\"==typeof e.install?e.install.apply(e,n):\"function\"==typeof e&&e.apply(null,n),t.push(e),this},$n.mixin=function(e){return this.options=Ne(this.options,e),this},mn($n),wn=$n,k.forEach(function(n){wn[n]=function(e,t){return t?(\"component\"===n&&l(t)&&(t.name=t.name||e,t=this.options._base.extend(t)),\"directive\"===n&&\"function\"==typeof t&&(t={bind:t,update:t}),this.options[n+\"s\"][e]=t):this.options[n+\"s\"][e]}}),Object.defineProperty(hn.prototype,\"$isServer\",{get:Y}),Object.defineProperty(hn.prototype,\"$ssrContext\",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(hn,\"FunctionalRenderContext\",{value:Gt}),hn.version=\"2.5.17\";var An=s(\"style,class\"),On=s(\"input,textarea,option,select,progress\"),Sn=function(e,t,n){return\"value\"===n&&On(e)&&\"button\"!==t||\"selected\"===n&&\"option\"===e||\"checked\"===n&&\"input\"===e||\"muted\"===n&&\"video\"===e},Tn=s(\"contenteditable,draggable,spellcheck\"),En=s(\"allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible\"),jn=\"http://www.w3.org/1999/xlink\",Nn=function(e){return\":\"===e.charAt(5)&&\"xlink\"===e.slice(0,5)},Ln=function(e){return Nn(e)?e.slice(6,e.length):\"\"},In=function(e){return null==e||!1===e};function Mn(e){for(var t=e.data,n=e,r=e;D(r.componentInstance);)(r=r.componentInstance._vnode)&&r.data&&(t=Dn(r.data,t));for(;D(n=n.parent);)n&&n.data&&(t=Dn(t,n.data));return function(e,t){if(D(e)||D(t))return Pn(e,Fn(t));return\"\"}(t.staticClass,t.class)}function Dn(e,t){return{staticClass:Pn(e.staticClass,t.staticClass),class:D(e.class)?[e.class,t.class]:t.class}}function Pn(e,t){return e?t?e+\" \"+t:e:t||\"\"}function Fn(e){return Array.isArray(e)?function(e){for(var t,n=\"\",r=0,i=e.length;r<i;r++)D(t=Fn(e[r]))&&\"\"!==t&&(n&&(n+=\" \"),n+=t);return n}(e):P(e)?function(e){var t=\"\";for(var n in e)e[n]&&(t&&(t+=\" \"),t+=n);return t}(e):\"string\"==typeof e?e:\"\"}var Rn={svg:\"http://www.w3.org/2000/svg\",math:\"http://www.w3.org/1998/Math/MathML\"},Hn=s(\"html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot\"),Bn=s(\"svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view\",!0),Un=function(e){return Hn(e)||Bn(e)};function Vn(e){return Bn(e)?\"svg\":\"math\"===e?\"math\":void 0}var zn=Object.create(null);var Kn=s(\"text,number,password,search,email,tel,url\");function Jn(e){if(\"string\"==typeof e){var t=document.querySelector(e);return t||document.createElement(\"div\")}return e}var qn=Object.freeze({createElement:function(e,t){var n=document.createElement(e);return\"select\"!==e||t.data&&t.data.attrs&&void 0!==t.data.attrs.multiple&&n.setAttribute(\"multiple\",\"multiple\"),n},createElementNS:function(e,t){return document.createElementNS(Rn[e],t)},createTextNode:function(e){return document.createTextNode(e)},createComment:function(e){return document.createComment(e)},insertBefore:function(e,t,n){e.insertBefore(t,n)},removeChild:function(e,t){e.removeChild(t)},appendChild:function(e,t){e.appendChild(t)},parentNode:function(e){return e.parentNode},nextSibling:function(e){return e.nextSibling},tagName:function(e){return e.tagName},setTextContent:function(e,t){e.textContent=t},setStyleScope:function(e,t){e.setAttribute(t,\"\")}}),Wn={create:function(e,t){Gn(t)},update:function(e,t){e.data.ref!==t.data.ref&&(Gn(e,!0),Gn(t))},destroy:function(e){Gn(e,!0)}};function Gn(e,t){var n=e.data.ref;if(D(n)){var r=e.context,i=e.componentInstance||e.elm,o=r.$refs;t?Array.isArray(o[n])?f(o[n],i):o[n]===i&&(o[n]=void 0):e.data.refInFor?Array.isArray(o[n])?o[n].indexOf(i)<0&&o[n].push(i):o[n]=[i]:o[n]=i}}var Zn=new le(\"\",{},[]),Xn=[\"create\",\"activate\",\"update\",\"remove\",\"destroy\"];function Yn(e,t){return e.key===t.key&&(e.tag===t.tag&&e.isComment===t.isComment&&D(e.data)===D(t.data)&&function(e,t){if(\"input\"!==e.tag)return!0;var n,r=D(n=e.data)&&D(n=n.attrs)&&n.type,i=D(n=t.data)&&D(n=n.attrs)&&n.type;return r===i||Kn(r)&&Kn(i)}(e,t)||S(e.isAsyncPlaceholder)&&e.asyncFactory===t.asyncFactory&&M(t.asyncFactory.error))}function Qn(e,t,n){var r,i,o={};for(r=t;r<=n;++r)D(i=e[r].key)&&(o[i]=r);return o}var er={create:tr,update:tr,destroy:function(e){tr(e,Zn)}};function tr(e,t){(e.data.directives||t.data.directives)&&function(t,n){var e,r,i,o=t===Zn,a=n===Zn,s=rr(t.data.directives,t.context),c=rr(n.data.directives,n.context),l=[],u=[];for(e in c)r=s[e],i=c[e],r?(i.oldValue=r.value,ir(i,\"update\",n,t),i.def&&i.def.componentUpdated&&u.push(i)):(ir(i,\"bind\",n,t),i.def&&i.def.inserted&&l.push(i));if(l.length){var f=function(){for(var e=0;e<l.length;e++)ir(l[e],\"inserted\",n,t)};o?rt(n,\"insert\",f):f()}u.length&&rt(n,\"postpatch\",function(){for(var e=0;e<u.length;e++)ir(u[e],\"componentUpdated\",n,t)});if(!o)for(e in s)c[e]||ir(s[e],\"unbind\",t,t,a)}(e,t)}var nr=Object.create(null);function rr(e,t){var n,r,i,o=Object.create(null);if(!e)return o;for(n=0;n<e.length;n++)(r=e[n]).modifiers||(r.modifiers=nr),(o[(i=r,i.rawName||i.name+\".\"+Object.keys(i.modifiers||{}).join(\".\"))]=r).def=Le(t.$options,\"directives\",r.name);return o}function ir(t,n,r,e,i){var o=t.def&&t.def[n];if(o)try{o(r.elm,t,r,e,i)}catch(e){Fe(e,r.context,\"directive \"+t.name+\" \"+n+\" hook\")}}var or=[Wn,er];function ar(e,t){var n=t.componentOptions;if(!(D(n)&&!1===n.Ctor.options.inheritAttrs||M(e.data.attrs)&&M(t.data.attrs))){var r,i,o=t.elm,a=e.data.attrs||{},s=t.data.attrs||{};for(r in D(s.__ob__)&&(s=t.data.attrs=m({},s)),s)i=s[r],a[r]!==i&&sr(o,r,i);for(r in(K||q)&&s.value!==a.value&&sr(o,\"value\",s.value),a)M(s[r])&&(Nn(r)?o.removeAttributeNS(jn,Ln(r)):Tn(r)||o.removeAttribute(r))}}function sr(e,t,n){-1<e.tagName.indexOf(\"-\")?cr(e,t,n):En(t)?In(n)?e.removeAttribute(t):(n=\"allowfullscreen\"===t&&\"EMBED\"===e.tagName?\"true\":t,e.setAttribute(t,n)):Tn(t)?e.setAttribute(t,In(n)||\"false\"===n?\"false\":\"true\"):Nn(t)?In(n)?e.removeAttributeNS(jn,Ln(t)):e.setAttributeNS(jn,t,n):cr(e,t,n)}function cr(t,e,n){if(In(n))t.removeAttribute(e);else{if(K&&!J&&\"TEXTAREA\"===t.tagName&&\"placeholder\"===e&&!t.__ieph){var r=function(e){e.stopImmediatePropagation(),t.removeEventListener(\"input\",r)};t.addEventListener(\"input\",r),t.__ieph=!0}t.setAttribute(e,n)}}var lr={create:ar,update:ar};function ur(e,t){var n=t.elm,r=t.data,i=e.data;if(!(M(r.staticClass)&&M(r.class)&&(M(i)||M(i.staticClass)&&M(i.class)))){var o=Mn(t),a=n._transitionClasses;D(a)&&(o=Pn(o,Fn(a))),o!==n._prevClass&&(n.setAttribute(\"class\",o),n._prevClass=o)}}var fr,pr,dr,vr,hr,mr,yr={create:ur,update:ur},gr=/[\\w).+\\-_$\\]]/;function _r(e){var t,n,r,i,o,a=!1,s=!1,c=!1,l=!1,u=0,f=0,p=0,d=0;for(r=0;r<e.length;r++)if(n=t,t=e.charCodeAt(r),a)39===t&&92!==n&&(a=!1);else if(s)34===t&&92!==n&&(s=!1);else if(c)96===t&&92!==n&&(c=!1);else if(l)47===t&&92!==n&&(l=!1);else if(124!==t||124===e.charCodeAt(r+1)||124===e.charCodeAt(r-1)||u||f||p){switch(t){case 34:s=!0;break;case 39:a=!0;break;case 96:c=!0;break;case 40:p++;break;case 41:p--;break;case 91:f++;break;case 93:f--;break;case 123:u++;break;case 125:u--}if(47===t){for(var v=r-1,h=void 0;0<=v&&\" \"===(h=e.charAt(v));v--);h&&gr.test(h)||(l=!0)}}else void 0===i?(d=r+1,i=e.slice(0,r).trim()):m();function m(){(o||(o=[])).push(e.slice(d,r).trim()),d=r+1}if(void 0===i?i=e.slice(0,r).trim():0!==d&&m(),o)for(r=0;r<o.length;r++)i=br(i,o[r]);return i}function br(e,t){var n=t.indexOf(\"(\");if(n<0)return'_f(\"'+t+'\")('+e+\")\";var r=t.slice(0,n),i=t.slice(n+1);return'_f(\"'+r+'\")('+e+(\")\"!==i?\",\"+i:i)}function $r(e){console.error(\"[Vue compiler]: \"+e)}function wr(e,t){return e?e.map(function(e){return e[t]}).filter(function(e){return e}):[]}function Cr(e,t,n){(e.props||(e.props=[])).push({name:t,value:n}),e.plain=!1}function xr(e,t,n){(e.attrs||(e.attrs=[])).push({name:t,value:n}),e.plain=!1}function kr(e,t,n){e.attrsMap[t]=n,e.attrsList.push({name:t,value:n})}function Ar(e,t,n,r,i,o){var a;(r=r||y).capture&&(delete r.capture,t=\"!\"+t),r.once&&(delete r.once,t=\"~\"+t),r.passive&&(delete r.passive,t=\"&\"+t),\"click\"===t&&(r.right?(t=\"contextmenu\",delete r.right):r.middle&&(t=\"mouseup\")),r.native?(delete r.native,a=e.nativeEvents||(e.nativeEvents={})):a=e.events||(e.events={});var s={value:n.trim()};r!==y&&(s.modifiers=r);var c=a[t];Array.isArray(c)?i?c.unshift(s):c.push(s):a[t]=c?i?[s,c]:[c,s]:s,e.plain=!1}function Or(e,t,n){var r=Sr(e,\":\"+t)||Sr(e,\"v-bind:\"+t);if(null!=r)return _r(r);if(!1!==n){var i=Sr(e,t);if(null!=i)return JSON.stringify(i)}}function Sr(e,t,n){var r;if(null!=(r=e.attrsMap[t]))for(var i=e.attrsList,o=0,a=i.length;o<a;o++)if(i[o].name===t){i.splice(o,1);break}return n&&delete e.attrsMap[t],r}function Tr(e,t,n){var r=n||{},i=r.number,o=\"$$v\",a=o;r.trim&&(a=\"(typeof $$v === 'string'? $$v.trim(): $$v)\"),i&&(a=\"_n(\"+a+\")\");var s=Er(t,a);e.model={value:\"(\"+t+\")\",expression:'\"'+t+'\"',callback:\"function ($$v) {\"+s+\"}\"}}function Er(e,t){var n=function(e){if(e=e.trim(),fr=e.length,e.indexOf(\"[\")<0||e.lastIndexOf(\"]\")<fr-1)return-1<(vr=e.lastIndexOf(\".\"))?{exp:e.slice(0,vr),key:'\"'+e.slice(vr+1)+'\"'}:{exp:e,key:null};pr=e,vr=hr=mr=0;for(;!Nr();)Lr(dr=jr())?Mr(dr):91===dr&&Ir(dr);return{exp:e.slice(0,hr),key:e.slice(hr+1,mr)}}(e);return null===n.key?e+\"=\"+t:\"$set(\"+n.exp+\", \"+n.key+\", \"+t+\")\"}function jr(){return pr.charCodeAt(++vr)}function Nr(){return fr<=vr}function Lr(e){return 34===e||39===e}function Ir(e){var t=1;for(hr=vr;!Nr();)if(Lr(e=jr()))Mr(e);else if(91===e&&t++,93===e&&t--,0===t){mr=vr;break}}function Mr(e){for(var t=e;!Nr()&&(e=jr())!==t;);}var Dr,Pr=\"__r\",Fr=\"__c\";function Rr(e,t,n,r,i){var o,a,s,c,l;t=(o=t)._withTask||(o._withTask=function(){Je=!0;var e=o.apply(null,arguments);return Je=!1,e}),n&&(a=t,s=e,c=r,l=Dr,t=function e(){null!==a.apply(null,arguments)&&Hr(s,e,c,l)}),Dr.addEventListener(e,t,Z?{capture:r,passive:i}:r)}function Hr(e,t,n,r){(r||Dr).removeEventListener(e,t._withTask||t,n)}function Br(e,t){if(!M(e.data.on)||!M(t.data.on)){var n=t.data.on||{},r=e.data.on||{};Dr=t.elm,function(e){if(D(e[Pr])){var t=K?\"change\":\"input\";e[t]=[].concat(e[Pr],e[t]||[]),delete e[Pr]}D(e[Fr])&&(e.change=[].concat(e[Fr],e.change||[]),delete e[Fr])}(n),nt(n,r,Rr,Hr,t.context),Dr=void 0}}var Ur={create:Br,update:Br};function Vr(e,t){if(!M(e.data.domProps)||!M(t.data.domProps)){var n,r,i,o,a=t.elm,s=e.data.domProps||{},c=t.data.domProps||{};for(n in D(c.__ob__)&&(c=t.data.domProps=m({},c)),s)M(c[n])&&(a[n]=\"\");for(n in c){if(r=c[n],\"textContent\"===n||\"innerHTML\"===n){if(t.children&&(t.children.length=0),r===s[n])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if(\"value\"===n){var l=M(a._value=r)?\"\":String(r);o=l,(i=a).composing||\"OPTION\"!==i.tagName&&!function(e,t){var n=!0;try{n=document.activeElement!==e}catch(e){}return n&&e.value!==t}(i,o)&&!function(e,t){var n=e.value,r=e._vModifiers;if(D(r)){if(r.lazy)return!1;if(r.number)return F(n)!==F(t);if(r.trim)return n.trim()!==t.trim()}return n!==t}(i,o)||(a.value=l)}else a[n]=r}}}var zr={create:Vr,update:Vr},Kr=e(function(e){var n={},r=/:(.+)/;return e.split(/;(?![^(]*\\))/g).forEach(function(e){if(e){var t=e.split(r);1<t.length&&(n[t[0].trim()]=t[1].trim())}}),n});function Jr(e){var t=qr(e.style);return e.staticStyle?m(e.staticStyle,t):t}function qr(e){return Array.isArray(e)?b(e):\"string\"==typeof e?Kr(e):e}var Wr,Gr=/^--/,Zr=/\\s*!important$/,Xr=function(e,t,n){if(Gr.test(t))e.style.setProperty(t,n);else if(Zr.test(n))e.style.setProperty(t,n.replace(Zr,\"\"),\"important\");else{var r=Qr(t);if(Array.isArray(n))for(var i=0,o=n.length;i<o;i++)e.style[r]=n[i];else e.style[r]=n}},Yr=[\"Webkit\",\"Moz\",\"ms\"],Qr=e(function(e){if(Wr=Wr||document.createElement(\"div\").style,\"filter\"!==(e=g(e))&&e in Wr)return e;for(var t=e.charAt(0).toUpperCase()+e.slice(1),n=0;n<Yr.length;n++){var r=Yr[n]+t;if(r in Wr)return r}});function ei(e,t){var n=t.data,r=e.data;if(!(M(n.staticStyle)&&M(n.style)&&M(r.staticStyle)&&M(r.style))){var i,o,a=t.elm,s=r.staticStyle,c=r.normalizedStyle||r.style||{},l=s||c,u=qr(t.data.style)||{};t.data.normalizedStyle=D(u.__ob__)?m({},u):u;var f=function(e,t){var n,r={};if(t)for(var i=e;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=Jr(i.data))&&m(r,n);(n=Jr(e.data))&&m(r,n);for(var o=e;o=o.parent;)o.data&&(n=Jr(o.data))&&m(r,n);return r}(t,!0);for(o in l)M(f[o])&&Xr(a,o,\"\");for(o in f)(i=f[o])!==l[o]&&Xr(a,o,null==i?\"\":i)}}var ti={create:ei,update:ei};function ni(t,e){if(e&&(e=e.trim()))if(t.classList)-1<e.indexOf(\" \")?e.split(/\\s+/).forEach(function(e){return t.classList.add(e)}):t.classList.add(e);else{var n=\" \"+(t.getAttribute(\"class\")||\"\")+\" \";n.indexOf(\" \"+e+\" \")<0&&t.setAttribute(\"class\",(n+e).trim())}}function ri(t,e){if(e&&(e=e.trim()))if(t.classList)-1<e.indexOf(\" \")?e.split(/\\s+/).forEach(function(e){return t.classList.remove(e)}):t.classList.remove(e),t.classList.length||t.removeAttribute(\"class\");else{for(var n=\" \"+(t.getAttribute(\"class\")||\"\")+\" \",r=\" \"+e+\" \";0<=n.indexOf(r);)n=n.replace(r,\" \");(n=n.trim())?t.setAttribute(\"class\",n):t.removeAttribute(\"class\")}}function ii(e){if(e){if(\"object\"==typeof e){var t={};return!1!==e.css&&m(t,oi(e.name||\"v\")),m(t,e),t}return\"string\"==typeof e?oi(e):void 0}}var oi=e(function(e){return{enterClass:e+\"-enter\",enterToClass:e+\"-enter-to\",enterActiveClass:e+\"-enter-active\",leaveClass:e+\"-leave\",leaveToClass:e+\"-leave-to\",leaveActiveClass:e+\"-leave-active\"}}),ai=B&&!J,si=\"transition\",ci=\"animation\",li=\"transition\",ui=\"transitionend\",fi=\"animation\",pi=\"animationend\";ai&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(li=\"WebkitTransition\",ui=\"webkitTransitionEnd\"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(fi=\"WebkitAnimation\",pi=\"webkitAnimationEnd\"));var di=B?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(e){return e()};function vi(e){di(function(){di(e)})}function hi(e,t){var n=e._transitionClasses||(e._transitionClasses=[]);n.indexOf(t)<0&&(n.push(t),ni(e,t))}function mi(e,t){e._transitionClasses&&f(e._transitionClasses,t),ri(e,t)}function yi(t,e,n){var r=_i(t,e),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===si?ui:pi,c=0,l=function(){t.removeEventListener(s,u),n()},u=function(e){e.target===t&&++c>=a&&l()};setTimeout(function(){c<a&&l()},o+1),t.addEventListener(s,u)}var gi=/\\b(transform|all)(,|$)/;function _i(e,t){var n,r=window.getComputedStyle(e),i=r[li+\"Delay\"].split(\", \"),o=r[li+\"Duration\"].split(\", \"),a=bi(i,o),s=r[fi+\"Delay\"].split(\", \"),c=r[fi+\"Duration\"].split(\", \"),l=bi(s,c),u=0,f=0;return t===si?0<a&&(n=si,u=a,f=o.length):t===ci?0<l&&(n=ci,u=l,f=c.length):f=(n=0<(u=Math.max(a,l))?l<a?si:ci:null)?n===si?o.length:c.length:0,{type:n,timeout:u,propCount:f,hasTransform:n===si&&gi.test(r[li+\"Property\"])}}function bi(n,e){for(;n.length<e.length;)n=n.concat(n);return Math.max.apply(null,e.map(function(e,t){return $i(e)+$i(n[t])}))}function $i(e){return 1e3*Number(e.slice(0,-1))}function wi(n,e){var r=n.elm;D(r._leaveCb)&&(r._leaveCb.cancelled=!0,r._leaveCb());var t=ii(n.data.transition);if(!M(t)&&!D(r._enterCb)&&1===r.nodeType){for(var i=t.css,o=t.type,a=t.enterClass,s=t.enterToClass,c=t.enterActiveClass,l=t.appearClass,u=t.appearToClass,f=t.appearActiveClass,p=t.beforeEnter,d=t.enter,v=t.afterEnter,h=t.enterCancelled,m=t.beforeAppear,y=t.appear,g=t.afterAppear,_=t.appearCancelled,b=t.duration,$=mt,w=mt.$vnode;w&&w.parent;)$=(w=w.parent).context;var C=!$._isMounted||!n.isRootInsert;if(!C||y||\"\"===y){var x=C&&l?l:a,k=C&&f?f:c,A=C&&u?u:s,O=C&&m||p,S=C&&\"function\"==typeof y?y:d,T=C&&g||v,E=C&&_||h,j=F(P(b)?b.enter:b),N=!1!==i&&!J,L=ki(S),I=r._enterCb=R(function(){N&&(mi(r,A),mi(r,k)),I.cancelled?(N&&mi(r,x),E&&E(r)):T&&T(r),r._enterCb=null});n.data.show||rt(n,\"insert\",function(){var e=r.parentNode,t=e&&e._pending&&e._pending[n.key];t&&t.tag===n.tag&&t.elm._leaveCb&&t.elm._leaveCb(),S&&S(r,I)}),O&&O(r),N&&(hi(r,x),hi(r,k),vi(function(){mi(r,x),I.cancelled||(hi(r,A),L||(xi(j)?setTimeout(I,j):yi(r,o,I)))})),n.data.show&&(e&&e(),S&&S(r,I)),N||L||I()}}}function Ci(e,t){var n=e.elm;D(n._enterCb)&&(n._enterCb.cancelled=!0,n._enterCb());var r=ii(e.data.transition);if(M(r)||1!==n.nodeType)return t();if(!D(n._leaveCb)){var i=r.css,o=r.type,a=r.leaveClass,s=r.leaveToClass,c=r.leaveActiveClass,l=r.beforeLeave,u=r.leave,f=r.afterLeave,p=r.leaveCancelled,d=r.delayLeave,v=r.duration,h=!1!==i&&!J,m=ki(u),y=F(P(v)?v.leave:v),g=n._leaveCb=R(function(){n.parentNode&&n.parentNode._pending&&(n.parentNode._pending[e.key]=null),h&&(mi(n,s),mi(n,c)),g.cancelled?(h&&mi(n,a),p&&p(n)):(t(),f&&f(n)),n._leaveCb=null});d?d(_):_()}function _(){g.cancelled||(e.data.show||((n.parentNode._pending||(n.parentNode._pending={}))[e.key]=e),l&&l(n),h&&(hi(n,a),hi(n,c),vi(function(){mi(n,a),g.cancelled||(hi(n,s),m||(xi(y)?setTimeout(g,y):yi(n,o,g)))})),u&&u(n,g),h||m||g())}}function xi(e){return\"number\"==typeof e&&!isNaN(e)}function ki(e){if(M(e))return!1;var t=e.fns;return D(t)?ki(Array.isArray(t)?t[0]:t):1<(e._length||e.length)}function Ai(e,t){!0!==t.data.show&&wi(t)}var Oi=function(e){var r,t,g={},n=e.modules,_=e.nodeOps;for(r=0;r<Xn.length;++r)for(g[Xn[r]]=[],t=0;t<n.length;++t)D(n[t][Xn[r]])&&g[Xn[r]].push(n[t][Xn[r]]);function o(e){var t=_.parentNode(e);D(t)&&_.removeChild(t,e)}function b(e,t,n,r,i,o,a){if(D(e.elm)&&D(o)&&(e=o[a]=de(e)),e.isRootInsert=!i,!function(e,t,n,r){var i=e.data;if(D(i)){var o=D(e.componentInstance)&&i.keepAlive;if(D(i=i.hook)&&D(i=i.init)&&i(e,!1,n,r),D(e.componentInstance))return d(e,t),S(o)&&function(e,t,n,r){for(var i,o=e;o.componentInstance;)if(o=o.componentInstance._vnode,D(i=o.data)&&D(i=i.transition)){for(i=0;i<g.activate.length;++i)g.activate[i](Zn,o);t.push(o);break}u(n,e.elm,r)}(e,t,n,r),!0}}(e,t,n,r)){var s=e.data,c=e.children,l=e.tag;D(l)?(e.elm=e.ns?_.createElementNS(e.ns,l):_.createElement(l,e),f(e),v(e,c,t),D(s)&&h(e,t)):S(e.isComment)?e.elm=_.createComment(e.text):e.elm=_.createTextNode(e.text),u(n,e.elm,r)}}function d(e,t){D(e.data.pendingInsert)&&(t.push.apply(t,e.data.pendingInsert),e.data.pendingInsert=null),e.elm=e.componentInstance.$el,$(e)?(h(e,t),f(e)):(Gn(e),t.push(e))}function u(e,t,n){D(e)&&(D(n)?n.parentNode===e&&_.insertBefore(e,t,n):_.appendChild(e,t))}function v(e,t,n){if(Array.isArray(t))for(var r=0;r<t.length;++r)b(t[r],n,e.elm,null,!0,t,r);else T(e.text)&&_.appendChild(e.elm,_.createTextNode(String(e.text)))}function $(e){for(;e.componentInstance;)e=e.componentInstance._vnode;return D(e.tag)}function h(e,t){for(var n=0;n<g.create.length;++n)g.create[n](Zn,e);D(r=e.data.hook)&&(D(r.create)&&r.create(Zn,e),D(r.insert)&&t.push(e))}function f(e){var t;if(D(t=e.fnScopeId))_.setStyleScope(e.elm,t);else for(var n=e;n;)D(t=n.context)&&D(t=t.$options._scopeId)&&_.setStyleScope(e.elm,t),n=n.parent;D(t=mt)&&t!==e.context&&t!==e.fnContext&&D(t=t.$options._scopeId)&&_.setStyleScope(e.elm,t)}function y(e,t,n,r,i,o){for(;r<=i;++r)b(n[r],o,e,t,!1,n,r)}function w(e){var t,n,r=e.data;if(D(r))for(D(t=r.hook)&&D(t=t.destroy)&&t(e),t=0;t<g.destroy.length;++t)g.destroy[t](e);if(D(t=e.children))for(n=0;n<e.children.length;++n)w(e.children[n])}function C(e,t,n,r){for(;n<=r;++n){var i=t[n];D(i)&&(D(i.tag)?(a(i),w(i)):o(i.elm))}}function a(e,t){if(D(t)||D(e.data)){var n,r=g.remove.length+1;for(D(t)?t.listeners+=r:t=function(e,t){function n(){0==--n.listeners&&o(e)}return n.listeners=t,n}(e.elm,r),D(n=e.componentInstance)&&D(n=n._vnode)&&D(n.data)&&a(n,t),n=0;n<g.remove.length;++n)g.remove[n](e,t);D(n=e.data.hook)&&D(n=n.remove)?n(e,t):t()}else o(e.elm)}function x(e,t,n,r){for(var i=n;i<r;i++){var o=t[i];if(D(o)&&Yn(e,o))return i}}function k(e,t,n,r){if(e!==t){var i=t.elm=e.elm;if(S(e.isAsyncPlaceholder))D(t.asyncFactory.resolved)?O(e.elm,t,n):t.isAsyncPlaceholder=!0;else if(S(t.isStatic)&&S(e.isStatic)&&t.key===e.key&&(S(t.isCloned)||S(t.isOnce)))t.componentInstance=e.componentInstance;else{var o,a=t.data;D(a)&&D(o=a.hook)&&D(o=o.prepatch)&&o(e,t);var s=e.children,c=t.children;if(D(a)&&$(t)){for(o=0;o<g.update.length;++o)g.update[o](e,t);D(o=a.hook)&&D(o=o.update)&&o(e,t)}M(t.text)?D(s)&&D(c)?s!==c&&function(e,t,n,r,i){for(var o,a,s,c=0,l=0,u=t.length-1,f=t[0],p=t[u],d=n.length-1,v=n[0],h=n[d],m=!i;c<=u&&l<=d;)M(f)?f=t[++c]:M(p)?p=t[--u]:Yn(f,v)?(k(f,v,r),f=t[++c],v=n[++l]):Yn(p,h)?(k(p,h,r),p=t[--u],h=n[--d]):Yn(f,h)?(k(f,h,r),m&&_.insertBefore(e,f.elm,_.nextSibling(p.elm)),f=t[++c],h=n[--d]):(Yn(p,v)?(k(p,v,r),m&&_.insertBefore(e,p.elm,f.elm),p=t[--u]):(M(o)&&(o=Qn(t,c,u)),M(a=D(v.key)?o[v.key]:x(v,t,c,u))?b(v,r,e,f.elm,!1,n,l):Yn(s=t[a],v)?(k(s,v,r),t[a]=void 0,m&&_.insertBefore(e,s.elm,f.elm)):b(v,r,e,f.elm,!1,n,l)),v=n[++l]);u<c?y(e,M(n[d+1])?null:n[d+1].elm,n,l,d,r):d<l&&C(0,t,c,u)}(i,s,c,n,r):D(c)?(D(e.text)&&_.setTextContent(i,\"\"),y(i,null,c,0,c.length-1,n)):D(s)?C(0,s,0,s.length-1):D(e.text)&&_.setTextContent(i,\"\"):e.text!==t.text&&_.setTextContent(i,t.text),D(a)&&D(o=a.hook)&&D(o=o.postpatch)&&o(e,t)}}}function A(e,t,n){if(S(n)&&D(e.parent))e.parent.data.pendingInsert=t;else for(var r=0;r<t.length;++r)t[r].data.hook.insert(t[r])}var m=s(\"attrs,class,staticClass,staticStyle,key\");function O(e,t,n,r){var i,o=t.tag,a=t.data,s=t.children;if(r=r||a&&a.pre,t.elm=e,S(t.isComment)&&D(t.asyncFactory))return t.isAsyncPlaceholder=!0;if(D(a)&&(D(i=a.hook)&&D(i=i.init)&&i(t,!0),D(i=t.componentInstance)))return d(t,n),!0;if(D(o)){if(D(s))if(e.hasChildNodes())if(D(i=a)&&D(i=i.domProps)&&D(i=i.innerHTML)){if(i!==e.innerHTML)return!1}else{for(var c=!0,l=e.firstChild,u=0;u<s.length;u++){if(!l||!O(l,s[u],n,r)){c=!1;break}l=l.nextSibling}if(!c||l)return!1}else v(t,s,n);if(D(a)){var f=!1;for(var p in a)if(!m(p)){f=!0,h(t,n);break}!f&&a.class&&Ye(a.class)}}else e.data!==t.text&&(e.data=t.text);return!0}return function(e,t,n,r,i,o){if(!M(t)){var a,s=!1,c=[];if(M(e))s=!0,b(t,c,i,o);else{var l=D(e.nodeType);if(!l&&Yn(e,t))k(e,t,c,r);else{if(l){if(1===e.nodeType&&e.hasAttribute(E)&&(e.removeAttribute(E),n=!0),S(n)&&O(e,t,c))return A(t,c,!0),e;a=e,e=new le(_.tagName(a).toLowerCase(),{},[],void 0,a)}var u=e.elm,f=_.parentNode(u);if(b(t,c,u._leaveCb?null:f,_.nextSibling(u)),D(t.parent))for(var p=t.parent,d=$(t);p;){for(var v=0;v<g.destroy.length;++v)g.destroy[v](p);if(p.elm=t.elm,d){for(var h=0;h<g.create.length;++h)g.create[h](Zn,p);var m=p.data.hook.insert;if(m.merged)for(var y=1;y<m.fns.length;y++)m.fns[y]()}else Gn(p);p=p.parent}D(f)?C(0,[e],0,0):D(e.tag)&&w(e)}}return A(t,c,s),t.elm}D(e)&&w(e)}}({nodeOps:qn,modules:[lr,yr,Ur,zr,ti,B?{create:Ai,activate:Ai,remove:function(e,t){!0!==e.data.show?Ci(e,t):t()}}:{}].concat(or)});J&&document.addEventListener(\"selectionchange\",function(){var e=document.activeElement;e&&e.vmodel&&Mi(e,\"input\")});var Si={inserted:function(e,t,n,r){\"select\"===n.tag?(r.elm&&!r.elm._vOptions?rt(n,\"postpatch\",function(){Si.componentUpdated(e,t,n)}):Ti(e,t,n.context),e._vOptions=[].map.call(e.options,Ni)):(\"textarea\"===n.tag||Kn(e.type))&&(e._vModifiers=t.modifiers,t.modifiers.lazy||(e.addEventListener(\"compositionstart\",Li),e.addEventListener(\"compositionend\",Ii),e.addEventListener(\"change\",Ii),J&&(e.vmodel=!0)))},componentUpdated:function(e,t,n){if(\"select\"===n.tag){Ti(e,t,n.context);var r=e._vOptions,i=e._vOptions=[].map.call(e.options,Ni);if(i.some(function(e,t){return!C(e,r[t])}))(e.multiple?t.value.some(function(e){return ji(e,i)}):t.value!==t.oldValue&&ji(t.value,i))&&Mi(e,\"change\")}}};function Ti(e,t,n){Ei(e,t,n),(K||q)&&setTimeout(function(){Ei(e,t,n)},0)}function Ei(e,t,n){var r=t.value,i=e.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=e.options.length;s<c;s++)if(a=e.options[s],i)o=-1<x(r,Ni(a)),a.selected!==o&&(a.selected=o);else if(C(Ni(a),r))return void(e.selectedIndex!==s&&(e.selectedIndex=s));i||(e.selectedIndex=-1)}}function ji(t,e){return e.every(function(e){return!C(e,t)})}function Ni(e){return\"_value\"in e?e._value:e.value}function Li(e){e.target.composing=!0}function Ii(e){e.target.composing&&(e.target.composing=!1,Mi(e.target,\"input\"))}function Mi(e,t){var n=document.createEvent(\"HTMLEvents\");n.initEvent(t,!0,!0),e.dispatchEvent(n)}function Di(e){return!e.componentInstance||e.data&&e.data.transition?e:Di(e.componentInstance._vnode)}var Pi={model:Si,show:{bind:function(e,t,n){var r=t.value,i=(n=Di(n)).data&&n.data.transition,o=e.__vOriginalDisplay=\"none\"===e.style.display?\"\":e.style.display;r&&i?(n.data.show=!0,wi(n,function(){e.style.display=o})):e.style.display=r?o:\"none\"},update:function(e,t,n){var r=t.value;!r!=!t.oldValue&&((n=Di(n)).data&&n.data.transition?(n.data.show=!0,r?wi(n,function(){e.style.display=e.__vOriginalDisplay}):Ci(n,function(){e.style.display=\"none\"})):e.style.display=r?e.__vOriginalDisplay:\"none\")},unbind:function(e,t,n,r,i){i||(e.style.display=e.__vOriginalDisplay)}}},Fi={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function Ri(e){var t=e&&e.componentOptions;return t&&t.Ctor.options.abstract?Ri(lt(t.children)):e}function Hi(e){var t={},n=e.$options;for(var r in n.propsData)t[r]=e[r];var i=n._parentListeners;for(var o in i)t[g(o)]=i[o];return t}function Bi(e,t){if(/\\d-keep-alive$/.test(t.tag))return e(\"keep-alive\",{props:t.componentOptions.propsData})}var Ui={name:\"transition\",props:Fi,abstract:!0,render:function(e){var t=this,n=this.$slots.default;if(n&&(n=n.filter(function(e){return e.tag||ct(e)})).length){var r=this.mode,i=n[0];if(function(e){for(;e=e.parent;)if(e.data.transition)return!0}(this.$vnode))return i;var o=Ri(i);if(!o)return i;if(this._leaving)return Bi(e,i);var a=\"__transition-\"+this._uid+\"-\";o.key=null==o.key?o.isComment?a+\"comment\":a+o.tag:T(o.key)?0===String(o.key).indexOf(a)?o.key:a+o.key:o.key;var s,c,l=(o.data||(o.data={})).transition=Hi(this),u=this._vnode,f=Ri(u);if(o.data.directives&&o.data.directives.some(function(e){return\"show\"===e.name})&&(o.data.show=!0),f&&f.data&&(s=o,(c=f).key!==s.key||c.tag!==s.tag)&&!ct(f)&&(!f.componentInstance||!f.componentInstance._vnode.isComment)){var p=f.data.transition=m({},l);if(\"out-in\"===r)return this._leaving=!0,rt(p,\"afterLeave\",function(){t._leaving=!1,t.$forceUpdate()}),Bi(e,i);if(\"in-out\"===r){if(ct(o))return u;var d,v=function(){d()};rt(l,\"afterEnter\",v),rt(l,\"enterCancelled\",v),rt(p,\"delayLeave\",function(e){d=e})}}return i}}},Vi=m({tag:String,moveClass:String},Fi);function zi(e){e.elm._moveCb&&e.elm._moveCb(),e.elm._enterCb&&e.elm._enterCb()}function Ki(e){e.data.newPos=e.elm.getBoundingClientRect()}function Ji(e){var t=e.data.pos,n=e.data.newPos,r=t.left-n.left,i=t.top-n.top;if(r||i){e.data.moved=!0;var o=e.elm.style;o.transform=o.WebkitTransform=\"translate(\"+r+\"px,\"+i+\"px)\",o.transitionDuration=\"0s\"}}delete Vi.mode;var qi={Transition:Ui,TransitionGroup:{props:Vi,render:function(e){for(var t=this.tag||this.$vnode.data.tag||\"span\",n=Object.create(null),r=this.prevChildren=this.children,i=this.$slots.default||[],o=this.children=[],a=Hi(this),s=0;s<i.length;s++){var c=i[s];c.tag&&null!=c.key&&0!==String(c.key).indexOf(\"__vlist\")&&(o.push(c),((n[c.key]=c).data||(c.data={})).transition=a)}if(r){for(var l=[],u=[],f=0;f<r.length;f++){var p=r[f];p.data.transition=a,p.data.pos=p.elm.getBoundingClientRect(),n[p.key]?l.push(p):u.push(p)}this.kept=e(t,null,l),this.removed=u}return e(t,null,o)},beforeUpdate:function(){this.__patch__(this._vnode,this.kept,!1,!0),this._vnode=this.kept},updated:function(){var e=this.prevChildren,r=this.moveClass||(this.name||\"v\")+\"-move\";e.length&&this.hasMove(e[0].elm,r)&&(e.forEach(zi),e.forEach(Ki),e.forEach(Ji),this._reflow=document.body.offsetHeight,e.forEach(function(e){if(e.data.moved){var n=e.elm,t=n.style;hi(n,r),t.transform=t.WebkitTransform=t.transitionDuration=\"\",n.addEventListener(ui,n._moveCb=function e(t){t&&!/transform$/.test(t.propertyName)||(n.removeEventListener(ui,e),n._moveCb=null,mi(n,r))})}}))},methods:{hasMove:function(e,t){if(!ai)return!1;if(this._hasMove)return this._hasMove;var n=e.cloneNode();e._transitionClasses&&e._transitionClasses.forEach(function(e){ri(n,e)}),ni(n,t),n.style.display=\"none\",this.$el.appendChild(n);var r=_i(n);return this.$el.removeChild(n),this._hasMove=r.hasTransform}}}};hn.config.mustUseProp=Sn,hn.config.isReservedTag=Un,hn.config.isReservedAttr=An,hn.config.getTagNamespace=Vn,hn.config.isUnknownElement=function(e){if(!B)return!0;if(Un(e))return!1;if(e=e.toLowerCase(),null!=zn[e])return zn[e];var t=document.createElement(e);return-1<e.indexOf(\"-\")?zn[e]=t.constructor===window.HTMLUnknownElement||t.constructor===window.HTMLElement:zn[e]=/HTMLUnknownElement/.test(t.toString())},m(hn.options.directives,Pi),m(hn.options.components,qi),hn.prototype.__patch__=B?Oi:$,hn.prototype.$mount=function(e,t){return e=e&&B?Jn(e):void 0,r=e,i=t,(n=this).$el=r,n.$options.render||(n.$options.render=fe),_t(n,\"beforeMount\"),new St(n,function(){n._update(n._render(),i)},$,null,!0),i=!1,null==n.$vnode&&(n._isMounted=!0,_t(n,\"mounted\")),n;var n,r,i},B&&setTimeout(function(){j.devtools&&Q&&Q.emit(\"init\",hn)},0);var Wi=/\\{\\{((?:.|\\n)+?)\\}\\}/g,Gi=/[-.*+?^${}()|[\\]\\/\\\\]/g,Zi=e(function(e){var t=e[0].replace(Gi,\"\\\\$&\"),n=e[1].replace(Gi,\"\\\\$&\");return new RegExp(t+\"((?:.|\\\\n)+?)\"+n,\"g\")});var Xi={staticKeys:[\"staticClass\"],transformNode:function(e,t){t.warn;var n=Sr(e,\"class\");n&&(e.staticClass=JSON.stringify(n));var r=Or(e,\"class\",!1);r&&(e.classBinding=r)},genData:function(e){var t=\"\";return e.staticClass&&(t+=\"staticClass:\"+e.staticClass+\",\"),e.classBinding&&(t+=\"class:\"+e.classBinding+\",\"),t}};var Yi,Qi={staticKeys:[\"staticStyle\"],transformNode:function(e,t){t.warn;var n=Sr(e,\"style\");n&&(e.staticStyle=JSON.stringify(Kr(n)));var r=Or(e,\"style\",!1);r&&(e.styleBinding=r)},genData:function(e){var t=\"\";return e.staticStyle&&(t+=\"staticStyle:\"+e.staticStyle+\",\"),e.styleBinding&&(t+=\"style:(\"+e.styleBinding+\"),\"),t}},eo=function(e){return(Yi=Yi||document.createElement(\"div\")).innerHTML=e,Yi.textContent},to=s(\"area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr\"),no=s(\"colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source\"),ro=s(\"address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track\"),io=/^\\s*([^\\s\"'<>\\/=]+)(?:\\s*(=)\\s*(?:\"([^\"]*)\"+|'([^']*)'+|([^\\s\"'=<>`]+)))?/,oo=\"[a-zA-Z_][\\\\w\\\\-\\\\.]*\",ao=\"((?:\"+oo+\"\\\\:)?\"+oo+\")\",so=new RegExp(\"^<\"+ao),co=/^\\s*(\\/?)>/,lo=new RegExp(\"^<\\\\/\"+ao+\"[^>]*>\"),uo=/^<!DOCTYPE [^>]+>/i,fo=/^<!\\--/,po=/^<!\\[/,vo=!1;\"x\".replace(/x(.)?/g,function(e,t){vo=\"\"===t});var ho=s(\"script,style,textarea\",!0),mo={},yo={\"<\":\"<\",\">\":\">\",\""\":'\"',\"&\":\"&\",\" \":\"\\n\",\"	\":\"\\t\"},go=/&(?:lt|gt|quot|amp);/g,_o=/&(?:lt|gt|quot|amp|#10|#9);/g,bo=s(\"pre,textarea\",!0),$o=function(e,t){return e&&bo(e)&&\"\\n\"===t[0]};var wo,Co,xo,ko,Ao,Oo,So,To,Eo=/^@|^v-on:/,jo=/^v-|^@|^:/,No=/([^]*?)\\s+(?:in|of)\\s+([^]*)/,Lo=/,([^,\\}\\]]*)(?:,([^,\\}\\]]*))?$/,Io=/^\\(|\\)$/g,Mo=/:(.*)$/,Do=/^:|^v-bind:/,Po=/\\.[^.]+/g,Fo=e(eo);function Ro(e,t,n){return{type:1,tag:e,attrsList:t,attrsMap:function(e){for(var t={},n=0,r=e.length;n<r;n++)t[e[n].name]=e[n].value;return t}(t),parent:n,children:[]}}function Ho(e,p){wo=p.warn||$r,Oo=p.isPreTag||O,So=p.mustUseProp||O,To=p.getTagNamespace||O,xo=wr(p.modules,\"transformNode\"),ko=wr(p.modules,\"preTransformNode\"),Ao=wr(p.modules,\"postTransformNode\"),Co=p.delimiters;var d,v,h=[],i=!1!==p.preserveWhitespace,m=!1,y=!1;function g(e){e.pre&&(m=!1),Oo(e.tag)&&(y=!1);for(var t=0;t<Ao.length;t++)Ao[t](e,p)}return function(i,d){for(var e,v,h=[],m=d.expectHTML,y=d.isUnaryTag||O,g=d.canBeLeftOpenTag||O,a=0;i;){if(e=i,v&&ho(v)){var r=0,o=v.toLowerCase(),t=mo[o]||(mo[o]=new RegExp(\"([\\\\s\\\\S]*?)(</\"+o+\"[^>]*>)\",\"i\")),n=i.replace(t,function(e,t,n){return r=n.length,ho(o)||\"noscript\"===o||(t=t.replace(/<!\\--([\\s\\S]*?)-->/g,\"$1\").replace(/<!\\[CDATA\\[([\\s\\S]*?)]]>/g,\"$1\")),$o(o,t)&&(t=t.slice(1)),d.chars&&d.chars(t),\"\"});a+=i.length-n.length,i=n,A(o,a-r,a)}else{var s=i.indexOf(\"<\");if(0===s){if(fo.test(i)){var c=i.indexOf(\"--\\x3e\");if(0<=c){d.shouldKeepComment&&d.comment(i.substring(4,c)),C(c+3);continue}}if(po.test(i)){var l=i.indexOf(\"]>\");if(0<=l){C(l+2);continue}}var u=i.match(uo);if(u){C(u[0].length);continue}var f=i.match(lo);if(f){var p=a;C(f[0].length),A(f[1],p,a);continue}var _=x();if(_){k(_),$o(v,i)&&C(1);continue}}var b=void 0,$=void 0,w=void 0;if(0<=s){for($=i.slice(s);!(lo.test($)||so.test($)||fo.test($)||po.test($)||(w=$.indexOf(\"<\",1))<0);)s+=w,$=i.slice(s);b=i.substring(0,s),C(s)}s<0&&(b=i,i=\"\"),d.chars&&b&&d.chars(b)}if(i===e){d.chars&&d.chars(i);break}}function C(e){a+=e,i=i.substring(e)}function x(){var e=i.match(so);if(e){var t,n,r={tagName:e[1],attrs:[],start:a};for(C(e[0].length);!(t=i.match(co))&&(n=i.match(io));)C(n[0].length),r.attrs.push(n);if(t)return r.unarySlash=t[1],C(t[0].length),r.end=a,r}}function k(e){var t=e.tagName,n=e.unarySlash;m&&(\"p\"===v&&ro(t)&&A(v),g(t)&&v===t&&A(t));for(var r,i,o,a=y(t)||!!n,s=e.attrs.length,c=new Array(s),l=0;l<s;l++){var u=e.attrs[l];vo&&-1===u[0].indexOf('\"\"')&&(\"\"===u[3]&&delete u[3],\"\"===u[4]&&delete u[4],\"\"===u[5]&&delete u[5]);var f=u[3]||u[4]||u[5]||\"\",p=\"a\"===t&&\"href\"===u[1]?d.shouldDecodeNewlinesForHref:d.shouldDecodeNewlines;c[l]={name:u[1],value:(r=f,i=p,o=i?_o:go,r.replace(o,function(e){return yo[e]}))}}a||(h.push({tag:t,lowerCasedTag:t.toLowerCase(),attrs:c}),v=t),d.start&&d.start(t,c,a,e.start,e.end)}function A(e,t,n){var r,i;if(null==t&&(t=a),null==n&&(n=a),e&&(i=e.toLowerCase()),e)for(r=h.length-1;0<=r&&h[r].lowerCasedTag!==i;r--);else r=0;if(0<=r){for(var o=h.length-1;r<=o;o--)d.end&&d.end(h[o].tag,t,n);h.length=r,v=r&&h[r-1].tag}else\"br\"===i?d.start&&d.start(e,[],!0,t,n):\"p\"===i&&(d.start&&d.start(e,[],!1,t,n),d.end&&d.end(e,t,n))}A()}(e,{warn:wo,expectHTML:p.expectHTML,isUnaryTag:p.isUnaryTag,canBeLeftOpenTag:p.canBeLeftOpenTag,shouldDecodeNewlines:p.shouldDecodeNewlines,shouldDecodeNewlinesForHref:p.shouldDecodeNewlinesForHref,shouldKeepComment:p.comments,start:function(e,t,n){var r=v&&v.ns||To(e);K&&\"svg\"===r&&(t=function(e){for(var t=[],n=0;n<e.length;n++){var r=e[n];Ko.test(r.name)||(r.name=r.name.replace(Jo,\"\"),t.push(r))}return t}(t));var i,o,a,s,c,l=Ro(e,t,v);r&&(l.ns=r),\"style\"!==(i=l).tag&&(\"script\"!==i.tag||i.attrsMap.type&&\"text/javascript\"!==i.attrsMap.type)||Y()||(l.forbidden=!0);for(var u=0;u<ko.length;u++)l=ko[u](l,p)||l;if(m||(null!=Sr(o=l,\"v-pre\")&&(o.pre=!0),l.pre&&(m=!0)),Oo(l.tag)&&(y=!0),m?function(e){var t=e.attrsList.length;if(t)for(var n=e.attrs=new Array(t),r=0;r<t;r++)n[r]={name:e.attrsList[r].name,value:JSON.stringify(e.attrsList[r].value)};else e.pre||(e.plain=!0)}(l):l.processed||(Uo(l),function(e){var t=Sr(e,\"v-if\");if(t)e.if=t,Vo(e,{exp:t,block:e});else{null!=Sr(e,\"v-else\")&&(e.else=!0);var n=Sr(e,\"v-else-if\");n&&(e.elseif=n)}}(l),null!=Sr(a=l,\"v-once\")&&(a.once=!0),Bo(l,p)),d?h.length||d.if&&(l.elseif||l.else)&&Vo(d,{exp:l.elseif,block:l}):d=l,v&&!l.forbidden)if(l.elseif||l.else)s=l,(c=function(e){var t=e.length;for(;t--;){if(1===e[t].type)return e[t];e.pop()}}(v.children))&&c.if&&Vo(c,{exp:s.elseif,block:s});else if(l.slotScope){v.plain=!1;var f=l.slotTarget||'\"default\"';(v.scopedSlots||(v.scopedSlots={}))[f]=l}else v.children.push(l),l.parent=v;n?g(l):(v=l,h.push(l))},end:function(){var e=h[h.length-1],t=e.children[e.children.length-1];t&&3===t.type&&\" \"===t.text&&!y&&e.children.pop(),h.length-=1,v=h[h.length-1],g(e)},chars:function(e){if(v&&(!K||\"textarea\"!==v.tag||v.attrsMap.placeholder!==e)){var t,n,r=v.children;if(e=y||e.trim()?\"script\"===(t=v).tag||\"style\"===t.tag?e:Fo(e):i&&r.length?\" \":\"\")!m&&\" \"!==e&&(n=function(e,t){var n=t?Zi(t):Wi;if(n.test(e)){for(var r,i,o,a=[],s=[],c=n.lastIndex=0;r=n.exec(e);){c<(i=r.index)&&(s.push(o=e.slice(c,i)),a.push(JSON.stringify(o)));var l=_r(r[1].trim());a.push(\"_s(\"+l+\")\"),s.push({\"@binding\":l}),c=i+r[0].length}return c<e.length&&(s.push(o=e.slice(c)),a.push(JSON.stringify(o))),{expression:a.join(\"+\"),tokens:s}}}(e,Co))?r.push({type:2,expression:n.expression,tokens:n.tokens,text:e}):\" \"===e&&r.length&&\" \"===r[r.length-1].text||r.push({type:3,text:e})}},comment:function(e){v.children.push({type:3,text:e,isComment:!0})}}),d}function Bo(e,t){var n,r,i,o;(r=Or(n=e,\"key\"))&&(n.key=r),e.plain=!e.key&&!e.attrsList.length,(o=Or(i=e,\"ref\"))&&(i.ref=o,i.refInFor=function(e){for(var t=e;t;){if(void 0!==t.for)return!0;t=t.parent}return!1}(i)),function(e){if(\"slot\"===e.tag)e.slotName=Or(e,\"name\");else{var t;\"template\"===e.tag?(t=Sr(e,\"scope\"),e.slotScope=t||Sr(e,\"slot-scope\")):(t=Sr(e,\"slot-scope\"))&&(e.slotScope=t);var n=Or(e,\"slot\");n&&(e.slotTarget='\"\"'===n?'\"default\"':n,\"template\"===e.tag||e.slotScope||xr(e,\"slot\",n))}}(e),function(e){var t;(t=Or(e,\"is\"))&&(e.component=t);null!=Sr(e,\"inline-template\")&&(e.inlineTemplate=!0)}(e);for(var a=0;a<xo.length;a++)e=xo[a](e,t)||e;!function(e){var t,n,r,i,o,a,s,c=e.attrsList;for(t=0,n=c.length;t<n;t++)if(r=i=c[t].name,o=c[t].value,jo.test(r))if(e.hasBindings=!0,(a=zo(r))&&(r=r.replace(Po,\"\")),Do.test(r))r=r.replace(Do,\"\"),o=_r(o),s=!1,a&&(a.prop&&(s=!0,\"innerHtml\"===(r=g(r))&&(r=\"innerHTML\")),a.camel&&(r=g(r)),a.sync&&Ar(e,\"update:\"+g(r),Er(o,\"$event\"))),s||!e.component&&So(e.tag,e.attrsMap.type,r)?Cr(e,r,o):xr(e,r,o);else if(Eo.test(r))r=r.replace(Eo,\"\"),Ar(e,r,o,a,!1);else{var l=(r=r.replace(jo,\"\")).match(Mo),u=l&&l[1];u&&(r=r.slice(0,-(u.length+1))),p=r,d=i,v=o,h=u,m=a,((f=e).directives||(f.directives=[])).push({name:p,rawName:d,value:v,arg:h,modifiers:m}),f.plain=!1}else xr(e,r,JSON.stringify(o)),!e.component&&\"muted\"===r&&So(e.tag,e.attrsMap.type,r)&&Cr(e,r,\"true\");var f,p,d,v,h,m}(e)}function Uo(e){var t;if(t=Sr(e,\"v-for\")){var n=function(e){var t=e.match(No);if(!t)return;var n={};n.for=t[2].trim();var r=t[1].trim().replace(Io,\"\"),i=r.match(Lo);i?(n.alias=r.replace(Lo,\"\"),n.iterator1=i[1].trim(),i[2]&&(n.iterator2=i[2].trim())):n.alias=r;return n}(t);n&&m(e,n)}}function Vo(e,t){e.ifConditions||(e.ifConditions=[]),e.ifConditions.push(t)}function zo(e){var t=e.match(Po);if(t){var n={};return t.forEach(function(e){n[e.slice(1)]=!0}),n}}var Ko=/^xmlns:NS\\d+/,Jo=/^NS\\d+:/;function qo(e){return Ro(e.tag,e.attrsList.slice(),e.parent)}var Wo=[Xi,Qi,{preTransformNode:function(e,t){if(\"input\"===e.tag){var n,r=e.attrsMap;if(!r[\"v-model\"])return;if((r[\":type\"]||r[\"v-bind:type\"])&&(n=Or(e,\"type\")),r.type||n||!r[\"v-bind\"]||(n=\"(\"+r[\"v-bind\"]+\").type\"),n){var i=Sr(e,\"v-if\",!0),o=i?\"&&(\"+i+\")\":\"\",a=null!=Sr(e,\"v-else\",!0),s=Sr(e,\"v-else-if\",!0),c=qo(e);Uo(c),kr(c,\"type\",\"checkbox\"),Bo(c,t),c.processed=!0,c.if=\"(\"+n+\")==='checkbox'\"+o,Vo(c,{exp:c.if,block:c});var l=qo(e);Sr(l,\"v-for\",!0),kr(l,\"type\",\"radio\"),Bo(l,t),Vo(c,{exp:\"(\"+n+\")==='radio'\"+o,block:l});var u=qo(e);return Sr(u,\"v-for\",!0),kr(u,\":type\",n),Bo(u,t),Vo(c,{exp:i,block:u}),a?c.else=!0:s&&(c.elseif=s),c}}}}];var Go,Zo,Xo,Yo={expectHTML:!0,modules:Wo,directives:{model:function(e,t,n){var r,i,o,a,s,c,l,u,f,p,d,v,h,m,y,g,_=t.value,b=t.modifiers,$=e.tag,w=e.attrsMap.type;if(e.component)return Tr(e,_,b),!1;if(\"select\"===$)h=e,m=_,g=(g='var $$selectedVal = Array.prototype.filter.call($event.target.options,function(o){return o.selected}).map(function(o){var val = \"_value\" in o ? o._value : o.value;return '+((y=b)&&y.number?\"_n(val)\":\"val\")+\"});\")+\" \"+Er(m,\"$event.target.multiple ? $$selectedVal : $$selectedVal[0]\"),Ar(h,\"change\",g,null,!0);else if(\"input\"===$&&\"checkbox\"===w)c=e,l=_,f=(u=b)&&u.number,p=Or(c,\"value\")||\"null\",d=Or(c,\"true-value\")||\"true\",v=Or(c,\"false-value\")||\"false\",Cr(c,\"checked\",\"Array.isArray(\"+l+\")?_i(\"+l+\",\"+p+\")>-1\"+(\"true\"===d?\":(\"+l+\")\":\":_q(\"+l+\",\"+d+\")\")),Ar(c,\"change\",\"var $$a=\"+l+\",$$el=$event.target,$$c=$$el.checked?(\"+d+\"):(\"+v+\");if(Array.isArray($$a)){var $$v=\"+(f?\"_n(\"+p+\")\":p)+\",$$i=_i($$a,$$v);if($$el.checked){$$i<0&&(\"+Er(l,\"$$a.concat([$$v])\")+\")}else{$$i>-1&&(\"+Er(l,\"$$a.slice(0,$$i).concat($$a.slice($$i+1))\")+\")}}else{\"+Er(l,\"$$c\")+\"}\",null,!0);else if(\"input\"===$&&\"radio\"===w)r=e,i=_,a=(o=b)&&o.number,s=Or(r,\"value\")||\"null\",Cr(r,\"checked\",\"_q(\"+i+\",\"+(s=a?\"_n(\"+s+\")\":s)+\")\"),Ar(r,\"change\",Er(i,s),null,!0);else if(\"input\"===$||\"textarea\"===$)!function(e,t,n){var r=e.attrsMap.type,i=n||{},o=i.lazy,a=i.number,s=i.trim,c=!o&&\"range\"!==r,l=o?\"change\":\"range\"===r?Pr:\"input\",u=\"$event.target.value\";s&&(u=\"$event.target.value.trim()\"),a&&(u=\"_n(\"+u+\")\");var f=Er(t,u);c&&(f=\"if($event.target.composing)return;\"+f),Cr(e,\"value\",\"(\"+t+\")\"),Ar(e,l,f,null,!0),(s||a)&&Ar(e,\"blur\",\"$forceUpdate()\")}(e,_,b);else if(!j.isReservedTag($))return Tr(e,_,b),!1;return!0},text:function(e,t){t.value&&Cr(e,\"textContent\",\"_s(\"+t.value+\")\")},html:function(e,t){t.value&&Cr(e,\"innerHTML\",\"_s(\"+t.value+\")\")}},isPreTag:function(e){return\"pre\"===e},isUnaryTag:to,mustUseProp:Sn,canBeLeftOpenTag:no,isReservedTag:Un,getTagNamespace:Vn,staticKeys:(Go=Wo,Go.reduce(function(e,t){return e.concat(t.staticKeys||[])},[]).join(\",\"))},Qo=e(function(e){return s(\"type,tag,attrsList,attrsMap,plain,parent,children,attrs\"+(e?\",\"+e:\"\"))});function ea(e,t){e&&(Zo=Qo(t.staticKeys||\"\"),Xo=t.isReservedTag||O,function e(t){t.static=function(e){if(2===e.type)return!1;if(3===e.type)return!0;return!(!e.pre&&(e.hasBindings||e.if||e.for||c(e.tag)||!Xo(e.tag)||function(e){for(;e.parent;){if(\"template\"!==(e=e.parent).tag)return!1;if(e.for)return!0}return!1}(e)||!Object.keys(e).every(Zo)))}(t);if(1===t.type){if(!Xo(t.tag)&&\"slot\"!==t.tag&&null==t.attrsMap[\"inline-template\"])return;for(var n=0,r=t.children.length;n<r;n++){var i=t.children[n];e(i),i.static||(t.static=!1)}if(t.ifConditions)for(var o=1,a=t.ifConditions.length;o<a;o++){var s=t.ifConditions[o].block;e(s),s.static||(t.static=!1)}}}(e),function e(t,n){if(1===t.type){if((t.static||t.once)&&(t.staticInFor=n),t.static&&t.children.length&&(1!==t.children.length||3!==t.children[0].type))return void(t.staticRoot=!0);if(t.staticRoot=!1,t.children)for(var r=0,i=t.children.length;r<i;r++)e(t.children[r],n||!!t.for);if(t.ifConditions)for(var o=1,a=t.ifConditions.length;o<a;o++)e(t.ifConditions[o].block,n)}}(e,!1))}var ta=/^([\\w$_]+|\\([^)]*?\\))\\s*=>|^function\\s*\\(/,na=/^[A-Za-z_$][\\w$]*(?:\\.[A-Za-z_$][\\w$]*|\\['[^']*?']|\\[\"[^\"]*?\"]|\\[\\d+]|\\[[A-Za-z_$][\\w$]*])*$/,ra={esc:27,tab:9,enter:13,space:32,up:38,left:37,right:39,down:40,delete:[8,46]},ia={esc:\"Escape\",tab:\"Tab\",enter:\"Enter\",space:\" \",up:[\"Up\",\"ArrowUp\"],left:[\"Left\",\"ArrowLeft\"],right:[\"Right\",\"ArrowRight\"],down:[\"Down\",\"ArrowDown\"],delete:[\"Backspace\",\"Delete\"]},oa=function(e){return\"if(\"+e+\")return null;\"},aa={stop:\"$event.stopPropagation();\",prevent:\"$event.preventDefault();\",self:oa(\"$event.target !== $event.currentTarget\"),ctrl:oa(\"!$event.ctrlKey\"),shift:oa(\"!$event.shiftKey\"),alt:oa(\"!$event.altKey\"),meta:oa(\"!$event.metaKey\"),left:oa(\"'button' in $event && $event.button !== 0\"),middle:oa(\"'button' in $event && $event.button !== 1\"),right:oa(\"'button' in $event && $event.button !== 2\")};function sa(e,t,n){var r=t?\"nativeOn:{\":\"on:{\";for(var i in e)r+='\"'+i+'\":'+ca(i,e[i])+\",\";return r.slice(0,-1)+\"}\"}function ca(t,e){if(!e)return\"function(){}\";if(Array.isArray(e))return\"[\"+e.map(function(e){return ca(t,e)}).join(\",\")+\"]\";var n=na.test(e.value),r=ta.test(e.value);if(e.modifiers){var i=\"\",o=\"\",a=[];for(var s in e.modifiers)if(aa[s])o+=aa[s],ra[s]&&a.push(s);else if(\"exact\"===s){var c=e.modifiers;o+=oa([\"ctrl\",\"shift\",\"alt\",\"meta\"].filter(function(e){return!c[e]}).map(function(e){return\"$event.\"+e+\"Key\"}).join(\"||\"))}else a.push(s);return a.length&&(i+=\"if(!('button' in $event)&&\"+a.map(la).join(\"&&\")+\")return null;\"),o&&(i+=o),\"function($event){\"+i+(n?\"return \"+e.value+\"($event)\":r?\"return (\"+e.value+\")($event)\":e.value)+\"}\"}return n||r?e.value:\"function($event){\"+e.value+\"}\"}function la(e){var t=parseInt(e,10);if(t)return\"$event.keyCode!==\"+t;var n=ra[e],r=ia[e];return\"_k($event.keyCode,\"+JSON.stringify(e)+\",\"+JSON.stringify(n)+\",$event.key,\"+JSON.stringify(r)+\")\"}var ua={on:function(e,t){e.wrapListeners=function(e){return\"_g(\"+e+\",\"+t.value+\")\"}},bind:function(t,n){t.wrapData=function(e){return\"_b(\"+e+\",'\"+t.tag+\"',\"+n.value+\",\"+(n.modifiers&&n.modifiers.prop?\"true\":\"false\")+(n.modifiers&&n.modifiers.sync?\",true\":\"\")+\")\"}},cloak:$},fa=function(e){this.options=e,this.warn=e.warn||$r,this.transforms=wr(e.modules,\"transformCode\"),this.dataGenFns=wr(e.modules,\"genData\"),this.directives=m(m({},ua),e.directives);var t=e.isReservedTag||O;this.maybeComponent=function(e){return!t(e.tag)},this.onceId=0,this.staticRenderFns=[]};function pa(e,t){var n=new fa(t);return{render:\"with(this){return \"+(e?da(e,n):'_c(\"div\")')+\"}\",staticRenderFns:n.staticRenderFns}}function da(e,t){if(e.staticRoot&&!e.staticProcessed)return va(e,t);if(e.once&&!e.onceProcessed)return ha(e,t);if(e.for&&!e.forProcessed)return f=t,v=(u=e).for,h=u.alias,m=u.iterator1?\",\"+u.iterator1:\"\",y=u.iterator2?\",\"+u.iterator2:\"\",u.forProcessed=!0,(d||\"_l\")+\"((\"+v+\"),function(\"+h+m+y+\"){return \"+(p||da)(u,f)+\"})\";if(e.if&&!e.ifProcessed)return ma(e,t);if(\"template\"!==e.tag||e.slotTarget){if(\"slot\"===e.tag)return function(e,t){var n=e.slotName||'\"default\"',r=_a(e,t),i=\"_t(\"+n+(r?\",\"+r:\"\"),o=e.attrs&&\"{\"+e.attrs.map(function(e){return g(e.name)+\":\"+e.value}).join(\",\")+\"}\",a=e.attrsMap[\"v-bind\"];!o&&!a||r||(i+=\",null\");o&&(i+=\",\"+o);a&&(i+=(o?\"\":\",null\")+\",\"+a);return i+\")\"}(e,t);var n;if(e.component)a=e.component,c=t,l=(s=e).inlineTemplate?null:_a(s,c,!0),n=\"_c(\"+a+\",\"+ya(s,c)+(l?\",\"+l:\"\")+\")\";else{var r=e.plain?void 0:ya(e,t),i=e.inlineTemplate?null:_a(e,t,!0);n=\"_c('\"+e.tag+\"'\"+(r?\",\"+r:\"\")+(i?\",\"+i:\"\")+\")\"}for(var o=0;o<t.transforms.length;o++)n=t.transforms[o](e,n);return n}return _a(e,t)||\"void 0\";var a,s,c,l,u,f,p,d,v,h,m,y}function va(e,t){return e.staticProcessed=!0,t.staticRenderFns.push(\"with(this){return \"+da(e,t)+\"}\"),\"_m(\"+(t.staticRenderFns.length-1)+(e.staticInFor?\",true\":\"\")+\")\"}function ha(e,t){if(e.onceProcessed=!0,e.if&&!e.ifProcessed)return ma(e,t);if(e.staticInFor){for(var n=\"\",r=e.parent;r;){if(r.for){n=r.key;break}r=r.parent}return n?\"_o(\"+da(e,t)+\",\"+t.onceId+++\",\"+n+\")\":da(e,t)}return va(e,t)}function ma(e,t,n,r){return e.ifProcessed=!0,function e(t,n,r,i){if(!t.length)return i||\"_e()\";var o=t.shift();return o.exp?\"(\"+o.exp+\")?\"+a(o.block)+\":\"+e(t,n,r,i):\"\"+a(o.block);function a(e){return r?r(e,n):e.once?ha(e,n):da(e,n)}}(e.ifConditions.slice(),t,n,r)}function ya(e,t){var n,r,i=\"{\",o=function(e,t){var n=e.directives;if(!n)return;var r,i,o,a,s=\"directives:[\",c=!1;for(r=0,i=n.length;r<i;r++){o=n[r],a=!0;var l=t.directives[o.name];l&&(a=!!l(e,o,t.warn)),a&&(c=!0,s+='{name:\"'+o.name+'\",rawName:\"'+o.rawName+'\"'+(o.value?\",value:(\"+o.value+\"),expression:\"+JSON.stringify(o.value):\"\")+(o.arg?',arg:\"'+o.arg+'\"':\"\")+(o.modifiers?\",modifiers:\"+JSON.stringify(o.modifiers):\"\")+\"},\")}if(c)return s.slice(0,-1)+\"]\"}(e,t);o&&(i+=o+\",\"),e.key&&(i+=\"key:\"+e.key+\",\"),e.ref&&(i+=\"ref:\"+e.ref+\",\"),e.refInFor&&(i+=\"refInFor:true,\"),e.pre&&(i+=\"pre:true,\"),e.component&&(i+='tag:\"'+e.tag+'\",');for(var a=0;a<t.dataGenFns.length;a++)i+=t.dataGenFns[a](e);if(e.attrs&&(i+=\"attrs:{\"+wa(e.attrs)+\"},\"),e.props&&(i+=\"domProps:{\"+wa(e.props)+\"},\"),e.events&&(i+=sa(e.events,!1,t.warn)+\",\"),e.nativeEvents&&(i+=sa(e.nativeEvents,!0,t.warn)+\",\"),e.slotTarget&&!e.slotScope&&(i+=\"slot:\"+e.slotTarget+\",\"),e.scopedSlots&&(i+=(n=e.scopedSlots,r=t,\"scopedSlots:_u([\"+Object.keys(n).map(function(e){return ga(e,n[e],r)}).join(\",\")+\"]),\")),e.model&&(i+=\"model:{value:\"+e.model.value+\",callback:\"+e.model.callback+\",expression:\"+e.model.expression+\"},\"),e.inlineTemplate){var s=function(e,t){var n=e.children[0];if(1===n.type){var r=pa(n,t.options);return\"inlineTemplate:{render:function(){\"+r.render+\"},staticRenderFns:[\"+r.staticRenderFns.map(function(e){return\"function(){\"+e+\"}\"}).join(\",\")+\"]}\"}}(e,t);s&&(i+=s+\",\")}return i=i.replace(/,$/,\"\")+\"}\",e.wrapData&&(i=e.wrapData(i)),e.wrapListeners&&(i=e.wrapListeners(i)),i}function ga(e,t,n){return t.for&&!t.forProcessed?(r=e,o=n,a=(i=t).for,s=i.alias,c=i.iterator1?\",\"+i.iterator1:\"\",l=i.iterator2?\",\"+i.iterator2:\"\",i.forProcessed=!0,\"_l((\"+a+\"),function(\"+s+c+l+\"){return \"+ga(r,i,o)+\"})\"):\"{key:\"+e+\",fn:\"+(\"function(\"+String(t.slotScope)+\"){return \"+(\"template\"===t.tag?t.if?t.if+\"?\"+(_a(t,n)||\"undefined\")+\":undefined\":_a(t,n)||\"undefined\":da(t,n))+\"}\")+\"}\";var r,i,o,a,s,c,l}function _a(e,t,n,r,i){var o=e.children;if(o.length){var a=o[0];if(1===o.length&&a.for&&\"template\"!==a.tag&&\"slot\"!==a.tag)return(r||da)(a,t);var s=n?function(e,t){for(var n=0,r=0;r<e.length;r++){var i=e[r];if(1===i.type){if(ba(i)||i.ifConditions&&i.ifConditions.some(function(e){return ba(e.block)})){n=2;break}(t(i)||i.ifConditions&&i.ifConditions.some(function(e){return t(e.block)}))&&(n=1)}}return n}(o,t.maybeComponent):0,c=i||$a;return\"[\"+o.map(function(e){return c(e,t)}).join(\",\")+\"]\"+(s?\",\"+s:\"\")}}function ba(e){return void 0!==e.for||\"template\"===e.tag||\"slot\"===e.tag}function $a(e,t){return 1===e.type?da(e,t):3===e.type&&e.isComment?(r=e,\"_e(\"+JSON.stringify(r.text)+\")\"):\"_v(\"+(2===(n=e).type?n.expression:Ca(JSON.stringify(n.text)))+\")\";var n,r}function wa(e){for(var t=\"\",n=0;n<e.length;n++){var r=e[n];t+='\"'+r.name+'\":'+Ca(r.value)+\",\"}return t.slice(0,-1)}function Ca(e){return e.replace(/\\u2028/g,\"\\\\u2028\").replace(/\\u2029/g,\"\\\\u2029\")}new RegExp(\"\\\\b\"+\"do,if,for,let,new,try,var,case,else,with,await,break,catch,class,const,super,throw,while,yield,delete,export,import,return,switch,default,extends,finally,continue,debugger,function,arguments\".split(\",\").join(\"\\\\b|\\\\b\")+\"\\\\b\"),new RegExp(\"\\\\b\"+\"delete,typeof,void\".split(\",\").join(\"\\\\s*\\\\([^\\\\)]*\\\\)|\\\\b\")+\"\\\\s*\\\\([^\\\\)]*\\\\)\");function xa(t,n){try{return new Function(t)}catch(e){return n.push({err:e,code:t}),$}}var ka,Aa,Oa=(ka=function(e,t){var n=Ho(e.trim(),t);!1!==t.optimize&&ea(n,t);var r=pa(n,t);return{ast:n,render:r.render,staticRenderFns:r.staticRenderFns}},function(s){function e(e,t){var n=Object.create(s),r=[],i=[];if(n.warn=function(e,t){(t?i:r).push(e)},t)for(var o in t.modules&&(n.modules=(s.modules||[]).concat(t.modules)),t.directives&&(n.directives=m(Object.create(s.directives||null),t.directives)),t)\"modules\"!==o&&\"directives\"!==o&&(n[o]=t[o]);var a=ka(e,n);return a.errors=r,a.tips=i,a}return{compile:e,compileToFunctions:(c=e,l=Object.create(null),function(e,t,n){(t=m({},t)).warn,delete t.warn;var r=t.delimiters?String(t.delimiters)+e:e;if(l[r])return l[r];var i=c(e,t),o={},a=[];return o.render=xa(i.render,a),o.staticRenderFns=i.staticRenderFns.map(function(e){return xa(e,a)}),l[r]=o})};var c,l})(Yo).compileToFunctions;function Sa(e){return(Aa=Aa||document.createElement(\"div\")).innerHTML=e?'<a href=\"\\n\"/>':'<div a=\"\\n\"/>',0<Aa.innerHTML.indexOf(\" \")}var Ta=!!B&&Sa(!1),Ea=!!B&&Sa(!0),ja=e(function(e){var t=Jn(e);return t&&t.innerHTML}),Na=hn.prototype.$mount;return hn.prototype.$mount=function(e,t){if((e=e&&Jn(e))===document.body||e===document.documentElement)return this;var n=this.$options;if(!n.render){var r=n.template;if(r)if(\"string\"==typeof r)\"#\"===r.charAt(0)&&(r=ja(r));else{if(!r.nodeType)return this;r=r.innerHTML}else e&&(r=function(e){{if(e.outerHTML)return e.outerHTML;var t=document.createElement(\"div\");return t.appendChild(e.cloneNode(!0)),t.innerHTML}}(e));if(r){var i=Oa(r,{shouldDecodeNewlines:Ta,shouldDecodeNewlinesForHref:Ea,delimiters:n.delimiters,comments:n.comments},this),o=i.render,a=i.staticRenderFns;n.render=o,n.staticRenderFns=a}}return Na.call(this,e,t)},hn.compile=Oa,hn});"
},
"$:/plugins/Guitlle/vuewiki/readme": {
"title": "$:/plugins/Guitlle/vuewiki/readme",
"created": "20180909170241098",
"modified": "20180809172555339",
"tags": "Docs",
"type": "text/vnd.tiddlywiki",
"text": "''VueWiki'' is a plugin that integrates vue.js with tiddlywiki. It is integrated with ''[ext[uiv|https://uiv.wxsm.space/getting-started]]'', a library of vue.js components that uses bootstrap. This plugin also includes bootstrap css and glyphicons. \n\nThe source code is [ext[here|//github.com/Guitlle/vuewiki]].\n\nTo make a vue.js tiddler use the type ``application/prs.vuejs``. This automatically includes the Uiv components library. The text of the tiddler will be used as the vue template and the tiddler fields will be available through the \"self\" namespace. You can also import another tiddler by having a field like so: \n\n```\ntiddler_namespace: My External Tiddler\n```\n\nTo access the text content of that tiddler you would use the following path: ``imports.namespace.text``. If you want to get another field, put the field name instead of ``text``.\n\nSee the [[Sample Vue Tiddler]] to see a working demo. Edit it to see how fields are accessed\n\n!!! Helper functions\n\n| arrayPush(fieldPath, extraPath, item)|This function pushes an item to an array. The fieldPath is a string of the path of the field to modify. For instance, if you want to push an item to an array in the current tiddler named \"array1\", this should be \"self.array1\". If it is in an imported tiddler named \"external\", this should be \"imports.external.array1\". extraPath is the path to the array if it is contained in a json object. item is the item that will be pushed.|\n| arraySplice(fieldPath, extraPath, start, delCount, item)|This function calls the splice function on an array. The fieldPath and extraPath are the same as above. start, delCount and item are the arguments you would normally pass to splice. The resulting array is assigned in place.|\n| objectSet(fieldPath, extraPath, value)|This sets a value in a JSON object.|\n\nThe [[Sample Vue Tiddler]] shows how to use these functions.\n\n!!! Examples:\n\n* [[Sample Vue Tiddler]]\n* [[Phonebook]]\n"
}
}
}
{
"tiddlers": {
"$:/MetaTabs/Language": {
"text": "The fields of this tiddler configure captions and buttons of the Metatabs-Plugin. \nYou can change them to your desired language.\nBecause I started this for my private purposes there is quite a lot to change and it will take me some time to track down all german phrases...\nFor doing further changes the explanation \"[[How to adapt Metatabs to your personal needs]]\" may be helpfull.\n\n!Tags\nThe tags \"Notiz\",\"Idee\", etc. are in German and cannot be transcluded and replaced from this ~TranslationTiddler because they are used in Listfilters. If you want to change these tags, you have to change the each one manually in three places:\n\n# in the Listfilter of the METATABS BUTTONS in the [[Template|$:/MetaTabs/Template]] \n# in the Listfilters of macros at the beginning of the [[Template|$:/MetaTabs/Template]]\n# and the $:/MetaTabs/newIdea, $:/MetaTabs/newNote, etc -template.\n\nThe search/replace-function should help you accomplishing this...",
"addnote": "add note",
"addtags": "additional tags",
"author": "author",
"clear": "clear Fields",
"comment": "Comment",
"created": "20160818195910298",
"createitem": "create Tiddler",
"creator": "JR",
"date": "Date",
"editreferences": "Edit References",
"exists": "This Tiddler exists and would be overwritten.<br>view it first:",
"hide": "Hide Metatabs",
"hidesort": "hide Menu to sort",
"idea": "Idea",
"ideatext": "Text of the idea",
"indexinfo": "This Tiddler will appear in the Index of:",
"itemtext": "Text of the Tiddler",
"loadshow": "load this presentation",
"loadstory": "load this story",
"modified": "20170104230522674",
"modifier": "JR",
"newtext": "Text",
"newtitle": "Title",
"note": "Note",
"notetext": "Text of the note",
"notetitle": "Add component of the Title ",
"page": "Page",
"place": "Publisher, Publishing Place",
"publication": "publication",
"reference": "Reference",
"saveidea": "save this idea",
"show": "Show Metatabs",
"showsort": "show Menu to sort",
"source": "About Metatabs",
"tags": "Inventar MetaTabs",
"tasks": "Tasks",
"tasktext": "Information on the task",
"titel": "Title",
"title": "$:/MetaTabs/Language",
"year": "Year"
},
"$:/MetaTabs/Button": {
"text": "<$reveal state=\"$:/config/Visibility/MetaTabs\" type=\"match\" text=\"show\" default=\"hide\">\n<$button style=\"border-width:0px;background: rgba(255, 255, 255, 0)\" >\n<$fieldmangler tiddler=\"$:/MetaTabs/Template\">\n<$action-sendmessage $message='tm-remove-tag' $param=\"$:/tags/ViewTemplate\"/>\n</$fieldmangler> \n<$action-setfield $tiddler=\"$:/config/Visibility/MetaTabs\" text=\"hide\"/>\n{{$:/core/images/concept}}\n<$list filter=\"[<tv-config-toolbar-text>prefix[yes]]\">\n<span class=\"tc-btn-text\"><$text text=\"hide MetaTabs\"/></span>\n</$list>\n</$button>\n</$reveal>\n<$reveal state=\"$:/config/Visibility/MetaTabs\" type=\"nomatch\" text=\"show\">\n<$button style=\"border-width:0px;background: rgba(255, 255, 255, 0)\" tooltip=\"Verknüpfungen anzeigen\">\n<$fieldmangler tiddler=\"$:/MetaTabs/Template\">\n<$action-sendmessage $message='tm-add-tag' $param=\"$:/tags/ViewTemplate\"/>\n</$fieldmangler>\n<$action-setfield $tiddler=\"$:/config/Visibility/MetaTabs\" text=\"show\"/>\n{{$:/core/images/concept}}\n<$list filter=\"[<tv-config-toolbar-text>prefix[yes]]\">\n<span class=\"tc-btn-text\"><$text text=\"show MetaTabs\"/></span>\n</$list>\n</$button>\n</$reveal>",
"caption": "{{$:/core/images/concept}} MetaTabs",
"created": "20161129204315062",
"creator": "JR",
"description": "show/hide the MetaTabs",
"modified": "20170119103642224",
"modifier": "JR",
"tags": "Inventar $:/tags/PageControls MetaTabs",
"title": "$:/MetaTabs/Button"
},
"$:/MetaTabs/newIdea": {
"text": "\\define titelsetzen() [[$(titel)$]]\n\\define tagssetzen() Idee $(temptags)$\n\\define newtit() Idee-$(preptit)$-<<now DD.MMMYY>>\n<style>\n.addnewform textarea,\n.addnewform input{\nwidth:100%;\ndisplay:inline-block;\ntext-align:left;\n}\n</style>\n<div class=\"addnewform\">\n<$edit-text tiddler=\"$:/temp/idea\" field=\"provisory_title\" placeholder={{$:/MetaTabs/Language!!newtitle}} tag=\"input\" class=\"tw-edit-texteditor\"/><br>\n<$set name=\"preptit\" setTo={{$:/temp/idea!!provisory_title}}>\n<$list filter=\"[field:title{$:/temp/idea!!provisory_title}]\">\n@@color:red;{{$:/MetaTabs/Language!!exists}}@@\n@@color:blue;<$link><$view field=\"title\"/></$link>@@ \n</$list>\n</$set>\n<$tiddler tiddler=\"$:/temp/idea\">{{||$:/core/ui/EditTemplate/tags}}</$tiddler>\n<$edit-text tiddler=\"$:/temp/idea\" default=\"\" placeholder={{$:/MetaTabs/Language!!ideatext}} class=\"tw-edit-texteditor\" tag=\"textarea\"/><br>\n</div>\n<$set name=\"temptags\" value={{$:/temp/idea!!tags}}> \n<$set name=\"titel\" value={{!!title}}>\n<$button>\n<$action-sendmessage $message=\"tm-new-tiddler\" title={{$:/temp/idea!!provisory_title}} tags=<<tagssetzen>> thema={{!!thema}} seminar={{!!seminar}} text={{$:/temp/idea!!text}} origin=<<titelsetzen>>/>\n<$action-deletetiddler $filter=\"[search:title[ $:/temp/idea]]\"/>\n{{$:/core/images/new-button}}{{$:/MetaTabs/Language!!saveidea}}\n</$button></$set></$set><$button>\n<$action-deletetiddler $filter=\"[search:title[$:/temp/idea]]\"/>\n{{$:/MetaTabs/Language!!clear}}\n</$button>",
"caption": "{{$:/core/images/idea}}{{$:/MetaTabs/Language!!idea}}",
"created": "20160817093209918",
"creator": "Alberto Molina Pérez",
"modified": "20170104230522675",
"modifier": "JR",
"tags": "Inventar NewMetaTab plan MetaTabs",
"title": "$:/MetaTabs/newIdea"
},
"$:/MetaTabs/newNote": {
"text": "\\define editslider(label)\n<$reveal type=\"match\" text=\"\" default=\"\" state=\"$:/state/$label$\" animate=\"yes\"><$radio tiddler=\"$:/state/$label$\" value=\"show\">{{$label$||$:/MetaTabs/Sliderlabel}}</$radio><hr>\n</$reveal>\n<$reveal type=\"nomatch\" text=\"\" default=\"\" state=\"$:/state/$label$\" animate=\"yes\"><$radio tiddler=\"$:/state/$label$\" value=\"\" style=\"font-size:1.2em;background-color:transparent\">{{$label$||$:/MetaTabs/Sliderlabel}}</$radio><$link>@@height:1em;{{$:/core/images/open}}@@</$link>\n<br>\n<$edit-text placeholder=\"Text der Notiz\" class=\"tw-edit-texteditor\" tag=\"textarea\"/>\n</$reveal>\n\\end\n\\define titelsetzen() [[$(titel)$]]\n\\define tagssetzen() Notiz $(temptags)$\n\\define timeStampTitle() $(inputTitle)$ $(timeStamp)$-$(titel)$\n\\define appearedit()\n<$appear show={{$:/core/images/edit-button}}><$edit-text placeholder=\"Text der Notiz\" class=\"tw-edit-texteditor\" tag=\"textarea\"/></$appear>\n\\end\n\\define neuenotiz()\n<$vars timeStamp=<<now DD.MMMYY>> inputTitle={{$:/temp/note!!inputTitle}} temptags={{$:/temp/note!!tags}} titel={{!!title}}>\n<$button>\n<$action-sendmessage\n $message=\"tm-new-tiddler\"\n text={{$:/temp/note!!text}}\n thema={{!!thema}} seminar={{!!seminar}} \n title=<<timeStampTitle>>\n origin=<<titelsetzen>>\n tags=<<tagssetzen>>/>\n<$action-deletetiddler $filter=\"[search:title[ $:/temp/note]]\"/>{{$:/MetaTabs/Language!!addnote}}</$button>\n</$vars>\n\\end\n<style>\n.addnewform textarea,\n.addnewform input{\nwidth:100%;\ndisplay:inline-block;\ntext-align:left;\n}\n.oldnotes textarea{\nwidth:100%;\ndisplay:inline-block;\ntext-align:left;\n}\n.oldnotes input{\nwidth:2em;\ndisplay:inline-block;\ntext-align:center;\nborder-width:0px\n}\n.oldnotes svg {\nheight: 1.2em\n}\n</style>\n<br>\n<div class=\"oldnotes\">\n<$list filter=\"[search:origin<currentTiddler>tag[Notiz]sort[position]]\"><$fieldmangler><$edit-text class=\"small-editor\" tag=\"input\" field=\"position\"/><$macrocall $name=\"editslider\" label={{!!title}}/></$fieldmangler></$list>\n</div>\n\n!!! {{$:/core/images/edit-button}} {{$:/MetaTabs/Language!!addnote}}\n<div class=\"addnewform\">\n<$edit-text tiddler=\"$:/temp/note\" field=\"inputTitle\" tag=\"input\" placeholder={{$:/MetaTabs/Language!!notetitle}}/>\n<$edit-text tiddler=\"$:/temp/note\" default=\"\" placeholder={{$:/MetaTabs/Language!!note}} class=\"tw-edit-texteditor\" tag=\"textarea\"/><br><$tiddler tiddler=\"$:/temp/note\">{{||$:/core/ui/EditTemplate/tags}}</$tiddler>\n</div>\n<<neuenotiz>>\n<$button>\n<$action-deletetiddler $filter=\"[search:title[$:/temp/note]]\"/>\n{{$:/MetaTabs/Language!!clear}}\n</$button>",
"caption": "{{$:/core/images/notes}}{{$:/MetaTabs/Language!!note}}",
"created": "20160713082608994",
"creator": "JR",
"modified": "20170104230522675",
"modifier": "JR",
"tags": "Inventar NewMetaTab MetaTabs",
"title": "$:/MetaTabs/newNote"
},
"$:/MetaTabs/Sliderlabel": {
"text": "<$view field=\"title\"/>",
"created": "20160816085719344",
"creator": "JR",
"modified": "20170104230522675",
"modifier": "JR",
"tags": "template Inventar MetaTabs",
"title": "$:/MetaTabs/Sliderlabel"
},
"$:/core/images/notes": {
"text": "<svg class=\"tc-image-quote tc-image-button\" width=\"20pt\" height=\"20pt\" viewBox=\"0 0 512 512\">\n <g fill-rule=\"evenodd\">\n<path d=\"M160,160h192c-1.7-20-9.7-35.2-27.9-40.1c-0.4-0.1-0.9-0.3-1.3-0.4c-12-3.4-20.8-7.5-20.8-20.7V78.2 c0-25.5-20.5-46.3-46-46.3c-25.5,0-46,20.7-46,46.3v20.6c0,13.1-8.8,17.2-20.8,20.6c-0.4,0.1-0.9,0.4-1.4,0.5 C169.6,124.8,161.9,140,160,160z M256,64.4c7.6,0,13.8,6.2,13.8,13.8c0,7.7-6.2,13.8-13.8,13.8c-7.6,0-13.8-6.2-13.8-13.8 C242.2,70.6,248.4,64.4,256,64.4z\"/>\n<path d=\"M404.6,63H331v14.5c0,10.6,8.7,18.5,19,18.5h37.2c6.7,0,12.1,5.7,12.4,12.5l0.1,327.2c-0.3,6.4-5.3,11.6-11.5,12.1 l-264.4,0.1c-6.2-0.5-11.1-5.7-11.5-12.1l-0.1-327.3c0.3-6.8,5.9-12.5,12.5-12.5H162c10.3,0,19-7.9,19-18.5V63h-73.6 C92.3,63,80,76.1,80,91.6V452c0,15.5,12.3,28,27.4,28H256h148.6c15.1,0,27.4-12.5,27.4-28V91.6C432,76.1,419.7,63,404.6,63z\"></path>\n </g>\n<rect x=\"144\" y=\"192\" width=\"112\" height=\"16\"/>\n\t<rect x=\"144\" y=\"288\" width=\"160\" height=\"16\"/>\n\t<rect x=\"144\" y=\"384\" width=\"129\" height=\"16\"/>\n\t<rect x=\"144\" y=\"336\" width=\"176\" height=\"16\"/>\n\t<rect x=\"144\" y=\"240\" width=\"208\" height=\"16\"/>\n</g>\n</svg>",
"created": "20160709205022588",
"creator": "JR",
"modified": "20170104230522675",
"modifier": "JR",
"tags": "$:/tags/Image MetaTabs",
"title": "$:/core/images/notes"
},
"$:/core/images/idea": {
"text": "<svg class=\"tc-image-quote tc-image-button\" width=\"20pt\" height=\"20pt\" viewBox=\"0 0 512 512\">\n <g fill-rule=\"evenodd\">\n <path d=\"M256,32c77.313,0,140,62.688,140,140c0,76.125-45.875,85-54.5,168c0,7.75-6.25,14-14,14h-143c-7.75,0-14-6.25-14-14h-0.031 C161.875,257,116,248.125,116,172C116,94.688,178.688,32,256,32 M326,368c7.75,0,14,6.25,14,14s-6.25,14-14,14H186 c-7.75,0-14-6.25-14-14s6.25-14,14-14H326 M326,410c7.75,0,14,6.25,14,14s-6.25,14-14,14H186c-7.75,0-14-6.25-14-14s6.25-14,14-14 H326 M312,452c0,15.469-12.531,28-28,28h-56c-15.469,0-28-12.531-28-28H312 M256,0C161.156,0,84,77.156,84,172 c0,47.625,15.563,74.969,29.25,99.125c11.625,20.438,21.688,38.156,25.281,71.094c0.344,7.313,2.438,14.188,5.844,20.219 C141.563,368.375,140,375,140,382c0,7.563,1.813,14.688,5.063,21c-3.25,6.313-5.063,13.438-5.063,21 c0,19.719,12.469,36.563,29.938,43.094C176.625,492.906,200.125,512,228,512h56c27.875,0,51.375-19.094,58.063-44.906 C359.531,460.563,372,443.719,372,424c0-7.563-1.844-14.688-5.094-21c3.25-6.313,5.094-13.438,5.094-21 c0-7-1.563-13.625-4.375-19.531c3.406-6.063,5.469-12.969,5.813-20.281c3.625-32.906,13.656-50.594,25.281-71.063 C412.438,247,428,219.625,428,172C428,77.156,350.844,0,256,0L256,0z\"/></path>\n </g>\n</svg>",
"created": "20160705105844652",
"creator": "JR",
"modified": "20170104230522675",
"modifier": "JR",
"tags": "$:/tags/Image MetaTabs",
"title": "$:/core/images/idea"
},
"$:/core/images/concept": {
"text": "<svg class=\"tc-image tc-image-button tc-image-Alist-button\" width=\"20pt\" height=\"20pt\" viewBox=\"0 0 128 128\" enable-background=\"new 0 0 128 128\">\n <g>\n <path\n style=\"opacity:1;fill-opacity:0.7\"\n id=\"path4713\"\n sodipodi:type=\"arc\"\n sodipodi:cx=\"64.496826\"\n sodipodi:cy=\"61.875004\"\n sodipodi:rx=\"21.498941\"\n sodipodi:ry=\"21.498938\"\n sodipodi:start=\"0\"\n sodipodi:end=\"5.9035814\"\n d=\"M 85.995768,61.875004 A 21.498941,21.498938 0 0 1 66.534036,83.277202 21.498941,21.498938 0 0 1 43.383971,65.931088 21.498941,21.498938 0 0 1 58.458368,41.241503 21.498941,21.498938 0 0 1 84.46529,53.908517\"\n sodipodi:open=\"true\" />\n <path\n style=\"opacity:1;fill-opacity:0.4\"\n id=\"path4713-4\"\n sodipodi:type=\"arc\"\n sodipodi:cx=\"46.40625\"\n sodipodi:cy=\"12.846927\"\n sodipodi:rx=\"12.846929\"\n sodipodi:ry=\"12.846925\"\n sodipodi:start=\"0\"\n sodipodi:end=\"5.9035814\"\n d=\"M 59.253179,12.846927 A 12.846929,12.846925 0 0 1 47.623607,25.636044 12.846929,12.846925 0 0 1 33.790031,15.270684 12.846929,12.846925 0 0 1 42.797903,0.51715315 12.846929,12.846925 0 0 1 58.338625,8.0864653\"\n sodipodi:open=\"true\" />\n <path\n style=\"opacity:1;fill-opacity:0.8308885\"\n id=\"path4713-4-7\"\n sodipodi:type=\"arc\"\n sodipodi:cx=\"99.36705\"\n sodipodi:cy=\"38.016418\"\n sodipodi:rx=\"10.487288\"\n sodipodi:ry=\"11.011649\"\n sodipodi:start=\"0\"\n sodipodi:end=\"5.9035814\"\n d=\"m 109.85434,38.016418 a 10.487288,11.011649 0 0 1 -9.49353,10.9621 10.487288,11.011649 0 0 1 -11.292714,-8.884593 10.487288,11.011649 0 0 1 7.353365,-12.645883 10.487288,11.011649 0 0 1 12.686299,6.487981\"\n sodipodi:open=\"true\" />\n <path\n style=\"opacity:1;fill-opacity:0.6\"\n id=\"path4713-4-7-9\"\n sodipodi:type=\"arc\"\n sodipodi:cx=\"106.97034\"\n sodipodi:cy=\"68.953926\"\n sodipodi:rx=\"8.9141951\"\n sodipodi:ry=\"9.1763744\"\n sodipodi:start=\"0\"\n sodipodi:end=\"5.9035814\"\n d=\"m 115.88453,68.953926 a 8.9141951,9.1763744 0 0 1 -8.0695,9.135083 8.9141951,9.1763744 0 0 1 -9.598804,-7.403828 8.9141951,9.1763744 0 0 1 6.250364,-10.538236 8.9141951,9.1763744 0 0 1 10.78335,5.406652\"\n sodipodi:open=\"true\" />\n <path\n style=\"opacity:1;fill-opacity:0.7\"\n id=\"path4713-4-7-9-9\"\n sodipodi:type=\"arc\"\n sodipodi:cx=\"17.566206\"\n sodipodi:cy=\"78.91684\"\n sodipodi:rx=\"15.993114\"\n sodipodi:ry=\"16.255293\"\n sodipodi:start=\"0\"\n sodipodi:end=\"5.9035814\"\n d=\"M 33.55932,78.91684 A 15.993114,16.255293 0 0 1 19.081691,95.098988 15.993114,16.255293 0 0 1 1.860302,81.983635 15.993114,16.255293 0 0 1 13.074182,63.315901 15.993114,16.255293 0 0 1 32.420794,72.893399\"\n sodipodi:open=\"true\" />\n <path\n style=\"opacity:1;fill-opacity:0.5\"\n id=\"path4713-4-7-9-9-6\"\n sodipodi:type=\"arc\"\n sodipodi:cx=\"66.856468\"\n sodipodi:cy=\"109.32998\"\n sodipodi:rx=\"13.633474\"\n sodipodi:ry=\"13.371288\"\n sodipodi:start=\"0\"\n sodipodi:end=\"5.9035814\"\n d=\"M 80.489943,109.32998 A 13.633474,13.371288 0 0 1 68.148357,122.6411 13.633474,13.371288 0 0 1 53.467829,111.85267 13.633474,13.371288 0 0 1 63.027202,96.49695 13.633474,13.371288 0 0 1 79.519396,104.37521\"\n sodipodi:open=\"true\" />\n <rect\n style=\"opacity:1;fill-opacity:0.5\"\n id=\"rect6249\"\n width=\"19.715704\"\n height=\"4.865706\"\n x=\"39.677483\"\n y=\"-39.86039\"\n transform=\"matrix(0.38368104,0.92346568,-0.94609818,0.32387996,0,0)\"\n inkscape:transform-center-x=\"10.835056\"\n inkscape:transform-center-y=\"-6.8676864\" />\n <rect\n style=\"opacity:1;fill-opacity:0.5\"\n id=\"rect6249-2\"\n width=\"14.159867\"\n height=\"3.8425839\"\n x=\"-26.770521\"\n y=\"-82.025536\"\n transform=\"matrix(-0.93462663,0.35563052,-0.24522968,-0.96946501,0,0)\"\n inkscape:transform-center-x=\"-5.3004223\"\n inkscape:transform-center-y=\"-8.2158592\" />\n <rect\n style=\"opacity:1;fill-opacity:0.6\"\n id=\"rect6249-26\"\n width=\"14.294156\"\n height=\"5.7614603\"\n x=\"79.312775\"\n y=\"-67.11721\"\n transform=\"matrix(0.02323678,0.99972999,-0.99920587,-0.03984517,0,0)\"\n inkscape:transform-center-x=\"8.9075967\"\n inkscape:transform-center-y=\"-7.6164088\" />\n <rect\n style=\"opacity:1;fill-opacity:0.5\"\n id=\"rect6249-9\"\n width=\"14.535043\"\n height=\"5.7388906\"\n x=\"87.039902\"\n y=\"48.308899\"\n transform=\"matrix(0.98718371,0.15958797,-0.02412057,0.99970906,0,0)\"\n inkscape:transform-center-x=\"7.5077947\"\n inkscape:transform-center-y=\"7.5290738\" />\n <rect\n style=\"opacity:1;fill-opacity:0.6\"\n id=\"rect6249-26-9\"\n width=\"12.029109\"\n height=\"4.6351838\"\n x=\"-48.957672\"\n y=\"-88.634323\"\n transform=\"matrix(-0.84302131,0.53788016,-0.57681262,-0.81687649,0,0)\"\n inkscape:transform-center-x=\"-1.099088\"\n inkscape:transform-center-y=\"-9.0382323\" />\n</svg>\n\n </g>\n</svg>",
"created": "20160812101032742",
"creator": "JR",
"modified": "20170104230522676",
"modifier": "JR",
"tags": "$:/tags/Image MetaTabs",
"title": "$:/core/images/concept"
},
"$:/core/images/open": {
"text": "<svg class=\"tc-image-quote tc-image-button\" width=\"20pt\" height=\"20pt\" viewBox=\"0 0 100 100\">\n <g fill-rule=\"evenodd\">\n <path d=\"M88,48c-2.209,0-4,1.791-4,4v28c0,2.21-1.79,4-4,4H16c-2.21,0-4-1.79-4-4V16c0-2.21,1.79-4,4-4h28c2.209,0,4-1.791,4-4 s-1.791-4-4-4H16C9.373,4,4,9.373,4,16v64c0,6.627,5.373,12,12,12h64c6.627,0,12-5.373,12-12V52C92,49.791,90.209,48,88,48z\"/><path d=\"M91.996,7.958c-0.003-0.249-0.026-0.498-0.075-0.742C91.898,7.104,91.856,7,91.824,6.891 c-0.04-0.142-0.074-0.285-0.131-0.423c-0.05-0.122-0.12-0.231-0.182-0.346c-0.062-0.115-0.113-0.234-0.187-0.344 c-0.12-0.179-0.261-0.342-0.407-0.499c-0.032-0.035-0.055-0.075-0.089-0.108c-0.031-0.031-0.067-0.051-0.1-0.081 c-0.159-0.15-0.326-0.293-0.509-0.416c-0.108-0.072-0.226-0.123-0.339-0.184c-0.116-0.062-0.228-0.133-0.35-0.184 c-0.139-0.058-0.283-0.091-0.427-0.132c-0.107-0.031-0.21-0.073-0.321-0.095C88.525,4.027,88.262,4,87.999,4H64 c-2.209,0-4,1.791-4,4s1.791,4,4,4h14.343l-32.77,32.77c-1.562,1.562-1.562,4.095,0,5.656c1.562,1.562,4.095,1.562,5.656,0 L84,17.656V32c0,2.209,1.791,4,4,4s4-1.791,4-4V8C92,7.986,91.996,7.973,91.996,7.958z\"/>\n </g>\n</svg>",
"created": "20160816081132859",
"creator": "JR",
"modified": "20170104230522675",
"modifier": "JR",
"tags": "$:/tags/Image MetaTabs",
"title": "$:/core/images/open"
},
"$:/MetaTabs/Stylesheet": {
"created": "20170524085316681",
"text": ".metainfo button {\ndisplay:inline-block;\nborder-width:0px;\nfloat: right;\nbackground-color:transparent\n}\n#metainfo {\nposition: relative; padding-bottom:-20px\n}\n@media print {.metainfo button{display: none ! important;}}",
"title": "$:/MetaTabs/Stylesheet",
"tags": "$:/tags/Stylesheet",
"modified": "20170524085435201"
},
"$:/MetaTabs/newIndex": {
"text": "\\define titelsetzen() [[$(titel)$]]\n\\define tagssetzen() [[$(titel)$]] $(temptags)$\n<style>\n.addnewform textarea,\n.addnewform input{\nwidth:100%;\ndisplay:inline-block;\ntext-align:left;\n}\n</style>\n<div class=\"addnewform\">\n@@font-size:1.1em;{{$:/MetaTabs/Language!!indexinfo}}{{!!title}}@@\n<$edit-text tiddler=\"$:/temp/indexitem\" field=\"provisory_title\" placeholder={{$:/MetaTabs/Language!!newtitle}} tag=\"input\" class=\"tw-edit-texteditor\"/><br>\n<$set name=\"preptit\" setTo={{$:/temp/indexitem!!provisory_title}}>\n<$list filter=\"[field:title{$:/temp/indexitem!!provisory_title}]\">\n@@color:red;{{$:/MetaTabs/Language!!exists}}@@ \n@@color:blue;<$link><$view field=\"title\"/></$link>@@ \n</$list>\n</$set>\n@@font-size:1.1em;{{$:/MetaTabs/Language!!addtags}}:@@\n<$tiddler tiddler=\"$:/temp/indexitem\">{{||$:/core/ui/EditTemplate/tags}}</$tiddler>\n<$edit-text tiddler=\"$:/temp/indexitem\" default=\"\" placeholder={{$:/MetaTabs/Language!!itemtext}} class=\"tw-edit-texteditor\" tag=\"textarea\"/><br>\n</div>\n<$set name=\"temptags\" value={{$:/temp/indexitem!!tags}}> \n<$set name=\"titel\" value={{!!title}}>\n<$button>\n<$action-sendmessage $message=\"tm-new-tiddler\" title={{$:/temp/indexitem!!provisory_title}} tags=<<tagssetzen>> thema={{!!thema}} seminar={{!!seminar}} text={{$:/temp/indexitem!!text}} origin=<<titelsetzen>>/>\n<$action-deletetiddler $filter=\"[search:title[ $:/temp/indexitem]]\"/>\n{{$:/core/images/new-button}}{{$:/MetaTabs/Language!!createitem}}\n</$button></$set></$set><$button>\n<$action-deletetiddler $filter=\"[search:title[$:/temp/indexitem]]\"/>\n{{$:/MetaTabs/Language!!clear}}\n</$button>\n<hr>\n<$fieldmangler><$list filter=\"[all[current]!tag[sortieren]]\"><$button> <$action-listops $tags=\"sortieren\"/><$action-setfield $tiddler=<<stater>> text=\"sortieren\"/>@@font-size:2em;{{$:/core/images/list-bullet}} {{$:/MetaTabs/Language!!showsort}}@@</$button></$list>\n<$list filter=\"[all[current]tag[sortieren]]\"><$button message=\"tm-remove-tag\" param=\"sortieren\">@@font-size:2em;{{$:/core/images/list-bullet}} {{$:/MetaTabs/Language!!hidesort}}@@</$button></$list></$fieldmangler>",
"caption": "{{$:/core/images/list-bullet}} Index",
"created": "20160714074213482",
"creator": "JR",
"modified": "20161230191210470",
"modifier": "JR",
"tags": "Inventar NewMetaTab MetaTabs",
"title": "$:/MetaTabs/newIndex"
},
"$:/MetaTabs/RemoveItemTemplate": {
"created": "20170524114120230",
"text": "<div class=\"tc-menu-list-item\">\n<$button class=\"tc-btn-invisible tc-btn-mini\" style=\"float:left\"><$action-listops $tags=\"-[<storyTiddler>]\"/> × </$button> \n<$link to={{!!title}}>\n<$view field=\"title\"/>\n</$link>\n</div>",
"modified": "20170524133739150",
"tags": "MetaTabs",
"title": "$:/MetaTabs/RemoveItemTemplate"
},
"$:/MetaTabs/Template": {
"created": "20160803083646023",
"creator": "JR",
"text": "\\define slider(label)\n<hr><$button popup=\"$:/state/$label$\" style=\"font-size:1.2em;float:left;background-color:transparent\"><$reveal type=\"match\" text=\"\" default=\"\" state=\"$:/state/$label$\">⊞</$reveal><$reveal type=\"nomatch\" text=\"\" default=\"\" state=\"$:/state/$label$\">⊟</$reveal> {{$label$||$:/MetaTabs/Sliderlabel}}</$button>\n<$reveal type=\"nomatch\" text=\"\" default=\"\" state=\"$:/state/$label$\" animate=\"yes\"> <$link>@@height:1em;{{$:/core/images/open}}@@</$link>\n<br>\n<$transclude mode=\"block\"/>\n</$reveal><br>\n\\end\n\\define staterfil() [title[$:/temp/stater/$(tabstatid)$]has[created]]\n\\define stater() $:/temp/stater/$(tabstatid)$\n\\define sortieren()\n<hr>\n<<list-tagged-draggable tag:\"$(storyTiddler)$\" itemTemplate:\"$:/MetaTabs/RemoveItemTemplate\">>\n<$list filter=\"[search:thema<currentTiddler>tag[clip]limit[1]]\"><h2>Clips</h2><br/></$list>\n<$list filter=\"[search:thema<currentTiddler>tag[clip]]-[list[!!list]]\"><$link><$view field=\"title\"/></$link><br/></$list>\n<$list filter=\"[list[!!import]limit[1]]-[list[!!list]]\"><h2>ursprünglich importierte Titel</h2><br/></$list>\n<$list filter=\"[list[!!import]]-[list[!!list]]\"><$link><$view field=\"title\"/></$link><br/></$list>\n\\end\n\\define showitems()\n<hr><$link>{{!!title}}</$link><$appear><br><$transclude field=\"text\" mode=\"block\"/></$appear><br>\n\\end\n\\define idee()\n<$list filter=\"[search:origin<currentTiddler>tag[Idee]]\"><$macrocall $name=\"slider\" label={{!!title}}/></$list>\n\\end\n\\define notizen()\n<$list filter=\"[search:origin<currentTiddler>tag[Notiz]sort[position]]\"><$macrocall $name=\"slider\" label={{!!title}}/></$list>\n\\end\n\\define additem()\n<<tabs \"[all[shadows+tiddlers]tag[NewMetaTab]]\" \"$:/temp/stater/makenewitem\">>\n\\end\n\\define showtasks()\n<$list filter=\"[search:origin<currentTiddler>tag[task]]\"><hr><<tasktermin>><br>{{!!text}}<br></$list>\n\\end\n\\define annotations()\n<footer class=\"footnotes\">\n<<extract tiddler:{{!!title}} start:\"<ref \" end:\">\" limit:\"no\" rmQuotes:\"y\">>\n</footer>\n\\end\n\\define references()\n<$list filter=\"[list[!!origin]has[created]limit[1]]\"><hr>Ursprung<br></$list>\n<$list filter=\"[list[!!origin]has[created]]\"><$link>{{!!title}}</$link>\n<br></$list>\n<$list filter=\"[list[!!references]has[created]limit[1]]-[tag[Wahrnehmung]]-[tag[Zeitstrahl]]\"><hr>Referenz<br></$list>\n<$list filter=\"[list[!!references]has[created]]-[tag[Wahrnehmung]]-[tag[Zeitstrahl]]\"><$link>{{!!title}}</$link>\n<br></$list>\n<hr>\n{{!!references}}\n\\end\n\n<div class=\"metainfo\">\n<$set name=tabstatid value=<<currentTiddler>>>\n<$list filter=\"[search:origin<currentTiddler>tag[Notiz]limit[1]]\"><$button><$action-setfield $tiddler=<<stater>> text=\"notiz\"/> {{$:/core/images/notes}}</$button></$list>\n<$list filter=\"[search:origin<currentTiddler>tag[Idee]limit[1]]\"><$button><$action-setfield $tiddler=<<stater>> text=\"idee\"/> {{$:/core/images/idea}}</$button></$list>\n<$list filter=\"[all[current]search[<ref ]]\"><$button><$action-setfield $tiddler=<<stater>> text=\"references\"/> {{$:/core/images/asterisk}}</$button></$list>\n<$list filter=\"[all[current]has[slideshow]][all[current]has[story]][all[current]search[sli0]]\"><$button><$action-setfield $tiddler=<<stater>> text=\"story\"/> {{$:/core/images/slideshow}}</$button></$list>\n<$list filter=\"[all[current]tag[sortieren]]\"><$button><$action-setfield $tiddler=<<stater>> text=\"sortieren\"/> {{$:/core/images/list-bullet}}</$button></$list>\n<$list filter=\"[search:origin<currentTiddler>tag[task]limit[1]]\"><$button><$action-setfield $tiddler=<<stater>> text=\"task\"/>@@font-size:15px;font-style: italic;font-weight: bold;!@@</$button></$list>\n<$list filter=\"[all[current]!tag[Inventar]!is[system]]\">\n<$button><$action-setfield $tiddler=<<stater>> text=\"add\"/> {{$:/core/images/new-button}}</$button></$list>\n<$list filter=<<staterfil>>><$button class=\"invisible\"><$action-deletetiddler $filter=<<staterfil>>/> {{$:/core/images/close-button}}</$button>\n</$list>\n<br>\n<$reveal state=<<stater>> type=\"match\" text=\"story\" default=\"hide\">\n<<slidesnstories>>\n</$reveal>\n<$reveal state=<<stater>> type=\"match\" text=\"references\" default=\"hide\">\n<<annotations>>\n</$reveal>\n<$reveal state=<<stater>> type=\"match\" text=\"idee\" default=\"hide\">\n<<idee>>\n</$reveal>\n<$reveal state=<<stater>> type=\"match\" text=\"notiz\" default=\"hide\">\n<<notizen>>\n</$reveal>\n<$reveal state=<<stater>> type=\"match\" text=\"add\" default=\"hide\">\n<<additem>>\n</$reveal>\n<$reveal state=<<stater>> type=\"match\" text=\"task\" default=\"hide\">\n<<showtasks>>\n</$reveal>\n<$reveal state=<<stater>> type=\"match\" text=\"sortieren\" default=\"hide\">\n<<sortieren>>\n</$reveal>",
"modified": "20170524130506090",
"modifier": "JR",
"tags": "MetaTabs $:/tags/ViewTemplate",
"title": "$:/MetaTabs/Template"
}
}
}
{
"tiddlers": {
"$:/plugins/JR/slides/Color": {
"text": "<$reveal type=\"match\" state=\"$:/plugins/JR/slides/ColorSwitcher!!theme\" text=\"Yellow\" default=\"\">\n<style>\n.slidewrapper {\n background-color:yellow;\n color: black;\n}\n</style>\n</$reveal>\n<$reveal type=\"match\" state=\"$:/plugins/JR/slides/ColorSwitcher!!theme\" text=\"Dark\" default=\"\">\n<style>\n.slidewrapper {\n background-color:black;\n color: white;\n}\n</style>\n</$reveal>\n<$reveal type=\"match\" state=\"$:/plugins/JR/slides/ColorSwitcher!!theme\" text=\"Light\" default=\"\">\n<style>\n.slidewrapper {\n background-color:#dddddd;\n color: black;\n}\n</style>\n</$reveal>\n<$list filter=\"[[$:/plugins/JR/slides/ColorSwitcher]!has[theme]]\">\n<style>\n.slidewrapper {\n background-color:black;\n color: white;\n}\n</style>\n</$list>",
"created": "20170308233128471",
"creator": "JR",
"modified": "20170822140602808",
"modifier": "JR",
"tags": "",
"title": "$:/plugins/JR/slides/Color"
},
"$:/core/ui/EditorToolbar/slide": {
"modified": "20170308231459400",
"modifier": "JR",
"created": "20170308233128470",
"creator": "JR",
"text": "",
"button-classes": "tc-text-editor-toolbar-item-start-group",
"caption": "{{$:/language/Buttons/Link/Caption}}",
"condition": "[<targetTiddler>!has[type]] [<targetTiddler>type[text/vnd.tiddlywiki]]",
"description": "{{$:/language/Buttons/Link/Hint}}",
"dropdown": "$:/core/ui/EditorToolbar/slide-dropdown",
"icon": "$:/core/images/slideshow",
"shortcuts": "((slide))",
"tags": "$:/tags/EditorToolbar",
"title": "$:/core/ui/EditorToolbar/slide"
},
"$:/plugins/JR/slides/backgroundimage": {
"created": "20170308233128465",
"creator": "JR",
"text": "\\define imglk()\n$(imagesource)$$(seminar)$/$(thema)$/I/$(imagename)$\n\\end\n\n\\define presimg()\n<$tiddler tiddler={{$:/HistoryList!!current-tiddler}}>\n<$vars seminar={{!!seminar}} imagename={{!!bgimg}}\nthema={{!!thema}} imagesource={{folderpath}} class={{!!imgclass}}>\n<img src=<<imglk>> style=\"position: absolute; right:5px; top: 0px; max-width: 100%; max-height: 100%; height: inherit !important;\">\n</$vars>\n</$tiddler>\n\\end\n\n<$list filter=\"[{$:/HistoryList!!current-tiddler}has[seminar]has[thema]has[img]]\">\n<<presimg>>\n</$list>",
"caption": "{{$:/core/images/picture}}",
"modified": "20170917194218783",
"modifier": "JR",
"title": "$:/plugins/JR/slides/backgroundimage"
},
"$:/slideshow": {
"created": "20170321215917927",
"creator": "JR",
"text": "\\define next-actions()\n<$list filter=\"[{$:/temp/jumpslide!!text}]\"\n<$action-navigate $to=<<currentTiddler>>/>\n</$list>\n<$list filter='01 02 03 04 05 06 07 08 09 10' variable=\"number\">\n<$list filter=<<jumpslide>> variable=\"sourcetitle\">\n<$action-setfield $tiddler=<<slidetitle>> \ntext=<<slicetext>>/>\n</$list>\n<$list filter=<<jumpkeep>> variable=\"sourcetitle\">\n<$action-setfield $tiddler=<<slidetitle>> \nkeep=\"yes\"/>\n</$list>\n</$list>\n<$list filter=\"[{$:/temp/jumpslide!!text}]+[!search:text[sli01]!search:text[sli02]!search:text[sli03]]\" variable=\"texter\">\n<$action-setfield $tiddler=\"$:/temp/Slide/01\" text=<<texttext>>/>\n</$list>\n<$list filter=\"[{$:/temp/jumpslide!!text}]+[tag[splash]]\">\n<$action-setfield $tiddler=\"$:/temp/Slide/00\" text=\"@@text-align:center;<h1>{{$:/HistoryList!!current-tiddler}}@@\" show=\"yes\"/>\n</$list>\n<$list filter=\"[{$:/temp/jumpslide!!text}]-[has[img]]-[tag[splash]]\">\n<$action-setfield $tiddler=\"$:/temp/Slide/01\" show=\"yes\"/>\n</$list>\n\\end\n\n\\define slidetitle()\n$:/temp/Slide/$(number)$\n\\end\n\n\\define jumpslide()\n[{$:/temp/jumpslide!!text}search:text[sli$(number)$]]\n\\end\n\n\\define jumpkeep()\n[{$:/temp/jumpslide!!text}]+[search:text[sli$(number)$]search:keep[$(number)$]]\n\\end\n\\define slicetext()\n<<slice \"$(sourcetitle)$\" $(number)$>>\n\\end\n\\define texttext()\n<$transclude tiddler=\"$(texter)$\" field=\"text\" mode=\"block\"/>\n\\end\n\n\\define jump-actions()\n<$set name=\"listcontent\" filter=\"[list[$:/slideshow]allbefore:include{$:/temp/jumpslide!!text}]\">\n<$action-setfield $tiddler=\"$:/StoryList\" $field=\"list\" $value=<<listcontent>> />\n</set>\n<$action-deletetiddler $filter=\"[prefix[$:/temp/Slide/]]\"/>\n<<next-actions>>\n<$action-deletetiddler $filter=\"[[$:/temp/jumpslide]]\"/>\n\\end\n\n\\define lingo-base() $:/language/CloseAll/\n\n\\define drop-actions()\n<$action-listops $tiddler=\"$:/slideshow\" $subfilter=\"+[insertbefore:currentTiddler<actionTiddler>]\"/>\n\\end\n\n<$list filter=\"[list[$:/slideshow]]\" history=\"$:/HistoryList\" storyview=\"pop\" emptyMessage=\"<center>Choose a slideshow:</center>{{$:/plugins/JR/slides/launch}}\">\n<$linkcatcher to=\"$:/temp/jumpslide\" message=\"tm-navigate\" actions=<<jump-actions>> >\n<div style=\"position: relative;\">\n<$droppable actions=<<drop-actions>>>\n<div class=\"tc-droppable-placeholder\">\n \n</div>\n<div>\n<$button tooltip={{$:/language/Buttons/Close/Hint}} aria-label={{$:/language/Buttons/Close/Caption}} class=\"tc-btn-invisible tc-btn-mini\">\n<$action-listops $tiddler=\"$:/slideshow\" $field=\"list\" $subfilter=\"+[!<currentTiddler>]\"/>\n×</$button><$link to={{!!title}}><div style=\"background-color:eeeeee;width:99%;\"><$view field=\"title\"/></div></$link>\n</div>\n</$droppable>\n</div>\n</$linkcatcher>\n</$list>\n<$tiddler tiddler=\"\">\n<$droppable actions=<<drop-actions>>>\n<div class=\"tc-droppable-placeholder\">\n \n</div>\n</$droppable>\n</$tiddler>",
"modified": "20170917212231431",
"modifier": "JR",
"origin": "[[Slides and Slices]]",
"tags": "[[Slides and Slices]]",
"title": "$:/slideshow"
},
"$:/state/slide": {
"created": "20170214124717040",
"creator": "JR",
"text": "",
"modified": "20170917212231430",
"modifier": "JR",
"origin": "Slides and Slices",
"show": "nothing",
"tags": "[[Slides and Slices]]",
"title": "$:/state/slide"
},
"$:/core/ui/EditorToolbar/slide-dropdown": {
"created": "20170308233128470",
"creator": "JR",
"modified": "20170313200552458",
"modifier": "JR",
"text": "\\define setkeep()\n<$action-listops $tiddler=<<storyTiddler>> $field=\"keep\" $subfilter={{$:/Temp/slidenumber}}/>\n\\end\n\\define freenumbers()\n[<storyTiddler>!search:text[sli$(number)$]]\n\\end\n\\define slidelinks()\n<option>$(number)$</option>\n\\end\n\\define freeslides()\n<$list filter='Number 01 02 03 04 05 06 07 08 09 10' variable=\"number\">\n<$list filter=<<freenumbers>>>\n<<slidelinks>>\n</$list>\n</$list>\n\\end\n\n\\define pref() <sli$(slidenr)$>\n\\define suff() </sli$(slidenr)$>\n\\define wrap()\n<$action-sendmessage\n\t$message=\"tm-edit-text-operation\"\n\t$param=\"wrap-selection\"\n\tprefix=<<pref>>\n\tsuffix=<<suff>>\n/>\n\\end\n\\define setslide()\n<$vars slidenr={{$:/Temp/slidenumber}}>\n<<wrap>>\n<$reveal type='match' state='$:/state/slidemode' text=\"keep\">\n<<setkeep>>\n<$action-setfield $tiddler=\"$:/state/slidemode\" text=\"\"/>\n</$reveal>\n</$vars>\n<$action-deletetiddler\n\t$tiddler=<<dropdown-state>> />\n<$action-deletetiddler\n\t$tiddler=\"$:/Temp/slidenumber\" />\n\\end\n\n\\define lingo-base() $:/language/Buttons/Slide/\n\n\\define body(config-title)\n''<<lingo Hint>>'' <$select tiddler='$:/Temp/slidenumber' actions=<<setslide>> placeholder='HelloThere'>\n<<freeslides>>\n\\end\n\n<$macrocall $name=\"body\" config-title=<<qualify \"$:/state/setslide/\">>/>\n\n<$radio tiddler=\"$:/state/slidemode\" field=\"text\" value=\"\"> new slide</$radio>\n\n<$radio tiddler=\"$:/state/slidemode\" field=\"text\" value=\"keep\"> add step to previous</$radio>",
"tags": "",
"title": "$:/core/ui/EditorToolbar/slide-dropdown"
},
"$:/language/Buttons/Slide/Hint": {
"modified": "20170308231459401",
"modifier": "JR",
"created": "20170308233128471",
"creator": "JR",
"text": "set the slide´s number",
"tags": "ske",
"title": "$:/language/Buttons/Slide/Hint"
},
"$:/plugins/JR/slides/NextTextStep": {
"modified": "20170308231459402",
"modifier": "JR",
"created": "20170308233128471",
"creator": "JR",
"text": "<$list filter='[prefix[$:/temp/Slide/]!has[show]]'>\n<$button><$action-setfield $tiddler=<<currentTiddler>> show=\"yes\"/>\n<$list filter='[prefix[$:/temp/Slide/]!has[show]limit[1]!keep[yes]]'>\n<$list filter='[prefix[$:/temp/Slide/]show[yes]]'>\n<$action-setfield $tiddler=<<currentTiddler>> show=\"no\"/>\n</$list>\n</$list>\n{{!!text}}\n</$button>\n</$list>\n",
"tags": "",
"title": "$:/plugins/JR/slides/NextTextStep"
},
"$:/plugins/JR/slides/ThemeSwitcher": {
"modified": "20170308231459402",
"modifier": "JR",
"created": "20170308233128472",
"creator": "JR",
"text": "<$reveal type=\"match\" state=\"!!theme\" text=\"Yellow\">\n<$setfield tiddler=\"$:/palette\" set=\"!!text\" setTo=\"$:/palettes/ContrastDark\">\n<$button style=\"background-color:black;\" set=\"!!theme\" setTo=\"Dark\" message=\"tw-set-field\">°</$button></$setfield>\n</$reveal>\n<$reveal type=\"match\" state=\"!!theme\" text=\"Dark\">\n<$setfield tiddler=\"$:/palette\" set=\"!!text\" setTo=\"$:/palettes/Muted\">\n<$button style=\"background-color:white;\" set=\"!!theme\" setTo=\"Light\" message=\"tw-set-field\">*</$button></$setfield>\n</$reveal>\n<$reveal type=\"match\" state=\"!!theme\" text=\"Light\">\n<$setfield tiddler=\"$:/palette\" set=\"!!text\" setTo=\"$:/palettes/Muted\">\n<$button style=\"background-color:yellow;\" set=\"!!theme\" setTo=\"Yellow\" message=\"tw-set-field\">*</$button></$setfield>\n</$reveal>\n<$list filter=\"[[$:/plugins/JR/slides/ThemeSwitcher]!has[theme]]\">\n<$button style=\"background-color:black;\">\n<$action-setfield $tiddler=\"$:/plugins/JR/slides/ThemeSwitcher\" theme=\"Dark\"/>\n<$action-setfield $tiddler=\"$:/palette\" text=\"$:/palettes/ContrastDark\"/>\n°nicht da</$button>\n</$list>",
"tags": "",
"theme": "Light",
"title": "$:/plugins/JR/slides/ThemeSwitcher"
},
"$:/plugins/JR/slides/RemoteButton": {
"modified": "20170308232306150",
"modifier": "JR",
"created": "20170308233128473",
"creator": "JR",
"text": "<$button message=\"tm-open-window\" param =\"$:/plugins/JR/slides/remoteControl\" tooltip=\"Show Remotecontrol\" aria-label={{$:/language/Buttons/OpenWindow/Caption}} class=<<tv-config-toolbar-class>>>\n<$list filter=\"[<tv-config-toolbar-icons>prefix[yes]]\">\n{{$:/core/images/slideshow}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>prefix[yes]]\">\n<span class=\"tc-btn-text\"><$text text=\"Remote\"/></span>\n</$list>\n</$button>",
"caption": "Fernbedienung",
"description": "Liste der Einträge in einem anderen Fenster öffnen",
"tags": "$:/tags/PageControls",
"title": "$:/plugins/JR/slides/RemoteButton"
},
"$:/plugins/JR/slides/launch": {
"created": "20170308233128468",
"creator": "JR",
"modified": "20170313114013303",
"modifier": "JR",
"text": "\\define choosepresentation()\n<span title=\"Select a Snapshot\"><$select tiddler=\"$:/_snapshots_name\" field=\"storyname\" placeholder='choose a presentation'>\n<option value=\"\">select a story</option>\n<$list filter=\"[tag[$(storycat)$]has[slideshow]]\" variable=\"currentIndex\">\n<option value=<<currentIndex>>><<currentIndex>></option>\n</$list>\n</$select></span>\n\\end\n\\define shownothing()\n<$list filter='[[$(snap)$]!show[title]]'>\n<$action-setfield $tiddler=\"$:/state/slide\" show=\"nothing\"/>\n</$list>\n\\end\n\\define launchShow()\n<$list filter=\"[[$(snap)$]has[slideshow]]\">\n<$button>\n<$action-setfield $tiddler=\"$:/state/slide\" text=\"slideshow\"/>\n<$action-setfield $tiddler=\"$:/slideshow\" list={{$(snap)$!!slideshow}}/>\n<$list filter='[list[$:/slideshow]]'>\n<$action-listops $tags=\"$:/slideshow\"/>\n</$list>\n{{$:/core/images/right-arrow}}launch\n<$action-setfield $tiddler=\"$:/temp/beforeSlideshow\" text={{$:/StoryList!!list}}/>\n<$action-sendmessage $message=\"tm-close-all-tiddlers\"/>\n<$action-sendmessage $message=\"tm-full-screen\"/>\n<$action-setfield $tiddler=\"$:/plugins/JR/slides/ColorSwitcher\" theme={{$(snap)$!!palette}}/>\n<$action-setfield $tiddler=\"$:/temp/Slide/00\" text=\"@@text-align:center;font-size:1.5em;<h1>$(snap)$@@\" show=\"yes\"/>\n<$list filter='[[$(snap)$]show[title]]' emptyMessage=<<shownothing>> >\n<$action-setfield $tiddler=\"$:/state/slide\" show=\"title\"/>\n</$list>\n</$button>\n</$list>\n\\end\n\n<$set name=\"snap\" value={{$:/_snapshots_name!!storyname}}>\n<$set name=\"storycat\" value={{$:/_snapshots_name!!storycat}}>\n<<choosecat>>\n<<choosepresentation>>\n<<launchShow>>\n</$set>",
"tags": "",
"title": "$:/plugins/JR/slides/launch",
"loadshow": "launch presentation"
},
"$:/plugins/JR/slides/remotePreview": {
"text": "{{$:/plugins/JR/slides/NextTextStep}}\n{{$:/plugins/JR/slides/nextTextSlide}}\n<br>\n<div style=\"color:transparent\">This text has the function to expand the tabs to 100% a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a\n</div>",
"caption": "Preview",
"created": "20170316103544389",
"creator": "JR",
"modified": "20170317130119866",
"modifier": "JR",
"tags": "",
"title": "$:/plugins/JR/slides/remotePreview"
},
"$:/plugins/JR/slides/remoteView": {
"created": "20170317123323627",
"creator": "JR",
"text": "<$list filter='[prefix[$:/temp/Slide/]show[yes]sort[title]]'>\n<$transclude/>\n</$list>\n<$button style=\"background-color:red; color:white; width:100%; padding:0.5em; font-size:2em;font-weight:600\">\n next Step:{{$:/plugins/JR/slides/next}}\n</$button>\n\n{{$:/plugins/JR/slides/nextTextStep}}\n{{$:/plugins/JR/slides/nextTextSlide}}\n<br>\n<div style=\"color:transparent\">This text has the function to expand the tabs to 100% a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a\n</div>",
"caption": "View",
"modified": "20170402094908797",
"modifier": "JR",
"tags": "",
"title": "$:/plugins/JR/slides/remoteView"
},
"$:/plugins/JR/slides/style/hidedefault": {
"text": "<$reveal state=\"$:/state/slide\" type=\"match\" text=\"slideshow\" default=\"\">\n<style>\n.tc-story-river {\n display: none;\n}\n\n.tc-more-sidebar{\ndisplay:none;\n}\n\n.metainfo button{display: none ! important}\n.tc-topbar {\n\tdisplay: none;\n}\n\n</style>\n</$reveal>",
"created": "20170308233128472",
"creator": "JR",
"modified": "20170315225652549",
"modifier": "JR",
"tags": "MyStyles",
"title": "$:/plugins/JR/slides/style/hidedefault"
},
"$:/plugins/JR/slides/backButton": {
"created": "20170308233128465",
"creator": "JR",
"modified": "20170317223641240",
"modifier": "JR",
"text": "\\define slidetitle()\n$:/temp/Slide/$(number)$\n\\end\n\\define prevslide()\n[list[$:/slideshow]before{$:/HistoryList!!current-tiddler}]+[search:text[sli$(number)$]]\n\\end\n\\define slicetext()\n<<slice \"$(sourcetitle)$\" $(number)$>>\n\\end\n\\define texttext()\n<$transclude tiddler=\"$(texter)$\" field=\"text\" mode=\"block\"/>\n\\end\n\n<$list filter=\"[list[$:/slideshow]before{$:/HistoryList!!current-tiddler}]\" emptyMessage={{$:/plugins/JR/slides/relaunch}}>\n<$button>\n<$action-navigate $to=<<currentTiddler>>/>\n<$action-deletetiddler $filter=\"[prefix[$:/temp/Slide/]]\"/>\n<$list filter='01 02 03 04 05 06 07 08 09 10' variable=\"number\">\n<$list filter=<<prevslide>> variable=\"sourcetitle\">\n<$action-setfield $tiddler=<<slidetitle>> \ntext=<<slicetext>>/>\n</$list>\n</$list>\n<$list filter=\"[list[$:/slideshow]before{$:/HistoryList!!current-tiddler}]+[!search:text[sli01]!search:text[sli02]]\" variable=\"texter\">\n<$action-setfield $tiddler=\"$:/temp/Slide/01\" text=<<texttext>>/>\n</$list>\n<$list filter=\"[list[$:/slideshow]before{$:/HistoryList!!current-tiddler}]+[!has[bgimg]]\">\n<$action-setfield $tiddler=\"$:/temp/Slide/01\" show=\"yes\"/>\n</$list>\n{{$:/core/images/chevron-left}}\n</$button>\n</$list>",
"position": "12",
"tags": "",
"title": "$:/plugins/JR/slides/backButton"
},
"$:/plugins/JR/slides/backStepButton": {
"created": "20170308233128464",
"creator": "JR",
"modified": "20170317232054438",
"modifier": "JR",
"text": "<$list filter='[prefix[$:/temp/Slide/]show[no]reverse[]limit[1]]'>\n<$button><$action-setfield $tiddler=<<currentTiddler>> show=\"yes\"/>\n<$list filter='[prefix[$:/temp/Slide/]!title[$:/temp/Slide/1]show[yes]]'>\n<$action-deletefield $tiddler=<<currentTiddler>> show/>\n</$list>\n{{$:/core/images/left-arrow}}\n</$button>\n</$list>\n",
"tags": "",
"title": "$:/plugins/JR/slides/backStepButton"
},
"$:/plugins/JR/slides/Exit": {
"created": "20170308233128467",
"creator": "JR",
"text": "<$action-setfield $tiddler=\"$:/temp/MultiMenu\" menu=\"\"/>\n<$action-setfield $tiddler=\"$:/temp/MultiMenu\" parent=\"\"/>\n<$action-setfield $tiddler=\"$:/state/slide\" text=\"\"/>\n<$list filter='[tag[$:/slideshow]]'>\n<$action-listops $tags=\"-$:/slideshow\"/>\n</$list>\n<$action-deletefield $tiddler=\"$:/slideshow\" list/>\n<$action-setfield $tiddler=\"$:/StoryList\" list={{$:/temp/beforeSlideshow!!text}}/>\n<$action-deletetiddler $filter=\"[prefix[$:/temp/Slide/]] [[$:/temp/beforeSlideshow]]\"/>\n<$action-deletefield $tiddler=\"$:/plugins/JR/slides/ColorSwitcher\" theme/>",
"modified": "20170317195448517",
"modifier": "JR",
"tags": "",
"title": "$:/plugins/JR/slides/Exit"
},
"$:/plugins/JR/slides/ExitButton": {
"created": "20170317195106073",
"creator": "JR",
"text": "<$button>\n{{$:/plugins/JR/slides/Exit}}\n{{$:/core/images/close-button}}\n</$button>",
"modified": "20170317200714658",
"modifier": "JR",
"tags": "",
"title": "$:/plugins/JR/slides/ExitButton"
},
"$:/plugins/JR/slides/mobileControls": {
"text": "<$button style=\"background-color:red;opacity:0.0; width:100%; padding:0.5em; height:600px; font-size:2em; font-weight:600\">\n{{$:/plugins/JR/slides/next}}\n</$button>\n<span class=\"roundcontrol\" style=\"margin:auto\">\n{{$:/plugins/JR/slides/backStepButton}}{{$:/plugins/JR/slides/backButton}}{{$:/plugins/JR/slides/ExitButton}}{{$:/plugins/JR/slides/nextTiddlerButton}}{{$:/plugins/JR/slides/nextStepButton}}\n</span><div style=\"width:100%\"><br><br>\n<center>{{$:/plugins/JR/slides/Select}}</center></div>",
"created": "20170317203408069",
"creator": "JR",
"modified": "20170331211859468",
"modifier": "JR",
"title": "$:/plugins/JR/slides/mobileControls"
},
"$:/plugins/JR/slides/next": {
"created": "20170317132519227",
"creator": "JR",
"text": "<$list filter='[prefix[$:/temp/Slide/]!has[show]limit[1]]'emptyMessage={{$:/plugins/JR/slides/nextTiddler}}>\n<$action-setfield $tiddler=<<currentTiddler>> show=\"yes\"/>\n<$list filter='[prefix[$:/temp/Slide/]!has[show]limit[1]!keep[yes]]'>\n<$list filter='[prefix[$:/temp/Slide/]show[yes]]'>\n<$action-setfield $tiddler=<<currentTiddler>> show=\"no\"/>\n</$list>\n</$list>\n</$list>",
"modified": "20170317194740664",
"modifier": "JR",
"position": "12",
"tags": "",
"title": "$:/plugins/JR/slides/next"
},
"$:/plugins/JR/slides/nextButton": {
"text": "<$list filter='[prefix[$:/temp/Slide/]!has[show]limit[1]]'emptyMessage={{$:/plugins/JR/slides/nextSlide}}>\n<$button><$action-setfield $tiddler=<<currentTiddler>> show=\"yes\"/>\n<$list filter='[prefix[$:/temp/Slide/]!has[show]limit[1]!keep[yes]]'>\n<$list filter='[prefix[$:/temp/Slide/]show[yes]]'>\n<$action-setfield $tiddler=<<currentTiddler>> show=\"no\"/>\n</$list>\n</$list>\n{{$:/core/images/right-arrow}}\n</$button>\n</$list>",
"created": "20170308233128468",
"creator": "JR",
"modified": "20170316085656313",
"modifier": "JR",
"position": "12",
"tags": "",
"title": "$:/plugins/JR/slides/nextButton"
},
"$:/plugins/JR/slides/nextStepButton": {
"created": "20170308233128468",
"creator": "JR",
"text": "<$list filter='[prefix[$:/temp/Slide/]!has[show]limit[1]]'>\n<$button><$action-setfield $tiddler=<<currentTiddler>> show=\"yes\"/>\n<$list filter='[prefix[$:/temp/Slide/]!has[show]limit[1]!keep[yes]]'>\n<$list filter='[prefix[$:/temp/Slide/]show[yes]]'>\n<$action-setfield $tiddler=<<currentTiddler>> show=\"no\"/>\n</$list>\n</$list>\n{{$:/core/images/right-arrow}}\n</$button>\n</$list>\n",
"modified": "20170318004340431",
"modifier": "JR",
"tags": "",
"title": "$:/plugins/JR/slides/nextStepButton"
},
"$:/plugins/JR/slides/nextTextSlide": {
"text": "\\define slidetitle()\n$:/temp/Slide/$(number)$\n\\end\n\\define nextslide()\n[list[$:/slideshow]after{$:/HistoryList!!current-tiddler}][list[$:/slideshow]!list[$:/StoryList]]+[limit[1]]+[search:text[sli$(number)$]]\n\\end\n\\define setkeep()\n[list[$:/slideshow]after{$:/HistoryList!!current-tiddler}][list[$:/slideshow]!list[$:/StoryList]]+[limit[1]]+[search:text[sli$(number)$]search:keep[$(number)$]]\n\\end\n\\define slicetext()\n<<slice \"$(sourcetitle)$\" $(number)$>>\n\\end\n\\define texttext()\n<$transclude tiddler=\"$(texter)$\" field=\"text\" mode=\"block\"/>\n\\end\n\n!<$list filter=\"[list[$:/slideshow]next{$:/HistoryList!!current-tiddler}][list[$:/slideshow]!list[$:/StoryList]]+[limit[1]]\" emptyMessage=\"\">\n<$button style=\"width:100%; background-color:yellow; color:black;\">\n<$action-navigate $to=<<currentTiddler>>/>\n<$action-deletetiddler $filter=\"[prefix[$:/temp/Slide/]]\"/>\n<$list filter='01 02 03 04 05 06 07 08 09 10' variable=\"number\">\n<$list filter=<<nextslide>> variable=\"sourcetitle\">\n<$action-setfield $tiddler=<<slidetitle>> \ntext=<<slicetext>>/>\n</$list>\n<$list filter=<<setkeep>> variable=\"sourcetitle\">\n<$action-setfield $tiddler=<<slidetitle>> \nkeep=\"yes\"/>\n</$list>\n</$list>\n<$list filter=\"[list[$:/slideshow]after{$:/HistoryList!!current-tiddler}][list[$:/slideshow]!list[$:/StoryList]]+[limit[1]]+[!search:text[sli01]!search:text[sli02]]\" variable=\"texter\">\n<$action-setfield $tiddler=\"$:/temp/Slide/01\" text=<<texttext>>/>\n</$list>\n<$list filter=\"[list[$:/slideshow]after{$:/HistoryList!!current-tiddler}][list[$:/slideshow]!list[$:/StoryList]]+[limit[1]]+[tag[splash]]\">\n<$action-setfield $tiddler=\"$:/temp/Slide/00\" text=\"@@text-align:center;<h1>{{$:/HistoryList!!current-tiddler}}@@\" show=\"yes\"/>\n</$list>\n<$list filter=\"[list[$:/slideshow]after{$:/HistoryList!!current-tiddler}][list[$:/slideshow]!list[$:/StoryList]]+[limit[1]]-[has[image]]-[tag[splash]]\">\n<$action-setfield $tiddler=\"$:/temp/Slide/01\" show=\"yes\"/>\n</$list>\n{{!!title}}\n</$button>\n</$list>",
"created": "20170308233128471",
"creator": "JR",
"modified": "20170317114533376",
"modifier": "JR",
"position": "12",
"tags": "",
"title": "$:/plugins/JR/slides/nextTextSlide"
},
"$:/plugins/JR/slides/nextTextStep": {
"created": "20170308233128471",
"creator": "JR",
"text": "<$list filter='[prefix[$:/temp/Slide/]!has[show]]'>\n<$button style=\"width:100%\"><$action-setfield $tiddler=<<currentTiddler>> show=\"yes\"/>\n<$list filter='[prefix[$:/temp/Slide/]!has[show]limit[1]!keep[yes]]'>\n<$list filter='[prefix[$:/temp/Slide/]show[yes]]'>\n<$action-setfield $tiddler=<<currentTiddler>> show=\"no\"/>\n</$list>\n</$list>\n{{!!text}}\n</$button>\n</$list>\n",
"modified": "20170317201504272",
"modifier": "JR",
"tags": "",
"title": "$:/plugins/JR/slides/nextTextStep"
},
"$:/plugins/JR/slides/nextTiddler": {
"created": "20170317132918172",
"creator": "JR",
"text": "\\define slidetitle()\n$:/temp/Slide/$(number)$\n\\end\n\\define nextslide()\n[list[$:/slideshow]after{$:/HistoryList!!current-tiddler}][list[$:/slideshow]!list[$:/StoryList]]+[limit[1]]+[search:text[sli$(number)$]]\n\\end\n\\define setkeep()\n[list[$:/slideshow]after{$:/HistoryList!!current-tiddler}][list[$:/slideshow]!list[$:/StoryList]]+[limit[1]]+[search:text[sli$(number)$]search:keep[$(number)$]]\n\\end\n\\define slicetext()\n<<slice \"$(sourcetitle)$\" $(number)$>>\n\\end\n\\define texttext()\n<$transclude tiddler=\"$(texter)$\" field=\"text\" mode=\"block\"/>\n\\end\n<$list filter=\"[list[$:/slideshow]after{$:/HistoryList!!current-tiddler}][list[$:/slideshow]!list[$:/StoryList]]+[limit[1]]\" emptyMessage={{$:/plugins/JR/slides/Exit}} >\n<$action-navigate $to=<<currentTiddler>>/>\n<$action-deletetiddler $filter=\"[prefix[$:/temp/Slide/]]\"/>\n<$list filter='01 02 03 04 05 06 07 08 09 10' variable=\"number\">\n<$list filter=<<nextslide>> variable=\"sourcetitle\">\n<$action-setfield $tiddler=<<slidetitle>> \ntext=<<slicetext>>/>\n</$list>\n<$list filter=<<setkeep>> variable=\"sourcetitle\">\n<$action-setfield $tiddler=<<slidetitle>> \nkeep=\"yes\"/>\n</$list>\n</$list>\n<$list filter=\"[list[$:/slideshow]after{$:/HistoryList!!current-tiddler}][list[$:/slideshow]!list[$:/StoryList]]+[limit[1]]+[!search:text[sli01]!search:text[sli02]]\" variable=\"texter\">\n<$action-setfield $tiddler=\"$:/temp/Slide/01\" text=<<texttext>>/>\n</$list>\n<$list filter=\"[list[$:/slideshow]after{$:/HistoryList!!current-tiddler}][list[$:/slideshow]!list[$:/StoryList]]+[limit[1]]+[tag[splash]]\">\n<$action-setfield $tiddler=\"$:/temp/Slide/00\" text=\"@@text-align:center;<h1>{{$:/HistoryList!!current-tiddler}}@@\" show=\"yes\"/>\n</$list>\n<$list filter=\"[list[$:/slideshow]after{$:/HistoryList!!current-tiddler}][list[$:/slideshow]!list[$:/StoryList]]+[limit[1]]-[has[img]]-[tag[splash]]\">\n<$action-setfield $tiddler=\"$:/temp/Slide/01\" show=\"yes\"/>\n</$list>\n</$list>",
"modified": "20170317195313487",
"modifier": "JR",
"position": "12",
"tags": "",
"title": "$:/plugins/JR/slides/nextTiddler"
},
"$:/plugins/JR/slides/nextTiddlerButton": {
"created": "20170317200408197",
"creator": "JR",
"text": "<$list filter=\"[list[$:/slideshow]after{$:/HistoryList!!current-tiddler}][list[$:/slideshow]!list[$:/StoryList]]+[limit[1]]\" emptyMessage={{$:/plugins/JR/slides/Exit}}>\n<$button>\n{{$:/plugins/JR/slides/nextTiddler}}\n{{$:/core/images/chevron-right}}\n</$button>\n</$list>",
"modified": "20170317200521520",
"modifier": "JR",
"position": "12",
"tags": "",
"title": "$:/plugins/JR/slides/nextTiddlerButton"
},
"$:/plugins/JR/slides/relaunch": {
"text": "\\define relaunchShow()\n<$list filter=\"[list[$:/StoryList]limit[1]]\">\n<$button>\n{{$:/core/images/refresh-button}}\n<$action-sendmessage $message=\"tm-close-all-tiddlers\"/>\n<$action-deletetiddler $filter=\"[prefix[$:/temp/Slide/]]\"/>\n<$action-setfield $tiddler=\"$:/temp/Slide/1\" text=\"@@text-align:center;font-size:1.5em;<h1>$(snap)$@@\" show=\"yes\"/>\n</$button>\n</$list>\n\\end\n\n<$set name=\"snap\" value={{$:/_snapshots_name!!storyname}}>\n<<relaunchShow>>\n</$set>",
"created": "20170308233128469",
"creator": "JR",
"modified": "20170317115530338",
"modifier": "JR",
"tags": "",
"title": "$:/plugins/JR/slides/relaunch"
},
"$:/plugins/JR/slides/remoteControl": {
"created": "20170308233128472",
"creator": "JR",
"text": "<style>\n.remote {\nposition:fixed;\nwidth:200px;\ntop:0px;\nleft:0px;\nbackground-color:grey;\nheight:100%;\nz-index:10;\n}\n\n.remote input,\n.remote select,\n.remote button{\nalign:right;\nwidth:100%;\ndisplay:inline-block;\ntext-align:left;\nmargin-top:10px;\nfont-size:15px;\nz-index:10;\n}\n.remotecontrol button{\nfloat:right;\nmargin:5px;\nwidth:40px;\nheight:40px;\nbackground-color:red;\ndisplay:inline-block;\ntext-align:center;\nfont-size:1em;\nborder-radius:20px;\n}\n.remotecontrol {\nz-index:10;\n}\n.overview {\nposition:fixed;\ntop:100px;\nleft:0px;\ndisplay: inline-block;\nfont-size: 1.2em;\nwidth:200px;\nbackground-color:grey;\nheight:100%;\noverflow: hidden;\n}\n.slideInfo {\nposition:absolute;\ndisplay: inline-block;\nfont-size: 1.2em;\nleft:200px;\nmargin-top:0px;\npadding: 10px;\nheight:100%;\n}\n.scrollmenuwrapper {position: absolute;top:190px;left:0px;height:200%; overflow: scroll; width: 217px; margin: 0; padding: -5px; padding-top: 0px; list-style-type: none; margin-right: -14px !important; }\n.scrollmenuwrapper button\n{width:11px;\nheight:11px;\nborder-radius:7px;\nbackground-color:white;\ndisplay:inline-block;\ntext-align:center;\nmargin-top:0px;\nfont-size:15px;}\n</style>\n<!--\n\nVisible Remote Control\n\n-->\n<div class=remote>\n<$reveal state=\"$:/state/slide\" type=\"match\" text=\"slideshow\" default=\"\">\n<$button style=\"background-color:red; color:white; fill:white; width:100%; margin-top:0px; padding:0.3em; font-size:2em; font-weight:600; text-align:center\">\n{{$:/core/images/right-arrow}}{{$:/plugins/JR/slides/next}}\n</$button>\n<div class=\"remotecontrol\">\n<span>{{$:/plugins/JR/slides/nextTiddlerButton}}{{$:/plugins/JR/slides/ExitButton}}{{$:/plugins/JR/slides/backButton}}{{$:/plugins/JR/slides/backStepButton}}\n</span>{{$:/plugins/JR/slides/keyboard}}</div>\n</$reveal>\n<$reveal state=\"$:/state/slide\" type=\"nomatch\" text=\"slideshow\" default=\"\">\n<$button style=\"background-color:red; color:white; fill:white; width:100%; margin-top:0px; padding:0.3em; font-size:1.5em; font-weight:300; text-align:center\">\nLaunch story as presetation{{$:/core/images/right-arrow}}{{$:/plugins/JR/slides/AdHoc}}</$button>\n</$reveal>\n<div class=\"overview\">\n{{$:/slideshow}}\n</div>\n</div>\n<div class=\"slideInfo\">\n<<tabs \"$:/plugins/JR/slides/remoteView $:/plugins/JR/slides/remotePreview $:/plugins/JR/slides/remoteSettings $:/plugins/JR/slides/remoteTester\" \"$:/plugins/JR/slides/remoteView\">>\n</div>",
"modified": "20170917195101418",
"modifier": "JR",
"tags": "ToDos",
"title": "$:/plugins/JR/slides/remoteControl"
},
"$:/plugins/JR/slides/Wrapper": {
"created": "20170316105113950",
"creator": "JR",
"text": "<div class=slidewrapper>\n<div class=slideframe>\n<$reveal state=\"$:/state/slide!!show\" type=\"match\" text=\"title\">\n\n!!!{{$:/HistoryList!!current-tiddler}}\n</$reveal>\n<$list filter='[list[$:/StoryList]search:title[$:/plugins/JR/slides/Wrapper]]'>\n<$button message=\"tm-close-tiddler\">×</$button>\n<$button message=\"tm-edit-tiddler\">edit</$button>\n</$list>\n<$list filter='[prefix[$:/temp/Slide/]show[yes]sort[title]]'>\n<$transclude/>\n</$list>\n</div>\n{{$:/plugins/JR/slides/backgroundimage}}\n</$keyboard>\n</div>\n<div class=fullscreenizer>\n{{$:/plugins/JR/slides/mobileControls}}\n</div>",
"caption": "view",
"modified": "20170917204236614",
"modifier": "JR",
"title": "$:/plugins/JR/slides/Wrapper"
},
"$:/plugins/JR/slides/AdHoc/Welcome": {
"created": "20170328095332191",
"creator": "JR",
"text": "@@text-align:center;font-size:1.5em;<h1>{{$:/plugins/JR/slides/AdHoc/Welcome!!welcome}}</h1>@@\n<div>\n<$reveal state=\"$:/state/slide!!show\" type=\"nomatch\" text=\"title\">\n<$button>Show titles above slides\n<$action-setfield $tiddler=\"$:/state/slide\" show=\"title\"/>\n</$button>\n</$reveal>\n<$reveal state=\"$:/state/slide!!show\" type=\"match\" text=\"title\">\n<$button>Hide titles above slides\n<$action-setfield $tiddler=\"$:/state/slide\" show=\"\"/>\n</$button>\n</$reveal>\n<br>\nChoose a palette:{{$:/plugins/JR/slides/ColorSwitcher}}\n</div>",
"title": "$:/plugins/JR/slides/AdHoc/Welcome",
"tags": "",
"modified": "20170328105013983",
"modifier": "JR",
"welcome": "Willkommen"
},
"$:/plugins/JR/slides/globalMacros": {
"created": "20170317104728744",
"creator": "JR",
"text": "\\define slide(tiddler,nr,mode:\"block\",class=\"slice\")\n<$macrocall $name=\"extract\" tiddler=\"\"\"$tiddler$\"\"\" start=\"<sli$nr$>\" end=\"</sli$nr$>\" mode=\"$mode$\" class=\"$class$\"/> \n\\end\n\n\\define showwhat()\n<$list filter='[[$(show)$]!show[title]]'>\n<$action-setfield $tiddler=\"$:/state/slide\" show=\"nothing\"/>\n</$list>\n\\end\n\n\\define launchPresentation(target:<<currentTiddler>>)\n<$vars show=\"\"\"$target$\"\"\">\n<<launch-button>>\n</$vars>\n\\end\n\n\\define launch-button()\n<$list filter=\"[[$(show)$]has[slideshow]]\" emptyMessage=\"no show defined\">\n<$button>\n<$action-setfield $tiddler=\"$:/state/slide\" text=\"slideshow\"/>\n<$action-setfield $tiddler=\"$:/slideshow\" list={{$(show)$!!slideshow}}/>\n<$list filter='[list[$:/slideshow]]'>\n<$action-listops $tags=\"$:/slideshow\"/>\n</$list>\n{{$:/core/images/right-arrow}}Launch Presentation:<br> $(show)$\n<$action-setfield $tiddler=\"$:/temp/beforeSlideshow\" text={{$:/StoryList!!list}}/>\n<$action-sendmessage $message=\"tm-close-all-tiddlers\"/>\n<$action-sendmessage $message=\"tm-full-screen\"/>\n<$action-setfield $tiddler=\"$:/plugins/JR/slides/ColorSwitcher\" theme={{$(show)$!!palette}}/>\n<$action-setfield $tiddler=\"$:/temp/Slide/00\" text=\"@@text-align:center;font-size:1.5em;<h1>$(show)$@@\" show=\"yes\"/>\n<$list filter='[[$(show)$]show[title]]' emptyMessage=<<showwhat>> >\n<$action-setfield $tiddler=\"$:/state/slide\" show=\"title\"/>\n</$list>\n</$button>\n</$list>\n\\end",
"loadshow": "launch presentation",
"modified": "20170330102440942",
"modifier": "JR",
"tags": "$:/tags/Macro",
"title": "$:/plugins/JR/slides/globalMacros"
},
"$:/plugins/JR/slides/AdHoc": {
"created": "20170328094510596",
"creator": "JR",
"text": "\\define shownothing()\n<$list filter='[[$(snap)$]!show[title]]'>\n<$action-setfield $tiddler=\"$:/state/slide\" show=\"nothing\"/>\n</$list>\n\\end\n\\define StorytoShow()\n<$action-setfield $tiddler=\"$:/state/slide\" text=\"slideshow\"/>\n<$action-setfield $tiddler=\"$:/slideshow\" list={{$:/StoryList!!list}}/>\n<$action-setfield $tiddler=\"$:/temp/beforeSlideshow\" text={{$:/StoryList!!list}}/>\n<$action-sendmessage $message=\"tm-close-all-tiddlers\"/>\n<$action-sendmessage $message=\"tm-full-screen\"/>\n<$action-setfield $tiddler=\"$:/plugins/JR/slides/ColorSwitcher\" theme={{$(snap)$!!palette}}/>\n<$action-setfield $tiddler=\"$:/temp/Slide/00\" text={{$:/plugins/JR/slides/AdHoc/Welcome}} show=\"yes\"/>\n<$action-setfield $tiddler=\"$:/state/slide\" show=\"nothing\"/>\n\\end\n\n<<StorytoShow>>\n",
"modified": "20170402101943156",
"modifier": "JR",
"tags": "",
"title": "$:/plugins/JR/slides/AdHoc",
"loadshow": "launch presentation"
},
"$:/plugins/JR/slides/AdHoc/Button": {
"created": "20170328094510596",
"creator": "JR",
"text": "<$button>\n{{$:/core/images/right-arrow}}launch\n{{$:/plugins/JR/slides/AdHoc}}\n</$button>\n",
"modified": "20170402101924278",
"modifier": "JR",
"tags": "",
"title": "$:/plugins/JR/slides/AdHoc/Button",
"loadshow": "launch presentation"
},
"$:/plugins/JR/slides/Select": {
"text": "<$importvariables filter=\"[[$:/slideshow]]\">\n<$select tiddler='$:/temp/jumpslide' actions=<<jump-actions>> placeholder={{$:/HistoryList!!current-tiddler}}>\n<$list filter=\"[list[$:/slideshow]]\">\n<option><<currentTiddler>></option>\n</$list>\n</$select>\n</$importvariables>",
"created": "20170331185218825",
"creator": "JR",
"modified": "20170404124335598",
"modifier": "JR",
"tags": "",
"title": "$:/plugins/JR/slides/Select"
},
"$:/plugins/JR/slides/StyleMacro": {
"created": "20170822130042642",
"creator": "JR",
"text": "\\define |(style)\n<$reveal state=\"$:/state/slide\" type=\"match\" text=\"slideshow\" default=\"\">\n<style>\n{{$style$}} \n</style>\n</$reveal>\n\\end",
"modified": "20170917131320018",
"modifier": "JR",
"tags": "$:/tags/Macro",
"title": "$:/plugins/JR/slides/StyleMacro"
},
"$:/plugins/JR/slides/PageTemplate": {
"text": "<$reveal state=\"$:/state/slide\" type=\"match\" text=\"slideshow\" default=\"\">\n{{$:/plugins/JR/slides/Color}}\n{{$:/plugins/JR/slides/Wrapper}}\n{{$:/plugins/JR/slides/Controls}}\n{{$:/plugins/JR/slides/style/hidedefault}}\n<$reveal state=\"$:/state/slide\" type=\"match\" background=\"map\" default=\"\">\n{{$:/plugins/JR/slides/backgroundmap}}\n</$reveal>\n</$reveal>\n<$reveal state=\"$:/state/slide\" type=\"nomatch\" text=\"slideshow\" default=\"\" retain=\"yes\">\n{{$:/plugins/JR/slides/showdefault}}\n</$reveal>",
"created": "20170308233128468",
"creator": "JR",
"modified": "20170822141531310",
"modifier": "JR",
"tags": "$:/tags/PageTemplate",
"title": "$:/plugins/JR/slides/PageTemplate"
},
"$:/plugins/JR/slides/ColorSwitcher": {
"created": "20170321215917930",
"creator": "JR",
"text": "<$reveal type=\"match\" state=\"!!theme\" text=\"Yellow\">\n<$button style=\"background-color:black;\" set=\"!!theme\" setTo=\"Dark\" message=\"tw-set-field\">°</$button>\n</$reveal>\n<$reveal type=\"match\" state=\"!!theme\" text=\"Dark\">\n<$button style=\"background-color:white;\" set=\"!!theme\" setTo=\"Light\" message=\"tw-set-field\">*</$button>\n</$reveal>\n<$reveal type=\"match\" state=\"!!theme\" text=\"Light\">\n<$button style=\"background-color:yellow;\" set=\"!!theme\" setTo=\"Yellow\" message=\"tw-set-field\">*</$button>\n</$reveal>\n<$list filter=\"[[$:/plugins/JR/slides/ColorSwitcher]!has[theme]]\">\n<$button style=\"background-color:black;\">\n<$action-setfield $tiddler=\"$:/plugins/JR/slides/ColorSwitcher\" theme=\"Dark\"/>\n°</$button>\n</$list>",
"modified": "20170917212231437",
"modifier": "JR",
"origin": "Slides and Slices",
"title": "$:/plugins/JR/slides/ColorSwitcher"
},
"$:/plugins/JR/slides/keyboard": {
"text": "\\define exitshow() \n{{$:/plugins/JR/slides/Exit}}\n<$action-deletetiddler $tiddler=\"$:/temp/slidemove\"/>\n\\end\n\\define nextslide() \n{{$:/plugins/JR/slides/nextTiddler}}\n<$action-deletetiddler $tiddler=\"$:/temp/slidemove\"/>\n\\end\n\\define nextactions() \n{{$:/plugins/JR/slides/next}}\n<$action-deletetiddler $tiddler=\"$:/temp/slidemove\"/>\n\\end\n<style>\n.keyboard input{\nwidth=250x;\nbackground-color:transparent;\ncolor:red;\nmargin-top:0px;\nborder:0px;\n}\n.keyboard input:focus{\nvisibility: hidden;\n}\n</style>\n<$keyboard key=\"escape\" actions=<<exitshow>>>\n<$keyboard key=\"return\" actions=<<nextslide>>>\n<$keyboard key=\"space\" actions=<<nextactions>>>\n<span class=\"keyboard\">\n<$edit-text tiddler=\"$:/temp/slidemove\" tag=\"input\" default=\"\" placeholder=\"Click here to activate the Keyboard\" focus=\"yes\" />\n</span>\n</$keyboard>\n</$keyboard>\n</$keyboard>",
"created": "20170916200930322",
"creator": "JR",
"modified": "20170917111416769",
"modifier": "JR",
"tags": "",
"title": "$:/plugins/JR/slides/keyboard"
},
"$:/plugins/JR/slides/Controls": {
"created": "20170308233128466",
"creator": "JR",
"text": "<div class=slidecontrols>\n<center><span class=\"groundcontrol\">{{$:/plugins/JR/slides/backStepButton}}{{$:/plugins/JR/slides/backButton}}{{$:/plugins/JR/slides/ExitButton}}{{$:/core/ui/Buttons/full-screen}}{{$:/plugins/JR/slides/nextTiddlerButton}}{{$:/plugins/JR/slides/nextStepButton}}\n</span></center>\n{{$:/plugins/JR/slides/keyboard}}\n<span class=\"groundcontrol\">font-size:<$edit-text tag=\"input\" type=\"range\" tiddler=\"$:/temp/slideshow/fontsize\"/></span>\n<span class=\"groundcontrol\" style=\"float:right;\">{{$:/plugins/JR/slides/nextButton}}\n</span></div>",
"modified": "20170917212751510",
"modifier": "JR",
"tags": "ob kjh",
"title": "$:/plugins/JR/slides/Controls"
},
"$:/plugins/JR/slides/StyleSheet": {
"created": "20170308233128469",
"creator": "JR",
"text": ".slidecontrols {\n\tposition: fixed;\n\tbottom: 0;\n\tleft: 0;\n\twidth: 100%;\n\theight: 4em;\n\tbackground: transparent;\n overflow: auto;\n color: transparent;\n fill: white;\n z-index: 25;\n}\n\n.slidewrapper {\n position:fixed; \n top: 0px;\n width: 100%;\n height: 100%;\n background-color:yellow;\n z-index: 20;\n}\n.slideframe {\n position:relative; \n top: 10px;\n margin:auto;\n width: 70%;\n font-size:2em;\n font-size:calc(0.05 * {{$:/temp/slideshow/fontsize}}em);\n line-height:1.6em;\n overflow-y: hidden;\n overflow-x: hidden;\n height: 100%;\n padding: 10px;\n padding-top: 10px;\n list-style-type: none;\n z-index: 20;\n}\n.slideframe h1 { \n align:center;\n}\n.slidecontrols:hover .groundcontrol \n{ visibility: visible; }\n\n.groundcontrol {\nvisibility: hidden;\n}\n.groundcontrol input{\nbackground-color: transparent;\nborder:0px;\n}\n \n.slidecontrols button {\nfloat:left;\nmargin:5px;\nmargin-top:0px;\nwidth:40px;\nheight:40px;\n background-color:black;\ndisplay:inline-block;\ntext-align:center;\n font-size:1.1em;\nborder-radius:20px;\nborder-shadow:none;\n border: 1px solid darkgrey;\n line-height: 1.0;\n}\n\n .slidecontrols button:nth-child(3) {\n padding-right: 3px;\n}\n .slidecontrols button:nth-child(1) {\n padding-left: 10px;\n}\n\n\n/* changed: indented lines\nappended missing s to class\npositioned >> sign int 3rd button\n< sign in 1st button\n */\n\n.fullscreenizer {\n position:relative;\n top: 0px;\n width: 100%;\n height: 900px;\n background-color:transparent;\n z-index: 21;\n}\n.bigonly button \n{display: inline-block;\n color: #eee;\n position: fixed;\n top: 5px; right:5px;\n overflow: hidden;\n z-index: 15;\n width: 35px;\n height: 35px;\n line-height: 30px;\n align:center;\n vertical-align: middle;\n padding: 0;\n background-color: red;\n border-radius: 50%;\n transition: .3s;\n cursor: pointer;\n-webkit-box-shadow: 9px 8px 35px 1px rgba(69,69,69,1);\n-moz-box-shadow: 9px 8px 35px 1px rgba(69,69,69,1);\nbox-shadow: 9px 8px 35px 1px rgba(69,69,69,1);}\n\n@media screen and (max-width: 900px){ \n .slideframe {\n position:relative; \n top: 5px;\n margin:auto;\n width: 95%;\n overflow-y: hidden;\n overflow-x: hidden;\n height: 100%;\n padding: 5px;\n padding-top: 5px;\n list-style-type: none;\n z-index: 20;\n font-size:1em;\n line-height:1em;\n}\n.slideframe p { \n margin: 0em 0em 0em 0em; \n padding: 0em 0em 0em 0em; \n text-indent: 0em; \n text-align: justify; \n text-justify: newspaper; \n font-size:1.2em;\n line-height:1.2em;\n}\n.slideframe h1 { \n margin: 0.3em 0em 0.1em; \n}\n.slidecontrols {\n display:none;\n}\n.videoslide {\nheight:90%;\nposition:fixed;\ntop:0px;\nz-index:24;}\n }\n@media screen and (min-width: 901px){ \n .fullscreenizer {display: none} \n }",
"modified": "20170917212433299",
"modifier": "JR",
"tags": "$:/tags/Stylesheet",
"title": "$:/plugins/JR/slides/StyleSheet"
}
}
}
{
"tiddlers": {
"$:/plugins/JR/slidesnstories/Load": {
"text": "\\define showSnapshot()\n<$list filter=\"[[$(snap)$has[story]]\">\n<$button>\n<$list filter=\"[list[$(snap)$!!story]]\">\n<$action-navigate $to=<<currentTiddler>>/>\n</$list>\n<$action-setfield $tiddler=\"$:/StoryList\" list={{$(snap)$!!story}}/>\n{{$:/core/images/right-arrow}}{{$:/plugins/JR/slidesnstories/Language!!loadstory}}</$button>\n</$list>\n\\end\n\\define choosecat()\n<span title=\"Select a Snapshot\"><$select tiddler=\"$:/_snapshots_name\" field=\"storycat\" placeholder='Reihe wählen'>\n<option value=\"\">select a category</option>\n<$list filter=\"[tag[$:/tags/setCat]]\" variable=\"currentIndex\">\n<option value=<<currentIndex>>><<currentIndex>></option>\n</$list>\n</$select></span>\n\\end\n\\define choosestory()\n<span title=\"Select a Snapshot\"><$select tiddler=\"$:/_snapshots_name\" field=\"storyname\" placeholder='Reihe wählen'>\n<option value=\"\">select a story</option>\n<$list filter=\"[tag[$(storycat)$]has[story]]\" variable=\"currentIndex\">\n<option value=<<currentIndex>>><<currentIndex>></option>\n</$list>\n</$select></span>\n\\end\n<$set name=\"snap\" value={{$:/_snapshots_name!!storyname}}>\n<$set name=\"storycat\" value={{$:/_snapshots_name!!storycat}}>\n<<choosecat>>\n<<choosestory>>\n<<showSnapshot>>\n</$set>\n\n\n",
"created": "20160603122604407",
"creator": "JR",
"modified": "20170329113132237",
"modifier": "JR",
"notification": "Test",
"tags": "$:/tags/Macro",
"title": "$:/plugins/JR/slidesnstories/Load",
"type": "application/x-tiddler"
},
"$:/plugins/JR/slidesnstories/Save": {
"created": "20160721203846694",
"creator": "JR",
"text": "\\define saveStory()\n<$set name=\"cat\" value={{$:/_snapshots_name!!storycat}}>\n<$set name=\"myStory\" filter=\"[list[$:/StoryList]!tag[excludeStory]]\" >\n<$button>{{$:/core/images/save-button}} {{$:/plugins/JR/slidesnstories/Language!!savestory}}<$action-setfield $tiddler=\"$(snapshot)$\" $field=\"story\" $value=<<myStory>>/>\n<$fieldmangler tiddler=\"$(snapshot)$\"><$action-sendmessage $message=\"tm-add-tag\" $param=<<cat>>/></$fieldmangler>\n<$action-sendmessage $message=\"tm-notify\" $param=\"StorySaved\"/>\n</$button>\n</$set>\n\\end\n\\define saveSlideshow()\n<$set name=\"cat\" value={{$:/_snapshots_name!!storycat}}>\n<$set name=\"myStory\" filter=\"[list[$:/StoryList]!tag[excludeStory]]\">\n<$button>{{$:/core/images/save-button}} {{$:/plugins/JR/slidesnstories/Language!!saveshow}}\n<$action-setfield $tiddler=\"$(snapshot)$\" $field=\"slideshow\" $value=<<myStory>>/>\n<$fieldmangler tiddler=\"$(snapshot)$\"><$action-sendmessage $message=\"tm-add-tag\" $param=<<cat>>/></$fieldmangler>\n<$action-sendmessage $message=\"tm-notify\" $param=\"ShowSaved\"/>\n</$button>\n</$set>\n</$set>\n\\end\n\\define saveshowBox()\n<$list filter=\"[field:title{$:/_snapshots_name!!storyname}has[slideshow]]\" emptyMessage=<<saveSlideshow>> >\n<div class=\"savewarning\">{{$:/plugins/JR/slidesnstories/Language!!showexists}}<$link><$view field=\"title\"/></$link> <br><<saveSlideshow>></div></$list>\n\\end\n\\define savestoryBox()\n<$list filter=\"[field:title{$:/_snapshots_name!!storyname}has[story]]\" emptyMessage=<<saveStory>> >\n<div class=\"savewarning\">{{$:/plugins/JR/slidesnstories/Language!!exists}} \n<$link><$view field=\"title\"/></$link><br><<saveStory>><br>\n</div>\n</$list>\n\\end\n<style>\n.savebox button{\nmargin-top:0px;\nborder-width:1px;\nwidth:100%;\ndisplay:inline-block;\ntext-align:center;\nfont-weight:400;\nfont-size:1.5em;\ncolor:rgba(186, 99, 43, 0.7);\n}\n.savewarning {\ndisplay: inline-block;\nbackground-color:rgba(186, 99, 43, 0.2);\nwidth:100%;\ncolor:red;\n}\n.savebox {\ndisplay: inline-block;\nwidth:48%;\n}\n</style>\n<br>Category:<<choosecat>>\n<br>Name:<span title=\"Enter a Name\"><$edit-text tiddler=\"$:/_snapshots_name\" field=\"storyname\"/></span><br>\n<$set name=\"snapshot\" value={{$:/_snapshots_name!!storyname}}>\n<div class=\"savebox\">\n<<savestoryBox>>\n</div>\n<div class=\"savebox\">\n<<saveshowBox>>\n</div>\n</$set>\n\n\n",
"type": "application/x-tiddler",
"title": "$:/plugins/JR/slidesnstories/Save",
"tags": "$:/tags/Macro",
"savestory": "Story speichern",
"saveslideshow": "Präsentation speichern",
"modifier": "JR",
"modified": "20170313112919551",
"caption": "Stories"
},
"$:/plugins/JR/slidesnstories/Templates": {
"created": "20160721214536086",
"creator": "JR",
"text": "\\define showtitle()\n@@text-align:center;font-size:1.5em;<h1>$(thistitle)$</h1>@@\n\\end\n\\define shownothinghere()\n<$list filter='[all[current]!show[title]]'>\n<$action-setfield $tiddler=\"$:/state/slide\" show=\"nothing\"/>\n</$list>\n\\end\n\\define launchthisShow()\n<$list filter=\"[all[current]has[slideshow]]\" variable=\"thistitle\">\n<$button>\n<$action-setfield $tiddler=\"$:/state/slide\" text=\"slideshow\"/>\n<$action-setfield $tiddler=\"$:/slideshow\" list={{$(snap)$!!slideshow}}/>\n<$list filter='[list[$:/slideshow]]'>\n<$action-listops $tags=\"$:/slideshow\"/>\n</$list>\n{{$:/core/images/right-arrow}}{{$:/plugins/JR/slidesnstories/Language!!loadshow}}\n<$action-setfield $tiddler=\"$:/temp/beforeSlideshow\" text={{$:/StoryList!!list}}/>\n<$action-sendmessage $message=\"tm-close-all-tiddlers\"/>\n<$action-sendmessage $message=\"tm-full-screen\"/>\n<$action-setfield $tiddler=\"$:/plugins/JR/slides/ColorSwitcher\" theme={{$(snap)$!!palette}}/>\n<$action-setfield $tiddler=\"$:/temp/Slide/00\" text=<<showtitle>> show=\"yes\"/>\n<$list filter='[all[current]show[title]]' emptyMessage=<<shownothinghere>> >\n<$action-setfield $tiddler=\"$:/state/slide\" show=\"title\"/>\n</$list>\n</$button>\n</$list>\n\\end\n\n\n\\define loadstory()\n<$button set=\"$:/StoryList!!list\" setTo=\"$(storytoshow)$\" >{{$:/core/images/right-arrow}} {{$:/plugins/JR/slidesnstories/Language!!loadstory}}</$button>\n\\end\n\n\\define slidesnstories()\n<div class=snscontainer>\n<<showCase>><<showStory>>\n</div><br>\n<<showSlides>>\n\\end\n\n\\define showCase()\n<div class=\"showcase\">\n<<launchthisShow>>\n<$list filter=\"[list[!!slideshow]]\">\n<$link><$view field=\"title\"/></$link><br/>\n</$list>\n</div>\n\\end\n\n\\define showStory()\n<div class=\"storycase\">\n<$list filter=\"[all[current]has[story]]\">\n<$reveal state=\"$:/config/Navigation/openLinkFromOutsideRiver\" type=match text=top>\n<$button>{{$:/plugins/JR/slidesnstories/Language!!loadstory}}\n<$action-sendmessage $message=\"tm-close-other-tiddlers\" />\n<$list filter=\"[list[!!story]reverse[]]\">\n<$action-navigate $to=<<currentTiddler>>/>\n</$list>\n<$list filter=\"[all[current]]-[list[!!story]]\">\n<$action-sendmessage $message=\"tm-close-tiddler\" param=<<currentTiddler>> />\n</$list>\n</$button>\n</$reveal>\n<$reveal state=\"$:/config/Navigation/openLinkFromOutsideRiver\" type=match text=bottom>\n<$button>{{$:/plugins/JR/slidesnstories/Language!!loadstory}}\n<$list filter=\"[list[!!story]]\">\n<$action-navigate $to=<<currentTiddler>>/>\n</$list>\n<$action-setfield $tiddler=\"$:/StoryList\" list={{!!story}}/>\n</$button>\n</$reveal>\n<$list filter=\"[list[!!story]]\">\n<$link><$view field=\"title\"/></$link><br/></$list>\n</$list>\n</div>\n\\end\n\n\\define existings() [<storyTiddler>search:text[sli$(number)$]]\n\\define nokeep() [<storyTiddler>search:text[sli$(number)$]!search:keep[$(number)$]]\n\n\\define showSlides()\n<$list filter=\"[<storyTiddler>search:text[sli0]limit[1]]\" >\n@@width:95%;text-align:center;font-weight:400;font-size:1.5em;These Slides are marked in the Tiddler:@@\n<$list filter=\"01 02 03 04 05 06 07 08 09 10\" variable=\"number\">\n<$list filter=<<nokeep>> >\n<hr>\n</$list>\n<$list filter=<<existings>> >\n<div class=\"showslides\">\n\n!!<<number>>\n<$macrocall $name=\"slice\" tiddler=<<storyTiddler>> nr=<<number>> />\n</div>\n</$list>\n</$list>\n</$list>\n\\end\n\n<style>\n.snscontainer {\noverflow:hidden;\nwidth:101%;\nmargin-left:-5px;\n}\n.storycase button{\nmargin-top:0px;\nborder-width:1px;\nwidth:100%;\ndisplay:inline-block\ntext-align:center;\nfont-weight:400;\nfont-size:1.5em;\ncolor:rgba(186, 99, 43, 0.7);\n}\n.storycase {\ndisplay: inline-block !important;\nbackground-color:rgba(186, 99, 43, 0.2);\nwidth:49%;\npadding:2px;\n}\n.showcase button{\nmargin-top:0px;\nborder-width:1px;\nwidth:100%;\ndisplay:inline-block;\ntext-align:center;\nfont-weight:400;\nfont-size:1.5em;\ncolor:rgba(67, 180, 50, 0.7);\n}\n.showcase {\ndisplay: inline-block !important;\nbackground-color:rgba(67, 180, 50, 0.2);\nwidth:49%;\npadding:2px;\nmargin-top:0px\n}\n.showslides {\ndisplay: block;\nborder-color:black !important;\nborder-width:1px !important;\nwidth:95%;\nmargin-top:10px\n}\n</style>\n\n",
"loadshow": "Präsentation laden",
"loadstory": "Diese Story laden",
"modified": "20170313112202143",
"modifier": "JR",
"tags": "$:/tags/Macro $:/tags/Stylesheet",
"title": "$:/plugins/JR/slidesnstories/Templates"
},
"SlidesnStories": {
"created": "20160527011630710",
"creator": "JR",
"text": "<style>\n.story-manager button,\n.story-manager input,\n.story-manager select{\nwidth:135px;\ndisplay:inline-block;\ntext-align:left;\n}\n\n.story-manager div {\nmargin-top:10px;\n}\n</style>\n\n<div class=\"story-manager\">\n\n!Load\n{{$:/plugins/JR/slidesnstories/Load}}<br>\n{{$:/plugins/JR/slides/launch}}<br>\n\n!Save\n* Choose the catergory you want the Story to appear in in the Selectfields above.(categories are tagged ~$:/tags/setCat)\n* Choose an existing Name or set a new one:\n{{$:/plugins/JR/slidesnstories/Save}}\n</div>\n\n!Control the Tidders saved as Story or Show\n{{$:/core/ui/SideBar/Open}}",
"caption": "{{$:/core/images/slideshow}}",
"modified": "20170310004427285",
"modifier": "JR",
"tags": "$:/tags/SideBar",
"title": "SlidesnStories"
},
"$:/plugins/JR/slidesnstories/LanguageDeutsch": {
"created": "20170227205823533",
"creator": "JR",
"text": "This tiddler configures the text of the buttons of the StoryMacro.",
"confirmoverwritestory": "Unter dem Titel ist schon eine Story gespeichert. <br>Das Speichern würde diesen überschreiben;<br>Sie sollten diesen vorher ansehen:<br>",
"exists": "Dieser Eintrag existiert schon! Das Speichern würde diesen überschreiben! Sie sollten diesen vorher ansehen:<br>",
"loadshow": "Präsentation starten",
"loadstory": "Reihe laden",
"modified": "20170309010835169",
"modifier": "JR",
"saveshow": "Präsentation speichern",
"savestory": "Reihe speichern",
"tags": "",
"title": "$:/plugins/JR/slidesnstories/LanguageDeutsch"
},
"$:/plugins/JR/slidesnstories/Language": {
"created": "20170309004408371",
"creator": "JR",
"text": "This tiddler configures the text of the buttons of the StoryMacro.",
"exists": "There already is a Story saved for this title.<br>Look at it before overwriting. ",
"loadshow": "launch presentation",
"loadstory": "load this story",
"modified": "20170309004506133",
"modifier": "JR",
"saveshow": "save this presentation",
"savestory": "save this story",
"showexists": "There already is a presentation saved for this title.<br>Look at it before overwriting. ",
"tags": "",
"title": "$:/plugins/JR/slidesnstories/Language"
},
"$:/core/images/slideshow": {
"text": "<svg class=\"tc-image tc-image-button tc-image-Alist-button\" width=\"22pt\" height=\"22ptx\" viewBox=\"0 0 414 388.5\" enable-background=\"new 0 0 512 512\" xml:space=\"preserve\">\n <path\n id=\"window-new-icon\"\n d=\"m 91.417,0 0,297.972 320.583,0 L 412,0 91.417,0 Z M 362,247.972 l -220.583,0 0,-150.972 220.583,0 0,150.972 z m 0,140.528 0,-50 -312,0 0,-241.972 -50,0 0,291.972 362,0 z\"/>\n</svg>",
"created": "20150616003850226",
"creator": "Birthe",
"modified": "20170228123404782",
"modifier": "JR",
"origin": "Birhe",
"tags": "Remote",
"title": "$:/core/images/slideshow",
"type": ""
}
}
}
{
"tiddlers": {
"$:/plugins/kixam/timeline/widget.utils.js": {
"text": "/*\\\ntitle: $:/plugins/kixam/timeline/widget.utils.js\ntype: application/javascript\nmodule-type: library\n\n A library of reusable functions, used in the TW5-visjsTimeline plugin\n\n\\*/\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\n\n(function() {\n 'use strict';\n\n // parseWidgetAttributes\n //\n // Utility to handle configuration attributes for a widget.\n // It handles validation, coercion and assignment of attribute values to the current widgets fields.\n // Parent and nextSibling are required so that any errors can be reported\n //\n // The attributeDefns are a object representing with a field for each attribute expected by the widget\n //\n // Each definition field is an object with two fields\n // type - This is used to coerce values before assignment (only string and integer are currently supported)\n // defaultValue - When an attribute is not provided in the plugin call, then this value should be used instead\n //\n // If an attribute is passed to the plugin that is not expected (i.e. in the attributeDefns object), then this function returns false\n // and an error message is output on the parent. This should be shown instead of the widget's usual view.\n //\n function parseWidgetAttributes(self, attributeDefns) {\n var errors = [];\n for (var attr in self.attributes) {\n if (attributeDefns[attr] === undefined) {\n errors.push(attr);\n } else {\n if (attributeDefns[attr].type == \"string\") {\n self[attr] = self.attributes[attr];\n } else if (attributeDefns[attr].type == \"integer\") {\n self[attr] = parseInt(self.attributes[attr] );\n if (isNaN(self[attr])) {\n delete self[attr];\n }\n }\n }\n }\n if (errors.length !== 0) {\n return errors;\n }\n for (var attrDefn in attributeDefns) {\n if (self[attrDefn] === undefined) {\n self[attrDefn] = attributeDefns[attrDefn].defaultValue;\n }\n }\n return undefined;\n }\n\n function displayTiddler(self,toTiddlerTitle){\n var domTiddler = self.parentDomNode.parentNode;\n var bounds = domTiddler.getBoundingClientRect();\n var e = {\n type: \"tm-navigate\",\n navigateTo: toTiddlerTitle,\n navigateFromTitle: self.getVariable(\"currentTiddler\"),\n navigateFromNode: domTiddler,\n navigateFromClientRect: { top: bounds.top, left: bounds.left, width: bounds.width, right: bounds.right, bottom: bounds.bottom, height: bounds.height\n }\n };\n self.dispatchEvent(e);\n }\n\n function enhancedColorStyle(csscolor) {\n var color = $tw.utils.parseCSSColor(csscolor);\n var style = null;\n if(color !== null) {\n for(var i=0;i<3;i++) color[i] = Math.floor(240 + color[i] / 17);\n\n style = \"border-color: \" + csscolor + \";\"\n + \"background-color: rgb(\" + (color[0]).toString()+\",\"\n + (color[1]).toString()+\",\"\n + (color[2]).toString()+\");\";\n }\n return style;\n }\n\n // adapted from $tw.utils.error of $:/boot/boot.js\n function dispError(message, title, subtitle) {\n console.error($tw.node ? \"\\x1b[1;31m\" + message + \"\\x1b[0m\" : message);\n if($tw.browser && !$tw.node) {\n // Display an error message to the user\n var dm = $tw.utils.domMaker,\n heading = dm(\"h1\",{text: (title || \"Error with vis.js Timeline\")}),\n prompt = dm(\"div\",{text: (subtitle || \"Please check the following:\"), \"class\": \"tc-error-prompt\"}),\n message = dm(\"div\",{innerHTML: message, attributes: {style: \"text-align: left;\"}}),\n button = dm(\"button\",{text: \"close\"}),\n form = dm(\"form\",{children: [heading,prompt,message,button], \"class\": \"tc-error-form\", attributes: {style: \"background-color: rgb(75, 75, 255); border: 8px solid rgb(0, 0, 255);\"}});\n document.body.insertBefore(form,document.body.firstChild);\n form.addEventListener(\"submit\",function(event) {\n document.body.removeChild(form);\n event.preventDefault();\n return false;\n },true);\n return null;\n } else if(!$tw.browser) {\n // Exit if we're under node.js\n process.exit(1);\n }\n }\n\n function setTiddlerField(tiddlerTitle, field, value) {\n if(tiddlerTitle && field) {\n var fields = {\n title: tiddlerTitle\n };\n fields[field] = value;\n var tiddler = $tw.wiki.getTiddler(tiddlerTitle, true);\n $tw.wiki.addTiddler(new $tw.Tiddler(tiddler, fields));\n }\n }\n\n exports.parseWidgetAttributes = parseWidgetAttributes;\n exports.displayTiddler = displayTiddler;\n exports.enhancedColorStyle = enhancedColorStyle;\n exports.dispError = dispError;\n exports.setTiddlerField = setTiddlerField;\n}\n());\n",
"title": "$:/plugins/kixam/timeline/widget.utils.js",
"type": "application/javascript",
"module-type": "library"
},
"$:/plugins/kixam/timeline/icon": {
"title": "$:/plugins/kixam/timeline/icon",
"tags": "$:/tags/Image",
"text": "<svg height=\"22pt\" width=\"22pt\" viewBox=\"0 0 128 128\">\n<path fill-rule=\"evenodd\" d=\"m64 0 54.56 32v64l-54.56 32-54.56-32v-64zm-48.429 75.635c8.5524 1.5516 29.568 7.708 27.545 6.755-10.977-5.172-27.059-20.046-27.059-20.046l26.814-23.294s12.652-15.314 29.23-16.023c3.6806-.15747 13.92-7.5832 19.605-5.2303 4.0461 1.6746 7.6113 13.276 9.3244 19.035 4.6497 15.63 3.1019 46.52 3.1019 46.52s6.4391-.30692 7.0193 6.8629c.18694 2.3102-.0602 10.297-9.1531 10.615-28.973 1.01-61.939-6.115-86.429-25.195zm57.684-31.244a17.066 17.066 0 0 0 -17.073 17.073 17.066 17.066 0 0 0 17.073 17.063 17.066 17.066 0 0 0 17.063 -17.063 17.066 17.066 0 0 0 -17.063 -17.073zm4.6 17.455a5.3692 5.3692 0 0 1 5.3727 5.3636 5.3692 5.3692 0 0 1 -5.3727 5.3727 5.3692 5.3692 0 0 1 -5.3727 -5.3727 5.3692 5.3692 0 0 1 5.3727 -5.3636z\"/>\n</svg>\n"
},
"$:/plugins/kixam/timeline/styles.css": {
"title": "$:/plugins/kixam/timeline/styles.css",
"tags": "[[$:/tags/Stylesheet]]",
"type": "text/css",
"text": ".vis-item .vis-dot {\n border-color: inherit;\n}\n\n.vis-item .vis-range {\n background-color: #f0f0ff;\n}\n\n.vis-labelset .vis-label {\n background-color: #fffff0;\n}\n\n.vis-labelset .vis-label .vis-inner {\n font-weight: bold;\n width: 100%;\n text-align: center;\n}\n\n.visjstimeline-navpad {\n position: relative;\n}\n\n.visjstimeline-navpad div, .visjstimeline-warning {\n z-index: 9999;\n -moz-user-select: none;\n}\n\n.visjstimeline-warning {\n fill: #FFFFFF;\n background-color: #EE0000;\n box-shadow: 0 0 5px rgba(0, 0, 0, 0.75);\n top: 15px;\n right: 15px;\n width: 34px;\n height: 34px;\n position: absolute;\n display: inline-block;\n cursor: pointer;\n}\n\n.visjstimeline-warning:hover {\n background-color: #FF0000;\n}\n\n.visjstimeline-warning svg {\n width: 32px;\n height: 32px;\n margin: 1px;\n}\n\n.item-icon svg, .item-icon img {\n max-height: 14px;\n max-width: 14px;\n}\n\n.group-icon svg, .group-icon img {\n max-height: 16px;\n max-width: 16px;\n}\n"
},
"$:/plugins/kixam/timeline/license": {
"title": "$:/plugins/kixam/timeline/license",
"text": "! [[BSD 2-clause simplified license|http://www.freebsd.org/copyright/freebsd-license.html]]\n```\nCopyright (c) 2015, kixam\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n# Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n# Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n```\n"
},
"$:/plugins/kixam/timeline/readme": {
"title": "$:/plugins/kixam/timeline/readme",
"text": "! vis.js Timeline\n\nA timeline plugin for [[TiddlyWiki|http://tiddlywiki.com]] 5, using [[vis.js|http://visjs.org]].\n\n---\n\nContinued from [[emkay's plugin|https://github.com/emkayonline/tw5visjs]].\n\nDepends on [[felixhayashi's vis.js plugin|https://github.com/felixhayashi/TW5-Vis.js]] and [[moment.js plugin|https://github.com/kixam/TW5-moment.js]], which are available, along with installation instructions, on the [[demo site|http://kixam.github.io/TW5-visjsTimeline]].\n"
},
"$:/plugins/kixam/timeline/usage": {
"title": "$:/plugins/kixam/timeline/usage",
"text": "\\define createSaveCloseTiddler(title,text)\n<$action-sendmessage $message=\"tm-new-tiddler\" title=\"$title$\" text=\"$text$\" />\n<$action-sendmessage $message=\"tm-save-tiddler\" $param=\"Draft of '$title$'\" />\n<$action-sendmessage $message=\"tm-close-tiddler\" $param=\"$title$\" />\n\\end\n\n\\define demoTiddlerContents(option)\nValue for option ''$option$'' : <$edit-text tag=input tiddler='$(optionValueTiddler)$'/>\n\n!!Result\n<$visjstimeline $option$={{$(optionValueTiddler)$}} />\n\\end\n\n\\define tryit(option,value:\"\")\n<$set name=optionValueTiddler value=\"$:/temp/visjstimeline-demo-option-$option$\">\n<$set name=optionDemoTiddler value=\"Testing option '$option$'\">\n<$button>\n<$macrocall $name=createSaveCloseTiddler title=<<optionValueTiddler>> text=\"$value$\" />\n<$macrocall $name=createSaveCloseTiddler title=<<optionDemoTiddler>> text=<<demoTiddlerContents \"$option$\">> />\n<$action-navigate $to=<<optionDemoTiddler>> />\nTry it!\n</$button>\n</$set>\n</$set>\n\\end\n\n!Introduction\n\nThis project is a direct continuation of [[emkay's plugin|https://github.com/emkayonline/tw5visjs]].\n\nThe `<$visjstimeline>` widget shows a set of tiddlers on a graphical timeline. The timeline is interactive and dynamic, and can be zoomed and moved around by dragging.\n\n!Content and Attributes\n\nA list of tiddlers is specified using a filter.\n\nEach matching tiddler is shown on the timeline using its specified start date and, if provided, end date fields. The start date defaults to the 'created' field.\n\n!! Valid date format on tiddlers\n* By default dates are parsed using the [[TiddlyWiki|http://tiddlywiki.com/#TiddlyWiki]] date parser (which will handle the `created` and `modified` fields)\n* An override date format can be specified.\n* This format will apply to both the start and end dates, `customTime`, as well as `timeline.start` and `timeline.end` fields if set manually.\n* Additionally the start date or end date field on a tiddler, or the `customTime` attribute, can be set to the word `now`: this will set the date in the timeline to the date at the time the timeline is displayed.\n* Finally, any date field can use `moment`'s [[relative date calculation functions|http://momentjs.com/docs/#/manipulating/add/]] `add` or `subtract`, overloading the provided format. For instance, if `persistent` option is used, one can manually set `timeline.start` field to `moment().subtract(2,days)`, which will result in the timeline start date to be 2 days before 'now', that is 2 days before the date when the timeline is rendered. The syntax `moment(2015-10-14).add(1,days)` would compute into one day after Wednesday, 14th October, 2015, that is, Thursday, 15th. In this particular case, it is advised to set `vis.js` option `moveable` to `false`, see this plugin's `config` option.\n\n!! Relevant tiddler fields\n|!Field|!Interpretation|\n| `caption` |Used to represent the tiddler instead of the `title`.|\n| `description` |Used instead of `caption` or `title` to render description text when mouse hovers over the item.|\n| `icon` |Link to a image tiddler that will be used as the item's icon.|\n| `color` |Used to render the corresponding item or group on the timeline.|\n| `timeline.start` and `timeline.end` |If the `persistent` attribute is present, used to initialize the start and end of the contained timeline x-axis, respectively. When in use, `persistent` option will use a temporary tiddler at `$:/temp/kixam/visjstimeline/persistent/<titleOfTiddlerContainingTimeline>`. Note that, if `vis.js` option `moveable` is set to `true`, which is the default, these fields at the temporary tiddler will be silently overwritten by this plugin whenever the user zooms or moves the timeline. You can also change them manually.|\n\n!! Attributes\n\nAll attributes are optional.\n\n|!Attribute|!Description|!Default value|! |\n| `filter` |The [[TiddlerFilter|http://tiddlywiki.com/#Filters]] used to generate the list of tiddlers to display.|`!is[system]`|<<tryit filter \"[all[tiddlers]tag[Group A]]\">>|\n| `startDateField` |A field on each tiddler that defines the start date of a tiddler in the timeline.|`created`|<<tryit startDateField modified>>|\n| `endDateField` |A field on each tiddler that defines the end date of a tiddler in the timeline.|//undefined//|<<tryit endDateField created>>|\n| `format` |The format for parsing the dates, using the moment.js [[Parse string+format|http://momentjs.com/docs/#/parsing/string-format/]]. If unset, uses [[TW5 date format|http://tiddlywiki.com/#DateFormat]].|//undefined//||\n| `groupField` |A field whose value will be used to group tiddlers on the timeline.|//undefined//|<<tryit groupField color>>|\n| `customTime` |A date at which a vertical bar will be shown on the timeline. Affected by `format`. It can be moved by the user, but the new position will not be saved.|//undefined//|<<tryit customTime \"20150619\">>|\n| `groupTags` |If `groupField` field is not used and if a filtered tiddler has a tag among the given [[Title List|http://tiddlywiki.com/#Title%20List]], this tag will be used as the item's group.|//undefined//|<<tryit groupTags \"[[Group A]]\">>|\n| `boxing` |If set to `static`, the containing box will be static. If set to `auto`, the timeline will dynamically adjust its height to the items to show.|`static`|<<tryit boxing auto>>|\n| `navpad` |If set, a navpad will be shown.|//undefined//|<<tryit navpad>>|\n| `config` |Title of a tiddler which contains configuration options for the timeline in [[JSON format|http://tiddlywiki.com/#JSONTiddlers]], as per [[vis.js documentation|http://visjs.org/docs/timeline/#Configuration_Options]].|//undefined//||\n| `persistent` |If set, the x-axis range will become persistent. Uses (creates, if needed) 2 fields of the tiddler containing the timeline, namely `timeline.start` and `timeline.end`.|//undefined//|<<tryit persistent>>|\n\n!!!Notes about the `config` attribute\n* for the sake of integration, not all the options are available, please see [[the whitelist|$:/plugins/kixam/timeline/validOptions]];\n* the `navpad` is not affected by options passed through this mechanism, except for these listed below the `whitelist` under the name `navbarReactOptions`;\n* if you create or change options in your config tiddler after the timeline was drawn, you may need to have it redrawn, e.g. by editing/canceling the tiddler containing the timeline, or by changing sidebar panel back and forth.\n\n!!!Notes about the `groupField` and `groupTags` attributes\n* if the `filter` finds tiddlers that cannot be grouped according to the criteria given by either of these attributes, these tiddlers will be shown in a dedicated generic group called `Global`\n* if a tiddler representing a tag is listed by the `groupTags` attribute and has any of the relevant tiddler fields listed in the previous section, they will be used to render the group in the group margin\n\nThe content of the `<$visjstimeline>` widget is ignored.\n\n! Example Usage\n\nShow all non-system tiddlers, using their created date as the start date:\n\n`<$visjstimeline/>`\n\nShow all Tiddlers with a name starting 'Tiddler', using the born and died fields with a custom format:\n\n`<$visjstimeline filter=\"[prefix[Tiddler]]\" startDateField=\"born\" endDateField=\"died\" format=\"YYYY MMM\"/>`\n"
},
"$:/plugins/kixam/timeline/validOptions": {
"title": "$:/plugins/kixam/timeline/validOptions",
"type": "application/json",
"text": "{\n\t\"whitelist\": [\"align\",\"clickToUse\",\"end\",\"format\",\"hiddenDates\",\"margin\",\"max\",\"min\",\"moveable\",\"orientation\",\"showCurrentTime\",\"showMajorLabels\",\"showMinorLabels\",\"stack\",\"start\",\"timeAxis\",\"zoomable\",\"zoomMin\",\"zoomMax\"],\n\t\"navbarReactOptions\": [\"clickToUse\",\"max\",\"min\",\"zoomMin\",\"zoomMax\"]\n}\n"
},
"$:/plugins/kixam/timeline/widget.timeline.js": {
"text": "/*\\\ntitle: $:/plugins/kixam/timeline/widget.timeline.js\ntype: application/javascript\nmodule-type: widget\n\n A widget for displaying timelines using Vis.js. http://visjs.org\n Continued from emkay's plugin at https://github.com/emkayonline/tw5visjs\n\n For full help see $:/plugins/kixam/timeline/help\n\n\\*/\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\n(function() {\n 'use strict';\n\n var Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n var moment = require(\"$:/plugins/kixam/moment/moment.js\");\n if(typeof window !== 'undefined' && typeof window.moment !== 'function') {\n window.moment = moment;\n }\n var utils = require(\"$:/plugins/kixam/timeline/widget.utils.js\");\n var vis = require(\"$:/plugins/felixhayashi/vis/vis.js\");\n\n var TimelineWidget = function(parseTreeNode,options) {\n Widget.call(this);\n this.initialise(parseTreeNode,options);\n };\n\n TimelineWidget.prototype = new Widget();\n\n TimelineWidget.prototype.render = function(parent,nextSibling) {\n this.parentDomNode = parent;\n this.computeAttributes();\n this.options = {orientation: \"bottom\"};\n this.tiddler = this.parentWidget;\n while(this.tiddler.parentWidget !== undefined && this.tiddler.tiddlerTitle === undefined && this.tiddler.transcludeTitle === undefined) {\n this.tiddler = this.tiddler.parentWidget;\n }\n this.tiddler = $tw.wiki.getTiddler(this.tiddler.tiddlerTitle || this.tiddler.transcludeTitle);\n this.warningTiddlerTitle = \"$:/temp/visjstimeline/warning/\" + this.tiddler.fields.title;\n this.persistentTiddlerTitle = \"$:/temp/visjstimeline/persistent/\" + this.tiddler.fields.title;\n this.hasCustomTime = false;\n\n var attrParseWorked = this.execute();\n if (attrParseWorked === undefined) {\n this.timelineHolder = $tw.utils.domMaker(\"div\",{attributes:{style: \"position: relative;\"}});\n parent.insertBefore(this.timelineHolder,nextSibling);\n this.domNodes.push(this.timelineHolder);\n\n if(this.attributes[\"boxing\"] !== \"auto\") {\n this.timelineHolder.style[\"height\"]=\"100%\";\n // -- adapted from felixhayashi's tiddlymap in widget.map.js\n this.sidebar = document.getElementsByClassName(\"tc-sidebar-scrollable\")[0];\n this.isContainedInSidebar = (this.sidebar && this.sidebar.contains(this.parentDomNode));\n if(this.isContainedInSidebar) {\n this.parentDomNode.style[\"margin-top\"]=\"-14px\";\n this.parentDomNode.style[\"padding-right\"]=\"2px\";\n } else {\n this.parentDomNode.style[\"height\"] = \"auto\";\n }\n parent.style[\"width\"] = this.getAttribute(\"width\", \"100%\");\n this.handleResizeEvent = this.handleResizeEvent.bind(this);\n window.addEventListener(\"resize\", this.handleResizeEvent, false);\n this.handleResizeEvent();\n // --\n this.options[\"height\"] = \"100%\";\n }\n\n this.createWarningButton();\n\n this.createTimeline();\n\n if(this.attributes[\"navpad\"] !== undefined) {\n this.options[\"orientation\"] = \"top\";\n }\n // default options must be set at this point, as we might add/change options from user through 'config'\n this.updateTimeline();\n\n if(this.attributes[\"navpad\"] !== undefined) {\n this.createNavpad(); // must be created only after all options were processed\n // e.g. for clickToUse, we observe vis-overlay, which will not exist if option is not processed\n }\n\n\n } else {\n utils.dispError(this.parseTreeNode.type+\": Unexpected attribute(s) \"+attrParseWorked.join(\", \"));\n this.refresh = function() {}; // disable refresh of this as it won't work with incorrrect attributes\n }\n };\n\n\n TimelineWidget.prototype.execute = function() {\n var attrParseWorked = utils.parseWidgetAttributes(this,{\n filter: { type: \"string\", defaultValue: \"[!is[system]]\"},\n groupField: { type: \"string\", defaultValue: undefined},\n startDateField: { type: \"string\", defaultValue: \"created\"},\n endDateField: { type: \"string\", defaultValue: undefined},\n format: { type: \"string\", defaultValue: undefined},\n customTime: { type: \"string\", defaultValue: undefined},\n groupTags: {type: \"string\", defaultValue: undefined},\n boxing: {type: \"string\", defaultValue: \"static\"},\n navpad: {type: \"string\", defaultValue: undefined},\n config: {type: \"string\", defaultValue: undefined},\n persistent: {type: \"string\", defaultValue: undefined},\n });\n\n if ((attrParseWorked === undefined) && (this.filter)) {\n this.compiledFilter = this.wiki.compileFilter(this.filter);\n }\n\n return attrParseWorked;\n };\n\n TimelineWidget.prototype.getTimepointList = function(changedTiddlers) {\n var tiddlerList = [];\n // process the filter into an array of tiddler titles\n tiddlerList = this.compiledFilter.call(null, changedTiddlers, null);\n // If filter is a list of tiddlers it will return tiddlers even if they are not in changed Tiddlers\n if (changedTiddlers !== undefined) {\n tiddlerList = tiddlerList.filter(function (e) { return changedTiddlers[e];});\n }\n var self = this;\n var withoutDraftsList = tiddlerList.filter(function(optionTitle) {\n var optionTiddler = self.wiki.getTiddler(optionTitle);\n if (optionTiddler === undefined) {\n // tiddler may not exist if list attribute provided to widget, so exclude\n return true;\n } else {\n var isDraft = optionTiddler && optionTiddler.hasField(\"draft.of\");\n return !isDraft;\n }\n });\n return withoutDraftsList;\n };\n /*\n Selectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n */\n TimelineWidget.prototype.refresh = function(changedTiddlers) {\n var changedAttributes = this.computeAttributes();\n if(changedAttributes.filter\n || changedAttributes.startDateField\n || changedAttributes.endDateField\n || changedAttributes.groupField\n || changedAttributes.customTime\n || changedAttributes.groupTags\n || changedAttributes.boxing\n || changedAttributes.navpad\n || changedAttributes.config) {\n this.refreshSelf();\n this.updateTimeline();\n return true;\n }\n if (this.displayedTiddlers.some(function (e) { return changedTiddlers[e.id]; })) {\n this.updateTimeline();\n return true;\n }\n var anyRelevantChanges = this.getTimepointList(changedTiddlers);\n if (anyRelevantChanges.length !== 0) {\n this.updateTimeline();\n return true;\n }\n this.handleResizeEvent();\n };\n\n TimelineWidget.prototype.createTimeline = function() {\n var data = [];\n this.timeline = new vis.Timeline(this.timelineHolder, data, this.options);\n\n var self = this;\n this.timeline.on('click', function(properties) {\n // Check if background or a tiddler is selected\n if (properties.item !== null) {\n var toTiddlerTitle = properties.item;\n utils.displayTiddler(self, toTiddlerTitle);\n }\n else if(properties.group !== null && properties.what === \"group-label\") {\n var toTiddlerTitle = properties.group;\n if($tw.wiki.getTiddler(toTiddlerTitle)) {\n utils.displayTiddler(self, toTiddlerTitle);\n }\n }\n });\n\n if(this.attributes[\"persistent\"] !== undefined) {\n // duplicate initial settings to working tiddler if it does not exist\n var tiddler = $tw.wiki.getTiddler(this.persistentTiddlerTitle);\n if(tiddler === undefined) {\n var rawstart = this.tiddler.fields[\"timeline.start\"],\n tstart = moment(dateFieldToDate(rawstart, this.format)),\n rawend = this.tiddler.fields[\"timeline.end\"],\n tend = moment(dateFieldToDate(rawend, this.format)),\n fields = {title: this.persistentTiddlerTitle,\n text: \"Timeline in [[\" + this.tiddler.fields.title + \"]] starts from {{!!timeline.start}} and ends at {{!!timeline.end}}\"};\n if(tstart.isValid() && tend.isValid() && tstart.isBefore(tend)) {\n fields[\"timeline.start\"] = rawstart;\n fields[\"timeline.end\"] = rawend;\n }\n $tw.wiki.addTiddler(new $tw.Tiddler(fields));\n }\n\n // apply saved x-axis range from the working tiddler\n tiddler = $tw.wiki.getTiddler(this.persistentTiddlerTitle);\n var start = moment(dateFieldToDate(tiddler.fields[\"timeline.start\"], this.format)),\n end = moment(dateFieldToDate(tiddler.fields[\"timeline.end\"], this.format));\n if(start.isValid() && end.isValid() && start.isBefore(end)) {\n this.options.start = start.toDate();\n this.options.end = end.toDate();\n }\n\n // monitor and save changes in x-axis range\n this.writeRange = false;\n this.handleRangeChanged = this.handleRangeChanged.bind(this);\n this.timeline.on('rangechanged', this.handleRangeChanged);\n }\n };\n\n TimelineWidget.prototype.handleRangeChanged = function(properties) {\n if(properties.byUser || this.writeRange) {\n var start = moment(properties.start);\n var end = moment(properties.end);\n if(start.isValid() && end.isValid()) {\n utils.setTiddlerField(this.persistentTiddlerTitle, \"timeline.start\", start.format());\n utils.setTiddlerField(this.persistentTiddlerTitle, \"timeline.end\", end.format());\n }\n }\n this.writeRange = false;\n }\n\n // -- adapted from felixhayashi's tiddlymap in widget.map.js\n TimelineWidget.prototype.handleResizeEvent = function(event) {\n if(this.isContainedInSidebar) {\n var windowHeight = window.innerHeight;\n var canvasOffset = this.parentDomNode.getBoundingClientRect().top;\n var distanceBottom = this.getAttribute(\"bottom-spacing\", \"0px\");\n var calculatedHeight = (windowHeight - canvasOffset - (this.isContainedInSidebar?3:0)) + \"px\";\n this.parentDomNode.style[\"height\"] = \"calc(\" + calculatedHeight + \" - \" + distanceBottom + \")\";\n } else if(this.attributes[\"boxing\"] === \"auto\") {\n this.parentDomNode.style[\"height\"] = \"auto\";\n } else {\n var height = this.getAttribute(\"height\");\n this.parentDomNode.style[\"height\"] = (height ? height : \"300px\");\n }\n if(this.timeline) {\n this.timeline.redraw(); // redraw timeline\n }\n };\n // --\n\n TimelineWidget.prototype.createWarningButton = function() {\n var button = $tw.utils.domMaker(\"div\", {innerHTML: $tw.wiki.getTiddlerText(\"$:/core/images/warning\",\"Warning\"), class: \"visjstimeline-warning\", attributes: {title: \"Not all tiddlers could be rendered\", style: \"visibility: hidden\"}});\n\n this.timelineHolder.appendChild(button);\n this.domNodes.push(button);\n\n this.handleWarningClick = this.handleWarningClick.bind(this);\n button.addEventListener(\"click\", this.handleWarningClick, false);\n }\n\n TimelineWidget.prototype.handleWarningClick = function(event) {\n utils.displayTiddler(this, this.warningTiddlerTitle);\n }\n\n TimelineWidget.prototype.appendWarning = function(message) {\n if($tw.wiki.getTiddler(this.warningTiddlerTitle) === undefined) {\n var format = \"Using \";\n if(this.format === undefined) {\n format += \"[[TW5 date format|http://tiddlywiki.com/#DateFormat]]\";\n } else {\n format += \"[[moment.js format|http://momentjs.com/docs/#/parsing/string-format/]]: `\" + this.format + \"`\";\n }\n var fields = {title: this.warningTiddlerTitle, text: \"!!!Problems found while rendering `<$visjstimeline/>` in [[\"+this.tiddler.fields.title+\"]]\\n\\n\" + format + \"\\n\\n|!Tiddler|!Problem|!Result|\\n\"};\n $tw.wiki.addTiddler(new $tw.Tiddler(fields));\n }\n utils.setTiddlerField(this.warningTiddlerTitle,\"text\", $tw.wiki.getTiddlerText(this.warningTiddlerTitle) + message + \"\\n\");\n var button = this.timelineHolder.getElementsByClassName(\"visjstimeline-warning\")[0];\n button.style[\"visibility\"] = \"visible\";\n }\n\n TimelineWidget.prototype.resetWarning = function() {\n $tw.wiki.deleteTiddler(this.warningTiddlerTitle);\n var button = this.timelineHolder.getElementsByClassName(\"visjstimeline-warning\")[0];\n button.style[\"visibility\"] = \"hidden\";\n }\n\n TimelineWidget.prototype.createNavpad = function() {\n var navpad = $tw.utils.domMaker(\"div\",{class: \"vis-navigation visjstimeline-navpad\"});\n\n this.timelineHolder.className = \"vis-network\";\n this.timelineHolder.appendChild(navpad);\n this.domNodes.push(navpad);\n\n navpad.appendChild($tw.utils.domMaker(\"div\",{attributes:{class: \"vis-button vis-up\", id: \"up\", style: \"visibility: hidden\"}}));\n navpad.appendChild($tw.utils.domMaker(\"div\",{attributes:{class: \"vis-button vis-down\", id: \"down\", style: \"visibility: hidden\"}}));\n navpad.appendChild($tw.utils.domMaker(\"div\",{attributes:{class: \"vis-button vis-left\", id: \"left\"}}));\n navpad.appendChild($tw.utils.domMaker(\"div\",{attributes:{class: \"vis-button vis-right\", id: \"right\"}}));\n navpad.appendChild($tw.utils.domMaker(\"div\",{attributes:{class: \"vis-button vis-zoomIn\", id: \"zoomIn\"}}));\n navpad.appendChild($tw.utils.domMaker(\"div\",{attributes:{class: \"vis-button vis-zoomOut\", id: \"zoomOut\"}}));\n navpad.appendChild($tw.utils.domMaker(\"div\",{attributes:{class: \"vis-button vis-zoomExtends\", id: \"zoomExtends\"}}));\n\n this.handleNavpadClick = this.handleNavpadClick.bind(this);\n for(var i=0; i<navpad.childNodes.length; i++) {\n this.domNodes.push(navpad.childNodes[i]);\n navpad.childNodes[i].addEventListener(\"click\", this.handleNavpadClick, false);\n }\n\n var panel = this.timelineHolder.getElementsByClassName(\"vis-panel vis-center\")[0];\n var top = panel.getElementsByClassName(\"vis-shadow vis-top\")[0];\n var bottom = panel.getElementsByClassName(\"vis-shadow vis-bottom\")[0];\n var overlay = this.timelineHolder.getElementsByClassName(\"vis-overlay\")[0];\n\n this.handleItemsVisibilityChanged = this.handleItemsVisibilityChanged.bind(this);\n var self = this;\n var observer = new MutationObserver(function(mutations) {\n for(var i=0; i<mutations.length; i++) {\n self.handleItemsVisibilityChanged(mutations[i]);\n }});\n observer.observe(top, {attributes: true, subtree: false});\n observer.observe(bottom, {attributes: true, subtree: false});\n if(overlay !== undefined) { // clickToUse === true\n observer.observe(overlay, {attributes: true, subtree: false});\n navpad.style[\"visibility\"] = \"hidden\";\n }\n }\n\n TimelineWidget.prototype.handleItemsVisibilityChanged = function(mutation) {\n if(mutation.attributeName === \"style\") {\n if((' ' + mutation.target.className + ' ').indexOf(' vis-overlay ') > -1) {\n // whole navpad visibility\n var timeline = this.timelineHolder.getElementsByClassName(\"vis-timeline\")[0];\n var navpad = this.timelineHolder.getElementsByClassName(\"navpad\")[0];\n if(navpad !== undefined) {\n navpad.style[\"visibility\"] = (mutation.target.style[\"display\"] === \"none\" ? \"visible\":\"hidden\");\n }\n } else {\n // up and down buttons visibility\n var cls = \"vis-button \" + ( (' ' + mutation.target.className + ' ').indexOf(' vis-top ') > -1 ? \"vis-up\":\"vis-down\" );\n var button = this.timelineHolder.getElementsByClassName(cls)[0];\n if(button !== undefined) {\n button.style[\"visibility\"] = mutation.target.style[\"visibility\"];\n }\n }\n }\n }\n\n TimelineWidget.prototype.handleNavpadClick = function(event) {\n var range = this.timeline.getWindow();\n var interval = range.end - range.start;\n var ratio = 0.2; // horizontal movement\n var step = 10; // vertical movement\n\n var centerdiv = this.timelineHolder.getElementsByClassName(\"vis-panel vis-center\")[0];\n var contentdiv = centerdiv.getElementsByClassName(\"vis-content\")[0];\n this.writeRange = true; // handle persistence\n switch (event.target.id) {\n case \"up\":\n centerdiv.getElementsByClassName(\"vis-shadow vis-bottom\")[0].style[\"visibility\"] = \"visible\";\n contentdiv.style[\"top\"] = parseInt(contentdiv.style[\"top\"]) + step + \"px\";\n if(parseInt(contentdiv.style[\"top\"]) >= 0) {\n contentdiv.style[\"top\"] = \"0px\";\n centerdiv.getElementsByClassName(\"vis-shadow vis-top\")[0].style[\"visibility\"] = \"hidden\";\n }\n break;\n case \"down\":\n centerdiv.getElementsByClassName(\"vis-shadow vis-top\")[0].style[\"visibility\"] = \"visible\";\n contentdiv.style[\"top\"] = parseInt(contentdiv.style[\"top\"]) - step + \"px\";\n if( Math.abs(parseInt(contentdiv.style[\"top\"])) > contentdiv.getBoundingClientRect().height - centerdiv.getBoundingClientRect().height ) {\n contentdiv.style[\"top\"] = contentdiv.getBoundingClientRect().height - centerdiv.getBoundingClientRect().height;\n centerdiv.getElementsByClassName(\"vis-shadow vis-bottom\")[0].style[\"visibility\"] = \"hidden\";\n }\n break;\n case \"left\":\n this.timeline.setWindow({\n start: range.start.valueOf() - interval * ratio,\n end : range.end.valueOf() - interval * ratio,\n });\n break;\n case \"right\":\n this.timeline.setWindow({\n start: range.start.valueOf() + interval * ratio,\n end : range.end.valueOf() + interval * ratio,\n });\n break;\n case \"zoomIn\":\n this.timeline.setWindow({\n start: range.start.valueOf() + interval * ratio,\n end : range.end.valueOf() - interval * ratio,\n });\n break;\n case \"zoomOut\":\n this.timeline.setWindow({\n start: range.start.valueOf() - interval * ratio,\n end : range.end.valueOf() + interval * ratio,\n });\n break;\n case \"zoomExtends\":\n this.timeline.fit();\n break;\n default:\n this.dispError(\"No such navtab action: \" + action);\n }\n }\n\n function dateFieldToDate(dateField, dateFormat) {\n if(dateField === undefined) return;\n dateField = dateField.trim();\n var re = /moment\\([\"' ]*([^)\"']*)[\"' ]*\\)\\.(add|subtract)\\( *([^,]+) *,[\"' ]*([^)\"']+)[\"' ]*\\)/i;\n if (re.test(dateField)) {\n var res = re.exec(dateField),\n def = res[1],\n operation = res[2],\n qty = parseInt(res[3]),\n unit = res[4],\n m = (def.trim() === \"\" ? moment() : moment(def));\n if (operation === \"add\") {\n m.add(qty, unit);\n } else if(operation === \"subtract\"){\n m.subtract(qty, unit);\n }\n else m = moment.invalid();\n if (m.isValid()) {\n return m.toDate();\n }\n }\n else if (dateField === \"now\") {\n return new Date();\n }\n else if (dateField !== \"\") {\n if (dateFormat === undefined) {\n return $tw.utils.parseDate(dateField);\n } else {\n var m = moment(dateField, dateFormat, true);\n if (m.isValid()) {\n return m.toDate();\n }\n }\n }\n }\n\n function iconPrefix(icon, color, spanclass)\n {\n var text = \"\",\n iconTiddler = $tw.wiki.getTiddler(icon);\n if(iconTiddler !== undefined) {\n text = \"</span> \";\n var type = iconTiddler.fields.type || \"image/svg+xml\";\n if(type === \"image/svg+xml\") {\n text = iconTiddler.fields.text + text;\n } else {\n $tw.Wiki.parsers[type](type, iconTiddler.fields.text, iconTiddler.fields);\n var obj = $tw.Wiki.parsers.tree[0];\n text = \"></\" + obj.tag + \">\" + text;\n for(var k in obj.attributes) {\n text = \" \" + k + \" = '\" + obj.attributes[k].value + \"'\" + text;\n }\n text = \"<\" + obj.tag + text;\n }\n text = \"<span class='\" + spanclass + \"'\" + (color?\" style='fill:\"+color+\"';\":\"\") + \">\" + text;\n }\n return text;\n }\n\n function addTimeData(self) {\n return function(current, tiddlerName) {\n var currentData = current.data;\n var currentGroups = current.groups;\n var currentErrors = current.errors;\n var theTiddler = self.wiki.getTiddler(tiddlerName);\n // tiddler may not exist if list attribute provided to widget\n if (theTiddler !== undefined) {\n var tiddlerStartDate = theTiddler.getFieldString(self.startDateField);\n var startDate = dateFieldToDate(tiddlerStartDate, self.format);\n if (!isNaN(startDate)) {\n var caption = theTiddler.fields.caption || tiddlerName,\n description = theTiddler.fields.description || caption,\n color = theTiddler.fields.color || false,\n style = \"border-color: \" + color + \";\" || \"\",\n icon = theTiddler.fields.icon;\n caption = iconPrefix(icon, color, \"item-icon\") + caption;\n var newTimepoint = {id: tiddlerName, content: caption, title: description, style: style, start: startDate, type: 'point'};\n var tiddlerGroup = \"\";\n if (self.groupField !== undefined) {\n tiddlerGroup = theTiddler.getFieldString(self.groupField);\n } else if(self.groupTags !== undefined) {\n $tw.utils.each($tw.wiki.filterTiddlers(self.groupTags),\n function(tag) {if(theTiddler.hasTag(tag)) tiddlerGroup = tag;});\n }\n if(self.groupTags !== undefined || self.groupField !== undefined) {\n if (tiddlerGroup !== \"\") {\n newTimepoint.group = tiddlerGroup;\n currentGroups[tiddlerGroup] = true;\n } else {\n newTimepoint.group = \"Global\";\n currentGroups.Global = true;\n }\n }\n if (self.endDateField !== undefined ) {\n var tiddlerEndDate = theTiddler.getFieldString(self.endDateField);\n var endDate = dateFieldToDate(tiddlerEndDate, self.format);\n if(!isNaN(endDate) && endDate < startDate) {\n currentErrors.push(\"| [[\" + tiddlerName + \"]] |End date \\\"\" + tiddlerEndDate + \"\\\" (field `\" + self.endDateField + \"`) is before start date \\\"\" + tiddlerStartDate + \"\\\" (field `\" + self.startDateField + \"`)|Used start date as end date|\");\n endDate = startDate;\n }\n else if(isNaN(endDate)) {\n if(tiddlerEndDate === \"\") {\n currentErrors.push(\"| [[\" + tiddlerName + \"]] |End date field `\" + self.endDateField + \"` is empty or does not exist|Used start date as end date|\");\n } else {\n currentErrors.push(\"| [[\" + tiddlerName + \"]] |Could not parse end date \\\"\" + tiddlerEndDate + \"\\\" from field `\" + self.endDateField + \"`|Used start date as end date|\");\n }\n endDate = startDate;\n }\n\n newTimepoint.end = endDate;\n if (newTimepoint.end.getTime() != newTimepoint.start.getTime()) {\n newTimepoint.type = 'range';\n if(theTiddler.getFieldString(\"color\") !== \"\") {\n newTimepoint.style += \"border-width: 3px;\" + utils.enhancedColorStyle(theTiddler.getFieldString(\"color\"));\n }\n }\n }\n currentData.push(newTimepoint);\n } else {\n if(tiddlerStartDate === \"\") {\n currentErrors.push(\"| [[\" + tiddlerName + \"]] |Start date field `\" + self.startDateField + \"` is empty or does not exist|Not rendered|\");\n } else {\n currentErrors.push(\"| [[\" + tiddlerName + \"]] |Could not parse start date \\\"\" + tiddlerStartDate + \"\\\" from field `\" + self.startDateField + \"`|Not rendered|\");\n }\n }\n } else {\n currentErrors.push(\"| [[\" + tiddlerName + \"]] |Tiddler was not found|Not rendered|\");\n }\n return {data: currentData, groups: currentGroups, errors: currentErrors};\n };\n }\n\n TimelineWidget.prototype.updateTimeline = function() {\n this.resetWarning();\n\n var langprefix = \"$:/languages/\".length,\n lang = $tw.wiki.getTiddlerText(\"$:/language\").substring(langprefix, langprefix + 2);\n if(lang === \"zh\") {\n // TW5 does not use standard codes for Chinese\n var suffix = $tw.wiki.getTiddlerText(\"$:/language\");\n suffix = suffix.substring(suffix.length-1);\n if(suffix === \"s\") {\n lang = \"zh-cn\"; //simplified\n } else {\n lang = \"zh-tw\"; //traditional\n }\n }\n this.options[\"locale\"] = moment.locale([lang, \"en\"]);\n\n var timepointList = this.getTimepointList();\n var groups = {};\n if(this.groupTags !== undefined) {\n $tw.utils.each($tw.wiki.filterTiddlers(this.groupTags),\n function(tag) {groups[tag] = false;});\n }\n var result = timepointList.reduce(addTimeData(this), {data: [], groups: groups, errors: []});\n this.displayedTiddlers = result.data;\n this.timeline.setItems(result.data);\n if (this.customTime !== undefined) {\n if(this.hasCustomTime) {\n this.timeline.removeCustomTime();\n this.hasCustomTime = false;\n }\n var d = dateFieldToDate(this.customTime, this.format);\n if (d !== undefined) {\n this.timeline.addCustomTime(d);\n this.hasCustomTime = true;\n }\n }\n // override default options with these provided by the user, if any\n var config = $tw.wiki.getTiddlerData(this.attributes[\"config\"], {});\n var whitelist = $tw.wiki.getTiddlerData(\"$:/plugins/kixam/timeline/validOptions\", {\"whitelist\":[]}).whitelist;\n if(this.attributes[\"persistent\"] !== undefined) {\n whitelist.start = undefined;\n whitelist.end = undefined;\n }\n for(var opt in config) {\n if(whitelist.indexOf(opt) > -1) this.options[opt] = config[opt];\n }\n this.timeline.setOptions(this.options);\n if (Object.keys(result.groups).length !== 0) {\n var theGroups = [];\n for (var group in result.groups) {\n if(result.groups[group]) {\n if(group === \"Global\") {\n theGroups.splice(0,0,{id: group,\n content: \"— Global —\",\n title: \"(Global)\",\n style: \"background-color:rgba(0,0,0,0); font-style:italic;\"});\n } else {\n theGroups.push({id: group, content: group, title: group});\n var tiddler = $tw.wiki.getTiddler(group);\n if(tiddler !== undefined) {\n var icon = tiddler.fields.icon,\n color = tiddler.fields.color || false,\n caption = iconPrefix(icon, color, \"group-icon\") + \"<p>\" + (tiddler.fields.caption || group) + \"</p>\",\n description = tiddler.fields.description || tiddler.fields.caption || group;\n if(color) {\n theGroups[theGroups.length-1].style = \"border-width:3px; border-style:solid;\"\n + \"border-bottom-width:3px; border-bottom-style:solid;\"\n + utils.enhancedColorStyle(color);\n }\n theGroups[theGroups.length-1].content = caption;\n theGroups[theGroups.length-1].title = description;\n }\n }\n }\n }\n this.timeline.setGroups(theGroups);\n }\n for(var i=0; i<result.errors.length; i++) {\n this.appendWarning(result.errors[i]);\n }\n if(this.attributes[\"persistent\"] === undefined) {\n this.timeline.fit();\n }\n };\n\n exports.visjstimeline = TimelineWidget;\n\n }\n ());\n",
"title": "$:/plugins/kixam/timeline/widget.timeline.js",
"type": "application/javascript",
"module-type": "widget"
}
}
}
{
"tiddlers": {
"$:/plugins/malgam/version-control/versionTab": {
"created": "20180713032258699",
"creator": "malgam",
"text": "\\define myText()\n$:/_commit_message/$(currentTiddler)$\n\\end\n\n\\define sourceTiddler()\n[[$(currentTiddler)$]]\n\\end\n\n\\define statedifftext()\n$:/state/verTab/$(currentVersion)$/difftext\n\\end\n\n\\define statevertab()\n$:/state/verTab/$(currentVersion)$/vertab\n\\end\n\n\\define statetabtype()\n$:/state/verTab/$(currentVersion)$/type\n\\end\n\n\\define RestoreButton()\n<$button class=\"tc-btn-invisible tc-tiddlylink\">(restore this version)\n<$action-setfield $tiddler=<<currentVersion>> $field=\"text\" $value={{{ [<verTitle>get[text]] }}} $timestamp=\"no\"/>\n<$list filter=\"[<verTitle>fields[]prefix[_vc-]]\" variable=\"vcfield\">\n<$action-setfield $tiddler=<<currentVersion>> $field={{{ [<vcfield>removeprefix[_vc-]] }}} $value={{{ [<verTitle>get<vcfield>] }}} $timestamp=\"no\"/>\n</$list>\n<$list filter=\"[<currentVersion>fields[]] -title -text \" variable=\"cv-field\">\n<$wikify name=\"vcfield\" text=\"_vc-<<cv-field>>\">\n<$list filter=\"[<verTitle>!has:field<vcfield>]\">\n<$action-deletefield $tiddler=<<currentVersion>> $field=<<cv-field>>/>\n</$list>\n</$wikify>\n</$list>\n</$button>\n\\end\n\n\\define DeleteButton()\n<$button class=\"tc-btn-invisible tc-tiddlylink\">(delete this version)\n<$action-deletetiddler $tiddler=<<verTitle>>/>\n</$button>\n\\end\n\n\\define DiffTextButton()\n<$list filter=\"[<statedifftext>!text[yes]]\" emptyMessage=\"\"\"\n<$button set=<<statedifftext>> setTo=\"no\" class=\"tc-btn-invisible tc-tiddlylink\">(hide differences)</$button>\"\"\">\n<$button set=<<statedifftext>> setTo=\"yes\" class=\"tc-btn-invisible tc-tiddlylink\">(show differences)</$button>\n</$list>\n\\end\n\n\\define verTabs(type)\n<div class=\"tc-tab-set $type$\">\n<!-- Set up tabs -->\n<div class=\"tc-tab-buttons $type$\">\n<$list filter=\"[<statetabtype>!text[vertical]]\" emptyMessage=\"\"\"\n<$button set=<<statetabtype>> setTo=\"horizontal\" style=\"width: auto; margin-left: auto;\">→</$button>\"\"\">\n<$button set=<<statetabtype>> setTo=\"vertical\" style=\"width: auto; margin-left: auto;\">↓</$button>\n</$list>\n<$list filter=\"[<currentVersion>] [<currentVersion>listed[]prefix[$:/_vc]!sort[]]\" variable=\"verTitle\">\n<$button set=<<statevertab>> setTo=<<verTitle>> selectedClass=\" tc-tab-selected\">\n<$text text={{{ [<currentVersion>listed[]prefix[$:/_vc]allbefore:include<verTitle>count[]] }}}/>\n</$button>\n</$list>\n</div>\n<div class=\"tc-tab-divider $type$\"></div>\n\n<!-- Version header info -->\n<div class=\"tc-tab-content $type$\" style=\"overflow: auto;\">\n<$set name=\"verTitle\" value={{{ [<statevertab>get[text]] }}}>\n<$list filter=\"[<verTitle>has:field[commit_message]]\"><b>Commit Message:</b> <$text text={{{ [<verTitle>get[commit_message]] }}}/><br></$list>\n<$list filter=\"[<verTitle>prefix[$:/_vc]]\" emptyMessage=\"<b>Current Version</b>\"><b>Version Tiddler</b>: \n<$link to=<<verTitle>>><$text text=<<verTitle>>/></$link><br></$list>\n<div style=\"padding-bottom: 0.4em; float: right;\"><<DiffTextButton>> <$list filter=\"[<verTitle>prefix[$:/_vc]]\"> <<RestoreButton>> <<DeleteButton>> </$list></div>\n\n<!-- Display diff text -->\n<div class=\"diff-wrapper\">\n<$list filter=\"[<verTitle>fields[]prefix[_vc-]] ~[<verTitle>fields[]] -text -title +[sort[]] +[prepend[text]]\" variable=\"field\">\n<b style=\"float: left;\"><$text text={{{ [<field>removeprefix[_vc-]] ~[<field>] }}}/>: </b>\n<$list filter=\"[<statedifftext>!text[yes]]\">\n<div><pre><$text text={{{ [<verTitle>get<field>] }}}/></pre></div>\n</$list>\n<$list filter=\"[<statedifftext>text[yes]]\">\n<$set name=\"vcfield\" value={{{ [<field>regexp[^text$]] [<field>prefix[_vc-]] ~[<field>addprefix[_vc-]] }}}>\n<$set name=\"source\" value={{{ [<currentVersion>] [<currentVersion>listed[]prefix[$:/_vc/]!sort[]] +[after<verTitle>get<vcfield>] }}}>\n<$set name=\"destination\" value={{{ [<verTitle>get<field>] }}}>\n<$diff-text source=<<source>> dest=<<destination>>/>\n</$set>\n</$set>\n</$set>\n</$list>\n</$list>\n\n<b>Extra fields in previous version:</b><br>\n<$set name=\"sourceVer\" value={{{ [<currentVersion>] [<currentVersion>listed[]prefix[$:/_vc/]!sort[]] +[after<verTitle>] }}}>\n<$list filter=\"[<sourceVer>fields[]prefix[_vc-]] +[sort[]]\" variable=\"field\">\n<$set name=\"fieldtrimmed\" value={{{ [<field>removeprefix[_vc-]] }}}>\n<$list filter=\"[<verTitle>!prefix[$:/_vc/]!has:field<fieldtrimmed>]\"><<fieldtrimmed>></$list>\n<$list filter=\"[<verTitle>prefix[$:/_vc/]!has:field<field>]\"><<fieldtrimmed>></$list>\n</$set>\n</$list><br>\n</$set>\n\n</div>\n\n</$set><!-- verTitle -->\n\n</div>\n</div>\n\\end\n\n\\define commitActions()\n<$wikify name=\"versionTitle\" text=\"\"\"<$macrocall $name=\"now\" format=\"$:/_vc/YYYY0MM0DD0hh0mm0ss/{{!!title}}\"/>\"\"\">\n<$action-createtiddler $basetitle=<<versionTitle>> $savetitle=\"$:/temp/saveTid\" text={{!!text}} list=<<sourceTiddler>>/>\n<$action-setfield $tiddler={{$:/temp/saveTid}} $field=\"commit_message\" $value={{{ [<myText>get[text]] }}}/>\n<$list filter=\"[all[current]fields[]] -title -text\" variable=\"field\">\n<$action-setfield $tiddler={{$:/temp/saveTid}} $field={{{ [<field>addprefix[_vc-]] }}} $value={{{ [all[current]get<field>] }}}/>\n</$list>\n</$wikify>\n\\end\n\n<style>\n.diff-wrapper { margin: 0 0 1em 0; }\n.diff-wrapper div { width: 100%; }\n.diff-wrapper pre {\n margin: 0;\n width: 100%;\n max-height: 24em;\n overflow-y: auto;\n}\n.my-container {\n display: flex;\n flex-flow: row wrap;\n align-items: baseline;\n}\n</style>\n\n<div class=\"my-container\">\nCommit message: <span style=\"flex-grow: 1\">\n<$edit-text tiddler=<<myText>> tag=\"input\" default=\"Enter commit message...\" class=\"tc-edit-texteditor\"/>\n</span>\n<$button tooltip=\"Commit changes\" actions=<<commitActions>>>Commit</$button>\n</div>\n\n---\n''Versions:''<br>\n<$set name=\"currentVersion\" value=<<currentTiddler>>>\n<$list filter=\"[<statetabtype>!text[vertical]]\" emptyMessage=\"\"\"<<verTabs \"tc-vertical\">>\"\"\">\n<<verTabs>>\n</$list>\n</$set>\n",
"type": "",
"title": "$:/plugins/malgam/version-control/versionTab",
"tags": "$:/tags/TiddlerInfo",
"revision": "",
"modifier": "malgam",
"modified": "20190211063130504",
"caption": "Versions"
},
"$:/plugins/malgam/version-control/usage": {
"created": "20190125063501230",
"creator": "malgam",
"text": "This plugin provides a simple tiddler versioning system.\n\nIt allows versions of any tiddler to be \"committed\" along with a message to describe the version being saved. The version control functions are visible in the \"Versions\" tab in the \"Info\" {{$:/core/images/info-button}} area if a the tiddler.\n\nThis tab displays a text entry field for a commit message and a button for committing the current tiddler version as a new committed version.\n\nIt also allows for the following functions:\n\n* → / ↓ : show the version list as horizontal or vertical tabs\n* ''(show differences)'' / ''(hide differences)'' : shows/hides the differences between the selected version and the next previously committed version.\n* ''(restore)'' : replace the current state of the tiddler with that revision (all fields including //tags//, except //title//).\n* ''(delete)'' : deletes the selected revision.\n\nWhen the tab for a committed version of the tiddler is selected, the relevant commit message is displayed along with a link to the version tiddler.\n\n!!! ''Changing the source tiddler's title''\n\n* The current tiddler's title may be changed; its version tiddlers will always follow it as long as \"//Update (oldtitle) to (newtitle) in the tags and list fields of other tiddlers//\" is checked when editing the current tiddler's title.\n\n!!! ''Filter search for version tiddlers''\n\nFor version tiddlers of `Tiddler title`:\n\n`[prefix[$:/_vc/]search:list[Tiddler title]]`\n\n!!! ''Version tiddler structure''\n\n```\ntitle: $:/_vc/YYYY0MM0DD0hh0mm0ss/Title of source tiddler\nlist: [[Title of source tiddler]]\n_vc-list: listItems [[inside list field]] of [[source tiddler]]\n_vc-tags: [[tag 1]] tag2\n_vc-someotherfield: someotherfield's value\n... and all other fields of source tiddler, to be prefixed '_vc-'\n```\n\nRestoring the version will re-copy the stored _vc-fields (the \"_vc-\" prefix will be removed) and remove from the current version any fields not present in the restored version. \n\n!!! ''Notes''\n\n* Restoring a saved version will irretrievable delete the current version and any uncommitted editing changes will be lost!\n* If the current version of the tiddler is deleted, it's committed versions will remain as system tiddlers. They will need to be found using the Advanced Search and deleted manually if needed.\n\n",
"title": "$:/plugins/malgam/version-control/usage",
"tags": "",
"modifier": "malgam",
"modified": "20190208052045982"
},
"$:/plugins/malgam/version-control/readme": {
"text": "!! Simple Tiddler Version Control\n\nThis plugin provides a simple tiddler versioning system. Refer to the [[usage tiddler|$:/plugins/malgam/version-control/usage]] for guidance.\n\nIt was created to meet the following basic requirements:\n\n* The code for the plugin resides in a single wikitext tiddler.\n* The version control functionality does not interfere with the normal operation of a tiddlywiki and is contained in the \"Versions\" tab in the tiddler Info panel.\n* Committed versions of any tiddler can be saved at any time along with a simple commit message.\n* There is no automatic saving of versions during the edit process.\n* Committed versions can be restored to replace the current version of the subject tiddler.\n* Committed versions can be deleted.\n* Committed versions are saved as system tiddlers so that they do not show up in normal searches.\n* Incremental differences between each version and the next previous version can be displayed.\n\nThe plugin code is contained in the single tiddler [[$:/plugins/malgam/version-control/versionTab]] and consists of just wikitext, widgets and macros.\n\nAcknowledgements:\n\n* This plugin was inspired by and uses some code from JD's [[Plain Revisions Plugin|http://j.d.revisions.tiddlyspot.com/]]\n",
"title": "$:/plugins/malgam/version-control/readme",
"tags": "",
"modifier": "malgam",
"modified": "20190129071109995",
"creator": "malgam",
"created": "20190127044108901"
},
"$:/plugins/malgam/version-control/history": {
"created": "20190207061738145",
"creator": "malgam",
"text": "!! Release History\n\n!!! 0.0.7 - 2019-02-11\n\n* Reformat Commit Message text box to fill available horizontal space\n\n!!! 0.0.6 - 2019-02-08\n\n* Hide Restore and Delete buttons when current version selected\n* Fix error with display of field diffs\n* During version restore, remove fields from current version not present in restored version\n* Added warning to readme tiddler\n* Added History tiddler\n\n!!! 0.0.5 - 2019-02-04\n\n* Fixed problem with restoring fields from saved version\n* Added placeholder text to commit message text box\n\n!!! 0.0.4 - 2019-01-30\n\n* Initial released version\n",
"title": "$:/plugins/malgam/version-control/history",
"tags": "",
"modifier": "malgam",
"modified": "20190211070523500"
}
}
}
!! Simple Tiddler Version Control
This plugin provides a simple tiddler versioning system. Refer to the [[usage tiddler|$:/plugins/malgam/version-control/usage]] for guidance.
It was created to meet the following basic requirements:
* The code for the plugin resides in a single wikitext tiddler.
* The version control functionality does not interfere with the normal operation of a tiddlywiki and is contained in the "Versions" tab in the tiddler Info panel.
* Committed versions of any tiddler can be saved at any time along with a simple commit message.
* There is no automatic saving of versions during the edit process.
* Committed versions can be restored to replace the current version of the subject tiddler.
* Committed versions can be deleted.
* Committed versions are saved as system tiddlers so that they do not show up in normal searches.
* Incremental differences between each version and the next previous version can be displayed.
The plugin code is contained in the single tiddler [[$:/plugins/malgam/version-control/versionTab]] and consists of just wikitext, widgets and macros.
Acknowledgements:
* This plugin was inspired by and uses some code from JD's [[Plain Revisions Plugin|http://j.d.revisions.tiddlyspot.com/]]
This plugin provides a simple tiddler versioning system.
It allows versions of any tiddler to be "committed" along with a message to describe the version being saved. The version control functions are visible in the "Versions" tab in the "Info" {{$:/core/images/info-button}} area if a the tiddler.
This tab displays a text entry field for a commit message and a button for committing the current tiddler version as a new committed version.
It also allows for the following functions:
* → / ↓ : show the version list as horizontal or vertical tabs
* ''(show differences)'' / ''(hide differences)'' : shows/hides the differences between the selected version and the next previously committed version.
* ''(restore)'' : replace the current state of the tiddler with that revision (all fields including //tags//, except //title//).
* ''(delete)'' : deletes the selected revision.
When the tab for a committed version of the tiddler is selected, the relevant commit message is displayed along with a link to the version tiddler.
!!! ''Changing the source tiddler's title''
* The current tiddler's title may be changed; its version tiddlers will always follow it as long as "//Update (oldtitle) to (newtitle) in the tags and list fields of other tiddlers//" is checked when editing the current tiddler's title.
!!! ''Filter search for version tiddlers''
For version tiddlers of `Tiddler title`:
`[prefix[$:/_vc/]search:list[Tiddler title]]`
!!! ''Version tiddler structure''
```
title: $:/_vc/YYYY0MM0DD0hh0mm0ss/Title of source tiddler
list: [[Title of source tiddler]]
_vc-list: listItems [[inside list field]] of [[source tiddler]]
_vc-tags: [[tag 1]] tag2
_vc-someotherfield: someotherfield's value
... and all other fields of source tiddler, to be prefixed '_vc-'
```
Restoring the version will re-copy the stored _vc-fields (the "_vc-" prefix will be removed) and remove from the current version any fields not present in the restored version.
!!! ''Notes''
* Restoring a saved version will irretrievable delete the current version and any uncommitted editing changes will be lost!
* If the current version of the tiddler is deleted, it's committed versions will remain as system tiddlers. They will need to be found using the Advanced Search and deleted manually if needed.
{
"tiddlers": {
"$:/language/Search/Help/Caption": {
"created": "20140303203916282",
"creator": "Stephan Hradek",
"modified": "20140303204043397",
"modifier": "Stephan Hradek",
"title": "$:/language/Search/Help/Caption",
"type": "text/vnd.tiddlywiki",
"text": "Help"
},
"$:/help/skeeve/HelpEnvironment": {
"created": "20140303210045118",
"creator": "Stephan Hradek",
"modified": "20140303210723280",
"modifier": "Stephan Hradek",
"tags": "$:/HELP",
"title": "$:/help/skeeve/HelpEnvironment",
"type": "text/vnd.tiddlywiki",
"text": "The help environment is simply a new tab for the [[AdvancedSearch|$:/AdvancedSearch]] function.\n\nThe help search simply searches for Shadow Tiddlers tagged with ''$:/HELP''. For your own plugins to utilize this, I recommend to package help tiddlers as shadow tiddlers in the path ``$:/help/<yourname>/<helptopic>``.\n"
},
"$:/language/Search/Help/Hint": {
"created": "20140303203916282",
"creator": "Stephan Hradek",
"modified": "20140303204043397",
"modifier": "Stephan Hradek",
"title": "$:/language/Search/Help/Hint",
"type": "text/vnd.tiddlywiki",
"text": "Search for help files"
},
"$:/plugins/skeeve/HelpSearch": {
"caption": "{{$:/language/Search/Help/Caption}}",
"created": "20140228200428044",
"creator": "Stephan Hradek",
"modified": "20140303204011270",
"modifier": "Stephan Hradek",
"tags": "$:/tags/AdvancedSearch",
"title": "$:/plugins/skeeve/HelpSearch",
"type": "text/vnd.tiddlywiki",
"text": "\\define lingo-base() $:/language/Search/\n<$linkcatcher to=\"$:/temp/advancedsearch\">\n\n<<lingo Help/Hint>>\n\n<div class=\"tw-search\"><$edit-text tiddler=\"$:/temp/advancedsearch\" type=\"search\" tag=\"input\"/><$reveal state=\"$:/temp/advancedsearch\" type=\"nomatch\" text=\"\"> <$link to=\"\" class=\"btn-invisible\">{{$:/core/images/close-button}}</$link></$reveal></div>\n\n</$linkcatcher>\n\n<$reveal state=\"$:/temp/advancedsearch\" type=\"nomatch\" text=\"\">\n\n<div class=\"tw-search-results\">\n\n<<lingo Advanced/Matches>>\n\n<$list filter=\"[is[shadow]tag[$:/HELP]search{$:/temp/advancedsearch}sort[title]limit[250]]\" template=\"$:/core/ui/ListItemTemplate\"/>\n\n</div>\n\n</$reveal>\n\n<$reveal state=\"$:/temp/advancedsearch\" type=\"match\" text=\"\">\n\n</$reveal>\n"
}
}
}
/*\
title: $:/plugins/skeeve/let.js
type: application/javascript
module-type: widget
Set variables widget
```
<$let name=value …>
:
</$let>
```
Example:
```
<$let a="1" b="2" c="3" d="4">
<<someMacro>>
</$let>
```
\*/
(function(){
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
var Widget = require("$:/core/modules/widgets/widget.js").widget;
var LetWidget = function(parseTreeNode,options) {
this.initialise(parseTreeNode,options);
};
/*
Inherit from the base widget class
*/
LetWidget.prototype = new Widget();
/*
Render this widget into the DOM
*/
LetWidget.prototype.render = function(parent,nextSibling) {
this.parentDomNode = parent;
this.computeAttributes();
this.execute();
this.renderChildren(parent,nextSibling);
};
/*
Compute the internal state of the widget
*/
LetWidget.prototype.execute = function() {
// Get our parameters
// As there is nothing which will give me the attributes,
// I have to access the object myself…
for(var name in this.attributes) {
this.setVariable(name, this.attributes[name], this.parseTreeNode.params);
}
// Construct the child widgets
this.makeChildWidgets();
};
/*
Selectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering
*/
LetWidget.prototype.refresh = function(changedTiddlers) {
var changedAttributes = this.computeAttributes();
for(var attr in changedAttributes) {
if(changedAttributes[attr]) {
this.refreshSelf();
return true;
}
}
return this.refreshChildren(changedTiddlers);
};
exports.let = LetWidget;
})();
{
"tiddlers": {
"$:/help/skeeve/NewtiddlerWidget": {
"created": "20131219134809679",
"creator": "Stephan Hradek",
"modified": "20140303191836454",
"modifier": "Stephan Hradek",
"tags": "$:/HELP",
"title": "$:/help/skeeve/NewtiddlerWidget",
"type": "text/vnd.tiddlywiki",
"text": "This is a test for the highly experimental New-Tiddler-Button which allows to pre fill a skeleton tiddler with variable data.\n\nThe New-Tiddler-Button expects 2 parameters:\n\n|Parameter |Mandatory |Explanation |h\n|title |yes |the title of the new tiddler. Will get numbers appended |\n|skeleton |yes |an existing tiddler which may contain variable placeholders |\n|edit |no |This defines wether to open the new tiddler in edit mode. Must be one of \"yes\", \"no\", \"show\" or (not implemented yet) \"inline\". Defaults to \"yes\". |\n\nThe most important part lies in the skeleton! TiddlyWiki already can clone tiddlers, but you can't really prefill data of the newly created tiddler.\n\nWith `<$newtiddler>` you can put placeholders of the form `$(variable)$` ''anywhere'' in the tiddler and they will be replaced by the values of the variables set with the `<$set>` or `<$let>` widget. Please note: The placeholders can be ''anywhere''! In the tiddlers body, in fields, types, you name it…\n\nThe example skeleton used here looks like this:\n\n|Property |Content |h\n|title |skeleton 1 |\n|text |This is some test: $(placeholder)$ |\n|tags |$(tag1}$ |\n|field1 |$(f1)$ |\n|field2 |$(f2)$ |\n\nIf we now put this into our tiddler:\n\n```\n<$set name=\"f1\" value=<<qualify \"unique\">> >\n<$set name=\"f2\" value=\"field-2\">\n<$set name=\"placeholder\" value=\"pl1\">\n<$set name=\"tag1\" value=\"testtag\">\n<$newtiddler title=\"test\" skeleton=\"$:/plugins/skeeve/newtiddler/SkeletonExample\">Create</$newtiddler>\n</$set>\n</$set>\n</$set>\n</$set>\n```\n\nWe get a <$set name=\"f1\" value=<<qualify \"unique\">> ><$set name=\"f2\" value=\"field-2\"><$set name=\"placeholder\" value=\"pl1\"><$set name=\"tag1\" value=\"testtag\"><$newtiddler title=\"test\" skeleton=\"$:/plugins/skeeve/newtiddler/SkeletonExample\">Create</$newtiddler></$set></$set></$set></$set> button.\n\nClicking it, will open a new tiddler with some values pre-filled."
},
"$:/plugins/skeeve/newtiddler/SkeletonExample": {
"created": "20131218133637784",
"creator": "Stephan Hradek",
"field1": "$(f1)$",
"field2": "$(f2)$",
"modified": "20140303191730416",
"modifier": "Stephan Hradek",
"tags": "$(tag1)$",
"title": "$:/plugins/skeeve/newtiddler/SkeletonExample",
"type": "text/vnd.tiddlywiki",
"text": "This is some test: $(placeholder)$"
},
"$:/plugins/skeeve/newtiddler.js": {
"text": "/*\\\ntitle: $:/plugins/skeeve/newtiddler.js\ntype: application/javascript\nmodule-type: widget\n\nnewtiddler widget\n\n```\n<$newtiddler title=\"name\" skeleton=\"name\">Buttontext</$newtiddler>\n```\n\nThe skeleton tiddler may contain variables which are replaced during creation\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar NewtiddlerWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nNewtiddlerWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nNewtiddlerWidget.prototype.render = function(parent,nextSibling) {\n\tvar self = this;\n\t// Remember parent\n\tthis.parentDomNode = parent;\n\t// Compute attributes and execute state\n\tthis.computeAttributes();\n\tthis.execute();\n\t// Create element\n\tvar domNode = this.document.createElement(\"button\");\n\t// Assign classes\n\tdomNode.className = this.newtiddlerClass;\n\t// Assign styles\n\tif(this.style) {\n\t\tdomNode.setAttribute(\"style\",this.style);\n\t}\n\t// Add a click event handler\n\t$tw.utils.addEventListeners(domNode,[\n\t\t{name: \"click\", handlerObject: this, handlerMethod: \"handleClickEvent\"}\n\t]);\n\t// Insert element\n\tparent.insertBefore(domNode,nextSibling);\n\tthis.renderChildren(domNode,null);\n\tthis.domNodes.push(domNode);\n};\n\nNewtiddlerWidget.prototype.handleClickEvent = function(event) {\n\tvar skeleton = this.wiki.getTiddlerAsJson(this.newtiddlerSkeleton);\n\tvar skeletonClone = JSON.parse(this.substituteVariableReferences(skeleton));\n\tvar basetitle = this.newtiddlerTitle;\n\tvar title = basetitle;\n\tfor(var t=1; this.wiki.tiddlerExists(title); t++) {\n\t\ttitle = basetitle + \" \" + t;\n\t}\n\tskeletonClone.title = title;\n\tvar created = this.wiki.getCreationFields();\n\tfor(var creationField in created) {\n\t\tskeletonClone[creationField] = created[creationField];\n\t}\n\tvar modified = this.wiki.getModificationFields();\n\tfor(var modificationField in modified) {\n\t\tskeletonClone[modificationField] = modified[modificationField];\n\t}\n\tthis.wiki.addTiddler(skeletonClone);\n\tswitch(this.newtiddlerEdit) {\n\tcase \"show\":\n\tcase \"yes\":\n\t\tvar bounds = this.domNodes[0].getBoundingClientRect();\n\t\tthis.dispatchEvent({\n\t\t\ttype: \"tw-navigate\",\n\t\t\tnavigateTo: title,\n\t\t\tnavigateFromTitle: this.getVariable(\"currentTiddler\"),\n\t\t\tnavigateFromNode: this,\n\t\t\tnavigateFromClientRect: { top: bounds.top, left: bounds.left, width: bounds.width, right: bounds.right, bottom: bounds.bottom, height: bounds.height\n\t\t\t}\n\t\t});\n\t\tif(this.newtiddlerEdit === \"yes\") {\n\t\t\tthis.dispatchEvent({type: \"tw-edit-tiddler\", tiddlerTitle: title});\n\t\t}\n\t\tbreak;\n\tcase \"no\":\n\t\tbreak;\n\tcase \"inline\":\n\t\t// not implemented yet\n\t\tbreak;\n\t}\n};\n\n\n/*\nCompute the internal state of the widget\n*/\nNewtiddlerWidget.prototype.execute = function() {\n\t// Get attributes\n\tthis.newtiddlerTitle = this.getAttribute(\"title\");\n\tthis.newtiddlerSkeleton = this.getAttribute(\"skeleton\");\n\tthis.newtiddlerEdit = this.getAttribute(\"edit\", \"yes\");\n\tthis.newtiddlerClass = this.getAttribute(\"class\",\"\");\n\tthis.newtiddlerStyle = this.getAttribute(\"style\");\n\tif(this.newtiddlerClass != \"\") {\n\t\tthis.newtiddlerClass = \" \" + this.newtiddlerClass;\n\t}\n\tthis.newtiddlerClass = \"tw-newtiddler-button\" + this.newtiddlerClass;\n\t// Make child widgets\n\tthis.makeChildWidgets();\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nNewtiddlerWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\tif(changedAttributes.title || changedAttributes.skeleton || changedAttributes.class || changedAttributes.style) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t}\n\treturn this.refreshChildren(changedTiddlers);\n};\n\nexports.newtiddler = NewtiddlerWidget;\n\n})();\n",
"title": "$:/plugins/skeeve/newtiddler.js",
"type": "application/javascript",
"module-type": "widget"
}
}
}
/*\
title: $:/plugins/skeeve/newtiddler.js
type: application/javascript
module-type: widget
newtiddler widget
```
<$newtiddler title="name" skeleton="name">Buttontext</$newtiddler>
```
The skeleton tiddler may contain variables which are replaced during creation
\*/
(function(){
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
var Widget = require("$:/core/modules/widgets/widget.js").widget;
var NewtiddlerWidget = function(parseTreeNode,options) {
this.initialise(parseTreeNode,options);
};
/*
Inherit from the base widget class
*/
NewtiddlerWidget.prototype = new Widget();
/*
Render this widget into the DOM
*/
NewtiddlerWidget.prototype.render = function(parent,nextSibling) {
var self = this;
// Remember parent
this.parentDomNode = parent;
// Compute attributes and execute state
this.computeAttributes();
this.execute();
// Create element
var domNode = this.document.createElement("button");
// Assign classes
domNode.className = this.newtiddlerClass;
// Assign styles
if(this.style) {
domNode.setAttribute("style",this.style);
}
// Add a click event handler
$tw.utils.addEventListeners(domNode,[
{name: "click", handlerObject: this, handlerMethod: "handleClickEvent"}
]);
// Insert element
parent.insertBefore(domNode,nextSibling);
this.renderChildren(domNode,null);
this.domNodes.push(domNode);
};
NewtiddlerWidget.prototype.handleClickEvent = function(event) {
var skeleton = this.wiki.getTiddlerAsJson(this.newtiddlerSkeleton);
var skeletonClone = JSON.parse(this.substituteVariableReferences(skeleton));
var basetitle = this.newtiddlerTitle;
var title = basetitle;
for(var t=1; this.wiki.tiddlerExists(title); t++) {
title = basetitle + " " + t;
}
skeletonClone.title = title;
for(var modificationField in this.wiki.getModificationFields()) {
delete skeletonClone[modificationField];
}
var created = this.wiki.getCreationFields();
for(var creationField in created) {
skeletonClone[modificationField] = created[creationField];
}
this.wiki.addTiddler(skeletonClone);
switch(this.newtiddlerEdit) {
case "show":
case "yes":
var bounds = this.domNodes[0].getBoundingClientRect();
this.dispatchEvent({
type: "tw-navigate",
navigateTo: title,
navigateFromTitle: this.getVariable("currentTiddler"),
navigateFromNode: this,
navigateFromClientRect: { top: bounds.top, left: bounds.left, width: bounds.width, right: bounds.right, bottom: bounds.bottom, height: bounds.height
}
});
if(this.newtiddlerEdit === "yes") {
this.dispatchEvent({type: "tw-edit-tiddler", tiddlerTitle: title});
}
break;
case "no":
break;
case "inline":
// not implemented yet
break;
}
};
/*
Compute the internal state of the widget
*/
NewtiddlerWidget.prototype.execute = function() {
// Get attributes
this.newtiddlerTitle = this.getAttribute("title");
this.newtiddlerSkeleton = this.getAttribute("skeleton");
this.newtiddlerEdit = this.getAttribute("edit", "yes");
this.newtiddlerClass = this.getAttribute("class","");
this.newtiddlerStyle = this.getAttribute("style");
if(this.newtiddlerClass != "") {
this.newtiddlerClass = " " + this.newtiddlerClass;
}
this.newtiddlerClass = "tw-newtiddler-button" + this.newtiddlerClass;
// Make child widgets
this.makeChildWidgets();
};
/*
Selectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering
*/
NewtiddlerWidget.prototype.refresh = function(changedTiddlers) {
var changedAttributes = this.computeAttributes();
if(changedAttributes.title || changedAttributes.skeleton || changedAttributes.class || changedAttributes.style) {
this.refreshSelf();
return true;
}
return this.refreshChildren(changedTiddlers);
};
exports.newtiddler = NewtiddlerWidget;
})();
{"tiddlers":{"$:/plugins/TheDiveO/FontAwesome/fonts/Font Awesome 5 Free Brands.css":{"title":"$:/plugins/TheDiveO/FontAwesome/fonts/Font Awesome 5 Free Brands.css","tags":"$:/tags/Stylesheet","type":"text/css","text":"/* autoimported retrieved from 'fontawesome-free-5.8.2-web' */\n@font-face {\n font-family: 'Font Awesome 5 Brands';\n font-style: normal;\n font-weight: normal;\n src: url('data:application/font-woff;charset=utf-8;base64,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') format('woff');\n}\n\n.fab {\n font-family: 'Font Awesome 5 Brands';\n font-style: normal;\n font-weight: normal;\n}\n"},"$:/plugins/TheDiveO/FontAwesome/fonts/Font Awesome 5 Free Regular.css":{"title":"$:/plugins/TheDiveO/FontAwesome/fonts/Font Awesome 5 Free Regular.css","tags":"$:/tags/Stylesheet","type":"text/css","text":"/* autoimported retrieved from 'fontawesome-free-5.8.2-web' */\n@font-face {\n font-family: 'Font Awesome 5 Free';\n font-style: normal;\n font-weight: 400;\n src: url('data:application/font-woff;charset=utf-8;base64,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') format('woff');\n}\n\n.far {\n font-family: 'Font Awesome 5 Free';\n font-style: normal;\n font-weight: 400;\n}\n"},"$:/plugins/TheDiveO/FontAwesome/fonts/Font Awesome 5 Free Solid.css":{"title":"$:/plugins/TheDiveO/FontAwesome/fonts/Font Awesome 5 Free Solid.css","tags":"$:/tags/Stylesheet","type":"text/css","text":"/* autoimported retrieved from 'fontawesome-free-5.8.2-web' */\n@font-face {\n font-family: 'Font Awesome 5 Free';\n font-style: normal;\n font-weight: 900;\n src: url('data:application/font-woff;charset=utf-8;base64,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') format('woff');\n}\n\n.fa, .fas {\n font-family: 'Font Awesome 5 Free';\n font-style: normal;\n font-weight: 900;\n}\n"},"$:/plugins/TheDiveO/FontAwesome/history":{"title":"$:/plugins/TheDiveO/FontAwesome/history","created":"20140901110931199","modified":"20190509195707164","type":"text/vnd.tiddlywiki","text":"* ''1.2.18'' -- updates to Font Awesome 5.8.2.\n\n* ''1.2.17'' -- updates to Font Awesome 5.8.1, adding several new categories, such as \"alert\", \"beverage\", \"energy\", et cetera. However, most of these new categories simply rehash existing icons, so there are only few really new icons to be found in this release.\n\n* ''1.2.16'' -- updates to Font Awesome 5.7.2.\n\n* ''1.2.15'' -- updates to Font Awesome 5.6.3. This adds new categories, such as \"autumn\", \"holliday\" and \"halloween\" with new icons, as well as updating existing categories with additional icons.\n\n* ''1.2.14''\n** updates to Font Awesome Free 5.3.1.\n** fixes crash in `--update` command when glyph in icons.json lacks a search terms property.\n\n* ''1.2.13''\n** switches to fetching the most recent Font Awesome Free download URL via GitHub API; this way, we can get rid of the (fine!) Puppeteer package and a truckload of update overhead.\n** npm package maintenance update: move development dependencies out of the general dependencies.\n\n* ''1.2.12'' -- updates to Font Awesome Free 5.2.0. This adds new category packs for \"automotive\", \"medical\", \"education\", and \"maps\".\n\n* ''1.2.11'' -- updates to Font Awesome Free 5.1.11.\n\n* ''1.2.10'' (1.2.9)\n** updates to Font Awesome 5.1.0, which brings new categories \"design\", \"emoji\" and \"travel\", and their icons -- as well as some updates and icon additions.\n** updates the update mechanism to work with the new 5.1.x packaging.\n\n* ''1.2.8'' -- updates to Font Awesome Free 5.0.13. This brings three new catogies: animals, buildings, and mathematics.\n\n* ''1.2.7'' -- updates to Font Awesome Free 5.0.12 -- they really do rapid updates, do they?! Glad that updating this plugin is automated...\n\n* ''1.2.6'' -- updates to Font Awesome Free 5.0.11.\n\n* ''1.2.5'' -- updates to Font Awesome Free 5.0.10.\n\n* ''1.2.4''\n** adds unicode code point info to the cheatsheet.\n\n* ''1.2.3''\n** makes TW5FontAwesome plugin available as npm package `tw5-fontawesome`.\n** adds ~ThirdFlow plugin as npm dependency `tw5-thirdflow`.\n\n* ''1.2.2''\n** updates to Font Awesome Free 5.0.9.\n** adds new categories //Charity//, //Chat//, and //Moving//.\n** adds new \"Font Awesome 5\" tab to the [[Control Panel|$:/ControlPanel]] that allows customizing the plugin: enable/disable internal and external link styling.\n\n* ''1.2.1''\n** adds missing category information.\n** adds automated update of category information from the Font Awesome 5 web site, as part of the normal update process:\n*** `npm run update` updates only if there is a newer version of Font Awesome 5 Free available from https://fontawesome.com/\n*** `npm run forceupdate` updates unconditionally.\n\n* ''1.2.0''\n** updates to Font Awesome Free 5.0.8.\n** adds category filtering to the cheatsheet.\n** adds Font Awesome 5 category meta data.\n** brings a new (fully) automatic update and release mechanism:\n*** use `$ npm run update-fontawesome` to update the development files to the newest Font Awesome version that is available online.\n*** use `$ npm run release` to create the plugin release file(s).\n** upgrades to most recent version of the [[ThirdFlow|http://thediveo.github.io/ThirdFlow/]] plugin: this comes with a new automated release mechanism.\n** refactors development command `--update-fontawesome` to directly download the most recent Font Awesome 5 Free package .zip from https://fontawesome.com. The only optional parameter to this command is `force` which forces re-updating, even if the font currently installed in the dev wiki is the same version as the one downloaded.\n** upgrades ThirdFlow plugin and now uses the new automated release file generation mechanism.\n\n* ''1.1.2''\n** fixes ~TiddlyWiki-internal links to system tiddlers not showing the gear symbol in the tiddler editor preview pane.\n\n* ''1.1.1''\n** upgrades to Font Awesome 5.0.4.\n** adds update/import command to ~FontAwesome 5 demo ~TiddlyWiki to update ~~from a Font Awesome zip package~~ [//online//]. Use `--update-fontawesome` when running the plugin development ~TiddlyWiki under Node.js.\n*** The `--update-fontawesome` command ~~expects the (path and) name of a Font Awesome zip package from which it will then update itself~~ [//has no parameters, or alternatively a single parameter `force`//]. ~~There is no need to unpack the zip package.~~ For instance:<div><strike>\n\n```bash\n$ tiddlywiki editions/develop --verbose --update-fontawesome ~/Downloads/fontawesome-free-5.0.2-zip --server 8080 $:/core/save/all text/plain text/html\n```\n\n</strike></div>\n*** If for some reason you need to re-update from the same Font Awesome zip package, specify an additional `force` parameter after the zip package file name parameter. For instance:<div><strike>\n\n```bash\n$ tiddlywiki editions/develop --verbose --update-fontawesome ~/Downloads/fontawesome-free-5.0.2-zip force --server 8080 $:/core/save/all text/plain text/html\n```\n</strike></div>\n* ''1.1.0''\n** upgrades to Font Awesome 5.0.2.\n** upgrades user macros to allow to specify the Font Awesome font family: `fas` (//Font Awesome Solid//), `far` (//Font Awesome Regular//), and `fab` (//Font Awesome Brands//).\n** upgrades stylesheets to new Font Awesome font mess, introduces [[$:/plugins/TheDiveO/FontAwesome/macros/css settings]] shorthand macros to avoid lengthy CSS properties assignments in CSS rules using Font Awesome.\n* ''1.0.7''\n** fix overly greedy image URL adornments, so that they don't apply to TW5-internal images. Now, an internal [[tree.jpeg]] doesn't get adornment, while [[http://thediveo.github.io/TW5FontAwesome/fa-flag.png]] still does, so the type of document can be glanced quickly.\n** small visual improvement to `fa-lbadge` which adds a small right margin to the badge, so that the adjacent text doesn't seem to visually collide with the badge anymore.\n* ''1.0.6''\n** link adornments for image URLs (`.jpg`/`.jpeg`, `.png`, `.gif`, `.tif`/`.tiff`)\n* ''1.0.5''\n** maintenance: upgrade ThirdFlow plugin to 1.1.11.\n* ''1.0.4''\n** improved display of link adornments by removing the link underlining from the adornments.\n** fixed CSS class name bug in `fa-lbox` macro. Also added new `fa-lbadge` macro. Added documentation.\n** oh, the magic of the `list-after` field, when applied to CSS tiddlers, avoids overuse of CSS `!important` declarations.\n\n* ''1.0.3''\n** fixed CSS to ensure that our embedded Font Awesome font always takes precendence over any system-installed Font Awesome font. This ensures a consistent user experience, especially when the local Font Awesome would be an older version.\n\n* ''1.0.2''\n** fixes base64 encoding of the embedded Font Awesome woff.\n** updated documentation with a warning about system-installed fonts taking precedence.\n** updated instructions on how to update the embedded font yourself.\n\n* ''1.0.1''\n** incorporates recent Font Awesome 4.7.0.\n** CSS updated to 4.7.0 too.\n** development version contains updated Third Flow plugin.\n\n* ''1.0.0''\n** never released.\n\n* ''0.9.2-beta''\n** stable beta release with Font Awesome 4.2.0.\n\n* ''v0.0.1-beta1''\n** initial plugin release.\n"},"$:/plugins/TheDiveO/FontAwesome/icon":{"title":"$:/plugins/TheDiveO/FontAwesome/icon","created":"20140901103643546","modified":"20140901123044951","tags":"$:/tags/Image","type":"text/vnd.tiddlywiki","text":"<svg width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path \n d=\"m 13.75,0 -11.71875,6.875 0,13.75 11.71875,6.875 11.71875,-6.875 0,-13.75 L 13.75,0 z M 6.28125,5.78125 c 0.3579097,1.42e-5 0.6530496,0.1218163 0.90625,0.375 0.2531946,0.2532114 0.4062468,0.5796012 0.40625,0.9375 -3.2e-6,0.4864625 -0.2240993,0.8370553 -0.65625,1.09375 l 0,12.84375 c -2.6e-6,0.08791 -0.029668,0.15448 -0.09375,0.21875 -0.064087,0.06427 -0.1620941,0.09375 -0.25,0.09375 l -0.625,0 c -0.08791,-1e-6 -0.1859173,-0.02948 -0.25,-0.09375 C 5.6546643,21.18573 5.6249987,21.119157 5.625,21.03125 l 0,-12.84375 C 5.1924761,7.9308053 4.9999994,7.5802125 5,7.09375 4.9999994,6.7358512 5.1216167,6.4094614 5.375,6.15625 5.6283811,5.9030663 5.9233364,5.7812642 6.28125,5.78125 z m 6.6875,1.3125 c 0.722833,1.29e-5 1.403139,0.085316 2.03125,0.28125 0.628089,0.1959592 1.367727,0.4764702 2.21875,0.875 0.256694,0.1281803 0.53739,0.2187616 0.875,0.21875 0.364546,1.16e-5 0.758471,-0.076903 1.1875,-0.21875 0.428999,-0.1418231 0.811026,-0.2931062 1.125,-0.46875 0.313942,-0.1756193 0.594637,-0.3581524 0.875,-0.5 0.28033,-0.1418222 0.474573,-0.1874871 0.5625,-0.1875 0.175429,1.29e-5 0.340379,0.059159 0.46875,0.1875 0.128335,0.1283659 0.187481,0.2616962 0.1875,0.4375 l 0,7.75 c -1.9e-5,0.168803 -0.04062,0.283957 -0.125,0.375 -0.08442,0.09105 -0.223803,0.186697 -0.40625,0.28125 -1.45198,0.78379 -2.709891,1.187503 -3.75,1.1875 -0.412222,3e-6 -0.828017,-0.07008 -1.25,-0.21875 -0.422009,-0.148665 -0.782943,-0.324365 -1.09375,-0.5 -0.310829,-0.175628 -0.686986,-0.351512 -1.15625,-0.5 C 14.249466,15.94527 13.743089,15.875004 13.25,15.875 c -1.296838,4e-6 -2.850298,0.514176 -4.6875,1.5 -0.1148759,0.06095 -0.2359002,0.09375 -0.34375,0.09375 -0.1758202,3e-6 -0.3091502,-0.09039 -0.4375,-0.21875 -0.1283567,-0.12835 -0.1875032,-0.26205 -0.1875,-0.4375 l 0,-7.53125 c -3.2e-6,-0.2164353 0.1030684,-0.4073566 0.3125,-0.5625 0.1418315,-0.094545 0.3893527,-0.2417266 0.78125,-0.4375 1.593792,-0.8107376 3.03169,-1.1874871 4.28125,-1.1875 z m 4.4375,1.9375 c -0.342706,0.1226406 -0.355438,0.656233 -0.5,1.375 -0.223336,-0.06073 -0.456025,-0.114193 -0.6875,-0.125 -0.319018,-0.021 -0.822172,0.073 -1.1875,0.0625 -0.365324,-0.0105 -1.089266,-0.319558 -1.6875,-0.25 -0.240525,0.02958 -0.495457,0.05507 -0.71875,0.15625 -0.136605,0.0619 -0.307097,0.253524 -0.40625,0.28125 -0.999033,0.2793 -2.6450261,0.290617 -2.3125,-1.21875 0.02589,-0.1159319 0.051471,-0.2239389 0,-0.25 -0.06413,-0.032479 -0.11842,0.018948 -0.15625,0.09375 -0.5817319,1.263211 0.450231,2.090082 1.625,2.09375 0.368882,-0.02847 0.188339,-0.02825 0.53125,-0.09375 l 0,0.0625 c -0.02423,0.418425 0.151498,0.773091 0.5,1 -0.159883,0.455791 -0.470574,0.831401 -0.6875,1.25 0.08154,0.520418 0.625493,1.213538 0.84375,1.3125 0.19213,0.08713 0.590499,0.108967 0.6875,-0.03125 0.03464,-0.06594 0.03819,-0.208665 0,-0.28125 0.164063,0.181767 0.379948,0.409467 0.59375,0.53125 0.128025,0.06105 0.26257,0.120068 0.40625,0.125 l 0.15625,-0.03125 c 0.09128,-0.01967 0.220122,-0.01257 0.28125,-0.09375 0.06906,-0.117457 0.0042,-0.445257 -0.28125,-0.46875 -0.285459,-0.02351 -0.487565,-0.141306 -0.75,-0.53125 -0.216207,-0.376982 0.06825,-0.879067 0.15625,-1.25 0.451569,0.07267 0.885787,0.123856 1.34375,0.125 0.198682,-0.0101 0.397908,-0.02487 0.59375,-0.0625 0.06247,0.159574 0.248509,0.592654 0.25,0.71875 0.0042,0.355223 -0.119979,0.738597 -0.0625,1.09375 0.03593,0.104625 -0.01675,0.27314 0.1875,0.28125 0.122159,0.0062 0.03564,0.02295 0.21875,0.03125 l 0.1875,0 c 0.201842,0.338685 0.353672,0.332318 0.75,0.34375 L 17.375,15.25 c 0.06687,-0.02489 0.146577,-0.02959 0.1875,-0.09375 0.133768,-0.194285 -0.220263,-0.284732 -0.34375,-0.5 -0.123507,-0.215248 -0.635898,-1.387969 -0.25,-1.71875 0.385924,-0.330776 0.809257,-0.471475 0.96875,-0.78125 0.06907,-0.139714 0.138021,-0.279525 0.15625,-0.4375 0.09397,0.07799 0.154815,0.152169 0.28125,0.15625 0.334451,0.02101 0.632038,-0.392722 0.78125,-0.78125 0.07973,-0.238471 0.140218,-0.485838 0.125,-0.71875 -0.04092,-0.4488514 0.01685,-0.9204038 0.375,-1.21875 C 19.302812,9.334652 18.96272,9.5357952 18.5625,9.59375 18.341438,9.5266203 18.109109,9.4905105 17.875,9.5 17.760279,9.3505649 17.607384,9.0636657 17.40625,9.03125 z m -4.75,4.34375 c -0.01157,0.166727 -0.02255,0.305428 0.03125,0.46875 0.163898,0.134904 0.380252,0.35428 0.53125,0.5 -0.082,-0.02263 -0.235596,-0.0612 -0.3125,-0.03125 L 12.84375,14.28125 12.8125,14.25 c -0.108862,-0.1172 -0.395316,-0.310466 -0.34375,-0.5 0.04127,-0.131581 0.125136,-0.250383 0.1875,-0.375 z\" transform=\"scale(4.6545455,4.6545455)\"\n/>\n </g>\n</svg>"},"$:/plugins/TheDiveO/FontAwesome/license":{"title":"$:/plugins/TheDiveO/FontAwesome/license","created":"20140901105404058","modified":"20170223103858754","type":"text/vnd.tiddlywiki","text":"This plugin is licensed as follows:\n\n* Font Awesome font license: [[SIL OFL 1.1|http://scripts.sil.org/OFL]].\n* Font Awesome CSS and LESS files licenses: [[MIT License|http://opensource.org/licenses/mit-license.html]].\n* everything else in this plugin is (c) by TheDiveO and licensed under the [[MIT License|http://opensource.org/licenses/mit-license.html]]."},"$:/plugins/TheDiveO/FontAwesome/macros/css settings":{"title":"$:/plugins/TheDiveO/FontAwesome/macros/css settings","created":"20171230210524160","modified":"20171230211107336","tags":"$:/tags/Macro","type":"text/vnd.tiddlywiki","text":"\\define fa-plugin-font-solid()\n font-family: 'Font Awesome 5 Free';\n font-style: normal;\n font-weight: 900; \n\\end\n\n\\define fa-plugin-font-regular()\n font-family: 'Font Awesome 5 Free';\n font-style: normal;\n font-weight: 400; \n\\end\n\n\\define fa-plugin-font-brands()\n font-family: 'Font Awesome 5 Brands';\n font-style: normal;\n font-weight: normal; \n\\end\n"},"$:/plugins/TheDiveO/FontAwesome/macros/fa/doc":{"title":"$:/plugins/TheDiveO/FontAwesome/macros/fa/doc","created":"20140831145557569","modified":"20171230205047837","type":"text/vnd.tiddlywiki","text":"Convenience macros to typeset symbols from Font Awesome.\n\n;`fa-lbox` //glyph//:\"fa-flag\" //fam//:\"fas\"\n: typesets the Font Awesome glyp (defaults to `fa-flag` glyph) in a gray box, and pulls it to the left.\n: As Font Awesome 5.0 has broken up the single 4.x font into multiple fonts, this macro now sports a second optional parameter for setting the font family. Allowed values are `fas` (for //Font Awesome Solid//), `far` (for //Font Awesome Regular//), and finally `fab` (for //Font Awesome Brands//).\n\n;`fa-lbadge` //glyph//:\"fa-flag\"\n: typesets the Font Awesome glyph (defaults to `fa-flag` glyph) in inverse, on a round badge. Also pulls the badge with the icon to the left.\n: As Font Awesome 5.0 has broken up the single 4.x font into multiple fonts, this macro now sports a second optional parameter for setting the font family. Allowed values are `fas` (for //Font Awesome Solid//), `far` (for //Font Awesome Regular//), and finally `fab` (for //Font Awesome Brands//).\n\n;`fa-clear`\n: convenience macro that inserts an empty HTML `div` element with styling `clear:both`. Use this before multiple `fa-lbox` and `fa-lbadge` macros to avoid them piling up from left to right."},"$:/plugins/TheDiveO/FontAwesome/macros/fa":{"title":"$:/plugins/TheDiveO/FontAwesome/macros/fa","created":"20140831145445334","modified":"20171230204202514","tags":"$:/tags/Macro","type":"text/vnd.tiddlywiki","text":"\\define fa-lbox(glyph:\"fa-flag\",fam:\"fas\")\n<i class=\"$fam$ fa-2x pull-left fa-border $glyph$\"></i>\n\\end\n\n\\define fa-lbadge(glyph:\"fa-flag\",fam:\"fas\")\n<span class=\"fa-stack fa-lg fa-pull-left\" style=\"margin-right: .3em;\"><i class=\"fas fa-circle fa-stack-2x\"></i><i class=\"$fam$ fa-stack-1x fa-inverse $glyph$\"></i></span>\n\\end\n\n\\define fa-clear()\n<div style=\"clear:both;\"/>\n\\end\n"},"$:/plugins/TheDiveO/FontAwesome/macros/global-macros":{"title":"$:/plugins/TheDiveO/FontAwesome/macros/global-macros","created":"20180328184036630","modified":"20180328191101221","tags":"$:/tags/Macro","type":"text/vnd.tiddlywiki","text":"\\define fa5-cfgpath(cfg) $:/config/fa5/$cfg$\n\n\\define fa5-cfgfilterexpr() [<cfg>get[text]] [[yes]] +[first[]prefix[yes]]"},"$:/plugins/TheDiveO/FontAwesome/readme":{"title":"$:/plugins/TheDiveO/FontAwesome/readme","created":"20140901105307611","modified":"20180112190527729","type":"text/vnd.tiddlywiki","text":"This plugin adds support for Font Awesome to your ~TiddlyWiki 5. It embeds the [[Font Awesome|http://fontawesome.io/]] within this plugin, so you don't need to install this font in your operating system. You may, but the //embedded// Font Awesome will take precedence to ensure a consistent user experience.\n\nTo install this plugin in your own ~TiddlyWiki(s), simply drop this [[FontAwesome plugin|$:/plugins/TheDiveO/FontAwesome]] onto your own ~TiddlyWiki(s): this will then import it."},"$:/plugins/TheDiveO/FontAwesome/styles/extlinks/FontAwesome":{"title":"$:/plugins/TheDiveO/FontAwesome/styles/extlinks/FontAwesome","created":"20170227162302202","list-after":"$:/plugins/TheDiveO/FontAwesome/styles/extlinks","modified":"20180328191153542","tags":"$:/tags/Stylesheet","type":"text/vnd.tiddlywiki","text":"\\rules only filteredtranscludeinline transcludeinline macrodef macrocallinline html\n\n<$set name=\"cfg\" value=<<fa5-cfgpath \"decorate-wk-extlinks\">> >\n<$list filter=<<fa5-cfgfilterexpr>> >\n\na[href^=\"http://fontawesome.io/\"].tc-tiddlylink-external:before,\na[href^=\"http://fontawesome.com/\"].tc-tiddlylink-external:before,\na[href^=\"https://fontawesome.io/\"].tc-tiddlylink-external:before,\na[href^=\"https://fontawesome.com/\"].tc-tiddlylink-external:before {\n <<fa-plugin-font-brands>>\n content: '\\f425\\202f' !important;\n display: inline-block;\n}\n\n</$list>\n</$set>"},"$:/plugins/TheDiveO/FontAwesome/styles/extlinks/GitHub":{"title":"$:/plugins/TheDiveO/FontAwesome/styles/extlinks/GitHub","created":"20170223102202986","list-after":"$:/plugins/TheDiveO/FontAwesome/styles/extlinks","modified":"20180328191203844","tags":"$:/tags/Stylesheet","type":"text/vnd.tiddlywiki","text":"\\rules only filteredtranscludeinline transcludeinline macrodef macrocallinline html\n\n<$set name=\"cfg\" value=<<fa5-cfgpath \"decorate-wk-extlinks\">> >\n<$list filter=<<fa5-cfgfilterexpr>> >\n\na[href^=\"http://\"][href*=\"github.com\"]:before {\n <<fa-plugin-font-brands>>\n font-size: 90%;\n content: '\\f09b\\202f';\n}\n\n</$list>\n</$set>"},"$:/plugins/TheDiveO/FontAwesome/styles/extlinks/Wikipedia":{"title":"$:/plugins/TheDiveO/FontAwesome/styles/extlinks/Wikipedia","created":"20170223100306336","modified":"20180328191215033","tags":"$:/tags/Stylesheet","type":"text/vnd.tiddlywiki","text":"\\rules only filteredtranscludeinline transcludeinline macrodef macrocallinline html\n\n<$set name=\"cfg\" value=<<fa5-cfgpath \"decorate-wk-extlinks\">> >\n<$list filter=<<fa5-cfgfilterexpr>> >\n\na[href^=\"http://\"][href*=\".wikipedia.org\"]:before {\n <<fa-plugin-font-brands>>\n font-size: 90%;\n content: '[\\f266]\\202f';\n}\n\n</$list>\n</$set>"},"$:/plugins/TheDiveO/FontAwesome/styles/extlinks/doctypes":{"title":"$:/plugins/TheDiveO/FontAwesome/styles/extlinks/doctypes","created":"20170301201914393","list-after":"$:/plugins/TheDiveO/FontAwesome/styles/extlinks","modified":"20180328191142557","tags":"$:/tags/Stylesheet","type":"text/vnd.tiddlywiki","text":"\\rules only filteredtranscludeinline transcludeinline macrodef macrocallinline html\n\n<$set name=\"cfg\" value=<<fa5-cfgpath \"decorate-extdoclinks\">> >\n<$list filter=<<fa5-cfgfilterexpr>> >\n\na[href$=\".pdf\"].tc-tiddlylink-external:before {\n <<fa-plugin-font-regular>>\n content: '\\f1c1\\202f';\n display: inline-block;\n}\n\na[href$=\".gz\"].tc-tiddlylink-external:before, \na[href$=\".zip\"].tc-tiddlylink-external:before,\na[href$=\".7z\"].tc-tiddlylink-external:before {\n <<fa-plugin-font-regular>>\n content: '\\f1c6\\202f';\n display: inline-block;\n}\n\na[href$=\".jpg\"].tc-tiddlylink-external:before,\na[href$=\".jpeg\"].tc-tiddlylink-external:before,\na[href$=\".png\"].tc-tiddlylink-external:before,\na[href$=\".gif\"].tc-tiddlylink-external:before,\na[href$=\".tif\"].tc-tiddlylink-external:before,\na[href$=\".tiff\"].tc-tiddlylink-external:before {\n <<fa-plugin-font-regular>>\n content: '\\f1c5\\202f';\n display: inline-block;\n}\n\n</$list>\n</$set>"},"$:/plugins/TheDiveO/FontAwesome/styles/extlinks":{"title":"$:/plugins/TheDiveO/FontAwesome/styles/extlinks","created":"20170223100043117","modified":"20180328191133975","tags":"$:/tags/Stylesheet","type":"text/vnd.tiddlywiki","text":"\\rules only filteredtranscludeinline transcludeinline macrodef macrocallinline html\n\n<$set name=\"cfg\" value=<<fa5-cfgpath \"decorate-extlinks\">> >\n<$list filter=<<fa5-cfgfilterexpr>> >\n\na[href^=\"http://\"]:before {\n <<fa-plugin-font-solid>>\n font-size: 80%;\n content: '\\f35d\\202f';\n display: inline-block;\n}\n\na[href^=\"https://\"]:before {\n <<fa-plugin-font-solid>>\n font-size: 80%;\n content: '\\f023\\202f';\n display: inline-block;\n}\n\n</$list>\n</$set>"},"$:/plugins/TheDiveO/FontAwesome/styles/fontawesome 5.css":{"title":"$:/plugins/TheDiveO/FontAwesome/styles/fontawesome 5.css","tags":"$:/tags/Stylesheet","type":"text/css","text":"/* autoimported from 'fontawesome-free-5.8.2-web' */\n/*!\n * Font Awesome Free 5.8.2 by @fontawesome - https://fontawesome.com\n * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)\n */\n.fa,\n.fas,\n.far,\n.fal,\n.fab {\n -moz-osx-font-smoothing: grayscale;\n -webkit-font-smoothing: antialiased;\n display: inline-block;\n font-style: normal;\n font-variant: normal;\n text-rendering: auto;\n line-height: 1; }\n\n.fa-lg {\n font-size: 1.33333em;\n line-height: 0.75em;\n vertical-align: -.0667em; }\n\n.fa-xs {\n font-size: .75em; }\n\n.fa-sm {\n font-size: .875em; }\n\n.fa-1x {\n font-size: 1em; }\n\n.fa-2x {\n font-size: 2em; }\n\n.fa-3x {\n font-size: 3em; }\n\n.fa-4x {\n font-size: 4em; }\n\n.fa-5x {\n font-size: 5em; }\n\n.fa-6x {\n font-size: 6em; }\n\n.fa-7x {\n font-size: 7em; }\n\n.fa-8x {\n font-size: 8em; }\n\n.fa-9x {\n font-size: 9em; }\n\n.fa-10x {\n font-size: 10em; }\n\n.fa-fw {\n text-align: center;\n width: 1.25em; }\n\n.fa-ul {\n list-style-type: none;\n margin-left: 2.5em;\n padding-left: 0; }\n .fa-ul > li {\n position: relative; }\n\n.fa-li {\n left: -2em;\n position: absolute;\n text-align: center;\n width: 2em;\n line-height: inherit; }\n\n.fa-border {\n border: solid 0.08em #eee;\n border-radius: .1em;\n padding: .2em .25em .15em; }\n\n.fa-pull-left {\n float: left; }\n\n.fa-pull-right {\n float: right; }\n\n.fa.fa-pull-left,\n.fas.fa-pull-left,\n.far.fa-pull-left,\n.fal.fa-pull-left,\n.fab.fa-pull-left {\n margin-right: .3em; }\n\n.fa.fa-pull-right,\n.fas.fa-pull-right,\n.far.fa-pull-right,\n.fal.fa-pull-right,\n.fab.fa-pull-right {\n margin-left: .3em; }\n\n.fa-spin {\n -webkit-animation: fa-spin 2s infinite linear;\n animation: fa-spin 2s infinite linear; }\n\n.fa-pulse {\n -webkit-animation: fa-spin 1s infinite steps(8);\n animation: fa-spin 1s infinite steps(8); }\n\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg); }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg); } }\n\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg); }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg); } }\n\n.fa-rotate-90 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)\";\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg); }\n\n.fa-rotate-180 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)\";\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg); }\n\n.fa-rotate-270 {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)\";\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg); }\n\n.fa-flip-horizontal {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)\";\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1); }\n\n.fa-flip-vertical {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1); }\n\n.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {\n -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1); }\n\n:root .fa-rotate-90,\n:root .fa-rotate-180,\n:root .fa-rotate-270,\n:root .fa-flip-horizontal,\n:root .fa-flip-vertical,\n:root .fa-flip-both {\n -webkit-filter: none;\n filter: none; }\n\n.fa-stack {\n display: inline-block;\n height: 2em;\n line-height: 2em;\n position: relative;\n vertical-align: middle;\n width: 2.5em; }\n\n.fa-stack-1x,\n.fa-stack-2x {\n left: 0;\n position: absolute;\n text-align: center;\n width: 100%; }\n\n.fa-stack-1x {\n line-height: inherit; }\n\n.fa-stack-2x {\n font-size: 2em; }\n\n.fa-inverse {\n color: #fff; }\n\n/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen\nreaders do not read off random characters that represent icons */\n.fa-500px:before {\n content: \"\\f26e\"; }\n\n.fa-accessible-icon:before {\n content: \"\\f368\"; }\n\n.fa-accusoft:before {\n content: \"\\f369\"; }\n\n.fa-acquisitions-incorporated:before {\n content: \"\\f6af\"; }\n\n.fa-ad:before {\n content: \"\\f641\"; }\n\n.fa-address-book:before {\n content: \"\\f2b9\"; }\n\n.fa-address-card:before {\n content: \"\\f2bb\"; }\n\n.fa-adjust:before {\n content: \"\\f042\"; }\n\n.fa-adn:before {\n content: \"\\f170\"; }\n\n.fa-adobe:before {\n content: \"\\f778\"; }\n\n.fa-adversal:before {\n content: \"\\f36a\"; }\n\n.fa-affiliatetheme:before {\n content: \"\\f36b\"; }\n\n.fa-air-freshener:before {\n content: \"\\f5d0\"; }\n\n.fa-airbnb:before {\n content: \"\\f834\"; }\n\n.fa-algolia:before {\n content: \"\\f36c\"; }\n\n.fa-align-center:before {\n content: \"\\f037\"; }\n\n.fa-align-justify:before {\n content: \"\\f039\"; }\n\n.fa-align-left:before {\n content: \"\\f036\"; }\n\n.fa-align-right:before {\n content: \"\\f038\"; }\n\n.fa-alipay:before {\n content: \"\\f642\"; }\n\n.fa-allergies:before {\n content: \"\\f461\"; }\n\n.fa-amazon:before {\n content: \"\\f270\"; }\n\n.fa-amazon-pay:before {\n content: \"\\f42c\"; }\n\n.fa-ambulance:before {\n content: \"\\f0f9\"; }\n\n.fa-american-sign-language-interpreting:before {\n content: \"\\f2a3\"; }\n\n.fa-amilia:before {\n content: \"\\f36d\"; }\n\n.fa-anchor:before {\n content: \"\\f13d\"; }\n\n.fa-android:before {\n content: \"\\f17b\"; }\n\n.fa-angellist:before {\n content: \"\\f209\"; }\n\n.fa-angle-double-down:before {\n content: \"\\f103\"; }\n\n.fa-angle-double-left:before {\n content: \"\\f100\"; }\n\n.fa-angle-double-right:before {\n content: \"\\f101\"; }\n\n.fa-angle-double-up:before {\n content: \"\\f102\"; }\n\n.fa-angle-down:before {\n content: \"\\f107\"; }\n\n.fa-angle-left:before {\n content: \"\\f104\"; }\n\n.fa-angle-right:before {\n content: \"\\f105\"; }\n\n.fa-angle-up:before {\n content: \"\\f106\"; }\n\n.fa-angry:before {\n content: \"\\f556\"; }\n\n.fa-angrycreative:before {\n content: \"\\f36e\"; }\n\n.fa-angular:before {\n content: \"\\f420\"; }\n\n.fa-ankh:before {\n content: \"\\f644\"; }\n\n.fa-app-store:before {\n content: \"\\f36f\"; }\n\n.fa-app-store-ios:before {\n content: \"\\f370\"; }\n\n.fa-apper:before {\n content: \"\\f371\"; }\n\n.fa-apple:before {\n content: \"\\f179\"; }\n\n.fa-apple-alt:before {\n content: \"\\f5d1\"; }\n\n.fa-apple-pay:before {\n content: \"\\f415\"; }\n\n.fa-archive:before {\n content: \"\\f187\"; }\n\n.fa-archway:before {\n content: \"\\f557\"; }\n\n.fa-arrow-alt-circle-down:before {\n content: \"\\f358\"; }\n\n.fa-arrow-alt-circle-left:before {\n content: \"\\f359\"; }\n\n.fa-arrow-alt-circle-right:before {\n content: \"\\f35a\"; }\n\n.fa-arrow-alt-circle-up:before {\n content: \"\\f35b\"; }\n\n.fa-arrow-circle-down:before {\n content: \"\\f0ab\"; }\n\n.fa-arrow-circle-left:before {\n content: \"\\f0a8\"; }\n\n.fa-arrow-circle-right:before {\n content: \"\\f0a9\"; }\n\n.fa-arrow-circle-up:before {\n content: \"\\f0aa\"; }\n\n.fa-arrow-down:before {\n content: \"\\f063\"; }\n\n.fa-arrow-left:before {\n content: \"\\f060\"; }\n\n.fa-arrow-right:before {\n content: \"\\f061\"; }\n\n.fa-arrow-up:before {\n content: \"\\f062\"; }\n\n.fa-arrows-alt:before {\n content: \"\\f0b2\"; }\n\n.fa-arrows-alt-h:before {\n content: \"\\f337\"; }\n\n.fa-arrows-alt-v:before {\n content: \"\\f338\"; }\n\n.fa-artstation:before {\n content: \"\\f77a\"; }\n\n.fa-assistive-listening-systems:before {\n content: \"\\f2a2\"; }\n\n.fa-asterisk:before {\n content: \"\\f069\"; }\n\n.fa-asymmetrik:before {\n content: \"\\f372\"; }\n\n.fa-at:before {\n content: \"\\f1fa\"; }\n\n.fa-atlas:before {\n content: \"\\f558\"; }\n\n.fa-atlassian:before {\n content: \"\\f77b\"; }\n\n.fa-atom:before {\n content: \"\\f5d2\"; }\n\n.fa-audible:before {\n content: \"\\f373\"; }\n\n.fa-audio-description:before {\n content: \"\\f29e\"; }\n\n.fa-autoprefixer:before {\n content: \"\\f41c\"; }\n\n.fa-avianex:before {\n content: \"\\f374\"; }\n\n.fa-aviato:before {\n content: \"\\f421\"; }\n\n.fa-award:before {\n content: \"\\f559\"; }\n\n.fa-aws:before {\n content: \"\\f375\"; }\n\n.fa-baby:before {\n content: \"\\f77c\"; }\n\n.fa-baby-carriage:before {\n content: \"\\f77d\"; }\n\n.fa-backspace:before {\n content: \"\\f55a\"; }\n\n.fa-backward:before {\n content: \"\\f04a\"; }\n\n.fa-bacon:before {\n content: \"\\f7e5\"; }\n\n.fa-balance-scale:before {\n content: \"\\f24e\"; }\n\n.fa-ban:before {\n content: \"\\f05e\"; }\n\n.fa-band-aid:before {\n content: \"\\f462\"; }\n\n.fa-bandcamp:before {\n content: \"\\f2d5\"; }\n\n.fa-barcode:before {\n content: \"\\f02a\"; }\n\n.fa-bars:before {\n content: \"\\f0c9\"; }\n\n.fa-baseball-ball:before {\n content: \"\\f433\"; }\n\n.fa-basketball-ball:before {\n content: \"\\f434\"; }\n\n.fa-bath:before {\n content: \"\\f2cd\"; }\n\n.fa-battery-empty:before {\n content: \"\\f244\"; }\n\n.fa-battery-full:before {\n content: \"\\f240\"; }\n\n.fa-battery-half:before {\n content: \"\\f242\"; }\n\n.fa-battery-quarter:before {\n content: \"\\f243\"; }\n\n.fa-battery-three-quarters:before {\n content: \"\\f241\"; }\n\n.fa-battle-net:before {\n content: \"\\f835\"; }\n\n.fa-bed:before {\n content: \"\\f236\"; }\n\n.fa-beer:before {\n content: \"\\f0fc\"; }\n\n.fa-behance:before {\n content: \"\\f1b4\"; }\n\n.fa-behance-square:before {\n content: \"\\f1b5\"; }\n\n.fa-bell:before {\n content: \"\\f0f3\"; }\n\n.fa-bell-slash:before {\n content: \"\\f1f6\"; }\n\n.fa-bezier-curve:before {\n content: \"\\f55b\"; }\n\n.fa-bible:before {\n content: \"\\f647\"; }\n\n.fa-bicycle:before {\n content: \"\\f206\"; }\n\n.fa-bimobject:before {\n content: \"\\f378\"; }\n\n.fa-binoculars:before {\n content: \"\\f1e5\"; }\n\n.fa-biohazard:before {\n content: \"\\f780\"; }\n\n.fa-birthday-cake:before {\n content: \"\\f1fd\"; }\n\n.fa-bitbucket:before {\n content: \"\\f171\"; }\n\n.fa-bitcoin:before {\n content: \"\\f379\"; }\n\n.fa-bity:before {\n content: \"\\f37a\"; }\n\n.fa-black-tie:before {\n content: \"\\f27e\"; }\n\n.fa-blackberry:before {\n content: \"\\f37b\"; }\n\n.fa-blender:before {\n content: \"\\f517\"; }\n\n.fa-blender-phone:before {\n content: \"\\f6b6\"; }\n\n.fa-blind:before {\n content: \"\\f29d\"; }\n\n.fa-blog:before {\n content: \"\\f781\"; }\n\n.fa-blogger:before {\n content: \"\\f37c\"; }\n\n.fa-blogger-b:before {\n content: \"\\f37d\"; }\n\n.fa-bluetooth:before {\n content: \"\\f293\"; }\n\n.fa-bluetooth-b:before {\n content: \"\\f294\"; }\n\n.fa-bold:before {\n content: \"\\f032\"; }\n\n.fa-bolt:before {\n content: \"\\f0e7\"; }\n\n.fa-bomb:before {\n content: \"\\f1e2\"; }\n\n.fa-bone:before {\n content: \"\\f5d7\"; }\n\n.fa-bong:before {\n content: \"\\f55c\"; }\n\n.fa-book:before {\n content: \"\\f02d\"; }\n\n.fa-book-dead:before {\n content: \"\\f6b7\"; }\n\n.fa-book-medical:before {\n content: \"\\f7e6\"; }\n\n.fa-book-open:before {\n content: \"\\f518\"; }\n\n.fa-book-reader:before {\n content: \"\\f5da\"; }\n\n.fa-bookmark:before {\n content: \"\\f02e\"; }\n\n.fa-bootstrap:before {\n content: \"\\f836\"; }\n\n.fa-bowling-ball:before {\n content: \"\\f436\"; }\n\n.fa-box:before {\n content: \"\\f466\"; }\n\n.fa-box-open:before {\n content: \"\\f49e\"; }\n\n.fa-boxes:before {\n content: \"\\f468\"; }\n\n.fa-braille:before {\n content: \"\\f2a1\"; }\n\n.fa-brain:before {\n content: \"\\f5dc\"; }\n\n.fa-bread-slice:before {\n content: \"\\f7ec\"; }\n\n.fa-briefcase:before {\n content: \"\\f0b1\"; }\n\n.fa-briefcase-medical:before {\n content: \"\\f469\"; }\n\n.fa-broadcast-tower:before {\n content: \"\\f519\"; }\n\n.fa-broom:before {\n content: \"\\f51a\"; }\n\n.fa-brush:before {\n content: \"\\f55d\"; }\n\n.fa-btc:before {\n content: \"\\f15a\"; }\n\n.fa-buffer:before {\n content: \"\\f837\"; }\n\n.fa-bug:before {\n content: \"\\f188\"; }\n\n.fa-building:before {\n content: \"\\f1ad\"; }\n\n.fa-bullhorn:before {\n content: \"\\f0a1\"; }\n\n.fa-bullseye:before {\n content: \"\\f140\"; }\n\n.fa-burn:before {\n content: \"\\f46a\"; }\n\n.fa-buromobelexperte:before {\n content: \"\\f37f\"; }\n\n.fa-bus:before {\n content: \"\\f207\"; }\n\n.fa-bus-alt:before {\n content: \"\\f55e\"; }\n\n.fa-business-time:before {\n content: \"\\f64a\"; }\n\n.fa-buysellads:before {\n content: \"\\f20d\"; }\n\n.fa-calculator:before {\n content: \"\\f1ec\"; }\n\n.fa-calendar:before {\n content: \"\\f133\"; }\n\n.fa-calendar-alt:before {\n content: \"\\f073\"; }\n\n.fa-calendar-check:before {\n content: \"\\f274\"; }\n\n.fa-calendar-day:before {\n content: \"\\f783\"; }\n\n.fa-calendar-minus:before {\n content: \"\\f272\"; }\n\n.fa-calendar-plus:before {\n content: \"\\f271\"; }\n\n.fa-calendar-times:before {\n content: \"\\f273\"; }\n\n.fa-calendar-week:before {\n content: \"\\f784\"; }\n\n.fa-camera:before {\n content: \"\\f030\"; }\n\n.fa-camera-retro:before {\n content: \"\\f083\"; }\n\n.fa-campground:before {\n content: \"\\f6bb\"; }\n\n.fa-canadian-maple-leaf:before {\n content: \"\\f785\"; }\n\n.fa-candy-cane:before {\n content: \"\\f786\"; }\n\n.fa-cannabis:before {\n content: \"\\f55f\"; }\n\n.fa-capsules:before {\n content: \"\\f46b\"; }\n\n.fa-car:before {\n content: \"\\f1b9\"; }\n\n.fa-car-alt:before {\n content: \"\\f5de\"; }\n\n.fa-car-battery:before {\n content: \"\\f5df\"; }\n\n.fa-car-crash:before {\n content: \"\\f5e1\"; }\n\n.fa-car-side:before {\n content: \"\\f5e4\"; }\n\n.fa-caret-down:before {\n content: \"\\f0d7\"; }\n\n.fa-caret-left:before {\n content: \"\\f0d9\"; }\n\n.fa-caret-right:before {\n content: \"\\f0da\"; }\n\n.fa-caret-square-down:before {\n content: \"\\f150\"; }\n\n.fa-caret-square-left:before {\n content: \"\\f191\"; }\n\n.fa-caret-square-right:before {\n content: \"\\f152\"; }\n\n.fa-caret-square-up:before {\n content: \"\\f151\"; }\n\n.fa-caret-up:before {\n content: \"\\f0d8\"; }\n\n.fa-carrot:before {\n content: \"\\f787\"; }\n\n.fa-cart-arrow-down:before {\n content: \"\\f218\"; }\n\n.fa-cart-plus:before {\n content: \"\\f217\"; }\n\n.fa-cash-register:before {\n content: \"\\f788\"; }\n\n.fa-cat:before {\n content: \"\\f6be\"; }\n\n.fa-cc-amazon-pay:before {\n content: \"\\f42d\"; }\n\n.fa-cc-amex:before {\n content: \"\\f1f3\"; }\n\n.fa-cc-apple-pay:before {\n content: \"\\f416\"; }\n\n.fa-cc-diners-club:before {\n content: \"\\f24c\"; }\n\n.fa-cc-discover:before {\n content: \"\\f1f2\"; }\n\n.fa-cc-jcb:before {\n content: \"\\f24b\"; }\n\n.fa-cc-mastercard:before {\n content: \"\\f1f1\"; }\n\n.fa-cc-paypal:before {\n content: \"\\f1f4\"; }\n\n.fa-cc-stripe:before {\n content: \"\\f1f5\"; }\n\n.fa-cc-visa:before {\n content: \"\\f1f0\"; }\n\n.fa-centercode:before {\n content: \"\\f380\"; }\n\n.fa-centos:before {\n content: \"\\f789\"; }\n\n.fa-certificate:before {\n content: \"\\f0a3\"; }\n\n.fa-chair:before {\n content: \"\\f6c0\"; }\n\n.fa-chalkboard:before {\n content: \"\\f51b\"; }\n\n.fa-chalkboard-teacher:before {\n content: \"\\f51c\"; }\n\n.fa-charging-station:before {\n content: \"\\f5e7\"; }\n\n.fa-chart-area:before {\n content: \"\\f1fe\"; }\n\n.fa-chart-bar:before {\n content: \"\\f080\"; }\n\n.fa-chart-line:before {\n content: \"\\f201\"; }\n\n.fa-chart-pie:before {\n content: \"\\f200\"; }\n\n.fa-check:before {\n content: \"\\f00c\"; }\n\n.fa-check-circle:before {\n content: \"\\f058\"; }\n\n.fa-check-double:before {\n content: \"\\f560\"; }\n\n.fa-check-square:before {\n content: \"\\f14a\"; }\n\n.fa-cheese:before {\n content: \"\\f7ef\"; }\n\n.fa-chess:before {\n content: \"\\f439\"; }\n\n.fa-chess-bishop:before {\n content: \"\\f43a\"; }\n\n.fa-chess-board:before {\n content: \"\\f43c\"; }\n\n.fa-chess-king:before {\n content: \"\\f43f\"; }\n\n.fa-chess-knight:before {\n content: \"\\f441\"; }\n\n.fa-chess-pawn:before {\n content: \"\\f443\"; }\n\n.fa-chess-queen:before {\n content: \"\\f445\"; }\n\n.fa-chess-rook:before {\n content: \"\\f447\"; }\n\n.fa-chevron-circle-down:before {\n content: \"\\f13a\"; }\n\n.fa-chevron-circle-left:before {\n content: \"\\f137\"; }\n\n.fa-chevron-circle-right:before {\n content: \"\\f138\"; }\n\n.fa-chevron-circle-up:before {\n content: \"\\f139\"; }\n\n.fa-chevron-down:before {\n content: \"\\f078\"; }\n\n.fa-chevron-left:before {\n content: \"\\f053\"; }\n\n.fa-chevron-right:before {\n content: \"\\f054\"; }\n\n.fa-chevron-up:before {\n content: \"\\f077\"; }\n\n.fa-child:before {\n content: \"\\f1ae\"; }\n\n.fa-chrome:before {\n content: \"\\f268\"; }\n\n.fa-chromecast:before {\n content: \"\\f838\"; }\n\n.fa-church:before {\n content: \"\\f51d\"; }\n\n.fa-circle:before {\n content: \"\\f111\"; }\n\n.fa-circle-notch:before {\n content: \"\\f1ce\"; }\n\n.fa-city:before {\n content: \"\\f64f\"; }\n\n.fa-clinic-medical:before {\n content: \"\\f7f2\"; }\n\n.fa-clipboard:before {\n content: \"\\f328\"; }\n\n.fa-clipboard-check:before {\n content: \"\\f46c\"; }\n\n.fa-clipboard-list:before {\n content: \"\\f46d\"; }\n\n.fa-clock:before {\n content: \"\\f017\"; }\n\n.fa-clone:before {\n content: \"\\f24d\"; }\n\n.fa-closed-captioning:before {\n content: \"\\f20a\"; }\n\n.fa-cloud:before {\n content: \"\\f0c2\"; }\n\n.fa-cloud-download-alt:before {\n content: \"\\f381\"; }\n\n.fa-cloud-meatball:before {\n content: \"\\f73b\"; }\n\n.fa-cloud-moon:before {\n content: \"\\f6c3\"; }\n\n.fa-cloud-moon-rain:before {\n content: \"\\f73c\"; }\n\n.fa-cloud-rain:before {\n content: \"\\f73d\"; }\n\n.fa-cloud-showers-heavy:before {\n content: \"\\f740\"; }\n\n.fa-cloud-sun:before {\n content: \"\\f6c4\"; }\n\n.fa-cloud-sun-rain:before {\n content: \"\\f743\"; }\n\n.fa-cloud-upload-alt:before {\n content: \"\\f382\"; }\n\n.fa-cloudscale:before {\n content: \"\\f383\"; }\n\n.fa-cloudsmith:before {\n content: \"\\f384\"; }\n\n.fa-cloudversify:before {\n content: \"\\f385\"; }\n\n.fa-cocktail:before {\n content: \"\\f561\"; }\n\n.fa-code:before {\n content: \"\\f121\"; }\n\n.fa-code-branch:before {\n content: \"\\f126\"; }\n\n.fa-codepen:before {\n content: \"\\f1cb\"; }\n\n.fa-codiepie:before {\n content: \"\\f284\"; }\n\n.fa-coffee:before {\n content: \"\\f0f4\"; }\n\n.fa-cog:before {\n content: \"\\f013\"; }\n\n.fa-cogs:before {\n content: \"\\f085\"; }\n\n.fa-coins:before {\n content: \"\\f51e\"; }\n\n.fa-columns:before {\n content: \"\\f0db\"; }\n\n.fa-comment:before {\n content: \"\\f075\"; }\n\n.fa-comment-alt:before {\n content: \"\\f27a\"; }\n\n.fa-comment-dollar:before {\n content: \"\\f651\"; }\n\n.fa-comment-dots:before {\n content: \"\\f4ad\"; }\n\n.fa-comment-medical:before {\n content: \"\\f7f5\"; }\n\n.fa-comment-slash:before {\n content: \"\\f4b3\"; }\n\n.fa-comments:before {\n content: \"\\f086\"; }\n\n.fa-comments-dollar:before {\n content: \"\\f653\"; }\n\n.fa-compact-disc:before {\n content: \"\\f51f\"; }\n\n.fa-compass:before {\n content: \"\\f14e\"; }\n\n.fa-compress:before {\n content: \"\\f066\"; }\n\n.fa-compress-arrows-alt:before {\n content: \"\\f78c\"; }\n\n.fa-concierge-bell:before {\n content: \"\\f562\"; }\n\n.fa-confluence:before {\n content: \"\\f78d\"; }\n\n.fa-connectdevelop:before {\n content: \"\\f20e\"; }\n\n.fa-contao:before {\n content: \"\\f26d\"; }\n\n.fa-cookie:before {\n content: \"\\f563\"; }\n\n.fa-cookie-bite:before {\n content: \"\\f564\"; }\n\n.fa-copy:before {\n content: \"\\f0c5\"; }\n\n.fa-copyright:before {\n content: \"\\f1f9\"; }\n\n.fa-couch:before {\n content: \"\\f4b8\"; }\n\n.fa-cpanel:before {\n content: \"\\f388\"; }\n\n.fa-creative-commons:before {\n content: \"\\f25e\"; }\n\n.fa-creative-commons-by:before {\n content: \"\\f4e7\"; }\n\n.fa-creative-commons-nc:before {\n content: \"\\f4e8\"; }\n\n.fa-creative-commons-nc-eu:before {\n content: \"\\f4e9\"; }\n\n.fa-creative-commons-nc-jp:before {\n content: \"\\f4ea\"; }\n\n.fa-creative-commons-nd:before {\n content: \"\\f4eb\"; }\n\n.fa-creative-commons-pd:before {\n content: \"\\f4ec\"; }\n\n.fa-creative-commons-pd-alt:before {\n content: \"\\f4ed\"; }\n\n.fa-creative-commons-remix:before {\n content: \"\\f4ee\"; }\n\n.fa-creative-commons-sa:before {\n content: \"\\f4ef\"; }\n\n.fa-creative-commons-sampling:before {\n content: \"\\f4f0\"; }\n\n.fa-creative-commons-sampling-plus:before {\n content: \"\\f4f1\"; }\n\n.fa-creative-commons-share:before {\n content: \"\\f4f2\"; }\n\n.fa-creative-commons-zero:before {\n content: \"\\f4f3\"; }\n\n.fa-credit-card:before {\n content: \"\\f09d\"; }\n\n.fa-critical-role:before {\n content: \"\\f6c9\"; }\n\n.fa-crop:before {\n content: \"\\f125\"; }\n\n.fa-crop-alt:before {\n content: \"\\f565\"; }\n\n.fa-cross:before {\n content: \"\\f654\"; }\n\n.fa-crosshairs:before {\n content: \"\\f05b\"; }\n\n.fa-crow:before {\n content: \"\\f520\"; }\n\n.fa-crown:before {\n content: \"\\f521\"; }\n\n.fa-crutch:before {\n content: \"\\f7f7\"; }\n\n.fa-css3:before {\n content: \"\\f13c\"; }\n\n.fa-css3-alt:before {\n content: \"\\f38b\"; }\n\n.fa-cube:before {\n content: \"\\f1b2\"; }\n\n.fa-cubes:before {\n content: \"\\f1b3\"; }\n\n.fa-cut:before {\n content: \"\\f0c4\"; }\n\n.fa-cuttlefish:before {\n content: \"\\f38c\"; }\n\n.fa-d-and-d:before {\n content: \"\\f38d\"; }\n\n.fa-d-and-d-beyond:before {\n content: \"\\f6ca\"; }\n\n.fa-dashcube:before {\n content: \"\\f210\"; }\n\n.fa-database:before {\n content: \"\\f1c0\"; }\n\n.fa-deaf:before {\n content: \"\\f2a4\"; }\n\n.fa-delicious:before {\n content: \"\\f1a5\"; }\n\n.fa-democrat:before {\n content: \"\\f747\"; }\n\n.fa-deploydog:before {\n content: \"\\f38e\"; }\n\n.fa-deskpro:before {\n content: \"\\f38f\"; }\n\n.fa-desktop:before {\n content: \"\\f108\"; }\n\n.fa-dev:before {\n content: \"\\f6cc\"; }\n\n.fa-deviantart:before {\n content: \"\\f1bd\"; }\n\n.fa-dharmachakra:before {\n content: \"\\f655\"; }\n\n.fa-dhl:before {\n content: \"\\f790\"; }\n\n.fa-diagnoses:before {\n content: \"\\f470\"; }\n\n.fa-diaspora:before {\n content: \"\\f791\"; }\n\n.fa-dice:before {\n content: \"\\f522\"; }\n\n.fa-dice-d20:before {\n content: \"\\f6cf\"; }\n\n.fa-dice-d6:before {\n content: \"\\f6d1\"; }\n\n.fa-dice-five:before {\n content: \"\\f523\"; }\n\n.fa-dice-four:before {\n content: \"\\f524\"; }\n\n.fa-dice-one:before {\n content: \"\\f525\"; }\n\n.fa-dice-six:before {\n content: \"\\f526\"; }\n\n.fa-dice-three:before {\n content: \"\\f527\"; }\n\n.fa-dice-two:before {\n content: \"\\f528\"; }\n\n.fa-digg:before {\n content: \"\\f1a6\"; }\n\n.fa-digital-ocean:before {\n content: \"\\f391\"; }\n\n.fa-digital-tachograph:before {\n content: \"\\f566\"; }\n\n.fa-directions:before {\n content: \"\\f5eb\"; }\n\n.fa-discord:before {\n content: \"\\f392\"; }\n\n.fa-discourse:before {\n content: \"\\f393\"; }\n\n.fa-divide:before {\n content: \"\\f529\"; }\n\n.fa-dizzy:before {\n content: \"\\f567\"; }\n\n.fa-dna:before {\n content: \"\\f471\"; }\n\n.fa-dochub:before {\n content: \"\\f394\"; }\n\n.fa-docker:before {\n content: \"\\f395\"; }\n\n.fa-dog:before {\n content: \"\\f6d3\"; }\n\n.fa-dollar-sign:before {\n content: \"\\f155\"; }\n\n.fa-dolly:before {\n content: \"\\f472\"; }\n\n.fa-dolly-flatbed:before {\n content: \"\\f474\"; }\n\n.fa-donate:before {\n content: \"\\f4b9\"; }\n\n.fa-door-closed:before {\n content: \"\\f52a\"; }\n\n.fa-door-open:before {\n content: \"\\f52b\"; }\n\n.fa-dot-circle:before {\n content: \"\\f192\"; }\n\n.fa-dove:before {\n content: \"\\f4ba\"; }\n\n.fa-download:before {\n content: \"\\f019\"; }\n\n.fa-draft2digital:before {\n content: \"\\f396\"; }\n\n.fa-drafting-compass:before {\n content: \"\\f568\"; }\n\n.fa-dragon:before {\n content: \"\\f6d5\"; }\n\n.fa-draw-polygon:before {\n content: \"\\f5ee\"; }\n\n.fa-dribbble:before {\n content: \"\\f17d\"; }\n\n.fa-dribbble-square:before {\n content: \"\\f397\"; }\n\n.fa-dropbox:before {\n content: \"\\f16b\"; }\n\n.fa-drum:before {\n content: \"\\f569\"; }\n\n.fa-drum-steelpan:before {\n content: \"\\f56a\"; }\n\n.fa-drumstick-bite:before {\n content: \"\\f6d7\"; }\n\n.fa-drupal:before {\n content: \"\\f1a9\"; }\n\n.fa-dumbbell:before {\n content: \"\\f44b\"; }\n\n.fa-dumpster:before {\n content: \"\\f793\"; }\n\n.fa-dumpster-fire:before {\n content: \"\\f794\"; }\n\n.fa-dungeon:before {\n content: \"\\f6d9\"; }\n\n.fa-dyalog:before {\n content: \"\\f399\"; }\n\n.fa-earlybirds:before {\n content: \"\\f39a\"; }\n\n.fa-ebay:before {\n content: \"\\f4f4\"; }\n\n.fa-edge:before {\n content: \"\\f282\"; }\n\n.fa-edit:before {\n content: \"\\f044\"; }\n\n.fa-egg:before {\n content: \"\\f7fb\"; }\n\n.fa-eject:before {\n content: \"\\f052\"; }\n\n.fa-elementor:before {\n content: \"\\f430\"; }\n\n.fa-ellipsis-h:before {\n content: \"\\f141\"; }\n\n.fa-ellipsis-v:before {\n content: \"\\f142\"; }\n\n.fa-ello:before {\n content: \"\\f5f1\"; }\n\n.fa-ember:before {\n content: \"\\f423\"; }\n\n.fa-empire:before {\n content: \"\\f1d1\"; }\n\n.fa-envelope:before {\n content: \"\\f0e0\"; }\n\n.fa-envelope-open:before {\n content: \"\\f2b6\"; }\n\n.fa-envelope-open-text:before {\n content: \"\\f658\"; }\n\n.fa-envelope-square:before {\n content: \"\\f199\"; }\n\n.fa-envira:before {\n content: \"\\f299\"; }\n\n.fa-equals:before {\n content: \"\\f52c\"; }\n\n.fa-eraser:before {\n content: \"\\f12d\"; }\n\n.fa-erlang:before {\n content: \"\\f39d\"; }\n\n.fa-ethereum:before {\n content: \"\\f42e\"; }\n\n.fa-ethernet:before {\n content: \"\\f796\"; }\n\n.fa-etsy:before {\n content: \"\\f2d7\"; }\n\n.fa-euro-sign:before {\n content: \"\\f153\"; }\n\n.fa-evernote:before {\n content: \"\\f839\"; }\n\n.fa-exchange-alt:before {\n content: \"\\f362\"; }\n\n.fa-exclamation:before {\n content: \"\\f12a\"; }\n\n.fa-exclamation-circle:before {\n content: \"\\f06a\"; }\n\n.fa-exclamation-triangle:before {\n content: \"\\f071\"; }\n\n.fa-expand:before {\n content: \"\\f065\"; }\n\n.fa-expand-arrows-alt:before {\n content: \"\\f31e\"; }\n\n.fa-expeditedssl:before {\n content: \"\\f23e\"; }\n\n.fa-external-link-alt:before {\n content: \"\\f35d\"; }\n\n.fa-external-link-square-alt:before {\n content: \"\\f360\"; }\n\n.fa-eye:before {\n content: \"\\f06e\"; }\n\n.fa-eye-dropper:before {\n content: \"\\f1fb\"; }\n\n.fa-eye-slash:before {\n content: \"\\f070\"; }\n\n.fa-facebook:before {\n content: \"\\f09a\"; }\n\n.fa-facebook-f:before {\n content: \"\\f39e\"; }\n\n.fa-facebook-messenger:before {\n content: \"\\f39f\"; }\n\n.fa-facebook-square:before {\n content: \"\\f082\"; }\n\n.fa-fantasy-flight-games:before {\n content: \"\\f6dc\"; }\n\n.fa-fast-backward:before {\n content: \"\\f049\"; }\n\n.fa-fast-forward:before {\n content: \"\\f050\"; }\n\n.fa-fax:before {\n content: \"\\f1ac\"; }\n\n.fa-feather:before {\n content: \"\\f52d\"; }\n\n.fa-feather-alt:before {\n content: \"\\f56b\"; }\n\n.fa-fedex:before {\n content: \"\\f797\"; }\n\n.fa-fedora:before {\n content: \"\\f798\"; }\n\n.fa-female:before {\n content: \"\\f182\"; }\n\n.fa-fighter-jet:before {\n content: \"\\f0fb\"; }\n\n.fa-figma:before {\n content: \"\\f799\"; }\n\n.fa-file:before {\n content: \"\\f15b\"; }\n\n.fa-file-alt:before {\n content: \"\\f15c\"; }\n\n.fa-file-archive:before {\n content: \"\\f1c6\"; }\n\n.fa-file-audio:before {\n content: \"\\f1c7\"; }\n\n.fa-file-code:before {\n content: \"\\f1c9\"; }\n\n.fa-file-contract:before {\n content: \"\\f56c\"; }\n\n.fa-file-csv:before {\n content: \"\\f6dd\"; }\n\n.fa-file-download:before {\n content: \"\\f56d\"; }\n\n.fa-file-excel:before {\n content: \"\\f1c3\"; }\n\n.fa-file-export:before {\n content: \"\\f56e\"; }\n\n.fa-file-image:before {\n content: \"\\f1c5\"; }\n\n.fa-file-import:before {\n content: \"\\f56f\"; }\n\n.fa-file-invoice:before {\n content: \"\\f570\"; }\n\n.fa-file-invoice-dollar:before {\n content: \"\\f571\"; }\n\n.fa-file-medical:before {\n content: \"\\f477\"; }\n\n.fa-file-medical-alt:before {\n content: \"\\f478\"; }\n\n.fa-file-pdf:before {\n content: \"\\f1c1\"; }\n\n.fa-file-powerpoint:before {\n content: \"\\f1c4\"; }\n\n.fa-file-prescription:before {\n content: \"\\f572\"; }\n\n.fa-file-signature:before {\n content: \"\\f573\"; }\n\n.fa-file-upload:before {\n content: \"\\f574\"; }\n\n.fa-file-video:before {\n content: \"\\f1c8\"; }\n\n.fa-file-word:before {\n content: \"\\f1c2\"; }\n\n.fa-fill:before {\n content: \"\\f575\"; }\n\n.fa-fill-drip:before {\n content: \"\\f576\"; }\n\n.fa-film:before {\n content: \"\\f008\"; }\n\n.fa-filter:before {\n content: \"\\f0b0\"; }\n\n.fa-fingerprint:before {\n content: \"\\f577\"; }\n\n.fa-fire:before {\n content: \"\\f06d\"; }\n\n.fa-fire-alt:before {\n content: \"\\f7e4\"; }\n\n.fa-fire-extinguisher:before {\n content: \"\\f134\"; }\n\n.fa-firefox:before {\n content: \"\\f269\"; }\n\n.fa-first-aid:before {\n content: \"\\f479\"; }\n\n.fa-first-order:before {\n content: \"\\f2b0\"; }\n\n.fa-first-order-alt:before {\n content: \"\\f50a\"; }\n\n.fa-firstdraft:before {\n content: \"\\f3a1\"; }\n\n.fa-fish:before {\n content: \"\\f578\"; }\n\n.fa-fist-raised:before {\n content: \"\\f6de\"; }\n\n.fa-flag:before {\n content: \"\\f024\"; }\n\n.fa-flag-checkered:before {\n content: \"\\f11e\"; }\n\n.fa-flag-usa:before {\n content: \"\\f74d\"; }\n\n.fa-flask:before {\n content: \"\\f0c3\"; }\n\n.fa-flickr:before {\n content: \"\\f16e\"; }\n\n.fa-flipboard:before {\n content: \"\\f44d\"; }\n\n.fa-flushed:before {\n content: \"\\f579\"; }\n\n.fa-fly:before {\n content: \"\\f417\"; }\n\n.fa-folder:before {\n content: \"\\f07b\"; }\n\n.fa-folder-minus:before {\n content: \"\\f65d\"; }\n\n.fa-folder-open:before {\n content: \"\\f07c\"; }\n\n.fa-folder-plus:before {\n content: \"\\f65e\"; }\n\n.fa-font:before {\n content: \"\\f031\"; }\n\n.fa-font-awesome:before {\n content: \"\\f2b4\"; }\n\n.fa-font-awesome-alt:before {\n content: \"\\f35c\"; }\n\n.fa-font-awesome-flag:before {\n content: \"\\f425\"; }\n\n.fa-font-awesome-logo-full:before {\n content: \"\\f4e6\"; }\n\n.fa-fonticons:before {\n content: \"\\f280\"; }\n\n.fa-fonticons-fi:before {\n content: \"\\f3a2\"; }\n\n.fa-football-ball:before {\n content: \"\\f44e\"; }\n\n.fa-fort-awesome:before {\n content: \"\\f286\"; }\n\n.fa-fort-awesome-alt:before {\n content: \"\\f3a3\"; }\n\n.fa-forumbee:before {\n content: \"\\f211\"; }\n\n.fa-forward:before {\n content: \"\\f04e\"; }\n\n.fa-foursquare:before {\n content: \"\\f180\"; }\n\n.fa-free-code-camp:before {\n content: \"\\f2c5\"; }\n\n.fa-freebsd:before {\n content: \"\\f3a4\"; }\n\n.fa-frog:before {\n content: \"\\f52e\"; }\n\n.fa-frown:before {\n content: \"\\f119\"; }\n\n.fa-frown-open:before {\n content: \"\\f57a\"; }\n\n.fa-fulcrum:before {\n content: \"\\f50b\"; }\n\n.fa-funnel-dollar:before {\n content: \"\\f662\"; }\n\n.fa-futbol:before {\n content: \"\\f1e3\"; }\n\n.fa-galactic-republic:before {\n content: \"\\f50c\"; }\n\n.fa-galactic-senate:before {\n content: \"\\f50d\"; }\n\n.fa-gamepad:before {\n content: \"\\f11b\"; }\n\n.fa-gas-pump:before {\n content: \"\\f52f\"; }\n\n.fa-gavel:before {\n content: \"\\f0e3\"; }\n\n.fa-gem:before {\n content: \"\\f3a5\"; }\n\n.fa-genderless:before {\n content: \"\\f22d\"; }\n\n.fa-get-pocket:before {\n content: \"\\f265\"; }\n\n.fa-gg:before {\n content: \"\\f260\"; }\n\n.fa-gg-circle:before {\n content: \"\\f261\"; }\n\n.fa-ghost:before {\n content: \"\\f6e2\"; }\n\n.fa-gift:before {\n content: \"\\f06b\"; }\n\n.fa-gifts:before {\n content: \"\\f79c\"; }\n\n.fa-git:before {\n content: \"\\f1d3\"; }\n\n.fa-git-alt:before {\n content: \"\\f841\"; }\n\n.fa-git-square:before {\n content: \"\\f1d2\"; }\n\n.fa-github:before {\n content: \"\\f09b\"; }\n\n.fa-github-alt:before {\n content: \"\\f113\"; }\n\n.fa-github-square:before {\n content: \"\\f092\"; }\n\n.fa-gitkraken:before {\n content: \"\\f3a6\"; }\n\n.fa-gitlab:before {\n content: \"\\f296\"; }\n\n.fa-gitter:before {\n content: \"\\f426\"; }\n\n.fa-glass-cheers:before {\n content: \"\\f79f\"; }\n\n.fa-glass-martini:before {\n content: \"\\f000\"; }\n\n.fa-glass-martini-alt:before {\n content: \"\\f57b\"; }\n\n.fa-glass-whiskey:before {\n content: \"\\f7a0\"; }\n\n.fa-glasses:before {\n content: \"\\f530\"; }\n\n.fa-glide:before {\n content: \"\\f2a5\"; }\n\n.fa-glide-g:before {\n content: \"\\f2a6\"; }\n\n.fa-globe:before {\n content: \"\\f0ac\"; }\n\n.fa-globe-africa:before {\n content: \"\\f57c\"; }\n\n.fa-globe-americas:before {\n content: \"\\f57d\"; }\n\n.fa-globe-asia:before {\n content: \"\\f57e\"; }\n\n.fa-globe-europe:before {\n content: \"\\f7a2\"; }\n\n.fa-gofore:before {\n content: \"\\f3a7\"; }\n\n.fa-golf-ball:before {\n content: \"\\f450\"; }\n\n.fa-goodreads:before {\n content: \"\\f3a8\"; }\n\n.fa-goodreads-g:before {\n content: \"\\f3a9\"; }\n\n.fa-google:before {\n content: \"\\f1a0\"; }\n\n.fa-google-drive:before {\n content: \"\\f3aa\"; }\n\n.fa-google-play:before {\n content: \"\\f3ab\"; }\n\n.fa-google-plus:before {\n content: \"\\f2b3\"; }\n\n.fa-google-plus-g:before {\n content: \"\\f0d5\"; }\n\n.fa-google-plus-square:before {\n content: \"\\f0d4\"; }\n\n.fa-google-wallet:before {\n content: \"\\f1ee\"; }\n\n.fa-gopuram:before {\n content: \"\\f664\"; }\n\n.fa-graduation-cap:before {\n content: \"\\f19d\"; }\n\n.fa-gratipay:before {\n content: \"\\f184\"; }\n\n.fa-grav:before {\n content: \"\\f2d6\"; }\n\n.fa-greater-than:before {\n content: \"\\f531\"; }\n\n.fa-greater-than-equal:before {\n content: \"\\f532\"; }\n\n.fa-grimace:before {\n content: \"\\f57f\"; }\n\n.fa-grin:before {\n content: \"\\f580\"; }\n\n.fa-grin-alt:before {\n content: \"\\f581\"; }\n\n.fa-grin-beam:before {\n content: \"\\f582\"; }\n\n.fa-grin-beam-sweat:before {\n content: \"\\f583\"; }\n\n.fa-grin-hearts:before {\n content: \"\\f584\"; }\n\n.fa-grin-squint:before {\n content: \"\\f585\"; }\n\n.fa-grin-squint-tears:before {\n content: \"\\f586\"; }\n\n.fa-grin-stars:before {\n content: \"\\f587\"; }\n\n.fa-grin-tears:before {\n content: \"\\f588\"; }\n\n.fa-grin-tongue:before {\n content: \"\\f589\"; }\n\n.fa-grin-tongue-squint:before {\n content: \"\\f58a\"; }\n\n.fa-grin-tongue-wink:before {\n content: \"\\f58b\"; }\n\n.fa-grin-wink:before {\n content: \"\\f58c\"; }\n\n.fa-grip-horizontal:before {\n content: \"\\f58d\"; }\n\n.fa-grip-lines:before {\n content: \"\\f7a4\"; }\n\n.fa-grip-lines-vertical:before {\n content: \"\\f7a5\"; }\n\n.fa-grip-vertical:before {\n content: \"\\f58e\"; }\n\n.fa-gripfire:before {\n content: \"\\f3ac\"; }\n\n.fa-grunt:before {\n content: \"\\f3ad\"; }\n\n.fa-guitar:before {\n content: \"\\f7a6\"; }\n\n.fa-gulp:before {\n content: \"\\f3ae\"; }\n\n.fa-h-square:before {\n content: \"\\f0fd\"; }\n\n.fa-hacker-news:before {\n content: \"\\f1d4\"; }\n\n.fa-hacker-news-square:before {\n content: \"\\f3af\"; }\n\n.fa-hackerrank:before {\n content: \"\\f5f7\"; }\n\n.fa-hamburger:before {\n content: \"\\f805\"; }\n\n.fa-hammer:before {\n content: \"\\f6e3\"; }\n\n.fa-hamsa:before {\n content: \"\\f665\"; }\n\n.fa-hand-holding:before {\n content: \"\\f4bd\"; }\n\n.fa-hand-holding-heart:before {\n content: \"\\f4be\"; }\n\n.fa-hand-holding-usd:before {\n content: \"\\f4c0\"; }\n\n.fa-hand-lizard:before {\n content: \"\\f258\"; }\n\n.fa-hand-middle-finger:before {\n content: \"\\f806\"; }\n\n.fa-hand-paper:before {\n content: \"\\f256\"; }\n\n.fa-hand-peace:before {\n content: \"\\f25b\"; }\n\n.fa-hand-point-down:before {\n content: \"\\f0a7\"; }\n\n.fa-hand-point-left:before {\n content: \"\\f0a5\"; }\n\n.fa-hand-point-right:before {\n content: \"\\f0a4\"; }\n\n.fa-hand-point-up:before {\n content: \"\\f0a6\"; }\n\n.fa-hand-pointer:before {\n content: \"\\f25a\"; }\n\n.fa-hand-rock:before {\n content: \"\\f255\"; }\n\n.fa-hand-scissors:before {\n content: \"\\f257\"; }\n\n.fa-hand-spock:before {\n content: \"\\f259\"; }\n\n.fa-hands:before {\n content: \"\\f4c2\"; }\n\n.fa-hands-helping:before {\n content: \"\\f4c4\"; }\n\n.fa-handshake:before {\n content: \"\\f2b5\"; }\n\n.fa-hanukiah:before {\n content: \"\\f6e6\"; }\n\n.fa-hard-hat:before {\n content: \"\\f807\"; }\n\n.fa-hashtag:before {\n content: \"\\f292\"; }\n\n.fa-hat-wizard:before {\n content: \"\\f6e8\"; }\n\n.fa-haykal:before {\n content: \"\\f666\"; }\n\n.fa-hdd:before {\n content: \"\\f0a0\"; }\n\n.fa-heading:before {\n content: \"\\f1dc\"; }\n\n.fa-headphones:before {\n content: \"\\f025\"; }\n\n.fa-headphones-alt:before {\n content: \"\\f58f\"; }\n\n.fa-headset:before {\n content: \"\\f590\"; }\n\n.fa-heart:before {\n content: \"\\f004\"; }\n\n.fa-heart-broken:before {\n content: \"\\f7a9\"; }\n\n.fa-heartbeat:before {\n content: \"\\f21e\"; }\n\n.fa-helicopter:before {\n content: \"\\f533\"; }\n\n.fa-highlighter:before {\n content: \"\\f591\"; }\n\n.fa-hiking:before {\n content: \"\\f6ec\"; }\n\n.fa-hippo:before {\n content: \"\\f6ed\"; }\n\n.fa-hips:before {\n content: \"\\f452\"; }\n\n.fa-hire-a-helper:before {\n content: \"\\f3b0\"; }\n\n.fa-history:before {\n content: \"\\f1da\"; }\n\n.fa-hockey-puck:before {\n content: \"\\f453\"; }\n\n.fa-holly-berry:before {\n content: \"\\f7aa\"; }\n\n.fa-home:before {\n content: \"\\f015\"; }\n\n.fa-hooli:before {\n content: \"\\f427\"; }\n\n.fa-hornbill:before {\n content: \"\\f592\"; }\n\n.fa-horse:before {\n content: \"\\f6f0\"; }\n\n.fa-horse-head:before {\n content: \"\\f7ab\"; }\n\n.fa-hospital:before {\n content: \"\\f0f8\"; }\n\n.fa-hospital-alt:before {\n content: \"\\f47d\"; }\n\n.fa-hospital-symbol:before {\n content: \"\\f47e\"; }\n\n.fa-hot-tub:before {\n content: \"\\f593\"; }\n\n.fa-hotdog:before {\n content: \"\\f80f\"; }\n\n.fa-hotel:before {\n content: \"\\f594\"; }\n\n.fa-hotjar:before {\n content: \"\\f3b1\"; }\n\n.fa-hourglass:before {\n content: \"\\f254\"; }\n\n.fa-hourglass-end:before {\n content: \"\\f253\"; }\n\n.fa-hourglass-half:before {\n content: \"\\f252\"; }\n\n.fa-hourglass-start:before {\n content: \"\\f251\"; }\n\n.fa-house-damage:before {\n content: \"\\f6f1\"; }\n\n.fa-houzz:before {\n content: \"\\f27c\"; }\n\n.fa-hryvnia:before {\n content: \"\\f6f2\"; }\n\n.fa-html5:before {\n content: \"\\f13b\"; }\n\n.fa-hubspot:before {\n content: \"\\f3b2\"; }\n\n.fa-i-cursor:before {\n content: \"\\f246\"; }\n\n.fa-ice-cream:before {\n content: \"\\f810\"; }\n\n.fa-icicles:before {\n content: \"\\f7ad\"; }\n\n.fa-id-badge:before {\n content: \"\\f2c1\"; }\n\n.fa-id-card:before {\n content: \"\\f2c2\"; }\n\n.fa-id-card-alt:before {\n content: \"\\f47f\"; }\n\n.fa-igloo:before {\n content: \"\\f7ae\"; }\n\n.fa-image:before {\n content: \"\\f03e\"; }\n\n.fa-images:before {\n content: \"\\f302\"; }\n\n.fa-imdb:before {\n content: \"\\f2d8\"; }\n\n.fa-inbox:before {\n content: \"\\f01c\"; }\n\n.fa-indent:before {\n content: \"\\f03c\"; }\n\n.fa-industry:before {\n content: \"\\f275\"; }\n\n.fa-infinity:before {\n content: \"\\f534\"; }\n\n.fa-info:before {\n content: \"\\f129\"; }\n\n.fa-info-circle:before {\n content: \"\\f05a\"; }\n\n.fa-instagram:before {\n content: \"\\f16d\"; }\n\n.fa-intercom:before {\n content: \"\\f7af\"; }\n\n.fa-internet-explorer:before {\n content: \"\\f26b\"; }\n\n.fa-invision:before {\n content: \"\\f7b0\"; }\n\n.fa-ioxhost:before {\n content: \"\\f208\"; }\n\n.fa-italic:before {\n content: \"\\f033\"; }\n\n.fa-itch-io:before {\n content: \"\\f83a\"; }\n\n.fa-itunes:before {\n content: \"\\f3b4\"; }\n\n.fa-itunes-note:before {\n content: \"\\f3b5\"; }\n\n.fa-java:before {\n content: \"\\f4e4\"; }\n\n.fa-jedi:before {\n content: \"\\f669\"; }\n\n.fa-jedi-order:before {\n content: \"\\f50e\"; }\n\n.fa-jenkins:before {\n content: \"\\f3b6\"; }\n\n.fa-jira:before {\n content: \"\\f7b1\"; }\n\n.fa-joget:before {\n content: \"\\f3b7\"; }\n\n.fa-joint:before {\n content: \"\\f595\"; }\n\n.fa-joomla:before {\n content: \"\\f1aa\"; }\n\n.fa-journal-whills:before {\n content: \"\\f66a\"; }\n\n.fa-js:before {\n content: \"\\f3b8\"; }\n\n.fa-js-square:before {\n content: \"\\f3b9\"; }\n\n.fa-jsfiddle:before {\n content: \"\\f1cc\"; }\n\n.fa-kaaba:before {\n content: \"\\f66b\"; }\n\n.fa-kaggle:before {\n content: \"\\f5fa\"; }\n\n.fa-key:before {\n content: \"\\f084\"; }\n\n.fa-keybase:before {\n content: \"\\f4f5\"; }\n\n.fa-keyboard:before {\n content: \"\\f11c\"; }\n\n.fa-keycdn:before {\n content: \"\\f3ba\"; }\n\n.fa-khanda:before {\n content: \"\\f66d\"; }\n\n.fa-kickstarter:before {\n content: \"\\f3bb\"; }\n\n.fa-kickstarter-k:before {\n content: \"\\f3bc\"; }\n\n.fa-kiss:before {\n content: \"\\f596\"; }\n\n.fa-kiss-beam:before {\n content: \"\\f597\"; }\n\n.fa-kiss-wink-heart:before {\n content: \"\\f598\"; }\n\n.fa-kiwi-bird:before {\n content: \"\\f535\"; }\n\n.fa-korvue:before {\n content: \"\\f42f\"; }\n\n.fa-landmark:before {\n content: \"\\f66f\"; }\n\n.fa-language:before {\n content: \"\\f1ab\"; }\n\n.fa-laptop:before {\n content: \"\\f109\"; }\n\n.fa-laptop-code:before {\n content: \"\\f5fc\"; }\n\n.fa-laptop-medical:before {\n content: \"\\f812\"; }\n\n.fa-laravel:before {\n content: \"\\f3bd\"; }\n\n.fa-lastfm:before {\n content: \"\\f202\"; }\n\n.fa-lastfm-square:before {\n content: \"\\f203\"; }\n\n.fa-laugh:before {\n content: \"\\f599\"; }\n\n.fa-laugh-beam:before {\n content: \"\\f59a\"; }\n\n.fa-laugh-squint:before {\n content: \"\\f59b\"; }\n\n.fa-laugh-wink:before {\n content: \"\\f59c\"; }\n\n.fa-layer-group:before {\n content: \"\\f5fd\"; }\n\n.fa-leaf:before {\n content: \"\\f06c\"; }\n\n.fa-leanpub:before {\n content: \"\\f212\"; }\n\n.fa-lemon:before {\n content: \"\\f094\"; }\n\n.fa-less:before {\n content: \"\\f41d\"; }\n\n.fa-less-than:before {\n content: \"\\f536\"; }\n\n.fa-less-than-equal:before {\n content: \"\\f537\"; }\n\n.fa-level-down-alt:before {\n content: \"\\f3be\"; }\n\n.fa-level-up-alt:before {\n content: \"\\f3bf\"; }\n\n.fa-life-ring:before {\n content: \"\\f1cd\"; }\n\n.fa-lightbulb:before {\n content: \"\\f0eb\"; }\n\n.fa-line:before {\n content: \"\\f3c0\"; }\n\n.fa-link:before {\n content: \"\\f0c1\"; }\n\n.fa-linkedin:before {\n content: \"\\f08c\"; }\n\n.fa-linkedin-in:before {\n content: \"\\f0e1\"; }\n\n.fa-linode:before {\n content: \"\\f2b8\"; }\n\n.fa-linux:before {\n content: \"\\f17c\"; }\n\n.fa-lira-sign:before {\n content: \"\\f195\"; }\n\n.fa-list:before {\n content: \"\\f03a\"; }\n\n.fa-list-alt:before {\n content: \"\\f022\"; }\n\n.fa-list-ol:before {\n content: \"\\f0cb\"; }\n\n.fa-list-ul:before {\n content: \"\\f0ca\"; }\n\n.fa-location-arrow:before {\n content: \"\\f124\"; }\n\n.fa-lock:before {\n content: \"\\f023\"; }\n\n.fa-lock-open:before {\n content: \"\\f3c1\"; }\n\n.fa-long-arrow-alt-down:before {\n content: \"\\f309\"; }\n\n.fa-long-arrow-alt-left:before {\n content: \"\\f30a\"; }\n\n.fa-long-arrow-alt-right:before {\n content: \"\\f30b\"; }\n\n.fa-long-arrow-alt-up:before {\n content: \"\\f30c\"; }\n\n.fa-low-vision:before {\n content: \"\\f2a8\"; }\n\n.fa-luggage-cart:before {\n content: \"\\f59d\"; }\n\n.fa-lyft:before {\n content: \"\\f3c3\"; }\n\n.fa-magento:before {\n content: \"\\f3c4\"; }\n\n.fa-magic:before {\n content: \"\\f0d0\"; }\n\n.fa-magnet:before {\n content: \"\\f076\"; }\n\n.fa-mail-bulk:before {\n content: \"\\f674\"; }\n\n.fa-mailchimp:before {\n content: \"\\f59e\"; }\n\n.fa-male:before {\n content: \"\\f183\"; }\n\n.fa-mandalorian:before {\n content: \"\\f50f\"; }\n\n.fa-map:before {\n content: \"\\f279\"; }\n\n.fa-map-marked:before {\n content: \"\\f59f\"; }\n\n.fa-map-marked-alt:before {\n content: \"\\f5a0\"; }\n\n.fa-map-marker:before {\n content: \"\\f041\"; }\n\n.fa-map-marker-alt:before {\n content: \"\\f3c5\"; }\n\n.fa-map-pin:before {\n content: \"\\f276\"; }\n\n.fa-map-signs:before {\n content: \"\\f277\"; }\n\n.fa-markdown:before {\n content: \"\\f60f\"; }\n\n.fa-marker:before {\n content: \"\\f5a1\"; }\n\n.fa-mars:before {\n content: \"\\f222\"; }\n\n.fa-mars-double:before {\n content: \"\\f227\"; }\n\n.fa-mars-stroke:before {\n content: \"\\f229\"; }\n\n.fa-mars-stroke-h:before {\n content: \"\\f22b\"; }\n\n.fa-mars-stroke-v:before {\n content: \"\\f22a\"; }\n\n.fa-mask:before {\n content: \"\\f6fa\"; }\n\n.fa-mastodon:before {\n content: \"\\f4f6\"; }\n\n.fa-maxcdn:before {\n content: \"\\f136\"; }\n\n.fa-medal:before {\n content: \"\\f5a2\"; }\n\n.fa-medapps:before {\n content: \"\\f3c6\"; }\n\n.fa-medium:before {\n content: \"\\f23a\"; }\n\n.fa-medium-m:before {\n content: \"\\f3c7\"; }\n\n.fa-medkit:before {\n content: \"\\f0fa\"; }\n\n.fa-medrt:before {\n content: \"\\f3c8\"; }\n\n.fa-meetup:before {\n content: \"\\f2e0\"; }\n\n.fa-megaport:before {\n content: \"\\f5a3\"; }\n\n.fa-meh:before {\n content: \"\\f11a\"; }\n\n.fa-meh-blank:before {\n content: \"\\f5a4\"; }\n\n.fa-meh-rolling-eyes:before {\n content: \"\\f5a5\"; }\n\n.fa-memory:before {\n content: \"\\f538\"; }\n\n.fa-mendeley:before {\n content: \"\\f7b3\"; }\n\n.fa-menorah:before {\n content: \"\\f676\"; }\n\n.fa-mercury:before {\n content: \"\\f223\"; }\n\n.fa-meteor:before {\n content: \"\\f753\"; }\n\n.fa-microchip:before {\n content: \"\\f2db\"; }\n\n.fa-microphone:before {\n content: \"\\f130\"; }\n\n.fa-microphone-alt:before {\n content: \"\\f3c9\"; }\n\n.fa-microphone-alt-slash:before {\n content: \"\\f539\"; }\n\n.fa-microphone-slash:before {\n content: \"\\f131\"; }\n\n.fa-microscope:before {\n content: \"\\f610\"; }\n\n.fa-microsoft:before {\n content: \"\\f3ca\"; }\n\n.fa-minus:before {\n content: \"\\f068\"; }\n\n.fa-minus-circle:before {\n content: \"\\f056\"; }\n\n.fa-minus-square:before {\n content: \"\\f146\"; }\n\n.fa-mitten:before {\n content: \"\\f7b5\"; }\n\n.fa-mix:before {\n content: \"\\f3cb\"; }\n\n.fa-mixcloud:before {\n content: \"\\f289\"; }\n\n.fa-mizuni:before {\n content: \"\\f3cc\"; }\n\n.fa-mobile:before {\n content: \"\\f10b\"; }\n\n.fa-mobile-alt:before {\n content: \"\\f3cd\"; }\n\n.fa-modx:before {\n content: \"\\f285\"; }\n\n.fa-monero:before {\n content: \"\\f3d0\"; }\n\n.fa-money-bill:before {\n content: \"\\f0d6\"; }\n\n.fa-money-bill-alt:before {\n content: \"\\f3d1\"; }\n\n.fa-money-bill-wave:before {\n content: \"\\f53a\"; }\n\n.fa-money-bill-wave-alt:before {\n content: \"\\f53b\"; }\n\n.fa-money-check:before {\n content: \"\\f53c\"; }\n\n.fa-money-check-alt:before {\n content: \"\\f53d\"; }\n\n.fa-monument:before {\n content: \"\\f5a6\"; }\n\n.fa-moon:before {\n content: \"\\f186\"; }\n\n.fa-mortar-pestle:before {\n content: \"\\f5a7\"; }\n\n.fa-mosque:before {\n content: \"\\f678\"; }\n\n.fa-motorcycle:before {\n content: \"\\f21c\"; }\n\n.fa-mountain:before {\n content: \"\\f6fc\"; }\n\n.fa-mouse-pointer:before {\n content: \"\\f245\"; }\n\n.fa-mug-hot:before {\n content: \"\\f7b6\"; }\n\n.fa-music:before {\n content: \"\\f001\"; }\n\n.fa-napster:before {\n content: \"\\f3d2\"; }\n\n.fa-neos:before {\n content: \"\\f612\"; }\n\n.fa-network-wired:before {\n content: \"\\f6ff\"; }\n\n.fa-neuter:before {\n content: \"\\f22c\"; }\n\n.fa-newspaper:before {\n content: \"\\f1ea\"; }\n\n.fa-nimblr:before {\n content: \"\\f5a8\"; }\n\n.fa-nintendo-switch:before {\n content: \"\\f418\"; }\n\n.fa-node:before {\n content: \"\\f419\"; }\n\n.fa-node-js:before {\n content: \"\\f3d3\"; }\n\n.fa-not-equal:before {\n content: \"\\f53e\"; }\n\n.fa-notes-medical:before {\n content: \"\\f481\"; }\n\n.fa-npm:before {\n content: \"\\f3d4\"; }\n\n.fa-ns8:before {\n content: \"\\f3d5\"; }\n\n.fa-nutritionix:before {\n content: \"\\f3d6\"; }\n\n.fa-object-group:before {\n content: \"\\f247\"; }\n\n.fa-object-ungroup:before {\n content: \"\\f248\"; }\n\n.fa-odnoklassniki:before {\n content: \"\\f263\"; }\n\n.fa-odnoklassniki-square:before {\n content: \"\\f264\"; }\n\n.fa-oil-can:before {\n content: \"\\f613\"; }\n\n.fa-old-republic:before {\n content: \"\\f510\"; }\n\n.fa-om:before {\n content: \"\\f679\"; }\n\n.fa-opencart:before {\n content: \"\\f23d\"; }\n\n.fa-openid:before {\n content: \"\\f19b\"; }\n\n.fa-opera:before {\n content: \"\\f26a\"; }\n\n.fa-optin-monster:before {\n content: \"\\f23c\"; }\n\n.fa-osi:before {\n content: \"\\f41a\"; }\n\n.fa-otter:before {\n content: \"\\f700\"; }\n\n.fa-outdent:before {\n content: \"\\f03b\"; }\n\n.fa-page4:before {\n content: \"\\f3d7\"; }\n\n.fa-pagelines:before {\n content: \"\\f18c\"; }\n\n.fa-pager:before {\n content: \"\\f815\"; }\n\n.fa-paint-brush:before {\n content: \"\\f1fc\"; }\n\n.fa-paint-roller:before {\n content: \"\\f5aa\"; }\n\n.fa-palette:before {\n content: \"\\f53f\"; }\n\n.fa-palfed:before {\n content: \"\\f3d8\"; }\n\n.fa-pallet:before {\n content: \"\\f482\"; }\n\n.fa-paper-plane:before {\n content: \"\\f1d8\"; }\n\n.fa-paperclip:before {\n content: \"\\f0c6\"; }\n\n.fa-parachute-box:before {\n content: \"\\f4cd\"; }\n\n.fa-paragraph:before {\n content: \"\\f1dd\"; }\n\n.fa-parking:before {\n content: \"\\f540\"; }\n\n.fa-passport:before {\n content: \"\\f5ab\"; }\n\n.fa-pastafarianism:before {\n content: \"\\f67b\"; }\n\n.fa-paste:before {\n content: \"\\f0ea\"; }\n\n.fa-patreon:before {\n content: \"\\f3d9\"; }\n\n.fa-pause:before {\n content: \"\\f04c\"; }\n\n.fa-pause-circle:before {\n content: \"\\f28b\"; }\n\n.fa-paw:before {\n content: \"\\f1b0\"; }\n\n.fa-paypal:before {\n content: \"\\f1ed\"; }\n\n.fa-peace:before {\n content: \"\\f67c\"; }\n\n.fa-pen:before {\n content: \"\\f304\"; }\n\n.fa-pen-alt:before {\n content: \"\\f305\"; }\n\n.fa-pen-fancy:before {\n content: \"\\f5ac\"; }\n\n.fa-pen-nib:before {\n content: \"\\f5ad\"; }\n\n.fa-pen-square:before {\n content: \"\\f14b\"; }\n\n.fa-pencil-alt:before {\n content: \"\\f303\"; }\n\n.fa-pencil-ruler:before {\n content: \"\\f5ae\"; }\n\n.fa-penny-arcade:before {\n content: \"\\f704\"; }\n\n.fa-people-carry:before {\n content: \"\\f4ce\"; }\n\n.fa-pepper-hot:before {\n content: \"\\f816\"; }\n\n.fa-percent:before {\n content: \"\\f295\"; }\n\n.fa-percentage:before {\n content: \"\\f541\"; }\n\n.fa-periscope:before {\n content: \"\\f3da\"; }\n\n.fa-person-booth:before {\n content: \"\\f756\"; }\n\n.fa-phabricator:before {\n content: \"\\f3db\"; }\n\n.fa-phoenix-framework:before {\n content: \"\\f3dc\"; }\n\n.fa-phoenix-squadron:before {\n content: \"\\f511\"; }\n\n.fa-phone:before {\n content: \"\\f095\"; }\n\n.fa-phone-slash:before {\n content: \"\\f3dd\"; }\n\n.fa-phone-square:before {\n content: \"\\f098\"; }\n\n.fa-phone-volume:before {\n content: \"\\f2a0\"; }\n\n.fa-php:before {\n content: \"\\f457\"; }\n\n.fa-pied-piper:before {\n content: \"\\f2ae\"; }\n\n.fa-pied-piper-alt:before {\n content: \"\\f1a8\"; }\n\n.fa-pied-piper-hat:before {\n content: \"\\f4e5\"; }\n\n.fa-pied-piper-pp:before {\n content: \"\\f1a7\"; }\n\n.fa-piggy-bank:before {\n content: \"\\f4d3\"; }\n\n.fa-pills:before {\n content: \"\\f484\"; }\n\n.fa-pinterest:before {\n content: \"\\f0d2\"; }\n\n.fa-pinterest-p:before {\n content: \"\\f231\"; }\n\n.fa-pinterest-square:before {\n content: \"\\f0d3\"; }\n\n.fa-pizza-slice:before {\n content: \"\\f818\"; }\n\n.fa-place-of-worship:before {\n content: \"\\f67f\"; }\n\n.fa-plane:before {\n content: \"\\f072\"; }\n\n.fa-plane-arrival:before {\n content: \"\\f5af\"; }\n\n.fa-plane-departure:before {\n content: \"\\f5b0\"; }\n\n.fa-play:before {\n content: \"\\f04b\"; }\n\n.fa-play-circle:before {\n content: \"\\f144\"; }\n\n.fa-playstation:before {\n content: \"\\f3df\"; }\n\n.fa-plug:before {\n content: \"\\f1e6\"; }\n\n.fa-plus:before {\n content: \"\\f067\"; }\n\n.fa-plus-circle:before {\n content: \"\\f055\"; }\n\n.fa-plus-square:before {\n content: \"\\f0fe\"; }\n\n.fa-podcast:before {\n content: \"\\f2ce\"; }\n\n.fa-poll:before {\n content: \"\\f681\"; }\n\n.fa-poll-h:before {\n content: \"\\f682\"; }\n\n.fa-poo:before {\n content: \"\\f2fe\"; }\n\n.fa-poo-storm:before {\n content: \"\\f75a\"; }\n\n.fa-poop:before {\n content: \"\\f619\"; }\n\n.fa-portrait:before {\n content: \"\\f3e0\"; }\n\n.fa-pound-sign:before {\n content: \"\\f154\"; }\n\n.fa-power-off:before {\n content: \"\\f011\"; }\n\n.fa-pray:before {\n content: \"\\f683\"; }\n\n.fa-praying-hands:before {\n content: \"\\f684\"; }\n\n.fa-prescription:before {\n content: \"\\f5b1\"; }\n\n.fa-prescription-bottle:before {\n content: \"\\f485\"; }\n\n.fa-prescription-bottle-alt:before {\n content: \"\\f486\"; }\n\n.fa-print:before {\n content: \"\\f02f\"; }\n\n.fa-procedures:before {\n content: \"\\f487\"; }\n\n.fa-product-hunt:before {\n content: \"\\f288\"; }\n\n.fa-project-diagram:before {\n content: \"\\f542\"; }\n\n.fa-pushed:before {\n content: \"\\f3e1\"; }\n\n.fa-puzzle-piece:before {\n content: \"\\f12e\"; }\n\n.fa-python:before {\n content: \"\\f3e2\"; }\n\n.fa-qq:before {\n content: \"\\f1d6\"; }\n\n.fa-qrcode:before {\n content: \"\\f029\"; }\n\n.fa-question:before {\n content: \"\\f128\"; }\n\n.fa-question-circle:before {\n content: \"\\f059\"; }\n\n.fa-quidditch:before {\n content: \"\\f458\"; }\n\n.fa-quinscape:before {\n content: \"\\f459\"; }\n\n.fa-quora:before {\n content: \"\\f2c4\"; }\n\n.fa-quote-left:before {\n content: \"\\f10d\"; }\n\n.fa-quote-right:before {\n content: \"\\f10e\"; }\n\n.fa-quran:before {\n content: \"\\f687\"; }\n\n.fa-r-project:before {\n content: \"\\f4f7\"; }\n\n.fa-radiation:before {\n content: \"\\f7b9\"; }\n\n.fa-radiation-alt:before {\n content: \"\\f7ba\"; }\n\n.fa-rainbow:before {\n content: \"\\f75b\"; }\n\n.fa-random:before {\n content: \"\\f074\"; }\n\n.fa-raspberry-pi:before {\n content: \"\\f7bb\"; }\n\n.fa-ravelry:before {\n content: \"\\f2d9\"; }\n\n.fa-react:before {\n content: \"\\f41b\"; }\n\n.fa-reacteurope:before {\n content: \"\\f75d\"; }\n\n.fa-readme:before {\n content: \"\\f4d5\"; }\n\n.fa-rebel:before {\n content: \"\\f1d0\"; }\n\n.fa-receipt:before {\n content: \"\\f543\"; }\n\n.fa-recycle:before {\n content: \"\\f1b8\"; }\n\n.fa-red-river:before {\n content: \"\\f3e3\"; }\n\n.fa-reddit:before {\n content: \"\\f1a1\"; }\n\n.fa-reddit-alien:before {\n content: \"\\f281\"; }\n\n.fa-reddit-square:before {\n content: \"\\f1a2\"; }\n\n.fa-redhat:before {\n content: \"\\f7bc\"; }\n\n.fa-redo:before {\n content: \"\\f01e\"; }\n\n.fa-redo-alt:before {\n content: \"\\f2f9\"; }\n\n.fa-registered:before {\n content: \"\\f25d\"; }\n\n.fa-renren:before {\n content: \"\\f18b\"; }\n\n.fa-reply:before {\n content: \"\\f3e5\"; }\n\n.fa-reply-all:before {\n content: \"\\f122\"; }\n\n.fa-replyd:before {\n content: \"\\f3e6\"; }\n\n.fa-republican:before {\n content: \"\\f75e\"; }\n\n.fa-researchgate:before {\n content: \"\\f4f8\"; }\n\n.fa-resolving:before {\n content: \"\\f3e7\"; }\n\n.fa-restroom:before {\n content: \"\\f7bd\"; }\n\n.fa-retweet:before {\n content: \"\\f079\"; }\n\n.fa-rev:before {\n content: \"\\f5b2\"; }\n\n.fa-ribbon:before {\n content: \"\\f4d6\"; }\n\n.fa-ring:before {\n content: \"\\f70b\"; }\n\n.fa-road:before {\n content: \"\\f018\"; }\n\n.fa-robot:before {\n content: \"\\f544\"; }\n\n.fa-rocket:before {\n content: \"\\f135\"; }\n\n.fa-rocketchat:before {\n content: \"\\f3e8\"; }\n\n.fa-rockrms:before {\n content: \"\\f3e9\"; }\n\n.fa-route:before {\n content: \"\\f4d7\"; }\n\n.fa-rss:before {\n content: \"\\f09e\"; }\n\n.fa-rss-square:before {\n content: \"\\f143\"; }\n\n.fa-ruble-sign:before {\n content: \"\\f158\"; }\n\n.fa-ruler:before {\n content: \"\\f545\"; }\n\n.fa-ruler-combined:before {\n content: \"\\f546\"; }\n\n.fa-ruler-horizontal:before {\n content: \"\\f547\"; }\n\n.fa-ruler-vertical:before {\n content: \"\\f548\"; }\n\n.fa-running:before {\n content: \"\\f70c\"; }\n\n.fa-rupee-sign:before {\n content: \"\\f156\"; }\n\n.fa-sad-cry:before {\n content: \"\\f5b3\"; }\n\n.fa-sad-tear:before {\n content: \"\\f5b4\"; }\n\n.fa-safari:before {\n content: \"\\f267\"; }\n\n.fa-salesforce:before {\n content: \"\\f83b\"; }\n\n.fa-sass:before {\n content: \"\\f41e\"; }\n\n.fa-satellite:before {\n content: \"\\f7bf\"; }\n\n.fa-satellite-dish:before {\n content: \"\\f7c0\"; }\n\n.fa-save:before {\n content: \"\\f0c7\"; }\n\n.fa-schlix:before {\n content: \"\\f3ea\"; }\n\n.fa-school:before {\n content: \"\\f549\"; }\n\n.fa-screwdriver:before {\n content: \"\\f54a\"; }\n\n.fa-scribd:before {\n content: \"\\f28a\"; }\n\n.fa-scroll:before {\n content: \"\\f70e\"; }\n\n.fa-sd-card:before {\n content: \"\\f7c2\"; }\n\n.fa-search:before {\n content: \"\\f002\"; }\n\n.fa-search-dollar:before {\n content: \"\\f688\"; }\n\n.fa-search-location:before {\n content: \"\\f689\"; }\n\n.fa-search-minus:before {\n content: \"\\f010\"; }\n\n.fa-search-plus:before {\n content: \"\\f00e\"; }\n\n.fa-searchengin:before {\n content: \"\\f3eb\"; }\n\n.fa-seedling:before {\n content: \"\\f4d8\"; }\n\n.fa-sellcast:before {\n content: \"\\f2da\"; }\n\n.fa-sellsy:before {\n content: \"\\f213\"; }\n\n.fa-server:before {\n content: \"\\f233\"; }\n\n.fa-servicestack:before {\n content: \"\\f3ec\"; }\n\n.fa-shapes:before {\n content: \"\\f61f\"; }\n\n.fa-share:before {\n content: \"\\f064\"; }\n\n.fa-share-alt:before {\n content: \"\\f1e0\"; }\n\n.fa-share-alt-square:before {\n content: \"\\f1e1\"; }\n\n.fa-share-square:before {\n content: \"\\f14d\"; }\n\n.fa-shekel-sign:before {\n content: \"\\f20b\"; }\n\n.fa-shield-alt:before {\n content: \"\\f3ed\"; }\n\n.fa-ship:before {\n content: \"\\f21a\"; }\n\n.fa-shipping-fast:before {\n content: \"\\f48b\"; }\n\n.fa-shirtsinbulk:before {\n content: \"\\f214\"; }\n\n.fa-shoe-prints:before {\n content: \"\\f54b\"; }\n\n.fa-shopping-bag:before {\n content: \"\\f290\"; }\n\n.fa-shopping-basket:before {\n content: \"\\f291\"; }\n\n.fa-shopping-cart:before {\n content: \"\\f07a\"; }\n\n.fa-shopware:before {\n content: \"\\f5b5\"; }\n\n.fa-shower:before {\n content: \"\\f2cc\"; }\n\n.fa-shuttle-van:before {\n content: \"\\f5b6\"; }\n\n.fa-sign:before {\n content: \"\\f4d9\"; }\n\n.fa-sign-in-alt:before {\n content: \"\\f2f6\"; }\n\n.fa-sign-language:before {\n content: \"\\f2a7\"; }\n\n.fa-sign-out-alt:before {\n content: \"\\f2f5\"; }\n\n.fa-signal:before {\n content: \"\\f012\"; }\n\n.fa-signature:before {\n content: \"\\f5b7\"; }\n\n.fa-sim-card:before {\n content: \"\\f7c4\"; }\n\n.fa-simplybuilt:before {\n content: \"\\f215\"; }\n\n.fa-sistrix:before {\n content: \"\\f3ee\"; }\n\n.fa-sitemap:before {\n content: \"\\f0e8\"; }\n\n.fa-sith:before {\n content: \"\\f512\"; }\n\n.fa-skating:before {\n content: \"\\f7c5\"; }\n\n.fa-sketch:before {\n content: \"\\f7c6\"; }\n\n.fa-skiing:before {\n content: \"\\f7c9\"; }\n\n.fa-skiing-nordic:before {\n content: \"\\f7ca\"; }\n\n.fa-skull:before {\n content: \"\\f54c\"; }\n\n.fa-skull-crossbones:before {\n content: \"\\f714\"; }\n\n.fa-skyatlas:before {\n content: \"\\f216\"; }\n\n.fa-skype:before {\n content: \"\\f17e\"; }\n\n.fa-slack:before {\n content: \"\\f198\"; }\n\n.fa-slack-hash:before {\n content: \"\\f3ef\"; }\n\n.fa-slash:before {\n content: \"\\f715\"; }\n\n.fa-sleigh:before {\n content: \"\\f7cc\"; }\n\n.fa-sliders-h:before {\n content: \"\\f1de\"; }\n\n.fa-slideshare:before {\n content: \"\\f1e7\"; }\n\n.fa-smile:before {\n content: \"\\f118\"; }\n\n.fa-smile-beam:before {\n content: \"\\f5b8\"; }\n\n.fa-smile-wink:before {\n content: \"\\f4da\"; }\n\n.fa-smog:before {\n content: \"\\f75f\"; }\n\n.fa-smoking:before {\n content: \"\\f48d\"; }\n\n.fa-smoking-ban:before {\n content: \"\\f54d\"; }\n\n.fa-sms:before {\n content: \"\\f7cd\"; }\n\n.fa-snapchat:before {\n content: \"\\f2ab\"; }\n\n.fa-snapchat-ghost:before {\n content: \"\\f2ac\"; }\n\n.fa-snapchat-square:before {\n content: \"\\f2ad\"; }\n\n.fa-snowboarding:before {\n content: \"\\f7ce\"; }\n\n.fa-snowflake:before {\n content: \"\\f2dc\"; }\n\n.fa-snowman:before {\n content: \"\\f7d0\"; }\n\n.fa-snowplow:before {\n content: \"\\f7d2\"; }\n\n.fa-socks:before {\n content: \"\\f696\"; }\n\n.fa-solar-panel:before {\n content: \"\\f5ba\"; }\n\n.fa-sort:before {\n content: \"\\f0dc\"; }\n\n.fa-sort-alpha-down:before {\n content: \"\\f15d\"; }\n\n.fa-sort-alpha-up:before {\n content: \"\\f15e\"; }\n\n.fa-sort-amount-down:before {\n content: \"\\f160\"; }\n\n.fa-sort-amount-up:before {\n content: \"\\f161\"; }\n\n.fa-sort-down:before {\n content: \"\\f0dd\"; }\n\n.fa-sort-numeric-down:before {\n content: \"\\f162\"; }\n\n.fa-sort-numeric-up:before {\n content: \"\\f163\"; }\n\n.fa-sort-up:before {\n content: \"\\f0de\"; }\n\n.fa-soundcloud:before {\n content: \"\\f1be\"; }\n\n.fa-sourcetree:before {\n content: \"\\f7d3\"; }\n\n.fa-spa:before {\n content: \"\\f5bb\"; }\n\n.fa-space-shuttle:before {\n content: \"\\f197\"; }\n\n.fa-speakap:before {\n content: \"\\f3f3\"; }\n\n.fa-speaker-deck:before {\n content: \"\\f83c\"; }\n\n.fa-spider:before {\n content: \"\\f717\"; }\n\n.fa-spinner:before {\n content: \"\\f110\"; }\n\n.fa-splotch:before {\n content: \"\\f5bc\"; }\n\n.fa-spotify:before {\n content: \"\\f1bc\"; }\n\n.fa-spray-can:before {\n content: \"\\f5bd\"; }\n\n.fa-square:before {\n content: \"\\f0c8\"; }\n\n.fa-square-full:before {\n content: \"\\f45c\"; }\n\n.fa-square-root-alt:before {\n content: \"\\f698\"; }\n\n.fa-squarespace:before {\n content: \"\\f5be\"; }\n\n.fa-stack-exchange:before {\n content: \"\\f18d\"; }\n\n.fa-stack-overflow:before {\n content: \"\\f16c\"; }\n\n.fa-stackpath:before {\n content: \"\\f842\"; }\n\n.fa-stamp:before {\n content: \"\\f5bf\"; }\n\n.fa-star:before {\n content: \"\\f005\"; }\n\n.fa-star-and-crescent:before {\n content: \"\\f699\"; }\n\n.fa-star-half:before {\n content: \"\\f089\"; }\n\n.fa-star-half-alt:before {\n content: \"\\f5c0\"; }\n\n.fa-star-of-david:before {\n content: \"\\f69a\"; }\n\n.fa-star-of-life:before {\n content: \"\\f621\"; }\n\n.fa-staylinked:before {\n content: \"\\f3f5\"; }\n\n.fa-steam:before {\n content: \"\\f1b6\"; }\n\n.fa-steam-square:before {\n content: \"\\f1b7\"; }\n\n.fa-steam-symbol:before {\n content: \"\\f3f6\"; }\n\n.fa-step-backward:before {\n content: \"\\f048\"; }\n\n.fa-step-forward:before {\n content: \"\\f051\"; }\n\n.fa-stethoscope:before {\n content: \"\\f0f1\"; }\n\n.fa-sticker-mule:before {\n content: \"\\f3f7\"; }\n\n.fa-sticky-note:before {\n content: \"\\f249\"; }\n\n.fa-stop:before {\n content: \"\\f04d\"; }\n\n.fa-stop-circle:before {\n content: \"\\f28d\"; }\n\n.fa-stopwatch:before {\n content: \"\\f2f2\"; }\n\n.fa-store:before {\n content: \"\\f54e\"; }\n\n.fa-store-alt:before {\n content: \"\\f54f\"; }\n\n.fa-strava:before {\n content: \"\\f428\"; }\n\n.fa-stream:before {\n content: \"\\f550\"; }\n\n.fa-street-view:before {\n content: \"\\f21d\"; }\n\n.fa-strikethrough:before {\n content: \"\\f0cc\"; }\n\n.fa-stripe:before {\n content: \"\\f429\"; }\n\n.fa-stripe-s:before {\n content: \"\\f42a\"; }\n\n.fa-stroopwafel:before {\n content: \"\\f551\"; }\n\n.fa-studiovinari:before {\n content: \"\\f3f8\"; }\n\n.fa-stumbleupon:before {\n content: \"\\f1a4\"; }\n\n.fa-stumbleupon-circle:before {\n content: \"\\f1a3\"; }\n\n.fa-subscript:before {\n content: \"\\f12c\"; }\n\n.fa-subway:before {\n content: \"\\f239\"; }\n\n.fa-suitcase:before {\n content: \"\\f0f2\"; }\n\n.fa-suitcase-rolling:before {\n content: \"\\f5c1\"; }\n\n.fa-sun:before {\n content: \"\\f185\"; }\n\n.fa-superpowers:before {\n content: \"\\f2dd\"; }\n\n.fa-superscript:before {\n content: \"\\f12b\"; }\n\n.fa-supple:before {\n content: \"\\f3f9\"; }\n\n.fa-surprise:before {\n content: \"\\f5c2\"; }\n\n.fa-suse:before {\n content: \"\\f7d6\"; }\n\n.fa-swatchbook:before {\n content: \"\\f5c3\"; }\n\n.fa-swimmer:before {\n content: \"\\f5c4\"; }\n\n.fa-swimming-pool:before {\n content: \"\\f5c5\"; }\n\n.fa-symfony:before {\n content: \"\\f83d\"; }\n\n.fa-synagogue:before {\n content: \"\\f69b\"; }\n\n.fa-sync:before {\n content: \"\\f021\"; }\n\n.fa-sync-alt:before {\n content: \"\\f2f1\"; }\n\n.fa-syringe:before {\n content: \"\\f48e\"; }\n\n.fa-table:before {\n content: \"\\f0ce\"; }\n\n.fa-table-tennis:before {\n content: \"\\f45d\"; }\n\n.fa-tablet:before {\n content: \"\\f10a\"; }\n\n.fa-tablet-alt:before {\n content: \"\\f3fa\"; }\n\n.fa-tablets:before {\n content: \"\\f490\"; }\n\n.fa-tachometer-alt:before {\n content: \"\\f3fd\"; }\n\n.fa-tag:before {\n content: \"\\f02b\"; }\n\n.fa-tags:before {\n content: \"\\f02c\"; }\n\n.fa-tape:before {\n content: \"\\f4db\"; }\n\n.fa-tasks:before {\n content: \"\\f0ae\"; }\n\n.fa-taxi:before {\n content: \"\\f1ba\"; }\n\n.fa-teamspeak:before {\n content: \"\\f4f9\"; }\n\n.fa-teeth:before {\n content: \"\\f62e\"; }\n\n.fa-teeth-open:before {\n content: \"\\f62f\"; }\n\n.fa-telegram:before {\n content: \"\\f2c6\"; }\n\n.fa-telegram-plane:before {\n content: \"\\f3fe\"; }\n\n.fa-temperature-high:before {\n content: \"\\f769\"; }\n\n.fa-temperature-low:before {\n content: \"\\f76b\"; }\n\n.fa-tencent-weibo:before {\n content: \"\\f1d5\"; }\n\n.fa-tenge:before {\n content: \"\\f7d7\"; }\n\n.fa-terminal:before {\n content: \"\\f120\"; }\n\n.fa-text-height:before {\n content: \"\\f034\"; }\n\n.fa-text-width:before {\n content: \"\\f035\"; }\n\n.fa-th:before {\n content: \"\\f00a\"; }\n\n.fa-th-large:before {\n content: \"\\f009\"; }\n\n.fa-th-list:before {\n content: \"\\f00b\"; }\n\n.fa-the-red-yeti:before {\n content: \"\\f69d\"; }\n\n.fa-theater-masks:before {\n content: \"\\f630\"; }\n\n.fa-themeco:before {\n content: \"\\f5c6\"; }\n\n.fa-themeisle:before {\n content: \"\\f2b2\"; }\n\n.fa-thermometer:before {\n content: \"\\f491\"; }\n\n.fa-thermometer-empty:before {\n content: \"\\f2cb\"; }\n\n.fa-thermometer-full:before {\n content: \"\\f2c7\"; }\n\n.fa-thermometer-half:before {\n content: \"\\f2c9\"; }\n\n.fa-thermometer-quarter:before {\n content: \"\\f2ca\"; }\n\n.fa-thermometer-three-quarters:before {\n content: \"\\f2c8\"; }\n\n.fa-think-peaks:before {\n content: \"\\f731\"; }\n\n.fa-thumbs-down:before {\n content: \"\\f165\"; }\n\n.fa-thumbs-up:before {\n content: \"\\f164\"; }\n\n.fa-thumbtack:before {\n content: \"\\f08d\"; }\n\n.fa-ticket-alt:before {\n content: \"\\f3ff\"; }\n\n.fa-times:before {\n content: \"\\f00d\"; }\n\n.fa-times-circle:before {\n content: \"\\f057\"; }\n\n.fa-tint:before {\n content: \"\\f043\"; }\n\n.fa-tint-slash:before {\n content: \"\\f5c7\"; }\n\n.fa-tired:before {\n content: \"\\f5c8\"; }\n\n.fa-toggle-off:before {\n content: \"\\f204\"; }\n\n.fa-toggle-on:before {\n content: \"\\f205\"; }\n\n.fa-toilet:before {\n content: \"\\f7d8\"; }\n\n.fa-toilet-paper:before {\n content: \"\\f71e\"; }\n\n.fa-toolbox:before {\n content: \"\\f552\"; }\n\n.fa-tools:before {\n content: \"\\f7d9\"; }\n\n.fa-tooth:before {\n content: \"\\f5c9\"; }\n\n.fa-torah:before {\n content: \"\\f6a0\"; }\n\n.fa-torii-gate:before {\n content: \"\\f6a1\"; }\n\n.fa-tractor:before {\n content: \"\\f722\"; }\n\n.fa-trade-federation:before {\n content: \"\\f513\"; }\n\n.fa-trademark:before {\n content: \"\\f25c\"; }\n\n.fa-traffic-light:before {\n content: \"\\f637\"; }\n\n.fa-train:before {\n content: \"\\f238\"; }\n\n.fa-tram:before {\n content: \"\\f7da\"; }\n\n.fa-transgender:before {\n content: \"\\f224\"; }\n\n.fa-transgender-alt:before {\n content: \"\\f225\"; }\n\n.fa-trash:before {\n content: \"\\f1f8\"; }\n\n.fa-trash-alt:before {\n content: \"\\f2ed\"; }\n\n.fa-trash-restore:before {\n content: \"\\f829\"; }\n\n.fa-trash-restore-alt:before {\n content: \"\\f82a\"; }\n\n.fa-tree:before {\n content: \"\\f1bb\"; }\n\n.fa-trello:before {\n content: \"\\f181\"; }\n\n.fa-tripadvisor:before {\n content: \"\\f262\"; }\n\n.fa-trophy:before {\n content: \"\\f091\"; }\n\n.fa-truck:before {\n content: \"\\f0d1\"; }\n\n.fa-truck-loading:before {\n content: \"\\f4de\"; }\n\n.fa-truck-monster:before {\n content: \"\\f63b\"; }\n\n.fa-truck-moving:before {\n content: \"\\f4df\"; }\n\n.fa-truck-pickup:before {\n content: \"\\f63c\"; }\n\n.fa-tshirt:before {\n content: \"\\f553\"; }\n\n.fa-tty:before {\n content: \"\\f1e4\"; }\n\n.fa-tumblr:before {\n content: \"\\f173\"; }\n\n.fa-tumblr-square:before {\n content: \"\\f174\"; }\n\n.fa-tv:before {\n content: \"\\f26c\"; }\n\n.fa-twitch:before {\n content: \"\\f1e8\"; }\n\n.fa-twitter:before {\n content: \"\\f099\"; }\n\n.fa-twitter-square:before {\n content: \"\\f081\"; }\n\n.fa-typo3:before {\n content: \"\\f42b\"; }\n\n.fa-uber:before {\n content: \"\\f402\"; }\n\n.fa-ubuntu:before {\n content: \"\\f7df\"; }\n\n.fa-uikit:before {\n content: \"\\f403\"; }\n\n.fa-umbrella:before {\n content: \"\\f0e9\"; }\n\n.fa-umbrella-beach:before {\n content: \"\\f5ca\"; }\n\n.fa-underline:before {\n content: \"\\f0cd\"; }\n\n.fa-undo:before {\n content: \"\\f0e2\"; }\n\n.fa-undo-alt:before {\n content: \"\\f2ea\"; }\n\n.fa-uniregistry:before {\n content: \"\\f404\"; }\n\n.fa-universal-access:before {\n content: \"\\f29a\"; }\n\n.fa-university:before {\n content: \"\\f19c\"; }\n\n.fa-unlink:before {\n content: \"\\f127\"; }\n\n.fa-unlock:before {\n content: \"\\f09c\"; }\n\n.fa-unlock-alt:before {\n content: \"\\f13e\"; }\n\n.fa-untappd:before {\n content: \"\\f405\"; }\n\n.fa-upload:before {\n content: \"\\f093\"; }\n\n.fa-ups:before {\n content: \"\\f7e0\"; }\n\n.fa-usb:before {\n content: \"\\f287\"; }\n\n.fa-user:before {\n content: \"\\f007\"; }\n\n.fa-user-alt:before {\n content: \"\\f406\"; }\n\n.fa-user-alt-slash:before {\n content: \"\\f4fa\"; }\n\n.fa-user-astronaut:before {\n content: \"\\f4fb\"; }\n\n.fa-user-check:before {\n content: \"\\f4fc\"; }\n\n.fa-user-circle:before {\n content: \"\\f2bd\"; }\n\n.fa-user-clock:before {\n content: \"\\f4fd\"; }\n\n.fa-user-cog:before {\n content: \"\\f4fe\"; }\n\n.fa-user-edit:before {\n content: \"\\f4ff\"; }\n\n.fa-user-friends:before {\n content: \"\\f500\"; }\n\n.fa-user-graduate:before {\n content: \"\\f501\"; }\n\n.fa-user-injured:before {\n content: \"\\f728\"; }\n\n.fa-user-lock:before {\n content: \"\\f502\"; }\n\n.fa-user-md:before {\n content: \"\\f0f0\"; }\n\n.fa-user-minus:before {\n content: \"\\f503\"; }\n\n.fa-user-ninja:before {\n content: \"\\f504\"; }\n\n.fa-user-nurse:before {\n content: \"\\f82f\"; }\n\n.fa-user-plus:before {\n content: \"\\f234\"; }\n\n.fa-user-secret:before {\n content: \"\\f21b\"; }\n\n.fa-user-shield:before {\n content: \"\\f505\"; }\n\n.fa-user-slash:before {\n content: \"\\f506\"; }\n\n.fa-user-tag:before {\n content: \"\\f507\"; }\n\n.fa-user-tie:before {\n content: \"\\f508\"; }\n\n.fa-user-times:before {\n content: \"\\f235\"; }\n\n.fa-users:before {\n content: \"\\f0c0\"; }\n\n.fa-users-cog:before {\n content: \"\\f509\"; }\n\n.fa-usps:before {\n content: \"\\f7e1\"; }\n\n.fa-ussunnah:before {\n content: \"\\f407\"; }\n\n.fa-utensil-spoon:before {\n content: \"\\f2e5\"; }\n\n.fa-utensils:before {\n content: \"\\f2e7\"; }\n\n.fa-vaadin:before {\n content: \"\\f408\"; }\n\n.fa-vector-square:before {\n content: \"\\f5cb\"; }\n\n.fa-venus:before {\n content: \"\\f221\"; }\n\n.fa-venus-double:before {\n content: \"\\f226\"; }\n\n.fa-venus-mars:before {\n content: \"\\f228\"; }\n\n.fa-viacoin:before {\n content: \"\\f237\"; }\n\n.fa-viadeo:before {\n content: \"\\f2a9\"; }\n\n.fa-viadeo-square:before {\n content: \"\\f2aa\"; }\n\n.fa-vial:before {\n content: \"\\f492\"; }\n\n.fa-vials:before {\n content: \"\\f493\"; }\n\n.fa-viber:before {\n content: \"\\f409\"; }\n\n.fa-video:before {\n content: \"\\f03d\"; }\n\n.fa-video-slash:before {\n content: \"\\f4e2\"; }\n\n.fa-vihara:before {\n content: \"\\f6a7\"; }\n\n.fa-vimeo:before {\n content: \"\\f40a\"; }\n\n.fa-vimeo-square:before {\n content: \"\\f194\"; }\n\n.fa-vimeo-v:before {\n content: \"\\f27d\"; }\n\n.fa-vine:before {\n content: \"\\f1ca\"; }\n\n.fa-vk:before {\n content: \"\\f189\"; }\n\n.fa-vnv:before {\n content: \"\\f40b\"; }\n\n.fa-volleyball-ball:before {\n content: \"\\f45f\"; }\n\n.fa-volume-down:before {\n content: \"\\f027\"; }\n\n.fa-volume-mute:before {\n content: \"\\f6a9\"; }\n\n.fa-volume-off:before {\n content: \"\\f026\"; }\n\n.fa-volume-up:before {\n content: \"\\f028\"; }\n\n.fa-vote-yea:before {\n content: \"\\f772\"; }\n\n.fa-vr-cardboard:before {\n content: \"\\f729\"; }\n\n.fa-vuejs:before {\n content: \"\\f41f\"; }\n\n.fa-walking:before {\n content: \"\\f554\"; }\n\n.fa-wallet:before {\n content: \"\\f555\"; }\n\n.fa-warehouse:before {\n content: \"\\f494\"; }\n\n.fa-water:before {\n content: \"\\f773\"; }\n\n.fa-wave-square:before {\n content: \"\\f83e\"; }\n\n.fa-waze:before {\n content: \"\\f83f\"; }\n\n.fa-weebly:before {\n content: \"\\f5cc\"; }\n\n.fa-weibo:before {\n content: \"\\f18a\"; }\n\n.fa-weight:before {\n content: \"\\f496\"; }\n\n.fa-weight-hanging:before {\n content: \"\\f5cd\"; }\n\n.fa-weixin:before {\n content: \"\\f1d7\"; }\n\n.fa-whatsapp:before {\n content: \"\\f232\"; }\n\n.fa-whatsapp-square:before {\n content: \"\\f40c\"; }\n\n.fa-wheelchair:before {\n content: \"\\f193\"; }\n\n.fa-whmcs:before {\n content: \"\\f40d\"; }\n\n.fa-wifi:before {\n content: \"\\f1eb\"; }\n\n.fa-wikipedia-w:before {\n content: \"\\f266\"; }\n\n.fa-wind:before {\n content: \"\\f72e\"; }\n\n.fa-window-close:before {\n content: \"\\f410\"; }\n\n.fa-window-maximize:before {\n content: \"\\f2d0\"; }\n\n.fa-window-minimize:before {\n content: \"\\f2d1\"; }\n\n.fa-window-restore:before {\n content: \"\\f2d2\"; }\n\n.fa-windows:before {\n content: \"\\f17a\"; }\n\n.fa-wine-bottle:before {\n content: \"\\f72f\"; }\n\n.fa-wine-glass:before {\n content: \"\\f4e3\"; }\n\n.fa-wine-glass-alt:before {\n content: \"\\f5ce\"; }\n\n.fa-wix:before {\n content: \"\\f5cf\"; }\n\n.fa-wizards-of-the-coast:before {\n content: \"\\f730\"; }\n\n.fa-wolf-pack-battalion:before {\n content: \"\\f514\"; }\n\n.fa-won-sign:before {\n content: \"\\f159\"; }\n\n.fa-wordpress:before {\n content: \"\\f19a\"; }\n\n.fa-wordpress-simple:before {\n content: \"\\f411\"; }\n\n.fa-wpbeginner:before {\n content: \"\\f297\"; }\n\n.fa-wpexplorer:before {\n content: \"\\f2de\"; }\n\n.fa-wpforms:before {\n content: \"\\f298\"; }\n\n.fa-wpressr:before {\n content: \"\\f3e4\"; }\n\n.fa-wrench:before {\n content: \"\\f0ad\"; }\n\n.fa-x-ray:before {\n content: \"\\f497\"; }\n\n.fa-xbox:before {\n content: \"\\f412\"; }\n\n.fa-xing:before {\n content: \"\\f168\"; }\n\n.fa-xing-square:before {\n content: \"\\f169\"; }\n\n.fa-y-combinator:before {\n content: \"\\f23b\"; }\n\n.fa-yahoo:before {\n content: \"\\f19e\"; }\n\n.fa-yammer:before {\n content: \"\\f840\"; }\n\n.fa-yandex:before {\n content: \"\\f413\"; }\n\n.fa-yandex-international:before {\n content: \"\\f414\"; }\n\n.fa-yarn:before {\n content: \"\\f7e3\"; }\n\n.fa-yelp:before {\n content: \"\\f1e9\"; }\n\n.fa-yen-sign:before {\n content: \"\\f157\"; }\n\n.fa-yin-yang:before {\n content: \"\\f6ad\"; }\n\n.fa-yoast:before {\n content: \"\\f2b1\"; }\n\n.fa-youtube:before {\n content: \"\\f167\"; }\n\n.fa-youtube-square:before {\n content: \"\\f431\"; }\n\n.fa-zhihu:before {\n content: \"\\f63f\"; }\n\n.sr-only {\n border: 0;\n clip: rect(0, 0, 0, 0);\n height: 1px;\n margin: -1px;\n overflow: hidden;\n padding: 0;\n position: absolute;\n width: 1px; }\n\n.sr-only-focusable:active, .sr-only-focusable:focus {\n clip: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n position: static;\n width: auto; }\n"},"$:/plugins/TheDiveO/FontAwesome/styles/tiddlylinks/system":{"title":"$:/plugins/TheDiveO/FontAwesome/styles/tiddlylinks/system","created":"20171230212437805","modified":"20180328191223958","tags":"$:/tags/Stylesheet","type":"text/vnd.tiddlywiki","text":"\\rules only filteredtranscludeinline transcludeinline macrodef macrocallinline html\n\n<$set name=\"cfg\" value=<<fa5-cfgpath \"decorate-syslinks\">> >\n<$list filter=<<fa5-cfgfilterexpr>> >\n\n/* system tiddler titles starting with $:/... */\n.tc-tiddler-body a.tc-tiddlylink[href^=\"#%24%3A%2F\"]:before,\n.tc-tiddler-preview-preview a.tc-tiddlylink[href^=\"#%24%3A%2F\"]:before {\n <<fa-plugin-font-solid>>\n font-size: 80%;\n content: '\\f013\\202f';\n display: inline-block;\n}\n\n</$list>\n</$set>"},"$:/plugins/TheDiveO/FontAwesome/ui/ControlPanel/FontAwesome":{"title":"$:/plugins/TheDiveO/FontAwesome/ui/ControlPanel/FontAwesome","caption":"Font Awesome","created":"20180328182555066","modified":"20180328190604063","tags":"$:/tags/ControlPanel","type":"text/vnd.tiddlywiki","text":"Customize the Font Awesome 5 plugin.\n\n<$checkbox tiddler=<<fa5-cfgpath \"decorate-syslinks\">> field=\"text\" checked=\"yes\" unchecked=\"no\" default=\"yes\" > decorate system links: [[$:/ControlPanel]]</$checkbox>\n\n<$checkbox tiddler=<<fa5-cfgpath \"decorate-extlinks\">> field=\"text\" checked=\"yes\" unchecked=\"no\" default=\"yes\" > decorate external links: [[TiddlyWiki|http://tiddlywiki.com]] [[Wikipedia|https://en.wikipedia.org/wiki/TiddlyWiki]]</$checkbox>\n\n<$checkbox tiddler=<<fa5-cfgpath \"decorate-extdoclinks\">> field=\"text\" checked=\"yes\" unchecked=\"no\" default=\"yes\" > decorate external document links: https://example.org/document.pdf</$checkbox>\n\n<$checkbox tiddler=<<fa5-cfgpath \"decorate-wk-extlinks\">> field=\"text\" checked=\"yes\" unchecked=\"no\" default=\"yes\" > decorate external well-known links: http://github.com http://en.wikipedia.org</$checkbox>"}}}
{"tiddlers":{"$:/plugins/TheDiveO/IPlayerInspiredVideojsSkin/styles/skin.css":{"text":"/* automatically included from npm package `videojs-iplayer-skin-1` */\r\n/*!\r\n * videojs-iplayer-skin-1\r\n * A Video.JS skin modelled on the new iPlayer theme.\r\n * \r\n * @author Vijay Dubb\r\n * @version 1.0.0\r\n * Copyright 2017. MIT licensed.\r\n */\r\n\r\n.video-js .vjs-loading-spinner,\r\n.vjs-default-skin .vjs-loading-spinner {\r\n border-color: #bb1919;\r\n}\r\n.video-js .vjs-loading-spinner:before, .video-js .vjs-loading-spinner:after,\r\n.vjs-default-skin .vjs-loading-spinner:before,\r\n.vjs-default-skin .vjs-loading-spinner:after {\r\n border-color: #bb1919;\r\n}\r\n.video-js.vjs-paused .vjs-tech,\r\n.video-js.vjs-paused .vjs-big-play-button,\r\n.vjs-default-skin.vjs-paused .vjs-tech,\r\n.vjs-default-skin.vjs-paused .vjs-big-play-button {\r\n z-index: 2;\r\n}\r\n.video-js.vjs-paused .vjs-control-bar,\r\n.vjs-default-skin.vjs-paused .vjs-control-bar {\r\n z-index: -1;\r\n}\r\n.video-js.vjs-has-started .vjs-tech,\r\n.video-js.vjs-has-started .vjs-big-play-button,\r\n.vjs-default-skin.vjs-has-started .vjs-tech,\r\n.vjs-default-skin.vjs-has-started .vjs-big-play-button {\r\n z-index: 0;\r\n}\r\n.video-js.vjs-has-started .vjs-control-bar,\r\n.vjs-default-skin.vjs-has-started .vjs-control-bar {\r\n z-index: 2;\r\n}\r\n.video-js .vjs-menu,\r\n.vjs-default-skin .vjs-menu {\r\n bottom: 14px;\r\n}\r\n.video-js .vjs-big-play-button,\r\n.vjs-default-skin .vjs-big-play-button {\r\n background-color: rgba(0, 0, 0, 0.5);\r\n position: absolute;\r\n margin: 0;\r\n border-radius: 0;\r\n border: none;\r\n width: 85px;\r\n height: 85px;\r\n bottom: 0;\r\n left: 0;\r\n top: auto;\r\n box-shadow: none;\r\n transition: background-color .5s ease;\r\n}\r\n.video-js .vjs-big-play-button .vjs-icon-placeholder:hover, .video-js .vjs-big-play-button .vjs-icon-placeholder:focus,\r\n.vjs-default-skin .vjs-big-play-button .vjs-icon-placeholder:hover,\r\n.vjs-default-skin .vjs-big-play-button .vjs-icon-placeholder:focus {\r\n background-color: #bb1919;\r\n}\r\n.video-js .vjs-big-play-button .vjs-icon-placeholder:before,\r\n.vjs-default-skin .vjs-big-play-button .vjs-icon-placeholder:before {\r\n font-size: 60px;\r\n height: auto;\r\n padding: 0;\r\n margin: 0;\r\n line-height: 85px;\r\n}\r\n.video-js:hover .vjs-big-play-button,\r\n.video-js:hover .vjs-big-play-button:focus, .video-js:focus .vjs-big-play-button,\r\n.video-js:focus .vjs-big-play-button:focus,\r\n.vjs-default-skin:hover .vjs-big-play-button,\r\n.vjs-default-skin:hover .vjs-big-play-button:focus,\r\n.vjs-default-skin:focus .vjs-big-play-button,\r\n.vjs-default-skin:focus .vjs-big-play-button:focus {\r\n border-color: transparent;\r\n box-shadow: none;\r\n background-color: #bb1919;\r\n}\r\n.video-js .vjs-load-progress,\r\n.vjs-default-skin .vjs-load-progress {\r\n background: #e0e0e0;\r\n}\r\n.video-js .vjs-progress-holder .vjs-play-progress,\r\n.video-js .vjs-progress-holder .vjs-load-progress,\r\n.video-js .vjs-progress-holder .vjs-load-progress div,\r\n.vjs-default-skin .vjs-progress-holder .vjs-play-progress,\r\n.vjs-default-skin .vjs-progress-holder .vjs-load-progress,\r\n.vjs-default-skin .vjs-progress-holder .vjs-load-progress div {\r\n height: 6px;\r\n line-height: 44px;\r\n}\r\n.video-js .vjs-volume-level,\r\n.video-js .vjs-play-progress,\r\n.vjs-default-skin .vjs-volume-level,\r\n.vjs-default-skin .vjs-play-progress {\r\n background-color: #bb1919;\r\n}\r\n.video-js .vjs-volume-level:before,\r\n.video-js .vjs-play-progress:before,\r\n.vjs-default-skin .vjs-volume-level:before,\r\n.vjs-default-skin .vjs-play-progress:before {\r\n right: -8px;\r\n font-size: 0.9em;\r\n height: 14px;\r\n width: 9px;\r\n background: #FFFFFF;\r\n padding: 0;\r\n margin: 0;\r\n position: absolute;\r\n top: 50%;\r\n -webkit-transform: translate(-50%, -50%);\r\n -ms-transform: translate(-50%, -50%);\r\n transform: translate(-50%, -50%);\r\n content: '';\r\n}\r\n.video-js .vjs-control-bar,\r\n.vjs-default-skin .vjs-control-bar {\r\n display: -webkit-flex;\r\n display: flex;\r\n -webkit-flex-direction: row;\r\n flex-direction: row;\r\n -webkit-justify-content: flex-end;\r\n justify-content: flex-end;\r\n height: 120px;\r\n background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.39) 39%, rgba(0, 0, 0, 0.39) 39%, black 100%);\r\n background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(39%, rgba(0, 0, 0, 0.39)), color-stop(39%, rgba(0, 0, 0, 0.39)), color-stop(100%, black));\r\n background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.39) 39%, rgba(0, 0, 0, 0.39) 39%, black 100%);\r\n background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.39) 39%, rgba(0, 0, 0, 0.39) 39%, black 100%);\r\n background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.39) 39%, rgba(0, 0, 0, 0.39) 39%, black 100%);\r\n background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.39) 39%, rgba(0, 0, 0, 0.39) 39%, black 100%);\r\n filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000', GradientType=0);\r\n}\r\n.video-js .vjs-icon-placeholder:before,\r\n.vjs-default-skin .vjs-icon-placeholder:before {\r\n font-size: 25px;\r\n height: auto;\r\n padding: 0;\r\n margin: 0;\r\n line-height: 44px;\r\n width: 44px;\r\n}\r\n.video-js .vjs-icon-placeholder:focus:before, .video-js .vjs-icon-placeholder:hover:before,\r\n.vjs-default-skin .vjs-icon-placeholder:focus:before,\r\n.vjs-default-skin .vjs-icon-placeholder:hover:before {\r\n box-shadow: none;\r\n text-shadow: none;\r\n}\r\n.video-js .vjs-live-control,\r\n.vjs-default-skin .vjs-live-control {\r\n top: -34px;\r\n left: 0;\r\n right: 0;\r\n margin: auto;\r\n position: absolute;\r\n}\r\n.video-js .vjs-current-time,\r\n.video-js .vjs-remaining-time,\r\n.vjs-default-skin .vjs-current-time,\r\n.vjs-default-skin .vjs-remaining-time {\r\n right: 82px;\r\n}\r\n.video-js .vjs-duration,\r\n.vjs-default-skin .vjs-duration {\r\n right: 50px;\r\n}\r\n.video-js .vjs-time-divider,\r\n.vjs-default-skin .vjs-time-divider {\r\n right: 75px;\r\n}\r\n.video-js .vjs-playback-rate .vjs-menu,\r\n.vjs-default-skin .vjs-playback-rate .vjs-menu {\r\n width: 44px;\r\n bottom: 14px;\r\n}\r\n.video-js .vjs-playback-rate .vjs-playback-rate-value,\r\n.vjs-default-skin .vjs-playback-rate .vjs-playback-rate-value {\r\n line-height: 44px;\r\n}\r\n.video-js .vjs-current-time,\r\n.video-js .vjs-duration,\r\n.video-js .vjs-time-divider,\r\n.vjs-default-skin .vjs-current-time,\r\n.vjs-default-skin .vjs-duration,\r\n.vjs-default-skin .vjs-time-divider {\r\n position: absolute;\r\n height: 44px;\r\n display: block;\r\n bottom: 0;\r\n}\r\n.video-js .vjs-current-time > div,\r\n.video-js .vjs-duration > div,\r\n.video-js .vjs-time-divider > div,\r\n.vjs-default-skin .vjs-current-time > div,\r\n.vjs-default-skin .vjs-duration > div,\r\n.vjs-default-skin .vjs-time-divider > div {\r\n line-height: 44px;\r\n height: 44px;\r\n}\r\n.video-js .vjs-remaining-time,\r\n.vjs-default-skin .vjs-remaining-time {\r\n display: none;\r\n}\r\n.video-js .vjs-control,\r\n.vjs-default-skin .vjs-control {\r\n width: 44px;\r\n height: 44px;\r\n transition: background-color .5s ease;\r\n bottom: 0;\r\n}\r\n.video-js .vjs-control.vjs-fullscreen-control, .video-js .vjs-control.vjs-subs-caps-button, .video-js .vjs-control.vjs-playback-rate, .video-js .vjs-control.vjs-captions-button, .video-js .vjs-control.vjs-chapters-button, .video-js .vjs-control.vjs-volume-menu-button, .video-js .vjs-control.vjs-quality-button, .video-js .vjs-control.vjs-descriptions-button, .video-js .vjs-control.vjs-audio-button,\r\n.vjs-default-skin .vjs-control.vjs-fullscreen-control,\r\n.vjs-default-skin .vjs-control.vjs-subs-caps-button,\r\n.vjs-default-skin .vjs-control.vjs-playback-rate,\r\n.vjs-default-skin .vjs-control.vjs-captions-button,\r\n.vjs-default-skin .vjs-control.vjs-chapters-button,\r\n.vjs-default-skin .vjs-control.vjs-volume-menu-button,\r\n.vjs-default-skin .vjs-control.vjs-quality-button,\r\n.vjs-default-skin .vjs-control.vjs-descriptions-button,\r\n.vjs-default-skin .vjs-control.vjs-audio-button {\r\n width: 44px;\r\n height: 44px;\r\n transition: background-color .5s ease;\r\n bottom: -76px;\r\n position: relative;\r\n}\r\n.video-js .vjs-control:hover, .video-js .vjs-control:focus,\r\n.vjs-default-skin .vjs-control:hover,\r\n.vjs-default-skin .vjs-control:focus {\r\n background-color: #bb1919;\r\n}\r\n.video-js .vjs-progress-control,\r\n.vjs-default-skin .vjs-progress-control {\r\n bottom: 40px;\r\n width: 100%;\r\n position: absolute;\r\n}\r\n.video-js .vjs-progress-control .vjs-slider,\r\n.vjs-default-skin .vjs-progress-control .vjs-slider {\r\n height: 6px;\r\n margin: 0 10px;\r\n}\r\n.video-js .vjs-progress-control .vjs-slider-handle,\r\n.vjs-default-skin .vjs-progress-control .vjs-slider-handle {\r\n top: 40%;\r\n}\r\n.video-js .vjs-progress-control:hover, .video-js .vjs-progress-control:focus,\r\n.video-js .vjs-current-time:hover,\r\n.video-js .vjs-current-time:focus,\r\n.video-js .vjs-duration:hover,\r\n.video-js .vjs-duration:focus,\r\n.video-js .vjs-time-divider:hover,\r\n.video-js .vjs-time-divider:focus,\r\n.video-js .vjs-volume-control:hover,\r\n.video-js .vjs-volume-control:focus,\r\n.video-js .vjs-close-button:hover,\r\n.video-js .vjs-close-button:focus,\r\n.video-js .vjs-live-control:hover,\r\n.video-js .vjs-live-control:focus,\r\n.vjs-default-skin .vjs-progress-control:hover,\r\n.vjs-default-skin .vjs-progress-control:focus,\r\n.vjs-default-skin .vjs-current-time:hover,\r\n.vjs-default-skin .vjs-current-time:focus,\r\n.vjs-default-skin .vjs-duration:hover,\r\n.vjs-default-skin .vjs-duration:focus,\r\n.vjs-default-skin .vjs-time-divider:hover,\r\n.vjs-default-skin .vjs-time-divider:focus,\r\n.vjs-default-skin .vjs-volume-control:hover,\r\n.vjs-default-skin .vjs-volume-control:focus,\r\n.vjs-default-skin .vjs-close-button:hover,\r\n.vjs-default-skin .vjs-close-button:focus,\r\n.vjs-default-skin .vjs-live-control:hover,\r\n.vjs-default-skin .vjs-live-control:focus {\r\n background-color: transparent;\r\n}\r\n.video-js .vjs-play-control,\r\n.vjs-default-skin .vjs-play-control {\r\n position: absolute;\r\n left: 0;\r\n}\r\n.video-js .vjs-fullscreen-control,\r\n.vjs-default-skin .vjs-fullscreen-control {\r\n margin-left: 85px !important;\r\n right: 0;\r\n position: absolute;\r\n}\r\n.video-js .vjs-volume-menu-button,\r\n.video-js .vjs-volume-panel,\r\n.vjs-default-skin .vjs-volume-menu-button,\r\n.vjs-default-skin .vjs-volume-panel {\r\n position: absolute;\r\n left: 44px;\r\n}\r\n.video-js .vjs-volume-menu-button:hover, .video-js .vjs-volume-menu-button:focus,\r\n.video-js .vjs-volume-panel:hover,\r\n.video-js .vjs-volume-panel:focus,\r\n.vjs-default-skin .vjs-volume-menu-button:hover,\r\n.vjs-default-skin .vjs-volume-menu-button:focus,\r\n.vjs-default-skin .vjs-volume-panel:hover,\r\n.vjs-default-skin .vjs-volume-panel:focus {\r\n background-color: transparent;\r\n}\r\n.video-js .vjs-volume-menu-button:hover:before, .video-js .vjs-volume-menu-button:focus:before,\r\n.video-js .vjs-volume-panel:hover:before,\r\n.video-js .vjs-volume-panel:focus:before,\r\n.vjs-default-skin .vjs-volume-menu-button:hover:before,\r\n.vjs-default-skin .vjs-volume-menu-button:focus:before,\r\n.vjs-default-skin .vjs-volume-panel:hover:before,\r\n.vjs-default-skin .vjs-volume-panel:focus:before {\r\n background-color: #bb1919;\r\n}\r\n.video-js .vjs-volume-menu-button:before,\r\n.video-js .vjs-volume-panel:before,\r\n.vjs-default-skin .vjs-volume-menu-button:before,\r\n.vjs-default-skin .vjs-volume-panel:before {\r\n width: 44px;\r\n left: 0;\r\n top: 50%;\r\n -webkit-transform: translate(0%, -50%);\r\n -ms-transform: translate(0%, -50%);\r\n transform: translate(0%, -50%);\r\n}\r\n.video-js .vjs-volume-bar,\r\n.video-js .vjs-volume-level,\r\n.vjs-default-skin .vjs-volume-bar,\r\n.vjs-default-skin .vjs-volume-level {\r\n height: 6px;\r\n}\r\n.video-js .vjs-volume-bar,\r\n.vjs-default-skin .vjs-volume-bar {\r\n top: 24%;\r\n margin: 0;\r\n left: 4px;\r\n width: 80px;\r\n}\r\n.video-js .vjs-seek-handle,\r\n.vjs-default-skin .vjs-seek-handle {\r\n height: auto;\r\n}\r\n.video-js .vjs-slider-handle:before,\r\n.video-js .vjs-volume-bar .vjs-volume-handle:before,\r\n.vjs-default-skin .vjs-slider-handle:before,\r\n.vjs-default-skin .vjs-volume-bar .vjs-volume-handle:before {\r\n width: 10px;\r\n height: 16px;\r\n background-color: #FFFFFF;\r\n position: absolute;\r\n right: 0;\r\n top: -5px;\r\n -webkit-transform: none;\r\n -ms-transform: none;\r\n transform: none;\r\n content: \"\";\r\n font-family: none;\r\n}\r\n.video-js .vjs-live-controls,\r\n.vjs-default-skin .vjs-live-controls {\r\n display: none;\r\n}\r\n.video-js .vjs-menu-button-inline:hover, .video-js .vjs-menu-button-inline:focus, .video-js .vjs-menu-button-inline.vjs-slider-active,\r\n.vjs-default-skin .vjs-menu-button-inline:hover,\r\n.vjs-default-skin .vjs-menu-button-inline:focus,\r\n.vjs-default-skin .vjs-menu-button-inline.vjs-slider-active {\r\n width: 14em;\r\n}\r\n.video-js .vjs-menu-button-inline .vjs-menu,\r\n.vjs-default-skin .vjs-menu-button-inline .vjs-menu {\r\n left: 97px;\r\n}\r\n.video-js .vjs-menu-button-inline .vjs-menu .vjs-menu-content,\r\n.vjs-default-skin .vjs-menu-button-inline .vjs-menu .vjs-menu-content {\r\n position: absolute;\r\n top: 50%;\r\n left: 50%;\r\n -webkit-transform: translate(-50%, -50%);\r\n -ms-transform: translate(-50%, -50%);\r\n transform: translate(-50%, -50%);\r\n overflow: visible;\r\n height: auto;\r\n width: 8em;\r\n}\r\n.video-js.vjs-no-flex .vjs-menu-button-inline,\r\n.vjs-default-skin.vjs-no-flex .vjs-menu-button-inline {\r\n width: 14em;\r\n}\r\n.video-js .vjs-time-tooltip,\r\n.vjs-default-skin .vjs-time-tooltip {\r\n line-height: 10px;\r\n left: 15px;\r\n}\r\n.video-js .vjs-volume-panel:hover .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-horizontal,\r\n.vjs-default-skin .vjs-volume-panel:hover .vjs-volume-control.vjs-volume-horizontal,\r\n.vjs-default-skin .vjs-volume-panel:active .vjs-volume-control.vjs-volume-horizontal,\r\n.vjs-default-skin .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-horizontal {\r\n top: 24%;\r\n margin: 0;\r\n left: 4px;\r\n width: 80px;\r\n}\r\n.video-js .vjs-volume-panel .vjs-volume-control,\r\n.vjs-default-skin .vjs-volume-panel .vjs-volume-control {\r\n top: 24%;\r\n margin: 0;\r\n left: 4px;\r\n width: 0;\r\n}\r\n.video-js .vjs-volume-panel .vjs-volume-control:hover.vjs-volume-horizontal, .video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-horizontal, .video-js .vjs-volume-panel .vjs-volume-control:focus.vjs-volume-horizontal,\r\n.vjs-default-skin .vjs-volume-panel .vjs-volume-control:hover.vjs-volume-horizontal,\r\n.vjs-default-skin .vjs-volume-panel .vjs-volume-control:active.vjs-volume-horizontal,\r\n.vjs-default-skin .vjs-volume-panel .vjs-volume-control:focus.vjs-volume-horizontal {\r\n top: 24%;\r\n margin: 0;\r\n left: 4px;\r\n width: 80px;\r\n}\r\n.video-js .vjs-volume-panel .vjs-mute-control:hover ~ .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel .vjs-mute-control:active ~ .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel .vjs-mute-control:focus ~ .vjs-volume-control.vjs-volume-horizontal,\r\n.vjs-default-skin .vjs-volume-panel .vjs-mute-control:hover ~ .vjs-volume-control.vjs-volume-horizontal,\r\n.vjs-default-skin .vjs-volume-panel .vjs-mute-control:active ~ .vjs-volume-control.vjs-volume-horizontal,\r\n.vjs-default-skin .vjs-volume-panel .vjs-mute-control:focus ~ .vjs-volume-control.vjs-volume-horizontal {\r\n top: 24%;\r\n margin: 0;\r\n left: 4px;\r\n width: 80px;\r\n}\r\n.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-horizontal,\r\n.vjs-default-skin .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-horizontal {\r\n top: 24%;\r\n margin: 0;\r\n left: 4px;\r\n width: 80px;\r\n}\r\n\r\n/*# sourceMappingURL=videojs-iplayer-theme.css.map */\r\n","type":"text/css","title":"$:/plugins/TheDiveO/IPlayerInspiredVideojsSkin/styles/skin.css","tags":"$:/tags/TwTubeVideojsSkin","created":"20140902114846490","creator":"TheDiveO","modified":"20140902114846490"},"$:/plugins/TheDiveO/IPlayerInspiredVideojsSkin/history":{"title":"$:/plugins/TheDiveO/IPlayerInspiredVideojsSkin/history","created":"20180114170309007","modified":"20180405141531076","tags":"","type":"text/vnd.tiddlywiki","text":"* ''1.0.3'' -- uses npm package `videojs-iplayer-skin-1`.\n* ''1.0.2'' -- adds `caption` field to support new skin selection in the Control Panel tab \"Media Player Skins\".\n* ''1.0.1'' -- adds support for centered (big) play button, similar to what is supported in the default skin as well as some other skins.\n* ''1.0.0'' -- first release of the iPlayer-inspired Video.js Skin plugin."},"$:/plugins/TheDiveO/IPlayerInspiredVideojsSkin/license":{"title":"$:/plugins/TheDiveO/IPlayerInspiredVideojsSkin/license","created":"20180114170300930","modified":"20180114211253792","tags":"","type":"text/vnd.tiddlywiki","text":"* The CSS stylesheet for the [[iPlayer-inspired Video.js skin|https://github.com/VD39/videojs-iplayer-skin]] is licensed under the [[MIT License|http://opensource.org/licenses/MIT]].\n* This plugin is licensed under the [[MIT License|http://opensource.org/licenses/MIT]].\n"},"$:/plugins/TheDiveO/IPlayerInspiredVideojsSkin/readme":{"title":"$:/plugins/TheDiveO/IPlayerInspiredVideojsSkin/readme","created":"20180114170253183","modified":"20180405140109571","tags":"","type":"text/vnd.tiddlywiki","text":"Provides the [[iPlayer-inspired Video.js skin|https://github.com/VD39/videojs-iplayer-skin-1]] (~GitHub) by [[Vijay Dubb/VD39|https://github.com/VD39]] (~GitHub) for use with the [[TwTube plugin|https://github.com/TheDiveO/TwTube]] (//you guessed right// ... ~GitHub). Simply install this plugin into your ~TiddlyWiki alongside the ~TwTube plugin and you're done.\n"},"$:/plugins/TheDiveO/IPlayerInspiredVideojsSkin/styles/fixes.css":{"title":"$:/plugins/TheDiveO/IPlayerInspiredVideojsSkin/styles/fixes.css","created":"20180114182654131","modified":"20180114182731430","tags":"$:/tags/TwTubeVideojsSkin","type":"text/css","text":".vjs-big-play-centered .vjs-big-play-button {\n top: 50% !important;\n left: 50% !important;\n margin-top: -42px !important;\n margin-left: -42px !important;\n}\n"}}}
{"tiddlers":{"$:/plugins/TheDiveO/SublimeInspiredVideojsSkin/history":{"title":"$:/plugins/TheDiveO/SublimeInspiredVideojsSkin/history","created":"20180114170309007","modified":"20180128162518012","tags":"","type":"text/vnd.tiddlywiki","text":"* ''1.0.1'' -- adds `caption` field to support new skin selection in the Control Panel tab \"Media Player Skins\".\n* ''1.0.0'' -- first release of the Sublime-inspired Video.js Skin plugin."},"$:/plugins/TheDiveO/SublimeInspiredVideojsSkin/license":{"title":"$:/plugins/TheDiveO/SublimeInspiredVideojsSkin/license","created":"20180114170300930","modified":"20180114175741246","tags":"","type":"text/vnd.tiddlywiki","text":"* The CSS stylesheet for the [[Sublime-inspired Video.js skin|https://github.com/zanechua/videojs-sublime-inspired-skin]] is licensed under the [[MIT License|http://opensource.org/licenses/MIT]].\n* This plugin is licensed under the [[MIT License|http://opensource.org/licenses/MIT]]."},"$:/plugins/TheDiveO/SublimeInspiredVideojsSkin/macros/skin class":{"title":"$:/plugins/TheDiveO/SublimeInspiredVideojsSkin/macros/skin class","created":"20180114174339454","modified":"20180114175748874","tags":"$:/tags/Macro","type":"text/vnd.tiddlywiki","text":"\\define twtube-skin-classes() vjs-sublime-skin"},"$:/plugins/TheDiveO/SublimeInspiredVideojsSkin/readme":{"title":"$:/plugins/TheDiveO/SublimeInspiredVideojsSkin/readme","created":"20180114170253183","modified":"20180114175806600","tags":"","type":"text/vnd.tiddlywiki","text":"Provides the [[Sublime-inspired Video.js skin|https://github.com/zanechua/videojs-sublime-inspired-skin]] (~GitHub) by [[zanechua|https://github.com/zanechua]] (~GitHub) for use with the [[TwTube plugin|https://github.com/TheDiveO/TwTube]] (//you guessed right// ... ~GitHub). Simply install this plugin into your ~TiddlyWiki alongside the ~TwTube plugin and you're done."},"$:/plugins/TheDiveO/SublimeInspiredVideojsSkin/styles/skin.css":{"title":"$:/plugins/TheDiveO/SublimeInspiredVideojsSkin/styles/skin.css","created":"20180114164921108","modified":"20180114175812441","tags":"$:/tags/TwTubeVideojsSkin","type":"text/css","text":".video-js {\n /* The base font size controls the size of everything, not just text.\n All dimensions use em-based sizes so that the scale along with the font size.\n Try increasing it to 15px and see what happens. */\n font-size: 10px;\n /* The main font color changes the ICON COLORS as well as the text */\n color: #fff;\n}\n\n/* The \"Big Play Button\" is the play button that shows before the video plays.\n To center it set the align values to center and middle. The typical location\n of the button is the center, but there is trend towards moving it to a corner\n where it gets out of the way of valuable content in the poster image.*/\n.vjs-sublime-skin .vjs-big-play-button {\n /* The font size is what makes the big play button...big.\n All width/height values use ems, which are a multiple of the font size.\n If the .video-js font-size is 10px, then 3em equals 30px.*/\n font-size: 8em;\n /* We're using SCSS vars here because the values are used in multiple places.\n Now that font size is set, the following em values will be a multiple of the\n new font size. If the font-size is 3em (30px), then setting any of\n the following values to 3em would equal 30px. 3 * font-size. */\n /* 1.5em = 45px default */\n line-height: 1.5em;\n height: 1.5em;\n width: 3em;\n /* 0.06666em = 2px default */\n border: 0;\n /* 0.3em = 9px default */\n border-radius: 0.3em;\n /* Align center */\n left: 50%;\n top: 50%;\n margin-left: -1.5em;\n margin-top: -0.75em;\n}\n\n/* The default color of control backgrounds is mostly black but with a little\n bit of blue so it can still be seen on all-black video frames, which are common. */\n.video-js .vjs-control-bar,\n.video-js .vjs-big-play-button,\n.video-js .vjs-volume-menu-button .vjs-menu-content,\n.video-js .vjs-volume-panel .vjs-volume-control {\n /* IE8 - has no alpha support */\n background-color: #2B333F;\n /* Opacity: 1.0 = 100%, 0.0 = 0% */\n background-color: rgba(43, 51, 63, 0.7);\n background-color: transparent;\n}\n\n/* Slider - used for Volume bar and Progress bar */\n.video-js .vjs-slider {\n background-color: #73859f;\n background-color: rgba(115, 133, 159, 0.5);\n background-color: rgba(255, 255, 255, 0.3);\n border-radius: 2px;\n height: 6.5px;\n}\n\n/* The slider bar color is used for the progress bar and the volume bar\n (the first two can be removed after a fix that's coming) */\n.video-js .vjs-volume-level,\n.video-js .vjs-play-progress,\n.video-js .vjs-slider-bar {\n background: #fff;\n}\n\n.video-js .vjs-progress-holder .vjs-load-progress,\n.video-js .vjs-progress-holder .vjs-load-progress div,\n.video-js .vjs-progress-holder .vjs-play-progress,\n.video-js .vjs-progress-holder .vjs-tooltip-progress-bar {\n height: 6.5px;\n}\n\n/* The main progress bar also has a bar that shows how much has been loaded. */\n.video-js .vjs-load-progress {\n /* For IE8 we'll lighten the color */\n background: ligthen(#73859f, 25%);\n /* Otherwise we'll rely on stacked opacities */\n background: rgba(115, 133, 159, 0.5);\n}\n\n/* The load progress bar also has internal divs that represent\n smaller disconnected loaded time ranges */\n.video-js .vjs-load-progress div {\n /* For IE8 we'll lighten the color */\n background: ligthen(#73859f, 50%);\n /* Otherwise we'll rely on stacked opacities */\n background: rgba(115, 133, 159, 0.75);\n}\n\n.vjs-sublime-skin .vjs-poster {\n outline: none; /* Remove Blue Outline on Click*/\n outline: 0;\n}\n\n.vjs-sublime-skin:hover .vjs-big-play-button {\n background-color: transparent;\n}\n\n.vjs-sublime-skin .vjs-fullscreen-control:before,\n.vjs-sublime-skin.vjs-fullscreen .vjs-fullscreen-control:before {\n content: ''; /* Remove Fullscreen Exit Icon */\n}\n\n.vjs-sublime-skin.vjs-fullscreen .vjs-fullscreen-control {\n background: #fff;\n}\n\n.vjs-sublime-skin .vjs-fullscreen-control {\n border: 3px solid #fff;\n box-sizing: border-box;\n cursor: pointer;\n margin-top: -7px;\n top: 50%;\n height: 14px;\n width: 22px;\n margin-right: 10px;\n}\n\n.vjs-sublime-skin.vjs-fullscreen .vjs-fullscreen-control:after {\n background: #000;\n content: \"\";\n display: block;\n position: absolute;\n bottom: 0;\n left: 0;\n height: 5px;\n width: 5px;\n}\n\n.vjs-sublime-skin .vjs-progress-holder {\n margin: 0;\n}\n\n.vjs-sublime-skin .vjs-progress-control .vjs-progress-holder:after {\n border-radius: 2px;\n display: block;\n height: 6.5px;\n}\n\n.vjs-sublime-skin .vjs-progress-control .vjs-load-progres,\n.vjs-sublime-skin .vjs-progress-control .vjs-play-progress {\n border-radius: 2px;\n height: 6.5px;\n}\n\n.vjs-sublime-skin .vjs-playback-rate {\n display: none; /* Remove Playback Rate */\n}\n\n.vjs-sublime-skin .vjs-progress-control {\n margin-right: 50px;\n}\n\n.vjs-sublime-skin .vjs-time-control {\n right: 55px;\n}\n\n.vjs-sublime-skin .vjs-volume-menu-button:before {\n width: 1.2em;\n z-index: 1;\n}\n\n.vjs-sublime-skin .vjs-volume-menu-button .vjs-menu,\n.vjs-sublime-skin .vjs-volume-menu-button:focus .vjs-menu,\n.vjs-sublime-skin .vjs-volume-menu-button.vjs-slider-active .vjs-menu {\n display: block;\n opacity: 1;\n}\n\n.vjs-sublime-skin .vjs-volume-menu-button,\n.vjs-sublime-skin .vjs-volume-panel {\n width: 6em;\n position: absolute;\n right: 0;\n margin-right: 30px;\n}\n\n.vjs-sublime-skin .vjs-volume-menu-button .vjs-menu-content,\n.vjs-sublime-skin .vjs-volume-menu-button:hover,\n.vjs-sublime-skin .vjs-volume-menu-button:focus,\n.vjs-sublime-skin .vjs-volume-menu-button.vjs-slider-active,\n.vjs-sublime-skin .vjs-volume-panel .vjs-volume-control,\n.vjs-sublime-skin .vjs-volume-panel:hover,\n.vjs-sublime-skin .vjs-volume-panel:focus,\n.vjs-sublime-skin .vjs-volume-panel.vjs-slider-active {\n width: 6em;\n}\n\n.vjs-sublime-skin .vjs-volume-menu-button .vjs-menu {\n left: 23px;\n}\n\n.vjs-sublime-skin .vjs-mouse-display:before,\n.vjs-sublime-skin .vjs-play-progress:before,\n.vjs-sublime-skin .vjs-volume-level:before {\n content: ''; /* Remove Circle From Progress Bar */\n}\n\n.vjs-sublime-skin .vjs-mouse-display:after,\n.vjs-sublime-skin .vjs-play-progress:after,\n.vjs-sublime-skin .vjs-time-tooltip {\n width: 5.5em;\n}\n\n.vjs-sublime-skin .vjs-audio-button {\n display: none;\n}\n\n.vjs-sublime-skin .vjs-volume-bar {\n background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAcCAQAAACw95UnAAAAMElEQVRIx2NgoBL4n4YKGUYNHkEG4zJg1OCRYDCpBowaPJwMppbLRg0eNXjUYBLEAXWNUA6QNm1lAAAAAElFTkSuQmCC);\n background-size: 22px 14px;\n background-repeat: no-repeat;\n height: 100%;\n width: 100%;\n max-width: 22px;\n max-height: 14px;\n margin: 7px 4px;\n border-radius: 0;\n}\n\n.vjs-sublime-skin .vjs-volume-level {\n background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAcAQAAAAAyhWABAAAAAnRSTlMAAHaTzTgAAAAZSURBVHgBYwAB/g9EUv+JokCqiaT+U4MCAPKPS7WUUOc1AAAAAElFTkSuQmCC);\n background-size: 22px 14px;\n background-repeat: no-repeat;\n max-width: 22px;\n max-height: 14px;\n height: 100%;\n}\n\n/* New for VideoJS v6 */\n.vjs-sublime-skin .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,\n.vjs-sublime-skin .vjs-volume-panel.vjs-volume-panel-horizontal:active,\n.vjs-sublime-skin .vjs-volume-panel.vjs-volume-panel-horizontal:focus,\n.vjs-sublime-skin .vjs-volume-panel.vjs-volume-panel-horizontal:hover {\n width: 6em;\n transition-property: none;\n}\n\n.vjs-sublime-skin .vjs-volume-panel .vjs-mute-control:hover ~ .vjs-volume-control.vjs-volume-horizontal {\n width: 3em;\n height: auto;\n}\n\n.vjs-sublime-skin .vjs-volume-panel .vjs-mute-control:hover ~ .vjs-volume-control {\n transition-property: none;\n}\n\n.vjs-sublime-skin .vjs-fullscreen-control .vjs-icon-placeholder {\n display: none; /* Remove Duplicate Fullscreen Icon */\n}\n\n.vjs-sublime-skin .vjs-volume-panel .vjs-mute-control {\n width: 2em;\n z-index: 1;\n padding: 0;\n}\n\n.vjs-sublime-skin .vjs-volume-panel .vjs-volume-control {\n display: inline-block;\n position: relative;\n left: 5px;\n opacity: 1;\n width: 3em;\n height: auto;\n}"}}}
{"tiddlers":{"$:/plugins/TheDiveO/TwTube/libraries/video.js":{"text":"/* automatically included from npm package `video.js` */\r\n/**\n * @license\n * Video.js 6.7.3 <http://videojs.com/>\n * Copyright Brightcove, Inc. <https://www.brightcove.com/>\n * Available under Apache License Version 2.0\n * <https://github.com/videojs/video.js/blob/master/LICENSE>\n *\n * Includes vtt.js <https://github.com/mozilla/vtt.js>\n * Available under Apache License Version 2.0\n * <https://github.com/mozilla/vtt.js/blob/master/LICENSE>\n */\n\n(function (global, factory) {\n\ttypeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :\n\ttypeof define === 'function' && define.amd ? define(factory) :\n\t(global.videojs = factory());\n}(this, (function () {\n\nvar version = \"6.7.3\";\n\nvar commonjsGlobal = typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};\n\n\n\n\n\nfunction createCommonjsModule(fn, module) {\n\treturn module = { exports: {} }, fn(module, module.exports), module.exports;\n}\n\nvar win;\n\nif (typeof window !== \"undefined\") {\n win = window;\n} else if (typeof commonjsGlobal !== \"undefined\") {\n win = commonjsGlobal;\n} else if (typeof self !== \"undefined\"){\n win = self;\n} else {\n win = {};\n}\n\nvar window_1 = win;\n\nvar empty = {};\n\n\nvar empty$1 = (Object.freeze || Object)({\n\t'default': empty\n});\n\nvar minDoc = ( empty$1 && empty ) || empty$1;\n\nvar topLevel = typeof commonjsGlobal !== 'undefined' ? commonjsGlobal :\n typeof window !== 'undefined' ? window : {};\n\n\nvar doccy;\n\nif (typeof document !== 'undefined') {\n doccy = document;\n} else {\n doccy = topLevel['__GLOBAL_DOCUMENT_CACHE@4'];\n\n if (!doccy) {\n doccy = topLevel['__GLOBAL_DOCUMENT_CACHE@4'] = minDoc;\n }\n}\n\nvar document_1 = doccy;\n\n/**\n * @file browser.js\n * @module browser\n */\nvar USER_AGENT = window_1.navigator && window_1.navigator.userAgent || '';\nvar webkitVersionMap = /AppleWebKit\\/([\\d.]+)/i.exec(USER_AGENT);\nvar appleWebkitVersion = webkitVersionMap ? parseFloat(webkitVersionMap.pop()) : null;\n\n/*\n * Device is an iPhone\n *\n * @type {Boolean}\n * @constant\n * @private\n */\nvar IS_IPAD = /iPad/i.test(USER_AGENT);\n\n// The Facebook app's UIWebView identifies as both an iPhone and iPad, so\n// to identify iPhones, we need to exclude iPads.\n// http://artsy.github.io/blog/2012/10/18/the-perils-of-ios-user-agent-sniffing/\nvar IS_IPHONE = /iPhone/i.test(USER_AGENT) && !IS_IPAD;\nvar IS_IPOD = /iPod/i.test(USER_AGENT);\nvar IS_IOS = IS_IPHONE || IS_IPAD || IS_IPOD;\n\nvar IOS_VERSION = function () {\n var match = USER_AGENT.match(/OS (\\d+)_/i);\n\n if (match && match[1]) {\n return match[1];\n }\n return null;\n}();\n\nvar IS_ANDROID = /Android/i.test(USER_AGENT);\nvar ANDROID_VERSION = function () {\n // This matches Android Major.Minor.Patch versions\n // ANDROID_VERSION is Major.Minor as a Number, if Minor isn't available, then only Major is returned\n var match = USER_AGENT.match(/Android (\\d+)(?:\\.(\\d+))?(?:\\.(\\d+))*/i);\n\n if (!match) {\n return null;\n }\n\n var major = match[1] && parseFloat(match[1]);\n var minor = match[2] && parseFloat(match[2]);\n\n if (major && minor) {\n return parseFloat(match[1] + '.' + match[2]);\n } else if (major) {\n return major;\n }\n return null;\n}();\n\n// Old Android is defined as Version older than 2.3, and requiring a webkit version of the android browser\nvar IS_OLD_ANDROID = IS_ANDROID && /webkit/i.test(USER_AGENT) && ANDROID_VERSION < 2.3;\nvar IS_NATIVE_ANDROID = IS_ANDROID && ANDROID_VERSION < 5 && appleWebkitVersion < 537;\n\nvar IS_FIREFOX = /Firefox/i.test(USER_AGENT);\nvar IS_EDGE = /Edge/i.test(USER_AGENT);\nvar IS_CHROME = !IS_EDGE && /Chrome/i.test(USER_AGENT);\nvar CHROME_VERSION = function () {\n var match = USER_AGENT.match(/Chrome\\/(\\d+)/);\n\n if (match && match[1]) {\n return parseFloat(match[1]);\n }\n return null;\n}();\nvar IS_IE8 = /MSIE\\s8\\.0/.test(USER_AGENT);\nvar IE_VERSION = function () {\n var result = /MSIE\\s(\\d+)\\.\\d/.exec(USER_AGENT);\n var version = result && parseFloat(result[1]);\n\n if (!version && /Trident\\/7.0/i.test(USER_AGENT) && /rv:11.0/.test(USER_AGENT)) {\n // IE 11 has a different user agent string than other IE versions\n version = 11.0;\n }\n\n return version;\n}();\n\nvar IS_SAFARI = /Safari/i.test(USER_AGENT) && !IS_CHROME && !IS_ANDROID && !IS_EDGE;\nvar IS_ANY_SAFARI = IS_SAFARI || IS_IOS;\n\nvar TOUCH_ENABLED = isReal() && ('ontouchstart' in window_1 || window_1.DocumentTouch && window_1.document instanceof window_1.DocumentTouch);\n\nvar BACKGROUND_SIZE_SUPPORTED = isReal() && 'backgroundSize' in window_1.document.createElement('video').style;\n\nvar browser = (Object.freeze || Object)({\n\tIS_IPAD: IS_IPAD,\n\tIS_IPHONE: IS_IPHONE,\n\tIS_IPOD: IS_IPOD,\n\tIS_IOS: IS_IOS,\n\tIOS_VERSION: IOS_VERSION,\n\tIS_ANDROID: IS_ANDROID,\n\tANDROID_VERSION: ANDROID_VERSION,\n\tIS_OLD_ANDROID: IS_OLD_ANDROID,\n\tIS_NATIVE_ANDROID: IS_NATIVE_ANDROID,\n\tIS_FIREFOX: IS_FIREFOX,\n\tIS_EDGE: IS_EDGE,\n\tIS_CHROME: IS_CHROME,\n\tCHROME_VERSION: CHROME_VERSION,\n\tIS_IE8: IS_IE8,\n\tIE_VERSION: IE_VERSION,\n\tIS_SAFARI: IS_SAFARI,\n\tIS_ANY_SAFARI: IS_ANY_SAFARI,\n\tTOUCH_ENABLED: TOUCH_ENABLED,\n\tBACKGROUND_SIZE_SUPPORTED: BACKGROUND_SIZE_SUPPORTED\n});\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) {\n return typeof obj;\n} : function (obj) {\n return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj;\n};\n\n\n\n\n\n\n\n\n\n\n\nvar classCallCheck = function (instance, Constructor) {\n if (!(instance instanceof Constructor)) {\n throw new TypeError(\"Cannot call a class as a function\");\n }\n};\n\n\n\n\n\n\n\n\n\n\n\nvar inherits = function (subClass, superClass) {\n if (typeof superClass !== \"function\" && superClass !== null) {\n throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass);\n }\n\n subClass.prototype = Object.create(superClass && superClass.prototype, {\n constructor: {\n value: subClass,\n enumerable: false,\n writable: true,\n configurable: true\n }\n });\n if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass;\n};\n\n\n\n\n\n\n\n\n\n\n\nvar possibleConstructorReturn = function (self, call) {\n if (!self) {\n throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");\n }\n\n return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self;\n};\n\n\n\n\n\n\n\n\n\n\n\nvar taggedTemplateLiteralLoose = function (strings, raw) {\n strings.raw = raw;\n return strings;\n};\n\n/**\n * @file obj.js\n * @module obj\n */\n\n/**\n * @callback obj:EachCallback\n *\n * @param {Mixed} value\n * The current key for the object that is being iterated over.\n *\n * @param {string} key\n * The current key-value for object that is being iterated over\n */\n\n/**\n * @callback obj:ReduceCallback\n *\n * @param {Mixed} accum\n * The value that is accumulating over the reduce loop.\n *\n * @param {Mixed} value\n * The current key for the object that is being iterated over.\n *\n * @param {string} key\n * The current key-value for object that is being iterated over\n *\n * @return {Mixed}\n * The new accumulated value.\n */\nvar toString = Object.prototype.toString;\n\n/**\n * Get the keys of an Object\n *\n * @param {Object}\n * The Object to get the keys from\n *\n * @return {string[]}\n * An array of the keys from the object. Returns an empty array if the\n * object passed in was invalid or had no keys.\n *\n * @private\n */\nvar keys = function keys(object) {\n return isObject(object) ? Object.keys(object) : [];\n};\n\n/**\n * Array-like iteration for objects.\n *\n * @param {Object} object\n * The object to iterate over\n *\n * @param {obj:EachCallback} fn\n * The callback function which is called for each key in the object.\n */\nfunction each(object, fn) {\n keys(object).forEach(function (key) {\n return fn(object[key], key);\n });\n}\n\n/**\n * Array-like reduce for objects.\n *\n * @param {Object} object\n * The Object that you want to reduce.\n *\n * @param {Function} fn\n * A callback function which is called for each key in the object. It\n * receives the accumulated value and the per-iteration value and key\n * as arguments.\n *\n * @param {Mixed} [initial = 0]\n * Starting value\n *\n * @return {Mixed}\n * The final accumulated value.\n */\nfunction reduce(object, fn) {\n var initial = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 0;\n\n return keys(object).reduce(function (accum, key) {\n return fn(accum, object[key], key);\n }, initial);\n}\n\n/**\n * Object.assign-style object shallow merge/extend.\n *\n * @param {Object} target\n * @param {Object} ...sources\n * @return {Object}\n */\nfunction assign(target) {\n for (var _len = arguments.length, sources = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n sources[_key - 1] = arguments[_key];\n }\n\n if (Object.assign) {\n return Object.assign.apply(Object, [target].concat(sources));\n }\n\n sources.forEach(function (source) {\n if (!source) {\n return;\n }\n\n each(source, function (value, key) {\n target[key] = value;\n });\n });\n\n return target;\n}\n\n/**\n * Returns whether a value is an object of any kind - including DOM nodes,\n * arrays, regular expressions, etc. Not functions, though.\n *\n * This avoids the gotcha where using `typeof` on a `null` value\n * results in `'object'`.\n *\n * @param {Object} value\n * @return {Boolean}\n */\nfunction isObject(value) {\n return !!value && (typeof value === 'undefined' ? 'undefined' : _typeof(value)) === 'object';\n}\n\n/**\n * Returns whether an object appears to be a \"plain\" object - that is, a\n * direct instance of `Object`.\n *\n * @param {Object} value\n * @return {Boolean}\n */\nfunction isPlain(value) {\n return isObject(value) && toString.call(value) === '[object Object]' && value.constructor === Object;\n}\n\n/**\n * @file log.js\n * @module log\n */\nvar log = void 0;\n\n// This is the private tracking variable for logging level.\nvar level = 'info';\n\n// This is the private tracking variable for the logging history.\nvar history = [];\n\n/**\n * Log messages to the console and history based on the type of message\n *\n * @private\n * @param {string} type\n * The name of the console method to use.\n *\n * @param {Array} args\n * The arguments to be passed to the matching console method.\n *\n * @param {boolean} [stringify]\n * By default, only old IEs should get console argument stringification,\n * but this is exposed as a parameter to facilitate testing.\n */\nvar logByType = function logByType(type, args) {\n var stringify = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : !!IE_VERSION && IE_VERSION < 11;\n\n var lvl = log.levels[level];\n var lvlRegExp = new RegExp('^(' + lvl + ')$');\n\n if (type !== 'log') {\n\n // Add the type to the front of the message when it's not \"log\".\n args.unshift(type.toUpperCase() + ':');\n }\n\n // Add a clone of the args at this point to history.\n if (history) {\n history.push([].concat(args));\n }\n\n // Add console prefix after adding to history.\n args.unshift('VIDEOJS:');\n\n // If there's no console then don't try to output messages, but they will\n // still be stored in history.\n if (!window_1.console) {\n return;\n }\n\n // Was setting these once outside of this function, but containing them\n // in the function makes it easier to test cases where console doesn't exist\n // when the module is executed.\n var fn = window_1.console[type];\n\n if (!fn && type === 'debug') {\n // Certain browsers don't have support for console.debug. For those, we\n // should default to the closest comparable log.\n fn = window_1.console.info || window_1.console.log;\n }\n\n // Bail out if there's no console or if this type is not allowed by the\n // current logging level.\n if (!fn || !lvl || !lvlRegExp.test(type)) {\n return;\n }\n\n // IEs previous to 11 log objects uselessly as \"[object Object]\"; so, JSONify\n // objects and arrays for those less-capable browsers.\n if (stringify) {\n args = args.map(function (a) {\n if (isObject(a) || Array.isArray(a)) {\n try {\n return JSON.stringify(a);\n } catch (x) {\n return String(a);\n }\n }\n\n // Cast to string before joining, so we get null and undefined explicitly\n // included in output (as we would in a modern console).\n return String(a);\n }).join(' ');\n }\n\n // Old IE versions do not allow .apply() for console methods (they are\n // reported as objects rather than functions).\n if (!fn.apply) {\n fn(args);\n } else {\n fn[Array.isArray(args) ? 'apply' : 'call'](window_1.console, args);\n }\n};\n\n/**\n * Logs plain debug messages. Similar to `console.log`.\n *\n * @class\n * @param {Mixed[]} args\n * One or more messages or objects that should be logged.\n */\nlog = function log() {\n for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n logByType('log', args);\n};\n\n/**\n * Enumeration of available logging levels, where the keys are the level names\n * and the values are `|`-separated strings containing logging methods allowed\n * in that logging level. These strings are used to create a regular expression\n * matching the function name being called.\n *\n * Levels provided by video.js are:\n *\n * - `off`: Matches no calls. Any value that can be cast to `false` will have\n * this effect. The most restrictive.\n * - `all`: Matches only Video.js-provided functions (`debug`, `log`,\n * `log.warn`, and `log.error`).\n * - `debug`: Matches `log.debug`, `log`, `log.warn`, and `log.error` calls.\n * - `info` (default): Matches `log`, `log.warn`, and `log.error` calls.\n * - `warn`: Matches `log.warn` and `log.error` calls.\n * - `error`: Matches only `log.error` calls.\n *\n * @type {Object}\n */\nlog.levels = {\n all: 'debug|log|warn|error',\n off: '',\n debug: 'debug|log|warn|error',\n info: 'log|warn|error',\n warn: 'warn|error',\n error: 'error',\n DEFAULT: level\n};\n\n/**\n * Get or set the current logging level. If a string matching a key from\n * {@link log.levels} is provided, acts as a setter. Regardless of argument,\n * returns the current logging level.\n *\n * @param {string} [lvl]\n * Pass to set a new logging level.\n *\n * @return {string}\n * The current logging level.\n */\nlog.level = function (lvl) {\n if (typeof lvl === 'string') {\n if (!log.levels.hasOwnProperty(lvl)) {\n throw new Error('\"' + lvl + '\" in not a valid log level');\n }\n level = lvl;\n }\n return level;\n};\n\n/**\n * Returns an array containing everything that has been logged to the history.\n *\n * This array is a shallow clone of the internal history record. However, its\n * contents are _not_ cloned; so, mutating objects inside this array will\n * mutate them in history.\n *\n * @return {Array}\n */\nlog.history = function () {\n return history ? [].concat(history) : [];\n};\n\n/**\n * Clears the internal history tracking, but does not prevent further history\n * tracking.\n */\nlog.history.clear = function () {\n if (history) {\n history.length = 0;\n }\n};\n\n/**\n * Disable history tracking if it is currently enabled.\n */\nlog.history.disable = function () {\n if (history !== null) {\n history.length = 0;\n history = null;\n }\n};\n\n/**\n * Enable history tracking if it is currently disabled.\n */\nlog.history.enable = function () {\n if (history === null) {\n history = [];\n }\n};\n\n/**\n * Logs error messages. Similar to `console.error`.\n *\n * @param {Mixed[]} args\n * One or more messages or objects that should be logged as an error\n */\nlog.error = function () {\n for (var _len2 = arguments.length, args = Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {\n args[_key2] = arguments[_key2];\n }\n\n return logByType('error', args);\n};\n\n/**\n * Logs warning messages. Similar to `console.warn`.\n *\n * @param {Mixed[]} args\n * One or more messages or objects that should be logged as a warning.\n */\nlog.warn = function () {\n for (var _len3 = arguments.length, args = Array(_len3), _key3 = 0; _key3 < _len3; _key3++) {\n args[_key3] = arguments[_key3];\n }\n\n return logByType('warn', args);\n};\n\n/**\n * Logs debug messages. Similar to `console.debug`, but may also act as a comparable\n * log if `console.debug` is not available\n *\n * @param {Mixed[]} args\n * One or more messages or objects that should be logged as debug.\n */\nlog.debug = function () {\n for (var _len4 = arguments.length, args = Array(_len4), _key4 = 0; _key4 < _len4; _key4++) {\n args[_key4] = arguments[_key4];\n }\n\n return logByType('debug', args);\n};\n\nvar log$1 = log;\n\nfunction clean (s) {\n return s.replace(/\\n\\r?\\s*/g, '')\n}\n\n\nvar tsml = function tsml (sa) {\n var s = ''\n , i = 0;\n\n for (; i < arguments.length; i++)\n s += clean(sa[i]) + (arguments[i + 1] || '');\n\n return s\n};\n\n/**\n * @file computed-style.js\n * @module computed-style\n */\n/**\n * A safe getComputedStyle with an IE8 fallback.\n *\n * This is needed because in Firefox, if the player is loaded in an iframe with\n * `display:none`, then `getComputedStyle` returns `null`, so, we do a null-check to\n * make sure that the player doesn't break in these cases.\n *\n * @param {Element} el\n * The element you want the computed style of\n *\n * @param {string} prop\n * The property name you want\n *\n * @see https://bugzilla.mozilla.org/show_bug.cgi?id=548397\n *\n * @static\n * @const\n */\nfunction computedStyle(el, prop) {\n if (!el || !prop) {\n return '';\n }\n\n if (typeof window_1.getComputedStyle === 'function') {\n var cs = window_1.getComputedStyle(el);\n\n return cs ? cs[prop] : '';\n }\n\n return el.currentStyle[prop] || '';\n}\n\nvar _templateObject = taggedTemplateLiteralLoose(['Setting attributes in the second argument of createEl()\\n has been deprecated. Use the third argument instead.\\n createEl(type, properties, attributes). Attempting to set ', ' to ', '.'], ['Setting attributes in the second argument of createEl()\\n has been deprecated. Use the third argument instead.\\n createEl(type, properties, attributes). Attempting to set ', ' to ', '.']);\n\n/**\n * @file dom.js\n * @module dom\n */\n/**\n * Detect if a value is a string with any non-whitespace characters.\n *\n * @param {string} str\n * The string to check\n *\n * @return {boolean}\n * - True if the string is non-blank\n * - False otherwise\n *\n */\nfunction isNonBlankString(str) {\n return typeof str === 'string' && /\\S/.test(str);\n}\n\n/**\n * Throws an error if the passed string has whitespace. This is used by\n * class methods to be relatively consistent with the classList API.\n *\n * @param {string} str\n * The string to check for whitespace.\n *\n * @throws {Error}\n * Throws an error if there is whitespace in the string.\n *\n */\nfunction throwIfWhitespace(str) {\n if (/\\s/.test(str)) {\n throw new Error('class has illegal whitespace characters');\n }\n}\n\n/**\n * Produce a regular expression for matching a className within an elements className.\n *\n * @param {string} className\n * The className to generate the RegExp for.\n *\n * @return {RegExp}\n * The RegExp that will check for a specific `className` in an elements\n * className.\n */\nfunction classRegExp(className) {\n return new RegExp('(^|\\\\s)' + className + '($|\\\\s)');\n}\n\n/**\n * Whether the current DOM interface appears to be real.\n *\n * @return {Boolean}\n */\nfunction isReal() {\n return (\n\n // Both document and window will never be undefined thanks to `global`.\n document_1 === window_1.document &&\n\n // In IE < 9, DOM methods return \"object\" as their type, so all we can\n // confidently check is that it exists.\n typeof document_1.createElement !== 'undefined'\n );\n}\n\n/**\n * Determines, via duck typing, whether or not a value is a DOM element.\n *\n * @param {Mixed} value\n * The thing to check\n *\n * @return {boolean}\n * - True if it is a DOM element\n * - False otherwise\n */\nfunction isEl(value) {\n return isObject(value) && value.nodeType === 1;\n}\n\n/**\n * Determines if the current DOM is embedded in an iframe.\n *\n * @return {boolean}\n *\n */\nfunction isInFrame() {\n\n // We need a try/catch here because Safari will throw errors when attempting\n // to get either `parent` or `self`\n try {\n return window_1.parent !== window_1.self;\n } catch (x) {\n return true;\n }\n}\n\n/**\n * Creates functions to query the DOM using a given method.\n *\n * @param {string} method\n * The method to create the query with.\n *\n * @return {Function}\n * The query method\n */\nfunction createQuerier(method) {\n return function (selector, context) {\n if (!isNonBlankString(selector)) {\n return document_1[method](null);\n }\n if (isNonBlankString(context)) {\n context = document_1.querySelector(context);\n }\n\n var ctx = isEl(context) ? context : document_1;\n\n return ctx[method] && ctx[method](selector);\n };\n}\n\n/**\n * Creates an element and applies properties.\n *\n * @param {string} [tagName='div']\n * Name of tag to be created.\n *\n * @param {Object} [properties={}]\n * Element properties to be applied.\n *\n * @param {Object} [attributes={}]\n * Element attributes to be applied.\n *\n * @param {String|Element|TextNode|Array|Function} [content]\n * Contents for the element (see: {@link dom:normalizeContent})\n *\n * @return {Element}\n * The element that was created.\n */\nfunction createEl() {\n var tagName = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'div';\n var properties = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n var attributes = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};\n var content = arguments[3];\n\n var el = document_1.createElement(tagName);\n\n Object.getOwnPropertyNames(properties).forEach(function (propName) {\n var val = properties[propName];\n\n // See #2176\n // We originally were accepting both properties and attributes in the\n // same object, but that doesn't work so well.\n if (propName.indexOf('aria-') !== -1 || propName === 'role' || propName === 'type') {\n log$1.warn(tsml(_templateObject, propName, val));\n el.setAttribute(propName, val);\n\n // Handle textContent since it's not supported everywhere and we have a\n // method for it.\n } else if (propName === 'textContent') {\n textContent(el, val);\n } else {\n el[propName] = val;\n }\n });\n\n Object.getOwnPropertyNames(attributes).forEach(function (attrName) {\n el.setAttribute(attrName, attributes[attrName]);\n });\n\n if (content) {\n appendContent(el, content);\n }\n\n return el;\n}\n\n/**\n * Injects text into an element, replacing any existing contents entirely.\n *\n * @param {Element} el\n * The element to add text content into\n *\n * @param {string} text\n * The text content to add.\n *\n * @return {Element}\n * The element with added text content.\n */\nfunction textContent(el, text) {\n if (typeof el.textContent === 'undefined') {\n el.innerText = text;\n } else {\n el.textContent = text;\n }\n return el;\n}\n\n/**\n * Insert an element as the first child node of another\n *\n * @param {Element} child\n * Element to insert\n *\n * @param {Element} parent\n * Element to insert child into\n */\nfunction prependTo(child, parent) {\n if (parent.firstChild) {\n parent.insertBefore(child, parent.firstChild);\n } else {\n parent.appendChild(child);\n }\n}\n\n/**\n * Check if an element has a CSS class\n *\n * @param {Element} element\n * Element to check\n *\n * @param {string} classToCheck\n * Class name to check for\n *\n * @return {boolean}\n * - True if the element had the class\n * - False otherwise.\n *\n * @throws {Error}\n * Throws an error if `classToCheck` has white space.\n */\nfunction hasClass(element, classToCheck) {\n throwIfWhitespace(classToCheck);\n if (element.classList) {\n return element.classList.contains(classToCheck);\n }\n return classRegExp(classToCheck).test(element.className);\n}\n\n/**\n * Add a CSS class name to an element\n *\n * @param {Element} element\n * Element to add class name to.\n *\n * @param {string} classToAdd\n * Class name to add.\n *\n * @return {Element}\n * The dom element with the added class name.\n */\nfunction addClass(element, classToAdd) {\n if (element.classList) {\n element.classList.add(classToAdd);\n\n // Don't need to `throwIfWhitespace` here because `hasElClass` will do it\n // in the case of classList not being supported.\n } else if (!hasClass(element, classToAdd)) {\n element.className = (element.className + ' ' + classToAdd).trim();\n }\n\n return element;\n}\n\n/**\n * Remove a CSS class name from an element\n *\n * @param {Element} element\n * Element to remove a class name from.\n *\n * @param {string} classToRemove\n * Class name to remove\n *\n * @return {Element}\n * The dom element with class name removed.\n */\nfunction removeClass(element, classToRemove) {\n if (element.classList) {\n element.classList.remove(classToRemove);\n } else {\n throwIfWhitespace(classToRemove);\n element.className = element.className.split(/\\s+/).filter(function (c) {\n return c !== classToRemove;\n }).join(' ');\n }\n\n return element;\n}\n\n/**\n * The callback definition for toggleElClass.\n *\n * @callback Dom~PredicateCallback\n * @param {Element} element\n * The DOM element of the Component.\n *\n * @param {string} classToToggle\n * The `className` that wants to be toggled\n *\n * @return {boolean|undefined}\n * - If true the `classToToggle` will get added to `element`.\n * - If false the `classToToggle` will get removed from `element`.\n * - If undefined this callback will be ignored\n */\n\n/**\n * Adds or removes a CSS class name on an element depending on an optional\n * condition or the presence/absence of the class name.\n *\n * @param {Element} element\n * The element to toggle a class name on.\n *\n * @param {string} classToToggle\n * The class that should be toggled\n *\n * @param {boolean|PredicateCallback} [predicate]\n * See the return value for {@link Dom~PredicateCallback}\n *\n * @return {Element}\n * The element with a class that has been toggled.\n */\nfunction toggleClass(element, classToToggle, predicate) {\n\n // This CANNOT use `classList` internally because IE does not support the\n // second parameter to the `classList.toggle()` method! Which is fine because\n // `classList` will be used by the add/remove functions.\n var has = hasClass(element, classToToggle);\n\n if (typeof predicate === 'function') {\n predicate = predicate(element, classToToggle);\n }\n\n if (typeof predicate !== 'boolean') {\n predicate = !has;\n }\n\n // If the necessary class operation matches the current state of the\n // element, no action is required.\n if (predicate === has) {\n return;\n }\n\n if (predicate) {\n addClass(element, classToToggle);\n } else {\n removeClass(element, classToToggle);\n }\n\n return element;\n}\n\n/**\n * Apply attributes to an HTML element.\n *\n * @param {Element} el\n * Element to add attributes to.\n *\n * @param {Object} [attributes]\n * Attributes to be applied.\n */\nfunction setAttributes(el, attributes) {\n Object.getOwnPropertyNames(attributes).forEach(function (attrName) {\n var attrValue = attributes[attrName];\n\n if (attrValue === null || typeof attrValue === 'undefined' || attrValue === false) {\n el.removeAttribute(attrName);\n } else {\n el.setAttribute(attrName, attrValue === true ? '' : attrValue);\n }\n });\n}\n\n/**\n * Get an element's attribute values, as defined on the HTML tag\n * Attributes are not the same as properties. They're defined on the tag\n * or with setAttribute (which shouldn't be used with HTML)\n * This will return true or false for boolean attributes.\n *\n * @param {Element} tag\n * Element from which to get tag attributes.\n *\n * @return {Object}\n * All attributes of the element.\n */\nfunction getAttributes(tag) {\n var obj = {};\n\n // known boolean attributes\n // we can check for matching boolean properties, but older browsers\n // won't know about HTML5 boolean attributes that we still read from\n var knownBooleans = ',' + 'autoplay,controls,playsinline,loop,muted,default,defaultMuted' + ',';\n\n if (tag && tag.attributes && tag.attributes.length > 0) {\n var attrs = tag.attributes;\n\n for (var i = attrs.length - 1; i >= 0; i--) {\n var attrName = attrs[i].name;\n var attrVal = attrs[i].value;\n\n // check for known booleans\n // the matching element property will return a value for typeof\n if (typeof tag[attrName] === 'boolean' || knownBooleans.indexOf(',' + attrName + ',') !== -1) {\n // the value of an included boolean attribute is typically an empty\n // string ('') which would equal false if we just check for a false value.\n // we also don't want support bad code like autoplay='false'\n attrVal = attrVal !== null ? true : false;\n }\n\n obj[attrName] = attrVal;\n }\n }\n\n return obj;\n}\n\n/**\n * Get the value of an element's attribute\n *\n * @param {Element} el\n * A DOM element\n *\n * @param {string} attribute\n * Attribute to get the value of\n *\n * @return {string}\n * value of the attribute\n */\nfunction getAttribute(el, attribute) {\n return el.getAttribute(attribute);\n}\n\n/**\n * Set the value of an element's attribute\n *\n * @param {Element} el\n * A DOM element\n *\n * @param {string} attribute\n * Attribute to set\n *\n * @param {string} value\n * Value to set the attribute to\n */\nfunction setAttribute(el, attribute, value) {\n el.setAttribute(attribute, value);\n}\n\n/**\n * Remove an element's attribute\n *\n * @param {Element} el\n * A DOM element\n *\n * @param {string} attribute\n * Attribute to remove\n */\nfunction removeAttribute(el, attribute) {\n el.removeAttribute(attribute);\n}\n\n/**\n * Attempt to block the ability to select text while dragging controls\n */\nfunction blockTextSelection() {\n document_1.body.focus();\n document_1.onselectstart = function () {\n return false;\n };\n}\n\n/**\n * Turn off text selection blocking\n */\nfunction unblockTextSelection() {\n document_1.onselectstart = function () {\n return true;\n };\n}\n\n/**\n * Identical to the native `getBoundingClientRect` function, but ensures that\n * the method is supported at all (it is in all browsers we claim to support)\n * and that the element is in the DOM before continuing.\n *\n * This wrapper function also shims properties which are not provided by some\n * older browsers (namely, IE8).\n *\n * Additionally, some browsers do not support adding properties to a\n * `ClientRect`/`DOMRect` object; so, we shallow-copy it with the standard\n * properties (except `x` and `y` which are not widely supported). This helps\n * avoid implementations where keys are non-enumerable.\n *\n * @param {Element} el\n * Element whose `ClientRect` we want to calculate.\n *\n * @return {Object|undefined}\n * Always returns a plain\n */\nfunction getBoundingClientRect(el) {\n if (el && el.getBoundingClientRect && el.parentNode) {\n var rect = el.getBoundingClientRect();\n var result = {};\n\n ['bottom', 'height', 'left', 'right', 'top', 'width'].forEach(function (k) {\n if (rect[k] !== undefined) {\n result[k] = rect[k];\n }\n });\n\n if (!result.height) {\n result.height = parseFloat(computedStyle(el, 'height'));\n }\n\n if (!result.width) {\n result.width = parseFloat(computedStyle(el, 'width'));\n }\n\n return result;\n }\n}\n\n/**\n * The postion of a DOM element on the page.\n *\n * @typedef {Object} module:dom~Position\n *\n * @property {number} left\n * Pixels to the left\n *\n * @property {number} top\n * Pixels on top\n */\n\n/**\n * Offset Left.\n * getBoundingClientRect technique from\n * John Resig\n *\n * @see http://ejohn.org/blog/getboundingclientrect-is-awesome/\n *\n * @param {Element} el\n * Element from which to get offset\n *\n * @return {module:dom~Position}\n * The position of the element that was passed in.\n */\nfunction findPosition(el) {\n var box = void 0;\n\n if (el.getBoundingClientRect && el.parentNode) {\n box = el.getBoundingClientRect();\n }\n\n if (!box) {\n return {\n left: 0,\n top: 0\n };\n }\n\n var docEl = document_1.documentElement;\n var body = document_1.body;\n\n var clientLeft = docEl.clientLeft || body.clientLeft || 0;\n var scrollLeft = window_1.pageXOffset || body.scrollLeft;\n var left = box.left + scrollLeft - clientLeft;\n\n var clientTop = docEl.clientTop || body.clientTop || 0;\n var scrollTop = window_1.pageYOffset || body.scrollTop;\n var top = box.top + scrollTop - clientTop;\n\n // Android sometimes returns slightly off decimal values, so need to round\n return {\n left: Math.round(left),\n top: Math.round(top)\n };\n}\n\n/**\n * x and y coordinates for a dom element or mouse pointer\n *\n * @typedef {Object} Dom~Coordinates\n *\n * @property {number} x\n * x coordinate in pixels\n *\n * @property {number} y\n * y coordinate in pixels\n */\n\n/**\n * Get pointer position in element\n * Returns an object with x and y coordinates.\n * The base on the coordinates are the bottom left of the element.\n *\n * @param {Element} el\n * Element on which to get the pointer position on\n *\n * @param {EventTarget~Event} event\n * Event object\n *\n * @return {Dom~Coordinates}\n * A Coordinates object corresponding to the mouse position.\n *\n */\nfunction getPointerPosition(el, event) {\n var position = {};\n var box = findPosition(el);\n var boxW = el.offsetWidth;\n var boxH = el.offsetHeight;\n\n var boxY = box.top;\n var boxX = box.left;\n var pageY = event.pageY;\n var pageX = event.pageX;\n\n if (event.changedTouches) {\n pageX = event.changedTouches[0].pageX;\n pageY = event.changedTouches[0].pageY;\n }\n\n position.y = Math.max(0, Math.min(1, (boxY - pageY + boxH) / boxH));\n position.x = Math.max(0, Math.min(1, (pageX - boxX) / boxW));\n\n return position;\n}\n\n/**\n * Determines, via duck typing, whether or not a value is a text node.\n *\n * @param {Mixed} value\n * Check if this value is a text node.\n *\n * @return {boolean}\n * - True if it is a text node\n * - False otherwise\n */\nfunction isTextNode(value) {\n return isObject(value) && value.nodeType === 3;\n}\n\n/**\n * Empties the contents of an element.\n *\n * @param {Element} el\n * The element to empty children from\n *\n * @return {Element}\n * The element with no children\n */\nfunction emptyEl(el) {\n while (el.firstChild) {\n el.removeChild(el.firstChild);\n }\n return el;\n}\n\n/**\n * Normalizes content for eventual insertion into the DOM.\n *\n * This allows a wide range of content definition methods, but protects\n * from falling into the trap of simply writing to `innerHTML`, which is\n * an XSS concern.\n *\n * The content for an element can be passed in multiple types and\n * combinations, whose behavior is as follows:\n *\n * @param {String|Element|TextNode|Array|Function} content\n * - String: Normalized into a text node.\n * - Element/TextNode: Passed through.\n * - Array: A one-dimensional array of strings, elements, nodes, or functions\n * (which return single strings, elements, or nodes).\n * - Function: If the sole argument, is expected to produce a string, element,\n * node, or array as defined above.\n *\n * @return {Array}\n * All of the content that was passed in normalized.\n */\nfunction normalizeContent(content) {\n\n // First, invoke content if it is a function. If it produces an array,\n // that needs to happen before normalization.\n if (typeof content === 'function') {\n content = content();\n }\n\n // Next up, normalize to an array, so one or many items can be normalized,\n // filtered, and returned.\n return (Array.isArray(content) ? content : [content]).map(function (value) {\n\n // First, invoke value if it is a function to produce a new value,\n // which will be subsequently normalized to a Node of some kind.\n if (typeof value === 'function') {\n value = value();\n }\n\n if (isEl(value) || isTextNode(value)) {\n return value;\n }\n\n if (typeof value === 'string' && /\\S/.test(value)) {\n return document_1.createTextNode(value);\n }\n }).filter(function (value) {\n return value;\n });\n}\n\n/**\n * Normalizes and appends content to an element.\n *\n * @param {Element} el\n * Element to append normalized content to.\n *\n *\n * @param {String|Element|TextNode|Array|Function} content\n * See the `content` argument of {@link dom:normalizeContent}\n *\n * @return {Element}\n * The element with appended normalized content.\n */\nfunction appendContent(el, content) {\n normalizeContent(content).forEach(function (node) {\n return el.appendChild(node);\n });\n return el;\n}\n\n/**\n * Normalizes and inserts content into an element; this is identical to\n * `appendContent()`, except it empties the element first.\n *\n * @param {Element} el\n * Element to insert normalized content into.\n *\n * @param {String|Element|TextNode|Array|Function} content\n * See the `content` argument of {@link dom:normalizeContent}\n *\n * @return {Element}\n * The element with inserted normalized content.\n *\n */\nfunction insertContent(el, content) {\n return appendContent(emptyEl(el), content);\n}\n\n/**\n * Check if event was a single left click\n *\n * @param {EventTarget~Event} event\n * Event object\n *\n * @return {boolean}\n * - True if a left click\n * - False if not a left click\n */\nfunction isSingleLeftClick(event) {\n // Note: if you create something draggable, be sure to\n // call it on both `mousedown` and `mousemove` event,\n // otherwise `mousedown` should be enough for a button\n\n if (event.button === undefined && event.buttons === undefined) {\n // Why do we need `butttons` ?\n // Because, middle mouse sometimes have this:\n // e.button === 0 and e.buttons === 4\n // Furthermore, we want to prevent combination click, something like\n // HOLD middlemouse then left click, that would be\n // e.button === 0, e.buttons === 5\n // just `button` is not gonna work\n\n // Alright, then what this block does ?\n // this is for chrome `simulate mobile devices`\n // I want to support this as well\n\n return true;\n }\n\n if (event.button === 0 && event.buttons === undefined) {\n // Touch screen, sometimes on some specific device, `buttons`\n // doesn't have anything (safari on ios, blackberry...)\n\n return true;\n }\n\n if (IE_VERSION === 9) {\n // Ignore IE9\n\n return true;\n }\n\n if (event.button !== 0 || event.buttons !== 1) {\n // This is the reason we have those if else block above\n // if any special case we can catch and let it slide\n // we do it above, when get to here, this definitely\n // is-not-left-click\n\n return false;\n }\n\n return true;\n}\n\n/**\n * Finds a single DOM element matching `selector` within the optional\n * `context` of another DOM element (defaulting to `document`).\n *\n * @param {string} selector\n * A valid CSS selector, which will be passed to `querySelector`.\n *\n * @param {Element|String} [context=document]\n * A DOM element within which to query. Can also be a selector\n * string in which case the first matching element will be used\n * as context. If missing (or no element matches selector), falls\n * back to `document`.\n *\n * @return {Element|null}\n * The element that was found or null.\n */\nvar $ = createQuerier('querySelector');\n\n/**\n * Finds a all DOM elements matching `selector` within the optional\n * `context` of another DOM element (defaulting to `document`).\n *\n * @param {string} selector\n * A valid CSS selector, which will be passed to `querySelectorAll`.\n *\n * @param {Element|String} [context=document]\n * A DOM element within which to query. Can also be a selector\n * string in which case the first matching element will be used\n * as context. If missing (or no element matches selector), falls\n * back to `document`.\n *\n * @return {NodeList}\n * A element list of elements that were found. Will be empty if none were found.\n *\n */\nvar $$ = createQuerier('querySelectorAll');\n\n\n\nvar Dom = (Object.freeze || Object)({\n\tisReal: isReal,\n\tisEl: isEl,\n\tisInFrame: isInFrame,\n\tcreateEl: createEl,\n\ttextContent: textContent,\n\tprependTo: prependTo,\n\thasClass: hasClass,\n\taddClass: addClass,\n\tremoveClass: removeClass,\n\ttoggleClass: toggleClass,\n\tsetAttributes: setAttributes,\n\tgetAttributes: getAttributes,\n\tgetAttribute: getAttribute,\n\tsetAttribute: setAttribute,\n\tremoveAttribute: removeAttribute,\n\tblockTextSelection: blockTextSelection,\n\tunblockTextSelection: unblockTextSelection,\n\tgetBoundingClientRect: getBoundingClientRect,\n\tfindPosition: findPosition,\n\tgetPointerPosition: getPointerPosition,\n\tisTextNode: isTextNode,\n\temptyEl: emptyEl,\n\tnormalizeContent: normalizeContent,\n\tappendContent: appendContent,\n\tinsertContent: insertContent,\n\tisSingleLeftClick: isSingleLeftClick,\n\t$: $,\n\t$$: $$\n});\n\n/**\n * @file guid.js\n * @module guid\n */\n\n/**\n * Unique ID for an element or function\n * @type {Number}\n */\nvar _guid = 1;\n\n/**\n * Get a unique auto-incrementing ID by number that has not been returned before.\n *\n * @return {number}\n * A new unique ID.\n */\nfunction newGUID() {\n return _guid++;\n}\n\n/**\n * @file dom-data.js\n * @module dom-data\n */\n/**\n * Element Data Store.\n *\n * Allows for binding data to an element without putting it directly on the\n * element. Ex. Event listeners are stored here.\n * (also from jsninja.com, slightly modified and updated for closure compiler)\n *\n * @type {Object}\n * @private\n */\nvar elData = {};\n\n/*\n * Unique attribute name to store an element's guid in\n *\n * @type {String}\n * @constant\n * @private\n */\nvar elIdAttr = 'vdata' + new Date().getTime();\n\n/**\n * Returns the cache object where data for an element is stored\n *\n * @param {Element} el\n * Element to store data for.\n *\n * @return {Object}\n * The cache object for that el that was passed in.\n */\nfunction getData(el) {\n var id = el[elIdAttr];\n\n if (!id) {\n id = el[elIdAttr] = newGUID();\n }\n\n if (!elData[id]) {\n elData[id] = {};\n }\n\n return elData[id];\n}\n\n/**\n * Returns whether or not an element has cached data\n *\n * @param {Element} el\n * Check if this element has cached data.\n *\n * @return {boolean}\n * - True if the DOM element has cached data.\n * - False otherwise.\n */\nfunction hasData(el) {\n var id = el[elIdAttr];\n\n if (!id) {\n return false;\n }\n\n return !!Object.getOwnPropertyNames(elData[id]).length;\n}\n\n/**\n * Delete data for the element from the cache and the guid attr from getElementById\n *\n * @param {Element} el\n * Remove cached data for this element.\n */\nfunction removeData(el) {\n var id = el[elIdAttr];\n\n if (!id) {\n return;\n }\n\n // Remove all stored data\n delete elData[id];\n\n // Remove the elIdAttr property from the DOM node\n try {\n delete el[elIdAttr];\n } catch (e) {\n if (el.removeAttribute) {\n el.removeAttribute(elIdAttr);\n } else {\n // IE doesn't appear to support removeAttribute on the document element\n el[elIdAttr] = null;\n }\n }\n}\n\n/**\n * @file events.js. An Event System (John Resig - Secrets of a JS Ninja http://jsninja.com/)\n * (Original book version wasn't completely usable, so fixed some things and made Closure Compiler compatible)\n * This should work very similarly to jQuery's events, however it's based off the book version which isn't as\n * robust as jquery's, so there's probably some differences.\n *\n * @module events\n */\n\n/**\n * Clean up the listener cache and dispatchers\n *\n * @param {Element|Object} elem\n * Element to clean up\n *\n * @param {string} type\n * Type of event to clean up\n */\nfunction _cleanUpEvents(elem, type) {\n var data = getData(elem);\n\n // Remove the events of a particular type if there are none left\n if (data.handlers[type].length === 0) {\n delete data.handlers[type];\n // data.handlers[type] = null;\n // Setting to null was causing an error with data.handlers\n\n // Remove the meta-handler from the element\n if (elem.removeEventListener) {\n elem.removeEventListener(type, data.dispatcher, false);\n } else if (elem.detachEvent) {\n elem.detachEvent('on' + type, data.dispatcher);\n }\n }\n\n // Remove the events object if there are no types left\n if (Object.getOwnPropertyNames(data.handlers).length <= 0) {\n delete data.handlers;\n delete data.dispatcher;\n delete data.disabled;\n }\n\n // Finally remove the element data if there is no data left\n if (Object.getOwnPropertyNames(data).length === 0) {\n removeData(elem);\n }\n}\n\n/**\n * Loops through an array of event types and calls the requested method for each type.\n *\n * @param {Function} fn\n * The event method we want to use.\n *\n * @param {Element|Object} elem\n * Element or object to bind listeners to\n *\n * @param {string} type\n * Type of event to bind to.\n *\n * @param {EventTarget~EventListener} callback\n * Event listener.\n */\nfunction _handleMultipleEvents(fn, elem, types, callback) {\n types.forEach(function (type) {\n // Call the event method for each one of the types\n fn(elem, type, callback);\n });\n}\n\n/**\n * Fix a native event to have standard property values\n *\n * @param {Object} event\n * Event object to fix.\n *\n * @return {Object}\n * Fixed event object.\n */\nfunction fixEvent(event) {\n\n function returnTrue() {\n return true;\n }\n\n function returnFalse() {\n return false;\n }\n\n // Test if fixing up is needed\n // Used to check if !event.stopPropagation instead of isPropagationStopped\n // But native events return true for stopPropagation, but don't have\n // other expected methods like isPropagationStopped. Seems to be a problem\n // with the Javascript Ninja code. So we're just overriding all events now.\n if (!event || !event.isPropagationStopped) {\n var old = event || window_1.event;\n\n event = {};\n // Clone the old object so that we can modify the values event = {};\n // IE8 Doesn't like when you mess with native event properties\n // Firefox returns false for event.hasOwnProperty('type') and other props\n // which makes copying more difficult.\n // TODO: Probably best to create a whitelist of event props\n for (var key in old) {\n // Safari 6.0.3 warns you if you try to copy deprecated layerX/Y\n // Chrome warns you if you try to copy deprecated keyboardEvent.keyLocation\n // and webkitMovementX/Y\n if (key !== 'layerX' && key !== 'layerY' && key !== 'keyLocation' && key !== 'webkitMovementX' && key !== 'webkitMovementY') {\n // Chrome 32+ warns if you try to copy deprecated returnValue, but\n // we still want to if preventDefault isn't supported (IE8).\n if (!(key === 'returnValue' && old.preventDefault)) {\n event[key] = old[key];\n }\n }\n }\n\n // The event occurred on this element\n if (!event.target) {\n event.target = event.srcElement || document_1;\n }\n\n // Handle which other element the event is related to\n if (!event.relatedTarget) {\n event.relatedTarget = event.fromElement === event.target ? event.toElement : event.fromElement;\n }\n\n // Stop the default browser action\n event.preventDefault = function () {\n if (old.preventDefault) {\n old.preventDefault();\n }\n event.returnValue = false;\n old.returnValue = false;\n event.defaultPrevented = true;\n };\n\n event.defaultPrevented = false;\n\n // Stop the event from bubbling\n event.stopPropagation = function () {\n if (old.stopPropagation) {\n old.stopPropagation();\n }\n event.cancelBubble = true;\n old.cancelBubble = true;\n event.isPropagationStopped = returnTrue;\n };\n\n event.isPropagationStopped = returnFalse;\n\n // Stop the event from bubbling and executing other handlers\n event.stopImmediatePropagation = function () {\n if (old.stopImmediatePropagation) {\n old.stopImmediatePropagation();\n }\n event.isImmediatePropagationStopped = returnTrue;\n event.stopPropagation();\n };\n\n event.isImmediatePropagationStopped = returnFalse;\n\n // Handle mouse position\n if (event.clientX !== null && event.clientX !== undefined) {\n var doc = document_1.documentElement;\n var body = document_1.body;\n\n event.pageX = event.clientX + (doc && doc.scrollLeft || body && body.scrollLeft || 0) - (doc && doc.clientLeft || body && body.clientLeft || 0);\n event.pageY = event.clientY + (doc && doc.scrollTop || body && body.scrollTop || 0) - (doc && doc.clientTop || body && body.clientTop || 0);\n }\n\n // Handle key presses\n event.which = event.charCode || event.keyCode;\n\n // Fix button for mouse clicks:\n // 0 == left; 1 == middle; 2 == right\n if (event.button !== null && event.button !== undefined) {\n\n // The following is disabled because it does not pass videojs-standard\n // and... yikes.\n /* eslint-disable */\n event.button = event.button & 1 ? 0 : event.button & 4 ? 1 : event.button & 2 ? 2 : 0;\n /* eslint-enable */\n }\n }\n\n // Returns fixed-up instance\n return event;\n}\n\n/**\n * Whether passive event listeners are supported\n */\nvar _supportsPassive = false;\n\n(function () {\n try {\n var opts = Object.defineProperty({}, 'passive', {\n get: function get() {\n _supportsPassive = true;\n }\n });\n\n window_1.addEventListener('test', null, opts);\n window_1.removeEventListener('test', null, opts);\n } catch (e) {\n // disregard\n }\n})();\n\n/**\n * Touch events Chrome expects to be passive\n */\nvar passiveEvents = ['touchstart', 'touchmove'];\n\n/**\n * Add an event listener to element\n * It stores the handler function in a separate cache object\n * and adds a generic handler to the element's event,\n * along with a unique id (guid) to the element.\n *\n * @param {Element|Object} elem\n * Element or object to bind listeners to\n *\n * @param {string|string[]} type\n * Type of event to bind to.\n *\n * @param {EventTarget~EventListener} fn\n * Event listener.\n */\nfunction on(elem, type, fn) {\n if (Array.isArray(type)) {\n return _handleMultipleEvents(on, elem, type, fn);\n }\n\n var data = getData(elem);\n\n // We need a place to store all our handler data\n if (!data.handlers) {\n data.handlers = {};\n }\n\n if (!data.handlers[type]) {\n data.handlers[type] = [];\n }\n\n if (!fn.guid) {\n fn.guid = newGUID();\n }\n\n data.handlers[type].push(fn);\n\n if (!data.dispatcher) {\n data.disabled = false;\n\n data.dispatcher = function (event, hash) {\n\n if (data.disabled) {\n return;\n }\n\n event = fixEvent(event);\n\n var handlers = data.handlers[event.type];\n\n if (handlers) {\n // Copy handlers so if handlers are added/removed during the process it doesn't throw everything off.\n var handlersCopy = handlers.slice(0);\n\n for (var m = 0, n = handlersCopy.length; m < n; m++) {\n if (event.isImmediatePropagationStopped()) {\n break;\n } else {\n try {\n handlersCopy[m].call(elem, event, hash);\n } catch (e) {\n log$1.error(e);\n }\n }\n }\n }\n };\n }\n\n if (data.handlers[type].length === 1) {\n if (elem.addEventListener) {\n var options = false;\n\n if (_supportsPassive && passiveEvents.indexOf(type) > -1) {\n options = { passive: true };\n }\n elem.addEventListener(type, data.dispatcher, options);\n } else if (elem.attachEvent) {\n elem.attachEvent('on' + type, data.dispatcher);\n }\n }\n}\n\n/**\n * Removes event listeners from an element\n *\n * @param {Element|Object} elem\n * Object to remove listeners from.\n *\n * @param {string|string[]} [type]\n * Type of listener to remove. Don't include to remove all events from element.\n *\n * @param {EventTarget~EventListener} [fn]\n * Specific listener to remove. Don't include to remove listeners for an event\n * type.\n */\nfunction off(elem, type, fn) {\n // Don't want to add a cache object through getElData if not needed\n if (!hasData(elem)) {\n return;\n }\n\n var data = getData(elem);\n\n // If no events exist, nothing to unbind\n if (!data.handlers) {\n return;\n }\n\n if (Array.isArray(type)) {\n return _handleMultipleEvents(off, elem, type, fn);\n }\n\n // Utility function\n var removeType = function removeType(el, t) {\n data.handlers[t] = [];\n _cleanUpEvents(el, t);\n };\n\n // Are we removing all bound events?\n if (type === undefined) {\n for (var t in data.handlers) {\n if (Object.prototype.hasOwnProperty.call(data.handlers || {}, t)) {\n removeType(elem, t);\n }\n }\n return;\n }\n\n var handlers = data.handlers[type];\n\n // If no handlers exist, nothing to unbind\n if (!handlers) {\n return;\n }\n\n // If no listener was provided, remove all listeners for type\n if (!fn) {\n removeType(elem, type);\n return;\n }\n\n // We're only removing a single handler\n if (fn.guid) {\n for (var n = 0; n < handlers.length; n++) {\n if (handlers[n].guid === fn.guid) {\n handlers.splice(n--, 1);\n }\n }\n }\n\n _cleanUpEvents(elem, type);\n}\n\n/**\n * Trigger an event for an element\n *\n * @param {Element|Object} elem\n * Element to trigger an event on\n *\n * @param {EventTarget~Event|string} event\n * A string (the type) or an event object with a type attribute\n *\n * @param {Object} [hash]\n * data hash to pass along with the event\n *\n * @return {boolean|undefined}\n * - Returns the opposite of `defaultPrevented` if default was prevented\n * - Otherwise returns undefined\n */\nfunction trigger(elem, event, hash) {\n // Fetches element data and a reference to the parent (for bubbling).\n // Don't want to add a data object to cache for every parent,\n // so checking hasElData first.\n var elemData = hasData(elem) ? getData(elem) : {};\n var parent = elem.parentNode || elem.ownerDocument;\n // type = event.type || event,\n // handler;\n\n // If an event name was passed as a string, creates an event out of it\n if (typeof event === 'string') {\n event = { type: event, target: elem };\n }\n // Normalizes the event properties.\n event = fixEvent(event);\n\n // If the passed element has a dispatcher, executes the established handlers.\n if (elemData.dispatcher) {\n elemData.dispatcher.call(elem, event, hash);\n }\n\n // Unless explicitly stopped or the event does not bubble (e.g. media events)\n // recursively calls this function to bubble the event up the DOM.\n if (parent && !event.isPropagationStopped() && event.bubbles === true) {\n trigger.call(null, parent, event, hash);\n\n // If at the top of the DOM, triggers the default action unless disabled.\n } else if (!parent && !event.defaultPrevented) {\n var targetData = getData(event.target);\n\n // Checks if the target has a default action for this event.\n if (event.target[event.type]) {\n // Temporarily disables event dispatching on the target as we have already executed the handler.\n targetData.disabled = true;\n // Executes the default action.\n if (typeof event.target[event.type] === 'function') {\n event.target[event.type]();\n }\n // Re-enables event dispatching.\n targetData.disabled = false;\n }\n }\n\n // Inform the triggerer if the default was prevented by returning false\n return !event.defaultPrevented;\n}\n\n/**\n * Trigger a listener only once for an event\n *\n * @param {Element|Object} elem\n * Element or object to bind to.\n *\n * @param {string|string[]} type\n * Name/type of event\n *\n * @param {Event~EventListener} fn\n * Event Listener function\n */\nfunction one(elem, type, fn) {\n if (Array.isArray(type)) {\n return _handleMultipleEvents(one, elem, type, fn);\n }\n var func = function func() {\n off(elem, type, func);\n fn.apply(this, arguments);\n };\n\n // copy the guid to the new function so it can removed using the original function's ID\n func.guid = fn.guid = fn.guid || newGUID();\n on(elem, type, func);\n}\n\nvar Events = (Object.freeze || Object)({\n\tfixEvent: fixEvent,\n\ton: on,\n\toff: off,\n\ttrigger: trigger,\n\tone: one\n});\n\n/**\n * @file setup.js - Functions for setting up a player without\n * user interaction based on the data-setup `attribute` of the video tag.\n *\n * @module setup\n */\nvar _windowLoaded = false;\nvar videojs$2 = void 0;\n\n/**\n * Set up any tags that have a data-setup `attribute` when the player is started.\n */\nvar autoSetup = function autoSetup() {\n\n // Protect against breakage in non-browser environments.\n if (!isReal()) {\n return;\n }\n\n // One day, when we stop supporting IE8, go back to this, but in the meantime...*hack hack hack*\n // var vids = Array.prototype.slice.call(document.getElementsByTagName('video'));\n // var audios = Array.prototype.slice.call(document.getElementsByTagName('audio'));\n // var mediaEls = vids.concat(audios);\n\n // Because IE8 doesn't support calling slice on a node list, we need to loop\n // through each list of elements to build up a new, combined list of elements.\n var vids = document_1.getElementsByTagName('video');\n var audios = document_1.getElementsByTagName('audio');\n var divs = document_1.getElementsByTagName('video-js');\n var mediaEls = [];\n\n if (vids && vids.length > 0) {\n for (var i = 0, e = vids.length; i < e; i++) {\n mediaEls.push(vids[i]);\n }\n }\n\n if (audios && audios.length > 0) {\n for (var _i = 0, _e = audios.length; _i < _e; _i++) {\n mediaEls.push(audios[_i]);\n }\n }\n\n if (divs && divs.length > 0) {\n for (var _i2 = 0, _e2 = divs.length; _i2 < _e2; _i2++) {\n mediaEls.push(divs[_i2]);\n }\n }\n\n // Check if any media elements exist\n if (mediaEls && mediaEls.length > 0) {\n\n for (var _i3 = 0, _e3 = mediaEls.length; _i3 < _e3; _i3++) {\n var mediaEl = mediaEls[_i3];\n\n // Check if element exists, has getAttribute func.\n // IE seems to consider typeof el.getAttribute == 'object' instead of\n // 'function' like expected, at least when loading the player immediately.\n if (mediaEl && mediaEl.getAttribute) {\n\n // Make sure this player hasn't already been set up.\n if (mediaEl.player === undefined) {\n var options = mediaEl.getAttribute('data-setup');\n\n // Check if data-setup attr exists.\n // We only auto-setup if they've added the data-setup attr.\n if (options !== null) {\n // Create new video.js instance.\n videojs$2(mediaEl);\n }\n }\n\n // If getAttribute isn't defined, we need to wait for the DOM.\n } else {\n autoSetupTimeout(1);\n break;\n }\n }\n\n // No videos were found, so keep looping unless page is finished loading.\n } else if (!_windowLoaded) {\n autoSetupTimeout(1);\n }\n};\n\n/**\n * Wait until the page is loaded before running autoSetup. This will be called in\n * autoSetup if `hasLoaded` returns false.\n *\n * @param {number} wait\n * How long to wait in ms\n *\n * @param {module:videojs} [vjs]\n * The videojs library function\n */\nfunction autoSetupTimeout(wait, vjs) {\n if (vjs) {\n videojs$2 = vjs;\n }\n\n window_1.setTimeout(autoSetup, wait);\n}\n\nif (isReal() && document_1.readyState === 'complete') {\n _windowLoaded = true;\n} else {\n /**\n * Listen for the load event on window, and set _windowLoaded to true.\n *\n * @listens load\n */\n one(window_1, 'load', function () {\n _windowLoaded = true;\n });\n}\n\n/**\n * @file stylesheet.js\n * @module stylesheet\n */\n/**\n * Create a DOM syle element given a className for it.\n *\n * @param {string} className\n * The className to add to the created style element.\n *\n * @return {Element}\n * The element that was created.\n */\nvar createStyleElement = function createStyleElement(className) {\n var style = document_1.createElement('style');\n\n style.className = className;\n\n return style;\n};\n\n/**\n * Add text to a DOM element.\n *\n * @param {Element} el\n * The Element to add text content to.\n *\n * @param {string} content\n * The text to add to the element.\n */\nvar setTextContent = function setTextContent(el, content) {\n if (el.styleSheet) {\n el.styleSheet.cssText = content;\n } else {\n el.textContent = content;\n }\n};\n\n/**\n * @file fn.js\n * @module fn\n */\n/**\n * Bind (a.k.a proxy or Context). A simple method for changing the context of a function\n * It also stores a unique id on the function so it can be easily removed from events.\n *\n * @param {Mixed} context\n * The object to bind as scope.\n *\n * @param {Function} fn\n * The function to be bound to a scope.\n *\n * @param {number} [uid]\n * An optional unique ID for the function to be set\n *\n * @return {Function}\n * The new function that will be bound into the context given\n */\nvar bind = function bind(context, fn, uid) {\n // Make sure the function has a unique ID\n if (!fn.guid) {\n fn.guid = newGUID();\n }\n\n // Create the new function that changes the context\n var bound = function bound() {\n return fn.apply(context, arguments);\n };\n\n // Allow for the ability to individualize this function\n // Needed in the case where multiple objects might share the same prototype\n // IF both items add an event listener with the same function, then you try to remove just one\n // it will remove both because they both have the same guid.\n // when using this, you need to use the bind method when you remove the listener as well.\n // currently used in text tracks\n bound.guid = uid ? uid + '_' + fn.guid : fn.guid;\n\n return bound;\n};\n\n/**\n * Wraps the given function, `fn`, with a new function that only invokes `fn`\n * at most once per every `wait` milliseconds.\n *\n * @param {Function} fn\n * The function to be throttled.\n *\n * @param {Number} wait\n * The number of milliseconds by which to throttle.\n *\n * @return {Function}\n */\nvar throttle = function throttle(fn, wait) {\n var last = Date.now();\n\n var throttled = function throttled() {\n var now = Date.now();\n\n if (now - last >= wait) {\n fn.apply(undefined, arguments);\n last = now;\n }\n };\n\n return throttled;\n};\n\n/**\n * Creates a debounced function that delays invoking `func` until after `wait`\n * milliseconds have elapsed since the last time the debounced function was\n * invoked.\n *\n * Inspired by lodash and underscore implementations.\n *\n * @param {Function} func\n * The function to wrap with debounce behavior.\n *\n * @param {number} wait\n * The number of milliseconds to wait after the last invocation.\n *\n * @param {boolean} [immediate]\n * Whether or not to invoke the function immediately upon creation.\n *\n * @param {Object} [context=window]\n * The \"context\" in which the debounced function should debounce. For\n * example, if this function should be tied to a Video.js player,\n * the player can be passed here. Alternatively, defaults to the\n * global `window` object.\n *\n * @return {Function}\n * A debounced function.\n */\nvar debounce = function debounce(func, wait, immediate) {\n var context = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : window_1;\n\n var timeout = void 0;\n\n /* eslint-disable consistent-this */\n return function () {\n var self = this;\n var args = arguments;\n\n var _later = function later() {\n timeout = null;\n _later = null;\n if (!immediate) {\n func.apply(self, args);\n }\n };\n\n if (!timeout && immediate) {\n func.apply(self, args);\n }\n\n context.clearTimeout(timeout);\n timeout = context.setTimeout(_later, wait);\n };\n /* eslint-enable consistent-this */\n};\n\n/**\n * @file src/js/event-target.js\n */\n/**\n * `EventTarget` is a class that can have the same API as the DOM `EventTarget`. It\n * adds shorthand functions that wrap around lengthy functions. For example:\n * the `on` function is a wrapper around `addEventListener`.\n *\n * @see [EventTarget Spec]{@link https://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-EventTarget}\n * @class EventTarget\n */\nvar EventTarget = function EventTarget() {};\n\n/**\n * A Custom DOM event.\n *\n * @typedef {Object} EventTarget~Event\n * @see [Properties]{@link https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent}\n */\n\n/**\n * All event listeners should follow the following format.\n *\n * @callback EventTarget~EventListener\n * @this {EventTarget}\n *\n * @param {EventTarget~Event} event\n * the event that triggered this function\n *\n * @param {Object} [hash]\n * hash of data sent during the event\n */\n\n/**\n * An object containing event names as keys and booleans as values.\n *\n * > NOTE: If an event name is set to a true value here {@link EventTarget#trigger}\n * will have extra functionality. See that function for more information.\n *\n * @property EventTarget.prototype.allowedEvents_\n * @private\n */\nEventTarget.prototype.allowedEvents_ = {};\n\n/**\n * Adds an `event listener` to an instance of an `EventTarget`. An `event listener` is a\n * function that will get called when an event with a certain name gets triggered.\n *\n * @param {string|string[]} type\n * An event name or an array of event names.\n *\n * @param {EventTarget~EventListener} fn\n * The function to call with `EventTarget`s\n */\nEventTarget.prototype.on = function (type, fn) {\n // Remove the addEventListener alias before calling Events.on\n // so we don't get into an infinite type loop\n var ael = this.addEventListener;\n\n this.addEventListener = function () {};\n on(this, type, fn);\n this.addEventListener = ael;\n};\n\n/**\n * An alias of {@link EventTarget#on}. Allows `EventTarget` to mimic\n * the standard DOM API.\n *\n * @function\n * @see {@link EventTarget#on}\n */\nEventTarget.prototype.addEventListener = EventTarget.prototype.on;\n\n/**\n * Removes an `event listener` for a specific event from an instance of `EventTarget`.\n * This makes it so that the `event listener` will no longer get called when the\n * named event happens.\n *\n * @param {string|string[]} type\n * An event name or an array of event names.\n *\n * @param {EventTarget~EventListener} fn\n * The function to remove.\n */\nEventTarget.prototype.off = function (type, fn) {\n off(this, type, fn);\n};\n\n/**\n * An alias of {@link EventTarget#off}. Allows `EventTarget` to mimic\n * the standard DOM API.\n *\n * @function\n * @see {@link EventTarget#off}\n */\nEventTarget.prototype.removeEventListener = EventTarget.prototype.off;\n\n/**\n * This function will add an `event listener` that gets triggered only once. After the\n * first trigger it will get removed. This is like adding an `event listener`\n * with {@link EventTarget#on} that calls {@link EventTarget#off} on itself.\n *\n * @param {string|string[]} type\n * An event name or an array of event names.\n *\n * @param {EventTarget~EventListener} fn\n * The function to be called once for each event name.\n */\nEventTarget.prototype.one = function (type, fn) {\n // Remove the addEventListener alialing Events.on\n // so we don't get into an infinite type loop\n var ael = this.addEventListener;\n\n this.addEventListener = function () {};\n one(this, type, fn);\n this.addEventListener = ael;\n};\n\n/**\n * This function causes an event to happen. This will then cause any `event listeners`\n * that are waiting for that event, to get called. If there are no `event listeners`\n * for an event then nothing will happen.\n *\n * If the name of the `Event` that is being triggered is in `EventTarget.allowedEvents_`.\n * Trigger will also call the `on` + `uppercaseEventName` function.\n *\n * Example:\n * 'click' is in `EventTarget.allowedEvents_`, so, trigger will attempt to call\n * `onClick` if it exists.\n *\n * @param {string|EventTarget~Event|Object} event\n * The name of the event, an `Event`, or an object with a key of type set to\n * an event name.\n */\nEventTarget.prototype.trigger = function (event) {\n var type = event.type || event;\n\n if (typeof event === 'string') {\n event = { type: type };\n }\n event = fixEvent(event);\n\n if (this.allowedEvents_[type] && this['on' + type]) {\n this['on' + type](event);\n }\n\n trigger(this, event);\n};\n\n/**\n * An alias of {@link EventTarget#trigger}. Allows `EventTarget` to mimic\n * the standard DOM API.\n *\n * @function\n * @see {@link EventTarget#trigger}\n */\nEventTarget.prototype.dispatchEvent = EventTarget.prototype.trigger;\n\n/**\n * @file mixins/evented.js\n * @module evented\n */\n/**\n * Returns whether or not an object has had the evented mixin applied.\n *\n * @param {Object} object\n * An object to test.\n *\n * @return {boolean}\n * Whether or not the object appears to be evented.\n */\nvar isEvented = function isEvented(object) {\n return object instanceof EventTarget || !!object.eventBusEl_ && ['on', 'one', 'off', 'trigger'].every(function (k) {\n return typeof object[k] === 'function';\n });\n};\n\n/**\n * Whether a value is a valid event type - non-empty string or array.\n *\n * @private\n * @param {string|Array} type\n * The type value to test.\n *\n * @return {boolean}\n * Whether or not the type is a valid event type.\n */\nvar isValidEventType = function isValidEventType(type) {\n return (\n // The regex here verifies that the `type` contains at least one non-\n // whitespace character.\n typeof type === 'string' && /\\S/.test(type) || Array.isArray(type) && !!type.length\n );\n};\n\n/**\n * Validates a value to determine if it is a valid event target. Throws if not.\n *\n * @private\n * @throws {Error}\n * If the target does not appear to be a valid event target.\n *\n * @param {Object} target\n * The object to test.\n */\nvar validateTarget = function validateTarget(target) {\n if (!target.nodeName && !isEvented(target)) {\n throw new Error('Invalid target; must be a DOM node or evented object.');\n }\n};\n\n/**\n * Validates a value to determine if it is a valid event target. Throws if not.\n *\n * @private\n * @throws {Error}\n * If the type does not appear to be a valid event type.\n *\n * @param {string|Array} type\n * The type to test.\n */\nvar validateEventType = function validateEventType(type) {\n if (!isValidEventType(type)) {\n throw new Error('Invalid event type; must be a non-empty string or array.');\n }\n};\n\n/**\n * Validates a value to determine if it is a valid listener. Throws if not.\n *\n * @private\n * @throws {Error}\n * If the listener is not a function.\n *\n * @param {Function} listener\n * The listener to test.\n */\nvar validateListener = function validateListener(listener) {\n if (typeof listener !== 'function') {\n throw new Error('Invalid listener; must be a function.');\n }\n};\n\n/**\n * Takes an array of arguments given to `on()` or `one()`, validates them, and\n * normalizes them into an object.\n *\n * @private\n * @param {Object} self\n * The evented object on which `on()` or `one()` was called. This\n * object will be bound as the `this` value for the listener.\n *\n * @param {Array} args\n * An array of arguments passed to `on()` or `one()`.\n *\n * @return {Object}\n * An object containing useful values for `on()` or `one()` calls.\n */\nvar normalizeListenArgs = function normalizeListenArgs(self, args) {\n\n // If the number of arguments is less than 3, the target is always the\n // evented object itself.\n var isTargetingSelf = args.length < 3 || args[0] === self || args[0] === self.eventBusEl_;\n var target = void 0;\n var type = void 0;\n var listener = void 0;\n\n if (isTargetingSelf) {\n target = self.eventBusEl_;\n\n // Deal with cases where we got 3 arguments, but we are still listening to\n // the evented object itself.\n if (args.length >= 3) {\n args.shift();\n }\n\n type = args[0];\n listener = args[1];\n } else {\n target = args[0];\n type = args[1];\n listener = args[2];\n }\n\n validateTarget(target);\n validateEventType(type);\n validateListener(listener);\n\n listener = bind(self, listener);\n\n return { isTargetingSelf: isTargetingSelf, target: target, type: type, listener: listener };\n};\n\n/**\n * Adds the listener to the event type(s) on the target, normalizing for\n * the type of target.\n *\n * @private\n * @param {Element|Object} target\n * A DOM node or evented object.\n *\n * @param {string} method\n * The event binding method to use (\"on\" or \"one\").\n *\n * @param {string|Array} type\n * One or more event type(s).\n *\n * @param {Function} listener\n * A listener function.\n */\nvar listen = function listen(target, method, type, listener) {\n validateTarget(target);\n\n if (target.nodeName) {\n Events[method](target, type, listener);\n } else {\n target[method](type, listener);\n }\n};\n\n/**\n * Contains methods that provide event capabilites to an object which is passed\n * to {@link module:evented|evented}.\n *\n * @mixin EventedMixin\n */\nvar EventedMixin = {\n\n /**\n * Add a listener to an event (or events) on this object or another evented\n * object.\n *\n * @param {string|Array|Element|Object} targetOrType\n * If this is a string or array, it represents the event type(s)\n * that will trigger the listener.\n *\n * Another evented object can be passed here instead, which will\n * cause the listener to listen for events on _that_ object.\n *\n * In either case, the listener's `this` value will be bound to\n * this object.\n *\n * @param {string|Array|Function} typeOrListener\n * If the first argument was a string or array, this should be the\n * listener function. Otherwise, this is a string or array of event\n * type(s).\n *\n * @param {Function} [listener]\n * If the first argument was another evented object, this will be\n * the listener function.\n */\n on: function on$$1() {\n var _this = this;\n\n for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n var _normalizeListenArgs = normalizeListenArgs(this, args),\n isTargetingSelf = _normalizeListenArgs.isTargetingSelf,\n target = _normalizeListenArgs.target,\n type = _normalizeListenArgs.type,\n listener = _normalizeListenArgs.listener;\n\n listen(target, 'on', type, listener);\n\n // If this object is listening to another evented object.\n if (!isTargetingSelf) {\n\n // If this object is disposed, remove the listener.\n var removeListenerOnDispose = function removeListenerOnDispose() {\n return _this.off(target, type, listener);\n };\n\n // Use the same function ID as the listener so we can remove it later it\n // using the ID of the original listener.\n removeListenerOnDispose.guid = listener.guid;\n\n // Add a listener to the target's dispose event as well. This ensures\n // that if the target is disposed BEFORE this object, we remove the\n // removal listener that was just added. Otherwise, we create a memory leak.\n var removeRemoverOnTargetDispose = function removeRemoverOnTargetDispose() {\n return _this.off('dispose', removeListenerOnDispose);\n };\n\n // Use the same function ID as the listener so we can remove it later\n // it using the ID of the original listener.\n removeRemoverOnTargetDispose.guid = listener.guid;\n\n listen(this, 'on', 'dispose', removeListenerOnDispose);\n listen(target, 'on', 'dispose', removeRemoverOnTargetDispose);\n }\n },\n\n\n /**\n * Add a listener to an event (or events) on this object or another evented\n * object. The listener will only be called once and then removed.\n *\n * @param {string|Array|Element|Object} targetOrType\n * If this is a string or array, it represents the event type(s)\n * that will trigger the listener.\n *\n * Another evented object can be passed here instead, which will\n * cause the listener to listen for events on _that_ object.\n *\n * In either case, the listener's `this` value will be bound to\n * this object.\n *\n * @param {string|Array|Function} typeOrListener\n * If the first argument was a string or array, this should be the\n * listener function. Otherwise, this is a string or array of event\n * type(s).\n *\n * @param {Function} [listener]\n * If the first argument was another evented object, this will be\n * the listener function.\n */\n one: function one$$1() {\n var _this2 = this;\n\n for (var _len2 = arguments.length, args = Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {\n args[_key2] = arguments[_key2];\n }\n\n var _normalizeListenArgs2 = normalizeListenArgs(this, args),\n isTargetingSelf = _normalizeListenArgs2.isTargetingSelf,\n target = _normalizeListenArgs2.target,\n type = _normalizeListenArgs2.type,\n listener = _normalizeListenArgs2.listener;\n\n // Targeting this evented object.\n\n\n if (isTargetingSelf) {\n listen(target, 'one', type, listener);\n\n // Targeting another evented object.\n } else {\n var wrapper = function wrapper() {\n for (var _len3 = arguments.length, largs = Array(_len3), _key3 = 0; _key3 < _len3; _key3++) {\n largs[_key3] = arguments[_key3];\n }\n\n _this2.off(target, type, wrapper);\n listener.apply(null, largs);\n };\n\n // Use the same function ID as the listener so we can remove it later\n // it using the ID of the original listener.\n wrapper.guid = listener.guid;\n listen(target, 'one', type, wrapper);\n }\n },\n\n\n /**\n * Removes listener(s) from event(s) on an evented object.\n *\n * @param {string|Array|Element|Object} [targetOrType]\n * If this is a string or array, it represents the event type(s).\n *\n * Another evented object can be passed here instead, in which case\n * ALL 3 arguments are _required_.\n *\n * @param {string|Array|Function} [typeOrListener]\n * If the first argument was a string or array, this may be the\n * listener function. Otherwise, this is a string or array of event\n * type(s).\n *\n * @param {Function} [listener]\n * If the first argument was another evented object, this will be\n * the listener function; otherwise, _all_ listeners bound to the\n * event type(s) will be removed.\n */\n off: function off$$1(targetOrType, typeOrListener, listener) {\n\n // Targeting this evented object.\n if (!targetOrType || isValidEventType(targetOrType)) {\n off(this.eventBusEl_, targetOrType, typeOrListener);\n\n // Targeting another evented object.\n } else {\n var target = targetOrType;\n var type = typeOrListener;\n\n // Fail fast and in a meaningful way!\n validateTarget(target);\n validateEventType(type);\n validateListener(listener);\n\n // Ensure there's at least a guid, even if the function hasn't been used\n listener = bind(this, listener);\n\n // Remove the dispose listener on this evented object, which was given\n // the same guid as the event listener in on().\n this.off('dispose', listener);\n\n if (target.nodeName) {\n off(target, type, listener);\n off(target, 'dispose', listener);\n } else if (isEvented(target)) {\n target.off(type, listener);\n target.off('dispose', listener);\n }\n }\n },\n\n\n /**\n * Fire an event on this evented object, causing its listeners to be called.\n *\n * @param {string|Object} event\n * An event type or an object with a type property.\n *\n * @param {Object} [hash]\n * An additional object to pass along to listeners.\n *\n * @returns {boolean}\n * Whether or not the default behavior was prevented.\n */\n trigger: function trigger$$1(event, hash) {\n return trigger(this.eventBusEl_, event, hash);\n }\n};\n\n/**\n * Applies {@link module:evented~EventedMixin|EventedMixin} to a target object.\n *\n * @param {Object} target\n * The object to which to add event methods.\n *\n * @param {Object} [options={}]\n * Options for customizing the mixin behavior.\n *\n * @param {String} [options.eventBusKey]\n * By default, adds a `eventBusEl_` DOM element to the target object,\n * which is used as an event bus. If the target object already has a\n * DOM element that should be used, pass its key here.\n *\n * @return {Object}\n * The target object.\n */\nfunction evented(target) {\n var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n var eventBusKey = options.eventBusKey;\n\n // Set or create the eventBusEl_.\n\n if (eventBusKey) {\n if (!target[eventBusKey].nodeName) {\n throw new Error('The eventBusKey \"' + eventBusKey + '\" does not refer to an element.');\n }\n target.eventBusEl_ = target[eventBusKey];\n } else {\n target.eventBusEl_ = createEl('span', { className: 'vjs-event-bus' });\n }\n\n assign(target, EventedMixin);\n\n // When any evented object is disposed, it removes all its listeners.\n target.on('dispose', function () {\n target.off();\n window_1.setTimeout(function () {\n target.eventBusEl_ = null;\n }, 0);\n });\n\n return target;\n}\n\n/**\n * @file mixins/stateful.js\n * @module stateful\n */\n/**\n * Contains methods that provide statefulness to an object which is passed\n * to {@link module:stateful}.\n *\n * @mixin StatefulMixin\n */\nvar StatefulMixin = {\n\n /**\n * A hash containing arbitrary keys and values representing the state of\n * the object.\n *\n * @type {Object}\n */\n state: {},\n\n /**\n * Set the state of an object by mutating its\n * {@link module:stateful~StatefulMixin.state|state} object in place.\n *\n * @fires module:stateful~StatefulMixin#statechanged\n * @param {Object|Function} stateUpdates\n * A new set of properties to shallow-merge into the plugin state.\n * Can be a plain object or a function returning a plain object.\n *\n * @returns {Object|undefined}\n * An object containing changes that occurred. If no changes\n * occurred, returns `undefined`.\n */\n setState: function setState(stateUpdates) {\n var _this = this;\n\n // Support providing the `stateUpdates` state as a function.\n if (typeof stateUpdates === 'function') {\n stateUpdates = stateUpdates();\n }\n\n var changes = void 0;\n\n each(stateUpdates, function (value, key) {\n\n // Record the change if the value is different from what's in the\n // current state.\n if (_this.state[key] !== value) {\n changes = changes || {};\n changes[key] = {\n from: _this.state[key],\n to: value\n };\n }\n\n _this.state[key] = value;\n });\n\n // Only trigger \"statechange\" if there were changes AND we have a trigger\n // function. This allows us to not require that the target object be an\n // evented object.\n if (changes && isEvented(this)) {\n\n /**\n * An event triggered on an object that is both\n * {@link module:stateful|stateful} and {@link module:evented|evented}\n * indicating that its state has changed.\n *\n * @event module:stateful~StatefulMixin#statechanged\n * @type {Object}\n * @property {Object} changes\n * A hash containing the properties that were changed and\n * the values they were changed `from` and `to`.\n */\n this.trigger({\n changes: changes,\n type: 'statechanged'\n });\n }\n\n return changes;\n }\n};\n\n/**\n * Applies {@link module:stateful~StatefulMixin|StatefulMixin} to a target\n * object.\n *\n * If the target object is {@link module:evented|evented} and has a\n * `handleStateChanged` method, that method will be automatically bound to the\n * `statechanged` event on itself.\n *\n * @param {Object} target\n * The object to be made stateful.\n *\n * @param {Object} [defaultState]\n * A default set of properties to populate the newly-stateful object's\n * `state` property.\n *\n * @returns {Object}\n * Returns the `target`.\n */\nfunction stateful(target, defaultState) {\n assign(target, StatefulMixin);\n\n // This happens after the mixing-in because we need to replace the `state`\n // added in that step.\n target.state = assign({}, target.state, defaultState);\n\n // Auto-bind the `handleStateChanged` method of the target object if it exists.\n if (typeof target.handleStateChanged === 'function' && isEvented(target)) {\n target.on('statechanged', target.handleStateChanged);\n }\n\n return target;\n}\n\n/**\n * @file to-title-case.js\n * @module to-title-case\n */\n\n/**\n * Uppercase the first letter of a string.\n *\n * @param {string} string\n * String to be uppercased\n *\n * @return {string}\n * The string with an uppercased first letter\n */\nfunction toTitleCase(string) {\n if (typeof string !== 'string') {\n return string;\n }\n\n return string.charAt(0).toUpperCase() + string.slice(1);\n}\n\n/**\n * Compares the TitleCase versions of the two strings for equality.\n *\n * @param {string} str1\n * The first string to compare\n *\n * @param {string} str2\n * The second string to compare\n *\n * @return {boolean}\n * Whether the TitleCase versions of the strings are equal\n */\nfunction titleCaseEquals(str1, str2) {\n return toTitleCase(str1) === toTitleCase(str2);\n}\n\n/**\n * @file merge-options.js\n * @module merge-options\n */\n/**\n * Deep-merge one or more options objects, recursively merging **only** plain\n * object properties.\n *\n * @param {Object[]} sources\n * One or more objects to merge into a new object.\n *\n * @returns {Object}\n * A new object that is the merged result of all sources.\n */\nfunction mergeOptions() {\n var result = {};\n\n for (var _len = arguments.length, sources = Array(_len), _key = 0; _key < _len; _key++) {\n sources[_key] = arguments[_key];\n }\n\n sources.forEach(function (source) {\n if (!source) {\n return;\n }\n\n each(source, function (value, key) {\n if (!isPlain(value)) {\n result[key] = value;\n return;\n }\n\n if (!isPlain(result[key])) {\n result[key] = {};\n }\n\n result[key] = mergeOptions(result[key], value);\n });\n });\n\n return result;\n}\n\n/**\n * Player Component - Base class for all UI objects\n *\n * @file component.js\n */\n/**\n * Base class for all UI Components.\n * Components are UI objects which represent both a javascript object and an element\n * in the DOM. They can be children of other components, and can have\n * children themselves.\n *\n * Components can also use methods from {@link EventTarget}\n */\n\nvar Component = function () {\n\n /**\n * A callback that is called when a component is ready. Does not have any\n * paramters and any callback value will be ignored.\n *\n * @callback Component~ReadyCallback\n * @this Component\n */\n\n /**\n * Creates an instance of this class.\n *\n * @param {Player} player\n * The `Player` that this class should be attached to.\n *\n * @param {Object} [options]\n * The key/value store of player options.\n *\n * @param {Object[]} [options.children]\n * An array of children objects to intialize this component with. Children objects have\n * a name property that will be used if more than one component of the same type needs to be\n * added.\n *\n * @param {Component~ReadyCallback} [ready]\n * Function that gets called when the `Component` is ready.\n */\n function Component(player, options, ready) {\n classCallCheck(this, Component);\n\n\n // The component might be the player itself and we can't pass `this` to super\n if (!player && this.play) {\n this.player_ = player = this; // eslint-disable-line\n } else {\n this.player_ = player;\n }\n\n // Make a copy of prototype.options_ to protect against overriding defaults\n this.options_ = mergeOptions({}, this.options_);\n\n // Updated options with supplied options\n options = this.options_ = mergeOptions(this.options_, options);\n\n // Get ID from options or options element if one is supplied\n this.id_ = options.id || options.el && options.el.id;\n\n // If there was no ID from the options, generate one\n if (!this.id_) {\n // Don't require the player ID function in the case of mock players\n var id = player && player.id && player.id() || 'no_player';\n\n this.id_ = id + '_component_' + newGUID();\n }\n\n this.name_ = options.name || null;\n\n // Create element if one wasn't provided in options\n if (options.el) {\n this.el_ = options.el;\n } else if (options.createEl !== false) {\n this.el_ = this.createEl();\n }\n\n // if evented is anything except false, we want to mixin in evented\n if (options.evented !== false) {\n // Make this an evented object and use `el_`, if available, as its event bus\n evented(this, { eventBusKey: this.el_ ? 'el_' : null });\n }\n stateful(this, this.constructor.defaultState);\n\n this.children_ = [];\n this.childIndex_ = {};\n this.childNameIndex_ = {};\n\n // Add any child components in options\n if (options.initChildren !== false) {\n this.initChildren();\n }\n\n this.ready(ready);\n // Don't want to trigger ready here or it will before init is actually\n // finished for all children that run this constructor\n\n if (options.reportTouchActivity !== false) {\n this.enableTouchActivity();\n }\n }\n\n /**\n * Dispose of the `Component` and all child components.\n *\n * @fires Component#dispose\n */\n\n\n Component.prototype.dispose = function dispose() {\n\n /**\n * Triggered when a `Component` is disposed.\n *\n * @event Component#dispose\n * @type {EventTarget~Event}\n *\n * @property {boolean} [bubbles=false]\n * set to false so that the close event does not\n * bubble up\n */\n this.trigger({ type: 'dispose', bubbles: false });\n\n // Dispose all children.\n if (this.children_) {\n for (var i = this.children_.length - 1; i >= 0; i--) {\n if (this.children_[i].dispose) {\n this.children_[i].dispose();\n }\n }\n }\n\n // Delete child references\n this.children_ = null;\n this.childIndex_ = null;\n this.childNameIndex_ = null;\n\n if (this.el_) {\n // Remove element from DOM\n if (this.el_.parentNode) {\n this.el_.parentNode.removeChild(this.el_);\n }\n\n removeData(this.el_);\n this.el_ = null;\n }\n\n // remove reference to the player after disposing of the element\n this.player_ = null;\n };\n\n /**\n * Return the {@link Player} that the `Component` has attached to.\n *\n * @return {Player}\n * The player that this `Component` has attached to.\n */\n\n\n Component.prototype.player = function player() {\n return this.player_;\n };\n\n /**\n * Deep merge of options objects with new options.\n * > Note: When both `obj` and `options` contain properties whose values are objects.\n * The two properties get merged using {@link module:mergeOptions}\n *\n * @param {Object} obj\n * The object that contains new options.\n *\n * @return {Object}\n * A new object of `this.options_` and `obj` merged together.\n *\n * @deprecated since version 5\n */\n\n\n Component.prototype.options = function options(obj) {\n log$1.warn('this.options() has been deprecated and will be moved to the constructor in 6.0');\n\n if (!obj) {\n return this.options_;\n }\n\n this.options_ = mergeOptions(this.options_, obj);\n return this.options_;\n };\n\n /**\n * Get the `Component`s DOM element\n *\n * @return {Element}\n * The DOM element for this `Component`.\n */\n\n\n Component.prototype.el = function el() {\n return this.el_;\n };\n\n /**\n * Create the `Component`s DOM element.\n *\n * @param {string} [tagName]\n * Element's DOM node type. e.g. 'div'\n *\n * @param {Object} [properties]\n * An object of properties that should be set.\n *\n * @param {Object} [attributes]\n * An object of attributes that should be set.\n *\n * @return {Element}\n * The element that gets created.\n */\n\n\n Component.prototype.createEl = function createEl$$1(tagName, properties, attributes) {\n return createEl(tagName, properties, attributes);\n };\n\n /**\n * Localize a string given the string in english.\n *\n * If tokens are provided, it'll try and run a simple token replacement on the provided string.\n * The tokens it loooks for look like `{1}` with the index being 1-indexed into the tokens array.\n *\n * If a `defaultValue` is provided, it'll use that over `string`,\n * if a value isn't found in provided language files.\n * This is useful if you want to have a descriptive key for token replacement\n * but have a succinct localized string and not require `en.json` to be included.\n *\n * Currently, it is used for the progress bar timing.\n * ```js\n * {\n * \"progress bar timing: currentTime={1} duration={2}\": \"{1} of {2}\"\n * }\n * ```\n * It is then used like so:\n * ```js\n * this.localize('progress bar timing: currentTime={1} duration{2}',\n * [this.player_.currentTime(), this.player_.duration()],\n * '{1} of {2}');\n * ```\n *\n * Which outputs something like: `01:23 of 24:56`.\n *\n *\n * @param {string} string\n * The string to localize and the key to lookup in the language files.\n * @param {string[]} [tokens]\n * If the current item has token replacements, provide the tokens here.\n * @param {string} [defaultValue]\n * Defaults to `string`. Can be a default value to use for token replacement\n * if the lookup key is needed to be separate.\n *\n * @return {string}\n * The localized string or if no localization exists the english string.\n */\n\n\n Component.prototype.localize = function localize(string, tokens) {\n var defaultValue = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : string;\n\n var code = this.player_.language && this.player_.language();\n var languages = this.player_.languages && this.player_.languages();\n var language = languages && languages[code];\n var primaryCode = code && code.split('-')[0];\n var primaryLang = languages && languages[primaryCode];\n\n var localizedString = defaultValue;\n\n if (language && language[string]) {\n localizedString = language[string];\n } else if (primaryLang && primaryLang[string]) {\n localizedString = primaryLang[string];\n }\n\n if (tokens) {\n localizedString = localizedString.replace(/\\{(\\d+)\\}/g, function (match, index) {\n var value = tokens[index - 1];\n var ret = value;\n\n if (typeof value === 'undefined') {\n ret = match;\n }\n\n return ret;\n });\n }\n\n return localizedString;\n };\n\n /**\n * Return the `Component`s DOM element. This is where children get inserted.\n * This will usually be the the same as the element returned in {@link Component#el}.\n *\n * @return {Element}\n * The content element for this `Component`.\n */\n\n\n Component.prototype.contentEl = function contentEl() {\n return this.contentEl_ || this.el_;\n };\n\n /**\n * Get this `Component`s ID\n *\n * @return {string}\n * The id of this `Component`\n */\n\n\n Component.prototype.id = function id() {\n return this.id_;\n };\n\n /**\n * Get the `Component`s name. The name gets used to reference the `Component`\n * and is set during registration.\n *\n * @return {string}\n * The name of this `Component`.\n */\n\n\n Component.prototype.name = function name() {\n return this.name_;\n };\n\n /**\n * Get an array of all child components\n *\n * @return {Array}\n * The children\n */\n\n\n Component.prototype.children = function children() {\n return this.children_;\n };\n\n /**\n * Returns the child `Component` with the given `id`.\n *\n * @param {string} id\n * The id of the child `Component` to get.\n *\n * @return {Component|undefined}\n * The child `Component` with the given `id` or undefined.\n */\n\n\n Component.prototype.getChildById = function getChildById(id) {\n return this.childIndex_[id];\n };\n\n /**\n * Returns the child `Component` with the given `name`.\n *\n * @param {string} name\n * The name of the child `Component` to get.\n *\n * @return {Component|undefined}\n * The child `Component` with the given `name` or undefined.\n */\n\n\n Component.prototype.getChild = function getChild(name) {\n if (!name) {\n return;\n }\n\n name = toTitleCase(name);\n\n return this.childNameIndex_[name];\n };\n\n /**\n * Add a child `Component` inside the current `Component`.\n *\n *\n * @param {string|Component} child\n * The name or instance of a child to add.\n *\n * @param {Object} [options={}]\n * The key/value store of options that will get passed to children of\n * the child.\n *\n * @param {number} [index=this.children_.length]\n * The index to attempt to add a child into.\n *\n * @return {Component}\n * The `Component` that gets added as a child. When using a string the\n * `Component` will get created by this process.\n */\n\n\n Component.prototype.addChild = function addChild(child) {\n var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n var index = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : this.children_.length;\n\n var component = void 0;\n var componentName = void 0;\n\n // If child is a string, create component with options\n if (typeof child === 'string') {\n componentName = toTitleCase(child);\n\n var componentClassName = options.componentClass || componentName;\n\n // Set name through options\n options.name = componentName;\n\n // Create a new object & element for this controls set\n // If there's no .player_, this is a player\n var ComponentClass = Component.getComponent(componentClassName);\n\n if (!ComponentClass) {\n throw new Error('Component ' + componentClassName + ' does not exist');\n }\n\n // data stored directly on the videojs object may be\n // misidentified as a component to retain\n // backwards-compatibility with 4.x. check to make sure the\n // component class can be instantiated.\n if (typeof ComponentClass !== 'function') {\n return null;\n }\n\n component = new ComponentClass(this.player_ || this, options);\n\n // child is a component instance\n } else {\n component = child;\n }\n\n this.children_.splice(index, 0, component);\n\n if (typeof component.id === 'function') {\n this.childIndex_[component.id()] = component;\n }\n\n // If a name wasn't used to create the component, check if we can use the\n // name function of the component\n componentName = componentName || component.name && toTitleCase(component.name());\n\n if (componentName) {\n this.childNameIndex_[componentName] = component;\n }\n\n // Add the UI object's element to the container div (box)\n // Having an element is not required\n if (typeof component.el === 'function' && component.el()) {\n var childNodes = this.contentEl().children;\n var refNode = childNodes[index] || null;\n\n this.contentEl().insertBefore(component.el(), refNode);\n }\n\n // Return so it can stored on parent object if desired.\n return component;\n };\n\n /**\n * Remove a child `Component` from this `Component`s list of children. Also removes\n * the child `Component`s element from this `Component`s element.\n *\n * @param {Component} component\n * The child `Component` to remove.\n */\n\n\n Component.prototype.removeChild = function removeChild(component) {\n if (typeof component === 'string') {\n component = this.getChild(component);\n }\n\n if (!component || !this.children_) {\n return;\n }\n\n var childFound = false;\n\n for (var i = this.children_.length - 1; i >= 0; i--) {\n if (this.children_[i] === component) {\n childFound = true;\n this.children_.splice(i, 1);\n break;\n }\n }\n\n if (!childFound) {\n return;\n }\n\n this.childIndex_[component.id()] = null;\n this.childNameIndex_[component.name()] = null;\n\n var compEl = component.el();\n\n if (compEl && compEl.parentNode === this.contentEl()) {\n this.contentEl().removeChild(component.el());\n }\n };\n\n /**\n * Add and initialize default child `Component`s based upon options.\n */\n\n\n Component.prototype.initChildren = function initChildren() {\n var _this = this;\n\n var children = this.options_.children;\n\n if (children) {\n // `this` is `parent`\n var parentOptions = this.options_;\n\n var handleAdd = function handleAdd(child) {\n var name = child.name;\n var opts = child.opts;\n\n // Allow options for children to be set at the parent options\n // e.g. videojs(id, { controlBar: false });\n // instead of videojs(id, { children: { controlBar: false });\n if (parentOptions[name] !== undefined) {\n opts = parentOptions[name];\n }\n\n // Allow for disabling default components\n // e.g. options['children']['posterImage'] = false\n if (opts === false) {\n return;\n }\n\n // Allow options to be passed as a simple boolean if no configuration\n // is necessary.\n if (opts === true) {\n opts = {};\n }\n\n // We also want to pass the original player options\n // to each component as well so they don't need to\n // reach back into the player for options later.\n opts.playerOptions = _this.options_.playerOptions;\n\n // Create and add the child component.\n // Add a direct reference to the child by name on the parent instance.\n // If two of the same component are used, different names should be supplied\n // for each\n var newChild = _this.addChild(name, opts);\n\n if (newChild) {\n _this[name] = newChild;\n }\n };\n\n // Allow for an array of children details to passed in the options\n var workingChildren = void 0;\n var Tech = Component.getComponent('Tech');\n\n if (Array.isArray(children)) {\n workingChildren = children;\n } else {\n workingChildren = Object.keys(children);\n }\n\n workingChildren\n // children that are in this.options_ but also in workingChildren would\n // give us extra children we do not want. So, we want to filter them out.\n .concat(Object.keys(this.options_).filter(function (child) {\n return !workingChildren.some(function (wchild) {\n if (typeof wchild === 'string') {\n return child === wchild;\n }\n return child === wchild.name;\n });\n })).map(function (child) {\n var name = void 0;\n var opts = void 0;\n\n if (typeof child === 'string') {\n name = child;\n opts = children[name] || _this.options_[name] || {};\n } else {\n name = child.name;\n opts = child;\n }\n\n return { name: name, opts: opts };\n }).filter(function (child) {\n // we have to make sure that child.name isn't in the techOrder since\n // techs are registerd as Components but can't aren't compatible\n // See https://github.com/videojs/video.js/issues/2772\n var c = Component.getComponent(child.opts.componentClass || toTitleCase(child.name));\n\n return c && !Tech.isTech(c);\n }).forEach(handleAdd);\n }\n };\n\n /**\n * Builds the default DOM class name. Should be overriden by sub-components.\n *\n * @return {string}\n * The DOM class name for this object.\n *\n * @abstract\n */\n\n\n Component.prototype.buildCSSClass = function buildCSSClass() {\n // Child classes can include a function that does:\n // return 'CLASS NAME' + this._super();\n return '';\n };\n\n /**\n * Bind a listener to the component's ready state.\n * Different from event listeners in that if the ready event has already happened\n * it will trigger the function immediately.\n *\n * @return {Component}\n * Returns itself; method can be chained.\n */\n\n\n Component.prototype.ready = function ready(fn) {\n var sync = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;\n\n if (!fn) {\n return;\n }\n\n if (!this.isReady_) {\n this.readyQueue_ = this.readyQueue_ || [];\n this.readyQueue_.push(fn);\n return;\n }\n\n if (sync) {\n fn.call(this);\n } else {\n // Call the function asynchronously by default for consistency\n this.setTimeout(fn, 1);\n }\n };\n\n /**\n * Trigger all the ready listeners for this `Component`.\n *\n * @fires Component#ready\n */\n\n\n Component.prototype.triggerReady = function triggerReady() {\n this.isReady_ = true;\n\n // Ensure ready is triggerd asynchronously\n this.setTimeout(function () {\n var readyQueue = this.readyQueue_;\n\n // Reset Ready Queue\n this.readyQueue_ = [];\n\n if (readyQueue && readyQueue.length > 0) {\n readyQueue.forEach(function (fn) {\n fn.call(this);\n }, this);\n }\n\n // Allow for using event listeners also\n /**\n * Triggered when a `Component` is ready.\n *\n * @event Component#ready\n * @type {EventTarget~Event}\n */\n this.trigger('ready');\n }, 1);\n };\n\n /**\n * Find a single DOM element matching a `selector`. This can be within the `Component`s\n * `contentEl()` or another custom context.\n *\n * @param {string} selector\n * A valid CSS selector, which will be passed to `querySelector`.\n *\n * @param {Element|string} [context=this.contentEl()]\n * A DOM element within which to query. Can also be a selector string in\n * which case the first matching element will get used as context. If\n * missing `this.contentEl()` gets used. If `this.contentEl()` returns\n * nothing it falls back to `document`.\n *\n * @return {Element|null}\n * the dom element that was found, or null\n *\n * @see [Information on CSS Selectors](https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Getting_Started/Selectors)\n */\n\n\n Component.prototype.$ = function $$$1(selector, context) {\n return $(selector, context || this.contentEl());\n };\n\n /**\n * Finds all DOM element matching a `selector`. This can be within the `Component`s\n * `contentEl()` or another custom context.\n *\n * @param {string} selector\n * A valid CSS selector, which will be passed to `querySelectorAll`.\n *\n * @param {Element|string} [context=this.contentEl()]\n * A DOM element within which to query. Can also be a selector string in\n * which case the first matching element will get used as context. If\n * missing `this.contentEl()` gets used. If `this.contentEl()` returns\n * nothing it falls back to `document`.\n *\n * @return {NodeList}\n * a list of dom elements that were found\n *\n * @see [Information on CSS Selectors](https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Getting_Started/Selectors)\n */\n\n\n Component.prototype.$$ = function $$$$1(selector, context) {\n return $$(selector, context || this.contentEl());\n };\n\n /**\n * Check if a component's element has a CSS class name.\n *\n * @param {string} classToCheck\n * CSS class name to check.\n *\n * @return {boolean}\n * - True if the `Component` has the class.\n * - False if the `Component` does not have the class`\n */\n\n\n Component.prototype.hasClass = function hasClass$$1(classToCheck) {\n return hasClass(this.el_, classToCheck);\n };\n\n /**\n * Add a CSS class name to the `Component`s element.\n *\n * @param {string} classToAdd\n * CSS class name to add\n */\n\n\n Component.prototype.addClass = function addClass$$1(classToAdd) {\n addClass(this.el_, classToAdd);\n };\n\n /**\n * Remove a CSS class name from the `Component`s element.\n *\n * @param {string} classToRemove\n * CSS class name to remove\n */\n\n\n Component.prototype.removeClass = function removeClass$$1(classToRemove) {\n removeClass(this.el_, classToRemove);\n };\n\n /**\n * Add or remove a CSS class name from the component's element.\n * - `classToToggle` gets added when {@link Component#hasClass} would return false.\n * - `classToToggle` gets removed when {@link Component#hasClass} would return true.\n *\n * @param {string} classToToggle\n * The class to add or remove based on (@link Component#hasClass}\n *\n * @param {boolean|Dom~predicate} [predicate]\n * An {@link Dom~predicate} function or a boolean\n */\n\n\n Component.prototype.toggleClass = function toggleClass$$1(classToToggle, predicate) {\n toggleClass(this.el_, classToToggle, predicate);\n };\n\n /**\n * Show the `Component`s element if it is hidden by removing the\n * 'vjs-hidden' class name from it.\n */\n\n\n Component.prototype.show = function show() {\n this.removeClass('vjs-hidden');\n };\n\n /**\n * Hide the `Component`s element if it is currently showing by adding the\n * 'vjs-hidden` class name to it.\n */\n\n\n Component.prototype.hide = function hide() {\n this.addClass('vjs-hidden');\n };\n\n /**\n * Lock a `Component`s element in its visible state by adding the 'vjs-lock-showing'\n * class name to it. Used during fadeIn/fadeOut.\n *\n * @private\n */\n\n\n Component.prototype.lockShowing = function lockShowing() {\n this.addClass('vjs-lock-showing');\n };\n\n /**\n * Unlock a `Component`s element from its visible state by removing the 'vjs-lock-showing'\n * class name from it. Used during fadeIn/fadeOut.\n *\n * @private\n */\n\n\n Component.prototype.unlockShowing = function unlockShowing() {\n this.removeClass('vjs-lock-showing');\n };\n\n /**\n * Get the value of an attribute on the `Component`s element.\n *\n * @param {string} attribute\n * Name of the attribute to get the value from.\n *\n * @return {string|null}\n * - The value of the attribute that was asked for.\n * - Can be an empty string on some browsers if the attribute does not exist\n * or has no value\n * - Most browsers will return null if the attibute does not exist or has\n * no value.\n *\n * @see [DOM API]{@link https://developer.mozilla.org/en-US/docs/Web/API/Element/getAttribute}\n */\n\n\n Component.prototype.getAttribute = function getAttribute$$1(attribute) {\n return getAttribute(this.el_, attribute);\n };\n\n /**\n * Set the value of an attribute on the `Component`'s element\n *\n * @param {string} attribute\n * Name of the attribute to set.\n *\n * @param {string} value\n * Value to set the attribute to.\n *\n * @see [DOM API]{@link https://developer.mozilla.org/en-US/docs/Web/API/Element/setAttribute}\n */\n\n\n Component.prototype.setAttribute = function setAttribute$$1(attribute, value) {\n setAttribute(this.el_, attribute, value);\n };\n\n /**\n * Remove an attribute from the `Component`s element.\n *\n * @param {string} attribute\n * Name of the attribute to remove.\n *\n * @see [DOM API]{@link https://developer.mozilla.org/en-US/docs/Web/API/Element/removeAttribute}\n */\n\n\n Component.prototype.removeAttribute = function removeAttribute$$1(attribute) {\n removeAttribute(this.el_, attribute);\n };\n\n /**\n * Get or set the width of the component based upon the CSS styles.\n * See {@link Component#dimension} for more detailed information.\n *\n * @param {number|string} [num]\n * The width that you want to set postfixed with '%', 'px' or nothing.\n *\n * @param {boolean} [skipListeners]\n * Skip the componentresize event trigger\n *\n * @return {number|string}\n * The width when getting, zero if there is no width. Can be a string\n * postpixed with '%' or 'px'.\n */\n\n\n Component.prototype.width = function width(num, skipListeners) {\n return this.dimension('width', num, skipListeners);\n };\n\n /**\n * Get or set the height of the component based upon the CSS styles.\n * See {@link Component#dimension} for more detailed information.\n *\n * @param {number|string} [num]\n * The height that you want to set postfixed with '%', 'px' or nothing.\n *\n * @param {boolean} [skipListeners]\n * Skip the componentresize event trigger\n *\n * @return {number|string}\n * The width when getting, zero if there is no width. Can be a string\n * postpixed with '%' or 'px'.\n */\n\n\n Component.prototype.height = function height(num, skipListeners) {\n return this.dimension('height', num, skipListeners);\n };\n\n /**\n * Set both the width and height of the `Component` element at the same time.\n *\n * @param {number|string} width\n * Width to set the `Component`s element to.\n *\n * @param {number|string} height\n * Height to set the `Component`s element to.\n */\n\n\n Component.prototype.dimensions = function dimensions(width, height) {\n // Skip componentresize listeners on width for optimization\n this.width(width, true);\n this.height(height);\n };\n\n /**\n * Get or set width or height of the `Component` element. This is the shared code\n * for the {@link Component#width} and {@link Component#height}.\n *\n * Things to know:\n * - If the width or height in an number this will return the number postfixed with 'px'.\n * - If the width/height is a percent this will return the percent postfixed with '%'\n * - Hidden elements have a width of 0 with `window.getComputedStyle`. This function\n * defaults to the `Component`s `style.width` and falls back to `window.getComputedStyle`.\n * See [this]{@link http://www.foliotek.com/devblog/getting-the-width-of-a-hidden-element-with-jquery-using-width/}\n * for more information\n * - If you want the computed style of the component, use {@link Component#currentWidth}\n * and {@link {Component#currentHeight}\n *\n * @fires Component#componentresize\n *\n * @param {string} widthOrHeight\n 8 'width' or 'height'\n *\n * @param {number|string} [num]\n 8 New dimension\n *\n * @param {boolean} [skipListeners]\n * Skip componentresize event trigger\n *\n * @return {number}\n * The dimension when getting or 0 if unset\n */\n\n\n Component.prototype.dimension = function dimension(widthOrHeight, num, skipListeners) {\n if (num !== undefined) {\n // Set to zero if null or literally NaN (NaN !== NaN)\n if (num === null || num !== num) {\n num = 0;\n }\n\n // Check if using css width/height (% or px) and adjust\n if (('' + num).indexOf('%') !== -1 || ('' + num).indexOf('px') !== -1) {\n this.el_.style[widthOrHeight] = num;\n } else if (num === 'auto') {\n this.el_.style[widthOrHeight] = '';\n } else {\n this.el_.style[widthOrHeight] = num + 'px';\n }\n\n // skipListeners allows us to avoid triggering the resize event when setting both width and height\n if (!skipListeners) {\n /**\n * Triggered when a component is resized.\n *\n * @event Component#componentresize\n * @type {EventTarget~Event}\n */\n this.trigger('componentresize');\n }\n\n return;\n }\n\n // Not setting a value, so getting it\n // Make sure element exists\n if (!this.el_) {\n return 0;\n }\n\n // Get dimension value from style\n var val = this.el_.style[widthOrHeight];\n var pxIndex = val.indexOf('px');\n\n if (pxIndex !== -1) {\n // Return the pixel value with no 'px'\n return parseInt(val.slice(0, pxIndex), 10);\n }\n\n // No px so using % or no style was set, so falling back to offsetWidth/height\n // If component has display:none, offset will return 0\n // TODO: handle display:none and no dimension style using px\n return parseInt(this.el_['offset' + toTitleCase(widthOrHeight)], 10);\n };\n\n /**\n * Get the width or the height of the `Component` elements computed style. Uses\n * `window.getComputedStyle`.\n *\n * @param {string} widthOrHeight\n * A string containing 'width' or 'height'. Whichever one you want to get.\n *\n * @return {number}\n * The dimension that gets asked for or 0 if nothing was set\n * for that dimension.\n */\n\n\n Component.prototype.currentDimension = function currentDimension(widthOrHeight) {\n var computedWidthOrHeight = 0;\n\n if (widthOrHeight !== 'width' && widthOrHeight !== 'height') {\n throw new Error('currentDimension only accepts width or height value');\n }\n\n if (typeof window_1.getComputedStyle === 'function') {\n var computedStyle = window_1.getComputedStyle(this.el_);\n\n computedWidthOrHeight = computedStyle.getPropertyValue(widthOrHeight) || computedStyle[widthOrHeight];\n }\n\n // remove 'px' from variable and parse as integer\n computedWidthOrHeight = parseFloat(computedWidthOrHeight);\n\n // if the computed value is still 0, it's possible that the browser is lying\n // and we want to check the offset values.\n // This code also runs on IE8 and wherever getComputedStyle doesn't exist.\n if (computedWidthOrHeight === 0) {\n var rule = 'offset' + toTitleCase(widthOrHeight);\n\n computedWidthOrHeight = this.el_[rule];\n }\n\n return computedWidthOrHeight;\n };\n\n /**\n * An object that contains width and height values of the `Component`s\n * computed style. Uses `window.getComputedStyle`.\n *\n * @typedef {Object} Component~DimensionObject\n *\n * @property {number} width\n * The width of the `Component`s computed style.\n *\n * @property {number} height\n * The height of the `Component`s computed style.\n */\n\n /**\n * Get an object that contains width and height values of the `Component`s\n * computed style.\n *\n * @return {Component~DimensionObject}\n * The dimensions of the components element\n */\n\n\n Component.prototype.currentDimensions = function currentDimensions() {\n return {\n width: this.currentDimension('width'),\n height: this.currentDimension('height')\n };\n };\n\n /**\n * Get the width of the `Component`s computed style. Uses `window.getComputedStyle`.\n *\n * @return {number} width\n * The width of the `Component`s computed style.\n */\n\n\n Component.prototype.currentWidth = function currentWidth() {\n return this.currentDimension('width');\n };\n\n /**\n * Get the height of the `Component`s computed style. Uses `window.getComputedStyle`.\n *\n * @return {number} height\n * The height of the `Component`s computed style.\n */\n\n\n Component.prototype.currentHeight = function currentHeight() {\n return this.currentDimension('height');\n };\n\n /**\n * Set the focus to this component\n */\n\n\n Component.prototype.focus = function focus() {\n this.el_.focus();\n };\n\n /**\n * Remove the focus from this component\n */\n\n\n Component.prototype.blur = function blur() {\n this.el_.blur();\n };\n\n /**\n * Emit a 'tap' events when touch event support gets detected. This gets used to\n * support toggling the controls through a tap on the video. They get enabled\n * because every sub-component would have extra overhead otherwise.\n *\n * @private\n * @fires Component#tap\n * @listens Component#touchstart\n * @listens Component#touchmove\n * @listens Component#touchleave\n * @listens Component#touchcancel\n * @listens Component#touchend\n */\n\n\n Component.prototype.emitTapEvents = function emitTapEvents() {\n // Track the start time so we can determine how long the touch lasted\n var touchStart = 0;\n var firstTouch = null;\n\n // Maximum movement allowed during a touch event to still be considered a tap\n // Other popular libs use anywhere from 2 (hammer.js) to 15,\n // so 10 seems like a nice, round number.\n var tapMovementThreshold = 10;\n\n // The maximum length a touch can be while still being considered a tap\n var touchTimeThreshold = 200;\n\n var couldBeTap = void 0;\n\n this.on('touchstart', function (event) {\n // If more than one finger, don't consider treating this as a click\n if (event.touches.length === 1) {\n // Copy pageX/pageY from the object\n firstTouch = {\n pageX: event.touches[0].pageX,\n pageY: event.touches[0].pageY\n };\n // Record start time so we can detect a tap vs. \"touch and hold\"\n touchStart = new Date().getTime();\n // Reset couldBeTap tracking\n couldBeTap = true;\n }\n });\n\n this.on('touchmove', function (event) {\n // If more than one finger, don't consider treating this as a click\n if (event.touches.length > 1) {\n couldBeTap = false;\n } else if (firstTouch) {\n // Some devices will throw touchmoves for all but the slightest of taps.\n // So, if we moved only a small distance, this could still be a tap\n var xdiff = event.touches[0].pageX - firstTouch.pageX;\n var ydiff = event.touches[0].pageY - firstTouch.pageY;\n var touchDistance = Math.sqrt(xdiff * xdiff + ydiff * ydiff);\n\n if (touchDistance > tapMovementThreshold) {\n couldBeTap = false;\n }\n }\n });\n\n var noTap = function noTap() {\n couldBeTap = false;\n };\n\n // TODO: Listen to the original target. http://youtu.be/DujfpXOKUp8?t=13m8s\n this.on('touchleave', noTap);\n this.on('touchcancel', noTap);\n\n // When the touch ends, measure how long it took and trigger the appropriate\n // event\n this.on('touchend', function (event) {\n firstTouch = null;\n // Proceed only if the touchmove/leave/cancel event didn't happen\n if (couldBeTap === true) {\n // Measure how long the touch lasted\n var touchTime = new Date().getTime() - touchStart;\n\n // Make sure the touch was less than the threshold to be considered a tap\n if (touchTime < touchTimeThreshold) {\n // Don't let browser turn this into a click\n event.preventDefault();\n /**\n * Triggered when a `Component` is tapped.\n *\n * @event Component#tap\n * @type {EventTarget~Event}\n */\n this.trigger('tap');\n // It may be good to copy the touchend event object and change the\n // type to tap, if the other event properties aren't exact after\n // Events.fixEvent runs (e.g. event.target)\n }\n }\n });\n };\n\n /**\n * This function reports user activity whenever touch events happen. This can get\n * turned off by any sub-components that wants touch events to act another way.\n *\n * Report user touch activity when touch events occur. User activity gets used to\n * determine when controls should show/hide. It is simple when it comes to mouse\n * events, because any mouse event should show the controls. So we capture mouse\n * events that bubble up to the player and report activity when that happens.\n * With touch events it isn't as easy as `touchstart` and `touchend` toggle player\n * controls. So touch events can't help us at the player level either.\n *\n * User activity gets checked asynchronously. So what could happen is a tap event\n * on the video turns the controls off. Then the `touchend` event bubbles up to\n * the player. Which, if it reported user activity, would turn the controls right\n * back on. We also don't want to completely block touch events from bubbling up.\n * Furthermore a `touchmove` event and anything other than a tap, should not turn\n * controls back on.\n *\n * @listens Component#touchstart\n * @listens Component#touchmove\n * @listens Component#touchend\n * @listens Component#touchcancel\n */\n\n\n Component.prototype.enableTouchActivity = function enableTouchActivity() {\n // Don't continue if the root player doesn't support reporting user activity\n if (!this.player() || !this.player().reportUserActivity) {\n return;\n }\n\n // listener for reporting that the user is active\n var report = bind(this.player(), this.player().reportUserActivity);\n\n var touchHolding = void 0;\n\n this.on('touchstart', function () {\n report();\n // For as long as the they are touching the device or have their mouse down,\n // we consider them active even if they're not moving their finger or mouse.\n // So we want to continue to update that they are active\n this.clearInterval(touchHolding);\n // report at the same interval as activityCheck\n touchHolding = this.setInterval(report, 250);\n });\n\n var touchEnd = function touchEnd(event) {\n report();\n // stop the interval that maintains activity if the touch is holding\n this.clearInterval(touchHolding);\n };\n\n this.on('touchmove', report);\n this.on('touchend', touchEnd);\n this.on('touchcancel', touchEnd);\n };\n\n /**\n * A callback that has no parameters and is bound into `Component`s context.\n *\n * @callback Component~GenericCallback\n * @this Component\n */\n\n /**\n * Creates a function that runs after an `x` millisecond timeout. This function is a\n * wrapper around `window.setTimeout`. There are a few reasons to use this one\n * instead though:\n * 1. It gets cleared via {@link Component#clearTimeout} when\n * {@link Component#dispose} gets called.\n * 2. The function callback will gets turned into a {@link Component~GenericCallback}\n *\n * > Note: You can use `window.clearTimeout` on the id returned by this function. This\n * will cause its dispose listener not to get cleaned up! Please use\n * {@link Component#clearTimeout} or {@link Component#dispose}.\n *\n * @param {Component~GenericCallback} fn\n * The function that will be run after `timeout`.\n *\n * @param {number} timeout\n * Timeout in milliseconds to delay before executing the specified function.\n *\n * @return {number}\n * Returns a timeout ID that gets used to identify the timeout. It can also\n * get used in {@link Component#clearTimeout} to clear the timeout that\n * was set.\n *\n * @listens Component#dispose\n * @see [Similar to]{@link https://developer.mozilla.org/en-US/docs/Web/API/WindowTimers/setTimeout}\n */\n\n\n Component.prototype.setTimeout = function setTimeout(fn, timeout) {\n var _this2 = this;\n\n fn = bind(this, fn);\n\n var timeoutId = window_1.setTimeout(fn, timeout);\n var disposeFn = function disposeFn() {\n return _this2.clearTimeout(timeoutId);\n };\n\n disposeFn.guid = 'vjs-timeout-' + timeoutId;\n\n this.on('dispose', disposeFn);\n\n return timeoutId;\n };\n\n /**\n * Clears a timeout that gets created via `window.setTimeout` or\n * {@link Component#setTimeout}. If you set a timeout via {@link Component#setTimeout}\n * use this function instead of `window.clearTimout`. If you don't your dispose\n * listener will not get cleaned up until {@link Component#dispose}!\n *\n * @param {number} timeoutId\n * The id of the timeout to clear. The return value of\n * {@link Component#setTimeout} or `window.setTimeout`.\n *\n * @return {number}\n * Returns the timeout id that was cleared.\n *\n * @see [Similar to]{@link https://developer.mozilla.org/en-US/docs/Web/API/WindowTimers/clearTimeout}\n */\n\n\n Component.prototype.clearTimeout = function clearTimeout(timeoutId) {\n window_1.clearTimeout(timeoutId);\n\n var disposeFn = function disposeFn() {};\n\n disposeFn.guid = 'vjs-timeout-' + timeoutId;\n\n this.off('dispose', disposeFn);\n\n return timeoutId;\n };\n\n /**\n * Creates a function that gets run every `x` milliseconds. This function is a wrapper\n * around `window.setInterval`. There are a few reasons to use this one instead though.\n * 1. It gets cleared via {@link Component#clearInterval} when\n * {@link Component#dispose} gets called.\n * 2. The function callback will be a {@link Component~GenericCallback}\n *\n * @param {Component~GenericCallback} fn\n * The function to run every `x` seconds.\n *\n * @param {number} interval\n * Execute the specified function every `x` milliseconds.\n *\n * @return {number}\n * Returns an id that can be used to identify the interval. It can also be be used in\n * {@link Component#clearInterval} to clear the interval.\n *\n * @listens Component#dispose\n * @see [Similar to]{@link https://developer.mozilla.org/en-US/docs/Web/API/WindowTimers/setInterval}\n */\n\n\n Component.prototype.setInterval = function setInterval(fn, interval) {\n var _this3 = this;\n\n fn = bind(this, fn);\n\n var intervalId = window_1.setInterval(fn, interval);\n\n var disposeFn = function disposeFn() {\n return _this3.clearInterval(intervalId);\n };\n\n disposeFn.guid = 'vjs-interval-' + intervalId;\n\n this.on('dispose', disposeFn);\n\n return intervalId;\n };\n\n /**\n * Clears an interval that gets created via `window.setInterval` or\n * {@link Component#setInterval}. If you set an inteval via {@link Component#setInterval}\n * use this function instead of `window.clearInterval`. If you don't your dispose\n * listener will not get cleaned up until {@link Component#dispose}!\n *\n * @param {number} intervalId\n * The id of the interval to clear. The return value of\n * {@link Component#setInterval} or `window.setInterval`.\n *\n * @return {number}\n * Returns the interval id that was cleared.\n *\n * @see [Similar to]{@link https://developer.mozilla.org/en-US/docs/Web/API/WindowTimers/clearInterval}\n */\n\n\n Component.prototype.clearInterval = function clearInterval(intervalId) {\n window_1.clearInterval(intervalId);\n\n var disposeFn = function disposeFn() {};\n\n disposeFn.guid = 'vjs-interval-' + intervalId;\n\n this.off('dispose', disposeFn);\n\n return intervalId;\n };\n\n /**\n * Queues up a callback to be passed to requestAnimationFrame (rAF), but\n * with a few extra bonuses:\n *\n * - Supports browsers that do not support rAF by falling back to\n * {@link Component#setTimeout}.\n *\n * - The callback is turned into a {@link Component~GenericCallback} (i.e.\n * bound to the component).\n *\n * - Automatic cancellation of the rAF callback is handled if the component\n * is disposed before it is called.\n *\n * @param {Component~GenericCallback} fn\n * A function that will be bound to this component and executed just\n * before the browser's next repaint.\n *\n * @return {number}\n * Returns an rAF ID that gets used to identify the timeout. It can\n * also be used in {@link Component#cancelAnimationFrame} to cancel\n * the animation frame callback.\n *\n * @listens Component#dispose\n * @see [Similar to]{@link https://developer.mozilla.org/en-US/docs/Web/API/window/requestAnimationFrame}\n */\n\n\n Component.prototype.requestAnimationFrame = function requestAnimationFrame(fn) {\n var _this4 = this;\n\n if (this.supportsRaf_) {\n fn = bind(this, fn);\n\n var id = window_1.requestAnimationFrame(fn);\n var disposeFn = function disposeFn() {\n return _this4.cancelAnimationFrame(id);\n };\n\n disposeFn.guid = 'vjs-raf-' + id;\n this.on('dispose', disposeFn);\n\n return id;\n }\n\n // Fall back to using a timer.\n return this.setTimeout(fn, 1000 / 60);\n };\n\n /**\n * Cancels a queued callback passed to {@link Component#requestAnimationFrame}\n * (rAF).\n *\n * If you queue an rAF callback via {@link Component#requestAnimationFrame},\n * use this function instead of `window.cancelAnimationFrame`. If you don't,\n * your dispose listener will not get cleaned up until {@link Component#dispose}!\n *\n * @param {number} id\n * The rAF ID to clear. The return value of {@link Component#requestAnimationFrame}.\n *\n * @return {number}\n * Returns the rAF ID that was cleared.\n *\n * @see [Similar to]{@link https://developer.mozilla.org/en-US/docs/Web/API/window/cancelAnimationFrame}\n */\n\n\n Component.prototype.cancelAnimationFrame = function cancelAnimationFrame(id) {\n if (this.supportsRaf_) {\n window_1.cancelAnimationFrame(id);\n\n var disposeFn = function disposeFn() {};\n\n disposeFn.guid = 'vjs-raf-' + id;\n\n this.off('dispose', disposeFn);\n\n return id;\n }\n\n // Fall back to using a timer.\n return this.clearTimeout(id);\n };\n\n /**\n * Register a `Component` with `videojs` given the name and the component.\n *\n * > NOTE: {@link Tech}s should not be registered as a `Component`. {@link Tech}s\n * should be registered using {@link Tech.registerTech} or\n * {@link videojs:videojs.registerTech}.\n *\n * > NOTE: This function can also be seen on videojs as\n * {@link videojs:videojs.registerComponent}.\n *\n * @param {string} name\n * The name of the `Component` to register.\n *\n * @param {Component} ComponentToRegister\n * The `Component` class to register.\n *\n * @return {Component}\n * The `Component` that was registered.\n */\n\n\n Component.registerComponent = function registerComponent(name, ComponentToRegister) {\n if (typeof name !== 'string' || !name) {\n throw new Error('Illegal component name, \"' + name + '\"; must be a non-empty string.');\n }\n\n var Tech = Component.getComponent('Tech');\n\n // We need to make sure this check is only done if Tech has been registered.\n var isTech = Tech && Tech.isTech(ComponentToRegister);\n var isComp = Component === ComponentToRegister || Component.prototype.isPrototypeOf(ComponentToRegister.prototype);\n\n if (isTech || !isComp) {\n var reason = void 0;\n\n if (isTech) {\n reason = 'techs must be registered using Tech.registerTech()';\n } else {\n reason = 'must be a Component subclass';\n }\n\n throw new Error('Illegal component, \"' + name + '\"; ' + reason + '.');\n }\n\n name = toTitleCase(name);\n\n if (!Component.components_) {\n Component.components_ = {};\n }\n\n var Player = Component.getComponent('Player');\n\n if (name === 'Player' && Player && Player.players) {\n var players = Player.players;\n var playerNames = Object.keys(players);\n\n // If we have players that were disposed, then their name will still be\n // in Players.players. So, we must loop through and verify that the value\n // for each item is not null. This allows registration of the Player component\n // after all players have been disposed or before any were created.\n if (players && playerNames.length > 0 && playerNames.map(function (pname) {\n return players[pname];\n }).every(Boolean)) {\n throw new Error('Can not register Player component after player has been created.');\n }\n }\n\n Component.components_[name] = ComponentToRegister;\n\n return ComponentToRegister;\n };\n\n /**\n * Get a `Component` based on the name it was registered with.\n *\n * @param {string} name\n * The Name of the component to get.\n *\n * @return {Component}\n * The `Component` that got registered under the given name.\n *\n * @deprecated In `videojs` 6 this will not return `Component`s that were not\n * registered using {@link Component.registerComponent}. Currently we\n * check the global `videojs` object for a `Component` name and\n * return that if it exists.\n */\n\n\n Component.getComponent = function getComponent(name) {\n if (!name) {\n return;\n }\n\n name = toTitleCase(name);\n\n if (Component.components_ && Component.components_[name]) {\n return Component.components_[name];\n }\n };\n\n return Component;\n}();\n\n/**\n * Whether or not this component supports `requestAnimationFrame`.\n *\n * This is exposed primarily for testing purposes.\n *\n * @private\n * @type {Boolean}\n */\n\n\nComponent.prototype.supportsRaf_ = typeof window_1.requestAnimationFrame === 'function' && typeof window_1.cancelAnimationFrame === 'function';\n\nComponent.registerComponent('Component', Component);\n\n/**\n * @file time-ranges.js\n * @module time-ranges\n */\n\n/**\n * Returns the time for the specified index at the start or end\n * of a TimeRange object.\n *\n * @function time-ranges:indexFunction\n *\n * @param {number} [index=0]\n * The range number to return the time for.\n *\n * @return {number}\n * The time that offset at the specified index.\n *\n * @depricated index must be set to a value, in the future this will throw an error.\n */\n\n/**\n * An object that contains ranges of time for various reasons.\n *\n * @typedef {Object} TimeRange\n *\n * @property {number} length\n * The number of time ranges represented by this Object\n *\n * @property {time-ranges:indexFunction} start\n * Returns the time offset at which a specified time range begins.\n *\n * @property {time-ranges:indexFunction} end\n * Returns the time offset at which a specified time range begins.\n *\n * @see https://developer.mozilla.org/en-US/docs/Web/API/TimeRanges\n */\n\n/**\n * Check if any of the time ranges are over the maximum index.\n *\n * @param {string} fnName\n * The function name to use for logging\n *\n * @param {number} index\n * The index to check\n *\n * @param {number} maxIndex\n * The maximum possible index\n *\n * @throws {Error} if the timeRanges provided are over the maxIndex\n */\nfunction rangeCheck(fnName, index, maxIndex) {\n if (typeof index !== 'number' || index < 0 || index > maxIndex) {\n throw new Error('Failed to execute \\'' + fnName + '\\' on \\'TimeRanges\\': The index provided (' + index + ') is non-numeric or out of bounds (0-' + maxIndex + ').');\n }\n}\n\n/**\n * Check if any of the time ranges are over the maximum index.\n *\n * @param {string} fnName\n * The function name to use for logging\n *\n * @param {string} valueIndex\n * The proprety that should be used to get the time. should be 'start' or 'end'\n *\n * @param {Array} ranges\n * An array of time ranges\n *\n * @param {Array} [rangeIndex=0]\n * The index to start the search at\n *\n * @return {number}\n * The time that offset at the specified index.\n *\n *\n * @depricated rangeIndex must be set to a value, in the future this will throw an error.\n * @throws {Error} if rangeIndex is more than the length of ranges\n */\nfunction getRange(fnName, valueIndex, ranges, rangeIndex) {\n rangeCheck(fnName, rangeIndex, ranges.length - 1);\n return ranges[rangeIndex][valueIndex];\n}\n\n/**\n * Create a time range object givent ranges of time.\n *\n * @param {Array} [ranges]\n * An array of time ranges.\n */\nfunction createTimeRangesObj(ranges) {\n if (ranges === undefined || ranges.length === 0) {\n return {\n length: 0,\n start: function start() {\n throw new Error('This TimeRanges object is empty');\n },\n end: function end() {\n throw new Error('This TimeRanges object is empty');\n }\n };\n }\n return {\n length: ranges.length,\n start: getRange.bind(null, 'start', 0, ranges),\n end: getRange.bind(null, 'end', 1, ranges)\n };\n}\n\n/**\n * Should create a fake `TimeRange` object which mimics an HTML5 time range instance.\n *\n * @param {number|Array} start\n * The start of a single range or an array of ranges\n *\n * @param {number} end\n * The end of a single range.\n *\n * @private\n */\nfunction createTimeRanges(start, end) {\n if (Array.isArray(start)) {\n return createTimeRangesObj(start);\n } else if (start === undefined || end === undefined) {\n return createTimeRangesObj();\n }\n return createTimeRangesObj([[start, end]]);\n}\n\n/**\n * @file buffer.js\n * @module buffer\n */\n/**\n * Compute the percentage of the media that has been buffered.\n *\n * @param {TimeRange} buffered\n * The current `TimeRange` object representing buffered time ranges\n *\n * @param {number} duration\n * Total duration of the media\n *\n * @return {number}\n * Percent buffered of the total duration in decimal form.\n */\nfunction bufferedPercent(buffered, duration) {\n var bufferedDuration = 0;\n var start = void 0;\n var end = void 0;\n\n if (!duration) {\n return 0;\n }\n\n if (!buffered || !buffered.length) {\n buffered = createTimeRanges(0, 0);\n }\n\n for (var i = 0; i < buffered.length; i++) {\n start = buffered.start(i);\n end = buffered.end(i);\n\n // buffered end can be bigger than duration by a very small fraction\n if (end > duration) {\n end = duration;\n }\n\n bufferedDuration += end - start;\n }\n\n return bufferedDuration / duration;\n}\n\n/**\n * @file fullscreen-api.js\n * @module fullscreen-api\n * @private\n */\n/**\n * Store the browser-specific methods for the fullscreen API.\n *\n * @type {Object}\n * @see [Specification]{@link https://fullscreen.spec.whatwg.org}\n * @see [Map Approach From Screenfull.js]{@link https://github.com/sindresorhus/screenfull.js}\n */\nvar FullscreenApi = {};\n\n// browser API methods\nvar apiMap = [['requestFullscreen', 'exitFullscreen', 'fullscreenElement', 'fullscreenEnabled', 'fullscreenchange', 'fullscreenerror'],\n// WebKit\n['webkitRequestFullscreen', 'webkitExitFullscreen', 'webkitFullscreenElement', 'webkitFullscreenEnabled', 'webkitfullscreenchange', 'webkitfullscreenerror'],\n// Old WebKit (Safari 5.1)\n['webkitRequestFullScreen', 'webkitCancelFullScreen', 'webkitCurrentFullScreenElement', 'webkitCancelFullScreen', 'webkitfullscreenchange', 'webkitfullscreenerror'],\n// Mozilla\n['mozRequestFullScreen', 'mozCancelFullScreen', 'mozFullScreenElement', 'mozFullScreenEnabled', 'mozfullscreenchange', 'mozfullscreenerror'],\n// Microsoft\n['msRequestFullscreen', 'msExitFullscreen', 'msFullscreenElement', 'msFullscreenEnabled', 'MSFullscreenChange', 'MSFullscreenError']];\n\nvar specApi = apiMap[0];\nvar browserApi = void 0;\n\n// determine the supported set of functions\nfor (var i = 0; i < apiMap.length; i++) {\n // check for exitFullscreen function\n if (apiMap[i][1] in document_1) {\n browserApi = apiMap[i];\n break;\n }\n}\n\n// map the browser API names to the spec API names\nif (browserApi) {\n for (var _i = 0; _i < browserApi.length; _i++) {\n FullscreenApi[specApi[_i]] = browserApi[_i];\n }\n}\n\n/**\n * @file media-error.js\n */\n/**\n * A Custom `MediaError` class which mimics the standard HTML5 `MediaError` class.\n *\n * @param {number|string|Object|MediaError} value\n * This can be of multiple types:\n * - number: should be a standard error code\n * - string: an error message (the code will be 0)\n * - Object: arbitrary properties\n * - `MediaError` (native): used to populate a video.js `MediaError` object\n * - `MediaError` (video.js): will return itself if it's already a\n * video.js `MediaError` object.\n *\n * @see [MediaError Spec]{@link https://dev.w3.org/html5/spec-author-view/video.html#mediaerror}\n * @see [Encrypted MediaError Spec]{@link https://www.w3.org/TR/2013/WD-encrypted-media-20130510/#error-codes}\n *\n * @class MediaError\n */\nfunction MediaError(value) {\n\n // Allow redundant calls to this constructor to avoid having `instanceof`\n // checks peppered around the code.\n if (value instanceof MediaError) {\n return value;\n }\n\n if (typeof value === 'number') {\n this.code = value;\n } else if (typeof value === 'string') {\n // default code is zero, so this is a custom error\n this.message = value;\n } else if (isObject(value)) {\n\n // We assign the `code` property manually because native `MediaError` objects\n // do not expose it as an own/enumerable property of the object.\n if (typeof value.code === 'number') {\n this.code = value.code;\n }\n\n assign(this, value);\n }\n\n if (!this.message) {\n this.message = MediaError.defaultMessages[this.code] || '';\n }\n}\n\n/**\n * The error code that refers two one of the defined `MediaError` types\n *\n * @type {Number}\n */\nMediaError.prototype.code = 0;\n\n/**\n * An optional message that to show with the error. Message is not part of the HTML5\n * video spec but allows for more informative custom errors.\n *\n * @type {String}\n */\nMediaError.prototype.message = '';\n\n/**\n * An optional status code that can be set by plugins to allow even more detail about\n * the error. For example a plugin might provide a specific HTTP status code and an\n * error message for that code. Then when the plugin gets that error this class will\n * know how to display an error message for it. This allows a custom message to show\n * up on the `Player` error overlay.\n *\n * @type {Array}\n */\nMediaError.prototype.status = null;\n\n/**\n * Errors indexed by the W3C standard. The order **CANNOT CHANGE**! See the\n * specification listed under {@link MediaError} for more information.\n *\n * @enum {array}\n * @readonly\n * @property {string} 0 - MEDIA_ERR_CUSTOM\n * @property {string} 1 - MEDIA_ERR_CUSTOM\n * @property {string} 2 - MEDIA_ERR_ABORTED\n * @property {string} 3 - MEDIA_ERR_NETWORK\n * @property {string} 4 - MEDIA_ERR_SRC_NOT_SUPPORTED\n * @property {string} 5 - MEDIA_ERR_ENCRYPTED\n */\nMediaError.errorTypes = ['MEDIA_ERR_CUSTOM', 'MEDIA_ERR_ABORTED', 'MEDIA_ERR_NETWORK', 'MEDIA_ERR_DECODE', 'MEDIA_ERR_SRC_NOT_SUPPORTED', 'MEDIA_ERR_ENCRYPTED'];\n\n/**\n * The default `MediaError` messages based on the {@link MediaError.errorTypes}.\n *\n * @type {Array}\n * @constant\n */\nMediaError.defaultMessages = {\n 1: 'You aborted the media playback',\n 2: 'A network error caused the media download to fail part-way.',\n 3: 'The media playback was aborted due to a corruption problem or because the media used features your browser did not support.',\n 4: 'The media could not be loaded, either because the server or network failed or because the format is not supported.',\n 5: 'The media is encrypted and we do not have the keys to decrypt it.'\n};\n\n// Add types as properties on MediaError\n// e.g. MediaError.MEDIA_ERR_SRC_NOT_SUPPORTED = 4;\nfor (var errNum = 0; errNum < MediaError.errorTypes.length; errNum++) {\n MediaError[MediaError.errorTypes[errNum]] = errNum;\n // values should be accessible on both the class and instance\n MediaError.prototype[MediaError.errorTypes[errNum]] = errNum;\n}\n\nvar tuple = SafeParseTuple;\n\nfunction SafeParseTuple(obj, reviver) {\n var json;\n var error = null;\n\n try {\n json = JSON.parse(obj, reviver);\n } catch (err) {\n error = err;\n }\n\n return [error, json]\n}\n\n/**\n * Returns whether an object is `Promise`-like (i.e. has a `then` method).\n *\n * @param {Object} value\n * An object that may or may not be `Promise`-like.\n *\n * @return {Boolean}\n * Whether or not the object is `Promise`-like.\n */\nfunction isPromise(value) {\n return value !== undefined && value !== null && typeof value.then === 'function';\n}\n\n/**\n * Silence a Promise-like object.\n *\n * This is useful for avoiding non-harmful, but potentially confusing \"uncaught\n * play promise\" rejection error messages.\n *\n * @param {Object} value\n * An object that may or may not be `Promise`-like.\n */\nfunction silencePromise(value) {\n if (isPromise(value)) {\n value.then(null, function (e) {});\n }\n}\n\n/**\n * @file text-track-list-converter.js Utilities for capturing text track state and\n * re-creating tracks based on a capture.\n *\n * @module text-track-list-converter\n */\n\n/**\n * Examine a single {@link TextTrack} and return a JSON-compatible javascript object that\n * represents the {@link TextTrack}'s state.\n *\n * @param {TextTrack} track\n * The text track to query.\n *\n * @return {Object}\n * A serializable javascript representation of the TextTrack.\n * @private\n */\nvar trackToJson_ = function trackToJson_(track) {\n var ret = ['kind', 'label', 'language', 'id', 'inBandMetadataTrackDispatchType', 'mode', 'src'].reduce(function (acc, prop, i) {\n\n if (track[prop]) {\n acc[prop] = track[prop];\n }\n\n return acc;\n }, {\n cues: track.cues && Array.prototype.map.call(track.cues, function (cue) {\n return {\n startTime: cue.startTime,\n endTime: cue.endTime,\n text: cue.text,\n id: cue.id\n };\n })\n });\n\n return ret;\n};\n\n/**\n * Examine a {@link Tech} and return a JSON-compatible javascript array that represents the\n * state of all {@link TextTrack}s currently configured. The return array is compatible with\n * {@link text-track-list-converter:jsonToTextTracks}.\n *\n * @param {Tech} tech\n * The tech object to query\n *\n * @return {Array}\n * A serializable javascript representation of the {@link Tech}s\n * {@link TextTrackList}.\n */\nvar textTracksToJson = function textTracksToJson(tech) {\n\n var trackEls = tech.$$('track');\n\n var trackObjs = Array.prototype.map.call(trackEls, function (t) {\n return t.track;\n });\n var tracks = Array.prototype.map.call(trackEls, function (trackEl) {\n var json = trackToJson_(trackEl.track);\n\n if (trackEl.src) {\n json.src = trackEl.src;\n }\n return json;\n });\n\n return tracks.concat(Array.prototype.filter.call(tech.textTracks(), function (track) {\n return trackObjs.indexOf(track) === -1;\n }).map(trackToJson_));\n};\n\n/**\n * Create a set of remote {@link TextTrack}s on a {@link Tech} based on an array of javascript\n * object {@link TextTrack} representations.\n *\n * @param {Array} json\n * An array of `TextTrack` representation objects, like those that would be\n * produced by `textTracksToJson`.\n *\n * @param {Tech} tech\n * The `Tech` to create the `TextTrack`s on.\n */\nvar jsonToTextTracks = function jsonToTextTracks(json, tech) {\n json.forEach(function (track) {\n var addedTrack = tech.addRemoteTextTrack(track).track;\n\n if (!track.src && track.cues) {\n track.cues.forEach(function (cue) {\n return addedTrack.addCue(cue);\n });\n }\n });\n\n return tech.textTracks();\n};\n\nvar textTrackConverter = { textTracksToJson: textTracksToJson, jsonToTextTracks: jsonToTextTracks, trackToJson_: trackToJson_ };\n\n/**\n * @file modal-dialog.js\n */\nvar MODAL_CLASS_NAME = 'vjs-modal-dialog';\nvar ESC = 27;\n\n/**\n * The `ModalDialog` displays over the video and its controls, which blocks\n * interaction with the player until it is closed.\n *\n * Modal dialogs include a \"Close\" button and will close when that button\n * is activated - or when ESC is pressed anywhere.\n *\n * @extends Component\n */\n\nvar ModalDialog = function (_Component) {\n inherits(ModalDialog, _Component);\n\n /**\n * Create an instance of this class.\n *\n * @param {Player} player\n * The `Player` that this class should be attached to.\n *\n * @param {Object} [options]\n * The key/value store of player options.\n *\n * @param {Mixed} [options.content=undefined]\n * Provide customized content for this modal.\n *\n * @param {string} [options.description]\n * A text description for the modal, primarily for accessibility.\n *\n * @param {boolean} [options.fillAlways=false]\n * Normally, modals are automatically filled only the first time\n * they open. This tells the modal to refresh its content\n * every time it opens.\n *\n * @param {string} [options.label]\n * A text label for the modal, primarily for accessibility.\n *\n * @param {boolean} [options.temporary=true]\n * If `true`, the modal can only be opened once; it will be\n * disposed as soon as it's closed.\n *\n * @param {boolean} [options.uncloseable=false]\n * If `true`, the user will not be able to close the modal\n * through the UI in the normal ways. Programmatic closing is\n * still possible.\n */\n function ModalDialog(player, options) {\n classCallCheck(this, ModalDialog);\n\n var _this = possibleConstructorReturn(this, _Component.call(this, player, options));\n\n _this.opened_ = _this.hasBeenOpened_ = _this.hasBeenFilled_ = false;\n\n _this.closeable(!_this.options_.uncloseable);\n _this.content(_this.options_.content);\n\n // Make sure the contentEl is defined AFTER any children are initialized\n // because we only want the contents of the modal in the contentEl\n // (not the UI elements like the close button).\n _this.contentEl_ = createEl('div', {\n className: MODAL_CLASS_NAME + '-content'\n }, {\n role: 'document'\n });\n\n _this.descEl_ = createEl('p', {\n className: MODAL_CLASS_NAME + '-description vjs-control-text',\n id: _this.el().getAttribute('aria-describedby')\n });\n\n textContent(_this.descEl_, _this.description());\n _this.el_.appendChild(_this.descEl_);\n _this.el_.appendChild(_this.contentEl_);\n return _this;\n }\n\n /**\n * Create the `ModalDialog`'s DOM element\n *\n * @return {Element}\n * The DOM element that gets created.\n */\n\n\n ModalDialog.prototype.createEl = function createEl$$1() {\n return _Component.prototype.createEl.call(this, 'div', {\n className: this.buildCSSClass(),\n tabIndex: -1\n }, {\n 'aria-describedby': this.id() + '_description',\n 'aria-hidden': 'true',\n 'aria-label': this.label(),\n 'role': 'dialog'\n });\n };\n\n ModalDialog.prototype.dispose = function dispose() {\n this.contentEl_ = null;\n this.descEl_ = null;\n this.previouslyActiveEl_ = null;\n\n _Component.prototype.dispose.call(this);\n };\n\n /**\n * Builds the default DOM `className`.\n *\n * @return {string}\n * The DOM `className` for this object.\n */\n\n\n ModalDialog.prototype.buildCSSClass = function buildCSSClass() {\n return MODAL_CLASS_NAME + ' vjs-hidden ' + _Component.prototype.buildCSSClass.call(this);\n };\n\n /**\n * Handles `keydown` events on the document, looking for ESC, which closes\n * the modal.\n *\n * @param {EventTarget~Event} e\n * The keypress that triggered this event.\n *\n * @listens keydown\n */\n\n\n ModalDialog.prototype.handleKeyPress = function handleKeyPress(e) {\n if (e.which === ESC && this.closeable()) {\n this.close();\n }\n };\n\n /**\n * Returns the label string for this modal. Primarily used for accessibility.\n *\n * @return {string}\n * the localized or raw label of this modal.\n */\n\n\n ModalDialog.prototype.label = function label() {\n return this.localize(this.options_.label || 'Modal Window');\n };\n\n /**\n * Returns the description string for this modal. Primarily used for\n * accessibility.\n *\n * @return {string}\n * The localized or raw description of this modal.\n */\n\n\n ModalDialog.prototype.description = function description() {\n var desc = this.options_.description || this.localize('This is a modal window.');\n\n // Append a universal closeability message if the modal is closeable.\n if (this.closeable()) {\n desc += ' ' + this.localize('This modal can be closed by pressing the Escape key or activating the close button.');\n }\n\n return desc;\n };\n\n /**\n * Opens the modal.\n *\n * @fires ModalDialog#beforemodalopen\n * @fires ModalDialog#modalopen\n */\n\n\n ModalDialog.prototype.open = function open() {\n if (!this.opened_) {\n var player = this.player();\n\n /**\n * Fired just before a `ModalDialog` is opened.\n *\n * @event ModalDialog#beforemodalopen\n * @type {EventTarget~Event}\n */\n this.trigger('beforemodalopen');\n this.opened_ = true;\n\n // Fill content if the modal has never opened before and\n // never been filled.\n if (this.options_.fillAlways || !this.hasBeenOpened_ && !this.hasBeenFilled_) {\n this.fill();\n }\n\n // If the player was playing, pause it and take note of its previously\n // playing state.\n this.wasPlaying_ = !player.paused();\n\n if (this.options_.pauseOnOpen && this.wasPlaying_) {\n player.pause();\n }\n\n if (this.closeable()) {\n this.on(this.el_.ownerDocument, 'keydown', bind(this, this.handleKeyPress));\n }\n\n // Hide controls and note if they were enabled.\n this.hadControls_ = player.controls();\n player.controls(false);\n\n this.show();\n this.conditionalFocus_();\n this.el().setAttribute('aria-hidden', 'false');\n\n /**\n * Fired just after a `ModalDialog` is opened.\n *\n * @event ModalDialog#modalopen\n * @type {EventTarget~Event}\n */\n this.trigger('modalopen');\n this.hasBeenOpened_ = true;\n }\n };\n\n /**\n * If the `ModalDialog` is currently open or closed.\n *\n * @param {boolean} [value]\n * If given, it will open (`true`) or close (`false`) the modal.\n *\n * @return {boolean}\n * the current open state of the modaldialog\n */\n\n\n ModalDialog.prototype.opened = function opened(value) {\n if (typeof value === 'boolean') {\n this[value ? 'open' : 'close']();\n }\n return this.opened_;\n };\n\n /**\n * Closes the modal, does nothing if the `ModalDialog` is\n * not open.\n *\n * @fires ModalDialog#beforemodalclose\n * @fires ModalDialog#modalclose\n */\n\n\n ModalDialog.prototype.close = function close() {\n if (!this.opened_) {\n return;\n }\n var player = this.player();\n\n /**\n * Fired just before a `ModalDialog` is closed.\n *\n * @event ModalDialog#beforemodalclose\n * @type {EventTarget~Event}\n */\n this.trigger('beforemodalclose');\n this.opened_ = false;\n\n if (this.wasPlaying_ && this.options_.pauseOnOpen) {\n player.play();\n }\n\n if (this.closeable()) {\n this.off(this.el_.ownerDocument, 'keydown', bind(this, this.handleKeyPress));\n }\n\n if (this.hadControls_) {\n player.controls(true);\n }\n\n this.hide();\n this.el().setAttribute('aria-hidden', 'true');\n\n /**\n * Fired just after a `ModalDialog` is closed.\n *\n * @event ModalDialog#modalclose\n * @type {EventTarget~Event}\n */\n this.trigger('modalclose');\n this.conditionalBlur_();\n\n if (this.options_.temporary) {\n this.dispose();\n }\n };\n\n /**\n * Check to see if the `ModalDialog` is closeable via the UI.\n *\n * @param {boolean} [value]\n * If given as a boolean, it will set the `closeable` option.\n *\n * @return {boolean}\n * Returns the final value of the closable option.\n */\n\n\n ModalDialog.prototype.closeable = function closeable(value) {\n if (typeof value === 'boolean') {\n var closeable = this.closeable_ = !!value;\n var close = this.getChild('closeButton');\n\n // If this is being made closeable and has no close button, add one.\n if (closeable && !close) {\n\n // The close button should be a child of the modal - not its\n // content element, so temporarily change the content element.\n var temp = this.contentEl_;\n\n this.contentEl_ = this.el_;\n close = this.addChild('closeButton', { controlText: 'Close Modal Dialog' });\n this.contentEl_ = temp;\n this.on(close, 'close', this.close);\n }\n\n // If this is being made uncloseable and has a close button, remove it.\n if (!closeable && close) {\n this.off(close, 'close', this.close);\n this.removeChild(close);\n close.dispose();\n }\n }\n return this.closeable_;\n };\n\n /**\n * Fill the modal's content element with the modal's \"content\" option.\n * The content element will be emptied before this change takes place.\n */\n\n\n ModalDialog.prototype.fill = function fill() {\n this.fillWith(this.content());\n };\n\n /**\n * Fill the modal's content element with arbitrary content.\n * The content element will be emptied before this change takes place.\n *\n * @fires ModalDialog#beforemodalfill\n * @fires ModalDialog#modalfill\n *\n * @param {Mixed} [content]\n * The same rules apply to this as apply to the `content` option.\n */\n\n\n ModalDialog.prototype.fillWith = function fillWith(content) {\n var contentEl = this.contentEl();\n var parentEl = contentEl.parentNode;\n var nextSiblingEl = contentEl.nextSibling;\n\n /**\n * Fired just before a `ModalDialog` is filled with content.\n *\n * @event ModalDialog#beforemodalfill\n * @type {EventTarget~Event}\n */\n this.trigger('beforemodalfill');\n this.hasBeenFilled_ = true;\n\n // Detach the content element from the DOM before performing\n // manipulation to avoid modifying the live DOM multiple times.\n parentEl.removeChild(contentEl);\n this.empty();\n insertContent(contentEl, content);\n /**\n * Fired just after a `ModalDialog` is filled with content.\n *\n * @event ModalDialog#modalfill\n * @type {EventTarget~Event}\n */\n this.trigger('modalfill');\n\n // Re-inject the re-filled content element.\n if (nextSiblingEl) {\n parentEl.insertBefore(contentEl, nextSiblingEl);\n } else {\n parentEl.appendChild(contentEl);\n }\n\n // make sure that the close button is last in the dialog DOM\n var closeButton = this.getChild('closeButton');\n\n if (closeButton) {\n parentEl.appendChild(closeButton.el_);\n }\n };\n\n /**\n * Empties the content element. This happens anytime the modal is filled.\n *\n * @fires ModalDialog#beforemodalempty\n * @fires ModalDialog#modalempty\n */\n\n\n ModalDialog.prototype.empty = function empty() {\n /**\n * Fired just before a `ModalDialog` is emptied.\n *\n * @event ModalDialog#beforemodalempty\n * @type {EventTarget~Event}\n */\n this.trigger('beforemodalempty');\n emptyEl(this.contentEl());\n\n /**\n * Fired just after a `ModalDialog` is emptied.\n *\n * @event ModalDialog#modalempty\n * @type {EventTarget~Event}\n */\n this.trigger('modalempty');\n };\n\n /**\n * Gets or sets the modal content, which gets normalized before being\n * rendered into the DOM.\n *\n * This does not update the DOM or fill the modal, but it is called during\n * that process.\n *\n * @param {Mixed} [value]\n * If defined, sets the internal content value to be used on the\n * next call(s) to `fill`. This value is normalized before being\n * inserted. To \"clear\" the internal content value, pass `null`.\n *\n * @return {Mixed}\n * The current content of the modal dialog\n */\n\n\n ModalDialog.prototype.content = function content(value) {\n if (typeof value !== 'undefined') {\n this.content_ = value;\n }\n return this.content_;\n };\n\n /**\n * conditionally focus the modal dialog if focus was previously on the player.\n *\n * @private\n */\n\n\n ModalDialog.prototype.conditionalFocus_ = function conditionalFocus_() {\n var activeEl = document_1.activeElement;\n var playerEl = this.player_.el_;\n\n this.previouslyActiveEl_ = null;\n\n if (playerEl.contains(activeEl) || playerEl === activeEl) {\n this.previouslyActiveEl_ = activeEl;\n\n this.focus();\n\n this.on(document_1, 'keydown', this.handleKeyDown);\n }\n };\n\n /**\n * conditionally blur the element and refocus the last focused element\n *\n * @private\n */\n\n\n ModalDialog.prototype.conditionalBlur_ = function conditionalBlur_() {\n if (this.previouslyActiveEl_) {\n this.previouslyActiveEl_.focus();\n this.previouslyActiveEl_ = null;\n }\n\n this.off(document_1, 'keydown', this.handleKeyDown);\n };\n\n /**\n * Keydown handler. Attached when modal is focused.\n *\n * @listens keydown\n */\n\n\n ModalDialog.prototype.handleKeyDown = function handleKeyDown(event) {\n // exit early if it isn't a tab key\n if (event.which !== 9) {\n return;\n }\n\n var focusableEls = this.focusableEls_();\n var activeEl = this.el_.querySelector(':focus');\n var focusIndex = void 0;\n\n for (var i = 0; i < focusableEls.length; i++) {\n if (activeEl === focusableEls[i]) {\n focusIndex = i;\n break;\n }\n }\n\n if (document_1.activeElement === this.el_) {\n focusIndex = 0;\n }\n\n if (event.shiftKey && focusIndex === 0) {\n focusableEls[focusableEls.length - 1].focus();\n event.preventDefault();\n } else if (!event.shiftKey && focusIndex === focusableEls.length - 1) {\n focusableEls[0].focus();\n event.preventDefault();\n }\n };\n\n /**\n * get all focusable elements\n *\n * @private\n */\n\n\n ModalDialog.prototype.focusableEls_ = function focusableEls_() {\n var allChildren = this.el_.querySelectorAll('*');\n\n return Array.prototype.filter.call(allChildren, function (child) {\n return (child instanceof window_1.HTMLAnchorElement || child instanceof window_1.HTMLAreaElement) && child.hasAttribute('href') || (child instanceof window_1.HTMLInputElement || child instanceof window_1.HTMLSelectElement || child instanceof window_1.HTMLTextAreaElement || child instanceof window_1.HTMLButtonElement) && !child.hasAttribute('disabled') || child instanceof window_1.HTMLIFrameElement || child instanceof window_1.HTMLObjectElement || child instanceof window_1.HTMLEmbedElement || child.hasAttribute('tabindex') && child.getAttribute('tabindex') !== -1 || child.hasAttribute('contenteditable');\n });\n };\n\n return ModalDialog;\n}(Component);\n\n/**\n * Default options for `ModalDialog` default options.\n *\n * @type {Object}\n * @private\n */\n\n\nModalDialog.prototype.options_ = {\n pauseOnOpen: true,\n temporary: true\n};\n\nComponent.registerComponent('ModalDialog', ModalDialog);\n\n/**\n * @file track-list.js\n */\n/**\n * Common functionaliy between {@link TextTrackList}, {@link AudioTrackList}, and\n * {@link VideoTrackList}\n *\n * @extends EventTarget\n */\n\nvar TrackList = function (_EventTarget) {\n inherits(TrackList, _EventTarget);\n\n /**\n * Create an instance of this class\n *\n * @param {Track[]} tracks\n * A list of tracks to initialize the list with.\n *\n * @param {Object} [list]\n * The child object with inheritance done manually for ie8.\n *\n * @abstract\n */\n function TrackList() {\n var tracks = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];\n\n var _ret;\n\n var list = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;\n classCallCheck(this, TrackList);\n\n var _this = possibleConstructorReturn(this, _EventTarget.call(this));\n\n if (!list) {\n list = _this; // eslint-disable-line\n if (IS_IE8) {\n list = document_1.createElement('custom');\n for (var prop in TrackList.prototype) {\n if (prop !== 'constructor') {\n list[prop] = TrackList.prototype[prop];\n }\n }\n }\n }\n\n list.tracks_ = [];\n\n /**\n * @memberof TrackList\n * @member {number} length\n * The current number of `Track`s in the this Trackist.\n * @instance\n */\n Object.defineProperty(list, 'length', {\n get: function get$$1() {\n return this.tracks_.length;\n }\n });\n\n for (var i = 0; i < tracks.length; i++) {\n list.addTrack(tracks[i]);\n }\n\n // must return the object, as for ie8 it will not be this\n // but a reference to a document object\n return _ret = list, possibleConstructorReturn(_this, _ret);\n }\n\n /**\n * Add a {@link Track} to the `TrackList`\n *\n * @param {Track} track\n * The audio, video, or text track to add to the list.\n *\n * @fires TrackList#addtrack\n */\n\n\n TrackList.prototype.addTrack = function addTrack(track) {\n var index = this.tracks_.length;\n\n if (!('' + index in this)) {\n Object.defineProperty(this, index, {\n get: function get$$1() {\n return this.tracks_[index];\n }\n });\n }\n\n // Do not add duplicate tracks\n if (this.tracks_.indexOf(track) === -1) {\n this.tracks_.push(track);\n /**\n * Triggered when a track is added to a track list.\n *\n * @event TrackList#addtrack\n * @type {EventTarget~Event}\n * @property {Track} track\n * A reference to track that was added.\n */\n this.trigger({\n track: track,\n type: 'addtrack'\n });\n }\n };\n\n /**\n * Remove a {@link Track} from the `TrackList`\n *\n * @param {Track} rtrack\n * The audio, video, or text track to remove from the list.\n *\n * @fires TrackList#removetrack\n */\n\n\n TrackList.prototype.removeTrack = function removeTrack(rtrack) {\n var track = void 0;\n\n for (var i = 0, l = this.length; i < l; i++) {\n if (this[i] === rtrack) {\n track = this[i];\n if (track.off) {\n track.off();\n }\n\n this.tracks_.splice(i, 1);\n\n break;\n }\n }\n\n if (!track) {\n return;\n }\n\n /**\n * Triggered when a track is removed from track list.\n *\n * @event TrackList#removetrack\n * @type {EventTarget~Event}\n * @property {Track} track\n * A reference to track that was removed.\n */\n this.trigger({\n track: track,\n type: 'removetrack'\n });\n };\n\n /**\n * Get a Track from the TrackList by a tracks id\n *\n * @param {String} id - the id of the track to get\n * @method getTrackById\n * @return {Track}\n * @private\n */\n\n\n TrackList.prototype.getTrackById = function getTrackById(id) {\n var result = null;\n\n for (var i = 0, l = this.length; i < l; i++) {\n var track = this[i];\n\n if (track.id === id) {\n result = track;\n break;\n }\n }\n\n return result;\n };\n\n return TrackList;\n}(EventTarget);\n\n/**\n * Triggered when a different track is selected/enabled.\n *\n * @event TrackList#change\n * @type {EventTarget~Event}\n */\n\n/**\n * Events that can be called with on + eventName. See {@link EventHandler}.\n *\n * @property {Object} TrackList#allowedEvents_\n * @private\n */\n\n\nTrackList.prototype.allowedEvents_ = {\n change: 'change',\n addtrack: 'addtrack',\n removetrack: 'removetrack'\n};\n\n// emulate attribute EventHandler support to allow for feature detection\nfor (var event in TrackList.prototype.allowedEvents_) {\n TrackList.prototype['on' + event] = null;\n}\n\n/**\n * @file audio-track-list.js\n */\n/**\n * Anywhere we call this function we diverge from the spec\n * as we only support one enabled audiotrack at a time\n *\n * @param {AudioTrackList} list\n * list to work on\n *\n * @param {AudioTrack} track\n * The track to skip\n *\n * @private\n */\nvar disableOthers = function disableOthers(list, track) {\n for (var i = 0; i < list.length; i++) {\n if (!Object.keys(list[i]).length || track.id === list[i].id) {\n continue;\n }\n // another audio track is enabled, disable it\n list[i].enabled = false;\n }\n};\n\n/**\n * The current list of {@link AudioTrack} for a media file.\n *\n * @see [Spec]{@link https://html.spec.whatwg.org/multipage/embedded-content.html#audiotracklist}\n * @extends TrackList\n */\n\nvar AudioTrackList = function (_TrackList) {\n inherits(AudioTrackList, _TrackList);\n\n /**\n * Create an instance of this class.\n *\n * @param {AudioTrack[]} [tracks=[]]\n * A list of `AudioTrack` to instantiate the list with.\n */\n function AudioTrackList() {\n var _this, _ret;\n\n var tracks = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];\n classCallCheck(this, AudioTrackList);\n\n var list = void 0;\n\n // make sure only 1 track is enabled\n // sorted from last index to first index\n for (var i = tracks.length - 1; i >= 0; i--) {\n if (tracks[i].enabled) {\n disableOthers(tracks, tracks[i]);\n break;\n }\n }\n\n // IE8 forces us to implement inheritance ourselves\n // as it does not support Object.defineProperty properly\n if (IS_IE8) {\n list = document_1.createElement('custom');\n for (var prop in TrackList.prototype) {\n if (prop !== 'constructor') {\n list[prop] = TrackList.prototype[prop];\n }\n }\n for (var _prop in AudioTrackList.prototype) {\n if (_prop !== 'constructor') {\n list[_prop] = AudioTrackList.prototype[_prop];\n }\n }\n }\n\n list = (_this = possibleConstructorReturn(this, _TrackList.call(this, tracks, list)), _this);\n list.changing_ = false;\n\n return _ret = list, possibleConstructorReturn(_this, _ret);\n }\n\n /**\n * Add an {@link AudioTrack} to the `AudioTrackList`.\n *\n * @param {AudioTrack} track\n * The AudioTrack to add to the list\n *\n * @fires TrackList#addtrack\n */\n\n\n AudioTrackList.prototype.addTrack = function addTrack(track) {\n var _this2 = this;\n\n if (track.enabled) {\n disableOthers(this, track);\n }\n\n _TrackList.prototype.addTrack.call(this, track);\n // native tracks don't have this\n if (!track.addEventListener) {\n return;\n }\n\n /**\n * @listens AudioTrack#enabledchange\n * @fires TrackList#change\n */\n track.addEventListener('enabledchange', function () {\n // when we are disabling other tracks (since we don't support\n // more than one track at a time) we will set changing_\n // to true so that we don't trigger additional change events\n if (_this2.changing_) {\n return;\n }\n _this2.changing_ = true;\n disableOthers(_this2, track);\n _this2.changing_ = false;\n _this2.trigger('change');\n });\n };\n\n return AudioTrackList;\n}(TrackList);\n\n/**\n * @file video-track-list.js\n */\n/**\n * Un-select all other {@link VideoTrack}s that are selected.\n *\n * @param {VideoTrackList} list\n * list to work on\n *\n * @param {VideoTrack} track\n * The track to skip\n *\n * @private\n */\nvar disableOthers$1 = function disableOthers(list, track) {\n for (var i = 0; i < list.length; i++) {\n if (!Object.keys(list[i]).length || track.id === list[i].id) {\n continue;\n }\n // another video track is enabled, disable it\n list[i].selected = false;\n }\n};\n\n/**\n * The current list of {@link VideoTrack} for a video.\n *\n * @see [Spec]{@link https://html.spec.whatwg.org/multipage/embedded-content.html#videotracklist}\n * @extends TrackList\n */\n\nvar VideoTrackList = function (_TrackList) {\n inherits(VideoTrackList, _TrackList);\n\n /**\n * Create an instance of this class.\n *\n * @param {VideoTrack[]} [tracks=[]]\n * A list of `VideoTrack` to instantiate the list with.\n */\n function VideoTrackList() {\n var _this, _ret;\n\n var tracks = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];\n classCallCheck(this, VideoTrackList);\n\n var list = void 0;\n\n // make sure only 1 track is enabled\n // sorted from last index to first index\n for (var i = tracks.length - 1; i >= 0; i--) {\n if (tracks[i].selected) {\n disableOthers$1(tracks, tracks[i]);\n break;\n }\n }\n\n // IE8 forces us to implement inheritance ourselves\n // as it does not support Object.defineProperty properly\n if (IS_IE8) {\n list = document_1.createElement('custom');\n for (var prop in TrackList.prototype) {\n if (prop !== 'constructor') {\n list[prop] = TrackList.prototype[prop];\n }\n }\n for (var _prop in VideoTrackList.prototype) {\n if (_prop !== 'constructor') {\n list[_prop] = VideoTrackList.prototype[_prop];\n }\n }\n }\n\n list = (_this = possibleConstructorReturn(this, _TrackList.call(this, tracks, list)), _this);\n list.changing_ = false;\n\n /**\n * @member {number} VideoTrackList#selectedIndex\n * The current index of the selected {@link VideoTrack`}.\n */\n Object.defineProperty(list, 'selectedIndex', {\n get: function get$$1() {\n for (var _i = 0; _i < this.length; _i++) {\n if (this[_i].selected) {\n return _i;\n }\n }\n return -1;\n },\n set: function set$$1() {}\n });\n\n return _ret = list, possibleConstructorReturn(_this, _ret);\n }\n\n /**\n * Add a {@link VideoTrack} to the `VideoTrackList`.\n *\n * @param {VideoTrack} track\n * The VideoTrack to add to the list\n *\n * @fires TrackList#addtrack\n */\n\n\n VideoTrackList.prototype.addTrack = function addTrack(track) {\n var _this2 = this;\n\n if (track.selected) {\n disableOthers$1(this, track);\n }\n\n _TrackList.prototype.addTrack.call(this, track);\n // native tracks don't have this\n if (!track.addEventListener) {\n return;\n }\n\n /**\n * @listens VideoTrack#selectedchange\n * @fires TrackList#change\n */\n track.addEventListener('selectedchange', function () {\n if (_this2.changing_) {\n return;\n }\n _this2.changing_ = true;\n disableOthers$1(_this2, track);\n _this2.changing_ = false;\n _this2.trigger('change');\n });\n };\n\n return VideoTrackList;\n}(TrackList);\n\n/**\n * @file text-track-list.js\n */\n/**\n * The current list of {@link TextTrack} for a media file.\n *\n * @see [Spec]{@link https://html.spec.whatwg.org/multipage/embedded-content.html#texttracklist}\n * @extends TrackList\n */\n\nvar TextTrackList = function (_TrackList) {\n inherits(TextTrackList, _TrackList);\n\n /**\n * Create an instance of this class.\n *\n * @param {TextTrack[]} [tracks=[]]\n * A list of `TextTrack` to instantiate the list with.\n */\n function TextTrackList() {\n var _this, _ret;\n\n var tracks = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];\n classCallCheck(this, TextTrackList);\n\n var list = void 0;\n\n // IE8 forces us to implement inheritance ourselves\n // as it does not support Object.defineProperty properly\n if (IS_IE8) {\n list = document_1.createElement('custom');\n for (var prop in TrackList.prototype) {\n if (prop !== 'constructor') {\n list[prop] = TrackList.prototype[prop];\n }\n }\n for (var _prop in TextTrackList.prototype) {\n if (_prop !== 'constructor') {\n list[_prop] = TextTrackList.prototype[_prop];\n }\n }\n }\n\n list = (_this = possibleConstructorReturn(this, _TrackList.call(this, tracks, list)), _this);\n return _ret = list, possibleConstructorReturn(_this, _ret);\n }\n\n /**\n * Add a {@link TextTrack} to the `TextTrackList`\n *\n * @param {TextTrack} track\n * The text track to add to the list.\n *\n * @fires TrackList#addtrack\n */\n\n\n TextTrackList.prototype.addTrack = function addTrack(track) {\n _TrackList.prototype.addTrack.call(this, track);\n\n /**\n * @listens TextTrack#modechange\n * @fires TrackList#change\n */\n track.addEventListener('modechange', bind(this, function () {\n this.trigger('change');\n }));\n\n var nonLanguageTextTrackKind = ['metadata', 'chapters'];\n\n if (nonLanguageTextTrackKind.indexOf(track.kind) === -1) {\n track.addEventListener('modechange', bind(this, function () {\n this.trigger('selectedlanguagechange');\n }));\n }\n };\n\n return TextTrackList;\n}(TrackList);\n\n/**\n * @file html-track-element-list.js\n */\n\n/**\n * The current list of {@link HtmlTrackElement}s.\n */\n\nvar HtmlTrackElementList = function () {\n\n /**\n * Create an instance of this class.\n *\n * @param {HtmlTrackElement[]} [tracks=[]]\n * A list of `HtmlTrackElement` to instantiate the list with.\n */\n function HtmlTrackElementList() {\n var trackElements = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];\n classCallCheck(this, HtmlTrackElementList);\n\n var list = this; // eslint-disable-line\n\n if (IS_IE8) {\n list = document_1.createElement('custom');\n\n for (var prop in HtmlTrackElementList.prototype) {\n if (prop !== 'constructor') {\n list[prop] = HtmlTrackElementList.prototype[prop];\n }\n }\n }\n\n list.trackElements_ = [];\n\n /**\n * @memberof HtmlTrackElementList\n * @member {number} length\n * The current number of `Track`s in the this Trackist.\n * @instance\n */\n Object.defineProperty(list, 'length', {\n get: function get$$1() {\n return this.trackElements_.length;\n }\n });\n\n for (var i = 0, length = trackElements.length; i < length; i++) {\n list.addTrackElement_(trackElements[i]);\n }\n\n if (IS_IE8) {\n return list;\n }\n }\n\n /**\n * Add an {@link HtmlTrackElement} to the `HtmlTrackElementList`\n *\n * @param {HtmlTrackElement} trackElement\n * The track element to add to the list.\n *\n * @private\n */\n\n\n HtmlTrackElementList.prototype.addTrackElement_ = function addTrackElement_(trackElement) {\n var index = this.trackElements_.length;\n\n if (!('' + index in this)) {\n Object.defineProperty(this, index, {\n get: function get$$1() {\n return this.trackElements_[index];\n }\n });\n }\n\n // Do not add duplicate elements\n if (this.trackElements_.indexOf(trackElement) === -1) {\n this.trackElements_.push(trackElement);\n }\n };\n\n /**\n * Get an {@link HtmlTrackElement} from the `HtmlTrackElementList` given an\n * {@link TextTrack}.\n *\n * @param {TextTrack} track\n * The track associated with a track element.\n *\n * @return {HtmlTrackElement|undefined}\n * The track element that was found or undefined.\n *\n * @private\n */\n\n\n HtmlTrackElementList.prototype.getTrackElementByTrack_ = function getTrackElementByTrack_(track) {\n var trackElement_ = void 0;\n\n for (var i = 0, length = this.trackElements_.length; i < length; i++) {\n if (track === this.trackElements_[i].track) {\n trackElement_ = this.trackElements_[i];\n\n break;\n }\n }\n\n return trackElement_;\n };\n\n /**\n * Remove a {@link HtmlTrackElement} from the `HtmlTrackElementList`\n *\n * @param {HtmlTrackElement} trackElement\n * The track element to remove from the list.\n *\n * @private\n */\n\n\n HtmlTrackElementList.prototype.removeTrackElement_ = function removeTrackElement_(trackElement) {\n for (var i = 0, length = this.trackElements_.length; i < length; i++) {\n if (trackElement === this.trackElements_[i]) {\n this.trackElements_.splice(i, 1);\n\n break;\n }\n }\n };\n\n return HtmlTrackElementList;\n}();\n\n/**\n * @file text-track-cue-list.js\n */\n/**\n * @typedef {Object} TextTrackCueList~TextTrackCue\n *\n * @property {string} id\n * The unique id for this text track cue\n *\n * @property {number} startTime\n * The start time for this text track cue\n *\n * @property {number} endTime\n * The end time for this text track cue\n *\n * @property {boolean} pauseOnExit\n * Pause when the end time is reached if true.\n *\n * @see [Spec]{@link https://html.spec.whatwg.org/multipage/embedded-content.html#texttrackcue}\n */\n\n/**\n * A List of TextTrackCues.\n *\n * @see [Spec]{@link https://html.spec.whatwg.org/multipage/embedded-content.html#texttrackcuelist}\n */\n\nvar TextTrackCueList = function () {\n\n /**\n * Create an instance of this class..\n *\n * @param {Array} cues\n * A list of cues to be initialized with\n */\n function TextTrackCueList(cues) {\n classCallCheck(this, TextTrackCueList);\n\n var list = this; // eslint-disable-line\n\n if (IS_IE8) {\n list = document_1.createElement('custom');\n\n for (var prop in TextTrackCueList.prototype) {\n if (prop !== 'constructor') {\n list[prop] = TextTrackCueList.prototype[prop];\n }\n }\n }\n\n TextTrackCueList.prototype.setCues_.call(list, cues);\n\n /**\n * @memberof TextTrackCueList\n * @member {number} length\n * The current number of `TextTrackCue`s in the TextTrackCueList.\n * @instance\n */\n Object.defineProperty(list, 'length', {\n get: function get$$1() {\n return this.length_;\n }\n });\n\n if (IS_IE8) {\n return list;\n }\n }\n\n /**\n * A setter for cues in this list. Creates getters\n * an an index for the cues.\n *\n * @param {Array} cues\n * An array of cues to set\n *\n * @private\n */\n\n\n TextTrackCueList.prototype.setCues_ = function setCues_(cues) {\n var oldLength = this.length || 0;\n var i = 0;\n var l = cues.length;\n\n this.cues_ = cues;\n this.length_ = cues.length;\n\n var defineProp = function defineProp(index) {\n if (!('' + index in this)) {\n Object.defineProperty(this, '' + index, {\n get: function get$$1() {\n return this.cues_[index];\n }\n });\n }\n };\n\n if (oldLength < l) {\n i = oldLength;\n\n for (; i < l; i++) {\n defineProp.call(this, i);\n }\n }\n };\n\n /**\n * Get a `TextTrackCue` that is currently in the `TextTrackCueList` by id.\n *\n * @param {string} id\n * The id of the cue that should be searched for.\n *\n * @return {TextTrackCueList~TextTrackCue|null}\n * A single cue or null if none was found.\n */\n\n\n TextTrackCueList.prototype.getCueById = function getCueById(id) {\n var result = null;\n\n for (var i = 0, l = this.length; i < l; i++) {\n var cue = this[i];\n\n if (cue.id === id) {\n result = cue;\n break;\n }\n }\n\n return result;\n };\n\n return TextTrackCueList;\n}();\n\n/**\n * @file track-kinds.js\n */\n\n/**\n * All possible `VideoTrackKind`s\n *\n * @see https://html.spec.whatwg.org/multipage/embedded-content.html#dom-videotrack-kind\n * @typedef VideoTrack~Kind\n * @enum\n */\nvar VideoTrackKind = {\n alternative: 'alternative',\n captions: 'captions',\n main: 'main',\n sign: 'sign',\n subtitles: 'subtitles',\n commentary: 'commentary'\n};\n\n/**\n * All possible `AudioTrackKind`s\n *\n * @see https://html.spec.whatwg.org/multipage/embedded-content.html#dom-audiotrack-kind\n * @typedef AudioTrack~Kind\n * @enum\n */\nvar AudioTrackKind = {\n 'alternative': 'alternative',\n 'descriptions': 'descriptions',\n 'main': 'main',\n 'main-desc': 'main-desc',\n 'translation': 'translation',\n 'commentary': 'commentary'\n};\n\n/**\n * All possible `TextTrackKind`s\n *\n * @see https://html.spec.whatwg.org/multipage/embedded-content.html#dom-texttrack-kind\n * @typedef TextTrack~Kind\n * @enum\n */\nvar TextTrackKind = {\n subtitles: 'subtitles',\n captions: 'captions',\n descriptions: 'descriptions',\n chapters: 'chapters',\n metadata: 'metadata'\n};\n\n/**\n * All possible `TextTrackMode`s\n *\n * @see https://html.spec.whatwg.org/multipage/embedded-content.html#texttrackmode\n * @typedef TextTrack~Mode\n * @enum\n */\nvar TextTrackMode = {\n disabled: 'disabled',\n hidden: 'hidden',\n showing: 'showing'\n};\n\n/**\n * @file track.js\n */\n/**\n * A Track class that contains all of the common functionality for {@link AudioTrack},\n * {@link VideoTrack}, and {@link TextTrack}.\n *\n * > Note: This class should not be used directly\n *\n * @see {@link https://html.spec.whatwg.org/multipage/embedded-content.html}\n * @extends EventTarget\n * @abstract\n */\n\nvar Track = function (_EventTarget) {\n inherits(Track, _EventTarget);\n\n /**\n * Create an instance of this class.\n *\n * @param {Object} [options={}]\n * Object of option names and values\n *\n * @param {string} [options.kind='']\n * A valid kind for the track type you are creating.\n *\n * @param {string} [options.id='vjs_track_' + Guid.newGUID()]\n * A unique id for this AudioTrack.\n *\n * @param {string} [options.label='']\n * The menu label for this track.\n *\n * @param {string} [options.language='']\n * A valid two character language code.\n *\n * @abstract\n */\n function Track() {\n var _ret;\n\n var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n classCallCheck(this, Track);\n\n var _this = possibleConstructorReturn(this, _EventTarget.call(this));\n\n var track = _this; // eslint-disable-line\n\n if (IS_IE8) {\n track = document_1.createElement('custom');\n for (var prop in Track.prototype) {\n if (prop !== 'constructor') {\n track[prop] = Track.prototype[prop];\n }\n }\n }\n\n var trackProps = {\n id: options.id || 'vjs_track_' + newGUID(),\n kind: options.kind || '',\n label: options.label || '',\n language: options.language || ''\n };\n\n /**\n * @memberof Track\n * @member {string} id\n * The id of this track. Cannot be changed after creation.\n * @instance\n *\n * @readonly\n */\n\n /**\n * @memberof Track\n * @member {string} kind\n * The kind of track that this is. Cannot be changed after creation.\n * @instance\n *\n * @readonly\n */\n\n /**\n * @memberof Track\n * @member {string} label\n * The label of this track. Cannot be changed after creation.\n * @instance\n *\n * @readonly\n */\n\n /**\n * @memberof Track\n * @member {string} language\n * The two letter language code for this track. Cannot be changed after\n * creation.\n * @instance\n *\n * @readonly\n */\n\n var _loop = function _loop(key) {\n Object.defineProperty(track, key, {\n get: function get$$1() {\n return trackProps[key];\n },\n set: function set$$1() {}\n });\n };\n\n for (var key in trackProps) {\n _loop(key);\n }\n\n return _ret = track, possibleConstructorReturn(_this, _ret);\n }\n\n return Track;\n}(EventTarget);\n\n/**\n * @file url.js\n * @module url\n */\n/**\n * @typedef {Object} url:URLObject\n *\n * @property {string} protocol\n * The protocol of the url that was parsed.\n *\n * @property {string} hostname\n * The hostname of the url that was parsed.\n *\n * @property {string} port\n * The port of the url that was parsed.\n *\n * @property {string} pathname\n * The pathname of the url that was parsed.\n *\n * @property {string} search\n * The search query of the url that was parsed.\n *\n * @property {string} hash\n * The hash of the url that was parsed.\n *\n * @property {string} host\n * The host of the url that was parsed.\n */\n\n/**\n * Resolve and parse the elements of a URL.\n *\n * @param {String} url\n * The url to parse\n *\n * @return {url:URLObject}\n * An object of url details\n */\nvar parseUrl = function parseUrl(url) {\n var props = ['protocol', 'hostname', 'port', 'pathname', 'search', 'hash', 'host'];\n\n // add the url to an anchor and let the browser parse the URL\n var a = document_1.createElement('a');\n\n a.href = url;\n\n // IE8 (and 9?) Fix\n // ie8 doesn't parse the URL correctly until the anchor is actually\n // added to the body, and an innerHTML is needed to trigger the parsing\n var addToBody = a.host === '' && a.protocol !== 'file:';\n var div = void 0;\n\n if (addToBody) {\n div = document_1.createElement('div');\n div.innerHTML = '<a href=\"' + url + '\"></a>';\n a = div.firstChild;\n // prevent the div from affecting layout\n div.setAttribute('style', 'display:none; position:absolute;');\n document_1.body.appendChild(div);\n }\n\n // Copy the specific URL properties to a new object\n // This is also needed for IE8 because the anchor loses its\n // properties when it's removed from the dom\n var details = {};\n\n for (var i = 0; i < props.length; i++) {\n details[props[i]] = a[props[i]];\n }\n\n // IE9 adds the port to the host property unlike everyone else. If\n // a port identifier is added for standard ports, strip it.\n if (details.protocol === 'http:') {\n details.host = details.host.replace(/:80$/, '');\n }\n\n if (details.protocol === 'https:') {\n details.host = details.host.replace(/:443$/, '');\n }\n\n if (!details.protocol) {\n details.protocol = window_1.location.protocol;\n }\n\n if (addToBody) {\n document_1.body.removeChild(div);\n }\n\n return details;\n};\n\n/**\n * Get absolute version of relative URL. Used to tell flash correct URL.\n *\n *\n * @param {string} url\n * URL to make absolute\n *\n * @return {string}\n * Absolute URL\n *\n * @see http://stackoverflow.com/questions/470832/getting-an-absolute-url-from-a-relative-one-ie6-issue\n */\nvar getAbsoluteURL = function getAbsoluteURL(url) {\n // Check if absolute URL\n if (!url.match(/^https?:\\/\\//)) {\n // Convert to absolute URL. Flash hosted off-site needs an absolute URL.\n var div = document_1.createElement('div');\n\n div.innerHTML = '<a href=\"' + url + '\">x</a>';\n url = div.firstChild.href;\n }\n\n return url;\n};\n\n/**\n * Returns the extension of the passed file name. It will return an empty string\n * if passed an invalid path.\n *\n * @param {string} path\n * The fileName path like '/path/to/file.mp4'\n *\n * @returns {string}\n * The extension in lower case or an empty string if no\n * extension could be found.\n */\nvar getFileExtension = function getFileExtension(path) {\n if (typeof path === 'string') {\n var splitPathRe = /^(\\/?)([\\s\\S]*?)((?:\\.{1,2}|[^\\/]+?)(\\.([^\\.\\/\\?]+)))(?:[\\/]*|[\\?].*)$/i;\n var pathParts = splitPathRe.exec(path);\n\n if (pathParts) {\n return pathParts.pop().toLowerCase();\n }\n }\n\n return '';\n};\n\n/**\n * Returns whether the url passed is a cross domain request or not.\n *\n * @param {string} url\n * The url to check.\n *\n * @return {boolean}\n * Whether it is a cross domain request or not.\n */\nvar isCrossOrigin = function isCrossOrigin(url) {\n var winLoc = window_1.location;\n var urlInfo = parseUrl(url);\n\n // IE8 protocol relative urls will return ':' for protocol\n var srcProtocol = urlInfo.protocol === ':' ? winLoc.protocol : urlInfo.protocol;\n\n // Check if url is for another domain/origin\n // IE8 doesn't know location.origin, so we won't rely on it here\n var crossOrigin = srcProtocol + urlInfo.host !== winLoc.protocol + winLoc.host;\n\n return crossOrigin;\n};\n\nvar Url = (Object.freeze || Object)({\n\tparseUrl: parseUrl,\n\tgetAbsoluteURL: getAbsoluteURL,\n\tgetFileExtension: getFileExtension,\n\tisCrossOrigin: isCrossOrigin\n});\n\nvar isFunction_1 = isFunction;\n\nvar toString$1 = Object.prototype.toString;\n\nfunction isFunction (fn) {\n var string = toString$1.call(fn);\n return string === '[object Function]' ||\n (typeof fn === 'function' && string !== '[object RegExp]') ||\n (typeof window !== 'undefined' &&\n // IE8 and below\n (fn === window.setTimeout ||\n fn === window.alert ||\n fn === window.confirm ||\n fn === window.prompt))\n}\n\nvar trim_1 = createCommonjsModule(function (module, exports) {\nexports = module.exports = trim;\n\nfunction trim(str){\n return str.replace(/^\\s*|\\s*$/g, '');\n}\n\nexports.left = function(str){\n return str.replace(/^\\s*/, '');\n};\n\nexports.right = function(str){\n return str.replace(/\\s*$/, '');\n};\n});\n\nvar forEach_1 = forEach;\n\nvar toString$2 = Object.prototype.toString;\nvar hasOwnProperty = Object.prototype.hasOwnProperty;\n\nfunction forEach(list, iterator, context) {\n if (!isFunction_1(iterator)) {\n throw new TypeError('iterator must be a function')\n }\n\n if (arguments.length < 3) {\n context = this;\n }\n \n if (toString$2.call(list) === '[object Array]')\n forEachArray$1(list, iterator, context);\n else if (typeof list === 'string')\n forEachString(list, iterator, context);\n else\n forEachObject(list, iterator, context);\n}\n\nfunction forEachArray$1(array, iterator, context) {\n for (var i = 0, len = array.length; i < len; i++) {\n if (hasOwnProperty.call(array, i)) {\n iterator.call(context, array[i], i, array);\n }\n }\n}\n\nfunction forEachString(string, iterator, context) {\n for (var i = 0, len = string.length; i < len; i++) {\n // no such thing as a sparse string.\n iterator.call(context, string.charAt(i), i, string);\n }\n}\n\nfunction forEachObject(object, iterator, context) {\n for (var k in object) {\n if (hasOwnProperty.call(object, k)) {\n iterator.call(context, object[k], k, object);\n }\n }\n}\n\nvar isArray = function(arg) {\n return Object.prototype.toString.call(arg) === '[object Array]';\n };\n\nvar parseHeaders = function (headers) {\n if (!headers)\n return {}\n\n var result = {};\n\n forEach_1(\n trim_1(headers).split('\\n')\n , function (row) {\n var index = row.indexOf(':')\n , key = trim_1(row.slice(0, index)).toLowerCase()\n , value = trim_1(row.slice(index + 1));\n\n if (typeof(result[key]) === 'undefined') {\n result[key] = value;\n } else if (isArray(result[key])) {\n result[key].push(value);\n } else {\n result[key] = [ result[key], value ];\n }\n }\n );\n\n return result\n};\n\nvar immutable = extend;\n\nvar hasOwnProperty$1 = Object.prototype.hasOwnProperty;\n\nfunction extend() {\n var target = {};\n\n for (var i = 0; i < arguments.length; i++) {\n var source = arguments[i];\n\n for (var key in source) {\n if (hasOwnProperty$1.call(source, key)) {\n target[key] = source[key];\n }\n }\n }\n\n return target\n}\n\nvar xhr = createXHR;\ncreateXHR.XMLHttpRequest = window_1.XMLHttpRequest || noop;\ncreateXHR.XDomainRequest = \"withCredentials\" in (new createXHR.XMLHttpRequest()) ? createXHR.XMLHttpRequest : window_1.XDomainRequest;\n\nforEachArray([\"get\", \"put\", \"post\", \"patch\", \"head\", \"delete\"], function(method) {\n createXHR[method === \"delete\" ? \"del\" : method] = function(uri, options, callback) {\n options = initParams(uri, options, callback);\n options.method = method.toUpperCase();\n return _createXHR(options)\n };\n});\n\nfunction forEachArray(array, iterator) {\n for (var i = 0; i < array.length; i++) {\n iterator(array[i]);\n }\n}\n\nfunction isEmpty(obj){\n for(var i in obj){\n if(obj.hasOwnProperty(i)) return false\n }\n return true\n}\n\nfunction initParams(uri, options, callback) {\n var params = uri;\n\n if (isFunction_1(options)) {\n callback = options;\n if (typeof uri === \"string\") {\n params = {uri:uri};\n }\n } else {\n params = immutable(options, {uri: uri});\n }\n\n params.callback = callback;\n return params\n}\n\nfunction createXHR(uri, options, callback) {\n options = initParams(uri, options, callback);\n return _createXHR(options)\n}\n\nfunction _createXHR(options) {\n if(typeof options.callback === \"undefined\"){\n throw new Error(\"callback argument missing\")\n }\n\n var called = false;\n var callback = function cbOnce(err, response, body){\n if(!called){\n called = true;\n options.callback(err, response, body);\n }\n };\n\n function readystatechange() {\n if (xhr.readyState === 4) {\n setTimeout(loadFunc, 0);\n }\n }\n\n function getBody() {\n // Chrome with requestType=blob throws errors arround when even testing access to responseText\n var body = undefined;\n\n if (xhr.response) {\n body = xhr.response;\n } else {\n body = xhr.responseText || getXml(xhr);\n }\n\n if (isJson) {\n try {\n body = JSON.parse(body);\n } catch (e) {}\n }\n\n return body\n }\n\n function errorFunc(evt) {\n clearTimeout(timeoutTimer);\n if(!(evt instanceof Error)){\n evt = new Error(\"\" + (evt || \"Unknown XMLHttpRequest Error\") );\n }\n evt.statusCode = 0;\n return callback(evt, failureResponse)\n }\n\n // will load the data & process the response in a special response object\n function loadFunc() {\n if (aborted) return\n var status;\n clearTimeout(timeoutTimer);\n if(options.useXDR && xhr.status===undefined) {\n //IE8 CORS GET successful response doesn't have a status field, but body is fine\n status = 200;\n } else {\n status = (xhr.status === 1223 ? 204 : xhr.status);\n }\n var response = failureResponse;\n var err = null;\n\n if (status !== 0){\n response = {\n body: getBody(),\n statusCode: status,\n method: method,\n headers: {},\n url: uri,\n rawRequest: xhr\n };\n if(xhr.getAllResponseHeaders){ //remember xhr can in fact be XDR for CORS in IE\n response.headers = parseHeaders(xhr.getAllResponseHeaders());\n }\n } else {\n err = new Error(\"Internal XMLHttpRequest Error\");\n }\n return callback(err, response, response.body)\n }\n\n var xhr = options.xhr || null;\n\n if (!xhr) {\n if (options.cors || options.useXDR) {\n xhr = new createXHR.XDomainRequest();\n }else{\n xhr = new createXHR.XMLHttpRequest();\n }\n }\n\n var key;\n var aborted;\n var uri = xhr.url = options.uri || options.url;\n var method = xhr.method = options.method || \"GET\";\n var body = options.body || options.data;\n var headers = xhr.headers = options.headers || {};\n var sync = !!options.sync;\n var isJson = false;\n var timeoutTimer;\n var failureResponse = {\n body: undefined,\n headers: {},\n statusCode: 0,\n method: method,\n url: uri,\n rawRequest: xhr\n };\n\n if (\"json\" in options && options.json !== false) {\n isJson = true;\n headers[\"accept\"] || headers[\"Accept\"] || (headers[\"Accept\"] = \"application/json\"); //Don't override existing accept header declared by user\n if (method !== \"GET\" && method !== \"HEAD\") {\n headers[\"content-type\"] || headers[\"Content-Type\"] || (headers[\"Content-Type\"] = \"application/json\"); //Don't override existing accept header declared by user\n body = JSON.stringify(options.json === true ? body : options.json);\n }\n }\n\n xhr.onreadystatechange = readystatechange;\n xhr.onload = loadFunc;\n xhr.onerror = errorFunc;\n // IE9 must have onprogress be set to a unique function.\n xhr.onprogress = function () {\n // IE must die\n };\n xhr.onabort = function(){\n aborted = true;\n };\n xhr.ontimeout = errorFunc;\n xhr.open(method, uri, !sync, options.username, options.password);\n //has to be after open\n if(!sync) {\n xhr.withCredentials = !!options.withCredentials;\n }\n // Cannot set timeout with sync request\n // not setting timeout on the xhr object, because of old webkits etc. not handling that correctly\n // both npm's request and jquery 1.x use this kind of timeout, so this is being consistent\n if (!sync && options.timeout > 0 ) {\n timeoutTimer = setTimeout(function(){\n if (aborted) return\n aborted = true;//IE9 may still call readystatechange\n xhr.abort(\"timeout\");\n var e = new Error(\"XMLHttpRequest timeout\");\n e.code = \"ETIMEDOUT\";\n errorFunc(e);\n }, options.timeout );\n }\n\n if (xhr.setRequestHeader) {\n for(key in headers){\n if(headers.hasOwnProperty(key)){\n xhr.setRequestHeader(key, headers[key]);\n }\n }\n } else if (options.headers && !isEmpty(options.headers)) {\n throw new Error(\"Headers cannot be set on an XDomainRequest object\")\n }\n\n if (\"responseType\" in options) {\n xhr.responseType = options.responseType;\n }\n\n if (\"beforeSend\" in options &&\n typeof options.beforeSend === \"function\"\n ) {\n options.beforeSend(xhr);\n }\n\n // Microsoft Edge browser sends \"undefined\" when send is called with undefined value.\n // XMLHttpRequest spec says to pass null as body to indicate no body\n // See https://github.com/naugtur/xhr/issues/100.\n xhr.send(body || null);\n\n return xhr\n\n\n}\n\nfunction getXml(xhr) {\n if (xhr.responseType === \"document\") {\n return xhr.responseXML\n }\n var firefoxBugTakenEffect = xhr.responseXML && xhr.responseXML.documentElement.nodeName === \"parsererror\";\n if (xhr.responseType === \"\" && !firefoxBugTakenEffect) {\n return xhr.responseXML\n }\n\n return null\n}\n\nfunction noop() {}\n\n/**\n * @file text-track.js\n */\n/**\n * Takes a webvtt file contents and parses it into cues\n *\n * @param {string} srcContent\n * webVTT file contents\n *\n * @param {TextTrack} track\n * TextTrack to add cues to. Cues come from the srcContent.\n *\n * @private\n */\nvar parseCues = function parseCues(srcContent, track) {\n var parser = new window_1.WebVTT.Parser(window_1, window_1.vttjs, window_1.WebVTT.StringDecoder());\n var errors = [];\n\n parser.oncue = function (cue) {\n track.addCue(cue);\n };\n\n parser.onparsingerror = function (error) {\n errors.push(error);\n };\n\n parser.onflush = function () {\n track.trigger({\n type: 'loadeddata',\n target: track\n });\n };\n\n parser.parse(srcContent);\n if (errors.length > 0) {\n if (window_1.console && window_1.console.groupCollapsed) {\n window_1.console.groupCollapsed('Text Track parsing errors for ' + track.src);\n }\n errors.forEach(function (error) {\n return log$1.error(error);\n });\n if (window_1.console && window_1.console.groupEnd) {\n window_1.console.groupEnd();\n }\n }\n\n parser.flush();\n};\n\n/**\n * Load a `TextTrack` from a specifed url.\n *\n * @param {string} src\n * Url to load track from.\n *\n * @param {TextTrack} track\n * Track to add cues to. Comes from the content at the end of `url`.\n *\n * @private\n */\nvar loadTrack = function loadTrack(src, track) {\n var opts = {\n uri: src\n };\n var crossOrigin = isCrossOrigin(src);\n\n if (crossOrigin) {\n opts.cors = crossOrigin;\n }\n\n xhr(opts, bind(this, function (err, response, responseBody) {\n if (err) {\n return log$1.error(err, response);\n }\n\n track.loaded_ = true;\n\n // Make sure that vttjs has loaded, otherwise, wait till it finished loading\n // NOTE: this is only used for the alt/video.novtt.js build\n if (typeof window_1.WebVTT !== 'function') {\n if (track.tech_) {\n var loadHandler = function loadHandler() {\n return parseCues(responseBody, track);\n };\n\n track.tech_.on('vttjsloaded', loadHandler);\n track.tech_.on('vttjserror', function () {\n log$1.error('vttjs failed to load, stopping trying to process ' + track.src);\n track.tech_.off('vttjsloaded', loadHandler);\n });\n }\n } else {\n parseCues(responseBody, track);\n }\n }));\n};\n\n/**\n * A representation of a single `TextTrack`.\n *\n * @see [Spec]{@link https://html.spec.whatwg.org/multipage/embedded-content.html#texttrack}\n * @extends Track\n */\n\nvar TextTrack = function (_Track) {\n inherits(TextTrack, _Track);\n\n /**\n * Create an instance of this class.\n *\n * @param {Object} options={}\n * Object of option names and values\n *\n * @param {Tech} options.tech\n * A reference to the tech that owns this TextTrack.\n *\n * @param {TextTrack~Kind} [options.kind='subtitles']\n * A valid text track kind.\n *\n * @param {TextTrack~Mode} [options.mode='disabled']\n * A valid text track mode.\n *\n * @param {string} [options.id='vjs_track_' + Guid.newGUID()]\n * A unique id for this TextTrack.\n *\n * @param {string} [options.label='']\n * The menu label for this track.\n *\n * @param {string} [options.language='']\n * A valid two character language code.\n *\n * @param {string} [options.srclang='']\n * A valid two character language code. An alternative, but deprioritized\n * vesion of `options.language`\n *\n * @param {string} [options.src]\n * A url to TextTrack cues.\n *\n * @param {boolean} [options.default]\n * If this track should default to on or off.\n */\n function TextTrack() {\n var _this, _ret;\n\n var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n classCallCheck(this, TextTrack);\n\n if (!options.tech) {\n throw new Error('A tech was not provided.');\n }\n\n var settings = mergeOptions(options, {\n kind: TextTrackKind[options.kind] || 'subtitles',\n language: options.language || options.srclang || ''\n });\n var mode = TextTrackMode[settings.mode] || 'disabled';\n var default_ = settings['default'];\n\n if (settings.kind === 'metadata' || settings.kind === 'chapters') {\n mode = 'hidden';\n }\n // on IE8 this will be a document element\n // for every other browser this will be a normal object\n var tt = (_this = possibleConstructorReturn(this, _Track.call(this, settings)), _this);\n\n tt.tech_ = settings.tech;\n\n if (IS_IE8) {\n for (var prop in TextTrack.prototype) {\n if (prop !== 'constructor') {\n tt[prop] = TextTrack.prototype[prop];\n }\n }\n }\n\n tt.cues_ = [];\n tt.activeCues_ = [];\n\n var cues = new TextTrackCueList(tt.cues_);\n var activeCues = new TextTrackCueList(tt.activeCues_);\n var changed = false;\n var timeupdateHandler = bind(tt, function () {\n\n // Accessing this.activeCues for the side-effects of updating itself\n // due to it's nature as a getter function. Do not remove or cues will\n // stop updating!\n /* eslint-disable no-unused-expressions */\n this.activeCues;\n /* eslint-enable no-unused-expressions */\n if (changed) {\n this.trigger('cuechange');\n changed = false;\n }\n });\n\n if (mode !== 'disabled') {\n tt.tech_.ready(function () {\n tt.tech_.on('timeupdate', timeupdateHandler);\n }, true);\n }\n\n /**\n * @memberof TextTrack\n * @member {boolean} default\n * If this track was set to be on or off by default. Cannot be changed after\n * creation.\n * @instance\n *\n * @readonly\n */\n Object.defineProperty(tt, 'default', {\n get: function get$$1() {\n return default_;\n },\n set: function set$$1() {}\n });\n\n /**\n * @memberof TextTrack\n * @member {string} mode\n * Set the mode of this TextTrack to a valid {@link TextTrack~Mode}. Will\n * not be set if setting to an invalid mode.\n * @instance\n *\n * @fires TextTrack#modechange\n */\n Object.defineProperty(tt, 'mode', {\n get: function get$$1() {\n return mode;\n },\n set: function set$$1(newMode) {\n var _this2 = this;\n\n if (!TextTrackMode[newMode]) {\n return;\n }\n mode = newMode;\n if (mode === 'showing') {\n\n this.tech_.ready(function () {\n _this2.tech_.on('timeupdate', timeupdateHandler);\n }, true);\n }\n /**\n * An event that fires when mode changes on this track. This allows\n * the TextTrackList that holds this track to act accordingly.\n *\n * > Note: This is not part of the spec!\n *\n * @event TextTrack#modechange\n * @type {EventTarget~Event}\n */\n this.trigger('modechange');\n }\n });\n\n /**\n * @memberof TextTrack\n * @member {TextTrackCueList} cues\n * The text track cue list for this TextTrack.\n * @instance\n */\n Object.defineProperty(tt, 'cues', {\n get: function get$$1() {\n if (!this.loaded_) {\n return null;\n }\n\n return cues;\n },\n set: function set$$1() {}\n });\n\n /**\n * @memberof TextTrack\n * @member {TextTrackCueList} activeCues\n * The list text track cues that are currently active for this TextTrack.\n * @instance\n */\n Object.defineProperty(tt, 'activeCues', {\n get: function get$$1() {\n if (!this.loaded_) {\n return null;\n }\n\n // nothing to do\n if (this.cues.length === 0) {\n return activeCues;\n }\n\n var ct = this.tech_.currentTime();\n var active = [];\n\n for (var i = 0, l = this.cues.length; i < l; i++) {\n var cue = this.cues[i];\n\n if (cue.startTime <= ct && cue.endTime >= ct) {\n active.push(cue);\n } else if (cue.startTime === cue.endTime && cue.startTime <= ct && cue.startTime + 0.5 >= ct) {\n active.push(cue);\n }\n }\n\n changed = false;\n\n if (active.length !== this.activeCues_.length) {\n changed = true;\n } else {\n for (var _i = 0; _i < active.length; _i++) {\n if (this.activeCues_.indexOf(active[_i]) === -1) {\n changed = true;\n }\n }\n }\n\n this.activeCues_ = active;\n activeCues.setCues_(this.activeCues_);\n\n return activeCues;\n },\n set: function set$$1() {}\n });\n\n if (settings.src) {\n tt.src = settings.src;\n loadTrack(settings.src, tt);\n } else {\n tt.loaded_ = true;\n }\n\n return _ret = tt, possibleConstructorReturn(_this, _ret);\n }\n\n /**\n * Add a cue to the internal list of cues.\n *\n * @param {TextTrack~Cue} cue\n * The cue to add to our internal list\n */\n\n\n TextTrack.prototype.addCue = function addCue(originalCue) {\n var cue = originalCue;\n\n if (window_1.vttjs && !(originalCue instanceof window_1.vttjs.VTTCue)) {\n cue = new window_1.vttjs.VTTCue(originalCue.startTime, originalCue.endTime, originalCue.text);\n\n for (var prop in originalCue) {\n if (!(prop in cue)) {\n cue[prop] = originalCue[prop];\n }\n }\n\n // make sure that `id` is copied over\n cue.id = originalCue.id;\n cue.originalCue_ = originalCue;\n }\n\n var tracks = this.tech_.textTracks();\n\n for (var i = 0; i < tracks.length; i++) {\n if (tracks[i] !== this) {\n tracks[i].removeCue(cue);\n }\n }\n\n this.cues_.push(cue);\n this.cues.setCues_(this.cues_);\n };\n\n /**\n * Remove a cue from our internal list\n *\n * @param {TextTrack~Cue} removeCue\n * The cue to remove from our internal list\n */\n\n\n TextTrack.prototype.removeCue = function removeCue(_removeCue) {\n var i = this.cues_.length;\n\n while (i--) {\n var cue = this.cues_[i];\n\n if (cue === _removeCue || cue.originalCue_ && cue.originalCue_ === _removeCue) {\n this.cues_.splice(i, 1);\n this.cues.setCues_(this.cues_);\n break;\n }\n }\n };\n\n return TextTrack;\n}(Track);\n\n/**\n * cuechange - One or more cues in the track have become active or stopped being active.\n */\n\n\nTextTrack.prototype.allowedEvents_ = {\n cuechange: 'cuechange'\n};\n\n/**\n * A representation of a single `AudioTrack`. If it is part of an {@link AudioTrackList}\n * only one `AudioTrack` in the list will be enabled at a time.\n *\n * @see [Spec]{@link https://html.spec.whatwg.org/multipage/embedded-content.html#audiotrack}\n * @extends Track\n */\n\nvar AudioTrack = function (_Track) {\n inherits(AudioTrack, _Track);\n\n /**\n * Create an instance of this class.\n *\n * @param {Object} [options={}]\n * Object of option names and values\n *\n * @param {AudioTrack~Kind} [options.kind='']\n * A valid audio track kind\n *\n * @param {string} [options.id='vjs_track_' + Guid.newGUID()]\n * A unique id for this AudioTrack.\n *\n * @param {string} [options.label='']\n * The menu label for this track.\n *\n * @param {string} [options.language='']\n * A valid two character language code.\n *\n * @param {boolean} [options.enabled]\n * If this track is the one that is currently playing. If this track is part of\n * an {@link AudioTrackList}, only one {@link AudioTrack} will be enabled.\n */\n function AudioTrack() {\n var _this, _ret;\n\n var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n classCallCheck(this, AudioTrack);\n\n var settings = mergeOptions(options, {\n kind: AudioTrackKind[options.kind] || ''\n });\n // on IE8 this will be a document element\n // for every other browser this will be a normal object\n var track = (_this = possibleConstructorReturn(this, _Track.call(this, settings)), _this);\n var enabled = false;\n\n if (IS_IE8) {\n for (var prop in AudioTrack.prototype) {\n if (prop !== 'constructor') {\n track[prop] = AudioTrack.prototype[prop];\n }\n }\n }\n /**\n * @memberof AudioTrack\n * @member {boolean} enabled\n * If this `AudioTrack` is enabled or not. When setting this will\n * fire {@link AudioTrack#enabledchange} if the state of enabled is changed.\n * @instance\n *\n * @fires VideoTrack#selectedchange\n */\n Object.defineProperty(track, 'enabled', {\n get: function get$$1() {\n return enabled;\n },\n set: function set$$1(newEnabled) {\n // an invalid or unchanged value\n if (typeof newEnabled !== 'boolean' || newEnabled === enabled) {\n return;\n }\n enabled = newEnabled;\n\n /**\n * An event that fires when enabled changes on this track. This allows\n * the AudioTrackList that holds this track to act accordingly.\n *\n * > Note: This is not part of the spec! Native tracks will do\n * this internally without an event.\n *\n * @event AudioTrack#enabledchange\n * @type {EventTarget~Event}\n */\n this.trigger('enabledchange');\n }\n });\n\n // if the user sets this track to selected then\n // set selected to that true value otherwise\n // we keep it false\n if (settings.enabled) {\n track.enabled = settings.enabled;\n }\n track.loaded_ = true;\n\n return _ret = track, possibleConstructorReturn(_this, _ret);\n }\n\n return AudioTrack;\n}(Track);\n\n/**\n * A representation of a single `VideoTrack`.\n *\n * @see [Spec]{@link https://html.spec.whatwg.org/multipage/embedded-content.html#videotrack}\n * @extends Track\n */\n\nvar VideoTrack = function (_Track) {\n inherits(VideoTrack, _Track);\n\n /**\n * Create an instance of this class.\n *\n * @param {Object} [options={}]\n * Object of option names and values\n *\n * @param {string} [options.kind='']\n * A valid {@link VideoTrack~Kind}\n *\n * @param {string} [options.id='vjs_track_' + Guid.newGUID()]\n * A unique id for this AudioTrack.\n *\n * @param {string} [options.label='']\n * The menu label for this track.\n *\n * @param {string} [options.language='']\n * A valid two character language code.\n *\n * @param {boolean} [options.selected]\n * If this track is the one that is currently playing.\n */\n function VideoTrack() {\n var _this, _ret;\n\n var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n classCallCheck(this, VideoTrack);\n\n var settings = mergeOptions(options, {\n kind: VideoTrackKind[options.kind] || ''\n });\n\n // on IE8 this will be a document element\n // for every other browser this will be a normal object\n var track = (_this = possibleConstructorReturn(this, _Track.call(this, settings)), _this);\n var selected = false;\n\n if (IS_IE8) {\n for (var prop in VideoTrack.prototype) {\n if (prop !== 'constructor') {\n track[prop] = VideoTrack.prototype[prop];\n }\n }\n }\n\n /**\n * @memberof VideoTrack\n * @member {boolean} selected\n * If this `VideoTrack` is selected or not. When setting this will\n * fire {@link VideoTrack#selectedchange} if the state of selected changed.\n * @instance\n *\n * @fires VideoTrack#selectedchange\n */\n Object.defineProperty(track, 'selected', {\n get: function get$$1() {\n return selected;\n },\n set: function set$$1(newSelected) {\n // an invalid or unchanged value\n if (typeof newSelected !== 'boolean' || newSelected === selected) {\n return;\n }\n selected = newSelected;\n\n /**\n * An event that fires when selected changes on this track. This allows\n * the VideoTrackList that holds this track to act accordingly.\n *\n * > Note: This is not part of the spec! Native tracks will do\n * this internally without an event.\n *\n * @event VideoTrack#selectedchange\n * @type {EventTarget~Event}\n */\n this.trigger('selectedchange');\n }\n });\n\n // if the user sets this track to selected then\n // set selected to that true value otherwise\n // we keep it false\n if (settings.selected) {\n track.selected = settings.selected;\n }\n\n return _ret = track, possibleConstructorReturn(_this, _ret);\n }\n\n return VideoTrack;\n}(Track);\n\n/**\n * @file html-track-element.js\n */\n\n/**\n * @memberof HTMLTrackElement\n * @typedef {HTMLTrackElement~ReadyState}\n * @enum {number}\n */\nvar NONE = 0;\nvar LOADING = 1;\nvar LOADED = 2;\nvar ERROR = 3;\n\n/**\n * A single track represented in the DOM.\n *\n * @see [Spec]{@link https://html.spec.whatwg.org/multipage/embedded-content.html#htmltrackelement}\n * @extends EventTarget\n */\n\nvar HTMLTrackElement = function (_EventTarget) {\n inherits(HTMLTrackElement, _EventTarget);\n\n /**\n * Create an instance of this class.\n *\n * @param {Object} options={}\n * Object of option names and values\n *\n * @param {Tech} options.tech\n * A reference to the tech that owns this HTMLTrackElement.\n *\n * @param {TextTrack~Kind} [options.kind='subtitles']\n * A valid text track kind.\n *\n * @param {TextTrack~Mode} [options.mode='disabled']\n * A valid text track mode.\n *\n * @param {string} [options.id='vjs_track_' + Guid.newGUID()]\n * A unique id for this TextTrack.\n *\n * @param {string} [options.label='']\n * The menu label for this track.\n *\n * @param {string} [options.language='']\n * A valid two character language code.\n *\n * @param {string} [options.srclang='']\n * A valid two character language code. An alternative, but deprioritized\n * vesion of `options.language`\n *\n * @param {string} [options.src]\n * A url to TextTrack cues.\n *\n * @param {boolean} [options.default]\n * If this track should default to on or off.\n */\n function HTMLTrackElement() {\n var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n classCallCheck(this, HTMLTrackElement);\n\n var _this = possibleConstructorReturn(this, _EventTarget.call(this));\n\n var readyState = void 0;\n var trackElement = _this; // eslint-disable-line\n\n if (IS_IE8) {\n trackElement = document_1.createElement('custom');\n\n for (var prop in HTMLTrackElement.prototype) {\n if (prop !== 'constructor') {\n trackElement[prop] = HTMLTrackElement.prototype[prop];\n }\n }\n }\n\n var track = new TextTrack(options);\n\n trackElement.kind = track.kind;\n trackElement.src = track.src;\n trackElement.srclang = track.language;\n trackElement.label = track.label;\n trackElement['default'] = track['default'];\n\n /**\n * @memberof HTMLTrackElement\n * @member {HTMLTrackElement~ReadyState} readyState\n * The current ready state of the track element.\n * @instance\n */\n Object.defineProperty(trackElement, 'readyState', {\n get: function get$$1() {\n return readyState;\n }\n });\n\n /**\n * @memberof HTMLTrackElement\n * @member {TextTrack} track\n * The underlying TextTrack object.\n * @instance\n *\n */\n Object.defineProperty(trackElement, 'track', {\n get: function get$$1() {\n return track;\n }\n });\n\n readyState = NONE;\n\n /**\n * @listens TextTrack#loadeddata\n * @fires HTMLTrackElement#load\n */\n track.addEventListener('loadeddata', function () {\n readyState = LOADED;\n\n trackElement.trigger({\n type: 'load',\n target: trackElement\n });\n });\n\n if (IS_IE8) {\n var _ret;\n\n return _ret = trackElement, possibleConstructorReturn(_this, _ret);\n }\n return _this;\n }\n\n return HTMLTrackElement;\n}(EventTarget);\n\nHTMLTrackElement.prototype.allowedEvents_ = {\n load: 'load'\n};\n\nHTMLTrackElement.NONE = NONE;\nHTMLTrackElement.LOADING = LOADING;\nHTMLTrackElement.LOADED = LOADED;\nHTMLTrackElement.ERROR = ERROR;\n\n/*\n * This file contains all track properties that are used in\n * player.js, tech.js, html5.js and possibly other techs in the future.\n */\n\nvar NORMAL = {\n audio: {\n ListClass: AudioTrackList,\n TrackClass: AudioTrack,\n capitalName: 'Audio'\n },\n video: {\n ListClass: VideoTrackList,\n TrackClass: VideoTrack,\n capitalName: 'Video'\n },\n text: {\n ListClass: TextTrackList,\n TrackClass: TextTrack,\n capitalName: 'Text'\n }\n};\n\nObject.keys(NORMAL).forEach(function (type) {\n NORMAL[type].getterName = type + 'Tracks';\n NORMAL[type].privateName = type + 'Tracks_';\n});\n\nvar REMOTE = {\n remoteText: {\n ListClass: TextTrackList,\n TrackClass: TextTrack,\n capitalName: 'RemoteText',\n getterName: 'remoteTextTracks',\n privateName: 'remoteTextTracks_'\n },\n remoteTextEl: {\n ListClass: HtmlTrackElementList,\n TrackClass: HTMLTrackElement,\n capitalName: 'RemoteTextTrackEls',\n getterName: 'remoteTextTrackEls',\n privateName: 'remoteTextTrackEls_'\n }\n};\n\nvar ALL = mergeOptions(NORMAL, REMOTE);\n\nREMOTE.names = Object.keys(REMOTE);\nNORMAL.names = Object.keys(NORMAL);\nALL.names = [].concat(REMOTE.names).concat(NORMAL.names);\n\n/**\n * Copyright 2013 vtt.js Contributors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n/* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */\n/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab: */\nvar _objCreate = Object.create || (function() {\n function F() {}\n return function(o) {\n if (arguments.length !== 1) {\n throw new Error('Object.create shim only accepts one parameter.');\n }\n F.prototype = o;\n return new F();\n };\n})();\n\n// Creates a new ParserError object from an errorData object. The errorData\n// object should have default code and message properties. The default message\n// property can be overriden by passing in a message parameter.\n// See ParsingError.Errors below for acceptable errors.\nfunction ParsingError(errorData, message) {\n this.name = \"ParsingError\";\n this.code = errorData.code;\n this.message = message || errorData.message;\n}\nParsingError.prototype = _objCreate(Error.prototype);\nParsingError.prototype.constructor = ParsingError;\n\n// ParsingError metadata for acceptable ParsingErrors.\nParsingError.Errors = {\n BadSignature: {\n code: 0,\n message: \"Malformed WebVTT signature.\"\n },\n BadTimeStamp: {\n code: 1,\n message: \"Malformed time stamp.\"\n }\n};\n\n// Try to parse input as a time stamp.\nfunction parseTimeStamp(input) {\n\n function computeSeconds(h, m, s, f) {\n return (h | 0) * 3600 + (m | 0) * 60 + (s | 0) + (f | 0) / 1000;\n }\n\n var m = input.match(/^(\\d+):(\\d{2})(:\\d{2})?\\.(\\d{3})/);\n if (!m) {\n return null;\n }\n\n if (m[3]) {\n // Timestamp takes the form of [hours]:[minutes]:[seconds].[milliseconds]\n return computeSeconds(m[1], m[2], m[3].replace(\":\", \"\"), m[4]);\n } else if (m[1] > 59) {\n // Timestamp takes the form of [hours]:[minutes].[milliseconds]\n // First position is hours as it's over 59.\n return computeSeconds(m[1], m[2], 0, m[4]);\n } else {\n // Timestamp takes the form of [minutes]:[seconds].[milliseconds]\n return computeSeconds(0, m[1], m[2], m[4]);\n }\n}\n\n// A settings object holds key/value pairs and will ignore anything but the first\n// assignment to a specific key.\nfunction Settings() {\n this.values = _objCreate(null);\n}\n\nSettings.prototype = {\n // Only accept the first assignment to any key.\n set: function(k, v) {\n if (!this.get(k) && v !== \"\") {\n this.values[k] = v;\n }\n },\n // Return the value for a key, or a default value.\n // If 'defaultKey' is passed then 'dflt' is assumed to be an object with\n // a number of possible default values as properties where 'defaultKey' is\n // the key of the property that will be chosen; otherwise it's assumed to be\n // a single value.\n get: function(k, dflt, defaultKey) {\n if (defaultKey) {\n return this.has(k) ? this.values[k] : dflt[defaultKey];\n }\n return this.has(k) ? this.values[k] : dflt;\n },\n // Check whether we have a value for a key.\n has: function(k) {\n return k in this.values;\n },\n // Accept a setting if its one of the given alternatives.\n alt: function(k, v, a) {\n for (var n = 0; n < a.length; ++n) {\n if (v === a[n]) {\n this.set(k, v);\n break;\n }\n }\n },\n // Accept a setting if its a valid (signed) integer.\n integer: function(k, v) {\n if (/^-?\\d+$/.test(v)) { // integer\n this.set(k, parseInt(v, 10));\n }\n },\n // Accept a setting if its a valid percentage.\n percent: function(k, v) {\n var m;\n if ((m = v.match(/^([\\d]{1,3})(\\.[\\d]*)?%$/))) {\n v = parseFloat(v);\n if (v >= 0 && v <= 100) {\n this.set(k, v);\n return true;\n }\n }\n return false;\n }\n};\n\n// Helper function to parse input into groups separated by 'groupDelim', and\n// interprete each group as a key/value pair separated by 'keyValueDelim'.\nfunction parseOptions(input, callback, keyValueDelim, groupDelim) {\n var groups = groupDelim ? input.split(groupDelim) : [input];\n for (var i in groups) {\n if (typeof groups[i] !== \"string\") {\n continue;\n }\n var kv = groups[i].split(keyValueDelim);\n if (kv.length !== 2) {\n continue;\n }\n var k = kv[0];\n var v = kv[1];\n callback(k, v);\n }\n}\n\nfunction parseCue(input, cue, regionList) {\n // Remember the original input if we need to throw an error.\n var oInput = input;\n // 4.1 WebVTT timestamp\n function consumeTimeStamp() {\n var ts = parseTimeStamp(input);\n if (ts === null) {\n throw new ParsingError(ParsingError.Errors.BadTimeStamp,\n \"Malformed timestamp: \" + oInput);\n }\n // Remove time stamp from input.\n input = input.replace(/^[^\\sa-zA-Z-]+/, \"\");\n return ts;\n }\n\n // 4.4.2 WebVTT cue settings\n function consumeCueSettings(input, cue) {\n var settings = new Settings();\n\n parseOptions(input, function (k, v) {\n switch (k) {\n case \"region\":\n // Find the last region we parsed with the same region id.\n for (var i = regionList.length - 1; i >= 0; i--) {\n if (regionList[i].id === v) {\n settings.set(k, regionList[i].region);\n break;\n }\n }\n break;\n case \"vertical\":\n settings.alt(k, v, [\"rl\", \"lr\"]);\n break;\n case \"line\":\n var vals = v.split(\",\"),\n vals0 = vals[0];\n settings.integer(k, vals0);\n settings.percent(k, vals0) ? settings.set(\"snapToLines\", false) : null;\n settings.alt(k, vals0, [\"auto\"]);\n if (vals.length === 2) {\n settings.alt(\"lineAlign\", vals[1], [\"start\", \"middle\", \"end\"]);\n }\n break;\n case \"position\":\n vals = v.split(\",\");\n settings.percent(k, vals[0]);\n if (vals.length === 2) {\n settings.alt(\"positionAlign\", vals[1], [\"start\", \"middle\", \"end\"]);\n }\n break;\n case \"size\":\n settings.percent(k, v);\n break;\n case \"align\":\n settings.alt(k, v, [\"start\", \"middle\", \"end\", \"left\", \"right\"]);\n break;\n }\n }, /:/, /\\s/);\n\n // Apply default values for any missing fields.\n cue.region = settings.get(\"region\", null);\n cue.vertical = settings.get(\"vertical\", \"\");\n cue.line = settings.get(\"line\", \"auto\");\n cue.lineAlign = settings.get(\"lineAlign\", \"start\");\n cue.snapToLines = settings.get(\"snapToLines\", true);\n cue.size = settings.get(\"size\", 100);\n cue.align = settings.get(\"align\", \"middle\");\n cue.position = settings.get(\"position\", {\n start: 0,\n left: 0,\n middle: 50,\n end: 100,\n right: 100\n }, cue.align);\n cue.positionAlign = settings.get(\"positionAlign\", {\n start: \"start\",\n left: \"start\",\n middle: \"middle\",\n end: \"end\",\n right: \"end\"\n }, cue.align);\n }\n\n function skipWhitespace() {\n input = input.replace(/^\\s+/, \"\");\n }\n\n // 4.1 WebVTT cue timings.\n skipWhitespace();\n cue.startTime = consumeTimeStamp(); // (1) collect cue start time\n skipWhitespace();\n if (input.substr(0, 3) !== \"-->\") { // (3) next characters must match \"-->\"\n throw new ParsingError(ParsingError.Errors.BadTimeStamp,\n \"Malformed time stamp (time stamps must be separated by '-->'): \" +\n oInput);\n }\n input = input.substr(3);\n skipWhitespace();\n cue.endTime = consumeTimeStamp(); // (5) collect cue end time\n\n // 4.1 WebVTT cue settings list.\n skipWhitespace();\n consumeCueSettings(input, cue);\n}\n\nvar ESCAPE = {\n \"&\": \"&\",\n \"<\": \"<\",\n \">\": \">\",\n \"‎\": \"\\u200e\",\n \"‏\": \"\\u200f\",\n \" \": \"\\u00a0\"\n};\n\nvar TAG_NAME = {\n c: \"span\",\n i: \"i\",\n b: \"b\",\n u: \"u\",\n ruby: \"ruby\",\n rt: \"rt\",\n v: \"span\",\n lang: \"span\"\n};\n\nvar TAG_ANNOTATION = {\n v: \"title\",\n lang: \"lang\"\n};\n\nvar NEEDS_PARENT = {\n rt: \"ruby\"\n};\n\n// Parse content into a document fragment.\nfunction parseContent(window, input) {\n function nextToken() {\n // Check for end-of-string.\n if (!input) {\n return null;\n }\n\n // Consume 'n' characters from the input.\n function consume(result) {\n input = input.substr(result.length);\n return result;\n }\n\n var m = input.match(/^([^<]*)(<[^>]+>?)?/);\n // If there is some text before the next tag, return it, otherwise return\n // the tag.\n return consume(m[1] ? m[1] : m[2]);\n }\n\n // Unescape a string 's'.\n function unescape1(e) {\n return ESCAPE[e];\n }\n function unescape(s) {\n while ((m = s.match(/&(amp|lt|gt|lrm|rlm|nbsp);/))) {\n s = s.replace(m[0], unescape1);\n }\n return s;\n }\n\n function shouldAdd(current, element) {\n return !NEEDS_PARENT[element.localName] ||\n NEEDS_PARENT[element.localName] === current.localName;\n }\n\n // Create an element for this tag.\n function createElement(type, annotation) {\n var tagName = TAG_NAME[type];\n if (!tagName) {\n return null;\n }\n var element = window.document.createElement(tagName);\n element.localName = tagName;\n var name = TAG_ANNOTATION[type];\n if (name && annotation) {\n element[name] = annotation.trim();\n }\n return element;\n }\n\n var rootDiv = window.document.createElement(\"div\"),\n current = rootDiv,\n t,\n tagStack = [];\n\n while ((t = nextToken()) !== null) {\n if (t[0] === '<') {\n if (t[1] === \"/\") {\n // If the closing tag matches, move back up to the parent node.\n if (tagStack.length &&\n tagStack[tagStack.length - 1] === t.substr(2).replace(\">\", \"\")) {\n tagStack.pop();\n current = current.parentNode;\n }\n // Otherwise just ignore the end tag.\n continue;\n }\n var ts = parseTimeStamp(t.substr(1, t.length - 2));\n var node;\n if (ts) {\n // Timestamps are lead nodes as well.\n node = window.document.createProcessingInstruction(\"timestamp\", ts);\n current.appendChild(node);\n continue;\n }\n var m = t.match(/^<([^.\\s/0-9>]+)(\\.[^\\s\\\\>]+)?([^>\\\\]+)?(\\\\?)>?$/);\n // If we can't parse the tag, skip to the next tag.\n if (!m) {\n continue;\n }\n // Try to construct an element, and ignore the tag if we couldn't.\n node = createElement(m[1], m[3]);\n if (!node) {\n continue;\n }\n // Determine if the tag should be added based on the context of where it\n // is placed in the cuetext.\n if (!shouldAdd(current, node)) {\n continue;\n }\n // Set the class list (as a list of classes, separated by space).\n if (m[2]) {\n node.className = m[2].substr(1).replace('.', ' ');\n }\n // Append the node to the current node, and enter the scope of the new\n // node.\n tagStack.push(m[1]);\n current.appendChild(node);\n current = node;\n continue;\n }\n\n // Text nodes are leaf nodes.\n current.appendChild(window.document.createTextNode(unescape(t)));\n }\n\n return rootDiv;\n}\n\n// This is a list of all the Unicode characters that have a strong\n// right-to-left category. What this means is that these characters are\n// written right-to-left for sure. It was generated by pulling all the strong\n// right-to-left characters out of the Unicode data table. That table can\n// found at: http://www.unicode.org/Public/UNIDATA/UnicodeData.txt\nvar strongRTLRanges = [[0x5be, 0x5be], [0x5c0, 0x5c0], [0x5c3, 0x5c3], [0x5c6, 0x5c6],\n [0x5d0, 0x5ea], [0x5f0, 0x5f4], [0x608, 0x608], [0x60b, 0x60b], [0x60d, 0x60d],\n [0x61b, 0x61b], [0x61e, 0x64a], [0x66d, 0x66f], [0x671, 0x6d5], [0x6e5, 0x6e6],\n [0x6ee, 0x6ef], [0x6fa, 0x70d], [0x70f, 0x710], [0x712, 0x72f], [0x74d, 0x7a5],\n [0x7b1, 0x7b1], [0x7c0, 0x7ea], [0x7f4, 0x7f5], [0x7fa, 0x7fa], [0x800, 0x815],\n [0x81a, 0x81a], [0x824, 0x824], [0x828, 0x828], [0x830, 0x83e], [0x840, 0x858],\n [0x85e, 0x85e], [0x8a0, 0x8a0], [0x8a2, 0x8ac], [0x200f, 0x200f],\n [0xfb1d, 0xfb1d], [0xfb1f, 0xfb28], [0xfb2a, 0xfb36], [0xfb38, 0xfb3c],\n [0xfb3e, 0xfb3e], [0xfb40, 0xfb41], [0xfb43, 0xfb44], [0xfb46, 0xfbc1],\n [0xfbd3, 0xfd3d], [0xfd50, 0xfd8f], [0xfd92, 0xfdc7], [0xfdf0, 0xfdfc],\n [0xfe70, 0xfe74], [0xfe76, 0xfefc], [0x10800, 0x10805], [0x10808, 0x10808],\n [0x1080a, 0x10835], [0x10837, 0x10838], [0x1083c, 0x1083c], [0x1083f, 0x10855],\n [0x10857, 0x1085f], [0x10900, 0x1091b], [0x10920, 0x10939], [0x1093f, 0x1093f],\n [0x10980, 0x109b7], [0x109be, 0x109bf], [0x10a00, 0x10a00], [0x10a10, 0x10a13],\n [0x10a15, 0x10a17], [0x10a19, 0x10a33], [0x10a40, 0x10a47], [0x10a50, 0x10a58],\n [0x10a60, 0x10a7f], [0x10b00, 0x10b35], [0x10b40, 0x10b55], [0x10b58, 0x10b72],\n [0x10b78, 0x10b7f], [0x10c00, 0x10c48], [0x1ee00, 0x1ee03], [0x1ee05, 0x1ee1f],\n [0x1ee21, 0x1ee22], [0x1ee24, 0x1ee24], [0x1ee27, 0x1ee27], [0x1ee29, 0x1ee32],\n [0x1ee34, 0x1ee37], [0x1ee39, 0x1ee39], [0x1ee3b, 0x1ee3b], [0x1ee42, 0x1ee42],\n [0x1ee47, 0x1ee47], [0x1ee49, 0x1ee49], [0x1ee4b, 0x1ee4b], [0x1ee4d, 0x1ee4f],\n [0x1ee51, 0x1ee52], [0x1ee54, 0x1ee54], [0x1ee57, 0x1ee57], [0x1ee59, 0x1ee59],\n [0x1ee5b, 0x1ee5b], [0x1ee5d, 0x1ee5d], [0x1ee5f, 0x1ee5f], [0x1ee61, 0x1ee62],\n [0x1ee64, 0x1ee64], [0x1ee67, 0x1ee6a], [0x1ee6c, 0x1ee72], [0x1ee74, 0x1ee77],\n [0x1ee79, 0x1ee7c], [0x1ee7e, 0x1ee7e], [0x1ee80, 0x1ee89], [0x1ee8b, 0x1ee9b],\n [0x1eea1, 0x1eea3], [0x1eea5, 0x1eea9], [0x1eeab, 0x1eebb], [0x10fffd, 0x10fffd]];\n\nfunction isStrongRTLChar(charCode) {\n for (var i = 0; i < strongRTLRanges.length; i++) {\n var currentRange = strongRTLRanges[i];\n if (charCode >= currentRange[0] && charCode <= currentRange[1]) {\n return true;\n }\n }\n\n return false;\n}\n\nfunction determineBidi(cueDiv) {\n var nodeStack = [],\n text = \"\",\n charCode;\n\n if (!cueDiv || !cueDiv.childNodes) {\n return \"ltr\";\n }\n\n function pushNodes(nodeStack, node) {\n for (var i = node.childNodes.length - 1; i >= 0; i--) {\n nodeStack.push(node.childNodes[i]);\n }\n }\n\n function nextTextNode(nodeStack) {\n if (!nodeStack || !nodeStack.length) {\n return null;\n }\n\n var node = nodeStack.pop(),\n text = node.textContent || node.innerText;\n if (text) {\n // TODO: This should match all unicode type B characters (paragraph\n // separator characters). See issue #115.\n var m = text.match(/^.*(\\n|\\r)/);\n if (m) {\n nodeStack.length = 0;\n return m[0];\n }\n return text;\n }\n if (node.tagName === \"ruby\") {\n return nextTextNode(nodeStack);\n }\n if (node.childNodes) {\n pushNodes(nodeStack, node);\n return nextTextNode(nodeStack);\n }\n }\n\n pushNodes(nodeStack, cueDiv);\n while ((text = nextTextNode(nodeStack))) {\n for (var i = 0; i < text.length; i++) {\n charCode = text.charCodeAt(i);\n if (isStrongRTLChar(charCode)) {\n return \"rtl\";\n }\n }\n }\n return \"ltr\";\n}\n\nfunction computeLinePos(cue) {\n if (typeof cue.line === \"number\" &&\n (cue.snapToLines || (cue.line >= 0 && cue.line <= 100))) {\n return cue.line;\n }\n if (!cue.track || !cue.track.textTrackList ||\n !cue.track.textTrackList.mediaElement) {\n return -1;\n }\n var track = cue.track,\n trackList = track.textTrackList,\n count = 0;\n for (var i = 0; i < trackList.length && trackList[i] !== track; i++) {\n if (trackList[i].mode === \"showing\") {\n count++;\n }\n }\n return ++count * -1;\n}\n\nfunction StyleBox() {\n}\n\n// Apply styles to a div. If there is no div passed then it defaults to the\n// div on 'this'.\nStyleBox.prototype.applyStyles = function(styles, div) {\n div = div || this.div;\n for (var prop in styles) {\n if (styles.hasOwnProperty(prop)) {\n div.style[prop] = styles[prop];\n }\n }\n};\n\nStyleBox.prototype.formatStyle = function(val, unit) {\n return val === 0 ? 0 : val + unit;\n};\n\n// Constructs the computed display state of the cue (a div). Places the div\n// into the overlay which should be a block level element (usually a div).\nfunction CueStyleBox(window, cue, styleOptions) {\n var isIE8 = (/MSIE\\s8\\.0/).test(navigator.userAgent);\n var color = \"rgba(255, 255, 255, 1)\";\n var backgroundColor = \"rgba(0, 0, 0, 0.8)\";\n\n if (isIE8) {\n color = \"rgb(255, 255, 255)\";\n backgroundColor = \"rgb(0, 0, 0)\";\n }\n\n StyleBox.call(this);\n this.cue = cue;\n\n // Parse our cue's text into a DOM tree rooted at 'cueDiv'. This div will\n // have inline positioning and will function as the cue background box.\n this.cueDiv = parseContent(window, cue.text);\n var styles = {\n color: color,\n backgroundColor: backgroundColor,\n position: \"relative\",\n left: 0,\n right: 0,\n top: 0,\n bottom: 0,\n display: \"inline\"\n };\n\n if (!isIE8) {\n styles.writingMode = cue.vertical === \"\" ? \"horizontal-tb\"\n : cue.vertical === \"lr\" ? \"vertical-lr\"\n : \"vertical-rl\";\n styles.unicodeBidi = \"plaintext\";\n }\n this.applyStyles(styles, this.cueDiv);\n\n // Create an absolutely positioned div that will be used to position the cue\n // div. Note, all WebVTT cue-setting alignments are equivalent to the CSS\n // mirrors of them except \"middle\" which is \"center\" in CSS.\n this.div = window.document.createElement(\"div\");\n styles = {\n textAlign: cue.align === \"middle\" ? \"center\" : cue.align,\n font: styleOptions.font,\n whiteSpace: \"pre-line\",\n position: \"absolute\"\n };\n\n if (!isIE8) {\n styles.direction = determineBidi(this.cueDiv);\n styles.writingMode = cue.vertical === \"\" ? \"horizontal-tb\"\n : cue.vertical === \"lr\" ? \"vertical-lr\"\n : \"vertical-rl\".\n stylesunicodeBidi = \"plaintext\";\n }\n\n this.applyStyles(styles);\n\n this.div.appendChild(this.cueDiv);\n\n // Calculate the distance from the reference edge of the viewport to the text\n // position of the cue box. The reference edge will be resolved later when\n // the box orientation styles are applied.\n var textPos = 0;\n switch (cue.positionAlign) {\n case \"start\":\n textPos = cue.position;\n break;\n case \"middle\":\n textPos = cue.position - (cue.size / 2);\n break;\n case \"end\":\n textPos = cue.position - cue.size;\n break;\n }\n\n // Horizontal box orientation; textPos is the distance from the left edge of the\n // area to the left edge of the box and cue.size is the distance extending to\n // the right from there.\n if (cue.vertical === \"\") {\n this.applyStyles({\n left: this.formatStyle(textPos, \"%\"),\n width: this.formatStyle(cue.size, \"%\")\n });\n // Vertical box orientation; textPos is the distance from the top edge of the\n // area to the top edge of the box and cue.size is the height extending\n // downwards from there.\n } else {\n this.applyStyles({\n top: this.formatStyle(textPos, \"%\"),\n height: this.formatStyle(cue.size, \"%\")\n });\n }\n\n this.move = function(box) {\n this.applyStyles({\n top: this.formatStyle(box.top, \"px\"),\n bottom: this.formatStyle(box.bottom, \"px\"),\n left: this.formatStyle(box.left, \"px\"),\n right: this.formatStyle(box.right, \"px\"),\n height: this.formatStyle(box.height, \"px\"),\n width: this.formatStyle(box.width, \"px\")\n });\n };\n}\nCueStyleBox.prototype = _objCreate(StyleBox.prototype);\nCueStyleBox.prototype.constructor = CueStyleBox;\n\n// Represents the co-ordinates of an Element in a way that we can easily\n// compute things with such as if it overlaps or intersects with another Element.\n// Can initialize it with either a StyleBox or another BoxPosition.\nfunction BoxPosition(obj) {\n var isIE8 = (/MSIE\\s8\\.0/).test(navigator.userAgent);\n\n // Either a BoxPosition was passed in and we need to copy it, or a StyleBox\n // was passed in and we need to copy the results of 'getBoundingClientRect'\n // as the object returned is readonly. All co-ordinate values are in reference\n // to the viewport origin (top left).\n var lh, height, width, top;\n if (obj.div) {\n height = obj.div.offsetHeight;\n width = obj.div.offsetWidth;\n top = obj.div.offsetTop;\n\n var rects = (rects = obj.div.childNodes) && (rects = rects[0]) &&\n rects.getClientRects && rects.getClientRects();\n obj = obj.div.getBoundingClientRect();\n // In certain cases the outter div will be slightly larger then the sum of\n // the inner div's lines. This could be due to bold text, etc, on some platforms.\n // In this case we should get the average line height and use that. This will\n // result in the desired behaviour.\n lh = rects ? Math.max((rects[0] && rects[0].height) || 0, obj.height / rects.length)\n : 0;\n\n }\n this.left = obj.left;\n this.right = obj.right;\n this.top = obj.top || top;\n this.height = obj.height || height;\n this.bottom = obj.bottom || (top + (obj.height || height));\n this.width = obj.width || width;\n this.lineHeight = lh !== undefined ? lh : obj.lineHeight;\n\n if (isIE8 && !this.lineHeight) {\n this.lineHeight = 13;\n }\n}\n\n// Move the box along a particular axis. Optionally pass in an amount to move\n// the box. If no amount is passed then the default is the line height of the\n// box.\nBoxPosition.prototype.move = function(axis, toMove) {\n toMove = toMove !== undefined ? toMove : this.lineHeight;\n switch (axis) {\n case \"+x\":\n this.left += toMove;\n this.right += toMove;\n break;\n case \"-x\":\n this.left -= toMove;\n this.right -= toMove;\n break;\n case \"+y\":\n this.top += toMove;\n this.bottom += toMove;\n break;\n case \"-y\":\n this.top -= toMove;\n this.bottom -= toMove;\n break;\n }\n};\n\n// Check if this box overlaps another box, b2.\nBoxPosition.prototype.overlaps = function(b2) {\n return this.left < b2.right &&\n this.right > b2.left &&\n this.top < b2.bottom &&\n this.bottom > b2.top;\n};\n\n// Check if this box overlaps any other boxes in boxes.\nBoxPosition.prototype.overlapsAny = function(boxes) {\n for (var i = 0; i < boxes.length; i++) {\n if (this.overlaps(boxes[i])) {\n return true;\n }\n }\n return false;\n};\n\n// Check if this box is within another box.\nBoxPosition.prototype.within = function(container) {\n return this.top >= container.top &&\n this.bottom <= container.bottom &&\n this.left >= container.left &&\n this.right <= container.right;\n};\n\n// Check if this box is entirely within the container or it is overlapping\n// on the edge opposite of the axis direction passed. For example, if \"+x\" is\n// passed and the box is overlapping on the left edge of the container, then\n// return true.\nBoxPosition.prototype.overlapsOppositeAxis = function(container, axis) {\n switch (axis) {\n case \"+x\":\n return this.left < container.left;\n case \"-x\":\n return this.right > container.right;\n case \"+y\":\n return this.top < container.top;\n case \"-y\":\n return this.bottom > container.bottom;\n }\n};\n\n// Find the percentage of the area that this box is overlapping with another\n// box.\nBoxPosition.prototype.intersectPercentage = function(b2) {\n var x = Math.max(0, Math.min(this.right, b2.right) - Math.max(this.left, b2.left)),\n y = Math.max(0, Math.min(this.bottom, b2.bottom) - Math.max(this.top, b2.top)),\n intersectArea = x * y;\n return intersectArea / (this.height * this.width);\n};\n\n// Convert the positions from this box to CSS compatible positions using\n// the reference container's positions. This has to be done because this\n// box's positions are in reference to the viewport origin, whereas, CSS\n// values are in referecne to their respective edges.\nBoxPosition.prototype.toCSSCompatValues = function(reference) {\n return {\n top: this.top - reference.top,\n bottom: reference.bottom - this.bottom,\n left: this.left - reference.left,\n right: reference.right - this.right,\n height: this.height,\n width: this.width\n };\n};\n\n// Get an object that represents the box's position without anything extra.\n// Can pass a StyleBox, HTMLElement, or another BoxPositon.\nBoxPosition.getSimpleBoxPosition = function(obj) {\n var height = obj.div ? obj.div.offsetHeight : obj.tagName ? obj.offsetHeight : 0;\n var width = obj.div ? obj.div.offsetWidth : obj.tagName ? obj.offsetWidth : 0;\n var top = obj.div ? obj.div.offsetTop : obj.tagName ? obj.offsetTop : 0;\n\n obj = obj.div ? obj.div.getBoundingClientRect() :\n obj.tagName ? obj.getBoundingClientRect() : obj;\n var ret = {\n left: obj.left,\n right: obj.right,\n top: obj.top || top,\n height: obj.height || height,\n bottom: obj.bottom || (top + (obj.height || height)),\n width: obj.width || width\n };\n return ret;\n};\n\n// Move a StyleBox to its specified, or next best, position. The containerBox\n// is the box that contains the StyleBox, such as a div. boxPositions are\n// a list of other boxes that the styleBox can't overlap with.\nfunction moveBoxToLinePosition(window, styleBox, containerBox, boxPositions) {\n\n // Find the best position for a cue box, b, on the video. The axis parameter\n // is a list of axis, the order of which, it will move the box along. For example:\n // Passing [\"+x\", \"-x\"] will move the box first along the x axis in the positive\n // direction. If it doesn't find a good position for it there it will then move\n // it along the x axis in the negative direction.\n function findBestPosition(b, axis) {\n var bestPosition,\n specifiedPosition = new BoxPosition(b),\n percentage = 1; // Highest possible so the first thing we get is better.\n\n for (var i = 0; i < axis.length; i++) {\n while (b.overlapsOppositeAxis(containerBox, axis[i]) ||\n (b.within(containerBox) && b.overlapsAny(boxPositions))) {\n b.move(axis[i]);\n }\n // We found a spot where we aren't overlapping anything. This is our\n // best position.\n if (b.within(containerBox)) {\n return b;\n }\n var p = b.intersectPercentage(containerBox);\n // If we're outside the container box less then we were on our last try\n // then remember this position as the best position.\n if (percentage > p) {\n bestPosition = new BoxPosition(b);\n percentage = p;\n }\n // Reset the box position to the specified position.\n b = new BoxPosition(specifiedPosition);\n }\n return bestPosition || specifiedPosition;\n }\n\n var boxPosition = new BoxPosition(styleBox),\n cue = styleBox.cue,\n linePos = computeLinePos(cue),\n axis = [];\n\n // If we have a line number to align the cue to.\n if (cue.snapToLines) {\n var size;\n switch (cue.vertical) {\n case \"\":\n axis = [ \"+y\", \"-y\" ];\n size = \"height\";\n break;\n case \"rl\":\n axis = [ \"+x\", \"-x\" ];\n size = \"width\";\n break;\n case \"lr\":\n axis = [ \"-x\", \"+x\" ];\n size = \"width\";\n break;\n }\n\n var step = boxPosition.lineHeight,\n position = step * Math.round(linePos),\n maxPosition = containerBox[size] + step,\n initialAxis = axis[0];\n\n // If the specified intial position is greater then the max position then\n // clamp the box to the amount of steps it would take for the box to\n // reach the max position.\n if (Math.abs(position) > maxPosition) {\n position = position < 0 ? -1 : 1;\n position *= Math.ceil(maxPosition / step) * step;\n }\n\n // If computed line position returns negative then line numbers are\n // relative to the bottom of the video instead of the top. Therefore, we\n // need to increase our initial position by the length or width of the\n // video, depending on the writing direction, and reverse our axis directions.\n if (linePos < 0) {\n position += cue.vertical === \"\" ? containerBox.height : containerBox.width;\n axis = axis.reverse();\n }\n\n // Move the box to the specified position. This may not be its best\n // position.\n boxPosition.move(initialAxis, position);\n\n } else {\n // If we have a percentage line value for the cue.\n var calculatedPercentage = (boxPosition.lineHeight / containerBox.height) * 100;\n\n switch (cue.lineAlign) {\n case \"middle\":\n linePos -= (calculatedPercentage / 2);\n break;\n case \"end\":\n linePos -= calculatedPercentage;\n break;\n }\n\n // Apply initial line position to the cue box.\n switch (cue.vertical) {\n case \"\":\n styleBox.applyStyles({\n top: styleBox.formatStyle(linePos, \"%\")\n });\n break;\n case \"rl\":\n styleBox.applyStyles({\n left: styleBox.formatStyle(linePos, \"%\")\n });\n break;\n case \"lr\":\n styleBox.applyStyles({\n right: styleBox.formatStyle(linePos, \"%\")\n });\n break;\n }\n\n axis = [ \"+y\", \"-x\", \"+x\", \"-y\" ];\n\n // Get the box position again after we've applied the specified positioning\n // to it.\n boxPosition = new BoxPosition(styleBox);\n }\n\n var bestPosition = findBestPosition(boxPosition, axis);\n styleBox.move(bestPosition.toCSSCompatValues(containerBox));\n}\n\nfunction WebVTT$1() {\n // Nothing\n}\n\n// Helper to allow strings to be decoded instead of the default binary utf8 data.\nWebVTT$1.StringDecoder = function() {\n return {\n decode: function(data) {\n if (!data) {\n return \"\";\n }\n if (typeof data !== \"string\") {\n throw new Error(\"Error - expected string data.\");\n }\n return decodeURIComponent(encodeURIComponent(data));\n }\n };\n};\n\nWebVTT$1.convertCueToDOMTree = function(window, cuetext) {\n if (!window || !cuetext) {\n return null;\n }\n return parseContent(window, cuetext);\n};\n\nvar FONT_SIZE_PERCENT = 0.05;\nvar FONT_STYLE = \"sans-serif\";\nvar CUE_BACKGROUND_PADDING = \"1.5%\";\n\n// Runs the processing model over the cues and regions passed to it.\n// @param overlay A block level element (usually a div) that the computed cues\n// and regions will be placed into.\nWebVTT$1.processCues = function(window, cues, overlay) {\n if (!window || !cues || !overlay) {\n return null;\n }\n\n // Remove all previous children.\n while (overlay.firstChild) {\n overlay.removeChild(overlay.firstChild);\n }\n\n var paddedOverlay = window.document.createElement(\"div\");\n paddedOverlay.style.position = \"absolute\";\n paddedOverlay.style.left = \"0\";\n paddedOverlay.style.right = \"0\";\n paddedOverlay.style.top = \"0\";\n paddedOverlay.style.bottom = \"0\";\n paddedOverlay.style.margin = CUE_BACKGROUND_PADDING;\n overlay.appendChild(paddedOverlay);\n\n // Determine if we need to compute the display states of the cues. This could\n // be the case if a cue's state has been changed since the last computation or\n // if it has not been computed yet.\n function shouldCompute(cues) {\n for (var i = 0; i < cues.length; i++) {\n if (cues[i].hasBeenReset || !cues[i].displayState) {\n return true;\n }\n }\n return false;\n }\n\n // We don't need to recompute the cues' display states. Just reuse them.\n if (!shouldCompute(cues)) {\n for (var i = 0; i < cues.length; i++) {\n paddedOverlay.appendChild(cues[i].displayState);\n }\n return;\n }\n\n var boxPositions = [],\n containerBox = BoxPosition.getSimpleBoxPosition(paddedOverlay),\n fontSize = Math.round(containerBox.height * FONT_SIZE_PERCENT * 100) / 100;\n var styleOptions = {\n font: fontSize + \"px \" + FONT_STYLE\n };\n\n (function() {\n var styleBox, cue;\n\n for (var i = 0; i < cues.length; i++) {\n cue = cues[i];\n\n // Compute the intial position and styles of the cue div.\n styleBox = new CueStyleBox(window, cue, styleOptions);\n paddedOverlay.appendChild(styleBox.div);\n\n // Move the cue div to it's correct line position.\n moveBoxToLinePosition(window, styleBox, containerBox, boxPositions);\n\n // Remember the computed div so that we don't have to recompute it later\n // if we don't have too.\n cue.displayState = styleBox.div;\n\n boxPositions.push(BoxPosition.getSimpleBoxPosition(styleBox));\n }\n })();\n};\n\nWebVTT$1.Parser = function(window, vttjs, decoder) {\n if (!decoder) {\n decoder = vttjs;\n vttjs = {};\n }\n if (!vttjs) {\n vttjs = {};\n }\n\n this.window = window;\n this.vttjs = vttjs;\n this.state = \"INITIAL\";\n this.buffer = \"\";\n this.decoder = decoder || new TextDecoder(\"utf8\");\n this.regionList = [];\n};\n\nWebVTT$1.Parser.prototype = {\n // If the error is a ParsingError then report it to the consumer if\n // possible. If it's not a ParsingError then throw it like normal.\n reportOrThrowError: function(e) {\n if (e instanceof ParsingError) {\n this.onparsingerror && this.onparsingerror(e);\n } else {\n throw e;\n }\n },\n parse: function (data) {\n var self = this;\n\n // If there is no data then we won't decode it, but will just try to parse\n // whatever is in buffer already. This may occur in circumstances, for\n // example when flush() is called.\n if (data) {\n // Try to decode the data that we received.\n self.buffer += self.decoder.decode(data, {stream: true});\n }\n\n function collectNextLine() {\n var buffer = self.buffer;\n var pos = 0;\n while (pos < buffer.length && buffer[pos] !== '\\r' && buffer[pos] !== '\\n') {\n ++pos;\n }\n var line = buffer.substr(0, pos);\n // Advance the buffer early in case we fail below.\n if (buffer[pos] === '\\r') {\n ++pos;\n }\n if (buffer[pos] === '\\n') {\n ++pos;\n }\n self.buffer = buffer.substr(pos);\n return line;\n }\n\n // 3.4 WebVTT region and WebVTT region settings syntax\n function parseRegion(input) {\n var settings = new Settings();\n\n parseOptions(input, function (k, v) {\n switch (k) {\n case \"id\":\n settings.set(k, v);\n break;\n case \"width\":\n settings.percent(k, v);\n break;\n case \"lines\":\n settings.integer(k, v);\n break;\n case \"regionanchor\":\n case \"viewportanchor\":\n var xy = v.split(',');\n if (xy.length !== 2) {\n break;\n }\n // We have to make sure both x and y parse, so use a temporary\n // settings object here.\n var anchor = new Settings();\n anchor.percent(\"x\", xy[0]);\n anchor.percent(\"y\", xy[1]);\n if (!anchor.has(\"x\") || !anchor.has(\"y\")) {\n break;\n }\n settings.set(k + \"X\", anchor.get(\"x\"));\n settings.set(k + \"Y\", anchor.get(\"y\"));\n break;\n case \"scroll\":\n settings.alt(k, v, [\"up\"]);\n break;\n }\n }, /=/, /\\s/);\n\n // Create the region, using default values for any values that were not\n // specified.\n if (settings.has(\"id\")) {\n var region = new (self.vttjs.VTTRegion || self.window.VTTRegion)();\n region.width = settings.get(\"width\", 100);\n region.lines = settings.get(\"lines\", 3);\n region.regionAnchorX = settings.get(\"regionanchorX\", 0);\n region.regionAnchorY = settings.get(\"regionanchorY\", 100);\n region.viewportAnchorX = settings.get(\"viewportanchorX\", 0);\n region.viewportAnchorY = settings.get(\"viewportanchorY\", 100);\n region.scroll = settings.get(\"scroll\", \"\");\n // Register the region.\n self.onregion && self.onregion(region);\n // Remember the VTTRegion for later in case we parse any VTTCues that\n // reference it.\n self.regionList.push({\n id: settings.get(\"id\"),\n region: region\n });\n }\n }\n\n // draft-pantos-http-live-streaming-20\n // https://tools.ietf.org/html/draft-pantos-http-live-streaming-20#section-3.5\n // 3.5 WebVTT\n function parseTimestampMap(input) {\n var settings = new Settings();\n\n parseOptions(input, function(k, v) {\n switch(k) {\n case \"MPEGT\":\n settings.integer(k + 'S', v);\n break;\n case \"LOCA\":\n settings.set(k + 'L', parseTimeStamp(v));\n break;\n }\n }, /[^\\d]:/, /,/);\n\n self.ontimestampmap && self.ontimestampmap({\n \"MPEGTS\": settings.get(\"MPEGTS\"),\n \"LOCAL\": settings.get(\"LOCAL\")\n });\n }\n\n // 3.2 WebVTT metadata header syntax\n function parseHeader(input) {\n if (input.match(/X-TIMESTAMP-MAP/)) {\n // This line contains HLS X-TIMESTAMP-MAP metadata\n parseOptions(input, function(k, v) {\n switch(k) {\n case \"X-TIMESTAMP-MAP\":\n parseTimestampMap(v);\n break;\n }\n }, /=/);\n } else {\n parseOptions(input, function (k, v) {\n switch (k) {\n case \"Region\":\n // 3.3 WebVTT region metadata header syntax\n parseRegion(v);\n break;\n }\n }, /:/);\n }\n\n }\n\n // 5.1 WebVTT file parsing.\n try {\n var line;\n if (self.state === \"INITIAL\") {\n // We can't start parsing until we have the first line.\n if (!/\\r\\n|\\n/.test(self.buffer)) {\n return this;\n }\n\n line = collectNextLine();\n\n var m = line.match(/^WEBVTT([ \\t].*)?$/);\n if (!m || !m[0]) {\n throw new ParsingError(ParsingError.Errors.BadSignature);\n }\n\n self.state = \"HEADER\";\n }\n\n var alreadyCollectedLine = false;\n while (self.buffer) {\n // We can't parse a line until we have the full line.\n if (!/\\r\\n|\\n/.test(self.buffer)) {\n return this;\n }\n\n if (!alreadyCollectedLine) {\n line = collectNextLine();\n } else {\n alreadyCollectedLine = false;\n }\n\n switch (self.state) {\n case \"HEADER\":\n // 13-18 - Allow a header (metadata) under the WEBVTT line.\n if (/:/.test(line)) {\n parseHeader(line);\n } else if (!line) {\n // An empty line terminates the header and starts the body (cues).\n self.state = \"ID\";\n }\n continue;\n case \"NOTE\":\n // Ignore NOTE blocks.\n if (!line) {\n self.state = \"ID\";\n }\n continue;\n case \"ID\":\n // Check for the start of NOTE blocks.\n if (/^NOTE($|[ \\t])/.test(line)) {\n self.state = \"NOTE\";\n break;\n }\n // 19-29 - Allow any number of line terminators, then initialize new cue values.\n if (!line) {\n continue;\n }\n self.cue = new (self.vttjs.VTTCue || self.window.VTTCue)(0, 0, \"\");\n self.state = \"CUE\";\n // 30-39 - Check if self line contains an optional identifier or timing data.\n if (line.indexOf(\"-->\") === -1) {\n self.cue.id = line;\n continue;\n }\n // Process line as start of a cue.\n /*falls through*/\n case \"CUE\":\n // 40 - Collect cue timings and settings.\n try {\n parseCue(line, self.cue, self.regionList);\n } catch (e) {\n self.reportOrThrowError(e);\n // In case of an error ignore rest of the cue.\n self.cue = null;\n self.state = \"BADCUE\";\n continue;\n }\n self.state = \"CUETEXT\";\n continue;\n case \"CUETEXT\":\n var hasSubstring = line.indexOf(\"-->\") !== -1;\n // 34 - If we have an empty line then report the cue.\n // 35 - If we have the special substring '-->' then report the cue,\n // but do not collect the line as we need to process the current\n // one as a new cue.\n if (!line || hasSubstring && (alreadyCollectedLine = true)) {\n // We are done parsing self cue.\n self.oncue && self.oncue(self.cue);\n self.cue = null;\n self.state = \"ID\";\n continue;\n }\n if (self.cue.text) {\n self.cue.text += \"\\n\";\n }\n self.cue.text += line;\n continue;\n case \"BADCUE\": // BADCUE\n // 54-62 - Collect and discard the remaining cue.\n if (!line) {\n self.state = \"ID\";\n }\n continue;\n }\n }\n } catch (e) {\n self.reportOrThrowError(e);\n\n // If we are currently parsing a cue, report what we have.\n if (self.state === \"CUETEXT\" && self.cue && self.oncue) {\n self.oncue(self.cue);\n }\n self.cue = null;\n // Enter BADWEBVTT state if header was not parsed correctly otherwise\n // another exception occurred so enter BADCUE state.\n self.state = self.state === \"INITIAL\" ? \"BADWEBVTT\" : \"BADCUE\";\n }\n return this;\n },\n flush: function () {\n var self = this;\n try {\n // Finish decoding the stream.\n self.buffer += self.decoder.decode();\n // Synthesize the end of the current cue or region.\n if (self.cue || self.state === \"HEADER\") {\n self.buffer += \"\\n\\n\";\n self.parse();\n }\n // If we've flushed, parsed, and we're still on the INITIAL state then\n // that means we don't have enough of the stream to parse the first\n // line.\n if (self.state === \"INITIAL\") {\n throw new ParsingError(ParsingError.Errors.BadSignature);\n }\n } catch(e) {\n self.reportOrThrowError(e);\n }\n self.onflush && self.onflush();\n return this;\n }\n};\n\nvar vtt$1 = WebVTT$1;\n\n/**\n * Copyright 2013 vtt.js Contributors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nvar autoKeyword = \"auto\";\nvar directionSetting = {\n \"\": true,\n \"lr\": true,\n \"rl\": true\n};\nvar alignSetting = {\n \"start\": true,\n \"middle\": true,\n \"end\": true,\n \"left\": true,\n \"right\": true\n};\n\nfunction findDirectionSetting(value) {\n if (typeof value !== \"string\") {\n return false;\n }\n var dir = directionSetting[value.toLowerCase()];\n return dir ? value.toLowerCase() : false;\n}\n\nfunction findAlignSetting(value) {\n if (typeof value !== \"string\") {\n return false;\n }\n var align = alignSetting[value.toLowerCase()];\n return align ? value.toLowerCase() : false;\n}\n\nfunction extend$1(obj) {\n var i = 1;\n for (; i < arguments.length; i++) {\n var cobj = arguments[i];\n for (var p in cobj) {\n obj[p] = cobj[p];\n }\n }\n\n return obj;\n}\n\nfunction VTTCue(startTime, endTime, text) {\n var cue = this;\n var isIE8 = (/MSIE\\s8\\.0/).test(navigator.userAgent);\n var baseObj = {};\n\n if (isIE8) {\n cue = document.createElement('custom');\n } else {\n baseObj.enumerable = true;\n }\n\n /**\n * Shim implementation specific properties. These properties are not in\n * the spec.\n */\n\n // Lets us know when the VTTCue's data has changed in such a way that we need\n // to recompute its display state. This lets us compute its display state\n // lazily.\n cue.hasBeenReset = false;\n\n /**\n * VTTCue and TextTrackCue properties\n * http://dev.w3.org/html5/webvtt/#vttcue-interface\n */\n\n var _id = \"\";\n var _pauseOnExit = false;\n var _startTime = startTime;\n var _endTime = endTime;\n var _text = text;\n var _region = null;\n var _vertical = \"\";\n var _snapToLines = true;\n var _line = \"auto\";\n var _lineAlign = \"start\";\n var _position = 50;\n var _positionAlign = \"middle\";\n var _size = 50;\n var _align = \"middle\";\n\n Object.defineProperty(cue,\n \"id\", extend$1({}, baseObj, {\n get: function() {\n return _id;\n },\n set: function(value) {\n _id = \"\" + value;\n }\n }));\n\n Object.defineProperty(cue,\n \"pauseOnExit\", extend$1({}, baseObj, {\n get: function() {\n return _pauseOnExit;\n },\n set: function(value) {\n _pauseOnExit = !!value;\n }\n }));\n\n Object.defineProperty(cue,\n \"startTime\", extend$1({}, baseObj, {\n get: function() {\n return _startTime;\n },\n set: function(value) {\n if (typeof value !== \"number\") {\n throw new TypeError(\"Start time must be set to a number.\");\n }\n _startTime = value;\n this.hasBeenReset = true;\n }\n }));\n\n Object.defineProperty(cue,\n \"endTime\", extend$1({}, baseObj, {\n get: function() {\n return _endTime;\n },\n set: function(value) {\n if (typeof value !== \"number\") {\n throw new TypeError(\"End time must be set to a number.\");\n }\n _endTime = value;\n this.hasBeenReset = true;\n }\n }));\n\n Object.defineProperty(cue,\n \"text\", extend$1({}, baseObj, {\n get: function() {\n return _text;\n },\n set: function(value) {\n _text = \"\" + value;\n this.hasBeenReset = true;\n }\n }));\n\n Object.defineProperty(cue,\n \"region\", extend$1({}, baseObj, {\n get: function() {\n return _region;\n },\n set: function(value) {\n _region = value;\n this.hasBeenReset = true;\n }\n }));\n\n Object.defineProperty(cue,\n \"vertical\", extend$1({}, baseObj, {\n get: function() {\n return _vertical;\n },\n set: function(value) {\n var setting = findDirectionSetting(value);\n // Have to check for false because the setting an be an empty string.\n if (setting === false) {\n throw new SyntaxError(\"An invalid or illegal string was specified.\");\n }\n _vertical = setting;\n this.hasBeenReset = true;\n }\n }));\n\n Object.defineProperty(cue,\n \"snapToLines\", extend$1({}, baseObj, {\n get: function() {\n return _snapToLines;\n },\n set: function(value) {\n _snapToLines = !!value;\n this.hasBeenReset = true;\n }\n }));\n\n Object.defineProperty(cue,\n \"line\", extend$1({}, baseObj, {\n get: function() {\n return _line;\n },\n set: function(value) {\n if (typeof value !== \"number\" && value !== autoKeyword) {\n throw new SyntaxError(\"An invalid number or illegal string was specified.\");\n }\n _line = value;\n this.hasBeenReset = true;\n }\n }));\n\n Object.defineProperty(cue,\n \"lineAlign\", extend$1({}, baseObj, {\n get: function() {\n return _lineAlign;\n },\n set: function(value) {\n var setting = findAlignSetting(value);\n if (!setting) {\n throw new SyntaxError(\"An invalid or illegal string was specified.\");\n }\n _lineAlign = setting;\n this.hasBeenReset = true;\n }\n }));\n\n Object.defineProperty(cue,\n \"position\", extend$1({}, baseObj, {\n get: function() {\n return _position;\n },\n set: function(value) {\n if (value < 0 || value > 100) {\n throw new Error(\"Position must be between 0 and 100.\");\n }\n _position = value;\n this.hasBeenReset = true;\n }\n }));\n\n Object.defineProperty(cue,\n \"positionAlign\", extend$1({}, baseObj, {\n get: function() {\n return _positionAlign;\n },\n set: function(value) {\n var setting = findAlignSetting(value);\n if (!setting) {\n throw new SyntaxError(\"An invalid or illegal string was specified.\");\n }\n _positionAlign = setting;\n this.hasBeenReset = true;\n }\n }));\n\n Object.defineProperty(cue,\n \"size\", extend$1({}, baseObj, {\n get: function() {\n return _size;\n },\n set: function(value) {\n if (value < 0 || value > 100) {\n throw new Error(\"Size must be between 0 and 100.\");\n }\n _size = value;\n this.hasBeenReset = true;\n }\n }));\n\n Object.defineProperty(cue,\n \"align\", extend$1({}, baseObj, {\n get: function() {\n return _align;\n },\n set: function(value) {\n var setting = findAlignSetting(value);\n if (!setting) {\n throw new SyntaxError(\"An invalid or illegal string was specified.\");\n }\n _align = setting;\n this.hasBeenReset = true;\n }\n }));\n\n /**\n * Other <track> spec defined properties\n */\n\n // http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#text-track-cue-display-state\n cue.displayState = undefined;\n\n if (isIE8) {\n return cue;\n }\n}\n\n/**\n * VTTCue methods\n */\n\nVTTCue.prototype.getCueAsHTML = function() {\n // Assume WebVTT.convertCueToDOMTree is on the global.\n return WebVTT.convertCueToDOMTree(window, this.text);\n};\n\nvar vttcue = VTTCue;\n\n/**\n * Copyright 2013 vtt.js Contributors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nvar scrollSetting = {\n \"\": true,\n \"up\": true\n};\n\nfunction findScrollSetting(value) {\n if (typeof value !== \"string\") {\n return false;\n }\n var scroll = scrollSetting[value.toLowerCase()];\n return scroll ? value.toLowerCase() : false;\n}\n\nfunction isValidPercentValue(value) {\n return typeof value === \"number\" && (value >= 0 && value <= 100);\n}\n\n// VTTRegion shim http://dev.w3.org/html5/webvtt/#vttregion-interface\nfunction VTTRegion() {\n var _width = 100;\n var _lines = 3;\n var _regionAnchorX = 0;\n var _regionAnchorY = 100;\n var _viewportAnchorX = 0;\n var _viewportAnchorY = 100;\n var _scroll = \"\";\n\n Object.defineProperties(this, {\n \"width\": {\n enumerable: true,\n get: function() {\n return _width;\n },\n set: function(value) {\n if (!isValidPercentValue(value)) {\n throw new Error(\"Width must be between 0 and 100.\");\n }\n _width = value;\n }\n },\n \"lines\": {\n enumerable: true,\n get: function() {\n return _lines;\n },\n set: function(value) {\n if (typeof value !== \"number\") {\n throw new TypeError(\"Lines must be set to a number.\");\n }\n _lines = value;\n }\n },\n \"regionAnchorY\": {\n enumerable: true,\n get: function() {\n return _regionAnchorY;\n },\n set: function(value) {\n if (!isValidPercentValue(value)) {\n throw new Error(\"RegionAnchorX must be between 0 and 100.\");\n }\n _regionAnchorY = value;\n }\n },\n \"regionAnchorX\": {\n enumerable: true,\n get: function() {\n return _regionAnchorX;\n },\n set: function(value) {\n if(!isValidPercentValue(value)) {\n throw new Error(\"RegionAnchorY must be between 0 and 100.\");\n }\n _regionAnchorX = value;\n }\n },\n \"viewportAnchorY\": {\n enumerable: true,\n get: function() {\n return _viewportAnchorY;\n },\n set: function(value) {\n if (!isValidPercentValue(value)) {\n throw new Error(\"ViewportAnchorY must be between 0 and 100.\");\n }\n _viewportAnchorY = value;\n }\n },\n \"viewportAnchorX\": {\n enumerable: true,\n get: function() {\n return _viewportAnchorX;\n },\n set: function(value) {\n if (!isValidPercentValue(value)) {\n throw new Error(\"ViewportAnchorX must be between 0 and 100.\");\n }\n _viewportAnchorX = value;\n }\n },\n \"scroll\": {\n enumerable: true,\n get: function() {\n return _scroll;\n },\n set: function(value) {\n var setting = findScrollSetting(value);\n // Have to check for false as an empty string is a legal value.\n if (setting === false) {\n throw new SyntaxError(\"An invalid or illegal string was specified.\");\n }\n _scroll = setting;\n }\n }\n });\n}\n\nvar vttregion = VTTRegion;\n\nvar browserIndex = createCommonjsModule(function (module) {\n/**\n * Copyright 2013 vtt.js Contributors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n// Default exports for Node. Export the extended versions of VTTCue and\n// VTTRegion in Node since we likely want the capability to convert back and\n// forth between JSON. If we don't then it's not that big of a deal since we're\n// off browser.\n\n\n\nvar vttjs = module.exports = {\n WebVTT: vtt$1,\n VTTCue: vttcue,\n VTTRegion: vttregion\n};\n\nwindow_1.vttjs = vttjs;\nwindow_1.WebVTT = vttjs.WebVTT;\n\nvar cueShim = vttjs.VTTCue;\nvar regionShim = vttjs.VTTRegion;\nvar nativeVTTCue = window_1.VTTCue;\nvar nativeVTTRegion = window_1.VTTRegion;\n\nvttjs.shim = function() {\n window_1.VTTCue = cueShim;\n window_1.VTTRegion = regionShim;\n};\n\nvttjs.restore = function() {\n window_1.VTTCue = nativeVTTCue;\n window_1.VTTRegion = nativeVTTRegion;\n};\n\nif (!window_1.VTTCue) {\n vttjs.shim();\n}\n});\n\n/**\n * @file tech.js\n */\n\n/**\n * An Object containing a structure like: `{src: 'url', type: 'mimetype'}` or string\n * that just contains the src url alone.\n * * `var SourceObject = {src: 'http://ex.com/video.mp4', type: 'video/mp4'};`\n * `var SourceString = 'http://example.com/some-video.mp4';`\n *\n * @typedef {Object|string} Tech~SourceObject\n *\n * @property {string} src\n * The url to the source\n *\n * @property {string} type\n * The mime type of the source\n */\n\n/**\n * A function used by {@link Tech} to create a new {@link TextTrack}.\n *\n * @private\n *\n * @param {Tech} self\n * An instance of the Tech class.\n *\n * @param {string} kind\n * `TextTrack` kind (subtitles, captions, descriptions, chapters, or metadata)\n *\n * @param {string} [label]\n * Label to identify the text track\n *\n * @param {string} [language]\n * Two letter language abbreviation\n *\n * @param {Object} [options={}]\n * An object with additional text track options\n *\n * @return {TextTrack}\n * The text track that was created.\n */\nfunction createTrackHelper(self, kind, label, language) {\n var options = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : {};\n\n var tracks = self.textTracks();\n\n options.kind = kind;\n\n if (label) {\n options.label = label;\n }\n if (language) {\n options.language = language;\n }\n options.tech = self;\n\n var track = new ALL.text.TrackClass(options);\n\n tracks.addTrack(track);\n\n return track;\n}\n\n/**\n * This is the base class for media playback technology controllers, such as\n * {@link Flash} and {@link HTML5}\n *\n * @extends Component\n */\n\nvar Tech = function (_Component) {\n inherits(Tech, _Component);\n\n /**\n * Create an instance of this Tech.\n *\n * @param {Object} [options]\n * The key/value store of player options.\n *\n * @param {Component~ReadyCallback} ready\n * Callback function to call when the `HTML5` Tech is ready.\n */\n function Tech() {\n var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n var ready = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : function () {};\n classCallCheck(this, Tech);\n\n // we don't want the tech to report user activity automatically.\n // This is done manually in addControlsListeners\n options.reportTouchActivity = false;\n\n // keep track of whether the current source has played at all to\n // implement a very limited played()\n var _this = possibleConstructorReturn(this, _Component.call(this, null, options, ready));\n\n _this.hasStarted_ = false;\n _this.on('playing', function () {\n this.hasStarted_ = true;\n });\n _this.on('loadstart', function () {\n this.hasStarted_ = false;\n });\n\n ALL.names.forEach(function (name) {\n var props = ALL[name];\n\n if (options && options[props.getterName]) {\n _this[props.privateName] = options[props.getterName];\n }\n });\n\n // Manually track progress in cases where the browser/flash player doesn't report it.\n if (!_this.featuresProgressEvents) {\n _this.manualProgressOn();\n }\n\n // Manually track timeupdates in cases where the browser/flash player doesn't report it.\n if (!_this.featuresTimeupdateEvents) {\n _this.manualTimeUpdatesOn();\n }\n\n ['Text', 'Audio', 'Video'].forEach(function (track) {\n if (options['native' + track + 'Tracks'] === false) {\n _this['featuresNative' + track + 'Tracks'] = false;\n }\n });\n\n if (options.nativeCaptions === false || options.nativeTextTracks === false) {\n _this.featuresNativeTextTracks = false;\n } else if (options.nativeCaptions === true || options.nativeTextTracks === true) {\n _this.featuresNativeTextTracks = true;\n }\n\n if (!_this.featuresNativeTextTracks) {\n _this.emulateTextTracks();\n }\n\n _this.autoRemoteTextTracks_ = new ALL.text.ListClass();\n\n _this.initTrackListeners();\n\n // Turn on component tap events only if not using native controls\n if (!options.nativeControlsForTouch) {\n _this.emitTapEvents();\n }\n\n if (_this.constructor) {\n _this.name_ = _this.constructor.name || 'Unknown Tech';\n }\n return _this;\n }\n\n /* Fallbacks for unsupported event types\n ================================================================================ */\n\n /**\n * Polyfill the `progress` event for browsers that don't support it natively.\n *\n * @see {@link Tech#trackProgress}\n */\n\n\n Tech.prototype.manualProgressOn = function manualProgressOn() {\n this.on('durationchange', this.onDurationChange);\n\n this.manualProgress = true;\n\n // Trigger progress watching when a source begins loading\n this.one('ready', this.trackProgress);\n };\n\n /**\n * Turn off the polyfill for `progress` events that was created in\n * {@link Tech#manualProgressOn}\n */\n\n\n Tech.prototype.manualProgressOff = function manualProgressOff() {\n this.manualProgress = false;\n this.stopTrackingProgress();\n\n this.off('durationchange', this.onDurationChange);\n };\n\n /**\n * This is used to trigger a `progress` event when the buffered percent changes. It\n * sets an interval function that will be called every 500 milliseconds to check if the\n * buffer end percent has changed.\n *\n * > This function is called by {@link Tech#manualProgressOn}\n *\n * @param {EventTarget~Event} event\n * The `ready` event that caused this to run.\n *\n * @listens Tech#ready\n * @fires Tech#progress\n */\n\n\n Tech.prototype.trackProgress = function trackProgress(event) {\n this.stopTrackingProgress();\n this.progressInterval = this.setInterval(bind(this, function () {\n // Don't trigger unless buffered amount is greater than last time\n\n var numBufferedPercent = this.bufferedPercent();\n\n if (this.bufferedPercent_ !== numBufferedPercent) {\n /**\n * See {@link Player#progress}\n *\n * @event Tech#progress\n * @type {EventTarget~Event}\n */\n this.trigger('progress');\n }\n\n this.bufferedPercent_ = numBufferedPercent;\n\n if (numBufferedPercent === 1) {\n this.stopTrackingProgress();\n }\n }), 500);\n };\n\n /**\n * Update our internal duration on a `durationchange` event by calling\n * {@link Tech#duration}.\n *\n * @param {EventTarget~Event} event\n * The `durationchange` event that caused this to run.\n *\n * @listens Tech#durationchange\n */\n\n\n Tech.prototype.onDurationChange = function onDurationChange(event) {\n this.duration_ = this.duration();\n };\n\n /**\n * Get and create a `TimeRange` object for buffering.\n *\n * @return {TimeRange}\n * The time range object that was created.\n */\n\n\n Tech.prototype.buffered = function buffered() {\n return createTimeRanges(0, 0);\n };\n\n /**\n * Get the percentage of the current video that is currently buffered.\n *\n * @return {number}\n * A number from 0 to 1 that represents the decimal percentage of the\n * video that is buffered.\n *\n */\n\n\n Tech.prototype.bufferedPercent = function bufferedPercent$$1() {\n return bufferedPercent(this.buffered(), this.duration_);\n };\n\n /**\n * Turn off the polyfill for `progress` events that was created in\n * {@link Tech#manualProgressOn}\n * Stop manually tracking progress events by clearing the interval that was set in\n * {@link Tech#trackProgress}.\n */\n\n\n Tech.prototype.stopTrackingProgress = function stopTrackingProgress() {\n this.clearInterval(this.progressInterval);\n };\n\n /**\n * Polyfill the `timeupdate` event for browsers that don't support it.\n *\n * @see {@link Tech#trackCurrentTime}\n */\n\n\n Tech.prototype.manualTimeUpdatesOn = function manualTimeUpdatesOn() {\n this.manualTimeUpdates = true;\n\n this.on('play', this.trackCurrentTime);\n this.on('pause', this.stopTrackingCurrentTime);\n };\n\n /**\n * Turn off the polyfill for `timeupdate` events that was created in\n * {@link Tech#manualTimeUpdatesOn}\n */\n\n\n Tech.prototype.manualTimeUpdatesOff = function manualTimeUpdatesOff() {\n this.manualTimeUpdates = false;\n this.stopTrackingCurrentTime();\n this.off('play', this.trackCurrentTime);\n this.off('pause', this.stopTrackingCurrentTime);\n };\n\n /**\n * Sets up an interval function to track current time and trigger `timeupdate` every\n * 250 milliseconds.\n *\n * @listens Tech#play\n * @triggers Tech#timeupdate\n */\n\n\n Tech.prototype.trackCurrentTime = function trackCurrentTime() {\n if (this.currentTimeInterval) {\n this.stopTrackingCurrentTime();\n }\n this.currentTimeInterval = this.setInterval(function () {\n /**\n * Triggered at an interval of 250ms to indicated that time is passing in the video.\n *\n * @event Tech#timeupdate\n * @type {EventTarget~Event}\n */\n this.trigger({ type: 'timeupdate', target: this, manuallyTriggered: true });\n\n // 42 = 24 fps // 250 is what Webkit uses // FF uses 15\n }, 250);\n };\n\n /**\n * Stop the interval function created in {@link Tech#trackCurrentTime} so that the\n * `timeupdate` event is no longer triggered.\n *\n * @listens {Tech#pause}\n */\n\n\n Tech.prototype.stopTrackingCurrentTime = function stopTrackingCurrentTime() {\n this.clearInterval(this.currentTimeInterval);\n\n // #1002 - if the video ends right before the next timeupdate would happen,\n // the progress bar won't make it all the way to the end\n this.trigger({ type: 'timeupdate', target: this, manuallyTriggered: true });\n };\n\n /**\n * Turn off all event polyfills, clear the `Tech`s {@link AudioTrackList},\n * {@link VideoTrackList}, and {@link TextTrackList}, and dispose of this Tech.\n *\n * @fires Component#dispose\n */\n\n\n Tech.prototype.dispose = function dispose() {\n\n // clear out all tracks because we can't reuse them between techs\n this.clearTracks(NORMAL.names);\n\n // Turn off any manual progress or timeupdate tracking\n if (this.manualProgress) {\n this.manualProgressOff();\n }\n\n if (this.manualTimeUpdates) {\n this.manualTimeUpdatesOff();\n }\n\n _Component.prototype.dispose.call(this);\n };\n\n /**\n * Clear out a single `TrackList` or an array of `TrackLists` given their names.\n *\n * > Note: Techs without source handlers should call this between sources for `video`\n * & `audio` tracks. You don't want to use them between tracks!\n *\n * @param {string[]|string} types\n * TrackList names to clear, valid names are `video`, `audio`, and\n * `text`.\n */\n\n\n Tech.prototype.clearTracks = function clearTracks(types) {\n var _this2 = this;\n\n types = [].concat(types);\n // clear out all tracks because we can't reuse them between techs\n types.forEach(function (type) {\n var list = _this2[type + 'Tracks']() || [];\n var i = list.length;\n\n while (i--) {\n var track = list[i];\n\n if (type === 'text') {\n _this2.removeRemoteTextTrack(track);\n }\n list.removeTrack(track);\n }\n });\n };\n\n /**\n * Remove any TextTracks added via addRemoteTextTrack that are\n * flagged for automatic garbage collection\n */\n\n\n Tech.prototype.cleanupAutoTextTracks = function cleanupAutoTextTracks() {\n var list = this.autoRemoteTextTracks_ || [];\n var i = list.length;\n\n while (i--) {\n var track = list[i];\n\n this.removeRemoteTextTrack(track);\n }\n };\n\n /**\n * Reset the tech, which will removes all sources and reset the internal readyState.\n *\n * @abstract\n */\n\n\n Tech.prototype.reset = function reset() {};\n\n /**\n * Get or set an error on the Tech.\n *\n * @param {MediaError} [err]\n * Error to set on the Tech\n *\n * @return {MediaError|null}\n * The current error object on the tech, or null if there isn't one.\n */\n\n\n Tech.prototype.error = function error(err) {\n if (err !== undefined) {\n this.error_ = new MediaError(err);\n this.trigger('error');\n }\n return this.error_;\n };\n\n /**\n * Returns the `TimeRange`s that have been played through for the current source.\n *\n * > NOTE: This implementation is incomplete. It does not track the played `TimeRange`.\n * It only checks wether the source has played at all or not.\n *\n * @return {TimeRange}\n * - A single time range if this video has played\n * - An empty set of ranges if not.\n */\n\n\n Tech.prototype.played = function played() {\n if (this.hasStarted_) {\n return createTimeRanges(0, 0);\n }\n return createTimeRanges();\n };\n\n /**\n * Causes a manual time update to occur if {@link Tech#manualTimeUpdatesOn} was\n * previously called.\n *\n * @fires Tech#timeupdate\n */\n\n\n Tech.prototype.setCurrentTime = function setCurrentTime() {\n // improve the accuracy of manual timeupdates\n if (this.manualTimeUpdates) {\n /**\n * A manual `timeupdate` event.\n *\n * @event Tech#timeupdate\n * @type {EventTarget~Event}\n */\n this.trigger({ type: 'timeupdate', target: this, manuallyTriggered: true });\n }\n };\n\n /**\n * Turn on listeners for {@link VideoTrackList}, {@link {AudioTrackList}, and\n * {@link TextTrackList} events.\n *\n * This adds {@link EventTarget~EventListeners} for `addtrack`, and `removetrack`.\n *\n * @fires Tech#audiotrackchange\n * @fires Tech#videotrackchange\n * @fires Tech#texttrackchange\n */\n\n\n Tech.prototype.initTrackListeners = function initTrackListeners() {\n var _this3 = this;\n\n /**\n * Triggered when tracks are added or removed on the Tech {@link AudioTrackList}\n *\n * @event Tech#audiotrackchange\n * @type {EventTarget~Event}\n */\n\n /**\n * Triggered when tracks are added or removed on the Tech {@link VideoTrackList}\n *\n * @event Tech#videotrackchange\n * @type {EventTarget~Event}\n */\n\n /**\n * Triggered when tracks are added or removed on the Tech {@link TextTrackList}\n *\n * @event Tech#texttrackchange\n * @type {EventTarget~Event}\n */\n NORMAL.names.forEach(function (name) {\n var props = NORMAL[name];\n var trackListChanges = function trackListChanges() {\n _this3.trigger(name + 'trackchange');\n };\n\n var tracks = _this3[props.getterName]();\n\n tracks.addEventListener('removetrack', trackListChanges);\n tracks.addEventListener('addtrack', trackListChanges);\n\n _this3.on('dispose', function () {\n tracks.removeEventListener('removetrack', trackListChanges);\n tracks.removeEventListener('addtrack', trackListChanges);\n });\n });\n };\n\n /**\n * Emulate TextTracks using vtt.js if necessary\n *\n * @fires Tech#vttjsloaded\n * @fires Tech#vttjserror\n */\n\n\n Tech.prototype.addWebVttScript_ = function addWebVttScript_() {\n var _this4 = this;\n\n if (window_1.WebVTT) {\n return;\n }\n\n // Initially, Tech.el_ is a child of a dummy-div wait until the Component system\n // signals that the Tech is ready at which point Tech.el_ is part of the DOM\n // before inserting the WebVTT script\n if (document_1.body.contains(this.el())) {\n\n // load via require if available and vtt.js script location was not passed in\n // as an option. novtt builds will turn the above require call into an empty object\n // which will cause this if check to always fail.\n if (!this.options_['vtt.js'] && isPlain(browserIndex) && Object.keys(browserIndex).length > 0) {\n this.trigger('vttjsloaded');\n return;\n }\n\n // load vtt.js via the script location option or the cdn of no location was\n // passed in\n var script = document_1.createElement('script');\n\n script.src = this.options_['vtt.js'] || 'https://vjs.zencdn.net/vttjs/0.12.4/vtt.min.js';\n script.onload = function () {\n /**\n * Fired when vtt.js is loaded.\n *\n * @event Tech#vttjsloaded\n * @type {EventTarget~Event}\n */\n _this4.trigger('vttjsloaded');\n };\n script.onerror = function () {\n /**\n * Fired when vtt.js was not loaded due to an error\n *\n * @event Tech#vttjsloaded\n * @type {EventTarget~Event}\n */\n _this4.trigger('vttjserror');\n };\n this.on('dispose', function () {\n script.onload = null;\n script.onerror = null;\n });\n // but have not loaded yet and we set it to true before the inject so that\n // we don't overwrite the injected window.WebVTT if it loads right away\n window_1.WebVTT = true;\n this.el().parentNode.appendChild(script);\n } else {\n this.ready(this.addWebVttScript_);\n }\n };\n\n /**\n * Emulate texttracks\n *\n */\n\n\n Tech.prototype.emulateTextTracks = function emulateTextTracks() {\n var _this5 = this;\n\n var tracks = this.textTracks();\n var remoteTracks = this.remoteTextTracks();\n var handleAddTrack = function handleAddTrack(e) {\n return tracks.addTrack(e.track);\n };\n var handleRemoveTrack = function handleRemoveTrack(e) {\n return tracks.removeTrack(e.track);\n };\n\n remoteTracks.on('addtrack', handleAddTrack);\n remoteTracks.on('removetrack', handleRemoveTrack);\n\n this.addWebVttScript_();\n\n var updateDisplay = function updateDisplay() {\n return _this5.trigger('texttrackchange');\n };\n\n var textTracksChanges = function textTracksChanges() {\n updateDisplay();\n\n for (var i = 0; i < tracks.length; i++) {\n var track = tracks[i];\n\n track.removeEventListener('cuechange', updateDisplay);\n if (track.mode === 'showing') {\n track.addEventListener('cuechange', updateDisplay);\n }\n }\n };\n\n textTracksChanges();\n tracks.addEventListener('change', textTracksChanges);\n tracks.addEventListener('addtrack', textTracksChanges);\n tracks.addEventListener('removetrack', textTracksChanges);\n\n this.on('dispose', function () {\n remoteTracks.off('addtrack', handleAddTrack);\n remoteTracks.off('removetrack', handleRemoveTrack);\n tracks.removeEventListener('change', textTracksChanges);\n tracks.removeEventListener('addtrack', textTracksChanges);\n tracks.removeEventListener('removetrack', textTracksChanges);\n\n for (var i = 0; i < tracks.length; i++) {\n var track = tracks[i];\n\n track.removeEventListener('cuechange', updateDisplay);\n }\n });\n };\n\n /**\n * Create and returns a remote {@link TextTrack} object.\n *\n * @param {string} kind\n * `TextTrack` kind (subtitles, captions, descriptions, chapters, or metadata)\n *\n * @param {string} [label]\n * Label to identify the text track\n *\n * @param {string} [language]\n * Two letter language abbreviation\n *\n * @return {TextTrack}\n * The TextTrack that gets created.\n */\n\n\n Tech.prototype.addTextTrack = function addTextTrack(kind, label, language) {\n if (!kind) {\n throw new Error('TextTrack kind is required but was not provided');\n }\n\n return createTrackHelper(this, kind, label, language);\n };\n\n /**\n * Create an emulated TextTrack for use by addRemoteTextTrack\n *\n * This is intended to be overridden by classes that inherit from\n * Tech in order to create native or custom TextTracks.\n *\n * @param {Object} options\n * The object should contain the options to initialize the TextTrack with.\n *\n * @param {string} [options.kind]\n * `TextTrack` kind (subtitles, captions, descriptions, chapters, or metadata).\n *\n * @param {string} [options.label].\n * Label to identify the text track\n *\n * @param {string} [options.language]\n * Two letter language abbreviation.\n *\n * @return {HTMLTrackElement}\n * The track element that gets created.\n */\n\n\n Tech.prototype.createRemoteTextTrack = function createRemoteTextTrack(options) {\n var track = mergeOptions(options, {\n tech: this\n });\n\n return new REMOTE.remoteTextEl.TrackClass(track);\n };\n\n /**\n * Creates a remote text track object and returns an html track element.\n *\n * > Note: This can be an emulated {@link HTMLTrackElement} or a native one.\n *\n * @param {Object} options\n * See {@link Tech#createRemoteTextTrack} for more detailed properties.\n *\n * @param {boolean} [manualCleanup=true]\n * - When false: the TextTrack will be automatically removed from the video\n * element whenever the source changes\n * - When True: The TextTrack will have to be cleaned up manually\n *\n * @return {HTMLTrackElement}\n * An Html Track Element.\n *\n * @deprecated The default functionality for this function will be equivalent\n * to \"manualCleanup=false\" in the future. The manualCleanup parameter will\n * also be removed.\n */\n\n\n Tech.prototype.addRemoteTextTrack = function addRemoteTextTrack() {\n var _this6 = this;\n\n var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n var manualCleanup = arguments[1];\n\n var htmlTrackElement = this.createRemoteTextTrack(options);\n\n if (manualCleanup !== true && manualCleanup !== false) {\n // deprecation warning\n log$1.warn('Calling addRemoteTextTrack without explicitly setting the \"manualCleanup\" parameter to `true` is deprecated and default to `false` in future version of video.js');\n manualCleanup = true;\n }\n\n // store HTMLTrackElement and TextTrack to remote list\n this.remoteTextTrackEls().addTrackElement_(htmlTrackElement);\n this.remoteTextTracks().addTrack(htmlTrackElement.track);\n\n if (manualCleanup !== true) {\n // create the TextTrackList if it doesn't exist\n this.ready(function () {\n return _this6.autoRemoteTextTracks_.addTrack(htmlTrackElement.track);\n });\n }\n\n return htmlTrackElement;\n };\n\n /**\n * Remove a remote text track from the remote `TextTrackList`.\n *\n * @param {TextTrack} track\n * `TextTrack` to remove from the `TextTrackList`\n */\n\n\n Tech.prototype.removeRemoteTextTrack = function removeRemoteTextTrack(track) {\n var trackElement = this.remoteTextTrackEls().getTrackElementByTrack_(track);\n\n // remove HTMLTrackElement and TextTrack from remote list\n this.remoteTextTrackEls().removeTrackElement_(trackElement);\n this.remoteTextTracks().removeTrack(track);\n this.autoRemoteTextTracks_.removeTrack(track);\n };\n\n /**\n * Gets available media playback quality metrics as specified by the W3C's Media\n * Playback Quality API.\n *\n * @see [Spec]{@link https://wicg.github.io/media-playback-quality}\n *\n * @return {Object}\n * An object with supported media playback quality metrics\n *\n * @abstract\n */\n\n\n Tech.prototype.getVideoPlaybackQuality = function getVideoPlaybackQuality() {\n return {};\n };\n\n /**\n * A method to set a poster from a `Tech`.\n *\n * @abstract\n */\n\n\n Tech.prototype.setPoster = function setPoster() {};\n\n /**\n * A method to check for the presence of the 'playsinine' <video> attribute.\n *\n * @abstract\n */\n\n\n Tech.prototype.playsinline = function playsinline() {};\n\n /**\n * A method to set or unset the 'playsinine' <video> attribute.\n *\n * @abstract\n */\n\n\n Tech.prototype.setPlaysinline = function setPlaysinline() {};\n\n /*\n * Check if the tech can support the given mime-type.\n *\n * The base tech does not support any type, but source handlers might\n * overwrite this.\n *\n * @param {string} type\n * The mimetype to check for support\n *\n * @return {string}\n * 'probably', 'maybe', or empty string\n *\n * @see [Spec]{@link https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement/canPlayType}\n *\n * @abstract\n */\n\n\n Tech.prototype.canPlayType = function canPlayType() {\n return '';\n };\n\n /**\n * Check if the type is supported by this tech.\n *\n * The base tech does not support any type, but source handlers might\n * overwrite this.\n *\n * @param {string} type\n * The media type to check\n * @return {string} Returns the native video element's response\n */\n\n\n Tech.canPlayType = function canPlayType() {\n return '';\n };\n\n /**\n * Check if the tech can support the given source\n * @param {Object} srcObj\n * The source object\n * @param {Object} options\n * The options passed to the tech\n * @return {string} 'probably', 'maybe', or '' (empty string)\n */\n\n\n Tech.canPlaySource = function canPlaySource(srcObj, options) {\n return Tech.canPlayType(srcObj.type);\n };\n\n /*\n * Return whether the argument is a Tech or not.\n * Can be passed either a Class like `Html5` or a instance like `player.tech_`\n *\n * @param {Object} component\n * The item to check\n *\n * @return {boolean}\n * Whether it is a tech or not\n * - True if it is a tech\n * - False if it is not\n */\n\n\n Tech.isTech = function isTech(component) {\n return component.prototype instanceof Tech || component instanceof Tech || component === Tech;\n };\n\n /**\n * Registers a `Tech` into a shared list for videojs.\n *\n * @param {string} name\n * Name of the `Tech` to register.\n *\n * @param {Object} tech\n * The `Tech` class to register.\n */\n\n\n Tech.registerTech = function registerTech(name, tech) {\n if (!Tech.techs_) {\n Tech.techs_ = {};\n }\n\n if (!Tech.isTech(tech)) {\n throw new Error('Tech ' + name + ' must be a Tech');\n }\n\n if (!Tech.canPlayType) {\n throw new Error('Techs must have a static canPlayType method on them');\n }\n if (!Tech.canPlaySource) {\n throw new Error('Techs must have a static canPlaySource method on them');\n }\n\n name = toTitleCase(name);\n\n Tech.techs_[name] = tech;\n if (name !== 'Tech') {\n // camel case the techName for use in techOrder\n Tech.defaultTechOrder_.push(name);\n }\n return tech;\n };\n\n /**\n * Get a `Tech` from the shared list by name.\n *\n * @param {string} name\n * `camelCase` or `TitleCase` name of the Tech to get\n *\n * @return {Tech|undefined}\n * The `Tech` or undefined if there was no tech with the name requsted.\n */\n\n\n Tech.getTech = function getTech(name) {\n if (!name) {\n return;\n }\n\n name = toTitleCase(name);\n\n if (Tech.techs_ && Tech.techs_[name]) {\n return Tech.techs_[name];\n }\n\n if (window_1 && window_1.videojs && window_1.videojs[name]) {\n log$1.warn('The ' + name + ' tech was added to the videojs object when it should be registered using videojs.registerTech(name, tech)');\n return window_1.videojs[name];\n }\n };\n\n return Tech;\n}(Component);\n\n/**\n * Get the {@link VideoTrackList}\n *\n * @returns {VideoTrackList}\n * @method Tech.prototype.videoTracks\n */\n\n/**\n * Get the {@link AudioTrackList}\n *\n * @returns {AudioTrackList}\n * @method Tech.prototype.audioTracks\n */\n\n/**\n * Get the {@link TextTrackList}\n *\n * @returns {TextTrackList}\n * @method Tech.prototype.textTracks\n */\n\n/**\n * Get the remote element {@link TextTrackList}\n *\n * @returns {TextTrackList}\n * @method Tech.prototype.remoteTextTracks\n */\n\n/**\n * Get the remote element {@link HtmlTrackElementList}\n *\n * @returns {HtmlTrackElementList}\n * @method Tech.prototype.remoteTextTrackEls\n */\n\nALL.names.forEach(function (name) {\n var props = ALL[name];\n\n Tech.prototype[props.getterName] = function () {\n this[props.privateName] = this[props.privateName] || new props.ListClass();\n return this[props.privateName];\n };\n});\n\n/**\n * List of associated text tracks\n *\n * @type {TextTrackList}\n * @private\n * @property Tech#textTracks_\n */\n\n/**\n * List of associated audio tracks.\n *\n * @type {AudioTrackList}\n * @private\n * @property Tech#audioTracks_\n */\n\n/**\n * List of associated video tracks.\n *\n * @type {VideoTrackList}\n * @private\n * @property Tech#videoTracks_\n */\n\n/**\n * Boolean indicating wether the `Tech` supports volume control.\n *\n * @type {boolean}\n * @default\n */\nTech.prototype.featuresVolumeControl = true;\n\n/**\n * Boolean indicating wether the `Tech` support fullscreen resize control.\n * Resizing plugins using request fullscreen reloads the plugin\n *\n * @type {boolean}\n * @default\n */\nTech.prototype.featuresFullscreenResize = false;\n\n/**\n * Boolean indicating wether the `Tech` supports changing the speed at which the video\n * plays. Examples:\n * - Set player to play 2x (twice) as fast\n * - Set player to play 0.5x (half) as fast\n *\n * @type {boolean}\n * @default\n */\nTech.prototype.featuresPlaybackRate = false;\n\n/**\n * Boolean indicating wether the `Tech` supports the `progress` event. This is currently\n * not triggered by video-js-swf. This will be used to determine if\n * {@link Tech#manualProgressOn} should be called.\n *\n * @type {boolean}\n * @default\n */\nTech.prototype.featuresProgressEvents = false;\n\n/**\n * Boolean indicating wether the `Tech` supports the `timeupdate` event. This is currently\n * not triggered by video-js-swf. This will be used to determine if\n * {@link Tech#manualTimeUpdates} should be called.\n *\n * @type {boolean}\n * @default\n */\nTech.prototype.featuresTimeupdateEvents = false;\n\n/**\n * Boolean indicating wether the `Tech` supports the native `TextTrack`s.\n * This will help us integrate with native `TextTrack`s if the browser supports them.\n *\n * @type {boolean}\n * @default\n */\nTech.prototype.featuresNativeTextTracks = false;\n\n/**\n * A functional mixin for techs that want to use the Source Handler pattern.\n * Source handlers are scripts for handling specific formats.\n * The source handler pattern is used for adaptive formats (HLS, DASH) that\n * manually load video data and feed it into a Source Buffer (Media Source Extensions)\n * Example: `Tech.withSourceHandlers.call(MyTech);`\n *\n * @param {Tech} _Tech\n * The tech to add source handler functions to.\n *\n * @mixes Tech~SourceHandlerAdditions\n */\nTech.withSourceHandlers = function (_Tech) {\n\n /**\n * Register a source handler\n *\n * @param {Function} handler\n * The source handler class\n *\n * @param {number} [index]\n * Register it at the following index\n */\n _Tech.registerSourceHandler = function (handler, index) {\n var handlers = _Tech.sourceHandlers;\n\n if (!handlers) {\n handlers = _Tech.sourceHandlers = [];\n }\n\n if (index === undefined) {\n // add to the end of the list\n index = handlers.length;\n }\n\n handlers.splice(index, 0, handler);\n };\n\n /**\n * Check if the tech can support the given type. Also checks the\n * Techs sourceHandlers.\n *\n * @param {string} type\n * The mimetype to check.\n *\n * @return {string}\n * 'probably', 'maybe', or '' (empty string)\n */\n _Tech.canPlayType = function (type) {\n var handlers = _Tech.sourceHandlers || [];\n var can = void 0;\n\n for (var i = 0; i < handlers.length; i++) {\n can = handlers[i].canPlayType(type);\n\n if (can) {\n return can;\n }\n }\n\n return '';\n };\n\n /**\n * Returns the first source handler that supports the source.\n *\n * TODO: Answer question: should 'probably' be prioritized over 'maybe'\n *\n * @param {Tech~SourceObject} source\n * The source object\n *\n * @param {Object} options\n * The options passed to the tech\n *\n * @return {SourceHandler|null}\n * The first source handler that supports the source or null if\n * no SourceHandler supports the source\n */\n _Tech.selectSourceHandler = function (source, options) {\n var handlers = _Tech.sourceHandlers || [];\n var can = void 0;\n\n for (var i = 0; i < handlers.length; i++) {\n can = handlers[i].canHandleSource(source, options);\n\n if (can) {\n return handlers[i];\n }\n }\n\n return null;\n };\n\n /**\n * Check if the tech can support the given source.\n *\n * @param {Tech~SourceObject} srcObj\n * The source object\n *\n * @param {Object} options\n * The options passed to the tech\n *\n * @return {string}\n * 'probably', 'maybe', or '' (empty string)\n */\n _Tech.canPlaySource = function (srcObj, options) {\n var sh = _Tech.selectSourceHandler(srcObj, options);\n\n if (sh) {\n return sh.canHandleSource(srcObj, options);\n }\n\n return '';\n };\n\n /**\n * When using a source handler, prefer its implementation of\n * any function normally provided by the tech.\n */\n var deferrable = ['seekable', 'duration'];\n\n /**\n * A wrapper around {@link Tech#seekable} that will call a `SourceHandler`s seekable\n * function if it exists, with a fallback to the Techs seekable function.\n *\n * @method _Tech.seekable\n */\n\n /**\n * A wrapper around {@link Tech#duration} that will call a `SourceHandler`s duration\n * function if it exists, otherwise it will fallback to the techs duration function.\n *\n * @method _Tech.duration\n */\n\n deferrable.forEach(function (fnName) {\n var originalFn = this[fnName];\n\n if (typeof originalFn !== 'function') {\n return;\n }\n\n this[fnName] = function () {\n if (this.sourceHandler_ && this.sourceHandler_[fnName]) {\n return this.sourceHandler_[fnName].apply(this.sourceHandler_, arguments);\n }\n return originalFn.apply(this, arguments);\n };\n }, _Tech.prototype);\n\n /**\n * Create a function for setting the source using a source object\n * and source handlers.\n * Should never be called unless a source handler was found.\n *\n * @param {Tech~SourceObject} source\n * A source object with src and type keys\n */\n _Tech.prototype.setSource = function (source) {\n var sh = _Tech.selectSourceHandler(source, this.options_);\n\n if (!sh) {\n // Fall back to a native source hander when unsupported sources are\n // deliberately set\n if (_Tech.nativeSourceHandler) {\n sh = _Tech.nativeSourceHandler;\n } else {\n log$1.error('No source hander found for the current source.');\n }\n }\n\n // Dispose any existing source handler\n this.disposeSourceHandler();\n this.off('dispose', this.disposeSourceHandler);\n\n if (sh !== _Tech.nativeSourceHandler) {\n this.currentSource_ = source;\n }\n\n this.sourceHandler_ = sh.handleSource(source, this, this.options_);\n this.on('dispose', this.disposeSourceHandler);\n };\n\n /**\n * Clean up any existing SourceHandlers and listeners when the Tech is disposed.\n *\n * @listens Tech#dispose\n */\n _Tech.prototype.disposeSourceHandler = function () {\n // if we have a source and get another one\n // then we are loading something new\n // than clear all of our current tracks\n if (this.currentSource_) {\n this.clearTracks(['audio', 'video']);\n this.currentSource_ = null;\n }\n\n // always clean up auto-text tracks\n this.cleanupAutoTextTracks();\n\n if (this.sourceHandler_) {\n\n if (this.sourceHandler_.dispose) {\n this.sourceHandler_.dispose();\n }\n\n this.sourceHandler_ = null;\n }\n };\n};\n\n// The base Tech class needs to be registered as a Component. It is the only\n// Tech that can be registered as a Component.\nComponent.registerComponent('Tech', Tech);\nTech.registerTech('Tech', Tech);\n\n/**\n * A list of techs that should be added to techOrder on Players\n *\n * @private\n */\nTech.defaultTechOrder_ = [];\n\nvar middlewares = {};\nvar middlewareInstances = {};\n\nvar TERMINATOR = {};\n\nfunction use(type, middleware) {\n middlewares[type] = middlewares[type] || [];\n middlewares[type].push(middleware);\n}\n\n\n\nfunction setSource(player, src, next) {\n player.setTimeout(function () {\n return setSourceHelper(src, middlewares[src.type], next, player);\n }, 1);\n}\n\nfunction setTech(middleware, tech) {\n middleware.forEach(function (mw) {\n return mw.setTech && mw.setTech(tech);\n });\n}\n\n/**\n * Calls a getter on the tech first, through each middleware\n * from right to left to the player.\n */\nfunction get$1(middleware, tech, method) {\n return middleware.reduceRight(middlewareIterator(method), tech[method]());\n}\n\n/**\n * Takes the argument given to the player and calls the setter method on each\n * middlware from left to right to the tech.\n */\nfunction set$1(middleware, tech, method, arg) {\n return tech[method](middleware.reduce(middlewareIterator(method), arg));\n}\n\n/**\n * Takes the argument given to the player and calls the `call` version of the method\n * on each middleware from left to right.\n * Then, call the passed in method on the tech and return the result unchanged\n * back to the player, through middleware, this time from right to left.\n */\nfunction mediate(middleware, tech, method) {\n var arg = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : null;\n\n var callMethod = 'call' + toTitleCase(method);\n var middlewareValue = middleware.reduce(middlewareIterator(callMethod), arg);\n var terminated = middlewareValue === TERMINATOR;\n var returnValue = terminated ? null : tech[method](middlewareValue);\n\n executeRight(middleware, method, returnValue, terminated);\n\n return returnValue;\n}\n\nvar allowedGetters = {\n buffered: 1,\n currentTime: 1,\n duration: 1,\n seekable: 1,\n played: 1,\n paused: 1\n};\n\nvar allowedSetters = {\n setCurrentTime: 1\n};\n\nvar allowedMediators = {\n play: 1,\n pause: 1\n};\n\nfunction middlewareIterator(method) {\n return function (value, mw) {\n // if the previous middleware terminated, pass along the termination\n if (value === TERMINATOR) {\n return TERMINATOR;\n }\n\n if (mw[method]) {\n return mw[method](value);\n }\n\n return value;\n };\n}\n\nfunction executeRight(mws, method, value, terminated) {\n for (var i = mws.length - 1; i >= 0; i--) {\n var mw = mws[i];\n\n if (mw[method]) {\n mw[method](terminated, value);\n }\n }\n}\n\nfunction clearCacheForPlayer(player) {\n middlewareInstances[player.id()] = null;\n}\n\n/**\n * {\n * [playerId]: [[mwFactory, mwInstance], ...]\n * }\n */\nfunction getOrCreateFactory(player, mwFactory) {\n var mws = middlewareInstances[player.id()];\n var mw = null;\n\n if (mws === undefined || mws === null) {\n mw = mwFactory(player);\n middlewareInstances[player.id()] = [[mwFactory, mw]];\n return mw;\n }\n\n for (var i = 0; i < mws.length; i++) {\n var _mws$i = mws[i],\n mwf = _mws$i[0],\n mwi = _mws$i[1];\n\n\n if (mwf !== mwFactory) {\n continue;\n }\n\n mw = mwi;\n }\n\n if (mw === null) {\n mw = mwFactory(player);\n mws.push([mwFactory, mw]);\n }\n\n return mw;\n}\n\nfunction setSourceHelper() {\n var src = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n var middleware = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : [];\n var next = arguments[2];\n var player = arguments[3];\n var acc = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : [];\n var lastRun = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : false;\n var mwFactory = middleware[0],\n mwrest = middleware.slice(1);\n\n // if mwFactory is a string, then we're at a fork in the road\n\n if (typeof mwFactory === 'string') {\n setSourceHelper(src, middlewares[mwFactory], next, player, acc, lastRun);\n\n // if we have an mwFactory, call it with the player to get the mw,\n // then call the mw's setSource method\n } else if (mwFactory) {\n var mw = getOrCreateFactory(player, mwFactory);\n\n mw.setSource(assign({}, src), function (err, _src) {\n\n // something happened, try the next middleware on the current level\n // make sure to use the old src\n if (err) {\n return setSourceHelper(src, mwrest, next, player, acc, lastRun);\n }\n\n // we've succeeded, now we need to go deeper\n acc.push(mw);\n\n // if it's the same type, continue down the current chain\n // otherwise, we want to go down the new chain\n setSourceHelper(_src, src.type === _src.type ? mwrest : middlewares[_src.type], next, player, acc, lastRun);\n });\n } else if (mwrest.length) {\n setSourceHelper(src, mwrest, next, player, acc, lastRun);\n } else if (lastRun) {\n next(src, acc);\n } else {\n setSourceHelper(src, middlewares['*'], next, player, acc, true);\n }\n}\n\n/**\n * @module filter-source\n */\n/**\n * Filter out single bad source objects or multiple source objects in an\n * array. Also flattens nested source object arrays into a 1 dimensional\n * array of source objects.\n *\n * @param {Tech~SourceObject|Tech~SourceObject[]} src\n * The src object to filter\n *\n * @return {Tech~SourceObject[]}\n * An array of sourceobjects containing only valid sources\n *\n * @private\n */\nvar filterSource = function filterSource(src) {\n // traverse array\n if (Array.isArray(src)) {\n var newsrc = [];\n\n src.forEach(function (srcobj) {\n srcobj = filterSource(srcobj);\n\n if (Array.isArray(srcobj)) {\n newsrc = newsrc.concat(srcobj);\n } else if (isObject(srcobj)) {\n newsrc.push(srcobj);\n }\n });\n\n src = newsrc;\n } else if (typeof src === 'string' && src.trim()) {\n // convert string into object\n src = [{ src: src }];\n } else if (isObject(src) && typeof src.src === 'string' && src.src && src.src.trim()) {\n // src is already valid\n src = [src];\n } else {\n // invalid source, turn it into an empty array\n src = [];\n }\n\n return src;\n};\n\n/**\n * @file loader.js\n */\n/**\n * The `MediaLoader` is the `Component` that decides which playback technology to load\n * when a player is initialized.\n *\n * @extends Component\n */\n\nvar MediaLoader = function (_Component) {\n inherits(MediaLoader, _Component);\n\n /**\n * Create an instance of this class.\n *\n * @param {Player} player\n * The `Player` that this class should attach to.\n *\n * @param {Object} [options]\n * The key/value stroe of player options.\n *\n * @param {Component~ReadyCallback} [ready]\n * The function that is run when this component is ready.\n */\n function MediaLoader(player, options, ready) {\n classCallCheck(this, MediaLoader);\n\n // MediaLoader has no element\n var options_ = mergeOptions({ createEl: false }, options);\n\n // If there are no sources when the player is initialized,\n // load the first supported playback technology.\n\n var _this = possibleConstructorReturn(this, _Component.call(this, player, options_, ready));\n\n if (!options.playerOptions.sources || options.playerOptions.sources.length === 0) {\n for (var i = 0, j = options.playerOptions.techOrder; i < j.length; i++) {\n var techName = toTitleCase(j[i]);\n var tech = Tech.getTech(techName);\n\n // Support old behavior of techs being registered as components.\n // Remove once that deprecated behavior is removed.\n if (!techName) {\n tech = Component.getComponent(techName);\n }\n\n // Check if the browser supports this technology\n if (tech && tech.isSupported()) {\n player.loadTech_(techName);\n break;\n }\n }\n } else {\n // Loop through playback technologies (HTML5, Flash) and check for support.\n // Then load the best source.\n // A few assumptions here:\n // All playback technologies respect preload false.\n player.src(options.playerOptions.sources);\n }\n return _this;\n }\n\n return MediaLoader;\n}(Component);\n\nComponent.registerComponent('MediaLoader', MediaLoader);\n\n/**\n * @file button.js\n */\n/**\n * Clickable Component which is clickable or keyboard actionable,\n * but is not a native HTML button.\n *\n * @extends Component\n */\n\nvar ClickableComponent = function (_Component) {\n inherits(ClickableComponent, _Component);\n\n /**\n * Creates an instance of this class.\n *\n * @param {Player} player\n * The `Player` that this class should be attached to.\n *\n * @param {Object} [options]\n * The key/value store of player options.\n */\n function ClickableComponent(player, options) {\n classCallCheck(this, ClickableComponent);\n\n var _this = possibleConstructorReturn(this, _Component.call(this, player, options));\n\n _this.emitTapEvents();\n\n _this.enable();\n return _this;\n }\n\n /**\n * Create the `Component`s DOM element.\n *\n * @param {string} [tag=div]\n * The element's node type.\n *\n * @param {Object} [props={}]\n * An object of properties that should be set on the element.\n *\n * @param {Object} [attributes={}]\n * An object of attributes that should be set on the element.\n *\n * @return {Element}\n * The element that gets created.\n */\n\n\n ClickableComponent.prototype.createEl = function createEl$$1() {\n var tag = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'div';\n var props = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n var attributes = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};\n\n props = assign({\n innerHTML: '<span aria-hidden=\"true\" class=\"vjs-icon-placeholder\"></span>',\n className: this.buildCSSClass(),\n tabIndex: 0\n }, props);\n\n if (tag === 'button') {\n log$1.error('Creating a ClickableComponent with an HTML element of ' + tag + ' is not supported; use a Button instead.');\n }\n\n // Add ARIA attributes for clickable element which is not a native HTML button\n attributes = assign({\n 'role': 'button',\n\n // let the screen reader user know that the text of the element may change\n 'aria-live': 'polite'\n }, attributes);\n\n this.tabIndex_ = props.tabIndex;\n\n var el = _Component.prototype.createEl.call(this, tag, props, attributes);\n\n this.createControlTextEl(el);\n\n return el;\n };\n\n ClickableComponent.prototype.dispose = function dispose() {\n // remove controlTextEl_ on dipose\n this.controlTextEl_ = null;\n\n _Component.prototype.dispose.call(this);\n };\n\n /**\n * Create a control text element on this `Component`\n *\n * @param {Element} [el]\n * Parent element for the control text.\n *\n * @return {Element}\n * The control text element that gets created.\n */\n\n\n ClickableComponent.prototype.createControlTextEl = function createControlTextEl(el) {\n this.controlTextEl_ = createEl('span', {\n className: 'vjs-control-text'\n });\n\n if (el) {\n el.appendChild(this.controlTextEl_);\n }\n\n this.controlText(this.controlText_, el);\n\n return this.controlTextEl_;\n };\n\n /**\n * Get or set the localize text to use for the controls on the `Component`.\n *\n * @param {string} [text]\n * Control text for element.\n *\n * @param {Element} [el=this.el()]\n * Element to set the title on.\n *\n * @return {string}\n * - The control text when getting\n */\n\n\n ClickableComponent.prototype.controlText = function controlText(text) {\n var el = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : this.el();\n\n if (text === undefined) {\n return this.controlText_ || 'Need Text';\n }\n\n var localizedText = this.localize(text);\n\n this.controlText_ = text;\n textContent(this.controlTextEl_, localizedText);\n if (!this.nonIconControl) {\n // Set title attribute if only an icon is shown\n el.setAttribute('title', localizedText);\n }\n };\n\n /**\n * Builds the default DOM `className`.\n *\n * @return {string}\n * The DOM `className` for this object.\n */\n\n\n ClickableComponent.prototype.buildCSSClass = function buildCSSClass() {\n return 'vjs-control vjs-button ' + _Component.prototype.buildCSSClass.call(this);\n };\n\n /**\n * Enable this `Component`s element.\n */\n\n\n ClickableComponent.prototype.enable = function enable() {\n if (!this.enabled_) {\n this.enabled_ = true;\n this.removeClass('vjs-disabled');\n this.el_.setAttribute('aria-disabled', 'false');\n if (typeof this.tabIndex_ !== 'undefined') {\n this.el_.setAttribute('tabIndex', this.tabIndex_);\n }\n this.on(['tap', 'click'], this.handleClick);\n this.on('focus', this.handleFocus);\n this.on('blur', this.handleBlur);\n }\n };\n\n /**\n * Disable this `Component`s element.\n */\n\n\n ClickableComponent.prototype.disable = function disable() {\n this.enabled_ = false;\n this.addClass('vjs-disabled');\n this.el_.setAttribute('aria-disabled', 'true');\n if (typeof this.tabIndex_ !== 'undefined') {\n this.el_.removeAttribute('tabIndex');\n }\n this.off(['tap', 'click'], this.handleClick);\n this.off('focus', this.handleFocus);\n this.off('blur', this.handleBlur);\n };\n\n /**\n * This gets called when a `ClickableComponent` gets:\n * - Clicked (via the `click` event, listening starts in the constructor)\n * - Tapped (via the `tap` event, listening starts in the constructor)\n * - The following things happen in order:\n * 1. {@link ClickableComponent#handleFocus} is called via a `focus` event on the\n * `ClickableComponent`.\n * 2. {@link ClickableComponent#handleFocus} adds a listener for `keydown` on using\n * {@link ClickableComponent#handleKeyPress}.\n * 3. `ClickableComponent` has not had a `blur` event (`blur` means that focus was lost). The user presses\n * the space or enter key.\n * 4. {@link ClickableComponent#handleKeyPress} calls this function with the `keydown`\n * event as a parameter.\n *\n * @param {EventTarget~Event} event\n * The `keydown`, `tap`, or `click` event that caused this function to be\n * called.\n *\n * @listens tap\n * @listens click\n * @abstract\n */\n\n\n ClickableComponent.prototype.handleClick = function handleClick(event) {};\n\n /**\n * This gets called when a `ClickableComponent` gains focus via a `focus` event.\n * Turns on listening for `keydown` events. When they happen it\n * calls `this.handleKeyPress`.\n *\n * @param {EventTarget~Event} event\n * The `focus` event that caused this function to be called.\n *\n * @listens focus\n */\n\n\n ClickableComponent.prototype.handleFocus = function handleFocus(event) {\n on(document_1, 'keydown', bind(this, this.handleKeyPress));\n };\n\n /**\n * Called when this ClickableComponent has focus and a key gets pressed down. By\n * default it will call `this.handleClick` when the key is space or enter.\n *\n * @param {EventTarget~Event} event\n * The `keydown` event that caused this function to be called.\n *\n * @listens keydown\n */\n\n\n ClickableComponent.prototype.handleKeyPress = function handleKeyPress(event) {\n\n // Support Space (32) or Enter (13) key operation to fire a click event\n if (event.which === 32 || event.which === 13) {\n event.preventDefault();\n this.trigger('click');\n } else if (_Component.prototype.handleKeyPress) {\n\n // Pass keypress handling up for unsupported keys\n _Component.prototype.handleKeyPress.call(this, event);\n }\n };\n\n /**\n * Called when a `ClickableComponent` loses focus. Turns off the listener for\n * `keydown` events. Which Stops `this.handleKeyPress` from getting called.\n *\n * @param {EventTarget~Event} event\n * The `blur` event that caused this function to be called.\n *\n * @listens blur\n */\n\n\n ClickableComponent.prototype.handleBlur = function handleBlur(event) {\n off(document_1, 'keydown', bind(this, this.handleKeyPress));\n };\n\n return ClickableComponent;\n}(Component);\n\nComponent.registerComponent('ClickableComponent', ClickableComponent);\n\n/**\n * @file poster-image.js\n */\n/**\n * A `ClickableComponent` that handles showing the poster image for the player.\n *\n * @extends ClickableComponent\n */\n\nvar PosterImage = function (_ClickableComponent) {\n inherits(PosterImage, _ClickableComponent);\n\n /**\n * Create an instance of this class.\n *\n * @param {Player} player\n * The `Player` that this class should attach to.\n *\n * @param {Object} [options]\n * The key/value store of player options.\n */\n function PosterImage(player, options) {\n classCallCheck(this, PosterImage);\n\n var _this = possibleConstructorReturn(this, _ClickableComponent.call(this, player, options));\n\n _this.update();\n player.on('posterchange', bind(_this, _this.update));\n return _this;\n }\n\n /**\n * Clean up and dispose of the `PosterImage`.\n */\n\n\n PosterImage.prototype.dispose = function dispose() {\n this.player().off('posterchange', this.update);\n _ClickableComponent.prototype.dispose.call(this);\n };\n\n /**\n * Create the `PosterImage`s DOM element.\n *\n * @return {Element}\n * The element that gets created.\n */\n\n\n PosterImage.prototype.createEl = function createEl$$1() {\n var el = createEl('div', {\n className: 'vjs-poster',\n\n // Don't want poster to be tabbable.\n tabIndex: -1\n });\n\n // To ensure the poster image resizes while maintaining its original aspect\n // ratio, use a div with `background-size` when available. For browsers that\n // do not support `background-size` (e.g. IE8), fall back on using a regular\n // img element.\n if (!BACKGROUND_SIZE_SUPPORTED) {\n this.fallbackImg_ = createEl('img');\n el.appendChild(this.fallbackImg_);\n }\n\n return el;\n };\n\n /**\n * An {@link EventTarget~EventListener} for {@link Player#posterchange} events.\n *\n * @listens Player#posterchange\n *\n * @param {EventTarget~Event} [event]\n * The `Player#posterchange` event that triggered this function.\n */\n\n\n PosterImage.prototype.update = function update(event) {\n var url = this.player().poster();\n\n this.setSrc(url);\n\n // If there's no poster source we should display:none on this component\n // so it's not still clickable or right-clickable\n if (url) {\n this.show();\n } else {\n this.hide();\n }\n };\n\n /**\n * Set the source of the `PosterImage` depending on the display method.\n *\n * @param {string} url\n * The URL to the source for the `PosterImage`.\n */\n\n\n PosterImage.prototype.setSrc = function setSrc(url) {\n if (this.fallbackImg_) {\n this.fallbackImg_.src = url;\n } else {\n var backgroundImage = '';\n\n // Any falsey values should stay as an empty string, otherwise\n // this will throw an extra error\n if (url) {\n backgroundImage = 'url(\"' + url + '\")';\n }\n\n this.el_.style.backgroundImage = backgroundImage;\n }\n };\n\n /**\n * An {@link EventTarget~EventListener} for clicks on the `PosterImage`. See\n * {@link ClickableComponent#handleClick} for instances where this will be triggered.\n *\n * @listens tap\n * @listens click\n * @listens keydown\n *\n * @param {EventTarget~Event} event\n + The `click`, `tap` or `keydown` event that caused this function to be called.\n */\n\n\n PosterImage.prototype.handleClick = function handleClick(event) {\n // We don't want a click to trigger playback when controls are disabled\n if (!this.player_.controls()) {\n return;\n }\n\n if (this.player_.paused()) {\n this.player_.play();\n } else {\n this.player_.pause();\n }\n };\n\n return PosterImage;\n}(ClickableComponent);\n\nComponent.registerComponent('PosterImage', PosterImage);\n\n/**\n * @file text-track-display.js\n */\nvar darkGray = '#222';\nvar lightGray = '#ccc';\nvar fontMap = {\n monospace: 'monospace',\n sansSerif: 'sans-serif',\n serif: 'serif',\n monospaceSansSerif: '\"Andale Mono\", \"Lucida Console\", monospace',\n monospaceSerif: '\"Courier New\", monospace',\n proportionalSansSerif: 'sans-serif',\n proportionalSerif: 'serif',\n casual: '\"Comic Sans MS\", Impact, fantasy',\n script: '\"Monotype Corsiva\", cursive',\n smallcaps: '\"Andale Mono\", \"Lucida Console\", monospace, sans-serif'\n};\n\n/**\n * Construct an rgba color from a given hex color code.\n *\n * @param {number} color\n * Hex number for color, like #f0e.\n *\n * @param {number} opacity\n * Value for opacity, 0.0 - 1.0.\n *\n * @return {string}\n * The rgba color that was created, like 'rgba(255, 0, 0, 0.3)'.\n *\n * @private\n */\nfunction constructColor(color, opacity) {\n return 'rgba(' +\n // color looks like \"#f0e\"\n parseInt(color[1] + color[1], 16) + ',' + parseInt(color[2] + color[2], 16) + ',' + parseInt(color[3] + color[3], 16) + ',' + opacity + ')';\n}\n\n/**\n * Try to update the style of a DOM element. Some style changes will throw an error,\n * particularly in IE8. Those should be noops.\n *\n * @param {Element} el\n * The DOM element to be styled.\n *\n * @param {string} style\n * The CSS property on the element that should be styled.\n *\n * @param {string} rule\n * The style rule that should be applied to the property.\n *\n * @private\n */\nfunction tryUpdateStyle(el, style, rule) {\n try {\n el.style[style] = rule;\n } catch (e) {\n\n // Satisfies linter.\n return;\n }\n}\n\n/**\n * The component for displaying text track cues.\n *\n * @extends Component\n */\n\nvar TextTrackDisplay = function (_Component) {\n inherits(TextTrackDisplay, _Component);\n\n /**\n * Creates an instance of this class.\n *\n * @param {Player} player\n * The `Player` that this class should be attached to.\n *\n * @param {Object} [options]\n * The key/value store of player options.\n *\n * @param {Component~ReadyCallback} [ready]\n * The function to call when `TextTrackDisplay` is ready.\n */\n function TextTrackDisplay(player, options, ready) {\n classCallCheck(this, TextTrackDisplay);\n\n var _this = possibleConstructorReturn(this, _Component.call(this, player, options, ready));\n\n player.on('loadstart', bind(_this, _this.toggleDisplay));\n player.on('texttrackchange', bind(_this, _this.updateDisplay));\n player.on('loadstart', bind(_this, _this.preselectTrack));\n\n // This used to be called during player init, but was causing an error\n // if a track should show by default and the display hadn't loaded yet.\n // Should probably be moved to an external track loader when we support\n // tracks that don't need a display.\n player.ready(bind(_this, function () {\n if (player.tech_ && player.tech_.featuresNativeTextTracks) {\n this.hide();\n return;\n }\n\n player.on('fullscreenchange', bind(this, this.updateDisplay));\n\n var tracks = this.options_.playerOptions.tracks || [];\n\n for (var i = 0; i < tracks.length; i++) {\n this.player_.addRemoteTextTrack(tracks[i], true);\n }\n\n this.preselectTrack();\n }));\n return _this;\n }\n\n /**\n * Preselect a track following this precedence:\n * - matches the previously selected {@link TextTrack}'s language and kind\n * - matches the previously selected {@link TextTrack}'s language only\n * - is the first default captions track\n * - is the first default descriptions track\n *\n * @listens Player#loadstart\n */\n\n\n TextTrackDisplay.prototype.preselectTrack = function preselectTrack() {\n var modes = { captions: 1, subtitles: 1 };\n var trackList = this.player_.textTracks();\n var userPref = this.player_.cache_.selectedLanguage;\n var firstDesc = void 0;\n var firstCaptions = void 0;\n var preferredTrack = void 0;\n\n for (var i = 0; i < trackList.length; i++) {\n var track = trackList[i];\n\n if (userPref && userPref.enabled && userPref.language === track.language) {\n // Always choose the track that matches both language and kind\n if (track.kind === userPref.kind) {\n preferredTrack = track;\n // or choose the first track that matches language\n } else if (!preferredTrack) {\n preferredTrack = track;\n }\n\n // clear everything if offTextTrackMenuItem was clicked\n } else if (userPref && !userPref.enabled) {\n preferredTrack = null;\n firstDesc = null;\n firstCaptions = null;\n } else if (track['default']) {\n if (track.kind === 'descriptions' && !firstDesc) {\n firstDesc = track;\n } else if (track.kind in modes && !firstCaptions) {\n firstCaptions = track;\n }\n }\n }\n\n // The preferredTrack matches the user preference and takes\n // precendence over all the other tracks.\n // So, display the preferredTrack before the first default track\n // and the subtitles/captions track before the descriptions track\n if (preferredTrack) {\n preferredTrack.mode = 'showing';\n } else if (firstCaptions) {\n firstCaptions.mode = 'showing';\n } else if (firstDesc) {\n firstDesc.mode = 'showing';\n }\n };\n\n /**\n * Turn display of {@link TextTrack}'s from the current state into the other state.\n * There are only two states:\n * - 'shown'\n * - 'hidden'\n *\n * @listens Player#loadstart\n */\n\n\n TextTrackDisplay.prototype.toggleDisplay = function toggleDisplay() {\n if (this.player_.tech_ && this.player_.tech_.featuresNativeTextTracks) {\n this.hide();\n } else {\n this.show();\n }\n };\n\n /**\n * Create the {@link Component}'s DOM element.\n *\n * @return {Element}\n * The element that was created.\n */\n\n\n TextTrackDisplay.prototype.createEl = function createEl() {\n return _Component.prototype.createEl.call(this, 'div', {\n className: 'vjs-text-track-display'\n }, {\n 'aria-live': 'off',\n 'aria-atomic': 'true'\n });\n };\n\n /**\n * Clear all displayed {@link TextTrack}s.\n */\n\n\n TextTrackDisplay.prototype.clearDisplay = function clearDisplay() {\n if (typeof window_1.WebVTT === 'function') {\n window_1.WebVTT.processCues(window_1, [], this.el_);\n }\n };\n\n /**\n * Update the displayed TextTrack when a either a {@link Player#texttrackchange} or\n * a {@link Player#fullscreenchange} is fired.\n *\n * @listens Player#texttrackchange\n * @listens Player#fullscreenchange\n */\n\n\n TextTrackDisplay.prototype.updateDisplay = function updateDisplay() {\n var tracks = this.player_.textTracks();\n\n this.clearDisplay();\n\n // Track display prioritization model: if multiple tracks are 'showing',\n // display the first 'subtitles' or 'captions' track which is 'showing',\n // otherwise display the first 'descriptions' track which is 'showing'\n\n var descriptionsTrack = null;\n var captionsSubtitlesTrack = null;\n var i = tracks.length;\n\n while (i--) {\n var track = tracks[i];\n\n if (track.mode === 'showing') {\n if (track.kind === 'descriptions') {\n descriptionsTrack = track;\n } else {\n captionsSubtitlesTrack = track;\n }\n }\n }\n\n if (captionsSubtitlesTrack) {\n if (this.getAttribute('aria-live') !== 'off') {\n this.setAttribute('aria-live', 'off');\n }\n this.updateForTrack(captionsSubtitlesTrack);\n } else if (descriptionsTrack) {\n if (this.getAttribute('aria-live') !== 'assertive') {\n this.setAttribute('aria-live', 'assertive');\n }\n this.updateForTrack(descriptionsTrack);\n }\n };\n\n /**\n * Add an {@link Texttrack} to to the {@link Tech}s {@link TextTrackList}.\n *\n * @param {TextTrack} track\n * Text track object to be added to the list.\n */\n\n\n TextTrackDisplay.prototype.updateForTrack = function updateForTrack(track) {\n if (typeof window_1.WebVTT !== 'function' || !track.activeCues) {\n return;\n }\n\n var overrides = this.player_.textTrackSettings.getValues();\n var cues = [];\n\n for (var _i = 0; _i < track.activeCues.length; _i++) {\n cues.push(track.activeCues[_i]);\n }\n\n window_1.WebVTT.processCues(window_1, cues, this.el_);\n\n var i = cues.length;\n\n while (i--) {\n var cue = cues[i];\n\n if (!cue) {\n continue;\n }\n\n var cueDiv = cue.displayState;\n\n if (overrides.color) {\n cueDiv.firstChild.style.color = overrides.color;\n }\n if (overrides.textOpacity) {\n tryUpdateStyle(cueDiv.firstChild, 'color', constructColor(overrides.color || '#fff', overrides.textOpacity));\n }\n if (overrides.backgroundColor) {\n cueDiv.firstChild.style.backgroundColor = overrides.backgroundColor;\n }\n if (overrides.backgroundOpacity) {\n tryUpdateStyle(cueDiv.firstChild, 'backgroundColor', constructColor(overrides.backgroundColor || '#000', overrides.backgroundOpacity));\n }\n if (overrides.windowColor) {\n if (overrides.windowOpacity) {\n tryUpdateStyle(cueDiv, 'backgroundColor', constructColor(overrides.windowColor, overrides.windowOpacity));\n } else {\n cueDiv.style.backgroundColor = overrides.windowColor;\n }\n }\n if (overrides.edgeStyle) {\n if (overrides.edgeStyle === 'dropshadow') {\n cueDiv.firstChild.style.textShadow = '2px 2px 3px ' + darkGray + ', 2px 2px 4px ' + darkGray + ', 2px 2px 5px ' + darkGray;\n } else if (overrides.edgeStyle === 'raised') {\n cueDiv.firstChild.style.textShadow = '1px 1px ' + darkGray + ', 2px 2px ' + darkGray + ', 3px 3px ' + darkGray;\n } else if (overrides.edgeStyle === 'depressed') {\n cueDiv.firstChild.style.textShadow = '1px 1px ' + lightGray + ', 0 1px ' + lightGray + ', -1px -1px ' + darkGray + ', 0 -1px ' + darkGray;\n } else if (overrides.edgeStyle === 'uniform') {\n cueDiv.firstChild.style.textShadow = '0 0 4px ' + darkGray + ', 0 0 4px ' + darkGray + ', 0 0 4px ' + darkGray + ', 0 0 4px ' + darkGray;\n }\n }\n if (overrides.fontPercent && overrides.fontPercent !== 1) {\n var fontSize = window_1.parseFloat(cueDiv.style.fontSize);\n\n cueDiv.style.fontSize = fontSize * overrides.fontPercent + 'px';\n cueDiv.style.height = 'auto';\n cueDiv.style.top = 'auto';\n cueDiv.style.bottom = '2px';\n }\n if (overrides.fontFamily && overrides.fontFamily !== 'default') {\n if (overrides.fontFamily === 'small-caps') {\n cueDiv.firstChild.style.fontVariant = 'small-caps';\n } else {\n cueDiv.firstChild.style.fontFamily = fontMap[overrides.fontFamily];\n }\n }\n }\n };\n\n return TextTrackDisplay;\n}(Component);\n\nComponent.registerComponent('TextTrackDisplay', TextTrackDisplay);\n\n/**\n * @file loading-spinner.js\n */\n/**\n * A loading spinner for use during waiting/loading events.\n *\n * @extends Component\n */\n\nvar LoadingSpinner = function (_Component) {\n inherits(LoadingSpinner, _Component);\n\n function LoadingSpinner() {\n classCallCheck(this, LoadingSpinner);\n return possibleConstructorReturn(this, _Component.apply(this, arguments));\n }\n\n /**\n * Create the `LoadingSpinner`s DOM element.\n *\n * @return {Element}\n * The dom element that gets created.\n */\n LoadingSpinner.prototype.createEl = function createEl$$1() {\n var isAudio = this.player_.isAudio();\n var playerType = this.localize(isAudio ? 'Audio Player' : 'Video Player');\n var controlText = createEl('span', {\n className: 'vjs-control-text',\n innerHTML: this.localize('{1} is loading.', [playerType])\n });\n\n var el = _Component.prototype.createEl.call(this, 'div', {\n className: 'vjs-loading-spinner',\n dir: 'ltr'\n });\n\n el.appendChild(controlText);\n\n return el;\n };\n\n return LoadingSpinner;\n}(Component);\n\nComponent.registerComponent('LoadingSpinner', LoadingSpinner);\n\n/**\n * @file button.js\n */\n/**\n * Base class for all buttons.\n *\n * @extends ClickableComponent\n */\n\nvar Button = function (_ClickableComponent) {\n inherits(Button, _ClickableComponent);\n\n function Button() {\n classCallCheck(this, Button);\n return possibleConstructorReturn(this, _ClickableComponent.apply(this, arguments));\n }\n\n /**\n * Create the `Button`s DOM element.\n *\n * @param {string} [tag=\"button\"]\n * The element's node type. This argument is IGNORED: no matter what\n * is passed, it will always create a `button` element.\n *\n * @param {Object} [props={}]\n * An object of properties that should be set on the element.\n *\n * @param {Object} [attributes={}]\n * An object of attributes that should be set on the element.\n *\n * @return {Element}\n * The element that gets created.\n */\n Button.prototype.createEl = function createEl(tag) {\n var props = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n var attributes = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};\n\n tag = 'button';\n\n props = assign({\n innerHTML: '<span aria-hidden=\"true\" class=\"vjs-icon-placeholder\"></span>',\n className: this.buildCSSClass()\n }, props);\n\n // Add attributes for button element\n attributes = assign({\n\n // Necessary since the default button type is \"submit\"\n 'type': 'button',\n\n // let the screen reader user know that the text of the button may change\n 'aria-live': 'polite'\n }, attributes);\n\n var el = Component.prototype.createEl.call(this, tag, props, attributes);\n\n this.createControlTextEl(el);\n\n return el;\n };\n\n /**\n * Add a child `Component` inside of this `Button`.\n *\n * @param {string|Component} child\n * The name or instance of a child to add.\n *\n * @param {Object} [options={}]\n * The key/value store of options that will get passed to children of\n * the child.\n *\n * @return {Component}\n * The `Component` that gets added as a child. When using a string the\n * `Component` will get created by this process.\n *\n * @deprecated since version 5\n */\n\n\n Button.prototype.addChild = function addChild(child) {\n var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\n var className = this.constructor.name;\n\n log$1.warn('Adding an actionable (user controllable) child to a Button (' + className + ') is not supported; use a ClickableComponent instead.');\n\n // Avoid the error message generated by ClickableComponent's addChild method\n return Component.prototype.addChild.call(this, child, options);\n };\n\n /**\n * Enable the `Button` element so that it can be activated or clicked. Use this with\n * {@link Button#disable}.\n */\n\n\n Button.prototype.enable = function enable() {\n _ClickableComponent.prototype.enable.call(this);\n this.el_.removeAttribute('disabled');\n };\n\n /**\n * Disable the `Button` element so that it cannot be activated or clicked. Use this with\n * {@link Button#enable}.\n */\n\n\n Button.prototype.disable = function disable() {\n _ClickableComponent.prototype.disable.call(this);\n this.el_.setAttribute('disabled', 'disabled');\n };\n\n /**\n * This gets called when a `Button` has focus and `keydown` is triggered via a key\n * press.\n *\n * @param {EventTarget~Event} event\n * The event that caused this function to get called.\n *\n * @listens keydown\n */\n\n\n Button.prototype.handleKeyPress = function handleKeyPress(event) {\n\n // Ignore Space (32) or Enter (13) key operation, which is handled by the browser for a button.\n if (event.which === 32 || event.which === 13) {\n return;\n }\n\n // Pass keypress handling up for unsupported keys\n _ClickableComponent.prototype.handleKeyPress.call(this, event);\n };\n\n return Button;\n}(ClickableComponent);\n\nComponent.registerComponent('Button', Button);\n\n/**\n * @file big-play-button.js\n */\n/**\n * The initial play button that shows before the video has played. The hiding of the\n * `BigPlayButton` get done via CSS and `Player` states.\n *\n * @extends Button\n */\n\nvar BigPlayButton = function (_Button) {\n inherits(BigPlayButton, _Button);\n\n function BigPlayButton(player, options) {\n classCallCheck(this, BigPlayButton);\n\n var _this = possibleConstructorReturn(this, _Button.call(this, player, options));\n\n _this.mouseused_ = false;\n\n _this.on('mousedown', _this.handleMouseDown);\n return _this;\n }\n\n /**\n * Builds the default DOM `className`.\n *\n * @return {string}\n * The DOM `className` for this object. Always returns 'vjs-big-play-button'.\n */\n\n\n BigPlayButton.prototype.buildCSSClass = function buildCSSClass() {\n return 'vjs-big-play-button';\n };\n\n /**\n * This gets called when a `BigPlayButton` \"clicked\". See {@link ClickableComponent}\n * for more detailed information on what a click can be.\n *\n * @param {EventTarget~Event} event\n * The `keydown`, `tap`, or `click` event that caused this function to be\n * called.\n *\n * @listens tap\n * @listens click\n */\n\n\n BigPlayButton.prototype.handleClick = function handleClick(event) {\n var playPromise = this.player_.play();\n\n // exit early if clicked via the mouse\n if (this.mouseused_ && event.clientX && event.clientY) {\n return;\n }\n\n var cb = this.player_.getChild('controlBar');\n var playToggle = cb && cb.getChild('playToggle');\n\n if (!playToggle) {\n this.player_.focus();\n return;\n }\n\n var playFocus = function playFocus() {\n return playToggle.focus();\n };\n\n if (isPromise(playPromise)) {\n playPromise.then(playFocus, function () {});\n } else {\n this.setTimeout(playFocus, 1);\n }\n };\n\n BigPlayButton.prototype.handleKeyPress = function handleKeyPress(event) {\n this.mouseused_ = false;\n\n _Button.prototype.handleKeyPress.call(this, event);\n };\n\n BigPlayButton.prototype.handleMouseDown = function handleMouseDown(event) {\n this.mouseused_ = true;\n };\n\n return BigPlayButton;\n}(Button);\n\n/**\n * The text that should display over the `BigPlayButton`s controls. Added to for localization.\n *\n * @type {string}\n * @private\n */\n\n\nBigPlayButton.prototype.controlText_ = 'Play Video';\n\nComponent.registerComponent('BigPlayButton', BigPlayButton);\n\n/**\n * @file close-button.js\n */\n/**\n * The `CloseButton` is a `{@link Button}` that fires a `close` event when\n * it gets clicked.\n *\n * @extends Button\n */\n\nvar CloseButton = function (_Button) {\n inherits(CloseButton, _Button);\n\n /**\n * Creates an instance of the this class.\n *\n * @param {Player} player\n * The `Player` that this class should be attached to.\n *\n * @param {Object} [options]\n * The key/value store of player options.\n */\n function CloseButton(player, options) {\n classCallCheck(this, CloseButton);\n\n var _this = possibleConstructorReturn(this, _Button.call(this, player, options));\n\n _this.controlText(options && options.controlText || _this.localize('Close'));\n return _this;\n }\n\n /**\n * Builds the default DOM `className`.\n *\n * @return {string}\n * The DOM `className` for this object.\n */\n\n\n CloseButton.prototype.buildCSSClass = function buildCSSClass() {\n return 'vjs-close-button ' + _Button.prototype.buildCSSClass.call(this);\n };\n\n /**\n * This gets called when a `CloseButton` gets clicked. See\n * {@link ClickableComponent#handleClick} for more information on when this will be\n * triggered\n *\n * @param {EventTarget~Event} event\n * The `keydown`, `tap`, or `click` event that caused this function to be\n * called.\n *\n * @listens tap\n * @listens click\n * @fires CloseButton#close\n */\n\n\n CloseButton.prototype.handleClick = function handleClick(event) {\n\n /**\n * Triggered when the a `CloseButton` is clicked.\n *\n * @event CloseButton#close\n * @type {EventTarget~Event}\n *\n * @property {boolean} [bubbles=false]\n * set to false so that the close event does not\n * bubble up to parents if there is no listener\n */\n this.trigger({ type: 'close', bubbles: false });\n };\n\n return CloseButton;\n}(Button);\n\nComponent.registerComponent('CloseButton', CloseButton);\n\n/**\n * @file play-toggle.js\n */\n/**\n * Button to toggle between play and pause.\n *\n * @extends Button\n */\n\nvar PlayToggle = function (_Button) {\n inherits(PlayToggle, _Button);\n\n /**\n * Creates an instance of this class.\n *\n * @param {Player} player\n * The `Player` that this class should be attached to.\n *\n * @param {Object} [options]\n * The key/value store of player options.\n */\n function PlayToggle(player, options) {\n classCallCheck(this, PlayToggle);\n\n var _this = possibleConstructorReturn(this, _Button.call(this, player, options));\n\n _this.on(player, 'play', _this.handlePlay);\n _this.on(player, 'pause', _this.handlePause);\n _this.on(player, 'ended', _this.handleEnded);\n return _this;\n }\n\n /**\n * Builds the default DOM `className`.\n *\n * @return {string}\n * The DOM `className` for this object.\n */\n\n\n PlayToggle.prototype.buildCSSClass = function buildCSSClass() {\n return 'vjs-play-control ' + _Button.prototype.buildCSSClass.call(this);\n };\n\n /**\n * This gets called when an `PlayToggle` is \"clicked\". See\n * {@link ClickableComponent} for more detailed information on what a click can be.\n *\n * @param {EventTarget~Event} [event]\n * The `keydown`, `tap`, or `click` event that caused this function to be\n * called.\n *\n * @listens tap\n * @listens click\n */\n\n\n PlayToggle.prototype.handleClick = function handleClick(event) {\n if (this.player_.paused()) {\n this.player_.play();\n } else {\n this.player_.pause();\n }\n };\n\n /**\n * This gets called once after the video has ended and the user seeks so that\n * we can change the replay button back to a play button.\n *\n * @param {EventTarget~Event} [event]\n * The event that caused this function to run.\n *\n * @listens Player#seeked\n */\n\n\n PlayToggle.prototype.handleSeeked = function handleSeeked(event) {\n this.removeClass('vjs-ended');\n\n if (this.player_.paused()) {\n this.handlePause(event);\n } else {\n this.handlePlay(event);\n }\n };\n\n /**\n * Add the vjs-playing class to the element so it can change appearance.\n *\n * @param {EventTarget~Event} [event]\n * The event that caused this function to run.\n *\n * @listens Player#play\n */\n\n\n PlayToggle.prototype.handlePlay = function handlePlay(event) {\n this.removeClass('vjs-ended');\n this.removeClass('vjs-paused');\n this.addClass('vjs-playing');\n // change the button text to \"Pause\"\n this.controlText('Pause');\n };\n\n /**\n * Add the vjs-paused class to the element so it can change appearance.\n *\n * @param {EventTarget~Event} [event]\n * The event that caused this function to run.\n *\n * @listens Player#pause\n */\n\n\n PlayToggle.prototype.handlePause = function handlePause(event) {\n this.removeClass('vjs-playing');\n this.addClass('vjs-paused');\n // change the button text to \"Play\"\n this.controlText('Play');\n };\n\n /**\n * Add the vjs-ended class to the element so it can change appearance\n *\n * @param {EventTarget~Event} [event]\n * The event that caused this function to run.\n *\n * @listens Player#ended\n */\n\n\n PlayToggle.prototype.handleEnded = function handleEnded(event) {\n this.removeClass('vjs-playing');\n this.addClass('vjs-ended');\n // change the button text to \"Replay\"\n this.controlText('Replay');\n\n // on the next seek remove the replay button\n this.one(this.player_, 'seeked', this.handleSeeked);\n };\n\n return PlayToggle;\n}(Button);\n\n/**\n * The text that should display over the `PlayToggle`s controls. Added for localization.\n *\n * @type {string}\n * @private\n */\n\n\nPlayToggle.prototype.controlText_ = 'Play';\n\nComponent.registerComponent('PlayToggle', PlayToggle);\n\n/**\n * @file format-time.js\n * @module Format-time\n */\n\n/**\n * Format seconds as a time string, H:MM:SS or M:SS. Supplying a guide (in seconds)\n * will force a number of leading zeros to cover the length of the guide.\n *\n * @param {number} seconds\n * Number of seconds to be turned into a string\n *\n * @param {number} guide\n * Number (in seconds) to model the string after\n *\n * @return {string}\n * Time formatted as H:MM:SS or M:SS\n */\nfunction formatTime(seconds) {\n var guide = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : seconds;\n\n seconds = seconds < 0 ? 0 : seconds;\n var s = Math.floor(seconds % 60);\n var m = Math.floor(seconds / 60 % 60);\n var h = Math.floor(seconds / 3600);\n var gm = Math.floor(guide / 60 % 60);\n var gh = Math.floor(guide / 3600);\n\n // handle invalid times\n if (isNaN(seconds) || seconds === Infinity) {\n // '-' is false for all relational operators (e.g. <, >=) so this setting\n // will add the minimum number of fields specified by the guide\n h = m = s = '-';\n }\n\n // Check if we need to show hours\n h = h > 0 || gh > 0 ? h + ':' : '';\n\n // If hours are showing, we may need to add a leading zero.\n // Always show at least one digit of minutes.\n m = ((h || gm >= 10) && m < 10 ? '0' + m : m) + ':';\n\n // Check if leading zero is need for seconds\n s = s < 10 ? '0' + s : s;\n\n return h + m + s;\n}\n\n/**\n * @file time-display.js\n */\n/**\n * Displays the time left in the video\n *\n * @extends Component\n */\n\nvar TimeDisplay = function (_Component) {\n inherits(TimeDisplay, _Component);\n\n /**\n * Creates an instance of this class.\n *\n * @param {Player} player\n * The `Player` that this class should be attached to.\n *\n * @param {Object} [options]\n * The key/value store of player options.\n */\n function TimeDisplay(player, options) {\n classCallCheck(this, TimeDisplay);\n\n var _this = possibleConstructorReturn(this, _Component.call(this, player, options));\n\n _this.throttledUpdateContent = throttle(bind(_this, _this.updateContent), 25);\n _this.on(player, 'timeupdate', _this.throttledUpdateContent);\n return _this;\n }\n\n /**\n * Create the `Component`'s DOM element\n *\n * @return {Element}\n * The element that was created.\n */\n\n\n TimeDisplay.prototype.createEl = function createEl$$1(plainName) {\n var className = this.buildCSSClass();\n var el = _Component.prototype.createEl.call(this, 'div', {\n className: className + ' vjs-time-control vjs-control'\n });\n\n this.contentEl_ = createEl('div', {\n className: className + '-display'\n }, {\n // tell screen readers not to automatically read the time as it changes\n 'aria-live': 'off'\n }, createEl('span', {\n className: 'vjs-control-text',\n textContent: this.localize(this.controlText_)\n }));\n\n this.updateTextNode_();\n el.appendChild(this.contentEl_);\n return el;\n };\n\n TimeDisplay.prototype.dispose = function dispose() {\n this.contentEl_ = null;\n this.textNode_ = null;\n\n _Component.prototype.dispose.call(this);\n };\n\n /**\n * Updates the \"remaining time\" text node with new content using the\n * contents of the `formattedTime_` property.\n *\n * @private\n */\n\n\n TimeDisplay.prototype.updateTextNode_ = function updateTextNode_() {\n if (!this.contentEl_) {\n return;\n }\n\n while (this.contentEl_.firstChild) {\n this.contentEl_.removeChild(this.contentEl_.firstChild);\n }\n\n this.textNode_ = document_1.createTextNode(this.formattedTime_ || '0:00');\n this.contentEl_.appendChild(this.textNode_);\n };\n\n /**\n * Generates a formatted time for this component to use in display.\n *\n * @param {number} time\n * A numeric time, in seconds.\n *\n * @return {string}\n * A formatted time\n *\n * @private\n */\n\n\n TimeDisplay.prototype.formatTime_ = function formatTime_(time) {\n return formatTime(time);\n };\n\n /**\n * Updates the time display text node if it has what was passed in changed\n * the formatted time.\n *\n * @param {number} time\n * The time to update to\n *\n * @private\n */\n\n\n TimeDisplay.prototype.updateFormattedTime_ = function updateFormattedTime_(time) {\n var formattedTime = this.formatTime_(time);\n\n if (formattedTime === this.formattedTime_) {\n return;\n }\n\n this.formattedTime_ = formattedTime;\n this.requestAnimationFrame(this.updateTextNode_);\n };\n\n /**\n * To be filled out in the child class, should update the displayed time\n * in accordance with the fact that the current time has changed.\n *\n * @param {EventTarget~Event} [event]\n * The `timeupdate` event that caused this to run.\n *\n * @listens Player#timeupdate\n */\n\n\n TimeDisplay.prototype.updateContent = function updateContent(event) {};\n\n return TimeDisplay;\n}(Component);\n\n/**\n * The text that should display over the `TimeDisplay`s controls. Added to for localization.\n *\n * @type {string}\n * @private\n */\n\n\nTimeDisplay.prototype.controlText_ = 'Time';\n\nComponent.registerComponent('TimeDisplay', TimeDisplay);\n\n/**\n * @file current-time-display.js\n */\n/**\n * Displays the current time\n *\n * @extends Component\n */\n\nvar CurrentTimeDisplay = function (_TimeDisplay) {\n inherits(CurrentTimeDisplay, _TimeDisplay);\n\n /**\n * Creates an instance of this class.\n *\n * @param {Player} player\n * The `Player` that this class should be attached to.\n *\n * @param {Object} [options]\n * The key/value store of player options.\n */\n function CurrentTimeDisplay(player, options) {\n classCallCheck(this, CurrentTimeDisplay);\n\n var _this = possibleConstructorReturn(this, _TimeDisplay.call(this, player, options));\n\n _this.on(player, 'ended', _this.handleEnded);\n return _this;\n }\n\n /**\n * Builds the default DOM `className`.\n *\n * @return {string}\n * The DOM `className` for this object.\n */\n\n\n CurrentTimeDisplay.prototype.buildCSSClass = function buildCSSClass() {\n return 'vjs-current-time';\n };\n\n /**\n * Update current time display\n *\n * @param {EventTarget~Event} [event]\n * The `timeupdate` event that caused this function to run.\n *\n * @listens Player#timeupdate\n */\n\n\n CurrentTimeDisplay.prototype.updateContent = function updateContent(event) {\n // Allows for smooth scrubbing, when player can't keep up.\n var time = this.player_.scrubbing() ? this.player_.getCache().currentTime : this.player_.currentTime();\n\n this.updateFormattedTime_(time);\n };\n\n /**\n * When the player fires ended there should be no time left. Sadly\n * this is not always the case, lets make it seem like that is the case\n * for users.\n *\n * @param {EventTarget~Event} [event]\n * The `ended` event that caused this to run.\n *\n * @listens Player#ended\n */\n\n\n CurrentTimeDisplay.prototype.handleEnded = function handleEnded(event) {\n if (!this.player_.duration()) {\n return;\n }\n this.updateFormattedTime_(this.player_.duration());\n };\n\n return CurrentTimeDisplay;\n}(TimeDisplay);\n\n/**\n * The text that should display over the `CurrentTimeDisplay`s controls. Added to for localization.\n *\n * @type {string}\n * @private\n */\n\n\nCurrentTimeDisplay.prototype.controlText_ = 'Current Time';\n\nComponent.registerComponent('CurrentTimeDisplay', CurrentTimeDisplay);\n\n/**\n * @file duration-display.js\n */\n/**\n * Displays the duration\n *\n * @extends Component\n */\n\nvar DurationDisplay = function (_TimeDisplay) {\n inherits(DurationDisplay, _TimeDisplay);\n\n /**\n * Creates an instance of this class.\n *\n * @param {Player} player\n * The `Player` that this class should be attached to.\n *\n * @param {Object} [options]\n * The key/value store of player options.\n */\n function DurationDisplay(player, options) {\n classCallCheck(this, DurationDisplay);\n\n // we do not want to/need to throttle duration changes,\n // as they should always display the changed duration as\n // it has changed\n var _this = possibleConstructorReturn(this, _TimeDisplay.call(this, player, options));\n\n _this.on(player, 'durationchange', _this.updateContent);\n\n // Also listen for timeupdate (in the parent) and loadedmetadata because removing those\n // listeners could have broken dependent applications/libraries. These\n // can likely be removed for 7.0.\n _this.on(player, 'loadedmetadata', _this.throttledUpdateContent);\n return _this;\n }\n\n /**\n * Builds the default DOM `className`.\n *\n * @return {string}\n * The DOM `className` for this object.\n */\n\n\n DurationDisplay.prototype.buildCSSClass = function buildCSSClass() {\n return 'vjs-duration';\n };\n\n /**\n * Update duration time display.\n *\n * @param {EventTarget~Event} [event]\n * The `durationchange`, `timeupdate`, or `loadedmetadata` event that caused\n * this function to be called.\n *\n * @listens Player#durationchange\n * @listens Player#timeupdate\n * @listens Player#loadedmetadata\n */\n\n\n DurationDisplay.prototype.updateContent = function updateContent(event) {\n var duration = this.player_.duration();\n\n if (duration && this.duration_ !== duration) {\n this.duration_ = duration;\n this.updateFormattedTime_(duration);\n }\n };\n\n return DurationDisplay;\n}(TimeDisplay);\n\n/**\n * The text that should display over the `DurationDisplay`s controls. Added to for localization.\n *\n * @type {string}\n * @private\n */\n\n\nDurationDisplay.prototype.controlText_ = 'Duration Time';\n\nComponent.registerComponent('DurationDisplay', DurationDisplay);\n\n/**\n * @file time-divider.js\n */\n/**\n * The separator between the current time and duration.\n * Can be hidden if it's not needed in the design.\n *\n * @extends Component\n */\n\nvar TimeDivider = function (_Component) {\n inherits(TimeDivider, _Component);\n\n function TimeDivider() {\n classCallCheck(this, TimeDivider);\n return possibleConstructorReturn(this, _Component.apply(this, arguments));\n }\n\n /**\n * Create the component's DOM element\n *\n * @return {Element}\n * The element that was created.\n */\n TimeDivider.prototype.createEl = function createEl() {\n return _Component.prototype.createEl.call(this, 'div', {\n className: 'vjs-time-control vjs-time-divider',\n innerHTML: '<div><span>/</span></div>'\n });\n };\n\n return TimeDivider;\n}(Component);\n\nComponent.registerComponent('TimeDivider', TimeDivider);\n\n/**\n * @file remaining-time-display.js\n */\n/**\n * Displays the time left in the video\n *\n * @extends Component\n */\n\nvar RemainingTimeDisplay = function (_TimeDisplay) {\n inherits(RemainingTimeDisplay, _TimeDisplay);\n\n /**\n * Creates an instance of this class.\n *\n * @param {Player} player\n * The `Player` that this class should be attached to.\n *\n * @param {Object} [options]\n * The key/value store of player options.\n */\n function RemainingTimeDisplay(player, options) {\n classCallCheck(this, RemainingTimeDisplay);\n\n var _this = possibleConstructorReturn(this, _TimeDisplay.call(this, player, options));\n\n _this.on(player, 'durationchange', _this.throttledUpdateContent);\n _this.on(player, 'ended', _this.handleEnded);\n return _this;\n }\n\n /**\n * Builds the default DOM `className`.\n *\n * @return {string}\n * The DOM `className` for this object.\n */\n\n\n RemainingTimeDisplay.prototype.buildCSSClass = function buildCSSClass() {\n return 'vjs-remaining-time';\n };\n\n /**\n * The remaining time display prefixes numbers with a \"minus\" character.\n *\n * @param {number} time\n * A numeric time, in seconds.\n *\n * @return {string}\n * A formatted time\n *\n * @private\n */\n\n\n RemainingTimeDisplay.prototype.formatTime_ = function formatTime_(time) {\n return '-' + _TimeDisplay.prototype.formatTime_.call(this, time);\n };\n\n /**\n * Update remaining time display.\n *\n * @param {EventTarget~Event} [event]\n * The `timeupdate` or `durationchange` event that caused this to run.\n *\n * @listens Player#timeupdate\n * @listens Player#durationchange\n */\n\n\n RemainingTimeDisplay.prototype.updateContent = function updateContent(event) {\n if (!this.player_.duration()) {\n return;\n }\n\n // @deprecated We should only use remainingTimeDisplay\n // as of video.js 7\n if (this.player_.remainingTimeDisplay) {\n this.updateFormattedTime_(this.player_.remainingTimeDisplay());\n } else {\n this.updateFormattedTime_(this.player_.remainingTime());\n }\n };\n\n /**\n * When the player fires ended there should be no time left. Sadly\n * this is not always the case, lets make it seem like that is the case\n * for users.\n *\n * @param {EventTarget~Event} [event]\n * The `ended` event that caused this to run.\n *\n * @listens Player#ended\n */\n\n\n RemainingTimeDisplay.prototype.handleEnded = function handleEnded(event) {\n if (!this.player_.duration()) {\n return;\n }\n this.updateFormattedTime_(0);\n };\n\n return RemainingTimeDisplay;\n}(TimeDisplay);\n\n/**\n * The text that should display over the `RemainingTimeDisplay`s controls. Added to for localization.\n *\n * @type {string}\n * @private\n */\n\n\nRemainingTimeDisplay.prototype.controlText_ = 'Remaining Time';\n\nComponent.registerComponent('RemainingTimeDisplay', RemainingTimeDisplay);\n\n/**\n * @file live-display.js\n */\n// TODO - Future make it click to snap to live\n\n/**\n * Displays the live indicator when duration is Infinity.\n *\n * @extends Component\n */\n\nvar LiveDisplay = function (_Component) {\n inherits(LiveDisplay, _Component);\n\n /**\n * Creates an instance of this class.\n *\n * @param {Player} player\n * The `Player` that this class should be attached to.\n *\n * @param {Object} [options]\n * The key/value store of player options.\n */\n function LiveDisplay(player, options) {\n classCallCheck(this, LiveDisplay);\n\n var _this = possibleConstructorReturn(this, _Component.call(this, player, options));\n\n _this.updateShowing();\n _this.on(_this.player(), 'durationchange', _this.updateShowing);\n return _this;\n }\n\n /**\n * Create the `Component`'s DOM element\n *\n * @return {Element}\n * The element that was created.\n */\n\n\n LiveDisplay.prototype.createEl = function createEl$$1() {\n var el = _Component.prototype.createEl.call(this, 'div', {\n className: 'vjs-live-control vjs-control'\n });\n\n this.contentEl_ = createEl('div', {\n className: 'vjs-live-display',\n innerHTML: '<span class=\"vjs-control-text\">' + this.localize('Stream Type') + '</span>' + this.localize('LIVE')\n }, {\n 'aria-live': 'off'\n });\n\n el.appendChild(this.contentEl_);\n return el;\n };\n\n LiveDisplay.prototype.dispose = function dispose() {\n this.contentEl_ = null;\n\n _Component.prototype.dispose.call(this);\n };\n\n /**\n * Check the duration to see if the LiveDisplay should be showing or not. Then show/hide\n * it accordingly\n *\n * @param {EventTarget~Event} [event]\n * The {@link Player#durationchange} event that caused this function to run.\n *\n * @listens Player#durationchange\n */\n\n\n LiveDisplay.prototype.updateShowing = function updateShowing(event) {\n if (this.player().duration() === Infinity) {\n this.show();\n } else {\n this.hide();\n }\n };\n\n return LiveDisplay;\n}(Component);\n\nComponent.registerComponent('LiveDisplay', LiveDisplay);\n\n/**\n * @file slider.js\n */\n/**\n * The base functionality for a slider. Can be vertical or horizontal.\n * For instance the volume bar or the seek bar on a video is a slider.\n *\n * @extends Component\n */\n\nvar Slider = function (_Component) {\n inherits(Slider, _Component);\n\n /**\n * Create an instance of this class\n *\n * @param {Player} player\n * The `Player` that this class should be attached to.\n *\n * @param {Object} [options]\n * The key/value store of player options.\n */\n function Slider(player, options) {\n classCallCheck(this, Slider);\n\n // Set property names to bar to match with the child Slider class is looking for\n var _this = possibleConstructorReturn(this, _Component.call(this, player, options));\n\n _this.bar = _this.getChild(_this.options_.barName);\n\n // Set a horizontal or vertical class on the slider depending on the slider type\n _this.vertical(!!_this.options_.vertical);\n\n _this.enable();\n return _this;\n }\n\n /**\n * Are controls are currently enabled for this slider or not.\n *\n * @return {boolean}\n * true if controls are enabled, false otherwise\n */\n\n\n Slider.prototype.enabled = function enabled() {\n return this.enabled_;\n };\n\n /**\n * Enable controls for this slider if they are disabled\n */\n\n\n Slider.prototype.enable = function enable() {\n if (this.enabled()) {\n return;\n }\n\n this.on('mousedown', this.handleMouseDown);\n this.on('touchstart', this.handleMouseDown);\n this.on('focus', this.handleFocus);\n this.on('blur', this.handleBlur);\n this.on('click', this.handleClick);\n\n this.on(this.player_, 'controlsvisible', this.update);\n\n if (this.playerEvent) {\n this.on(this.player_, this.playerEvent, this.update);\n }\n\n this.removeClass('disabled');\n this.setAttribute('tabindex', 0);\n\n this.enabled_ = true;\n };\n\n /**\n * Disable controls for this slider if they are enabled\n */\n\n\n Slider.prototype.disable = function disable() {\n if (!this.enabled()) {\n return;\n }\n var doc = this.bar.el_.ownerDocument;\n\n this.off('mousedown', this.handleMouseDown);\n this.off('touchstart', this.handleMouseDown);\n this.off('focus', this.handleFocus);\n this.off('blur', this.handleBlur);\n this.off('click', this.handleClick);\n this.off(this.player_, 'controlsvisible', this.update);\n this.off(doc, 'mousemove', this.handleMouseMove);\n this.off(doc, 'mouseup', this.handleMouseUp);\n this.off(doc, 'touchmove', this.handleMouseMove);\n this.off(doc, 'touchend', this.handleMouseUp);\n this.removeAttribute('tabindex');\n\n this.addClass('disabled');\n\n if (this.playerEvent) {\n this.off(this.player_, this.playerEvent, this.update);\n }\n this.enabled_ = false;\n };\n\n /**\n * Create the `Button`s DOM element.\n *\n * @param {string} type\n * Type of element to create.\n *\n * @param {Object} [props={}]\n * List of properties in Object form.\n *\n * @param {Object} [attributes={}]\n * list of attributes in Object form.\n *\n * @return {Element}\n * The element that gets created.\n */\n\n\n Slider.prototype.createEl = function createEl$$1(type) {\n var props = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n var attributes = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};\n\n // Add the slider element class to all sub classes\n props.className = props.className + ' vjs-slider';\n props = assign({\n tabIndex: 0\n }, props);\n\n attributes = assign({\n 'role': 'slider',\n 'aria-valuenow': 0,\n 'aria-valuemin': 0,\n 'aria-valuemax': 100,\n 'tabIndex': 0\n }, attributes);\n\n return _Component.prototype.createEl.call(this, type, props, attributes);\n };\n\n /**\n * Handle `mousedown` or `touchstart` events on the `Slider`.\n *\n * @param {EventTarget~Event} event\n * `mousedown` or `touchstart` event that triggered this function\n *\n * @listens mousedown\n * @listens touchstart\n * @fires Slider#slideractive\n */\n\n\n Slider.prototype.handleMouseDown = function handleMouseDown(event) {\n var doc = this.bar.el_.ownerDocument;\n\n event.preventDefault();\n blockTextSelection();\n\n this.addClass('vjs-sliding');\n /**\n * Triggered when the slider is in an active state\n *\n * @event Slider#slideractive\n * @type {EventTarget~Event}\n */\n this.trigger('slideractive');\n\n this.on(doc, 'mousemove', this.handleMouseMove);\n this.on(doc, 'mouseup', this.handleMouseUp);\n this.on(doc, 'touchmove', this.handleMouseMove);\n this.on(doc, 'touchend', this.handleMouseUp);\n\n this.handleMouseMove(event);\n };\n\n /**\n * Handle the `mousemove`, `touchmove`, and `mousedown` events on this `Slider`.\n * The `mousemove` and `touchmove` events will only only trigger this function during\n * `mousedown` and `touchstart`. This is due to {@link Slider#handleMouseDown} and\n * {@link Slider#handleMouseUp}.\n *\n * @param {EventTarget~Event} event\n * `mousedown`, `mousemove`, `touchstart`, or `touchmove` event that triggered\n * this function\n *\n * @listens mousemove\n * @listens touchmove\n */\n\n\n Slider.prototype.handleMouseMove = function handleMouseMove(event) {};\n\n /**\n * Handle `mouseup` or `touchend` events on the `Slider`.\n *\n * @param {EventTarget~Event} event\n * `mouseup` or `touchend` event that triggered this function.\n *\n * @listens touchend\n * @listens mouseup\n * @fires Slider#sliderinactive\n */\n\n\n Slider.prototype.handleMouseUp = function handleMouseUp() {\n var doc = this.bar.el_.ownerDocument;\n\n unblockTextSelection();\n\n this.removeClass('vjs-sliding');\n /**\n * Triggered when the slider is no longer in an active state.\n *\n * @event Slider#sliderinactive\n * @type {EventTarget~Event}\n */\n this.trigger('sliderinactive');\n\n this.off(doc, 'mousemove', this.handleMouseMove);\n this.off(doc, 'mouseup', this.handleMouseUp);\n this.off(doc, 'touchmove', this.handleMouseMove);\n this.off(doc, 'touchend', this.handleMouseUp);\n\n this.update();\n };\n\n /**\n * Update the progress bar of the `Slider`.\n *\n * @returns {number}\n * The percentage of progress the progress bar represents as a\n * number from 0 to 1.\n */\n\n\n Slider.prototype.update = function update() {\n\n // In VolumeBar init we have a setTimeout for update that pops and update\n // to the end of the execution stack. The player is destroyed before then\n // update will cause an error\n if (!this.el_) {\n return;\n }\n\n // If scrubbing, we could use a cached value to make the handle keep up\n // with the user's mouse. On HTML5 browsers scrubbing is really smooth, but\n // some flash players are slow, so we might want to utilize this later.\n // var progress = (this.player_.scrubbing()) ? this.player_.getCache().currentTime / this.player_.duration() : this.player_.currentTime() / this.player_.duration();\n var progress = this.getPercent();\n var bar = this.bar;\n\n // If there's no bar...\n if (!bar) {\n return;\n }\n\n // Protect against no duration and other division issues\n if (typeof progress !== 'number' || progress !== progress || progress < 0 || progress === Infinity) {\n progress = 0;\n }\n\n // Convert to a percentage for setting\n var percentage = (progress * 100).toFixed(2) + '%';\n var style = bar.el().style;\n\n // Set the new bar width or height\n if (this.vertical()) {\n style.height = percentage;\n } else {\n style.width = percentage;\n }\n\n return progress;\n };\n\n /**\n * Calculate distance for slider\n *\n * @param {EventTarget~Event} event\n * The event that caused this function to run.\n *\n * @return {number}\n * The current position of the Slider.\n * - postition.x for vertical `Slider`s\n * - postition.y for horizontal `Slider`s\n */\n\n\n Slider.prototype.calculateDistance = function calculateDistance(event) {\n var position = getPointerPosition(this.el_, event);\n\n if (this.vertical()) {\n return position.y;\n }\n return position.x;\n };\n\n /**\n * Handle a `focus` event on this `Slider`.\n *\n * @param {EventTarget~Event} event\n * The `focus` event that caused this function to run.\n *\n * @listens focus\n */\n\n\n Slider.prototype.handleFocus = function handleFocus() {\n this.on(this.bar.el_.ownerDocument, 'keydown', this.handleKeyPress);\n };\n\n /**\n * Handle a `keydown` event on the `Slider`. Watches for left, rigth, up, and down\n * arrow keys. This function will only be called when the slider has focus. See\n * {@link Slider#handleFocus} and {@link Slider#handleBlur}.\n *\n * @param {EventTarget~Event} event\n * the `keydown` event that caused this function to run.\n *\n * @listens keydown\n */\n\n\n Slider.prototype.handleKeyPress = function handleKeyPress(event) {\n // Left and Down Arrows\n if (event.which === 37 || event.which === 40) {\n event.preventDefault();\n this.stepBack();\n\n // Up and Right Arrows\n } else if (event.which === 38 || event.which === 39) {\n event.preventDefault();\n this.stepForward();\n }\n };\n\n /**\n * Handle a `blur` event on this `Slider`.\n *\n * @param {EventTarget~Event} event\n * The `blur` event that caused this function to run.\n *\n * @listens blur\n */\n\n Slider.prototype.handleBlur = function handleBlur() {\n this.off(this.bar.el_.ownerDocument, 'keydown', this.handleKeyPress);\n };\n\n /**\n * Listener for click events on slider, used to prevent clicks\n * from bubbling up to parent elements like button menus.\n *\n * @param {Object} event\n * Event that caused this object to run\n */\n\n\n Slider.prototype.handleClick = function handleClick(event) {\n event.stopImmediatePropagation();\n event.preventDefault();\n };\n\n /**\n * Get/set if slider is horizontal for vertical\n *\n * @param {boolean} [bool]\n * - true if slider is vertical,\n * - false is horizontal\n *\n * @return {boolean}\n * - true if slider is vertical, and getting\n * - false if the slider is horizontal, and getting\n */\n\n\n Slider.prototype.vertical = function vertical(bool) {\n if (bool === undefined) {\n return this.vertical_ || false;\n }\n\n this.vertical_ = !!bool;\n\n if (this.vertical_) {\n this.addClass('vjs-slider-vertical');\n } else {\n this.addClass('vjs-slider-horizontal');\n }\n };\n\n return Slider;\n}(Component);\n\nComponent.registerComponent('Slider', Slider);\n\n/**\n * @file load-progress-bar.js\n */\n/**\n * Shows loading progress\n *\n * @extends Component\n */\n\nvar LoadProgressBar = function (_Component) {\n inherits(LoadProgressBar, _Component);\n\n /**\n * Creates an instance of this class.\n *\n * @param {Player} player\n * The `Player` that this class should be attached to.\n *\n * @param {Object} [options]\n * The key/value store of player options.\n */\n function LoadProgressBar(player, options) {\n classCallCheck(this, LoadProgressBar);\n\n var _this = possibleConstructorReturn(this, _Component.call(this, player, options));\n\n _this.partEls_ = [];\n _this.on(player, 'progress', _this.update);\n return _this;\n }\n\n /**\n * Create the `Component`'s DOM element\n *\n * @return {Element}\n * The element that was created.\n */\n\n\n LoadProgressBar.prototype.createEl = function createEl$$1() {\n return _Component.prototype.createEl.call(this, 'div', {\n className: 'vjs-load-progress',\n innerHTML: '<span class=\"vjs-control-text\"><span>' + this.localize('Loaded') + '</span>: 0%</span>'\n });\n };\n\n LoadProgressBar.prototype.dispose = function dispose() {\n this.partEls_ = null;\n\n _Component.prototype.dispose.call(this);\n };\n\n /**\n * Update progress bar\n *\n * @param {EventTarget~Event} [event]\n * The `progress` event that caused this function to run.\n *\n * @listens Player#progress\n */\n\n\n LoadProgressBar.prototype.update = function update(event) {\n var buffered = this.player_.buffered();\n var duration = this.player_.duration();\n var bufferedEnd = this.player_.bufferedEnd();\n var children = this.partEls_;\n\n // get the percent width of a time compared to the total end\n var percentify = function percentify(time, end) {\n // no NaN\n var percent = time / end || 0;\n\n return (percent >= 1 ? 1 : percent) * 100 + '%';\n };\n\n // update the width of the progress bar\n this.el_.style.width = percentify(bufferedEnd, duration);\n\n // add child elements to represent the individual buffered time ranges\n for (var i = 0; i < buffered.length; i++) {\n var start = buffered.start(i);\n var end = buffered.end(i);\n var part = children[i];\n\n if (!part) {\n part = this.el_.appendChild(createEl());\n children[i] = part;\n }\n\n // set the percent based on the width of the progress bar (bufferedEnd)\n part.style.left = percentify(start, bufferedEnd);\n part.style.width = percentify(end - start, bufferedEnd);\n }\n\n // remove unused buffered range elements\n for (var _i = children.length; _i > buffered.length; _i--) {\n this.el_.removeChild(children[_i - 1]);\n }\n children.length = buffered.length;\n };\n\n return LoadProgressBar;\n}(Component);\n\nComponent.registerComponent('LoadProgressBar', LoadProgressBar);\n\n/**\n * @file time-tooltip.js\n */\n/**\n * Time tooltips display a time above the progress bar.\n *\n * @extends Component\n */\n\nvar TimeTooltip = function (_Component) {\n inherits(TimeTooltip, _Component);\n\n function TimeTooltip() {\n classCallCheck(this, TimeTooltip);\n return possibleConstructorReturn(this, _Component.apply(this, arguments));\n }\n\n /**\n * Create the time tooltip DOM element\n *\n * @return {Element}\n * The element that was created.\n */\n TimeTooltip.prototype.createEl = function createEl$$1() {\n return _Component.prototype.createEl.call(this, 'div', {\n className: 'vjs-time-tooltip'\n });\n };\n\n /**\n * Updates the position of the time tooltip relative to the `SeekBar`.\n *\n * @param {Object} seekBarRect\n * The `ClientRect` for the {@link SeekBar} element.\n *\n * @param {number} seekBarPoint\n * A number from 0 to 1, representing a horizontal reference point\n * from the left edge of the {@link SeekBar}\n */\n\n\n TimeTooltip.prototype.update = function update(seekBarRect, seekBarPoint, content) {\n var tooltipRect = getBoundingClientRect(this.el_);\n var playerRect = getBoundingClientRect(this.player_.el());\n var seekBarPointPx = seekBarRect.width * seekBarPoint;\n\n // do nothing if either rect isn't available\n // for example, if the player isn't in the DOM for testing\n if (!playerRect || !tooltipRect) {\n return;\n }\n\n // This is the space left of the `seekBarPoint` available within the bounds\n // of the player. We calculate any gap between the left edge of the player\n // and the left edge of the `SeekBar` and add the number of pixels in the\n // `SeekBar` before hitting the `seekBarPoint`\n var spaceLeftOfPoint = seekBarRect.left - playerRect.left + seekBarPointPx;\n\n // This is the space right of the `seekBarPoint` available within the bounds\n // of the player. We calculate the number of pixels from the `seekBarPoint`\n // to the right edge of the `SeekBar` and add to that any gap between the\n // right edge of the `SeekBar` and the player.\n var spaceRightOfPoint = seekBarRect.width - seekBarPointPx + (playerRect.right - seekBarRect.right);\n\n // This is the number of pixels by which the tooltip will need to be pulled\n // further to the right to center it over the `seekBarPoint`.\n var pullTooltipBy = tooltipRect.width / 2;\n\n // Adjust the `pullTooltipBy` distance to the left or right depending on\n // the results of the space calculations above.\n if (spaceLeftOfPoint < pullTooltipBy) {\n pullTooltipBy += pullTooltipBy - spaceLeftOfPoint;\n } else if (spaceRightOfPoint < pullTooltipBy) {\n pullTooltipBy = spaceRightOfPoint;\n }\n\n // Due to the imprecision of decimal/ratio based calculations and varying\n // rounding behaviors, there are cases where the spacing adjustment is off\n // by a pixel or two. This adds insurance to these calculations.\n if (pullTooltipBy < 0) {\n pullTooltipBy = 0;\n } else if (pullTooltipBy > tooltipRect.width) {\n pullTooltipBy = tooltipRect.width;\n }\n\n this.el_.style.right = '-' + pullTooltipBy + 'px';\n textContent(this.el_, content);\n };\n\n return TimeTooltip;\n}(Component);\n\nComponent.registerComponent('TimeTooltip', TimeTooltip);\n\n/**\n * @file play-progress-bar.js\n */\n/**\n * Used by {@link SeekBar} to display media playback progress as part of the\n * {@link ProgressControl}.\n *\n * @extends Component\n */\n\nvar PlayProgressBar = function (_Component) {\n inherits(PlayProgressBar, _Component);\n\n function PlayProgressBar() {\n classCallCheck(this, PlayProgressBar);\n return possibleConstructorReturn(this, _Component.apply(this, arguments));\n }\n\n /**\n * Create the the DOM element for this class.\n *\n * @return {Element}\n * The element that was created.\n */\n PlayProgressBar.prototype.createEl = function createEl() {\n return _Component.prototype.createEl.call(this, 'div', {\n className: 'vjs-play-progress vjs-slider-bar',\n innerHTML: '<span class=\"vjs-control-text\"><span>' + this.localize('Progress') + '</span>: 0%</span>'\n });\n };\n\n /**\n * Enqueues updates to its own DOM as well as the DOM of its\n * {@link TimeTooltip} child.\n *\n * @param {Object} seekBarRect\n * The `ClientRect` for the {@link SeekBar} element.\n *\n * @param {number} seekBarPoint\n * A number from 0 to 1, representing a horizontal reference point\n * from the left edge of the {@link SeekBar}\n */\n\n\n PlayProgressBar.prototype.update = function update(seekBarRect, seekBarPoint) {\n var _this2 = this;\n\n // If there is an existing rAF ID, cancel it so we don't over-queue.\n if (this.rafId_) {\n this.cancelAnimationFrame(this.rafId_);\n }\n\n this.rafId_ = this.requestAnimationFrame(function () {\n var time = _this2.player_.scrubbing() ? _this2.player_.getCache().currentTime : _this2.player_.currentTime();\n\n var content = formatTime(time, _this2.player_.duration());\n var timeTooltip = _this2.getChild('timeTooltip');\n\n if (timeTooltip) {\n timeTooltip.update(seekBarRect, seekBarPoint, content);\n }\n });\n };\n\n return PlayProgressBar;\n}(Component);\n\n/**\n * Default options for {@link PlayProgressBar}.\n *\n * @type {Object}\n * @private\n */\n\n\nPlayProgressBar.prototype.options_ = {\n children: []\n};\n\n// Time tooltips should not be added to a player on mobile devices or IE8\nif ((!IE_VERSION || IE_VERSION > 8) && !IS_IOS && !IS_ANDROID) {\n PlayProgressBar.prototype.options_.children.push('timeTooltip');\n}\n\nComponent.registerComponent('PlayProgressBar', PlayProgressBar);\n\n/**\n * @file mouse-time-display.js\n */\n/**\n * The {@link MouseTimeDisplay} component tracks mouse movement over the\n * {@link ProgressControl}. It displays an indicator and a {@link TimeTooltip}\n * indicating the time which is represented by a given point in the\n * {@link ProgressControl}.\n *\n * @extends Component\n */\n\nvar MouseTimeDisplay = function (_Component) {\n inherits(MouseTimeDisplay, _Component);\n\n /**\n * Creates an instance of this class.\n *\n * @param {Player} player\n * The {@link Player} that this class should be attached to.\n *\n * @param {Object} [options]\n * The key/value store of player options.\n */\n function MouseTimeDisplay(player, options) {\n classCallCheck(this, MouseTimeDisplay);\n\n var _this = possibleConstructorReturn(this, _Component.call(this, player, options));\n\n _this.update = throttle(bind(_this, _this.update), 25);\n return _this;\n }\n\n /**\n * Create the DOM element for this class.\n *\n * @return {Element}\n * The element that was created.\n */\n\n\n MouseTimeDisplay.prototype.createEl = function createEl() {\n return _Component.prototype.createEl.call(this, 'div', {\n className: 'vjs-mouse-display'\n });\n };\n\n /**\n * Enqueues updates to its own DOM as well as the DOM of its\n * {@link TimeTooltip} child.\n *\n * @param {Object} seekBarRect\n * The `ClientRect` for the {@link SeekBar} element.\n *\n * @param {number} seekBarPoint\n * A number from 0 to 1, representing a horizontal reference point\n * from the left edge of the {@link SeekBar}\n */\n\n\n MouseTimeDisplay.prototype.update = function update(seekBarRect, seekBarPoint) {\n var _this2 = this;\n\n // If there is an existing rAF ID, cancel it so we don't over-queue.\n if (this.rafId_) {\n this.cancelAnimationFrame(this.rafId_);\n }\n\n this.rafId_ = this.requestAnimationFrame(function () {\n var duration = _this2.player_.duration();\n var content = formatTime(seekBarPoint * duration, duration);\n\n _this2.el_.style.left = seekBarRect.width * seekBarPoint + 'px';\n _this2.getChild('timeTooltip').update(seekBarRect, seekBarPoint, content);\n });\n };\n\n return MouseTimeDisplay;\n}(Component);\n\n/**\n * Default options for `MouseTimeDisplay`\n *\n * @type {Object}\n * @private\n */\n\n\nMouseTimeDisplay.prototype.options_ = {\n children: ['timeTooltip']\n};\n\nComponent.registerComponent('MouseTimeDisplay', MouseTimeDisplay);\n\n/**\n * @file seek-bar.js\n */\n// The number of seconds the `step*` functions move the timeline.\nvar STEP_SECONDS = 5;\n\n// The interval at which the bar should update as it progresses.\nvar UPDATE_REFRESH_INTERVAL = 30;\n\n/**\n * Seek bar and container for the progress bars. Uses {@link PlayProgressBar}\n * as its `bar`.\n *\n * @extends Slider\n */\n\nvar SeekBar = function (_Slider) {\n inherits(SeekBar, _Slider);\n\n /**\n * Creates an instance of this class.\n *\n * @param {Player} player\n * The `Player` that this class should be attached to.\n *\n * @param {Object} [options]\n * The key/value store of player options.\n */\n function SeekBar(player, options) {\n classCallCheck(this, SeekBar);\n\n var _this = possibleConstructorReturn(this, _Slider.call(this, player, options));\n\n _this.update = throttle(bind(_this, _this.update), UPDATE_REFRESH_INTERVAL);\n\n _this.on(player, 'timeupdate', _this.update);\n _this.on(player, 'ended', _this.handleEnded);\n\n // when playing, let's ensure we smoothly update the play progress bar\n // via an interval\n _this.updateInterval = null;\n\n _this.on(player, ['playing'], function () {\n _this.clearInterval(_this.updateInterval);\n\n _this.updateInterval = _this.setInterval(function () {\n _this.requestAnimationFrame(function () {\n _this.update();\n });\n }, UPDATE_REFRESH_INTERVAL);\n });\n\n _this.on(player, ['ended', 'pause', 'waiting'], function () {\n _this.clearInterval(_this.updateInterval);\n });\n\n _this.on(player, ['timeupdate', 'ended'], _this.update);\n return _this;\n }\n\n /**\n * Create the `Component`'s DOM element\n *\n * @return {Element}\n * The element that was created.\n */\n\n\n SeekBar.prototype.createEl = function createEl$$1() {\n return _Slider.prototype.createEl.call(this, 'div', {\n className: 'vjs-progress-holder'\n }, {\n 'aria-label': this.localize('Progress Bar')\n });\n };\n\n /**\n * This function updates the play progress bar and accessiblity\n * attributes to whatever is passed in.\n *\n * @param {number} currentTime\n * The currentTime value that should be used for accessiblity\n *\n * @param {number} percent\n * The percentage as a decimal that the bar should be filled from 0-1.\n *\n * @private\n */\n\n\n SeekBar.prototype.update_ = function update_(currentTime, percent) {\n var duration = this.player_.duration();\n\n // machine readable value of progress bar (percentage complete)\n this.el_.setAttribute('aria-valuenow', (percent * 100).toFixed(2));\n\n // human readable value of progress bar (time complete)\n this.el_.setAttribute('aria-valuetext', this.localize('progress bar timing: currentTime={1} duration={2}', [formatTime(currentTime, duration), formatTime(duration, duration)], '{1} of {2}'));\n\n // Update the `PlayProgressBar`.\n this.bar.update(getBoundingClientRect(this.el_), percent);\n };\n\n /**\n * Update the seek bar's UI.\n *\n * @param {EventTarget~Event} [event]\n * The `timeupdate` or `ended` event that caused this to run.\n *\n * @listens Player#timeupdate\n *\n * @returns {number}\n * The current percent at a number from 0-1\n */\n\n\n SeekBar.prototype.update = function update(event) {\n var percent = _Slider.prototype.update.call(this);\n\n this.update_(this.getCurrentTime_(), percent);\n return percent;\n };\n\n /**\n * Get the value of current time but allows for smooth scrubbing,\n * when player can't keep up.\n *\n * @return {number}\n * The current time value to display\n *\n * @private\n */\n\n\n SeekBar.prototype.getCurrentTime_ = function getCurrentTime_() {\n return this.player_.scrubbing() ? this.player_.getCache().currentTime : this.player_.currentTime();\n };\n\n /**\n * We want the seek bar to be full on ended\n * no matter what the actual internal values are. so we force it.\n *\n * @param {EventTarget~Event} [event]\n * The `timeupdate` or `ended` event that caused this to run.\n *\n * @listens Player#ended\n */\n\n\n SeekBar.prototype.handleEnded = function handleEnded(event) {\n this.update_(this.player_.duration(), 1);\n };\n\n /**\n * Get the percentage of media played so far.\n *\n * @return {number}\n * The percentage of media played so far (0 to 1).\n */\n\n\n SeekBar.prototype.getPercent = function getPercent() {\n var percent = this.getCurrentTime_() / this.player_.duration();\n\n return percent >= 1 ? 1 : percent;\n };\n\n /**\n * Handle mouse down on seek bar\n *\n * @param {EventTarget~Event} event\n * The `mousedown` event that caused this to run.\n *\n * @listens mousedown\n */\n\n\n SeekBar.prototype.handleMouseDown = function handleMouseDown(event) {\n if (!isSingleLeftClick(event)) {\n return;\n }\n\n // Stop event propagation to prevent double fire in progress-control.js\n event.stopPropagation();\n this.player_.scrubbing(true);\n\n this.videoWasPlaying = !this.player_.paused();\n this.player_.pause();\n\n _Slider.prototype.handleMouseDown.call(this, event);\n };\n\n /**\n * Handle mouse move on seek bar\n *\n * @param {EventTarget~Event} event\n * The `mousemove` event that caused this to run.\n *\n * @listens mousemove\n */\n\n\n SeekBar.prototype.handleMouseMove = function handleMouseMove(event) {\n if (!isSingleLeftClick(event)) {\n return;\n }\n\n var newTime = this.calculateDistance(event) * this.player_.duration();\n\n // Don't let video end while scrubbing.\n if (newTime === this.player_.duration()) {\n newTime = newTime - 0.1;\n }\n\n // Set new time (tell player to seek to new time)\n this.player_.currentTime(newTime);\n };\n\n SeekBar.prototype.enable = function enable() {\n _Slider.prototype.enable.call(this);\n var mouseTimeDisplay = this.getChild('mouseTimeDisplay');\n\n if (!mouseTimeDisplay) {\n return;\n }\n\n mouseTimeDisplay.show();\n };\n\n SeekBar.prototype.disable = function disable() {\n _Slider.prototype.disable.call(this);\n var mouseTimeDisplay = this.getChild('mouseTimeDisplay');\n\n if (!mouseTimeDisplay) {\n return;\n }\n\n mouseTimeDisplay.hide();\n };\n\n /**\n * Handle mouse up on seek bar\n *\n * @param {EventTarget~Event} event\n * The `mouseup` event that caused this to run.\n *\n * @listens mouseup\n */\n\n\n SeekBar.prototype.handleMouseUp = function handleMouseUp(event) {\n _Slider.prototype.handleMouseUp.call(this, event);\n\n // Stop event propagation to prevent double fire in progress-control.js\n event.stopPropagation();\n this.player_.scrubbing(false);\n\n /**\n * Trigger timeupdate because we're done seeking and the time has changed.\n * This is particularly useful for if the player is paused to time the time displays.\n *\n * @event Tech#timeupdate\n * @type {EventTarget~Event}\n */\n this.player_.trigger({ type: 'timeupdate', target: this, manuallyTriggered: true });\n if (this.videoWasPlaying) {\n silencePromise(this.player_.play());\n }\n };\n\n /**\n * Move more quickly fast forward for keyboard-only users\n */\n\n\n SeekBar.prototype.stepForward = function stepForward() {\n this.player_.currentTime(this.player_.currentTime() + STEP_SECONDS);\n };\n\n /**\n * Move more quickly rewind for keyboard-only users\n */\n\n\n SeekBar.prototype.stepBack = function stepBack() {\n this.player_.currentTime(this.player_.currentTime() - STEP_SECONDS);\n };\n\n /**\n * Toggles the playback state of the player\n * This gets called when enter or space is used on the seekbar\n *\n * @param {EventTarget~Event} event\n * The `keydown` event that caused this function to be called\n *\n */\n\n\n SeekBar.prototype.handleAction = function handleAction(event) {\n if (this.player_.paused()) {\n this.player_.play();\n } else {\n this.player_.pause();\n }\n };\n\n /**\n * Called when this SeekBar has focus and a key gets pressed down. By\n * default it will call `this.handleAction` when the key is space or enter.\n *\n * @param {EventTarget~Event} event\n * The `keydown` event that caused this function to be called.\n *\n * @listens keydown\n */\n\n\n SeekBar.prototype.handleKeyPress = function handleKeyPress(event) {\n\n // Support Space (32) or Enter (13) key operation to fire a click event\n if (event.which === 32 || event.which === 13) {\n event.preventDefault();\n this.handleAction(event);\n } else if (_Slider.prototype.handleKeyPress) {\n\n // Pass keypress handling up for unsupported keys\n _Slider.prototype.handleKeyPress.call(this, event);\n }\n };\n\n return SeekBar;\n}(Slider);\n\n/**\n * Default options for the `SeekBar`\n *\n * @type {Object}\n * @private\n */\n\n\nSeekBar.prototype.options_ = {\n children: ['loadProgressBar', 'playProgressBar'],\n barName: 'playProgressBar'\n};\n\n// MouseTimeDisplay tooltips should not be added to a player on mobile devices or IE8\nif ((!IE_VERSION || IE_VERSION > 8) && !IS_IOS && !IS_ANDROID) {\n SeekBar.prototype.options_.children.splice(1, 0, 'mouseTimeDisplay');\n}\n\n/**\n * Call the update event for this Slider when this event happens on the player.\n *\n * @type {string}\n */\nSeekBar.prototype.playerEvent = 'timeupdate';\n\nComponent.registerComponent('SeekBar', SeekBar);\n\n/**\n * @file progress-control.js\n */\n/**\n * The Progress Control component contains the seek bar, load progress,\n * and play progress.\n *\n * @extends Component\n */\n\nvar ProgressControl = function (_Component) {\n inherits(ProgressControl, _Component);\n\n /**\n * Creates an instance of this class.\n *\n * @param {Player} player\n * The `Player` that this class should be attached to.\n *\n * @param {Object} [options]\n * The key/value store of player options.\n */\n function ProgressControl(player, options) {\n classCallCheck(this, ProgressControl);\n\n var _this = possibleConstructorReturn(this, _Component.call(this, player, options));\n\n _this.handleMouseMove = throttle(bind(_this, _this.handleMouseMove), 25);\n _this.throttledHandleMouseSeek = throttle(bind(_this, _this.handleMouseSeek), 25);\n\n _this.enable();\n return _this;\n }\n\n /**\n * Create the `Component`'s DOM element\n *\n * @return {Element}\n * The element that was created.\n */\n\n\n ProgressControl.prototype.createEl = function createEl$$1() {\n return _Component.prototype.createEl.call(this, 'div', {\n className: 'vjs-progress-control vjs-control'\n });\n };\n\n /**\n * When the mouse moves over the `ProgressControl`, the pointer position\n * gets passed down to the `MouseTimeDisplay` component.\n *\n * @param {EventTarget~Event} event\n * The `mousemove` event that caused this function to run.\n *\n * @listen mousemove\n */\n\n\n ProgressControl.prototype.handleMouseMove = function handleMouseMove(event) {\n var seekBar = this.getChild('seekBar');\n\n if (seekBar) {\n var mouseTimeDisplay = seekBar.getChild('mouseTimeDisplay');\n var seekBarEl = seekBar.el();\n var seekBarRect = getBoundingClientRect(seekBarEl);\n var seekBarPoint = getPointerPosition(seekBarEl, event).x;\n\n // The default skin has a gap on either side of the `SeekBar`. This means\n // that it's possible to trigger this behavior outside the boundaries of\n // the `SeekBar`. This ensures we stay within it at all times.\n if (seekBarPoint > 1) {\n seekBarPoint = 1;\n } else if (seekBarPoint < 0) {\n seekBarPoint = 0;\n }\n\n if (mouseTimeDisplay) {\n mouseTimeDisplay.update(seekBarRect, seekBarPoint);\n }\n }\n };\n\n /**\n * A throttled version of the {@link ProgressControl#handleMouseSeek} listener.\n *\n * @method ProgressControl#throttledHandleMouseSeek\n * @param {EventTarget~Event} event\n * The `mousemove` event that caused this function to run.\n *\n * @listen mousemove\n * @listen touchmove\n */\n\n /**\n * Handle `mousemove` or `touchmove` events on the `ProgressControl`.\n *\n * @param {EventTarget~Event} event\n * `mousedown` or `touchstart` event that triggered this function\n *\n * @listens mousemove\n * @listens touchmove\n */\n\n\n ProgressControl.prototype.handleMouseSeek = function handleMouseSeek(event) {\n var seekBar = this.getChild('seekBar');\n\n if (seekBar) {\n seekBar.handleMouseMove(event);\n }\n };\n\n /**\n * Are controls are currently enabled for this progress control.\n *\n * @return {boolean}\n * true if controls are enabled, false otherwise\n */\n\n\n ProgressControl.prototype.enabled = function enabled() {\n return this.enabled_;\n };\n\n /**\n * Disable all controls on the progress control and its children\n */\n\n\n ProgressControl.prototype.disable = function disable() {\n this.children().forEach(function (child) {\n return child.disable && child.disable();\n });\n\n if (!this.enabled()) {\n return;\n }\n\n this.off(['mousedown', 'touchstart'], this.handleMouseDown);\n this.off(this.el_, 'mousemove', this.handleMouseMove);\n this.handleMouseUp();\n\n this.addClass('disabled');\n\n this.enabled_ = false;\n };\n\n /**\n * Enable all controls on the progress control and its children\n */\n\n\n ProgressControl.prototype.enable = function enable() {\n this.children().forEach(function (child) {\n return child.enable && child.enable();\n });\n\n if (this.enabled()) {\n return;\n }\n\n this.on(['mousedown', 'touchstart'], this.handleMouseDown);\n this.on(this.el_, 'mousemove', this.handleMouseMove);\n this.removeClass('disabled');\n\n this.enabled_ = true;\n };\n\n /**\n * Handle `mousedown` or `touchstart` events on the `ProgressControl`.\n *\n * @param {EventTarget~Event} event\n * `mousedown` or `touchstart` event that triggered this function\n *\n * @listens mousedown\n * @listens touchstart\n */\n\n\n ProgressControl.prototype.handleMouseDown = function handleMouseDown(event) {\n var doc = this.el_.ownerDocument;\n var seekBar = this.getChild('seekBar');\n\n if (seekBar) {\n seekBar.handleMouseDown(event);\n }\n\n this.on(doc, 'mousemove', this.throttledHandleMouseSeek);\n this.on(doc, 'touchmove', this.throttledHandleMouseSeek);\n this.on(doc, 'mouseup', this.handleMouseUp);\n this.on(doc, 'touchend', this.handleMouseUp);\n };\n\n /**\n * Handle `mouseup` or `touchend` events on the `ProgressControl`.\n *\n * @param {EventTarget~Event} event\n * `mouseup` or `touchend` event that triggered this function.\n *\n * @listens touchend\n * @listens mouseup\n */\n\n\n ProgressControl.prototype.handleMouseUp = function handleMouseUp(event) {\n var doc = this.el_.ownerDocument;\n var seekBar = this.getChild('seekBar');\n\n if (seekBar) {\n seekBar.handleMouseUp(event);\n }\n\n this.off(doc, 'mousemove', this.throttledHandleMouseSeek);\n this.off(doc, 'touchmove', this.throttledHandleMouseSeek);\n this.off(doc, 'mouseup', this.handleMouseUp);\n this.off(doc, 'touchend', this.handleMouseUp);\n };\n\n return ProgressControl;\n}(Component);\n\n/**\n * Default options for `ProgressControl`\n *\n * @type {Object}\n * @private\n */\n\n\nProgressControl.prototype.options_ = {\n children: ['seekBar']\n};\n\nComponent.registerComponent('ProgressControl', ProgressControl);\n\n/**\n * @file fullscreen-toggle.js\n */\n/**\n * Toggle fullscreen video\n *\n * @extends Button\n */\n\nvar FullscreenToggle = function (_Button) {\n inherits(FullscreenToggle, _Button);\n\n /**\n * Creates an instance of this class.\n *\n * @param {Player} player\n * The `Player` that this class should be attached to.\n *\n * @param {Object} [options]\n * The key/value store of player options.\n */\n function FullscreenToggle(player, options) {\n classCallCheck(this, FullscreenToggle);\n\n var _this = possibleConstructorReturn(this, _Button.call(this, player, options));\n\n _this.on(player, 'fullscreenchange', _this.handleFullscreenChange);\n return _this;\n }\n\n /**\n * Builds the default DOM `className`.\n *\n * @return {string}\n * The DOM `className` for this object.\n */\n\n\n FullscreenToggle.prototype.buildCSSClass = function buildCSSClass() {\n return 'vjs-fullscreen-control ' + _Button.prototype.buildCSSClass.call(this);\n };\n\n /**\n * Handles fullscreenchange on the player and change control text accordingly.\n *\n * @param {EventTarget~Event} [event]\n * The {@link Player#fullscreenchange} event that caused this function to be\n * called.\n *\n * @listens Player#fullscreenchange\n */\n\n\n FullscreenToggle.prototype.handleFullscreenChange = function handleFullscreenChange(event) {\n if (this.player_.isFullscreen()) {\n this.controlText('Non-Fullscreen');\n } else {\n this.controlText('Fullscreen');\n }\n };\n\n /**\n * This gets called when an `FullscreenToggle` is \"clicked\". See\n * {@link ClickableComponent} for more detailed information on what a click can be.\n *\n * @param {EventTarget~Event} [event]\n * The `keydown`, `tap`, or `click` event that caused this function to be\n * called.\n *\n * @listens tap\n * @listens click\n */\n\n\n FullscreenToggle.prototype.handleClick = function handleClick(event) {\n if (!this.player_.isFullscreen()) {\n this.player_.requestFullscreen();\n } else {\n this.player_.exitFullscreen();\n }\n };\n\n return FullscreenToggle;\n}(Button);\n\n/**\n * The text that should display over the `FullscreenToggle`s controls. Added for localization.\n *\n * @type {string}\n * @private\n */\n\n\nFullscreenToggle.prototype.controlText_ = 'Fullscreen';\n\nComponent.registerComponent('FullscreenToggle', FullscreenToggle);\n\n/**\n * Check if volume control is supported and if it isn't hide the\n * `Component` that was passed using the `vjs-hidden` class.\n *\n * @param {Component} self\n * The component that should be hidden if volume is unsupported\n *\n * @param {Player} player\n * A reference to the player\n *\n * @private\n */\nvar checkVolumeSupport = function checkVolumeSupport(self, player) {\n // hide volume controls when they're not supported by the current tech\n if (player.tech_ && !player.tech_.featuresVolumeControl) {\n self.addClass('vjs-hidden');\n }\n\n self.on(player, 'loadstart', function () {\n if (!player.tech_.featuresVolumeControl) {\n self.addClass('vjs-hidden');\n } else {\n self.removeClass('vjs-hidden');\n }\n });\n};\n\n/**\n * @file volume-level.js\n */\n/**\n * Shows volume level\n *\n * @extends Component\n */\n\nvar VolumeLevel = function (_Component) {\n inherits(VolumeLevel, _Component);\n\n function VolumeLevel() {\n classCallCheck(this, VolumeLevel);\n return possibleConstructorReturn(this, _Component.apply(this, arguments));\n }\n\n /**\n * Create the `Component`'s DOM element\n *\n * @return {Element}\n * The element that was created.\n */\n VolumeLevel.prototype.createEl = function createEl() {\n return _Component.prototype.createEl.call(this, 'div', {\n className: 'vjs-volume-level',\n innerHTML: '<span class=\"vjs-control-text\"></span>'\n });\n };\n\n return VolumeLevel;\n}(Component);\n\nComponent.registerComponent('VolumeLevel', VolumeLevel);\n\n/**\n * @file volume-bar.js\n */\n// Required children\n/**\n * The bar that contains the volume level and can be clicked on to adjust the level\n *\n * @extends Slider\n */\n\nvar VolumeBar = function (_Slider) {\n inherits(VolumeBar, _Slider);\n\n /**\n * Creates an instance of this class.\n *\n * @param {Player} player\n * The `Player` that this class should be attached to.\n *\n * @param {Object} [options]\n * The key/value store of player options.\n */\n function VolumeBar(player, options) {\n classCallCheck(this, VolumeBar);\n\n var _this = possibleConstructorReturn(this, _Slider.call(this, player, options));\n\n _this.on('slideractive', _this.updateLastVolume_);\n _this.on(player, 'volumechange', _this.updateARIAAttributes);\n player.ready(function () {\n return _this.updateARIAAttributes();\n });\n return _this;\n }\n\n /**\n * Create the `Component`'s DOM element\n *\n * @return {Element}\n * The element that was created.\n */\n\n\n VolumeBar.prototype.createEl = function createEl$$1() {\n return _Slider.prototype.createEl.call(this, 'div', {\n className: 'vjs-volume-bar vjs-slider-bar'\n }, {\n 'aria-label': this.localize('Volume Level'),\n 'aria-live': 'polite'\n });\n };\n\n /**\n * Handle mouse down on volume bar\n *\n * @param {EventTarget~Event} event\n * The `mousedown` event that caused this to run.\n *\n * @listens mousedown\n */\n\n\n VolumeBar.prototype.handleMouseDown = function handleMouseDown(event) {\n if (!isSingleLeftClick(event)) {\n return;\n }\n\n _Slider.prototype.handleMouseDown.call(this, event);\n };\n\n /**\n * Handle movement events on the {@link VolumeMenuButton}.\n *\n * @param {EventTarget~Event} event\n * The event that caused this function to run.\n *\n * @listens mousemove\n */\n\n\n VolumeBar.prototype.handleMouseMove = function handleMouseMove(event) {\n if (!isSingleLeftClick(event)) {\n return;\n }\n\n this.checkMuted();\n this.player_.volume(this.calculateDistance(event));\n };\n\n /**\n * If the player is muted unmute it.\n */\n\n\n VolumeBar.prototype.checkMuted = function checkMuted() {\n if (this.player_.muted()) {\n this.player_.muted(false);\n }\n };\n\n /**\n * Get percent of volume level\n *\n * @return {number}\n * Volume level percent as a decimal number.\n */\n\n\n VolumeBar.prototype.getPercent = function getPercent() {\n if (this.player_.muted()) {\n return 0;\n }\n return this.player_.volume();\n };\n\n /**\n * Increase volume level for keyboard users\n */\n\n\n VolumeBar.prototype.stepForward = function stepForward() {\n this.checkMuted();\n this.player_.volume(this.player_.volume() + 0.1);\n };\n\n /**\n * Decrease volume level for keyboard users\n */\n\n\n VolumeBar.prototype.stepBack = function stepBack() {\n this.checkMuted();\n this.player_.volume(this.player_.volume() - 0.1);\n };\n\n /**\n * Update ARIA accessibility attributes\n *\n * @param {EventTarget~Event} [event]\n * The `volumechange` event that caused this function to run.\n *\n * @listens Player#volumechange\n */\n\n\n VolumeBar.prototype.updateARIAAttributes = function updateARIAAttributes(event) {\n var ariaValue = this.player_.muted() ? 0 : this.volumeAsPercentage_();\n\n this.el_.setAttribute('aria-valuenow', ariaValue);\n this.el_.setAttribute('aria-valuetext', ariaValue + '%');\n };\n\n /**\n * Returns the current value of the player volume as a percentage\n *\n * @private\n */\n\n\n VolumeBar.prototype.volumeAsPercentage_ = function volumeAsPercentage_() {\n return Math.round(this.player_.volume() * 100);\n };\n\n /**\n * When user starts dragging the VolumeBar, store the volume and listen for\n * the end of the drag. When the drag ends, if the volume was set to zero,\n * set lastVolume to the stored volume.\n *\n * @listens slideractive\n * @private\n */\n\n\n VolumeBar.prototype.updateLastVolume_ = function updateLastVolume_() {\n var _this2 = this;\n\n var volumeBeforeDrag = this.player_.volume();\n\n this.one('sliderinactive', function () {\n if (_this2.player_.volume() === 0) {\n _this2.player_.lastVolume_(volumeBeforeDrag);\n }\n });\n };\n\n return VolumeBar;\n}(Slider);\n\n/**\n * Default options for the `VolumeBar`\n *\n * @type {Object}\n * @private\n */\n\n\nVolumeBar.prototype.options_ = {\n children: ['volumeLevel'],\n barName: 'volumeLevel'\n};\n\n/**\n * Call the update event for this Slider when this event happens on the player.\n *\n * @type {string}\n */\nVolumeBar.prototype.playerEvent = 'volumechange';\n\nComponent.registerComponent('VolumeBar', VolumeBar);\n\n/**\n * @file volume-control.js\n */\n// Required children\n/**\n * The component for controlling the volume level\n *\n * @extends Component\n */\n\nvar VolumeControl = function (_Component) {\n inherits(VolumeControl, _Component);\n\n /**\n * Creates an instance of this class.\n *\n * @param {Player} player\n * The `Player` that this class should be attached to.\n *\n * @param {Object} [options={}]\n * The key/value store of player options.\n */\n function VolumeControl(player) {\n var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n classCallCheck(this, VolumeControl);\n\n options.vertical = options.vertical || false;\n\n // Pass the vertical option down to the VolumeBar if\n // the VolumeBar is turned on.\n if (typeof options.volumeBar === 'undefined' || isPlain(options.volumeBar)) {\n options.volumeBar = options.volumeBar || {};\n options.volumeBar.vertical = options.vertical;\n }\n\n // hide this control if volume support is missing\n var _this = possibleConstructorReturn(this, _Component.call(this, player, options));\n\n checkVolumeSupport(_this, player);\n\n _this.throttledHandleMouseMove = throttle(bind(_this, _this.handleMouseMove), 25);\n\n _this.on('mousedown', _this.handleMouseDown);\n _this.on('touchstart', _this.handleMouseDown);\n\n // while the slider is active (the mouse has been pressed down and\n // is dragging) or in focus we do not want to hide the VolumeBar\n _this.on(_this.volumeBar, ['focus', 'slideractive'], function () {\n _this.volumeBar.addClass('vjs-slider-active');\n _this.addClass('vjs-slider-active');\n _this.trigger('slideractive');\n });\n\n _this.on(_this.volumeBar, ['blur', 'sliderinactive'], function () {\n _this.volumeBar.removeClass('vjs-slider-active');\n _this.removeClass('vjs-slider-active');\n _this.trigger('sliderinactive');\n });\n return _this;\n }\n\n /**\n * Create the `Component`'s DOM element\n *\n * @return {Element}\n * The element that was created.\n */\n\n\n VolumeControl.prototype.createEl = function createEl() {\n var orientationClass = 'vjs-volume-horizontal';\n\n if (this.options_.vertical) {\n orientationClass = 'vjs-volume-vertical';\n }\n\n return _Component.prototype.createEl.call(this, 'div', {\n className: 'vjs-volume-control vjs-control ' + orientationClass\n });\n };\n\n /**\n * Handle `mousedown` or `touchstart` events on the `VolumeControl`.\n *\n * @param {EventTarget~Event} event\n * `mousedown` or `touchstart` event that triggered this function\n *\n * @listens mousedown\n * @listens touchstart\n */\n\n\n VolumeControl.prototype.handleMouseDown = function handleMouseDown(event) {\n var doc = this.el_.ownerDocument;\n\n this.on(doc, 'mousemove', this.throttledHandleMouseMove);\n this.on(doc, 'touchmove', this.throttledHandleMouseMove);\n this.on(doc, 'mouseup', this.handleMouseUp);\n this.on(doc, 'touchend', this.handleMouseUp);\n };\n\n /**\n * Handle `mouseup` or `touchend` events on the `VolumeControl`.\n *\n * @param {EventTarget~Event} event\n * `mouseup` or `touchend` event that triggered this function.\n *\n * @listens touchend\n * @listens mouseup\n */\n\n\n VolumeControl.prototype.handleMouseUp = function handleMouseUp(event) {\n var doc = this.el_.ownerDocument;\n\n this.off(doc, 'mousemove', this.throttledHandleMouseMove);\n this.off(doc, 'touchmove', this.throttledHandleMouseMove);\n this.off(doc, 'mouseup', this.handleMouseUp);\n this.off(doc, 'touchend', this.handleMouseUp);\n };\n\n /**\n * Handle `mousedown` or `touchstart` events on the `VolumeControl`.\n *\n * @param {EventTarget~Event} event\n * `mousedown` or `touchstart` event that triggered this function\n *\n * @listens mousedown\n * @listens touchstart\n */\n\n\n VolumeControl.prototype.handleMouseMove = function handleMouseMove(event) {\n this.volumeBar.handleMouseMove(event);\n };\n\n return VolumeControl;\n}(Component);\n\n/**\n * Default options for the `VolumeControl`\n *\n * @type {Object}\n * @private\n */\n\n\nVolumeControl.prototype.options_ = {\n children: ['volumeBar']\n};\n\nComponent.registerComponent('VolumeControl', VolumeControl);\n\n/**\n * @file mute-toggle.js\n */\n/**\n * A button component for muting the audio.\n *\n * @extends Button\n */\n\nvar MuteToggle = function (_Button) {\n inherits(MuteToggle, _Button);\n\n /**\n * Creates an instance of this class.\n *\n * @param {Player} player\n * The `Player` that this class should be attached to.\n *\n * @param {Object} [options]\n * The key/value store of player options.\n */\n function MuteToggle(player, options) {\n classCallCheck(this, MuteToggle);\n\n // hide this control if volume support is missing\n var _this = possibleConstructorReturn(this, _Button.call(this, player, options));\n\n checkVolumeSupport(_this, player);\n\n _this.on(player, ['loadstart', 'volumechange'], _this.update);\n return _this;\n }\n\n /**\n * Builds the default DOM `className`.\n *\n * @return {string}\n * The DOM `className` for this object.\n */\n\n\n MuteToggle.prototype.buildCSSClass = function buildCSSClass() {\n return 'vjs-mute-control ' + _Button.prototype.buildCSSClass.call(this);\n };\n\n /**\n * This gets called when an `MuteToggle` is \"clicked\". See\n * {@link ClickableComponent} for more detailed information on what a click can be.\n *\n * @param {EventTarget~Event} [event]\n * The `keydown`, `tap`, or `click` event that caused this function to be\n * called.\n *\n * @listens tap\n * @listens click\n */\n\n\n MuteToggle.prototype.handleClick = function handleClick(event) {\n var vol = this.player_.volume();\n var lastVolume = this.player_.lastVolume_();\n\n if (vol === 0) {\n var volumeToSet = lastVolume < 0.1 ? 0.1 : lastVolume;\n\n this.player_.volume(volumeToSet);\n this.player_.muted(false);\n } else {\n this.player_.muted(this.player_.muted() ? false : true);\n }\n };\n\n /**\n * Update the `MuteToggle` button based on the state of `volume` and `muted`\n * on the player.\n *\n * @param {EventTarget~Event} [event]\n * The {@link Player#loadstart} event if this function was called\n * through an event.\n *\n * @listens Player#loadstart\n * @listens Player#volumechange\n */\n\n\n MuteToggle.prototype.update = function update(event) {\n this.updateIcon_();\n this.updateControlText_();\n };\n\n /**\n * Update the appearance of the `MuteToggle` icon.\n *\n * Possible states (given `level` variable below):\n * - 0: crossed out\n * - 1: zero bars of volume\n * - 2: one bar of volume\n * - 3: two bars of volume\n *\n * @private\n */\n\n\n MuteToggle.prototype.updateIcon_ = function updateIcon_() {\n var vol = this.player_.volume();\n var level = 3;\n\n if (vol === 0 || this.player_.muted()) {\n level = 0;\n } else if (vol < 0.33) {\n level = 1;\n } else if (vol < 0.67) {\n level = 2;\n }\n\n // TODO improve muted icon classes\n for (var i = 0; i < 4; i++) {\n removeClass(this.el_, 'vjs-vol-' + i);\n }\n addClass(this.el_, 'vjs-vol-' + level);\n };\n\n /**\n * If `muted` has changed on the player, update the control text\n * (`title` attribute on `vjs-mute-control` element and content of\n * `vjs-control-text` element).\n *\n * @private\n */\n\n\n MuteToggle.prototype.updateControlText_ = function updateControlText_() {\n var soundOff = this.player_.muted() || this.player_.volume() === 0;\n var text = soundOff ? 'Unmute' : 'Mute';\n\n if (this.controlText() !== text) {\n this.controlText(text);\n }\n };\n\n return MuteToggle;\n}(Button);\n\n/**\n * The text that should display over the `MuteToggle`s controls. Added for localization.\n *\n * @type {string}\n * @private\n */\n\n\nMuteToggle.prototype.controlText_ = 'Mute';\n\nComponent.registerComponent('MuteToggle', MuteToggle);\n\n/**\n * @file volume-control.js\n */\n// Required children\n/**\n * A Component to contain the MuteToggle and VolumeControl so that\n * they can work together.\n *\n * @extends Component\n */\n\nvar VolumePanel = function (_Component) {\n inherits(VolumePanel, _Component);\n\n /**\n * Creates an instance of this class.\n *\n * @param {Player} player\n * The `Player` that this class should be attached to.\n *\n * @param {Object} [options={}]\n * The key/value store of player options.\n */\n function VolumePanel(player) {\n var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n classCallCheck(this, VolumePanel);\n\n if (typeof options.inline !== 'undefined') {\n options.inline = options.inline;\n } else {\n options.inline = true;\n }\n\n // pass the inline option down to the VolumeControl as vertical if\n // the VolumeControl is on.\n if (typeof options.volumeControl === 'undefined' || isPlain(options.volumeControl)) {\n options.volumeControl = options.volumeControl || {};\n options.volumeControl.vertical = !options.inline;\n }\n\n // hide this control if volume support is missing\n var _this = possibleConstructorReturn(this, _Component.call(this, player, options));\n\n checkVolumeSupport(_this, player);\n\n // while the slider is active (the mouse has been pressed down and\n // is dragging) we do not want to hide the VolumeBar\n _this.on(_this.volumeControl, ['slideractive'], _this.sliderActive_);\n\n _this.on(_this.volumeControl, ['sliderinactive'], _this.sliderInactive_);\n return _this;\n }\n\n /**\n * Add vjs-slider-active class to the VolumePanel\n *\n * @listens VolumeControl#slideractive\n * @private\n */\n\n\n VolumePanel.prototype.sliderActive_ = function sliderActive_() {\n this.addClass('vjs-slider-active');\n };\n\n /**\n * Removes vjs-slider-active class to the VolumePanel\n *\n * @listens VolumeControl#sliderinactive\n * @private\n */\n\n\n VolumePanel.prototype.sliderInactive_ = function sliderInactive_() {\n this.removeClass('vjs-slider-active');\n };\n\n /**\n * Create the `Component`'s DOM element\n *\n * @return {Element}\n * The element that was created.\n */\n\n\n VolumePanel.prototype.createEl = function createEl() {\n var orientationClass = 'vjs-volume-panel-horizontal';\n\n if (!this.options_.inline) {\n orientationClass = 'vjs-volume-panel-vertical';\n }\n\n return _Component.prototype.createEl.call(this, 'div', {\n className: 'vjs-volume-panel vjs-control ' + orientationClass\n });\n };\n\n return VolumePanel;\n}(Component);\n\n/**\n * Default options for the `VolumeControl`\n *\n * @type {Object}\n * @private\n */\n\n\nVolumePanel.prototype.options_ = {\n children: ['muteToggle', 'volumeControl']\n};\n\nComponent.registerComponent('VolumePanel', VolumePanel);\n\n/**\n * @file menu.js\n */\n/**\n * The Menu component is used to build popup menus, including subtitle and\n * captions selection menus.\n *\n * @extends Component\n */\n\nvar Menu = function (_Component) {\n inherits(Menu, _Component);\n\n /**\n * Create an instance of this class.\n *\n * @param {Player} player\n * the player that this component should attach to\n *\n * @param {Object} [options]\n * Object of option names and values\n *\n */\n function Menu(player, options) {\n classCallCheck(this, Menu);\n\n var _this = possibleConstructorReturn(this, _Component.call(this, player, options));\n\n if (options) {\n _this.menuButton_ = options.menuButton;\n }\n\n _this.focusedChild_ = -1;\n\n _this.on('keydown', _this.handleKeyPress);\n return _this;\n }\n\n /**\n * Add a {@link MenuItem} to the menu.\n *\n * @param {Object|string} component\n * The name or instance of the `MenuItem` to add.\n *\n */\n\n\n Menu.prototype.addItem = function addItem(component) {\n this.addChild(component);\n component.on('click', bind(this, function (event) {\n // Unpress the associated MenuButton, and move focus back to it\n if (this.menuButton_) {\n this.menuButton_.unpressButton();\n\n // don't focus menu button if item is a caption settings item\n // because focus will move elsewhere and it logs an error on IE8\n if (component.name() !== 'CaptionSettingsMenuItem') {\n this.menuButton_.focus();\n }\n }\n }));\n };\n\n /**\n * Create the `Menu`s DOM element.\n *\n * @return {Element}\n * the element that was created\n */\n\n\n Menu.prototype.createEl = function createEl$$1() {\n var contentElType = this.options_.contentElType || 'ul';\n\n this.contentEl_ = createEl(contentElType, {\n className: 'vjs-menu-content'\n });\n\n this.contentEl_.setAttribute('role', 'menu');\n\n var el = _Component.prototype.createEl.call(this, 'div', {\n append: this.contentEl_,\n className: 'vjs-menu'\n });\n\n el.appendChild(this.contentEl_);\n\n // Prevent clicks from bubbling up. Needed for Menu Buttons,\n // where a click on the parent is significant\n on(el, 'click', function (event) {\n event.preventDefault();\n event.stopImmediatePropagation();\n });\n\n return el;\n };\n\n Menu.prototype.dispose = function dispose() {\n this.contentEl_ = null;\n\n _Component.prototype.dispose.call(this);\n };\n\n /**\n * Handle a `keydown` event on this menu. This listener is added in the constructor.\n *\n * @param {EventTarget~Event} event\n * A `keydown` event that happened on the menu.\n *\n * @listens keydown\n */\n\n\n Menu.prototype.handleKeyPress = function handleKeyPress(event) {\n // Left and Down Arrows\n if (event.which === 37 || event.which === 40) {\n event.preventDefault();\n this.stepForward();\n\n // Up and Right Arrows\n } else if (event.which === 38 || event.which === 39) {\n event.preventDefault();\n this.stepBack();\n }\n };\n\n /**\n * Move to next (lower) menu item for keyboard users.\n */\n\n\n Menu.prototype.stepForward = function stepForward() {\n var stepChild = 0;\n\n if (this.focusedChild_ !== undefined) {\n stepChild = this.focusedChild_ + 1;\n }\n this.focus(stepChild);\n };\n\n /**\n * Move to previous (higher) menu item for keyboard users.\n */\n\n\n Menu.prototype.stepBack = function stepBack() {\n var stepChild = 0;\n\n if (this.focusedChild_ !== undefined) {\n stepChild = this.focusedChild_ - 1;\n }\n this.focus(stepChild);\n };\n\n /**\n * Set focus on a {@link MenuItem} in the `Menu`.\n *\n * @param {Object|string} [item=0]\n * Index of child item set focus on.\n */\n\n\n Menu.prototype.focus = function focus() {\n var item = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 0;\n\n var children = this.children().slice();\n var haveTitle = children.length && children[0].className && /vjs-menu-title/.test(children[0].className);\n\n if (haveTitle) {\n children.shift();\n }\n\n if (children.length > 0) {\n if (item < 0) {\n item = 0;\n } else if (item >= children.length) {\n item = children.length - 1;\n }\n\n this.focusedChild_ = item;\n\n children[item].el_.focus();\n }\n };\n\n return Menu;\n}(Component);\n\nComponent.registerComponent('Menu', Menu);\n\n/**\n * @file menu-button.js\n */\n/**\n * A `MenuButton` class for any popup {@link Menu}.\n *\n * @extends Component\n */\n\nvar MenuButton = function (_Component) {\n inherits(MenuButton, _Component);\n\n /**\n * Creates an instance of this class.\n *\n * @param {Player} player\n * The `Player` that this class should be attached to.\n *\n * @param {Object} [options={}]\n * The key/value store of player options.\n */\n function MenuButton(player) {\n var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n classCallCheck(this, MenuButton);\n\n var _this = possibleConstructorReturn(this, _Component.call(this, player, options));\n\n _this.menuButton_ = new Button(player, options);\n\n _this.menuButton_.controlText(_this.controlText_);\n _this.menuButton_.el_.setAttribute('aria-haspopup', 'true');\n\n // Add buildCSSClass values to the button, not the wrapper\n var buttonClass = Button.prototype.buildCSSClass();\n\n _this.menuButton_.el_.className = _this.buildCSSClass() + ' ' + buttonClass;\n _this.menuButton_.removeClass('vjs-control');\n\n _this.addChild(_this.menuButton_);\n\n _this.update();\n\n _this.enabled_ = true;\n\n _this.on(_this.menuButton_, 'tap', _this.handleClick);\n _this.on(_this.menuButton_, 'click', _this.handleClick);\n _this.on(_this.menuButton_, 'focus', _this.handleFocus);\n _this.on(_this.menuButton_, 'blur', _this.handleBlur);\n\n _this.on('keydown', _this.handleSubmenuKeyPress);\n return _this;\n }\n\n /**\n * Update the menu based on the current state of its items.\n */\n\n\n MenuButton.prototype.update = function update() {\n var menu = this.createMenu();\n\n if (this.menu) {\n this.menu.dispose();\n this.removeChild(this.menu);\n }\n\n this.menu = menu;\n this.addChild(menu);\n\n /**\n * Track the state of the menu button\n *\n * @type {Boolean}\n * @private\n */\n this.buttonPressed_ = false;\n this.menuButton_.el_.setAttribute('aria-expanded', 'false');\n\n if (this.items && this.items.length <= this.hideThreshold_) {\n this.hide();\n } else {\n this.show();\n }\n };\n\n /**\n * Create the menu and add all items to it.\n *\n * @return {Menu}\n * The constructed menu\n */\n\n\n MenuButton.prototype.createMenu = function createMenu() {\n var menu = new Menu(this.player_, { menuButton: this });\n\n /**\n * Hide the menu if the number of items is less than or equal to this threshold. This defaults\n * to 0 and whenever we add items which can be hidden to the menu we'll increment it. We list\n * it here because every time we run `createMenu` we need to reset the value.\n *\n * @protected\n * @type {Number}\n */\n this.hideThreshold_ = 0;\n\n // Add a title list item to the top\n if (this.options_.title) {\n var title = createEl('li', {\n className: 'vjs-menu-title',\n innerHTML: toTitleCase(this.options_.title),\n tabIndex: -1\n });\n\n this.hideThreshold_ += 1;\n\n menu.children_.unshift(title);\n prependTo(title, menu.contentEl());\n }\n\n this.items = this.createItems();\n\n if (this.items) {\n // Add menu items to the menu\n for (var i = 0; i < this.items.length; i++) {\n menu.addItem(this.items[i]);\n }\n }\n\n return menu;\n };\n\n /**\n * Create the list of menu items. Specific to each subclass.\n *\n * @abstract\n */\n\n\n MenuButton.prototype.createItems = function createItems() {};\n\n /**\n * Create the `MenuButtons`s DOM element.\n *\n * @return {Element}\n * The element that gets created.\n */\n\n\n MenuButton.prototype.createEl = function createEl$$1() {\n return _Component.prototype.createEl.call(this, 'div', {\n className: this.buildWrapperCSSClass()\n }, {});\n };\n\n /**\n * Allow sub components to stack CSS class names for the wrapper element\n *\n * @return {string}\n * The constructed wrapper DOM `className`\n */\n\n\n MenuButton.prototype.buildWrapperCSSClass = function buildWrapperCSSClass() {\n var menuButtonClass = 'vjs-menu-button';\n\n // If the inline option is passed, we want to use different styles altogether.\n if (this.options_.inline === true) {\n menuButtonClass += '-inline';\n } else {\n menuButtonClass += '-popup';\n }\n\n // TODO: Fix the CSS so that this isn't necessary\n var buttonClass = Button.prototype.buildCSSClass();\n\n return 'vjs-menu-button ' + menuButtonClass + ' ' + buttonClass + ' ' + _Component.prototype.buildCSSClass.call(this);\n };\n\n /**\n * Builds the default DOM `className`.\n *\n * @return {string}\n * The DOM `className` for this object.\n */\n\n\n MenuButton.prototype.buildCSSClass = function buildCSSClass() {\n var menuButtonClass = 'vjs-menu-button';\n\n // If the inline option is passed, we want to use different styles altogether.\n if (this.options_.inline === true) {\n menuButtonClass += '-inline';\n } else {\n menuButtonClass += '-popup';\n }\n\n return 'vjs-menu-button ' + menuButtonClass + ' ' + _Component.prototype.buildCSSClass.call(this);\n };\n\n /**\n * Get or set the localized control text that will be used for accessibility.\n *\n * > NOTE: This will come from the internal `menuButton_` element.\n *\n * @param {string} [text]\n * Control text for element.\n *\n * @param {Element} [el=this.menuButton_.el()]\n * Element to set the title on.\n *\n * @return {string}\n * - The control text when getting\n */\n\n\n MenuButton.prototype.controlText = function controlText(text) {\n var el = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : this.menuButton_.el();\n\n return this.menuButton_.controlText(text, el);\n };\n\n /**\n * Handle a click on a `MenuButton`.\n * See {@link ClickableComponent#handleClick} for instances where this is called.\n *\n * @param {EventTarget~Event} event\n * The `keydown`, `tap`, or `click` event that caused this function to be\n * called.\n *\n * @listens tap\n * @listens click\n */\n\n\n MenuButton.prototype.handleClick = function handleClick(event) {\n // When you click the button it adds focus, which will show the menu.\n // So we'll remove focus when the mouse leaves the button. Focus is needed\n // for tab navigation.\n\n this.one(this.menu.contentEl(), 'mouseleave', bind(this, function (e) {\n this.unpressButton();\n this.el_.blur();\n }));\n if (this.buttonPressed_) {\n this.unpressButton();\n } else {\n this.pressButton();\n }\n };\n\n /**\n * Set the focus to the actual button, not to this element\n */\n\n\n MenuButton.prototype.focus = function focus() {\n this.menuButton_.focus();\n };\n\n /**\n * Remove the focus from the actual button, not this element\n */\n\n\n MenuButton.prototype.blur = function blur() {\n this.menuButton_.blur();\n };\n\n /**\n * This gets called when a `MenuButton` gains focus via a `focus` event.\n * Turns on listening for `keydown` events. When they happen it\n * calls `this.handleKeyPress`.\n *\n * @param {EventTarget~Event} event\n * The `focus` event that caused this function to be called.\n *\n * @listens focus\n */\n\n\n MenuButton.prototype.handleFocus = function handleFocus() {\n on(document_1, 'keydown', bind(this, this.handleKeyPress));\n };\n\n /**\n * Called when a `MenuButton` loses focus. Turns off the listener for\n * `keydown` events. Which Stops `this.handleKeyPress` from getting called.\n *\n * @param {EventTarget~Event} event\n * The `blur` event that caused this function to be called.\n *\n * @listens blur\n */\n\n\n MenuButton.prototype.handleBlur = function handleBlur() {\n off(document_1, 'keydown', bind(this, this.handleKeyPress));\n };\n\n /**\n * Handle tab, escape, down arrow, and up arrow keys for `MenuButton`. See\n * {@link ClickableComponent#handleKeyPress} for instances where this is called.\n *\n * @param {EventTarget~Event} event\n * The `keydown` event that caused this function to be called.\n *\n * @listens keydown\n */\n\n\n MenuButton.prototype.handleKeyPress = function handleKeyPress(event) {\n\n // Escape (27) key or Tab (9) key unpress the 'button'\n if (event.which === 27 || event.which === 9) {\n if (this.buttonPressed_) {\n this.unpressButton();\n }\n // Don't preventDefault for Tab key - we still want to lose focus\n if (event.which !== 9) {\n event.preventDefault();\n // Set focus back to the menu button's button\n this.menuButton_.el_.focus();\n }\n // Up (38) key or Down (40) key press the 'button'\n } else if (event.which === 38 || event.which === 40) {\n if (!this.buttonPressed_) {\n this.pressButton();\n event.preventDefault();\n }\n }\n };\n\n /**\n * Handle a `keydown` event on a sub-menu. The listener for this is added in\n * the constructor.\n *\n * @param {EventTarget~Event} event\n * Key press event\n *\n * @listens keydown\n */\n\n\n MenuButton.prototype.handleSubmenuKeyPress = function handleSubmenuKeyPress(event) {\n\n // Escape (27) key or Tab (9) key unpress the 'button'\n if (event.which === 27 || event.which === 9) {\n if (this.buttonPressed_) {\n this.unpressButton();\n }\n // Don't preventDefault for Tab key - we still want to lose focus\n if (event.which !== 9) {\n event.preventDefault();\n // Set focus back to the menu button's button\n this.menuButton_.el_.focus();\n }\n }\n };\n\n /**\n * Put the current `MenuButton` into a pressed state.\n */\n\n\n MenuButton.prototype.pressButton = function pressButton() {\n if (this.enabled_) {\n this.buttonPressed_ = true;\n this.menu.lockShowing();\n this.menuButton_.el_.setAttribute('aria-expanded', 'true');\n\n // set the focus into the submenu, except on iOS where it is resulting in\n // undesired scrolling behavior when the player is in an iframe\n if (IS_IOS && isInFrame()) {\n // Return early so that the menu isn't focused\n return;\n }\n\n this.menu.focus();\n }\n };\n\n /**\n * Take the current `MenuButton` out of a pressed state.\n */\n\n\n MenuButton.prototype.unpressButton = function unpressButton() {\n if (this.enabled_) {\n this.buttonPressed_ = false;\n this.menu.unlockShowing();\n this.menuButton_.el_.setAttribute('aria-expanded', 'false');\n }\n };\n\n /**\n * Disable the `MenuButton`. Don't allow it to be clicked.\n */\n\n\n MenuButton.prototype.disable = function disable() {\n this.unpressButton();\n\n this.enabled_ = false;\n this.addClass('vjs-disabled');\n\n this.menuButton_.disable();\n };\n\n /**\n * Enable the `MenuButton`. Allow it to be clicked.\n */\n\n\n MenuButton.prototype.enable = function enable() {\n this.enabled_ = true;\n this.removeClass('vjs-disabled');\n\n this.menuButton_.enable();\n };\n\n return MenuButton;\n}(Component);\n\nComponent.registerComponent('MenuButton', MenuButton);\n\n/**\n * @file track-button.js\n */\n/**\n * The base class for buttons that toggle specific track types (e.g. subtitles).\n *\n * @extends MenuButton\n */\n\nvar TrackButton = function (_MenuButton) {\n inherits(TrackButton, _MenuButton);\n\n /**\n * Creates an instance of this class.\n *\n * @param {Player} player\n * The `Player` that this class should be attached to.\n *\n * @param {Object} [options]\n * The key/value store of player options.\n */\n function TrackButton(player, options) {\n classCallCheck(this, TrackButton);\n\n var tracks = options.tracks;\n\n var _this = possibleConstructorReturn(this, _MenuButton.call(this, player, options));\n\n if (_this.items.length <= 1) {\n _this.hide();\n }\n\n if (!tracks) {\n return possibleConstructorReturn(_this);\n }\n\n var updateHandler = bind(_this, _this.update);\n\n tracks.addEventListener('removetrack', updateHandler);\n tracks.addEventListener('addtrack', updateHandler);\n _this.player_.on('ready', updateHandler);\n\n _this.player_.on('dispose', function () {\n tracks.removeEventListener('removetrack', updateHandler);\n tracks.removeEventListener('addtrack', updateHandler);\n });\n return _this;\n }\n\n return TrackButton;\n}(MenuButton);\n\nComponent.registerComponent('TrackButton', TrackButton);\n\n/**\n * @file menu-item.js\n */\n/**\n * The component for a menu item. `<li>`\n *\n * @extends ClickableComponent\n */\n\nvar MenuItem = function (_ClickableComponent) {\n inherits(MenuItem, _ClickableComponent);\n\n /**\n * Creates an instance of the this class.\n *\n * @param {Player} player\n * The `Player` that this class should be attached to.\n *\n * @param {Object} [options={}]\n * The key/value store of player options.\n *\n */\n function MenuItem(player, options) {\n classCallCheck(this, MenuItem);\n\n var _this = possibleConstructorReturn(this, _ClickableComponent.call(this, player, options));\n\n _this.selectable = options.selectable;\n _this.isSelected_ = options.selected || false;\n\n _this.selected(_this.isSelected_);\n\n if (_this.selectable) {\n // TODO: May need to be either menuitemcheckbox or menuitemradio,\n // and may need logical grouping of menu items.\n _this.el_.setAttribute('role', 'menuitemcheckbox');\n } else {\n _this.el_.setAttribute('role', 'menuitem');\n }\n return _this;\n }\n\n /**\n * Create the `MenuItem's DOM element\n *\n * @param {string} [type=li]\n * Element's node type, not actually used, always set to `li`.\n *\n * @param {Object} [props={}]\n * An object of properties that should be set on the element\n *\n * @param {Object} [attrs={}]\n * An object of attributes that should be set on the element\n *\n * @return {Element}\n * The element that gets created.\n */\n\n\n MenuItem.prototype.createEl = function createEl(type, props, attrs) {\n // The control is textual, not just an icon\n this.nonIconControl = true;\n\n return _ClickableComponent.prototype.createEl.call(this, 'li', assign({\n className: 'vjs-menu-item',\n innerHTML: '<span class=\"vjs-menu-item-text\">' + this.localize(this.options_.label) + '</span>',\n tabIndex: -1\n }, props), attrs);\n };\n\n /**\n * Any click on a `MenuItem` puts int into the selected state.\n * See {@link ClickableComponent#handleClick} for instances where this is called.\n *\n * @param {EventTarget~Event} event\n * The `keydown`, `tap`, or `click` event that caused this function to be\n * called.\n *\n * @listens tap\n * @listens click\n */\n\n\n MenuItem.prototype.handleClick = function handleClick(event) {\n this.selected(true);\n };\n\n /**\n * Set the state for this menu item as selected or not.\n *\n * @param {boolean} selected\n * if the menu item is selected or not\n */\n\n\n MenuItem.prototype.selected = function selected(_selected) {\n if (this.selectable) {\n if (_selected) {\n this.addClass('vjs-selected');\n this.el_.setAttribute('aria-checked', 'true');\n // aria-checked isn't fully supported by browsers/screen readers,\n // so indicate selected state to screen reader in the control text.\n this.controlText(', selected');\n this.isSelected_ = true;\n } else {\n this.removeClass('vjs-selected');\n this.el_.setAttribute('aria-checked', 'false');\n // Indicate un-selected state to screen reader\n this.controlText('');\n this.isSelected_ = false;\n }\n }\n };\n\n return MenuItem;\n}(ClickableComponent);\n\nComponent.registerComponent('MenuItem', MenuItem);\n\n/**\n * @file text-track-menu-item.js\n */\n/**\n * The specific menu item type for selecting a language within a text track kind\n *\n * @extends MenuItem\n */\n\nvar TextTrackMenuItem = function (_MenuItem) {\n inherits(TextTrackMenuItem, _MenuItem);\n\n /**\n * Creates an instance of this class.\n *\n * @param {Player} player\n * The `Player` that this class should be attached to.\n *\n * @param {Object} [options]\n * The key/value store of player options.\n */\n function TextTrackMenuItem(player, options) {\n classCallCheck(this, TextTrackMenuItem);\n\n var track = options.track;\n var tracks = player.textTracks();\n\n // Modify options for parent MenuItem class's init.\n options.label = track.label || track.language || 'Unknown';\n options.selected = track.mode === 'showing';\n\n var _this = possibleConstructorReturn(this, _MenuItem.call(this, player, options));\n\n _this.track = track;\n var changeHandler = function changeHandler() {\n for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n _this.handleTracksChange.apply(_this, args);\n };\n var selectedLanguageChangeHandler = function selectedLanguageChangeHandler() {\n for (var _len2 = arguments.length, args = Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {\n args[_key2] = arguments[_key2];\n }\n\n _this.handleSelectedLanguageChange.apply(_this, args);\n };\n\n player.on(['loadstart', 'texttrackchange'], changeHandler);\n tracks.addEventListener('change', changeHandler);\n tracks.addEventListener('selectedlanguagechange', selectedLanguageChangeHandler);\n _this.on('dispose', function () {\n player.off(['loadstart', 'texttrackchange'], changeHandler);\n tracks.removeEventListener('change', changeHandler);\n tracks.removeEventListener('selectedlanguagechange', selectedLanguageChangeHandler);\n });\n\n // iOS7 doesn't dispatch change events to TextTrackLists when an\n // associated track's mode changes. Without something like\n // Object.observe() (also not present on iOS7), it's not\n // possible to detect changes to the mode attribute and polyfill\n // the change event. As a poor substitute, we manually dispatch\n // change events whenever the controls modify the mode.\n if (tracks.onchange === undefined) {\n var event = void 0;\n\n _this.on(['tap', 'click'], function () {\n if (_typeof(window_1.Event) !== 'object') {\n // Android 2.3 throws an Illegal Constructor error for window.Event\n try {\n event = new window_1.Event('change');\n } catch (err) {\n // continue regardless of error\n }\n }\n\n if (!event) {\n event = document_1.createEvent('Event');\n event.initEvent('change', true, true);\n }\n\n tracks.dispatchEvent(event);\n });\n }\n\n // set the default state based on current tracks\n _this.handleTracksChange();\n return _this;\n }\n\n /**\n * This gets called when an `TextTrackMenuItem` is \"clicked\". See\n * {@link ClickableComponent} for more detailed information on what a click can be.\n *\n * @param {EventTarget~Event} event\n * The `keydown`, `tap`, or `click` event that caused this function to be\n * called.\n *\n * @listens tap\n * @listens click\n */\n\n\n TextTrackMenuItem.prototype.handleClick = function handleClick(event) {\n var kind = this.track.kind;\n var kinds = this.track.kinds;\n var tracks = this.player_.textTracks();\n\n if (!kinds) {\n kinds = [kind];\n }\n\n _MenuItem.prototype.handleClick.call(this, event);\n\n if (!tracks) {\n return;\n }\n\n for (var i = 0; i < tracks.length; i++) {\n var track = tracks[i];\n\n if (track === this.track && kinds.indexOf(track.kind) > -1) {\n if (track.mode !== 'showing') {\n track.mode = 'showing';\n }\n } else if (track.mode !== 'disabled') {\n track.mode = 'disabled';\n }\n }\n };\n\n /**\n * Handle text track list change\n *\n * @param {EventTarget~Event} event\n * The `change` event that caused this function to be called.\n *\n * @listens TextTrackList#change\n */\n\n\n TextTrackMenuItem.prototype.handleTracksChange = function handleTracksChange(event) {\n var shouldBeSelected = this.track.mode === 'showing';\n\n // Prevent redundant selected() calls because they may cause\n // screen readers to read the appended control text unnecessarily\n if (shouldBeSelected !== this.isSelected_) {\n this.selected(shouldBeSelected);\n }\n };\n\n TextTrackMenuItem.prototype.handleSelectedLanguageChange = function handleSelectedLanguageChange(event) {\n if (this.track.mode === 'showing') {\n var selectedLanguage = this.player_.cache_.selectedLanguage;\n\n // Don't replace the kind of track across the same language\n if (selectedLanguage && selectedLanguage.enabled && selectedLanguage.language === this.track.language && selectedLanguage.kind !== this.track.kind) {\n return;\n }\n\n this.player_.cache_.selectedLanguage = {\n enabled: true,\n language: this.track.language,\n kind: this.track.kind\n };\n }\n };\n\n TextTrackMenuItem.prototype.dispose = function dispose() {\n // remove reference to track object on dispose\n this.track = null;\n\n _MenuItem.prototype.dispose.call(this);\n };\n\n return TextTrackMenuItem;\n}(MenuItem);\n\nComponent.registerComponent('TextTrackMenuItem', TextTrackMenuItem);\n\n/**\n * @file off-text-track-menu-item.js\n */\n/**\n * A special menu item for turning of a specific type of text track\n *\n * @extends TextTrackMenuItem\n */\n\nvar OffTextTrackMenuItem = function (_TextTrackMenuItem) {\n inherits(OffTextTrackMenuItem, _TextTrackMenuItem);\n\n /**\n * Creates an instance of this class.\n *\n * @param {Player} player\n * The `Player` that this class should be attached to.\n *\n * @param {Object} [options]\n * The key/value store of player options.\n */\n function OffTextTrackMenuItem(player, options) {\n classCallCheck(this, OffTextTrackMenuItem);\n\n // Create pseudo track info\n // Requires options['kind']\n options.track = {\n player: player,\n kind: options.kind,\n kinds: options.kinds,\n 'default': false,\n mode: 'disabled'\n };\n\n if (!options.kinds) {\n options.kinds = [options.kind];\n }\n\n if (options.label) {\n options.track.label = options.label;\n } else {\n options.track.label = options.kinds.join(' and ') + ' off';\n }\n\n // MenuItem is selectable\n options.selectable = true;\n\n return possibleConstructorReturn(this, _TextTrackMenuItem.call(this, player, options));\n }\n\n /**\n * Handle text track change\n *\n * @param {EventTarget~Event} event\n * The event that caused this function to run\n */\n\n\n OffTextTrackMenuItem.prototype.handleTracksChange = function handleTracksChange(event) {\n var tracks = this.player().textTracks();\n var shouldBeSelected = true;\n\n for (var i = 0, l = tracks.length; i < l; i++) {\n var track = tracks[i];\n\n if (this.options_.kinds.indexOf(track.kind) > -1 && track.mode === 'showing') {\n shouldBeSelected = false;\n break;\n }\n }\n\n // Prevent redundant selected() calls because they may cause\n // screen readers to read the appended control text unnecessarily\n if (shouldBeSelected !== this.isSelected_) {\n this.selected(shouldBeSelected);\n }\n };\n\n OffTextTrackMenuItem.prototype.handleSelectedLanguageChange = function handleSelectedLanguageChange(event) {\n var tracks = this.player().textTracks();\n var allHidden = true;\n\n for (var i = 0, l = tracks.length; i < l; i++) {\n var track = tracks[i];\n\n if (['captions', 'descriptions', 'subtitles'].indexOf(track.kind) > -1 && track.mode === 'showing') {\n allHidden = false;\n break;\n }\n }\n\n if (allHidden) {\n this.player_.cache_.selectedLanguage = {\n enabled: false\n };\n }\n };\n\n return OffTextTrackMenuItem;\n}(TextTrackMenuItem);\n\nComponent.registerComponent('OffTextTrackMenuItem', OffTextTrackMenuItem);\n\n/**\n * @file text-track-button.js\n */\n/**\n * The base class for buttons that toggle specific text track types (e.g. subtitles)\n *\n * @extends MenuButton\n */\n\nvar TextTrackButton = function (_TrackButton) {\n inherits(TextTrackButton, _TrackButton);\n\n /**\n * Creates an instance of this class.\n *\n * @param {Player} player\n * The `Player` that this class should be attached to.\n *\n * @param {Object} [options={}]\n * The key/value store of player options.\n */\n function TextTrackButton(player) {\n var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n classCallCheck(this, TextTrackButton);\n\n options.tracks = player.textTracks();\n\n return possibleConstructorReturn(this, _TrackButton.call(this, player, options));\n }\n\n /**\n * Create a menu item for each text track\n *\n * @param {TextTrackMenuItem[]} [items=[]]\n * Existing array of items to use during creation\n *\n * @return {TextTrackMenuItem[]}\n * Array of menu items that were created\n */\n\n\n TextTrackButton.prototype.createItems = function createItems() {\n var items = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];\n var TrackMenuItem = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : TextTrackMenuItem;\n\n\n // Label is an overide for the [track] off label\n // USed to localise captions/subtitles\n var label = void 0;\n\n if (this.label_) {\n label = this.label_ + ' off';\n }\n // Add an OFF menu item to turn all tracks off\n items.push(new OffTextTrackMenuItem(this.player_, {\n kinds: this.kinds_,\n kind: this.kind_,\n label: label\n }));\n\n this.hideThreshold_ += 1;\n\n var tracks = this.player_.textTracks();\n\n if (!Array.isArray(this.kinds_)) {\n this.kinds_ = [this.kind_];\n }\n\n for (var i = 0; i < tracks.length; i++) {\n var track = tracks[i];\n\n // only add tracks that are of an appropriate kind and have a label\n if (this.kinds_.indexOf(track.kind) > -1) {\n\n var item = new TrackMenuItem(this.player_, {\n track: track,\n // MenuItem is selectable\n selectable: true\n });\n\n item.addClass('vjs-' + track.kind + '-menu-item');\n items.push(item);\n }\n }\n\n return items;\n };\n\n return TextTrackButton;\n}(TrackButton);\n\nComponent.registerComponent('TextTrackButton', TextTrackButton);\n\n/**\n * @file chapters-track-menu-item.js\n */\n/**\n * The chapter track menu item\n *\n * @extends MenuItem\n */\n\nvar ChaptersTrackMenuItem = function (_MenuItem) {\n inherits(ChaptersTrackMenuItem, _MenuItem);\n\n /**\n * Creates an instance of this class.\n *\n * @param {Player} player\n * The `Player` that this class should be attached to.\n *\n * @param {Object} [options]\n * The key/value store of player options.\n */\n function ChaptersTrackMenuItem(player, options) {\n classCallCheck(this, ChaptersTrackMenuItem);\n\n var track = options.track;\n var cue = options.cue;\n var currentTime = player.currentTime();\n\n // Modify options for parent MenuItem class's init.\n options.selectable = true;\n options.label = cue.text;\n options.selected = cue.startTime <= currentTime && currentTime < cue.endTime;\n\n var _this = possibleConstructorReturn(this, _MenuItem.call(this, player, options));\n\n _this.track = track;\n _this.cue = cue;\n track.addEventListener('cuechange', bind(_this, _this.update));\n return _this;\n }\n\n /**\n * This gets called when an `ChaptersTrackMenuItem` is \"clicked\". See\n * {@link ClickableComponent} for more detailed information on what a click can be.\n *\n * @param {EventTarget~Event} [event]\n * The `keydown`, `tap`, or `click` event that caused this function to be\n * called.\n *\n * @listens tap\n * @listens click\n */\n\n\n ChaptersTrackMenuItem.prototype.handleClick = function handleClick(event) {\n _MenuItem.prototype.handleClick.call(this);\n this.player_.currentTime(this.cue.startTime);\n this.update(this.cue.startTime);\n };\n\n /**\n * Update chapter menu item\n *\n * @param {EventTarget~Event} [event]\n * The `cuechange` event that caused this function to run.\n *\n * @listens TextTrack#cuechange\n */\n\n\n ChaptersTrackMenuItem.prototype.update = function update(event) {\n var cue = this.cue;\n var currentTime = this.player_.currentTime();\n\n // vjs.log(currentTime, cue.startTime);\n this.selected(cue.startTime <= currentTime && currentTime < cue.endTime);\n };\n\n return ChaptersTrackMenuItem;\n}(MenuItem);\n\nComponent.registerComponent('ChaptersTrackMenuItem', ChaptersTrackMenuItem);\n\n/**\n * @file chapters-button.js\n */\n/**\n * The button component for toggling and selecting chapters\n * Chapters act much differently than other text tracks\n * Cues are navigation vs. other tracks of alternative languages\n *\n * @extends TextTrackButton\n */\n\nvar ChaptersButton = function (_TextTrackButton) {\n inherits(ChaptersButton, _TextTrackButton);\n\n /**\n * Creates an instance of this class.\n *\n * @param {Player} player\n * The `Player` that this class should be attached to.\n *\n * @param {Object} [options]\n * The key/value store of player options.\n *\n * @param {Component~ReadyCallback} [ready]\n * The function to call when this function is ready.\n */\n function ChaptersButton(player, options, ready) {\n classCallCheck(this, ChaptersButton);\n return possibleConstructorReturn(this, _TextTrackButton.call(this, player, options, ready));\n }\n\n /**\n * Builds the default DOM `className`.\n *\n * @return {string}\n * The DOM `className` for this object.\n */\n\n\n ChaptersButton.prototype.buildCSSClass = function buildCSSClass() {\n return 'vjs-chapters-button ' + _TextTrackButton.prototype.buildCSSClass.call(this);\n };\n\n ChaptersButton.prototype.buildWrapperCSSClass = function buildWrapperCSSClass() {\n return 'vjs-chapters-button ' + _TextTrackButton.prototype.buildWrapperCSSClass.call(this);\n };\n\n /**\n * Update the menu based on the current state of its items.\n *\n * @param {EventTarget~Event} [event]\n * An event that triggered this function to run.\n *\n * @listens TextTrackList#addtrack\n * @listens TextTrackList#removetrack\n * @listens TextTrackList#change\n */\n\n\n ChaptersButton.prototype.update = function update(event) {\n if (!this.track_ || event && (event.type === 'addtrack' || event.type === 'removetrack')) {\n this.setTrack(this.findChaptersTrack());\n }\n _TextTrackButton.prototype.update.call(this);\n };\n\n /**\n * Set the currently selected track for the chapters button.\n *\n * @param {TextTrack} track\n * The new track to select. Nothing will change if this is the currently selected\n * track.\n */\n\n\n ChaptersButton.prototype.setTrack = function setTrack(track) {\n if (this.track_ === track) {\n return;\n }\n\n if (!this.updateHandler_) {\n this.updateHandler_ = this.update.bind(this);\n }\n\n // here this.track_ refers to the old track instance\n if (this.track_) {\n var remoteTextTrackEl = this.player_.remoteTextTrackEls().getTrackElementByTrack_(this.track_);\n\n if (remoteTextTrackEl) {\n remoteTextTrackEl.removeEventListener('load', this.updateHandler_);\n }\n\n this.track_ = null;\n }\n\n this.track_ = track;\n\n // here this.track_ refers to the new track instance\n if (this.track_) {\n this.track_.mode = 'hidden';\n\n var _remoteTextTrackEl = this.player_.remoteTextTrackEls().getTrackElementByTrack_(this.track_);\n\n if (_remoteTextTrackEl) {\n _remoteTextTrackEl.addEventListener('load', this.updateHandler_);\n }\n }\n };\n\n /**\n * Find the track object that is currently in use by this ChaptersButton\n *\n * @return {TextTrack|undefined}\n * The current track or undefined if none was found.\n */\n\n\n ChaptersButton.prototype.findChaptersTrack = function findChaptersTrack() {\n var tracks = this.player_.textTracks() || [];\n\n for (var i = tracks.length - 1; i >= 0; i--) {\n // We will always choose the last track as our chaptersTrack\n var track = tracks[i];\n\n if (track.kind === this.kind_) {\n return track;\n }\n }\n };\n\n /**\n * Get the caption for the ChaptersButton based on the track label. This will also\n * use the current tracks localized kind as a fallback if a label does not exist.\n *\n * @return {string}\n * The tracks current label or the localized track kind.\n */\n\n\n ChaptersButton.prototype.getMenuCaption = function getMenuCaption() {\n if (this.track_ && this.track_.label) {\n return this.track_.label;\n }\n return this.localize(toTitleCase(this.kind_));\n };\n\n /**\n * Create menu from chapter track\n *\n * @return {Menu}\n * New menu for the chapter buttons\n */\n\n\n ChaptersButton.prototype.createMenu = function createMenu() {\n this.options_.title = this.getMenuCaption();\n return _TextTrackButton.prototype.createMenu.call(this);\n };\n\n /**\n * Create a menu item for each text track\n *\n * @return {TextTrackMenuItem[]}\n * Array of menu items\n */\n\n\n ChaptersButton.prototype.createItems = function createItems() {\n var items = [];\n\n if (!this.track_) {\n return items;\n }\n\n var cues = this.track_.cues;\n\n if (!cues) {\n return items;\n }\n\n for (var i = 0, l = cues.length; i < l; i++) {\n var cue = cues[i];\n var mi = new ChaptersTrackMenuItem(this.player_, { track: this.track_, cue: cue });\n\n items.push(mi);\n }\n\n return items;\n };\n\n return ChaptersButton;\n}(TextTrackButton);\n\n/**\n * `kind` of TextTrack to look for to associate it with this menu.\n *\n * @type {string}\n * @private\n */\n\n\nChaptersButton.prototype.kind_ = 'chapters';\n\n/**\n * The text that should display over the `ChaptersButton`s controls. Added for localization.\n *\n * @type {string}\n * @private\n */\nChaptersButton.prototype.controlText_ = 'Chapters';\n\nComponent.registerComponent('ChaptersButton', ChaptersButton);\n\n/**\n * @file descriptions-button.js\n */\n/**\n * The button component for toggling and selecting descriptions\n *\n * @extends TextTrackButton\n */\n\nvar DescriptionsButton = function (_TextTrackButton) {\n inherits(DescriptionsButton, _TextTrackButton);\n\n /**\n * Creates an instance of this class.\n *\n * @param {Player} player\n * The `Player` that this class should be attached to.\n *\n * @param {Object} [options]\n * The key/value store of player options.\n *\n * @param {Component~ReadyCallback} [ready]\n * The function to call when this component is ready.\n */\n function DescriptionsButton(player, options, ready) {\n classCallCheck(this, DescriptionsButton);\n\n var _this = possibleConstructorReturn(this, _TextTrackButton.call(this, player, options, ready));\n\n var tracks = player.textTracks();\n var changeHandler = bind(_this, _this.handleTracksChange);\n\n tracks.addEventListener('change', changeHandler);\n _this.on('dispose', function () {\n tracks.removeEventListener('change', changeHandler);\n });\n return _this;\n }\n\n /**\n * Handle text track change\n *\n * @param {EventTarget~Event} event\n * The event that caused this function to run\n *\n * @listens TextTrackList#change\n */\n\n\n DescriptionsButton.prototype.handleTracksChange = function handleTracksChange(event) {\n var tracks = this.player().textTracks();\n var disabled = false;\n\n // Check whether a track of a different kind is showing\n for (var i = 0, l = tracks.length; i < l; i++) {\n var track = tracks[i];\n\n if (track.kind !== this.kind_ && track.mode === 'showing') {\n disabled = true;\n break;\n }\n }\n\n // If another track is showing, disable this menu button\n if (disabled) {\n this.disable();\n } else {\n this.enable();\n }\n };\n\n /**\n * Builds the default DOM `className`.\n *\n * @return {string}\n * The DOM `className` for this object.\n */\n\n\n DescriptionsButton.prototype.buildCSSClass = function buildCSSClass() {\n return 'vjs-descriptions-button ' + _TextTrackButton.prototype.buildCSSClass.call(this);\n };\n\n DescriptionsButton.prototype.buildWrapperCSSClass = function buildWrapperCSSClass() {\n return 'vjs-descriptions-button ' + _TextTrackButton.prototype.buildWrapperCSSClass.call(this);\n };\n\n return DescriptionsButton;\n}(TextTrackButton);\n\n/**\n * `kind` of TextTrack to look for to associate it with this menu.\n *\n * @type {string}\n * @private\n */\n\n\nDescriptionsButton.prototype.kind_ = 'descriptions';\n\n/**\n * The text that should display over the `DescriptionsButton`s controls. Added for localization.\n *\n * @type {string}\n * @private\n */\nDescriptionsButton.prototype.controlText_ = 'Descriptions';\n\nComponent.registerComponent('DescriptionsButton', DescriptionsButton);\n\n/**\n * @file subtitles-button.js\n */\n/**\n * The button component for toggling and selecting subtitles\n *\n * @extends TextTrackButton\n */\n\nvar SubtitlesButton = function (_TextTrackButton) {\n inherits(SubtitlesButton, _TextTrackButton);\n\n /**\n * Creates an instance of this class.\n *\n * @param {Player} player\n * The `Player` that this class should be attached to.\n *\n * @param {Object} [options]\n * The key/value store of player options.\n *\n * @param {Component~ReadyCallback} [ready]\n * The function to call when this component is ready.\n */\n function SubtitlesButton(player, options, ready) {\n classCallCheck(this, SubtitlesButton);\n return possibleConstructorReturn(this, _TextTrackButton.call(this, player, options, ready));\n }\n\n /**\n * Builds the default DOM `className`.\n *\n * @return {string}\n * The DOM `className` for this object.\n */\n\n\n SubtitlesButton.prototype.buildCSSClass = function buildCSSClass() {\n return 'vjs-subtitles-button ' + _TextTrackButton.prototype.buildCSSClass.call(this);\n };\n\n SubtitlesButton.prototype.buildWrapperCSSClass = function buildWrapperCSSClass() {\n return 'vjs-subtitles-button ' + _TextTrackButton.prototype.buildWrapperCSSClass.call(this);\n };\n\n return SubtitlesButton;\n}(TextTrackButton);\n\n/**\n * `kind` of TextTrack to look for to associate it with this menu.\n *\n * @type {string}\n * @private\n */\n\n\nSubtitlesButton.prototype.kind_ = 'subtitles';\n\n/**\n * The text that should display over the `SubtitlesButton`s controls. Added for localization.\n *\n * @type {string}\n * @private\n */\nSubtitlesButton.prototype.controlText_ = 'Subtitles';\n\nComponent.registerComponent('SubtitlesButton', SubtitlesButton);\n\n/**\n * @file caption-settings-menu-item.js\n */\n/**\n * The menu item for caption track settings menu\n *\n * @extends TextTrackMenuItem\n */\n\nvar CaptionSettingsMenuItem = function (_TextTrackMenuItem) {\n inherits(CaptionSettingsMenuItem, _TextTrackMenuItem);\n\n /**\n * Creates an instance of this class.\n *\n * @param {Player} player\n * The `Player` that this class should be attached to.\n *\n * @param {Object} [options]\n * The key/value store of player options.\n */\n function CaptionSettingsMenuItem(player, options) {\n classCallCheck(this, CaptionSettingsMenuItem);\n\n options.track = {\n player: player,\n kind: options.kind,\n label: options.kind + ' settings',\n selectable: false,\n 'default': false,\n mode: 'disabled'\n };\n\n // CaptionSettingsMenuItem has no concept of 'selected'\n options.selectable = false;\n\n options.name = 'CaptionSettingsMenuItem';\n\n var _this = possibleConstructorReturn(this, _TextTrackMenuItem.call(this, player, options));\n\n _this.addClass('vjs-texttrack-settings');\n _this.controlText(', opens ' + options.kind + ' settings dialog');\n return _this;\n }\n\n /**\n * This gets called when an `CaptionSettingsMenuItem` is \"clicked\". See\n * {@link ClickableComponent} for more detailed information on what a click can be.\n *\n * @param {EventTarget~Event} [event]\n * The `keydown`, `tap`, or `click` event that caused this function to be\n * called.\n *\n * @listens tap\n * @listens click\n */\n\n\n CaptionSettingsMenuItem.prototype.handleClick = function handleClick(event) {\n this.player().getChild('textTrackSettings').open();\n };\n\n return CaptionSettingsMenuItem;\n}(TextTrackMenuItem);\n\nComponent.registerComponent('CaptionSettingsMenuItem', CaptionSettingsMenuItem);\n\n/**\n * @file captions-button.js\n */\n/**\n * The button component for toggling and selecting captions\n *\n * @extends TextTrackButton\n */\n\nvar CaptionsButton = function (_TextTrackButton) {\n inherits(CaptionsButton, _TextTrackButton);\n\n /**\n * Creates an instance of this class.\n *\n * @param {Player} player\n * The `Player` that this class should be attached to.\n *\n * @param {Object} [options]\n * The key/value store of player options.\n *\n * @param {Component~ReadyCallback} [ready]\n * The function to call when this component is ready.\n */\n function CaptionsButton(player, options, ready) {\n classCallCheck(this, CaptionsButton);\n return possibleConstructorReturn(this, _TextTrackButton.call(this, player, options, ready));\n }\n\n /**\n * Builds the default DOM `className`.\n *\n * @return {string}\n * The DOM `className` for this object.\n */\n\n\n CaptionsButton.prototype.buildCSSClass = function buildCSSClass() {\n return 'vjs-captions-button ' + _TextTrackButton.prototype.buildCSSClass.call(this);\n };\n\n CaptionsButton.prototype.buildWrapperCSSClass = function buildWrapperCSSClass() {\n return 'vjs-captions-button ' + _TextTrackButton.prototype.buildWrapperCSSClass.call(this);\n };\n\n /**\n * Create caption menu items\n *\n * @return {CaptionSettingsMenuItem[]}\n * The array of current menu items.\n */\n\n\n CaptionsButton.prototype.createItems = function createItems() {\n var items = [];\n\n if (!(this.player().tech_ && this.player().tech_.featuresNativeTextTracks)) {\n items.push(new CaptionSettingsMenuItem(this.player_, { kind: this.kind_ }));\n\n this.hideThreshold_ += 1;\n }\n\n return _TextTrackButton.prototype.createItems.call(this, items);\n };\n\n return CaptionsButton;\n}(TextTrackButton);\n\n/**\n * `kind` of TextTrack to look for to associate it with this menu.\n *\n * @type {string}\n * @private\n */\n\n\nCaptionsButton.prototype.kind_ = 'captions';\n\n/**\n * The text that should display over the `CaptionsButton`s controls. Added for localization.\n *\n * @type {string}\n * @private\n */\nCaptionsButton.prototype.controlText_ = 'Captions';\n\nComponent.registerComponent('CaptionsButton', CaptionsButton);\n\n/**\n * @file subs-caps-menu-item.js\n */\n/**\n * SubsCapsMenuItem has an [cc] icon to distinguish captions from subtitles\n * in the SubsCapsMenu.\n *\n * @extends TextTrackMenuItem\n */\n\nvar SubsCapsMenuItem = function (_TextTrackMenuItem) {\n inherits(SubsCapsMenuItem, _TextTrackMenuItem);\n\n function SubsCapsMenuItem() {\n classCallCheck(this, SubsCapsMenuItem);\n return possibleConstructorReturn(this, _TextTrackMenuItem.apply(this, arguments));\n }\n\n SubsCapsMenuItem.prototype.createEl = function createEl(type, props, attrs) {\n var innerHTML = '<span class=\"vjs-menu-item-text\">' + this.localize(this.options_.label);\n\n if (this.options_.track.kind === 'captions') {\n innerHTML += '\\n <span aria-hidden=\"true\" class=\"vjs-icon-placeholder\"></span>\\n <span class=\"vjs-control-text\"> ' + this.localize('Captions') + '</span>\\n ';\n }\n\n innerHTML += '</span>';\n\n var el = _TextTrackMenuItem.prototype.createEl.call(this, type, assign({\n innerHTML: innerHTML\n }, props), attrs);\n\n return el;\n };\n\n return SubsCapsMenuItem;\n}(TextTrackMenuItem);\n\nComponent.registerComponent('SubsCapsMenuItem', SubsCapsMenuItem);\n\n/**\n * @file sub-caps-button.js\n */\n/**\n * The button component for toggling and selecting captions and/or subtitles\n *\n * @extends TextTrackButton\n */\n\nvar SubsCapsButton = function (_TextTrackButton) {\n inherits(SubsCapsButton, _TextTrackButton);\n\n function SubsCapsButton(player) {\n var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n classCallCheck(this, SubsCapsButton);\n\n // Although North America uses \"captions\" in most cases for\n // \"captions and subtitles\" other locales use \"subtitles\"\n var _this = possibleConstructorReturn(this, _TextTrackButton.call(this, player, options));\n\n _this.label_ = 'subtitles';\n if (['en', 'en-us', 'en-ca', 'fr-ca'].indexOf(_this.player_.language_) > -1) {\n _this.label_ = 'captions';\n }\n _this.menuButton_.controlText(toTitleCase(_this.label_));\n return _this;\n }\n\n /**\n * Builds the default DOM `className`.\n *\n * @return {string}\n * The DOM `className` for this object.\n */\n\n\n SubsCapsButton.prototype.buildCSSClass = function buildCSSClass() {\n return 'vjs-subs-caps-button ' + _TextTrackButton.prototype.buildCSSClass.call(this);\n };\n\n SubsCapsButton.prototype.buildWrapperCSSClass = function buildWrapperCSSClass() {\n return 'vjs-subs-caps-button ' + _TextTrackButton.prototype.buildWrapperCSSClass.call(this);\n };\n\n /**\n * Create caption/subtitles menu items\n *\n * @return {CaptionSettingsMenuItem[]}\n * The array of current menu items.\n */\n\n\n SubsCapsButton.prototype.createItems = function createItems() {\n var items = [];\n\n if (!(this.player().tech_ && this.player().tech_.featuresNativeTextTracks)) {\n items.push(new CaptionSettingsMenuItem(this.player_, { kind: this.label_ }));\n\n this.hideThreshold_ += 1;\n }\n\n items = _TextTrackButton.prototype.createItems.call(this, items, SubsCapsMenuItem);\n return items;\n };\n\n return SubsCapsButton;\n}(TextTrackButton);\n\n/**\n * `kind`s of TextTrack to look for to associate it with this menu.\n *\n * @type {array}\n * @private\n */\n\n\nSubsCapsButton.prototype.kinds_ = ['captions', 'subtitles'];\n\n/**\n * The text that should display over the `SubsCapsButton`s controls.\n *\n *\n * @type {string}\n * @private\n */\nSubsCapsButton.prototype.controlText_ = 'Subtitles';\n\nComponent.registerComponent('SubsCapsButton', SubsCapsButton);\n\n/**\n * @file audio-track-menu-item.js\n */\n/**\n * An {@link AudioTrack} {@link MenuItem}\n *\n * @extends MenuItem\n */\n\nvar AudioTrackMenuItem = function (_MenuItem) {\n inherits(AudioTrackMenuItem, _MenuItem);\n\n /**\n * Creates an instance of this class.\n *\n * @param {Player} player\n * The `Player` that this class should be attached to.\n *\n * @param {Object} [options]\n * The key/value store of player options.\n */\n function AudioTrackMenuItem(player, options) {\n classCallCheck(this, AudioTrackMenuItem);\n\n var track = options.track;\n var tracks = player.audioTracks();\n\n // Modify options for parent MenuItem class's init.\n options.label = track.label || track.language || 'Unknown';\n options.selected = track.enabled;\n\n var _this = possibleConstructorReturn(this, _MenuItem.call(this, player, options));\n\n _this.track = track;\n\n var changeHandler = function changeHandler() {\n for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n _this.handleTracksChange.apply(_this, args);\n };\n\n tracks.addEventListener('change', changeHandler);\n _this.on('dispose', function () {\n tracks.removeEventListener('change', changeHandler);\n });\n return _this;\n }\n\n /**\n * This gets called when an `AudioTrackMenuItem is \"clicked\". See {@link ClickableComponent}\n * for more detailed information on what a click can be.\n *\n * @param {EventTarget~Event} [event]\n * The `keydown`, `tap`, or `click` event that caused this function to be\n * called.\n *\n * @listens tap\n * @listens click\n */\n\n\n AudioTrackMenuItem.prototype.handleClick = function handleClick(event) {\n var tracks = this.player_.audioTracks();\n\n _MenuItem.prototype.handleClick.call(this, event);\n\n for (var i = 0; i < tracks.length; i++) {\n var track = tracks[i];\n\n track.enabled = track === this.track;\n }\n };\n\n /**\n * Handle any {@link AudioTrack} change.\n *\n * @param {EventTarget~Event} [event]\n * The {@link AudioTrackList#change} event that caused this to run.\n *\n * @listens AudioTrackList#change\n */\n\n\n AudioTrackMenuItem.prototype.handleTracksChange = function handleTracksChange(event) {\n this.selected(this.track.enabled);\n };\n\n return AudioTrackMenuItem;\n}(MenuItem);\n\nComponent.registerComponent('AudioTrackMenuItem', AudioTrackMenuItem);\n\n/**\n * @file audio-track-button.js\n */\n/**\n * The base class for buttons that toggle specific {@link AudioTrack} types.\n *\n * @extends TrackButton\n */\n\nvar AudioTrackButton = function (_TrackButton) {\n inherits(AudioTrackButton, _TrackButton);\n\n /**\n * Creates an instance of this class.\n *\n * @param {Player} player\n * The `Player` that this class should be attached to.\n *\n * @param {Object} [options={}]\n * The key/value store of player options.\n */\n function AudioTrackButton(player) {\n var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n classCallCheck(this, AudioTrackButton);\n\n options.tracks = player.audioTracks();\n\n return possibleConstructorReturn(this, _TrackButton.call(this, player, options));\n }\n\n /**\n * Builds the default DOM `className`.\n *\n * @return {string}\n * The DOM `className` for this object.\n */\n\n\n AudioTrackButton.prototype.buildCSSClass = function buildCSSClass() {\n return 'vjs-audio-button ' + _TrackButton.prototype.buildCSSClass.call(this);\n };\n\n AudioTrackButton.prototype.buildWrapperCSSClass = function buildWrapperCSSClass() {\n return 'vjs-audio-button ' + _TrackButton.prototype.buildWrapperCSSClass.call(this);\n };\n\n /**\n * Create a menu item for each audio track\n *\n * @param {AudioTrackMenuItem[]} [items=[]]\n * An array of existing menu items to use.\n *\n * @return {AudioTrackMenuItem[]}\n * An array of menu items\n */\n\n\n AudioTrackButton.prototype.createItems = function createItems() {\n var items = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];\n\n // if there's only one audio track, there no point in showing it\n this.hideThreshold_ = 1;\n\n var tracks = this.player_.audioTracks();\n\n for (var i = 0; i < tracks.length; i++) {\n var track = tracks[i];\n\n items.push(new AudioTrackMenuItem(this.player_, {\n track: track,\n // MenuItem is selectable\n selectable: true\n }));\n }\n\n return items;\n };\n\n return AudioTrackButton;\n}(TrackButton);\n\n/**\n * The text that should display over the `AudioTrackButton`s controls. Added for localization.\n *\n * @type {string}\n * @private\n */\n\n\nAudioTrackButton.prototype.controlText_ = 'Audio Track';\nComponent.registerComponent('AudioTrackButton', AudioTrackButton);\n\n/**\n * @file playback-rate-menu-item.js\n */\n/**\n * The specific menu item type for selecting a playback rate.\n *\n * @extends MenuItem\n */\n\nvar PlaybackRateMenuItem = function (_MenuItem) {\n inherits(PlaybackRateMenuItem, _MenuItem);\n\n /**\n * Creates an instance of this class.\n *\n * @param {Player} player\n * The `Player` that this class should be attached to.\n *\n * @param {Object} [options]\n * The key/value store of player options.\n */\n function PlaybackRateMenuItem(player, options) {\n classCallCheck(this, PlaybackRateMenuItem);\n\n var label = options.rate;\n var rate = parseFloat(label, 10);\n\n // Modify options for parent MenuItem class's init.\n options.label = label;\n options.selected = rate === 1;\n options.selectable = true;\n\n var _this = possibleConstructorReturn(this, _MenuItem.call(this, player, options));\n\n _this.label = label;\n _this.rate = rate;\n\n _this.on(player, 'ratechange', _this.update);\n return _this;\n }\n\n /**\n * This gets called when an `PlaybackRateMenuItem` is \"clicked\". See\n * {@link ClickableComponent} for more detailed information on what a click can be.\n *\n * @param {EventTarget~Event} [event]\n * The `keydown`, `tap`, or `click` event that caused this function to be\n * called.\n *\n * @listens tap\n * @listens click\n */\n\n\n PlaybackRateMenuItem.prototype.handleClick = function handleClick(event) {\n _MenuItem.prototype.handleClick.call(this);\n this.player().playbackRate(this.rate);\n };\n\n /**\n * Update the PlaybackRateMenuItem when the playbackrate changes.\n *\n * @param {EventTarget~Event} [event]\n * The `ratechange` event that caused this function to run.\n *\n * @listens Player#ratechange\n */\n\n\n PlaybackRateMenuItem.prototype.update = function update(event) {\n this.selected(this.player().playbackRate() === this.rate);\n };\n\n return PlaybackRateMenuItem;\n}(MenuItem);\n\n/**\n * The text that should display over the `PlaybackRateMenuItem`s controls. Added for localization.\n *\n * @type {string}\n * @private\n */\n\n\nPlaybackRateMenuItem.prototype.contentElType = 'button';\n\nComponent.registerComponent('PlaybackRateMenuItem', PlaybackRateMenuItem);\n\n/**\n * @file playback-rate-menu-button.js\n */\n/**\n * The component for controlling the playback rate.\n *\n * @extends MenuButton\n */\n\nvar PlaybackRateMenuButton = function (_MenuButton) {\n inherits(PlaybackRateMenuButton, _MenuButton);\n\n /**\n * Creates an instance of this class.\n *\n * @param {Player} player\n * The `Player` that this class should be attached to.\n *\n * @param {Object} [options]\n * The key/value store of player options.\n */\n function PlaybackRateMenuButton(player, options) {\n classCallCheck(this, PlaybackRateMenuButton);\n\n var _this = possibleConstructorReturn(this, _MenuButton.call(this, player, options));\n\n _this.updateVisibility();\n _this.updateLabel();\n\n _this.on(player, 'loadstart', _this.updateVisibility);\n _this.on(player, 'ratechange', _this.updateLabel);\n return _this;\n }\n\n /**\n * Create the `Component`'s DOM element\n *\n * @return {Element}\n * The element that was created.\n */\n\n\n PlaybackRateMenuButton.prototype.createEl = function createEl$$1() {\n var el = _MenuButton.prototype.createEl.call(this);\n\n this.labelEl_ = createEl('div', {\n className: 'vjs-playback-rate-value',\n innerHTML: '1x'\n });\n\n el.appendChild(this.labelEl_);\n\n return el;\n };\n\n PlaybackRateMenuButton.prototype.dispose = function dispose() {\n this.labelEl_ = null;\n\n _MenuButton.prototype.dispose.call(this);\n };\n\n /**\n * Builds the default DOM `className`.\n *\n * @return {string}\n * The DOM `className` for this object.\n */\n\n\n PlaybackRateMenuButton.prototype.buildCSSClass = function buildCSSClass() {\n return 'vjs-playback-rate ' + _MenuButton.prototype.buildCSSClass.call(this);\n };\n\n PlaybackRateMenuButton.prototype.buildWrapperCSSClass = function buildWrapperCSSClass() {\n return 'vjs-playback-rate ' + _MenuButton.prototype.buildWrapperCSSClass.call(this);\n };\n\n /**\n * Create the playback rate menu\n *\n * @return {Menu}\n * Menu object populated with {@link PlaybackRateMenuItem}s\n */\n\n\n PlaybackRateMenuButton.prototype.createMenu = function createMenu() {\n var menu = new Menu(this.player());\n var rates = this.playbackRates();\n\n if (rates) {\n for (var i = rates.length - 1; i >= 0; i--) {\n menu.addChild(new PlaybackRateMenuItem(this.player(), { rate: rates[i] + 'x' }));\n }\n }\n\n return menu;\n };\n\n /**\n * Updates ARIA accessibility attributes\n */\n\n\n PlaybackRateMenuButton.prototype.updateARIAAttributes = function updateARIAAttributes() {\n // Current playback rate\n this.el().setAttribute('aria-valuenow', this.player().playbackRate());\n };\n\n /**\n * This gets called when an `PlaybackRateMenuButton` is \"clicked\". See\n * {@link ClickableComponent} for more detailed information on what a click can be.\n *\n * @param {EventTarget~Event} [event]\n * The `keydown`, `tap`, or `click` event that caused this function to be\n * called.\n *\n * @listens tap\n * @listens click\n */\n\n\n PlaybackRateMenuButton.prototype.handleClick = function handleClick(event) {\n // select next rate option\n var currentRate = this.player().playbackRate();\n var rates = this.playbackRates();\n\n // this will select first one if the last one currently selected\n var newRate = rates[0];\n\n for (var i = 0; i < rates.length; i++) {\n if (rates[i] > currentRate) {\n newRate = rates[i];\n break;\n }\n }\n this.player().playbackRate(newRate);\n };\n\n /**\n * Get possible playback rates\n *\n * @return {Array}\n * All possible playback rates\n */\n\n\n PlaybackRateMenuButton.prototype.playbackRates = function playbackRates() {\n return this.options_.playbackRates || this.options_.playerOptions && this.options_.playerOptions.playbackRates;\n };\n\n /**\n * Get whether playback rates is supported by the tech\n * and an array of playback rates exists\n *\n * @return {boolean}\n * Whether changing playback rate is supported\n */\n\n\n PlaybackRateMenuButton.prototype.playbackRateSupported = function playbackRateSupported() {\n return this.player().tech_ && this.player().tech_.featuresPlaybackRate && this.playbackRates() && this.playbackRates().length > 0;\n };\n\n /**\n * Hide playback rate controls when they're no playback rate options to select\n *\n * @param {EventTarget~Event} [event]\n * The event that caused this function to run.\n *\n * @listens Player#loadstart\n */\n\n\n PlaybackRateMenuButton.prototype.updateVisibility = function updateVisibility(event) {\n if (this.playbackRateSupported()) {\n this.removeClass('vjs-hidden');\n } else {\n this.addClass('vjs-hidden');\n }\n };\n\n /**\n * Update button label when rate changed\n *\n * @param {EventTarget~Event} [event]\n * The event that caused this function to run.\n *\n * @listens Player#ratechange\n */\n\n\n PlaybackRateMenuButton.prototype.updateLabel = function updateLabel(event) {\n if (this.playbackRateSupported()) {\n this.labelEl_.innerHTML = this.player().playbackRate() + 'x';\n }\n };\n\n return PlaybackRateMenuButton;\n}(MenuButton);\n\n/**\n * The text that should display over the `FullscreenToggle`s controls. Added for localization.\n *\n * @type {string}\n * @private\n */\n\n\nPlaybackRateMenuButton.prototype.controlText_ = 'Playback Rate';\n\nComponent.registerComponent('PlaybackRateMenuButton', PlaybackRateMenuButton);\n\n/**\n * @file spacer.js\n */\n/**\n * Just an empty spacer element that can be used as an append point for plugins, etc.\n * Also can be used to create space between elements when necessary.\n *\n * @extends Component\n */\n\nvar Spacer = function (_Component) {\n inherits(Spacer, _Component);\n\n function Spacer() {\n classCallCheck(this, Spacer);\n return possibleConstructorReturn(this, _Component.apply(this, arguments));\n }\n\n /**\n * Builds the default DOM `className`.\n *\n * @return {string}\n * The DOM `className` for this object.\n */\n Spacer.prototype.buildCSSClass = function buildCSSClass() {\n return 'vjs-spacer ' + _Component.prototype.buildCSSClass.call(this);\n };\n\n /**\n * Create the `Component`'s DOM element\n *\n * @return {Element}\n * The element that was created.\n */\n\n\n Spacer.prototype.createEl = function createEl() {\n return _Component.prototype.createEl.call(this, 'div', {\n className: this.buildCSSClass()\n });\n };\n\n return Spacer;\n}(Component);\n\nComponent.registerComponent('Spacer', Spacer);\n\n/**\n * @file custom-control-spacer.js\n */\n/**\n * Spacer specifically meant to be used as an insertion point for new plugins, etc.\n *\n * @extends Spacer\n */\n\nvar CustomControlSpacer = function (_Spacer) {\n inherits(CustomControlSpacer, _Spacer);\n\n function CustomControlSpacer() {\n classCallCheck(this, CustomControlSpacer);\n return possibleConstructorReturn(this, _Spacer.apply(this, arguments));\n }\n\n /**\n * Builds the default DOM `className`.\n *\n * @return {string}\n * The DOM `className` for this object.\n */\n CustomControlSpacer.prototype.buildCSSClass = function buildCSSClass() {\n return 'vjs-custom-control-spacer ' + _Spacer.prototype.buildCSSClass.call(this);\n };\n\n /**\n * Create the `Component`'s DOM element\n *\n * @return {Element}\n * The element that was created.\n */\n\n\n CustomControlSpacer.prototype.createEl = function createEl() {\n var el = _Spacer.prototype.createEl.call(this, {\n className: this.buildCSSClass()\n });\n\n // No-flex/table-cell mode requires there be some content\n // in the cell to fill the remaining space of the table.\n el.innerHTML = '\\xA0';\n return el;\n };\n\n return CustomControlSpacer;\n}(Spacer);\n\nComponent.registerComponent('CustomControlSpacer', CustomControlSpacer);\n\n/**\n * @file control-bar.js\n */\n// Required children\n/**\n * Container of main controls.\n *\n * @extends Component\n */\n\nvar ControlBar = function (_Component) {\n inherits(ControlBar, _Component);\n\n function ControlBar() {\n classCallCheck(this, ControlBar);\n return possibleConstructorReturn(this, _Component.apply(this, arguments));\n }\n\n /**\n * Create the `Component`'s DOM element\n *\n * @return {Element}\n * The element that was created.\n */\n ControlBar.prototype.createEl = function createEl() {\n return _Component.prototype.createEl.call(this, 'div', {\n className: 'vjs-control-bar',\n dir: 'ltr'\n }, {\n // The control bar is a group, but we don't aria-label it to avoid\n // over-announcing by JAWS\n role: 'group'\n });\n };\n\n return ControlBar;\n}(Component);\n\n/**\n * Default options for `ControlBar`\n *\n * @type {Object}\n * @private\n */\n\n\nControlBar.prototype.options_ = {\n children: ['playToggle', 'volumePanel', 'currentTimeDisplay', 'timeDivider', 'durationDisplay', 'progressControl', 'liveDisplay', 'remainingTimeDisplay', 'customControlSpacer', 'playbackRateMenuButton', 'chaptersButton', 'descriptionsButton', 'subsCapsButton', 'audioTrackButton', 'fullscreenToggle']\n};\n\nComponent.registerComponent('ControlBar', ControlBar);\n\n/**\n * @file error-display.js\n */\n/**\n * A display that indicates an error has occurred. This means that the video\n * is unplayable.\n *\n * @extends ModalDialog\n */\n\nvar ErrorDisplay = function (_ModalDialog) {\n inherits(ErrorDisplay, _ModalDialog);\n\n /**\n * Creates an instance of this class.\n *\n * @param {Player} player\n * The `Player` that this class should be attached to.\n *\n * @param {Object} [options]\n * The key/value store of player options.\n */\n function ErrorDisplay(player, options) {\n classCallCheck(this, ErrorDisplay);\n\n var _this = possibleConstructorReturn(this, _ModalDialog.call(this, player, options));\n\n _this.on(player, 'error', _this.open);\n return _this;\n }\n\n /**\n * Builds the default DOM `className`.\n *\n * @return {string}\n * The DOM `className` for this object.\n *\n * @deprecated Since version 5.\n */\n\n\n ErrorDisplay.prototype.buildCSSClass = function buildCSSClass() {\n return 'vjs-error-display ' + _ModalDialog.prototype.buildCSSClass.call(this);\n };\n\n /**\n * Gets the localized error message based on the `Player`s error.\n *\n * @return {string}\n * The `Player`s error message localized or an empty string.\n */\n\n\n ErrorDisplay.prototype.content = function content() {\n var error = this.player().error();\n\n return error ? this.localize(error.message) : '';\n };\n\n return ErrorDisplay;\n}(ModalDialog);\n\n/**\n * The default options for an `ErrorDisplay`.\n *\n * @private\n */\n\n\nErrorDisplay.prototype.options_ = mergeOptions(ModalDialog.prototype.options_, {\n pauseOnOpen: false,\n fillAlways: true,\n temporary: false,\n uncloseable: true\n});\n\nComponent.registerComponent('ErrorDisplay', ErrorDisplay);\n\n/**\n * @file text-track-settings.js\n */\nvar LOCAL_STORAGE_KEY = 'vjs-text-track-settings';\n\nvar COLOR_BLACK = ['#000', 'Black'];\nvar COLOR_BLUE = ['#00F', 'Blue'];\nvar COLOR_CYAN = ['#0FF', 'Cyan'];\nvar COLOR_GREEN = ['#0F0', 'Green'];\nvar COLOR_MAGENTA = ['#F0F', 'Magenta'];\nvar COLOR_RED = ['#F00', 'Red'];\nvar COLOR_WHITE = ['#FFF', 'White'];\nvar COLOR_YELLOW = ['#FF0', 'Yellow'];\n\nvar OPACITY_OPAQUE = ['1', 'Opaque'];\nvar OPACITY_SEMI = ['0.5', 'Semi-Transparent'];\nvar OPACITY_TRANS = ['0', 'Transparent'];\n\n// Configuration for the various <select> elements in the DOM of this component.\n//\n// Possible keys include:\n//\n// `default`:\n// The default option index. Only needs to be provided if not zero.\n// `parser`:\n// A function which is used to parse the value from the selected option in\n// a customized way.\n// `selector`:\n// The selector used to find the associated <select> element.\nvar selectConfigs = {\n backgroundColor: {\n selector: '.vjs-bg-color > select',\n id: 'captions-background-color-%s',\n label: 'Color',\n options: [COLOR_BLACK, COLOR_WHITE, COLOR_RED, COLOR_GREEN, COLOR_BLUE, COLOR_YELLOW, COLOR_MAGENTA, COLOR_CYAN]\n },\n\n backgroundOpacity: {\n selector: '.vjs-bg-opacity > select',\n id: 'captions-background-opacity-%s',\n label: 'Transparency',\n options: [OPACITY_OPAQUE, OPACITY_SEMI, OPACITY_TRANS]\n },\n\n color: {\n selector: '.vjs-fg-color > select',\n id: 'captions-foreground-color-%s',\n label: 'Color',\n options: [COLOR_WHITE, COLOR_BLACK, COLOR_RED, COLOR_GREEN, COLOR_BLUE, COLOR_YELLOW, COLOR_MAGENTA, COLOR_CYAN]\n },\n\n edgeStyle: {\n selector: '.vjs-edge-style > select',\n id: '%s',\n label: 'Text Edge Style',\n options: [['none', 'None'], ['raised', 'Raised'], ['depressed', 'Depressed'], ['uniform', 'Uniform'], ['dropshadow', 'Dropshadow']]\n },\n\n fontFamily: {\n selector: '.vjs-font-family > select',\n id: 'captions-font-family-%s',\n label: 'Font Family',\n options: [['proportionalSansSerif', 'Proportional Sans-Serif'], ['monospaceSansSerif', 'Monospace Sans-Serif'], ['proportionalSerif', 'Proportional Serif'], ['monospaceSerif', 'Monospace Serif'], ['casual', 'Casual'], ['script', 'Script'], ['small-caps', 'Small Caps']]\n },\n\n fontPercent: {\n selector: '.vjs-font-percent > select',\n id: 'captions-font-size-%s',\n label: 'Font Size',\n options: [['0.50', '50%'], ['0.75', '75%'], ['1.00', '100%'], ['1.25', '125%'], ['1.50', '150%'], ['1.75', '175%'], ['2.00', '200%'], ['3.00', '300%'], ['4.00', '400%']],\n 'default': 2,\n parser: function parser(v) {\n return v === '1.00' ? null : Number(v);\n }\n },\n\n textOpacity: {\n selector: '.vjs-text-opacity > select',\n id: 'captions-foreground-opacity-%s',\n label: 'Transparency',\n options: [OPACITY_OPAQUE, OPACITY_SEMI]\n },\n\n // Options for this object are defined below.\n windowColor: {\n selector: '.vjs-window-color > select',\n id: 'captions-window-color-%s',\n label: 'Color'\n },\n\n // Options for this object are defined below.\n windowOpacity: {\n selector: '.vjs-window-opacity > select',\n id: 'captions-window-opacity-%s',\n label: 'Transparency',\n options: [OPACITY_TRANS, OPACITY_SEMI, OPACITY_OPAQUE]\n }\n};\n\nselectConfigs.windowColor.options = selectConfigs.backgroundColor.options;\n\n/**\n * Get the actual value of an option.\n *\n * @param {string} value\n * The value to get\n *\n * @param {Function} [parser]\n * Optional function to adjust the value.\n *\n * @return {Mixed}\n * - Will be `undefined` if no value exists\n * - Will be `undefined` if the given value is \"none\".\n * - Will be the actual value otherwise.\n *\n * @private\n */\nfunction parseOptionValue(value, parser) {\n if (parser) {\n value = parser(value);\n }\n\n if (value && value !== 'none') {\n return value;\n }\n}\n\n/**\n * Gets the value of the selected <option> element within a <select> element.\n *\n * @param {Element} el\n * the element to look in\n *\n * @param {Function} [parser]\n * Optional function to adjust the value.\n *\n * @return {Mixed}\n * - Will be `undefined` if no value exists\n * - Will be `undefined` if the given value is \"none\".\n * - Will be the actual value otherwise.\n *\n * @private\n */\nfunction getSelectedOptionValue(el, parser) {\n var value = el.options[el.options.selectedIndex].value;\n\n return parseOptionValue(value, parser);\n}\n\n/**\n * Sets the selected <option> element within a <select> element based on a\n * given value.\n *\n * @param {Element} el\n * The element to look in.\n *\n * @param {string} value\n * the property to look on.\n *\n * @param {Function} [parser]\n * Optional function to adjust the value before comparing.\n *\n * @private\n */\nfunction setSelectedOption(el, value, parser) {\n if (!value) {\n return;\n }\n\n for (var i = 0; i < el.options.length; i++) {\n if (parseOptionValue(el.options[i].value, parser) === value) {\n el.selectedIndex = i;\n break;\n }\n }\n}\n\n/**\n * Manipulate Text Tracks settings.\n *\n * @extends ModalDialog\n */\n\nvar TextTrackSettings = function (_ModalDialog) {\n inherits(TextTrackSettings, _ModalDialog);\n\n /**\n * Creates an instance of this class.\n *\n * @param {Player} player\n * The `Player` that this class should be attached to.\n *\n * @param {Object} [options]\n * The key/value store of player options.\n */\n function TextTrackSettings(player, options) {\n classCallCheck(this, TextTrackSettings);\n\n options.temporary = false;\n\n var _this = possibleConstructorReturn(this, _ModalDialog.call(this, player, options));\n\n _this.updateDisplay = bind(_this, _this.updateDisplay);\n\n // fill the modal and pretend we have opened it\n _this.fill();\n _this.hasBeenOpened_ = _this.hasBeenFilled_ = true;\n\n _this.endDialog = createEl('p', {\n className: 'vjs-control-text',\n textContent: _this.localize('End of dialog window.')\n });\n _this.el().appendChild(_this.endDialog);\n\n _this.setDefaults();\n\n // Grab `persistTextTrackSettings` from the player options if not passed in child options\n if (options.persistTextTrackSettings === undefined) {\n _this.options_.persistTextTrackSettings = _this.options_.playerOptions.persistTextTrackSettings;\n }\n\n _this.on(_this.$('.vjs-done-button'), 'click', function () {\n _this.saveSettings();\n _this.close();\n });\n\n _this.on(_this.$('.vjs-default-button'), 'click', function () {\n _this.setDefaults();\n _this.updateDisplay();\n });\n\n each(selectConfigs, function (config) {\n _this.on(_this.$(config.selector), 'change', _this.updateDisplay);\n });\n\n if (_this.options_.persistTextTrackSettings) {\n _this.restoreSettings();\n }\n return _this;\n }\n\n TextTrackSettings.prototype.dispose = function dispose() {\n this.endDialog = null;\n\n _ModalDialog.prototype.dispose.call(this);\n };\n\n /**\n * Create a <select> element with configured options.\n *\n * @param {string} key\n * Configuration key to use during creation.\n *\n * @return {string}\n * An HTML string.\n *\n * @private\n */\n\n\n TextTrackSettings.prototype.createElSelect_ = function createElSelect_(key) {\n var _this2 = this;\n\n var legendId = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';\n var type = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 'label';\n\n var config = selectConfigs[key];\n var id = config.id.replace('%s', this.id_);\n\n return ['<' + type + ' id=\"' + id + '\" class=\"' + (type === 'label' ? 'vjs-label' : '') + '\">', this.localize(config.label), '</' + type + '>', '<select aria-labelledby=\"' + (legendId !== '' ? legendId + ' ' : '') + id + '\">'].concat(config.options.map(function (o) {\n var optionId = id + '-' + o[1];\n\n return ['<option id=\"' + optionId + '\" value=\"' + o[0] + '\" ', 'aria-labelledby=\"' + (legendId !== '' ? legendId + ' ' : '') + id + ' ' + optionId + '\">', _this2.localize(o[1]), '</option>'].join('');\n })).concat('</select>').join('');\n };\n\n /**\n * Create foreground color element for the component\n *\n * @return {string}\n * An HTML string.\n *\n * @private\n */\n\n\n TextTrackSettings.prototype.createElFgColor_ = function createElFgColor_() {\n var legendId = 'captions-text-legend-' + this.id_;\n\n return ['<fieldset class=\"vjs-fg-color vjs-track-setting\">', '<legend id=\"' + legendId + '\">', this.localize('Text'), '</legend>', this.createElSelect_('color', legendId), '<span class=\"vjs-text-opacity vjs-opacity\">', this.createElSelect_('textOpacity', legendId), '</span>', '</fieldset>'].join('');\n };\n\n /**\n * Create background color element for the component\n *\n * @return {string}\n * An HTML string.\n *\n * @private\n */\n\n\n TextTrackSettings.prototype.createElBgColor_ = function createElBgColor_() {\n var legendId = 'captions-background-' + this.id_;\n\n return ['<fieldset class=\"vjs-bg-color vjs-track-setting\">', '<legend id=\"' + legendId + '\">', this.localize('Background'), '</legend>', this.createElSelect_('backgroundColor', legendId), '<span class=\"vjs-bg-opacity vjs-opacity\">', this.createElSelect_('backgroundOpacity', legendId), '</span>', '</fieldset>'].join('');\n };\n\n /**\n * Create window color element for the component\n *\n * @return {string}\n * An HTML string.\n *\n * @private\n */\n\n\n TextTrackSettings.prototype.createElWinColor_ = function createElWinColor_() {\n var legendId = 'captions-window-' + this.id_;\n\n return ['<fieldset class=\"vjs-window-color vjs-track-setting\">', '<legend id=\"' + legendId + '\">', this.localize('Window'), '</legend>', this.createElSelect_('windowColor', legendId), '<span class=\"vjs-window-opacity vjs-opacity\">', this.createElSelect_('windowOpacity', legendId), '</span>', '</fieldset>'].join('');\n };\n\n /**\n * Create color elements for the component\n *\n * @return {Element}\n * The element that was created\n *\n * @private\n */\n\n\n TextTrackSettings.prototype.createElColors_ = function createElColors_() {\n return createEl('div', {\n className: 'vjs-track-settings-colors',\n innerHTML: [this.createElFgColor_(), this.createElBgColor_(), this.createElWinColor_()].join('')\n });\n };\n\n /**\n * Create font elements for the component\n *\n * @return {Element}\n * The element that was created.\n *\n * @private\n */\n\n\n TextTrackSettings.prototype.createElFont_ = function createElFont_() {\n return createEl('div', {\n className: 'vjs-track-settings-font',\n innerHTML: ['<fieldset class=\"vjs-font-percent vjs-track-setting\">', this.createElSelect_('fontPercent', '', 'legend'), '</fieldset>', '<fieldset class=\"vjs-edge-style vjs-track-setting\">', this.createElSelect_('edgeStyle', '', 'legend'), '</fieldset>', '<fieldset class=\"vjs-font-family vjs-track-setting\">', this.createElSelect_('fontFamily', '', 'legend'), '</fieldset>'].join('')\n });\n };\n\n /**\n * Create controls for the component\n *\n * @return {Element}\n * The element that was created.\n *\n * @private\n */\n\n\n TextTrackSettings.prototype.createElControls_ = function createElControls_() {\n var defaultsDescription = this.localize('restore all settings to the default values');\n\n return createEl('div', {\n className: 'vjs-track-settings-controls',\n innerHTML: ['<button class=\"vjs-default-button\" title=\"' + defaultsDescription + '\">', this.localize('Reset'), '<span class=\"vjs-control-text\"> ' + defaultsDescription + '</span>', '</button>', '<button class=\"vjs-done-button\">' + this.localize('Done') + '</button>'].join('')\n });\n };\n\n TextTrackSettings.prototype.content = function content() {\n return [this.createElColors_(), this.createElFont_(), this.createElControls_()];\n };\n\n TextTrackSettings.prototype.label = function label() {\n return this.localize('Caption Settings Dialog');\n };\n\n TextTrackSettings.prototype.description = function description() {\n return this.localize('Beginning of dialog window. Escape will cancel and close the window.');\n };\n\n TextTrackSettings.prototype.buildCSSClass = function buildCSSClass() {\n return _ModalDialog.prototype.buildCSSClass.call(this) + ' vjs-text-track-settings';\n };\n\n /**\n * Gets an object of text track settings (or null).\n *\n * @return {Object}\n * An object with config values parsed from the DOM or localStorage.\n */\n\n\n TextTrackSettings.prototype.getValues = function getValues() {\n var _this3 = this;\n\n return reduce(selectConfigs, function (accum, config, key) {\n var value = getSelectedOptionValue(_this3.$(config.selector), config.parser);\n\n if (value !== undefined) {\n accum[key] = value;\n }\n\n return accum;\n }, {});\n };\n\n /**\n * Sets text track settings from an object of values.\n *\n * @param {Object} values\n * An object with config values parsed from the DOM or localStorage.\n */\n\n\n TextTrackSettings.prototype.setValues = function setValues(values) {\n var _this4 = this;\n\n each(selectConfigs, function (config, key) {\n setSelectedOption(_this4.$(config.selector), values[key], config.parser);\n });\n };\n\n /**\n * Sets all `<select>` elements to their default values.\n */\n\n\n TextTrackSettings.prototype.setDefaults = function setDefaults() {\n var _this5 = this;\n\n each(selectConfigs, function (config) {\n var index = config.hasOwnProperty('default') ? config['default'] : 0;\n\n _this5.$(config.selector).selectedIndex = index;\n });\n };\n\n /**\n * Restore texttrack settings from localStorage\n */\n\n\n TextTrackSettings.prototype.restoreSettings = function restoreSettings() {\n var values = void 0;\n\n try {\n values = JSON.parse(window_1.localStorage.getItem(LOCAL_STORAGE_KEY));\n } catch (err) {\n log$1.warn(err);\n }\n\n if (values) {\n this.setValues(values);\n }\n };\n\n /**\n * Save text track settings to localStorage\n */\n\n\n TextTrackSettings.prototype.saveSettings = function saveSettings() {\n if (!this.options_.persistTextTrackSettings) {\n return;\n }\n\n var values = this.getValues();\n\n try {\n if (Object.keys(values).length) {\n window_1.localStorage.setItem(LOCAL_STORAGE_KEY, JSON.stringify(values));\n } else {\n window_1.localStorage.removeItem(LOCAL_STORAGE_KEY);\n }\n } catch (err) {\n log$1.warn(err);\n }\n };\n\n /**\n * Update display of text track settings\n */\n\n\n TextTrackSettings.prototype.updateDisplay = function updateDisplay() {\n var ttDisplay = this.player_.getChild('textTrackDisplay');\n\n if (ttDisplay) {\n ttDisplay.updateDisplay();\n }\n };\n\n /**\n * conditionally blur the element and refocus the captions button\n *\n * @private\n */\n\n\n TextTrackSettings.prototype.conditionalBlur_ = function conditionalBlur_() {\n this.previouslyActiveEl_ = null;\n this.off(document_1, 'keydown', this.handleKeyDown);\n\n var cb = this.player_.controlBar;\n var subsCapsBtn = cb && cb.subsCapsButton;\n var ccBtn = cb && cb.captionsButton;\n\n if (subsCapsBtn) {\n subsCapsBtn.focus();\n } else if (ccBtn) {\n ccBtn.focus();\n }\n };\n\n return TextTrackSettings;\n}(ModalDialog);\n\nComponent.registerComponent('TextTrackSettings', TextTrackSettings);\n\n/**\n * @file resize-manager.js\n */\n/**\n * A Resize Manager. It is in charge of triggering `playerresize` on the player in the right conditions.\n *\n * It'll either create an iframe and use a debounced resize handler on it or use the new {@link https://wicg.github.io/ResizeObserver/|ResizeObserver}.\n *\n * If the ResizeObserver is available natively, it will be used. A polyfill can be passed in as an option.\n * If a `playerresize` event is not needed, the ResizeManager component can be removed from the player, see the example below.\n * @example <caption>How to disable the resize manager</caption>\n * const player = videojs('#vid', {\n * resizeManager: false\n * });\n *\n * @see {@link https://wicg.github.io/ResizeObserver/|ResizeObserver specification}\n *\n * @extends Component\n */\n\nvar ResizeManager = function (_Component) {\n inherits(ResizeManager, _Component);\n\n /**\n * Create the ResizeManager.\n *\n * @param {Object} player\n * The `Player` that this class should be attached to.\n *\n * @param {Object} [options]\n * The key/value store of ResizeManager options.\n *\n * @param {Object} [options.ResizeObserver]\n * A polyfill for ResizeObserver can be passed in here.\n * If this is set to null it will ignore the native ResizeObserver and fall back to the iframe fallback.\n */\n function ResizeManager(player, options) {\n classCallCheck(this, ResizeManager);\n\n var RESIZE_OBSERVER_AVAILABLE = options.ResizeObserver || window_1.ResizeObserver;\n\n // if `null` was passed, we want to disable the ResizeObserver\n if (options.ResizeObserver === null) {\n RESIZE_OBSERVER_AVAILABLE = false;\n }\n\n // Only create an element when ResizeObserver isn't available\n var options_ = mergeOptions({ createEl: !RESIZE_OBSERVER_AVAILABLE }, options);\n\n var _this = possibleConstructorReturn(this, _Component.call(this, player, options_));\n\n _this.ResizeObserver = options.ResizeObserver || window_1.ResizeObserver;\n _this.loadListener_ = null;\n _this.resizeObserver_ = null;\n _this.debouncedHandler_ = debounce(function () {\n _this.resizeHandler();\n }, 100, false, player);\n\n if (RESIZE_OBSERVER_AVAILABLE) {\n _this.resizeObserver_ = new _this.ResizeObserver(_this.debouncedHandler_);\n _this.resizeObserver_.observe(player.el());\n } else {\n _this.loadListener_ = function () {\n if (_this.el_.contentWindow) {\n on(_this.el_.contentWindow, 'resize', _this.debouncedHandler_);\n }\n _this.off('load', _this.loadListener_);\n };\n\n _this.on('load', _this.loadListener_);\n }\n return _this;\n }\n\n ResizeManager.prototype.createEl = function createEl() {\n return _Component.prototype.createEl.call(this, 'iframe', {\n className: 'vjs-resize-manager'\n });\n };\n\n /**\n * Called when a resize is triggered on the iframe or a resize is observed via the ResizeObserver\n *\n * @fires Player#playerresize\n */\n\n\n ResizeManager.prototype.resizeHandler = function resizeHandler() {\n /**\n * Called when the player size has changed\n *\n * @event Player#playerresize\n * @type {EventTarget~Event}\n */\n this.player_.trigger('playerresize');\n };\n\n ResizeManager.prototype.dispose = function dispose() {\n if (this.resizeObserver_) {\n this.resizeObserver_.unobserve(this.player_.el());\n this.resizeObserver_.disconnect();\n }\n\n if (this.el_ && this.el_.contentWindow) {\n off(this.el_.contentWindow, 'resize', this.debouncedHandler_);\n }\n\n if (this.loadListener_) {\n this.off('load', this.loadListener_);\n }\n\n this.ResizeObserver = null;\n this.resizeObserver = null;\n this.debouncedHandler_ = null;\n this.loadListener_ = null;\n };\n\n return ResizeManager;\n}(Component);\n\nComponent.registerComponent('ResizeManager', ResizeManager);\n\nvar _templateObject$2 = taggedTemplateLiteralLoose(['Text Tracks are being loaded from another origin but the crossorigin attribute isn\\'t used.\\n This may prevent text tracks from loading.'], ['Text Tracks are being loaded from another origin but the crossorigin attribute isn\\'t used.\\n This may prevent text tracks from loading.']);\n\n/**\n * @file html5.js\n */\n/**\n * HTML5 Media Controller - Wrapper for HTML5 Media API\n *\n * @mixes Tech~SouceHandlerAdditions\n * @extends Tech\n */\n\nvar Html5 = function (_Tech) {\n inherits(Html5, _Tech);\n\n /**\n * Create an instance of this Tech.\n *\n * @param {Object} [options]\n * The key/value store of player options.\n *\n * @param {Component~ReadyCallback} ready\n * Callback function to call when the `HTML5` Tech is ready.\n */\n function Html5(options, ready) {\n classCallCheck(this, Html5);\n\n var _this = possibleConstructorReturn(this, _Tech.call(this, options, ready));\n\n var source = options.source;\n var crossoriginTracks = false;\n\n // Set the source if one is provided\n // 1) Check if the source is new (if not, we want to keep the original so playback isn't interrupted)\n // 2) Check to see if the network state of the tag was failed at init, and if so, reset the source\n // anyway so the error gets fired.\n if (source && (_this.el_.currentSrc !== source.src || options.tag && options.tag.initNetworkState_ === 3)) {\n _this.setSource(source);\n } else {\n _this.handleLateInit_(_this.el_);\n }\n\n if (_this.el_.hasChildNodes()) {\n\n var nodes = _this.el_.childNodes;\n var nodesLength = nodes.length;\n var removeNodes = [];\n\n while (nodesLength--) {\n var node = nodes[nodesLength];\n var nodeName = node.nodeName.toLowerCase();\n\n if (nodeName === 'track') {\n if (!_this.featuresNativeTextTracks) {\n // Empty video tag tracks so the built-in player doesn't use them also.\n // This may not be fast enough to stop HTML5 browsers from reading the tags\n // so we'll need to turn off any default tracks if we're manually doing\n // captions and subtitles. videoElement.textTracks\n removeNodes.push(node);\n } else {\n // store HTMLTrackElement and TextTrack to remote list\n _this.remoteTextTrackEls().addTrackElement_(node);\n _this.remoteTextTracks().addTrack(node.track);\n _this.textTracks().addTrack(node.track);\n if (!crossoriginTracks && !_this.el_.hasAttribute('crossorigin') && isCrossOrigin(node.src)) {\n crossoriginTracks = true;\n }\n }\n }\n }\n\n for (var i = 0; i < removeNodes.length; i++) {\n _this.el_.removeChild(removeNodes[i]);\n }\n }\n\n _this.proxyNativeTracks_();\n if (_this.featuresNativeTextTracks && crossoriginTracks) {\n log$1.warn(tsml(_templateObject$2));\n }\n\n // prevent iOS Safari from disabling metadata text tracks during native playback\n _this.restoreMetadataTracksInIOSNativePlayer_();\n\n // Determine if native controls should be used\n // Our goal should be to get the custom controls on mobile solid everywhere\n // so we can remove this all together. Right now this will block custom\n // controls on touch enabled laptops like the Chrome Pixel\n if ((TOUCH_ENABLED || IS_IPHONE || IS_NATIVE_ANDROID) && options.nativeControlsForTouch === true) {\n _this.setControls(true);\n }\n\n // on iOS, we want to proxy `webkitbeginfullscreen` and `webkitendfullscreen`\n // into a `fullscreenchange` event\n _this.proxyWebkitFullscreen_();\n\n _this.triggerReady();\n return _this;\n }\n\n /**\n * Dispose of `HTML5` media element and remove all tracks.\n */\n\n\n Html5.prototype.dispose = function dispose() {\n Html5.disposeMediaElement(this.el_);\n this.options_ = null;\n\n // tech will handle clearing of the emulated track list\n _Tech.prototype.dispose.call(this);\n };\n\n /**\n * When a captions track is enabled in the iOS Safari native player, all other\n * tracks are disabled (including metadata tracks), which nulls all of their\n * associated cue points. This will restore metadata tracks to their pre-fullscreen\n * state in those cases so that cue points are not needlessly lost.\n *\n * @private\n */\n\n\n Html5.prototype.restoreMetadataTracksInIOSNativePlayer_ = function restoreMetadataTracksInIOSNativePlayer_() {\n var textTracks = this.textTracks();\n var metadataTracksPreFullscreenState = void 0;\n\n // captures a snapshot of every metadata track's current state\n var takeMetadataTrackSnapshot = function takeMetadataTrackSnapshot() {\n metadataTracksPreFullscreenState = [];\n\n for (var i = 0; i < textTracks.length; i++) {\n var track = textTracks[i];\n\n if (track.kind === 'metadata') {\n metadataTracksPreFullscreenState.push({\n track: track,\n storedMode: track.mode\n });\n }\n }\n };\n\n // snapshot each metadata track's initial state, and update the snapshot\n // each time there is a track 'change' event\n takeMetadataTrackSnapshot();\n textTracks.addEventListener('change', takeMetadataTrackSnapshot);\n\n this.on('dispose', function () {\n return textTracks.removeEventListener('change', takeMetadataTrackSnapshot);\n });\n\n var restoreTrackMode = function restoreTrackMode() {\n for (var i = 0; i < metadataTracksPreFullscreenState.length; i++) {\n var storedTrack = metadataTracksPreFullscreenState[i];\n\n if (storedTrack.track.mode === 'disabled' && storedTrack.track.mode !== storedTrack.storedMode) {\n storedTrack.track.mode = storedTrack.storedMode;\n }\n }\n // we only want this handler to be executed on the first 'change' event\n textTracks.removeEventListener('change', restoreTrackMode);\n };\n\n // when we enter fullscreen playback, stop updating the snapshot and\n // restore all track modes to their pre-fullscreen state\n this.on('webkitbeginfullscreen', function () {\n textTracks.removeEventListener('change', takeMetadataTrackSnapshot);\n\n // remove the listener before adding it just in case it wasn't previously removed\n textTracks.removeEventListener('change', restoreTrackMode);\n textTracks.addEventListener('change', restoreTrackMode);\n });\n\n // start updating the snapshot again after leaving fullscreen\n this.on('webkitendfullscreen', function () {\n // remove the listener before adding it just in case it wasn't previously removed\n textTracks.removeEventListener('change', takeMetadataTrackSnapshot);\n textTracks.addEventListener('change', takeMetadataTrackSnapshot);\n\n // remove the restoreTrackMode handler in case it wasn't triggered during fullscreen playback\n textTracks.removeEventListener('change', restoreTrackMode);\n });\n };\n\n /**\n * Proxy all native track list events to our track lists if the browser we are playing\n * in supports that type of track list.\n *\n * @private\n */\n\n\n Html5.prototype.proxyNativeTracks_ = function proxyNativeTracks_() {\n var _this2 = this;\n\n NORMAL.names.forEach(function (name) {\n var props = NORMAL[name];\n var elTracks = _this2.el()[props.getterName];\n var techTracks = _this2[props.getterName]();\n\n if (!_this2['featuresNative' + props.capitalName + 'Tracks'] || !elTracks || !elTracks.addEventListener) {\n return;\n }\n var listeners = {\n change: function change(e) {\n techTracks.trigger({\n type: 'change',\n target: techTracks,\n currentTarget: techTracks,\n srcElement: techTracks\n });\n },\n addtrack: function addtrack(e) {\n techTracks.addTrack(e.track);\n },\n removetrack: function removetrack(e) {\n techTracks.removeTrack(e.track);\n }\n };\n var removeOldTracks = function removeOldTracks() {\n var removeTracks = [];\n\n for (var i = 0; i < techTracks.length; i++) {\n var found = false;\n\n for (var j = 0; j < elTracks.length; j++) {\n if (elTracks[j] === techTracks[i]) {\n found = true;\n break;\n }\n }\n\n if (!found) {\n removeTracks.push(techTracks[i]);\n }\n }\n\n while (removeTracks.length) {\n techTracks.removeTrack(removeTracks.shift());\n }\n };\n\n Object.keys(listeners).forEach(function (eventName) {\n var listener = listeners[eventName];\n\n elTracks.addEventListener(eventName, listener);\n _this2.on('dispose', function (e) {\n return elTracks.removeEventListener(eventName, listener);\n });\n });\n\n // Remove (native) tracks that are not used anymore\n _this2.on('loadstart', removeOldTracks);\n _this2.on('dispose', function (e) {\n return _this2.off('loadstart', removeOldTracks);\n });\n });\n };\n\n /**\n * Create the `Html5` Tech's DOM element.\n *\n * @return {Element}\n * The element that gets created.\n */\n\n\n Html5.prototype.createEl = function createEl$$1() {\n var el = this.options_.tag;\n\n // Check if this browser supports moving the element into the box.\n // On the iPhone video will break if you move the element,\n // So we have to create a brand new element.\n // If we ingested the player div, we do not need to move the media element.\n if (!el || !(this.options_.playerElIngest || this.movingMediaElementInDOM)) {\n\n // If the original tag is still there, clone and remove it.\n if (el) {\n var clone = el.cloneNode(true);\n\n if (el.parentNode) {\n el.parentNode.insertBefore(clone, el);\n }\n Html5.disposeMediaElement(el);\n el = clone;\n } else {\n el = document_1.createElement('video');\n\n // determine if native controls should be used\n var tagAttributes = this.options_.tag && getAttributes(this.options_.tag);\n var attributes = mergeOptions({}, tagAttributes);\n\n if (!TOUCH_ENABLED || this.options_.nativeControlsForTouch !== true) {\n delete attributes.controls;\n }\n\n setAttributes(el, assign(attributes, {\n id: this.options_.techId,\n 'class': 'vjs-tech'\n }));\n }\n\n el.playerId = this.options_.playerId;\n }\n\n if (typeof this.options_.preload !== 'undefined') {\n setAttribute(el, 'preload', this.options_.preload);\n }\n\n // Update specific tag settings, in case they were overridden\n // `autoplay` has to be *last* so that `muted` and `playsinline` are present\n // when iOS/Safari or other browsers attempt to autoplay.\n var settingsAttrs = ['loop', 'muted', 'playsinline', 'autoplay'];\n\n for (var i = 0; i < settingsAttrs.length; i++) {\n var attr = settingsAttrs[i];\n var value = this.options_[attr];\n\n if (typeof value !== 'undefined') {\n if (value) {\n setAttribute(el, attr, attr);\n } else {\n removeAttribute(el, attr);\n }\n el[attr] = value;\n }\n }\n\n return el;\n };\n\n /**\n * This will be triggered if the loadstart event has already fired, before videojs was\n * ready. Two known examples of when this can happen are:\n * 1. If we're loading the playback object after it has started loading\n * 2. The media is already playing the (often with autoplay on) then\n *\n * This function will fire another loadstart so that videojs can catchup.\n *\n * @fires Tech#loadstart\n *\n * @return {undefined}\n * returns nothing.\n */\n\n\n Html5.prototype.handleLateInit_ = function handleLateInit_(el) {\n if (el.networkState === 0 || el.networkState === 3) {\n // The video element hasn't started loading the source yet\n // or didn't find a source\n return;\n }\n\n if (el.readyState === 0) {\n // NetworkState is set synchronously BUT loadstart is fired at the\n // end of the current stack, usually before setInterval(fn, 0).\n // So at this point we know loadstart may have already fired or is\n // about to fire, and either way the player hasn't seen it yet.\n // We don't want to fire loadstart prematurely here and cause a\n // double loadstart so we'll wait and see if it happens between now\n // and the next loop, and fire it if not.\n // HOWEVER, we also want to make sure it fires before loadedmetadata\n // which could also happen between now and the next loop, so we'll\n // watch for that also.\n var loadstartFired = false;\n var setLoadstartFired = function setLoadstartFired() {\n loadstartFired = true;\n };\n\n this.on('loadstart', setLoadstartFired);\n\n var triggerLoadstart = function triggerLoadstart() {\n // We did miss the original loadstart. Make sure the player\n // sees loadstart before loadedmetadata\n if (!loadstartFired) {\n this.trigger('loadstart');\n }\n };\n\n this.on('loadedmetadata', triggerLoadstart);\n\n this.ready(function () {\n this.off('loadstart', setLoadstartFired);\n this.off('loadedmetadata', triggerLoadstart);\n\n if (!loadstartFired) {\n // We did miss the original native loadstart. Fire it now.\n this.trigger('loadstart');\n }\n });\n\n return;\n }\n\n // From here on we know that loadstart already fired and we missed it.\n // The other readyState events aren't as much of a problem if we double\n // them, so not going to go to as much trouble as loadstart to prevent\n // that unless we find reason to.\n var eventsToTrigger = ['loadstart'];\n\n // loadedmetadata: newly equal to HAVE_METADATA (1) or greater\n eventsToTrigger.push('loadedmetadata');\n\n // loadeddata: newly increased to HAVE_CURRENT_DATA (2) or greater\n if (el.readyState >= 2) {\n eventsToTrigger.push('loadeddata');\n }\n\n // canplay: newly increased to HAVE_FUTURE_DATA (3) or greater\n if (el.readyState >= 3) {\n eventsToTrigger.push('canplay');\n }\n\n // canplaythrough: newly equal to HAVE_ENOUGH_DATA (4)\n if (el.readyState >= 4) {\n eventsToTrigger.push('canplaythrough');\n }\n\n // We still need to give the player time to add event listeners\n this.ready(function () {\n eventsToTrigger.forEach(function (type) {\n this.trigger(type);\n }, this);\n });\n };\n\n /**\n * Set current time for the `HTML5` tech.\n *\n * @param {number} seconds\n * Set the current time of the media to this.\n */\n\n\n Html5.prototype.setCurrentTime = function setCurrentTime(seconds) {\n try {\n this.el_.currentTime = seconds;\n } catch (e) {\n log$1(e, 'Video is not ready. (Video.js)');\n // this.warning(VideoJS.warnings.videoNotReady);\n }\n };\n\n /**\n * Get the current duration of the HTML5 media element.\n *\n * @return {number}\n * The duration of the media or 0 if there is no duration.\n */\n\n\n Html5.prototype.duration = function duration() {\n var _this3 = this;\n\n // Android Chrome will report duration as Infinity for VOD HLS until after\n // playback has started, which triggers the live display erroneously.\n // Return NaN if playback has not started and trigger a durationupdate once\n // the duration can be reliably known.\n if (this.el_.duration === Infinity && IS_ANDROID && IS_CHROME && this.el_.currentTime === 0) {\n // Wait for the first `timeupdate` with currentTime > 0 - there may be\n // several with 0\n var checkProgress = function checkProgress() {\n if (_this3.el_.currentTime > 0) {\n // Trigger durationchange for genuinely live video\n if (_this3.el_.duration === Infinity) {\n _this3.trigger('durationchange');\n }\n _this3.off('timeupdate', checkProgress);\n }\n };\n\n this.on('timeupdate', checkProgress);\n return NaN;\n }\n return this.el_.duration || NaN;\n };\n\n /**\n * Get the current width of the HTML5 media element.\n *\n * @return {number}\n * The width of the HTML5 media element.\n */\n\n\n Html5.prototype.width = function width() {\n return this.el_.offsetWidth;\n };\n\n /**\n * Get the current height of the HTML5 media element.\n *\n * @return {number}\n * The heigth of the HTML5 media element.\n */\n\n\n Html5.prototype.height = function height() {\n return this.el_.offsetHeight;\n };\n\n /**\n * Proxy iOS `webkitbeginfullscreen` and `webkitendfullscreen` into\n * `fullscreenchange` event.\n *\n * @private\n * @fires fullscreenchange\n * @listens webkitendfullscreen\n * @listens webkitbeginfullscreen\n * @listens webkitbeginfullscreen\n */\n\n\n Html5.prototype.proxyWebkitFullscreen_ = function proxyWebkitFullscreen_() {\n var _this4 = this;\n\n if (!('webkitDisplayingFullscreen' in this.el_)) {\n return;\n }\n\n var endFn = function endFn() {\n this.trigger('fullscreenchange', { isFullscreen: false });\n };\n\n var beginFn = function beginFn() {\n if ('webkitPresentationMode' in this.el_ && this.el_.webkitPresentationMode !== 'picture-in-picture') {\n this.one('webkitendfullscreen', endFn);\n\n this.trigger('fullscreenchange', { isFullscreen: true });\n }\n };\n\n this.on('webkitbeginfullscreen', beginFn);\n this.on('dispose', function () {\n _this4.off('webkitbeginfullscreen', beginFn);\n _this4.off('webkitendfullscreen', endFn);\n });\n };\n\n /**\n * Check if fullscreen is supported on the current playback device.\n *\n * @return {boolean}\n * - True if fullscreen is supported.\n * - False if fullscreen is not supported.\n */\n\n\n Html5.prototype.supportsFullScreen = function supportsFullScreen() {\n if (typeof this.el_.webkitEnterFullScreen === 'function') {\n var userAgent = window_1.navigator && window_1.navigator.userAgent || '';\n\n // Seems to be broken in Chromium/Chrome && Safari in Leopard\n if (/Android/.test(userAgent) || !/Chrome|Mac OS X 10.5/.test(userAgent)) {\n return true;\n }\n }\n return false;\n };\n\n /**\n * Request that the `HTML5` Tech enter fullscreen.\n */\n\n\n Html5.prototype.enterFullScreen = function enterFullScreen() {\n var video = this.el_;\n\n if (video.paused && video.networkState <= video.HAVE_METADATA) {\n // attempt to prime the video element for programmatic access\n // this isn't necessary on the desktop but shouldn't hurt\n this.el_.play();\n\n // playing and pausing synchronously during the transition to fullscreen\n // can get iOS ~6.1 devices into a play/pause loop\n this.setTimeout(function () {\n video.pause();\n video.webkitEnterFullScreen();\n }, 0);\n } else {\n video.webkitEnterFullScreen();\n }\n };\n\n /**\n * Request that the `HTML5` Tech exit fullscreen.\n */\n\n\n Html5.prototype.exitFullScreen = function exitFullScreen() {\n this.el_.webkitExitFullScreen();\n };\n\n /**\n * A getter/setter for the `Html5` Tech's source object.\n * > Note: Please use {@link Html5#setSource}\n *\n * @param {Tech~SourceObject} [src]\n * The source object you want to set on the `HTML5` techs element.\n *\n * @return {Tech~SourceObject|undefined}\n * - The current source object when a source is not passed in.\n * - undefined when setting\n *\n * @deprecated Since version 5.\n */\n\n\n Html5.prototype.src = function src(_src) {\n if (_src === undefined) {\n return this.el_.src;\n }\n\n // Setting src through `src` instead of `setSrc` will be deprecated\n this.setSrc(_src);\n };\n\n /**\n * Reset the tech by removing all sources and then calling\n * {@link Html5.resetMediaElement}.\n */\n\n\n Html5.prototype.reset = function reset() {\n Html5.resetMediaElement(this.el_);\n };\n\n /**\n * Get the current source on the `HTML5` Tech. Falls back to returning the source from\n * the HTML5 media element.\n *\n * @return {Tech~SourceObject}\n * The current source object from the HTML5 tech. With a fallback to the\n * elements source.\n */\n\n\n Html5.prototype.currentSrc = function currentSrc() {\n if (this.currentSource_) {\n return this.currentSource_.src;\n }\n return this.el_.currentSrc;\n };\n\n /**\n * Set controls attribute for the HTML5 media Element.\n *\n * @param {string} val\n * Value to set the controls attribute to\n */\n\n\n Html5.prototype.setControls = function setControls(val) {\n this.el_.controls = !!val;\n };\n\n /**\n * Create and returns a remote {@link TextTrack} object.\n *\n * @param {string} kind\n * `TextTrack` kind (subtitles, captions, descriptions, chapters, or metadata)\n *\n * @param {string} [label]\n * Label to identify the text track\n *\n * @param {string} [language]\n * Two letter language abbreviation\n *\n * @return {TextTrack}\n * The TextTrack that gets created.\n */\n\n\n Html5.prototype.addTextTrack = function addTextTrack(kind, label, language) {\n if (!this.featuresNativeTextTracks) {\n return _Tech.prototype.addTextTrack.call(this, kind, label, language);\n }\n\n return this.el_.addTextTrack(kind, label, language);\n };\n\n /**\n * Creates either native TextTrack or an emulated TextTrack depending\n * on the value of `featuresNativeTextTracks`\n *\n * @param {Object} options\n * The object should contain the options to intialize the TextTrack with.\n *\n * @param {string} [options.kind]\n * `TextTrack` kind (subtitles, captions, descriptions, chapters, or metadata).\n *\n * @param {string} [options.label].\n * Label to identify the text track\n *\n * @param {string} [options.language]\n * Two letter language abbreviation.\n *\n * @param {boolean} [options.default]\n * Default this track to on.\n *\n * @param {string} [options.id]\n * The internal id to assign this track.\n *\n * @param {string} [options.src]\n * A source url for the track.\n *\n * @return {HTMLTrackElement}\n * The track element that gets created.\n */\n\n\n Html5.prototype.createRemoteTextTrack = function createRemoteTextTrack(options) {\n if (!this.featuresNativeTextTracks) {\n return _Tech.prototype.createRemoteTextTrack.call(this, options);\n }\n var htmlTrackElement = document_1.createElement('track');\n\n if (options.kind) {\n htmlTrackElement.kind = options.kind;\n }\n if (options.label) {\n htmlTrackElement.label = options.label;\n }\n if (options.language || options.srclang) {\n htmlTrackElement.srclang = options.language || options.srclang;\n }\n if (options['default']) {\n htmlTrackElement['default'] = options['default'];\n }\n if (options.id) {\n htmlTrackElement.id = options.id;\n }\n if (options.src) {\n htmlTrackElement.src = options.src;\n }\n\n return htmlTrackElement;\n };\n\n /**\n * Creates a remote text track object and returns an html track element.\n *\n * @param {Object} options The object should contain values for\n * kind, language, label, and src (location of the WebVTT file)\n * @param {Boolean} [manualCleanup=true] if set to false, the TextTrack will be\n * automatically removed from the video element whenever the source changes\n * @return {HTMLTrackElement} An Html Track Element.\n * This can be an emulated {@link HTMLTrackElement} or a native one.\n * @deprecated The default value of the \"manualCleanup\" parameter will default\n * to \"false\" in upcoming versions of Video.js\n */\n\n\n Html5.prototype.addRemoteTextTrack = function addRemoteTextTrack(options, manualCleanup) {\n var htmlTrackElement = _Tech.prototype.addRemoteTextTrack.call(this, options, manualCleanup);\n\n if (this.featuresNativeTextTracks) {\n this.el().appendChild(htmlTrackElement);\n }\n\n return htmlTrackElement;\n };\n\n /**\n * Remove remote `TextTrack` from `TextTrackList` object\n *\n * @param {TextTrack} track\n * `TextTrack` object to remove\n */\n\n\n Html5.prototype.removeRemoteTextTrack = function removeRemoteTextTrack(track) {\n _Tech.prototype.removeRemoteTextTrack.call(this, track);\n\n if (this.featuresNativeTextTracks) {\n var tracks = this.$$('track');\n\n var i = tracks.length;\n\n while (i--) {\n if (track === tracks[i] || track === tracks[i].track) {\n this.el().removeChild(tracks[i]);\n }\n }\n }\n };\n\n /**\n * Gets available media playback quality metrics as specified by the W3C's Media\n * Playback Quality API.\n *\n * @see [Spec]{@link https://wicg.github.io/media-playback-quality}\n *\n * @return {Object}\n * An object with supported media playback quality metrics\n */\n\n\n Html5.prototype.getVideoPlaybackQuality = function getVideoPlaybackQuality() {\n if (typeof this.el().getVideoPlaybackQuality === 'function') {\n return this.el().getVideoPlaybackQuality();\n }\n\n var videoPlaybackQuality = {};\n\n if (typeof this.el().webkitDroppedFrameCount !== 'undefined' && typeof this.el().webkitDecodedFrameCount !== 'undefined') {\n videoPlaybackQuality.droppedVideoFrames = this.el().webkitDroppedFrameCount;\n videoPlaybackQuality.totalVideoFrames = this.el().webkitDecodedFrameCount;\n }\n\n if (window_1.performance && typeof window_1.performance.now === 'function') {\n videoPlaybackQuality.creationTime = window_1.performance.now();\n } else if (window_1.performance && window_1.performance.timing && typeof window_1.performance.timing.navigationStart === 'number') {\n videoPlaybackQuality.creationTime = window_1.Date.now() - window_1.performance.timing.navigationStart;\n }\n\n return videoPlaybackQuality;\n };\n\n return Html5;\n}(Tech);\n\n/* HTML5 Support Testing ---------------------------------------------------- */\n\nif (isReal()) {\n\n /**\n * Element for testing browser HTML5 media capabilities\n *\n * @type {Element}\n * @constant\n * @private\n */\n Html5.TEST_VID = document_1.createElement('video');\n var track = document_1.createElement('track');\n\n track.kind = 'captions';\n track.srclang = 'en';\n track.label = 'English';\n Html5.TEST_VID.appendChild(track);\n}\n\n/**\n * Check if HTML5 media is supported by this browser/device.\n *\n * @return {boolean}\n * - True if HTML5 media is supported.\n * - False if HTML5 media is not supported.\n */\nHtml5.isSupported = function () {\n // IE9 with no Media Player is a LIAR! (#984)\n try {\n Html5.TEST_VID.volume = 0.5;\n } catch (e) {\n return false;\n }\n\n return !!(Html5.TEST_VID && Html5.TEST_VID.canPlayType);\n};\n\n/**\n * Check if the tech can support the given type\n *\n * @param {string} type\n * The mimetype to check\n * @return {string} 'probably', 'maybe', or '' (empty string)\n */\nHtml5.canPlayType = function (type) {\n return Html5.TEST_VID.canPlayType(type);\n};\n\n/**\n * Check if the tech can support the given source\n * @param {Object} srcObj\n * The source object\n * @param {Object} options\n * The options passed to the tech\n * @return {string} 'probably', 'maybe', or '' (empty string)\n */\nHtml5.canPlaySource = function (srcObj, options) {\n return Html5.canPlayType(srcObj.type);\n};\n\n/**\n * Check if the volume can be changed in this browser/device.\n * Volume cannot be changed in a lot of mobile devices.\n * Specifically, it can't be changed from 1 on iOS.\n *\n * @return {boolean}\n * - True if volume can be controlled\n * - False otherwise\n */\nHtml5.canControlVolume = function () {\n // IE will error if Windows Media Player not installed #3315\n try {\n var volume = Html5.TEST_VID.volume;\n\n Html5.TEST_VID.volume = volume / 2 + 0.1;\n return volume !== Html5.TEST_VID.volume;\n } catch (e) {\n return false;\n }\n};\n\n/**\n * Check if the playback rate can be changed in this browser/device.\n *\n * @return {boolean}\n * - True if playback rate can be controlled\n * - False otherwise\n */\nHtml5.canControlPlaybackRate = function () {\n // Playback rate API is implemented in Android Chrome, but doesn't do anything\n // https://github.com/videojs/video.js/issues/3180\n if (IS_ANDROID && IS_CHROME && CHROME_VERSION < 58) {\n return false;\n }\n // IE will error if Windows Media Player not installed #3315\n try {\n var playbackRate = Html5.TEST_VID.playbackRate;\n\n Html5.TEST_VID.playbackRate = playbackRate / 2 + 0.1;\n return playbackRate !== Html5.TEST_VID.playbackRate;\n } catch (e) {\n return false;\n }\n};\n\n/**\n * Check to see if native `TextTrack`s are supported by this browser/device.\n *\n * @return {boolean}\n * - True if native `TextTrack`s are supported.\n * - False otherwise\n */\nHtml5.supportsNativeTextTracks = function () {\n return IS_ANY_SAFARI;\n};\n\n/**\n * Check to see if native `VideoTrack`s are supported by this browser/device\n *\n * @return {boolean}\n * - True if native `VideoTrack`s are supported.\n * - False otherwise\n */\nHtml5.supportsNativeVideoTracks = function () {\n return !!(Html5.TEST_VID && Html5.TEST_VID.videoTracks);\n};\n\n/**\n * Check to see if native `AudioTrack`s are supported by this browser/device\n *\n * @return {boolean}\n * - True if native `AudioTrack`s are supported.\n * - False otherwise\n */\nHtml5.supportsNativeAudioTracks = function () {\n return !!(Html5.TEST_VID && Html5.TEST_VID.audioTracks);\n};\n\n/**\n * An array of events available on the Html5 tech.\n *\n * @private\n * @type {Array}\n */\nHtml5.Events = ['loadstart', 'suspend', 'abort', 'error', 'emptied', 'stalled', 'loadedmetadata', 'loadeddata', 'canplay', 'canplaythrough', 'playing', 'waiting', 'seeking', 'seeked', 'ended', 'durationchange', 'timeupdate', 'progress', 'play', 'pause', 'ratechange', 'resize', 'volumechange'];\n\n/**\n * Boolean indicating whether the `Tech` supports volume control.\n *\n * @type {boolean}\n * @default {@link Html5.canControlVolume}\n */\nHtml5.prototype.featuresVolumeControl = Html5.canControlVolume();\n\n/**\n * Boolean indicating whether the `Tech` supports changing the speed at which the media\n * plays. Examples:\n * - Set player to play 2x (twice) as fast\n * - Set player to play 0.5x (half) as fast\n *\n * @type {boolean}\n * @default {@link Html5.canControlPlaybackRate}\n */\nHtml5.prototype.featuresPlaybackRate = Html5.canControlPlaybackRate();\n\n/**\n * Boolean indicating whether the `HTML5` tech currently supports the media element\n * moving in the DOM. iOS breaks if you move the media element, so this is set this to\n * false there. Everywhere else this should be true.\n *\n * @type {boolean}\n * @default\n */\nHtml5.prototype.movingMediaElementInDOM = !IS_IOS;\n\n// TODO: Previous comment: No longer appears to be used. Can probably be removed.\n// Is this true?\n/**\n * Boolean indicating whether the `HTML5` tech currently supports automatic media resize\n * when going into fullscreen.\n *\n * @type {boolean}\n * @default\n */\nHtml5.prototype.featuresFullscreenResize = true;\n\n/**\n * Boolean indicating whether the `HTML5` tech currently supports the progress event.\n * If this is false, manual `progress` events will be triggred instead.\n *\n * @type {boolean}\n * @default\n */\nHtml5.prototype.featuresProgressEvents = true;\n\n/**\n * Boolean indicating whether the `HTML5` tech currently supports the timeupdate event.\n * If this is false, manual `timeupdate` events will be triggred instead.\n *\n * @default\n */\nHtml5.prototype.featuresTimeupdateEvents = true;\n\n/**\n * Boolean indicating whether the `HTML5` tech currently supports native `TextTrack`s.\n *\n * @type {boolean}\n * @default {@link Html5.supportsNativeTextTracks}\n */\nHtml5.prototype.featuresNativeTextTracks = Html5.supportsNativeTextTracks();\n\n/**\n * Boolean indicating whether the `HTML5` tech currently supports native `VideoTrack`s.\n *\n * @type {boolean}\n * @default {@link Html5.supportsNativeVideoTracks}\n */\nHtml5.prototype.featuresNativeVideoTracks = Html5.supportsNativeVideoTracks();\n\n/**\n * Boolean indicating whether the `HTML5` tech currently supports native `AudioTrack`s.\n *\n * @type {boolean}\n * @default {@link Html5.supportsNativeAudioTracks}\n */\nHtml5.prototype.featuresNativeAudioTracks = Html5.supportsNativeAudioTracks();\n\n// HTML5 Feature detection and Device Fixes --------------------------------- //\nvar canPlayType = Html5.TEST_VID && Html5.TEST_VID.constructor.prototype.canPlayType;\nvar mpegurlRE = /^application\\/(?:x-|vnd\\.apple\\.)mpegurl/i;\nvar mp4RE = /^video\\/mp4/i;\n\nHtml5.patchCanPlayType = function () {\n\n // Android 4.0 and above can play HLS to some extent but it reports being unable to do so\n // Firefox and Chrome report correctly\n if (ANDROID_VERSION >= 4.0 && !IS_FIREFOX && !IS_CHROME) {\n Html5.TEST_VID.constructor.prototype.canPlayType = function (type) {\n if (type && mpegurlRE.test(type)) {\n return 'maybe';\n }\n return canPlayType.call(this, type);\n };\n\n // Override Android 2.2 and less canPlayType method which is broken\n } else if (IS_OLD_ANDROID) {\n Html5.TEST_VID.constructor.prototype.canPlayType = function (type) {\n if (type && mp4RE.test(type)) {\n return 'maybe';\n }\n return canPlayType.call(this, type);\n };\n }\n};\n\nHtml5.unpatchCanPlayType = function () {\n var r = Html5.TEST_VID.constructor.prototype.canPlayType;\n\n Html5.TEST_VID.constructor.prototype.canPlayType = canPlayType;\n return r;\n};\n\n// by default, patch the media element\nHtml5.patchCanPlayType();\n\nHtml5.disposeMediaElement = function (el) {\n if (!el) {\n return;\n }\n\n if (el.parentNode) {\n el.parentNode.removeChild(el);\n }\n\n // remove any child track or source nodes to prevent their loading\n while (el.hasChildNodes()) {\n el.removeChild(el.firstChild);\n }\n\n // remove any src reference. not setting `src=''` because that causes a warning\n // in firefox\n el.removeAttribute('src');\n\n // force the media element to update its loading state by calling load()\n // however IE on Windows 7N has a bug that throws an error so need a try/catch (#793)\n if (typeof el.load === 'function') {\n // wrapping in an iife so it's not deoptimized (#1060#discussion_r10324473)\n (function () {\n try {\n el.load();\n } catch (e) {\n // not supported\n }\n })();\n }\n};\n\nHtml5.resetMediaElement = function (el) {\n if (!el) {\n return;\n }\n\n var sources = el.querySelectorAll('source');\n var i = sources.length;\n\n while (i--) {\n el.removeChild(sources[i]);\n }\n\n // remove any src reference.\n // not setting `src=''` because that throws an error\n el.removeAttribute('src');\n\n if (typeof el.load === 'function') {\n // wrapping in an iife so it's not deoptimized (#1060#discussion_r10324473)\n (function () {\n try {\n el.load();\n } catch (e) {\n // satisfy linter\n }\n })();\n }\n};\n\n/* Native HTML5 element property wrapping ----------------------------------- */\n// Wrap native boolean attributes with getters that check both property and attribute\n// The list is as followed:\n// muted, defaultMuted, autoplay, controls, loop, playsinline\n[\n/**\n * Get the value of `muted` from the media element. `muted` indicates\n * that the volume for the media should be set to silent. This does not actually change\n * the `volume` attribute.\n *\n * @method Html5#muted\n * @return {boolean}\n * - True if the value of `volume` should be ignored and the audio set to silent.\n * - False if the value of `volume` should be used.\n *\n * @see [Spec]{@link https://www.w3.org/TR/html5/embedded-content-0.html#dom-media-muted}\n */\n'muted',\n\n/**\n * Get the value of `defaultMuted` from the media element. `defaultMuted` indicates\n * whether the media should start muted or not. Only changes the default state of the\n * media. `muted` and `defaultMuted` can have different values. {@link Html5#muted} indicates the\n * current state.\n *\n * @method Html5#defaultMuted\n * @return {boolean}\n * - The value of `defaultMuted` from the media element.\n * - True indicates that the media should start muted.\n * - False indicates that the media should not start muted\n *\n * @see [Spec]{@link https://www.w3.org/TR/html5/embedded-content-0.html#dom-media-defaultmuted}\n */\n'defaultMuted',\n\n/**\n * Get the value of `autoplay` from the media element. `autoplay` indicates\n * that the media should start to play as soon as the page is ready.\n *\n * @method Html5#autoplay\n * @return {boolean}\n * - The value of `autoplay` from the media element.\n * - True indicates that the media should start as soon as the page loads.\n * - False indicates that the media should not start as soon as the page loads.\n *\n * @see [Spec]{@link https://www.w3.org/TR/html5/embedded-content-0.html#attr-media-autoplay}\n */\n'autoplay',\n\n/**\n * Get the value of `controls` from the media element. `controls` indicates\n * whether the native media controls should be shown or hidden.\n *\n * @method Html5#controls\n * @return {boolean}\n * - The value of `controls` from the media element.\n * - True indicates that native controls should be showing.\n * - False indicates that native controls should be hidden.\n *\n * @see [Spec]{@link https://www.w3.org/TR/html5/embedded-content-0.html#attr-media-controls}\n */\n'controls',\n\n/**\n * Get the value of `loop` from the media element. `loop` indicates\n * that the media should return to the start of the media and continue playing once\n * it reaches the end.\n *\n * @method Html5#loop\n * @return {boolean}\n * - The value of `loop` from the media element.\n * - True indicates that playback should seek back to start once\n * the end of a media is reached.\n * - False indicates that playback should not loop back to the start when the\n * end of the media is reached.\n *\n * @see [Spec]{@link https://www.w3.org/TR/html5/embedded-content-0.html#attr-media-loop}\n */\n'loop',\n\n/**\n * Get the value of `playsinline` from the media element. `playsinline` indicates\n * to the browser that non-fullscreen playback is preferred when fullscreen\n * playback is the native default, such as in iOS Safari.\n *\n * @method Html5#playsinline\n * @return {boolean}\n * - The value of `playsinline` from the media element.\n * - True indicates that the media should play inline.\n * - False indicates that the media should not play inline.\n *\n * @see [Spec]{@link https://html.spec.whatwg.org/#attr-video-playsinline}\n */\n'playsinline'].forEach(function (prop) {\n Html5.prototype[prop] = function () {\n return this.el_[prop] || this.el_.hasAttribute(prop);\n };\n});\n\n// Wrap native boolean attributes with setters that set both property and attribute\n// The list is as followed:\n// setMuted, setDefaultMuted, setAutoplay, setLoop, setPlaysinline\n// setControls is special-cased above\n[\n/**\n * Set the value of `muted` on the media element. `muted` indicates that the current\n * audio level should be silent.\n *\n * @method Html5#setMuted\n * @param {boolean} muted\n * - True if the audio should be set to silent\n * - False otherwise\n *\n * @see [Spec]{@link https://www.w3.org/TR/html5/embedded-content-0.html#dom-media-muted}\n */\n'muted',\n\n/**\n * Set the value of `defaultMuted` on the media element. `defaultMuted` indicates that the current\n * audio level should be silent, but will only effect the muted level on intial playback..\n *\n * @method Html5.prototype.setDefaultMuted\n * @param {boolean} defaultMuted\n * - True if the audio should be set to silent\n * - False otherwise\n *\n * @see [Spec]{@link https://www.w3.org/TR/html5/embedded-content-0.html#dom-media-defaultmuted}\n */\n'defaultMuted',\n\n/**\n * Set the value of `autoplay` on the media element. `autoplay` indicates\n * that the media should start to play as soon as the page is ready.\n *\n * @method Html5#setAutoplay\n * @param {boolean} autoplay\n * - True indicates that the media should start as soon as the page loads.\n * - False indicates that the media should not start as soon as the page loads.\n *\n * @see [Spec]{@link https://www.w3.org/TR/html5/embedded-content-0.html#attr-media-autoplay}\n */\n'autoplay',\n\n/**\n * Set the value of `loop` on the media element. `loop` indicates\n * that the media should return to the start of the media and continue playing once\n * it reaches the end.\n *\n * @method Html5#setLoop\n * @param {boolean} loop\n * - True indicates that playback should seek back to start once\n * the end of a media is reached.\n * - False indicates that playback should not loop back to the start when the\n * end of the media is reached.\n *\n * @see [Spec]{@link https://www.w3.org/TR/html5/embedded-content-0.html#attr-media-loop}\n */\n'loop',\n\n/**\n * Set the value of `playsinline` from the media element. `playsinline` indicates\n * to the browser that non-fullscreen playback is preferred when fullscreen\n * playback is the native default, such as in iOS Safari.\n *\n * @method Html5#setPlaysinline\n * @param {boolean} playsinline\n * - True indicates that the media should play inline.\n * - False indicates that the media should not play inline.\n *\n * @see [Spec]{@link https://html.spec.whatwg.org/#attr-video-playsinline}\n */\n'playsinline'].forEach(function (prop) {\n Html5.prototype['set' + toTitleCase(prop)] = function (v) {\n this.el_[prop] = v;\n\n if (v) {\n this.el_.setAttribute(prop, prop);\n } else {\n this.el_.removeAttribute(prop);\n }\n };\n});\n\n// Wrap native properties with a getter\n// The list is as followed\n// paused, currentTime, buffered, volume, poster, preload, error, seeking\n// seekable, ended, playbackRate, defaultPlaybackRate, played, networkState\n// readyState, videoWidth, videoHeight\n[\n/**\n * Get the value of `paused` from the media element. `paused` indicates whether the media element\n * is currently paused or not.\n *\n * @method Html5#paused\n * @return {boolean}\n * The value of `paused` from the media element.\n *\n * @see [Spec]{@link https://www.w3.org/TR/html5/embedded-content-0.html#dom-media-paused}\n */\n'paused',\n\n/**\n * Get the value of `currentTime` from the media element. `currentTime` indicates\n * the current second that the media is at in playback.\n *\n * @method Html5#currentTime\n * @return {number}\n * The value of `currentTime` from the media element.\n *\n * @see [Spec]{@link https://www.w3.org/TR/html5/embedded-content-0.html#dom-media-currenttime}\n */\n'currentTime',\n\n/**\n * Get the value of `buffered` from the media element. `buffered` is a `TimeRange`\n * object that represents the parts of the media that are already downloaded and\n * available for playback.\n *\n * @method Html5#buffered\n * @return {TimeRange}\n * The value of `buffered` from the media element.\n *\n * @see [Spec]{@link https://www.w3.org/TR/html5/embedded-content-0.html#dom-media-buffered}\n */\n'buffered',\n\n/**\n * Get the value of `volume` from the media element. `volume` indicates\n * the current playback volume of audio for a media. `volume` will be a value from 0\n * (silent) to 1 (loudest and default).\n *\n * @method Html5#volume\n * @return {number}\n * The value of `volume` from the media element. Value will be between 0-1.\n *\n * @see [Spec]{@link https://www.w3.org/TR/html5/embedded-content-0.html#dom-a-volume}\n */\n'volume',\n\n/**\n * Get the value of `poster` from the media element. `poster` indicates\n * that the url of an image file that can/will be shown when no media data is available.\n *\n * @method Html5#poster\n * @return {string}\n * The value of `poster` from the media element. Value will be a url to an\n * image.\n *\n * @see [Spec]{@link https://www.w3.org/TR/html5/embedded-content-0.html#attr-video-poster}\n */\n'poster',\n\n/**\n * Get the value of `preload` from the media element. `preload` indicates\n * what should download before the media is interacted with. It can have the following\n * values:\n * - none: nothing should be downloaded\n * - metadata: poster and the first few frames of the media may be downloaded to get\n * media dimensions and other metadata\n * - auto: allow the media and metadata for the media to be downloaded before\n * interaction\n *\n * @method Html5#preload\n * @return {string}\n * The value of `preload` from the media element. Will be 'none', 'metadata',\n * or 'auto'.\n *\n * @see [Spec]{@link https://www.w3.org/TR/html5/embedded-content-0.html#attr-media-preload}\n */\n'preload',\n\n/**\n * Get the value of the `error` from the media element. `error` indicates any\n * MediaError that may have occured during playback. If error returns null there is no\n * current error.\n *\n * @method Html5#error\n * @return {MediaError|null}\n * The value of `error` from the media element. Will be `MediaError` if there\n * is a current error and null otherwise.\n *\n * @see [Spec]{@link https://www.w3.org/TR/html5/embedded-content-0.html#dom-media-error}\n */\n'error',\n\n/**\n * Get the value of `seeking` from the media element. `seeking` indicates whether the\n * media is currently seeking to a new position or not.\n *\n * @method Html5#seeking\n * @return {boolean}\n * - The value of `seeking` from the media element.\n * - True indicates that the media is currently seeking to a new position.\n * - Flase indicates that the media is not seeking to a new position at this time.\n *\n * @see [Spec]{@link https://www.w3.org/TR/html5/embedded-content-0.html#dom-media-seeking}\n */\n'seeking',\n\n/**\n * Get the value of `seekable` from the media element. `seekable` returns a\n * `TimeRange` object indicating ranges of time that can currently be `seeked` to.\n *\n * @method Html5#seekable\n * @return {TimeRange}\n * The value of `seekable` from the media element. A `TimeRange` object\n * indicating the current ranges of time that can be seeked to.\n *\n * @see [Spec]{@link https://www.w3.org/TR/html5/embedded-content-0.html#dom-media-seekable}\n */\n'seekable',\n\n/**\n * Get the value of `ended` from the media element. `ended` indicates whether\n * the media has reached the end or not.\n *\n * @method Html5#ended\n * @return {boolean}\n * - The value of `ended` from the media element.\n * - True indicates that the media has ended.\n * - False indicates that the media has not ended.\n *\n * @see [Spec]{@link https://www.w3.org/TR/html5/embedded-content-0.html#dom-media-ended}\n */\n'ended',\n\n/**\n * Get the value of `playbackRate` from the media element. `playbackRate` indicates\n * the rate at which the media is currently playing back. Examples:\n * - if playbackRate is set to 2, media will play twice as fast.\n * - if playbackRate is set to 0.5, media will play half as fast.\n *\n * @method Html5#playbackRate\n * @return {number}\n * The value of `playbackRate` from the media element. A number indicating\n * the current playback speed of the media, where 1 is normal speed.\n *\n * @see [Spec]{@link https://www.w3.org/TR/html5/embedded-content-0.html#dom-media-playbackrate}\n */\n'playbackRate',\n\n/**\n * Get the value of `defaultPlaybackRate` from the media element. `defaultPlaybackRate` indicates\n * the rate at which the media is currently playing back. This value will not indicate the current\n * `playbackRate` after playback has started, use {@link Html5#playbackRate} for that.\n *\n * Examples:\n * - if defaultPlaybackRate is set to 2, media will play twice as fast.\n * - if defaultPlaybackRate is set to 0.5, media will play half as fast.\n *\n * @method Html5.prototype.defaultPlaybackRate\n * @return {number}\n * The value of `defaultPlaybackRate` from the media element. A number indicating\n * the current playback speed of the media, where 1 is normal speed.\n *\n * @see [Spec]{@link https://www.w3.org/TR/html5/embedded-content-0.html#dom-media-playbackrate}\n */\n'defaultPlaybackRate',\n\n/**\n * Get the value of `played` from the media element. `played` returns a `TimeRange`\n * object representing points in the media timeline that have been played.\n *\n * @method Html5#played\n * @return {TimeRange}\n * The value of `played` from the media element. A `TimeRange` object indicating\n * the ranges of time that have been played.\n *\n * @see [Spec]{@link https://www.w3.org/TR/html5/embedded-content-0.html#dom-media-played}\n */\n'played',\n\n/**\n * Get the value of `networkState` from the media element. `networkState` indicates\n * the current network state. It returns an enumeration from the following list:\n * - 0: NETWORK_EMPTY\n * - 1: NEWORK_IDLE\n * - 2: NETWORK_LOADING\n * - 3: NETWORK_NO_SOURCE\n *\n * @method Html5#networkState\n * @return {number}\n * The value of `networkState` from the media element. This will be a number\n * from the list in the description.\n *\n * @see [Spec] {@link https://www.w3.org/TR/html5/embedded-content-0.html#dom-media-networkstate}\n */\n'networkState',\n\n/**\n * Get the value of `readyState` from the media element. `readyState` indicates\n * the current state of the media element. It returns an enumeration from the\n * following list:\n * - 0: HAVE_NOTHING\n * - 1: HAVE_METADATA\n * - 2: HAVE_CURRENT_DATA\n * - 3: HAVE_FUTURE_DATA\n * - 4: HAVE_ENOUGH_DATA\n *\n * @method Html5#readyState\n * @return {number}\n * The value of `readyState` from the media element. This will be a number\n * from the list in the description.\n *\n * @see [Spec] {@link https://www.w3.org/TR/html5/embedded-content-0.html#ready-states}\n */\n'readyState',\n\n/**\n * Get the value of `videoWidth` from the video element. `videoWidth` indicates\n * the current width of the video in css pixels.\n *\n * @method Html5#videoWidth\n * @return {number}\n * The value of `videoWidth` from the video element. This will be a number\n * in css pixels.\n *\n * @see [Spec] {@link https://www.w3.org/TR/html5/embedded-content-0.html#dom-video-videowidth}\n */\n'videoWidth',\n\n/**\n * Get the value of `videoHeight` from the video element. `videoHeigth` indicates\n * the current height of the video in css pixels.\n *\n * @method Html5#videoHeight\n * @return {number}\n * The value of `videoHeight` from the video element. This will be a number\n * in css pixels.\n *\n * @see [Spec] {@link https://www.w3.org/TR/html5/embedded-content-0.html#dom-video-videowidth}\n */\n'videoHeight'].forEach(function (prop) {\n Html5.prototype[prop] = function () {\n return this.el_[prop];\n };\n});\n\n// Wrap native properties with a setter in this format:\n// set + toTitleCase(name)\n// The list is as follows:\n// setVolume, setSrc, setPoster, setPreload, setPlaybackRate, setDefaultPlaybackRate\n[\n/**\n * Set the value of `volume` on the media element. `volume` indicates the current\n * audio level as a percentage in decimal form. This means that 1 is 100%, 0.5 is 50%, and\n * so on.\n *\n * @method Html5#setVolume\n * @param {number} percentAsDecimal\n * The volume percent as a decimal. Valid range is from 0-1.\n *\n * @see [Spec]{@link https://www.w3.org/TR/html5/embedded-content-0.html#dom-a-volume}\n */\n'volume',\n\n/**\n * Set the value of `src` on the media element. `src` indicates the current\n * {@link Tech~SourceObject} for the media.\n *\n * @method Html5#setSrc\n * @param {Tech~SourceObject} src\n * The source object to set as the current source.\n *\n * @see [Spec]{@link https://www.w3.org/TR/html5/embedded-content-0.html#dom-media-src}\n */\n'src',\n\n/**\n * Set the value of `poster` on the media element. `poster` is the url to\n * an image file that can/will be shown when no media data is available.\n *\n * @method Html5#setPoster\n * @param {string} poster\n * The url to an image that should be used as the `poster` for the media\n * element.\n *\n * @see [Spec]{@link https://www.w3.org/TR/html5/embedded-content-0.html#attr-media-poster}\n */\n'poster',\n\n/**\n * Set the value of `preload` on the media element. `preload` indicates\n * what should download before the media is interacted with. It can have the following\n * values:\n * - none: nothing should be downloaded\n * - metadata: poster and the first few frames of the media may be downloaded to get\n * media dimensions and other metadata\n * - auto: allow the media and metadata for the media to be downloaded before\n * interaction\n *\n * @method Html5#setPreload\n * @param {string} preload\n * The value of `preload` to set on the media element. Must be 'none', 'metadata',\n * or 'auto'.\n *\n * @see [Spec]{@link https://www.w3.org/TR/html5/embedded-content-0.html#attr-media-preload}\n */\n'preload',\n\n/**\n * Set the value of `playbackRate` on the media element. `playbackRate` indicates\n * the rate at which the media should play back. Examples:\n * - if playbackRate is set to 2, media will play twice as fast.\n * - if playbackRate is set to 0.5, media will play half as fast.\n *\n * @method Html5#setPlaybackRate\n * @return {number}\n * The value of `playbackRate` from the media element. A number indicating\n * the current playback speed of the media, where 1 is normal speed.\n *\n * @see [Spec]{@link https://www.w3.org/TR/html5/embedded-content-0.html#dom-media-playbackrate}\n */\n'playbackRate',\n\n/**\n * Set the value of `defaultPlaybackRate` on the media element. `defaultPlaybackRate` indicates\n * the rate at which the media should play back upon initial startup. Changing this value\n * after a video has started will do nothing. Instead you should used {@link Html5#setPlaybackRate}.\n *\n * Example Values:\n * - if playbackRate is set to 2, media will play twice as fast.\n * - if playbackRate is set to 0.5, media will play half as fast.\n *\n * @method Html5.prototype.setDefaultPlaybackRate\n * @return {number}\n * The value of `defaultPlaybackRate` from the media element. A number indicating\n * the current playback speed of the media, where 1 is normal speed.\n *\n * @see [Spec]{@link https://www.w3.org/TR/html5/embedded-content-0.html#dom-media-defaultplaybackrate}\n */\n'defaultPlaybackRate'].forEach(function (prop) {\n Html5.prototype['set' + toTitleCase(prop)] = function (v) {\n this.el_[prop] = v;\n };\n});\n\n// wrap native functions with a function\n// The list is as follows:\n// pause, load play\n[\n/**\n * A wrapper around the media elements `pause` function. This will call the `HTML5`\n * media elements `pause` function.\n *\n * @method Html5#pause\n * @see [Spec]{@link https://www.w3.org/TR/html5/embedded-content-0.html#dom-media-pause}\n */\n'pause',\n\n/**\n * A wrapper around the media elements `load` function. This will call the `HTML5`s\n * media element `load` function.\n *\n * @method Html5#load\n * @see [Spec]{@link https://www.w3.org/TR/html5/embedded-content-0.html#dom-media-load}\n */\n'load',\n\n/**\n * A wrapper around the media elements `play` function. This will call the `HTML5`s\n * media element `play` function.\n *\n * @method Html5#play\n * @see [Spec]{@link https://www.w3.org/TR/html5/embedded-content-0.html#dom-media-play}\n */\n'play'].forEach(function (prop) {\n Html5.prototype[prop] = function () {\n return this.el_[prop]();\n };\n});\n\nTech.withSourceHandlers(Html5);\n\n/**\n * Native source handler for Html5, simply passes the source to the media element.\n *\n * @proprety {Tech~SourceObject} source\n * The source object\n *\n * @proprety {Html5} tech\n * The instance of the HTML5 tech.\n */\nHtml5.nativeSourceHandler = {};\n\n/**\n * Check if the media element can play the given mime type.\n *\n * @param {string} type\n * The mimetype to check\n *\n * @return {string}\n * 'probably', 'maybe', or '' (empty string)\n */\nHtml5.nativeSourceHandler.canPlayType = function (type) {\n // IE9 on Windows 7 without MediaPlayer throws an error here\n // https://github.com/videojs/video.js/issues/519\n try {\n return Html5.TEST_VID.canPlayType(type);\n } catch (e) {\n return '';\n }\n};\n\n/**\n * Check if the media element can handle a source natively.\n *\n * @param {Tech~SourceObject} source\n * The source object\n *\n * @param {Object} [options]\n * Options to be passed to the tech.\n *\n * @return {string}\n * 'probably', 'maybe', or '' (empty string).\n */\nHtml5.nativeSourceHandler.canHandleSource = function (source, options) {\n\n // If a type was provided we should rely on that\n if (source.type) {\n return Html5.nativeSourceHandler.canPlayType(source.type);\n\n // If no type, fall back to checking 'video/[EXTENSION]'\n } else if (source.src) {\n var ext = getFileExtension(source.src);\n\n return Html5.nativeSourceHandler.canPlayType('video/' + ext);\n }\n\n return '';\n};\n\n/**\n * Pass the source to the native media element.\n *\n * @param {Tech~SourceObject} source\n * The source object\n *\n * @param {Html5} tech\n * The instance of the Html5 tech\n *\n * @param {Object} [options]\n * The options to pass to the source\n */\nHtml5.nativeSourceHandler.handleSource = function (source, tech, options) {\n tech.setSrc(source.src);\n};\n\n/**\n * A noop for the native dispose function, as cleanup is not needed.\n */\nHtml5.nativeSourceHandler.dispose = function () {};\n\n// Register the native source handler\nHtml5.registerSourceHandler(Html5.nativeSourceHandler);\n\nTech.registerTech('Html5', Html5);\n\nvar _templateObject$1 = taggedTemplateLiteralLoose(['\\n Using the tech directly can be dangerous. I hope you know what you\\'re doing.\\n See https://github.com/videojs/video.js/issues/2617 for more info.\\n '], ['\\n Using the tech directly can be dangerous. I hope you know what you\\'re doing.\\n See https://github.com/videojs/video.js/issues/2617 for more info.\\n ']);\n\n/**\n * @file player.js\n */\n// Subclasses Component\n// The following imports are used only to ensure that the corresponding modules\n// are always included in the video.js package. Importing the modules will\n// execute them and they will register themselves with video.js.\n// Import Html5 tech, at least for disposing the original video tag.\n// The following tech events are simply re-triggered\n// on the player when they happen\nvar TECH_EVENTS_RETRIGGER = [\n/**\n * Fired while the user agent is downloading media data.\n *\n * @event Player#progress\n * @type {EventTarget~Event}\n */\n/**\n * Retrigger the `progress` event that was triggered by the {@link Tech}.\n *\n * @private\n * @method Player#handleTechProgress_\n * @fires Player#progress\n * @listens Tech#progress\n */\n'progress',\n\n/**\n * Fires when the loading of an audio/video is aborted.\n *\n * @event Player#abort\n * @type {EventTarget~Event}\n */\n/**\n * Retrigger the `abort` event that was triggered by the {@link Tech}.\n *\n * @private\n * @method Player#handleTechAbort_\n * @fires Player#abort\n * @listens Tech#abort\n */\n'abort',\n\n/**\n * Fires when the browser is intentionally not getting media data.\n *\n * @event Player#suspend\n * @type {EventTarget~Event}\n */\n/**\n * Retrigger the `suspend` event that was triggered by the {@link Tech}.\n *\n * @private\n * @method Player#handleTechSuspend_\n * @fires Player#suspend\n * @listens Tech#suspend\n */\n'suspend',\n\n/**\n * Fires when the current playlist is empty.\n *\n * @event Player#emptied\n * @type {EventTarget~Event}\n */\n/**\n * Retrigger the `emptied` event that was triggered by the {@link Tech}.\n *\n * @private\n * @method Player#handleTechEmptied_\n * @fires Player#emptied\n * @listens Tech#emptied\n */\n'emptied',\n/**\n * Fires when the browser is trying to get media data, but data is not available.\n *\n * @event Player#stalled\n * @type {EventTarget~Event}\n */\n/**\n * Retrigger the `stalled` event that was triggered by the {@link Tech}.\n *\n * @private\n * @method Player#handleTechStalled_\n * @fires Player#stalled\n * @listens Tech#stalled\n */\n'stalled',\n\n/**\n * Fires when the browser has loaded meta data for the audio/video.\n *\n * @event Player#loadedmetadata\n * @type {EventTarget~Event}\n */\n/**\n * Retrigger the `stalled` event that was triggered by the {@link Tech}.\n *\n * @private\n * @method Player#handleTechLoadedmetadata_\n * @fires Player#loadedmetadata\n * @listens Tech#loadedmetadata\n */\n'loadedmetadata',\n\n/**\n * Fires when the browser has loaded the current frame of the audio/video.\n *\n * @event Player#loadeddata\n * @type {event}\n */\n/**\n * Retrigger the `loadeddata` event that was triggered by the {@link Tech}.\n *\n * @private\n * @method Player#handleTechLoaddeddata_\n * @fires Player#loadeddata\n * @listens Tech#loadeddata\n */\n'loadeddata',\n\n/**\n * Fires when the current playback position has changed.\n *\n * @event Player#timeupdate\n * @type {event}\n */\n/**\n * Retrigger the `timeupdate` event that was triggered by the {@link Tech}.\n *\n * @private\n * @method Player#handleTechTimeUpdate_\n * @fires Player#timeupdate\n * @listens Tech#timeupdate\n */\n'timeupdate',\n\n/**\n * Fires when the playing speed of the audio/video is changed\n *\n * @event Player#ratechange\n * @type {event}\n */\n/**\n * Retrigger the `ratechange` event that was triggered by the {@link Tech}.\n *\n * @private\n * @method Player#handleTechRatechange_\n * @fires Player#ratechange\n * @listens Tech#ratechange\n */\n'ratechange',\n\n/**\n * Fires when the video's intrinsic dimensions change\n *\n * @event Player#resize\n * @type {event}\n */\n/**\n * Retrigger the `resize` event that was triggered by the {@link Tech}.\n *\n * @private\n * @method Player#handleTechResize_\n * @fires Player#resize\n * @listens Tech#resize\n */\n'resize',\n\n/**\n * Fires when the volume has been changed\n *\n * @event Player#volumechange\n * @type {event}\n */\n/**\n * Retrigger the `volumechange` event that was triggered by the {@link Tech}.\n *\n * @private\n * @method Player#handleTechVolumechange_\n * @fires Player#volumechange\n * @listens Tech#volumechange\n */\n'volumechange',\n\n/**\n * Fires when the text track has been changed\n *\n * @event Player#texttrackchange\n * @type {event}\n */\n/**\n * Retrigger the `texttrackchange` event that was triggered by the {@link Tech}.\n *\n * @private\n * @method Player#handleTechTexttrackchange_\n * @fires Player#texttrackchange\n * @listens Tech#texttrackchange\n */\n'texttrackchange'];\n\n/**\n * An instance of the `Player` class is created when any of the Video.js setup methods\n * are used to initialize a video.\n *\n * After an instance has been created it can be accessed globally in two ways:\n * 1. By calling `videojs('example_video_1');`\n * 2. By using it directly via `videojs.players.example_video_1;`\n *\n * @extends Component\n */\n\nvar Player = function (_Component) {\n inherits(Player, _Component);\n\n /**\n * Create an instance of this class.\n *\n * @param {Element} tag\n * The original video DOM element used for configuring options.\n *\n * @param {Object} [options]\n * Object of option names and values.\n *\n * @param {Component~ReadyCallback} [ready]\n * Ready callback function.\n */\n function Player(tag, options, ready) {\n classCallCheck(this, Player);\n\n // Make sure tag ID exists\n tag.id = tag.id || 'vjs_video_' + newGUID();\n\n // Set Options\n // The options argument overrides options set in the video tag\n // which overrides globally set options.\n // This latter part coincides with the load order\n // (tag must exist before Player)\n options = assign(Player.getTagSettings(tag), options);\n\n // Delay the initialization of children because we need to set up\n // player properties first, and can't use `this` before `super()`\n options.initChildren = false;\n\n // Same with creating the element\n options.createEl = false;\n\n // don't auto mixin the evented mixin\n options.evented = false;\n\n // we don't want the player to report touch activity on itself\n // see enableTouchActivity in Component\n options.reportTouchActivity = false;\n\n // If language is not set, get the closest lang attribute\n if (!options.language) {\n if (typeof tag.closest === 'function') {\n var closest = tag.closest('[lang]');\n\n if (closest && closest.getAttribute) {\n options.language = closest.getAttribute('lang');\n }\n } else {\n var element = tag;\n\n while (element && element.nodeType === 1) {\n if (getAttributes(element).hasOwnProperty('lang')) {\n options.language = element.getAttribute('lang');\n break;\n }\n element = element.parentNode;\n }\n }\n }\n\n // Run base component initializing with new options\n\n // Turn off API access because we're loading a new tech that might load asynchronously\n var _this = possibleConstructorReturn(this, _Component.call(this, null, options, ready));\n\n _this.isReady_ = false;\n\n // Init state hasStarted_\n _this.hasStarted_ = false;\n\n // Init state userActive_\n _this.userActive_ = false;\n\n // if the global option object was accidentally blown away by\n // someone, bail early with an informative error\n if (!_this.options_ || !_this.options_.techOrder || !_this.options_.techOrder.length) {\n throw new Error('No techOrder specified. Did you overwrite ' + 'videojs.options instead of just changing the ' + 'properties you want to override?');\n }\n\n // Store the original tag used to set options\n _this.tag = tag;\n\n // Store the tag attributes used to restore html5 element\n _this.tagAttributes = tag && getAttributes(tag);\n\n // Update current language\n _this.language(_this.options_.language);\n\n // Update Supported Languages\n if (options.languages) {\n // Normalise player option languages to lowercase\n var languagesToLower = {};\n\n Object.getOwnPropertyNames(options.languages).forEach(function (name$$1) {\n languagesToLower[name$$1.toLowerCase()] = options.languages[name$$1];\n });\n _this.languages_ = languagesToLower;\n } else {\n _this.languages_ = Player.prototype.options_.languages;\n }\n\n // Cache for video property values.\n _this.cache_ = {};\n\n // Set poster\n _this.poster_ = options.poster || '';\n\n // Set controls\n _this.controls_ = !!options.controls;\n\n // Set default values for lastVolume\n _this.cache_.lastVolume = 1;\n\n // Original tag settings stored in options\n // now remove immediately so native controls don't flash.\n // May be turned back on by HTML5 tech if nativeControlsForTouch is true\n tag.controls = false;\n tag.removeAttribute('controls');\n\n /*\n * Store the internal state of scrubbing\n *\n * @private\n * @return {Boolean} True if the user is scrubbing\n */\n _this.scrubbing_ = false;\n\n _this.el_ = _this.createEl();\n\n // Make this an evented object and use `el_` as its event bus.\n evented(_this, { eventBusKey: 'el_' });\n\n // We also want to pass the original player options to each component and plugin\n // as well so they don't need to reach back into the player for options later.\n // We also need to do another copy of this.options_ so we don't end up with\n // an infinite loop.\n var playerOptionsCopy = mergeOptions(_this.options_);\n\n // Load plugins\n if (options.plugins) {\n var plugins = options.plugins;\n\n Object.keys(plugins).forEach(function (name$$1) {\n if (typeof this[name$$1] === 'function') {\n this[name$$1](plugins[name$$1]);\n } else {\n throw new Error('plugin \"' + name$$1 + '\" does not exist');\n }\n }, _this);\n }\n\n _this.options_.playerOptions = playerOptionsCopy;\n\n _this.middleware_ = [];\n\n _this.initChildren();\n\n // Set isAudio based on whether or not an audio tag was used\n _this.isAudio(tag.nodeName.toLowerCase() === 'audio');\n\n // Update controls className. Can't do this when the controls are initially\n // set because the element doesn't exist yet.\n if (_this.controls()) {\n _this.addClass('vjs-controls-enabled');\n } else {\n _this.addClass('vjs-controls-disabled');\n }\n\n // Set ARIA label and region role depending on player type\n _this.el_.setAttribute('role', 'region');\n if (_this.isAudio()) {\n _this.el_.setAttribute('aria-label', _this.localize('Audio Player'));\n } else {\n _this.el_.setAttribute('aria-label', _this.localize('Video Player'));\n }\n\n if (_this.isAudio()) {\n _this.addClass('vjs-audio');\n }\n\n if (_this.flexNotSupported_()) {\n _this.addClass('vjs-no-flex');\n }\n\n // TODO: Make this smarter. Toggle user state between touching/mousing\n // using events, since devices can have both touch and mouse events.\n // if (browser.TOUCH_ENABLED) {\n // this.addClass('vjs-touch-enabled');\n // }\n\n // iOS Safari has broken hover handling\n if (!IS_IOS) {\n _this.addClass('vjs-workinghover');\n }\n\n // Make player easily findable by ID\n Player.players[_this.id_] = _this;\n\n // Add a major version class to aid css in plugins\n var majorVersion = version.split('.')[0];\n\n _this.addClass('vjs-v' + majorVersion);\n\n // When the player is first initialized, trigger activity so components\n // like the control bar show themselves if needed\n _this.userActive(true);\n _this.reportUserActivity();\n _this.listenForUserActivity_();\n\n _this.on('fullscreenchange', _this.handleFullscreenChange_);\n _this.on('stageclick', _this.handleStageClick_);\n\n _this.changingSrc_ = false;\n _this.playWaitingForReady_ = false;\n _this.playOnLoadstart_ = null;\n\n _this.forceAutoplayInChrome_();\n return _this;\n }\n\n /**\n * Destroys the video player and does any necessary cleanup.\n *\n * This is especially helpful if you are dynamically adding and removing videos\n * to/from the DOM.\n *\n * @fires Player#dispose\n */\n\n\n Player.prototype.dispose = function dispose() {\n /**\n * Called when the player is being disposed of.\n *\n * @event Player#dispose\n * @type {EventTarget~Event}\n */\n this.trigger('dispose');\n // prevent dispose from being called twice\n this.off('dispose');\n\n if (this.styleEl_ && this.styleEl_.parentNode) {\n this.styleEl_.parentNode.removeChild(this.styleEl_);\n this.styleEl_ = null;\n }\n\n // Kill reference to this player\n Player.players[this.id_] = null;\n\n if (this.tag && this.tag.player) {\n this.tag.player = null;\n }\n\n if (this.el_ && this.el_.player) {\n this.el_.player = null;\n }\n\n if (this.tech_) {\n this.tech_.dispose();\n }\n\n if (this.playerElIngest_) {\n this.playerElIngest_ = null;\n }\n\n if (this.tag) {\n this.tag = null;\n }\n\n clearCacheForPlayer(this);\n\n // the actual .el_ is removed here\n _Component.prototype.dispose.call(this);\n };\n\n /**\n * Create the `Player`'s DOM element.\n *\n * @return {Element}\n * The DOM element that gets created.\n */\n\n\n Player.prototype.createEl = function createEl$$1() {\n var tag = this.tag;\n var el = void 0;\n var playerElIngest = this.playerElIngest_ = tag.parentNode && tag.parentNode.hasAttribute && tag.parentNode.hasAttribute('data-vjs-player');\n var divEmbed = this.tag.tagName.toLowerCase() === 'video-js';\n\n if (playerElIngest) {\n el = this.el_ = tag.parentNode;\n } else if (!divEmbed) {\n el = this.el_ = _Component.prototype.createEl.call(this, 'div');\n }\n\n // Copy over all the attributes from the tag, including ID and class\n // ID will now reference player box, not the video tag\n var attrs = getAttributes(tag);\n\n if (divEmbed) {\n el = this.el_ = tag;\n tag = this.tag = document_1.createElement('video');\n while (el.children.length) {\n tag.appendChild(el.firstChild);\n }\n\n if (!hasClass(el, 'video-js')) {\n addClass(el, 'video-js');\n }\n\n el.appendChild(tag);\n\n playerElIngest = this.playerElIngest_ = el;\n }\n\n // set tabindex to -1 so we could focus on the player element\n tag.setAttribute('tabindex', '-1');\n\n // Remove width/height attrs from tag so CSS can make it 100% width/height\n tag.removeAttribute('width');\n tag.removeAttribute('height');\n\n Object.getOwnPropertyNames(attrs).forEach(function (attr) {\n // workaround so we don't totally break IE7\n // http://stackoverflow.com/questions/3653444/css-styles-not-applied-on-dynamic-elements-in-internet-explorer-7\n if (attr === 'class') {\n el.className += ' ' + attrs[attr];\n\n if (divEmbed) {\n tag.className += ' ' + attrs[attr];\n }\n } else {\n el.setAttribute(attr, attrs[attr]);\n\n if (divEmbed) {\n tag.setAttribute(attr, attrs[attr]);\n }\n }\n });\n\n // Update tag id/class for use as HTML5 playback tech\n // Might think we should do this after embedding in container so .vjs-tech class\n // doesn't flash 100% width/height, but class only applies with .video-js parent\n tag.playerId = tag.id;\n tag.id += '_html5_api';\n tag.className = 'vjs-tech';\n\n // Make player findable on elements\n tag.player = el.player = this;\n // Default state of video is paused\n this.addClass('vjs-paused');\n\n // Add a style element in the player that we'll use to set the width/height\n // of the player in a way that's still overrideable by CSS, just like the\n // video element\n if (window_1.VIDEOJS_NO_DYNAMIC_STYLE !== true) {\n this.styleEl_ = createStyleElement('vjs-styles-dimensions');\n var defaultsStyleEl = $('.vjs-styles-defaults');\n var head = $('head');\n\n head.insertBefore(this.styleEl_, defaultsStyleEl ? defaultsStyleEl.nextSibling : head.firstChild);\n }\n\n // Pass in the width/height/aspectRatio options which will update the style el\n this.width(this.options_.width);\n this.height(this.options_.height);\n this.fluid(this.options_.fluid);\n this.aspectRatio(this.options_.aspectRatio);\n\n // Hide any links within the video/audio tag, because IE doesn't hide them completely.\n var links = tag.getElementsByTagName('a');\n\n for (var i = 0; i < links.length; i++) {\n var linkEl = links.item(i);\n\n addClass(linkEl, 'vjs-hidden');\n linkEl.setAttribute('hidden', 'hidden');\n }\n\n // insertElFirst seems to cause the networkState to flicker from 3 to 2, so\n // keep track of the original for later so we can know if the source originally failed\n tag.initNetworkState_ = tag.networkState;\n\n // Wrap video tag in div (el/box) container\n if (tag.parentNode && !playerElIngest) {\n tag.parentNode.insertBefore(el, tag);\n }\n\n // insert the tag as the first child of the player element\n // then manually add it to the children array so that this.addChild\n // will work properly for other components\n //\n // Breaks iPhone, fixed in HTML5 setup.\n prependTo(tag, el);\n this.children_.unshift(tag);\n\n // Set lang attr on player to ensure CSS :lang() in consistent with player\n // if it's been set to something different to the doc\n this.el_.setAttribute('lang', this.language_);\n\n this.el_ = el;\n\n return el;\n };\n\n /**\n * A getter/setter for the `Player`'s width. Returns the player's configured value.\n * To get the current width use `currentWidth()`.\n *\n * @param {number} [value]\n * The value to set the `Player`'s width to.\n *\n * @return {number}\n * The current width of the `Player` when getting.\n */\n\n\n Player.prototype.width = function width(value) {\n return this.dimension('width', value);\n };\n\n /**\n * A getter/setter for the `Player`'s height. Returns the player's configured value.\n * To get the current height use `currentheight()`.\n *\n * @param {number} [value]\n * The value to set the `Player`'s heigth to.\n *\n * @return {number}\n * The current height of the `Player` when getting.\n */\n\n\n Player.prototype.height = function height(value) {\n return this.dimension('height', value);\n };\n\n /**\n * A getter/setter for the `Player`'s width & height.\n *\n * @param {string} dimension\n * This string can be:\n * - 'width'\n * - 'height'\n *\n * @param {number} [value]\n * Value for dimension specified in the first argument.\n *\n * @return {number}\n * The dimension arguments value when getting (width/height).\n */\n\n\n Player.prototype.dimension = function dimension(_dimension, value) {\n var privDimension = _dimension + '_';\n\n if (value === undefined) {\n return this[privDimension] || 0;\n }\n\n if (value === '') {\n // If an empty string is given, reset the dimension to be automatic\n this[privDimension] = undefined;\n this.updateStyleEl_();\n return;\n }\n\n var parsedVal = parseFloat(value);\n\n if (isNaN(parsedVal)) {\n log$1.error('Improper value \"' + value + '\" supplied for for ' + _dimension);\n return;\n }\n\n this[privDimension] = parsedVal;\n this.updateStyleEl_();\n };\n\n /**\n * A getter/setter/toggler for the vjs-fluid `className` on the `Player`.\n *\n * @param {boolean} [bool]\n * - A value of true adds the class.\n * - A value of false removes the class.\n * - No value will toggle the fluid class.\n *\n * @return {boolean|undefined}\n * - The value of fluid when getting.\n * - `undefined` when setting.\n */\n\n\n Player.prototype.fluid = function fluid(bool) {\n if (bool === undefined) {\n return !!this.fluid_;\n }\n\n this.fluid_ = !!bool;\n\n if (bool) {\n this.addClass('vjs-fluid');\n } else {\n this.removeClass('vjs-fluid');\n }\n\n this.updateStyleEl_();\n };\n\n /**\n * Get/Set the aspect ratio\n *\n * @param {string} [ratio]\n * Aspect ratio for player\n *\n * @return {string|undefined}\n * returns the current aspect ratio when getting\n */\n\n /**\n * A getter/setter for the `Player`'s aspect ratio.\n *\n * @param {string} [ratio]\n * The value to set the `Player's aspect ratio to.\n *\n * @return {string|undefined}\n * - The current aspect ratio of the `Player` when getting.\n * - undefined when setting\n */\n\n\n Player.prototype.aspectRatio = function aspectRatio(ratio) {\n if (ratio === undefined) {\n return this.aspectRatio_;\n }\n\n // Check for width:height format\n if (!/^\\d+\\:\\d+$/.test(ratio)) {\n throw new Error('Improper value supplied for aspect ratio. The format should be width:height, for example 16:9.');\n }\n this.aspectRatio_ = ratio;\n\n // We're assuming if you set an aspect ratio you want fluid mode,\n // because in fixed mode you could calculate width and height yourself.\n this.fluid(true);\n\n this.updateStyleEl_();\n };\n\n /**\n * Update styles of the `Player` element (height, width and aspect ratio).\n *\n * @private\n * @listens Tech#loadedmetadata\n */\n\n\n Player.prototype.updateStyleEl_ = function updateStyleEl_() {\n if (window_1.VIDEOJS_NO_DYNAMIC_STYLE === true) {\n var _width = typeof this.width_ === 'number' ? this.width_ : this.options_.width;\n var _height = typeof this.height_ === 'number' ? this.height_ : this.options_.height;\n var techEl = this.tech_ && this.tech_.el();\n\n if (techEl) {\n if (_width >= 0) {\n techEl.width = _width;\n }\n if (_height >= 0) {\n techEl.height = _height;\n }\n }\n\n return;\n }\n\n var width = void 0;\n var height = void 0;\n var aspectRatio = void 0;\n var idClass = void 0;\n\n // The aspect ratio is either used directly or to calculate width and height.\n if (this.aspectRatio_ !== undefined && this.aspectRatio_ !== 'auto') {\n // Use any aspectRatio that's been specifically set\n aspectRatio = this.aspectRatio_;\n } else if (this.videoWidth() > 0) {\n // Otherwise try to get the aspect ratio from the video metadata\n aspectRatio = this.videoWidth() + ':' + this.videoHeight();\n } else {\n // Or use a default. The video element's is 2:1, but 16:9 is more common.\n aspectRatio = '16:9';\n }\n\n // Get the ratio as a decimal we can use to calculate dimensions\n var ratioParts = aspectRatio.split(':');\n var ratioMultiplier = ratioParts[1] / ratioParts[0];\n\n if (this.width_ !== undefined) {\n // Use any width that's been specifically set\n width = this.width_;\n } else if (this.height_ !== undefined) {\n // Or calulate the width from the aspect ratio if a height has been set\n width = this.height_ / ratioMultiplier;\n } else {\n // Or use the video's metadata, or use the video el's default of 300\n width = this.videoWidth() || 300;\n }\n\n if (this.height_ !== undefined) {\n // Use any height that's been specifically set\n height = this.height_;\n } else {\n // Otherwise calculate the height from the ratio and the width\n height = width * ratioMultiplier;\n }\n\n // Ensure the CSS class is valid by starting with an alpha character\n if (/^[^a-zA-Z]/.test(this.id())) {\n idClass = 'dimensions-' + this.id();\n } else {\n idClass = this.id() + '-dimensions';\n }\n\n // Ensure the right class is still on the player for the style element\n this.addClass(idClass);\n\n setTextContent(this.styleEl_, '\\n .' + idClass + ' {\\n width: ' + width + 'px;\\n height: ' + height + 'px;\\n }\\n\\n .' + idClass + '.vjs-fluid {\\n padding-top: ' + ratioMultiplier * 100 + '%;\\n }\\n ');\n };\n\n /**\n * Load/Create an instance of playback {@link Tech} including element\n * and API methods. Then append the `Tech` element in `Player` as a child.\n *\n * @param {string} techName\n * name of the playback technology\n *\n * @param {string} source\n * video source\n *\n * @private\n */\n\n\n Player.prototype.loadTech_ = function loadTech_(techName, source) {\n var _this2 = this;\n\n // Pause and remove current playback technology\n if (this.tech_) {\n this.unloadTech_();\n }\n\n var titleTechName = toTitleCase(techName);\n var camelTechName = techName.charAt(0).toLowerCase() + techName.slice(1);\n\n // get rid of the HTML5 video tag as soon as we are using another tech\n if (titleTechName !== 'Html5' && this.tag) {\n Tech.getTech('Html5').disposeMediaElement(this.tag);\n this.tag.player = null;\n this.tag = null;\n }\n\n this.techName_ = titleTechName;\n\n // Turn off API access because we're loading a new tech that might load asynchronously\n this.isReady_ = false;\n\n // Grab tech-specific options from player options and add source and parent element to use.\n var techOptions = {\n source: source,\n 'nativeControlsForTouch': this.options_.nativeControlsForTouch,\n 'playerId': this.id(),\n 'techId': this.id() + '_' + titleTechName + '_api',\n 'autoplay': this.options_.autoplay,\n 'playsinline': this.options_.playsinline,\n 'preload': this.options_.preload,\n 'loop': this.options_.loop,\n 'muted': this.options_.muted,\n 'poster': this.poster(),\n 'language': this.language(),\n 'playerElIngest': this.playerElIngest_ || false,\n 'vtt.js': this.options_['vtt.js']\n };\n\n ALL.names.forEach(function (name$$1) {\n var props = ALL[name$$1];\n\n techOptions[props.getterName] = _this2[props.privateName];\n });\n\n assign(techOptions, this.options_[titleTechName]);\n assign(techOptions, this.options_[camelTechName]);\n assign(techOptions, this.options_[techName.toLowerCase()]);\n\n if (this.tag) {\n techOptions.tag = this.tag;\n }\n\n if (source && source.src === this.cache_.src && this.cache_.currentTime > 0) {\n techOptions.startTime = this.cache_.currentTime;\n }\n\n // Initialize tech instance\n var TechClass = Tech.getTech(techName);\n\n if (!TechClass) {\n throw new Error('No Tech named \\'' + titleTechName + '\\' exists! \\'' + titleTechName + '\\' should be registered using videojs.registerTech()\\'');\n }\n\n this.tech_ = new TechClass(techOptions);\n\n // player.triggerReady is always async, so don't need this to be async\n this.tech_.ready(bind(this, this.handleTechReady_), true);\n\n textTrackConverter.jsonToTextTracks(this.textTracksJson_ || [], this.tech_);\n\n // Listen to all HTML5-defined events and trigger them on the player\n TECH_EVENTS_RETRIGGER.forEach(function (event) {\n _this2.on(_this2.tech_, event, _this2['handleTech' + toTitleCase(event) + '_']);\n });\n this.on(this.tech_, 'loadstart', this.handleTechLoadStart_);\n this.on(this.tech_, 'waiting', this.handleTechWaiting_);\n this.on(this.tech_, 'canplay', this.handleTechCanPlay_);\n this.on(this.tech_, 'canplaythrough', this.handleTechCanPlayThrough_);\n this.on(this.tech_, 'playing', this.handleTechPlaying_);\n this.on(this.tech_, 'ended', this.handleTechEnded_);\n this.on(this.tech_, 'seeking', this.handleTechSeeking_);\n this.on(this.tech_, 'seeked', this.handleTechSeeked_);\n this.on(this.tech_, 'play', this.handleTechPlay_);\n this.on(this.tech_, 'firstplay', this.handleTechFirstPlay_);\n this.on(this.tech_, 'pause', this.handleTechPause_);\n this.on(this.tech_, 'durationchange', this.handleTechDurationChange_);\n this.on(this.tech_, 'fullscreenchange', this.handleTechFullscreenChange_);\n this.on(this.tech_, 'error', this.handleTechError_);\n this.on(this.tech_, 'loadedmetadata', this.updateStyleEl_);\n this.on(this.tech_, 'posterchange', this.handleTechPosterChange_);\n this.on(this.tech_, 'textdata', this.handleTechTextData_);\n\n this.usingNativeControls(this.techGet_('controls'));\n\n if (this.controls() && !this.usingNativeControls()) {\n this.addTechControlsListeners_();\n }\n\n // Add the tech element in the DOM if it was not already there\n // Make sure to not insert the original video element if using Html5\n if (this.tech_.el().parentNode !== this.el() && (titleTechName !== 'Html5' || !this.tag)) {\n prependTo(this.tech_.el(), this.el());\n }\n\n // Get rid of the original video tag reference after the first tech is loaded\n if (this.tag) {\n this.tag.player = null;\n this.tag = null;\n }\n };\n\n /**\n * Unload and dispose of the current playback {@link Tech}.\n *\n * @private\n */\n\n\n Player.prototype.unloadTech_ = function unloadTech_() {\n var _this3 = this;\n\n // Save the current text tracks so that we can reuse the same text tracks with the next tech\n ALL.names.forEach(function (name$$1) {\n var props = ALL[name$$1];\n\n _this3[props.privateName] = _this3[props.getterName]();\n });\n this.textTracksJson_ = textTrackConverter.textTracksToJson(this.tech_);\n\n this.isReady_ = false;\n\n this.tech_.dispose();\n\n this.tech_ = false;\n };\n\n /**\n * Return a reference to the current {@link Tech}.\n * It will print a warning by default about the danger of using the tech directly\n * but any argument that is passed in will silence the warning.\n *\n * @param {*} [safety]\n * Anything passed in to silence the warning\n *\n * @return {Tech}\n * The Tech\n */\n\n\n Player.prototype.tech = function tech(safety) {\n if (safety === undefined) {\n log$1.warn(tsml(_templateObject$1));\n }\n\n return this.tech_;\n };\n\n /**\n * Set up click and touch listeners for the playback element\n *\n * - On desktops: a click on the video itself will toggle playback\n * - On mobile devices: a click on the video toggles controls\n * which is done by toggling the user state between active and\n * inactive\n * - A tap can signal that a user has become active or has become inactive\n * e.g. a quick tap on an iPhone movie should reveal the controls. Another\n * quick tap should hide them again (signaling the user is in an inactive\n * viewing state)\n * - In addition to this, we still want the user to be considered inactive after\n * a few seconds of inactivity.\n *\n * > Note: the only part of iOS interaction we can't mimic with this setup\n * is a touch and hold on the video element counting as activity in order to\n * keep the controls showing, but that shouldn't be an issue. A touch and hold\n * on any controls will still keep the user active\n *\n * @private\n */\n\n\n Player.prototype.addTechControlsListeners_ = function addTechControlsListeners_() {\n // Make sure to remove all the previous listeners in case we are called multiple times.\n this.removeTechControlsListeners_();\n\n // Some browsers (Chrome & IE) don't trigger a click on a flash swf, but do\n // trigger mousedown/up.\n // http://stackoverflow.com/questions/1444562/javascript-onclick-event-over-flash-object\n // Any touch events are set to block the mousedown event from happening\n this.on(this.tech_, 'mousedown', this.handleTechClick_);\n\n // If the controls were hidden we don't want that to change without a tap event\n // so we'll check if the controls were already showing before reporting user\n // activity\n this.on(this.tech_, 'touchstart', this.handleTechTouchStart_);\n this.on(this.tech_, 'touchmove', this.handleTechTouchMove_);\n this.on(this.tech_, 'touchend', this.handleTechTouchEnd_);\n\n // The tap listener needs to come after the touchend listener because the tap\n // listener cancels out any reportedUserActivity when setting userActive(false)\n this.on(this.tech_, 'tap', this.handleTechTap_);\n };\n\n /**\n * Remove the listeners used for click and tap controls. This is needed for\n * toggling to controls disabled, where a tap/touch should do nothing.\n *\n * @private\n */\n\n\n Player.prototype.removeTechControlsListeners_ = function removeTechControlsListeners_() {\n // We don't want to just use `this.off()` because there might be other needed\n // listeners added by techs that extend this.\n this.off(this.tech_, 'tap', this.handleTechTap_);\n this.off(this.tech_, 'touchstart', this.handleTechTouchStart_);\n this.off(this.tech_, 'touchmove', this.handleTechTouchMove_);\n this.off(this.tech_, 'touchend', this.handleTechTouchEnd_);\n this.off(this.tech_, 'mousedown', this.handleTechClick_);\n };\n\n /**\n * Player waits for the tech to be ready\n *\n * @private\n */\n\n\n Player.prototype.handleTechReady_ = function handleTechReady_() {\n this.triggerReady();\n\n // Keep the same volume as before\n if (this.cache_.volume) {\n this.techCall_('setVolume', this.cache_.volume);\n }\n\n // Look if the tech found a higher resolution poster while loading\n this.handleTechPosterChange_();\n\n // Update the duration if available\n this.handleTechDurationChange_();\n\n // Chrome and Safari both have issues with autoplay.\n // In Safari (5.1.1), when we move the video element into the container div, autoplay doesn't work.\n // In Chrome (15), if you have autoplay + a poster + no controls, the video gets hidden (but audio plays)\n // This fixes both issues. Need to wait for API, so it updates displays correctly\n if ((this.src() || this.currentSrc()) && this.tag && this.options_.autoplay && this.paused()) {\n try {\n // Chrome Fix. Fixed in Chrome v16.\n delete this.tag.poster;\n } catch (e) {\n log$1('deleting tag.poster throws in some browsers', e);\n }\n }\n };\n\n /**\n * Retrigger the `loadstart` event that was triggered by the {@link Tech}. This\n * function will also trigger {@link Player#firstplay} if it is the first loadstart\n * for a video.\n *\n * @fires Player#loadstart\n * @fires Player#firstplay\n * @listens Tech#loadstart\n * @private\n */\n\n\n Player.prototype.handleTechLoadStart_ = function handleTechLoadStart_() {\n // TODO: Update to use `emptied` event instead. See #1277.\n\n this.removeClass('vjs-ended');\n this.removeClass('vjs-seeking');\n\n // reset the error state\n this.error(null);\n\n // If it's already playing we want to trigger a firstplay event now.\n // The firstplay event relies on both the play and loadstart events\n // which can happen in any order for a new source\n if (!this.paused()) {\n /**\n * Fired when the user agent begins looking for media data\n *\n * @event Player#loadstart\n * @type {EventTarget~Event}\n */\n this.trigger('loadstart');\n this.trigger('firstplay');\n } else {\n // reset the hasStarted state\n this.hasStarted(false);\n this.trigger('loadstart');\n }\n };\n\n /**\n * Add/remove the vjs-has-started class\n *\n * @fires Player#firstplay\n *\n * @param {boolean} request\n * - true: adds the class\n * - false: remove the class\n *\n * @return {boolean}\n * the boolean value of hasStarted_\n */\n\n\n Player.prototype.hasStarted = function hasStarted(request) {\n if (request === undefined) {\n // act as getter, if we have no request to change\n return this.hasStarted_;\n }\n\n if (request === this.hasStarted_) {\n return;\n }\n\n this.hasStarted_ = request;\n\n if (this.hasStarted_) {\n this.addClass('vjs-has-started');\n this.trigger('firstplay');\n } else {\n this.removeClass('vjs-has-started');\n }\n };\n\n /**\n * Fired whenever the media begins or resumes playback\n *\n * @see [Spec]{@link https://html.spec.whatwg.org/multipage/embedded-content.html#dom-media-play}\n * @fires Player#play\n * @listens Tech#play\n * @private\n */\n\n\n Player.prototype.handleTechPlay_ = function handleTechPlay_() {\n this.removeClass('vjs-ended');\n this.removeClass('vjs-paused');\n this.addClass('vjs-playing');\n\n // hide the poster when the user hits play\n this.hasStarted(true);\n /**\n * Triggered whenever an {@link Tech#play} event happens. Indicates that\n * playback has started or resumed.\n *\n * @event Player#play\n * @type {EventTarget~Event}\n */\n this.trigger('play');\n };\n\n /**\n * Retrigger the `waiting` event that was triggered by the {@link Tech}.\n *\n * @fires Player#waiting\n * @listens Tech#waiting\n * @private\n */\n\n\n Player.prototype.handleTechWaiting_ = function handleTechWaiting_() {\n var _this4 = this;\n\n this.addClass('vjs-waiting');\n /**\n * A readyState change on the DOM element has caused playback to stop.\n *\n * @event Player#waiting\n * @type {EventTarget~Event}\n */\n this.trigger('waiting');\n this.one('timeupdate', function () {\n return _this4.removeClass('vjs-waiting');\n });\n };\n\n /**\n * Retrigger the `canplay` event that was triggered by the {@link Tech}.\n * > Note: This is not consistent between browsers. See #1351\n *\n * @fires Player#canplay\n * @listens Tech#canplay\n * @private\n */\n\n\n Player.prototype.handleTechCanPlay_ = function handleTechCanPlay_() {\n this.removeClass('vjs-waiting');\n /**\n * The media has a readyState of HAVE_FUTURE_DATA or greater.\n *\n * @event Player#canplay\n * @type {EventTarget~Event}\n */\n this.trigger('canplay');\n };\n\n /**\n * Retrigger the `canplaythrough` event that was triggered by the {@link Tech}.\n *\n * @fires Player#canplaythrough\n * @listens Tech#canplaythrough\n * @private\n */\n\n\n Player.prototype.handleTechCanPlayThrough_ = function handleTechCanPlayThrough_() {\n this.removeClass('vjs-waiting');\n /**\n * The media has a readyState of HAVE_ENOUGH_DATA or greater. This means that the\n * entire media file can be played without buffering.\n *\n * @event Player#canplaythrough\n * @type {EventTarget~Event}\n */\n this.trigger('canplaythrough');\n };\n\n /**\n * Retrigger the `playing` event that was triggered by the {@link Tech}.\n *\n * @fires Player#playing\n * @listens Tech#playing\n * @private\n */\n\n\n Player.prototype.handleTechPlaying_ = function handleTechPlaying_() {\n this.removeClass('vjs-waiting');\n /**\n * The media is no longer blocked from playback, and has started playing.\n *\n * @event Player#playing\n * @type {EventTarget~Event}\n */\n this.trigger('playing');\n };\n\n /**\n * Retrigger the `seeking` event that was triggered by the {@link Tech}.\n *\n * @fires Player#seeking\n * @listens Tech#seeking\n * @private\n */\n\n\n Player.prototype.handleTechSeeking_ = function handleTechSeeking_() {\n this.addClass('vjs-seeking');\n /**\n * Fired whenever the player is jumping to a new time\n *\n * @event Player#seeking\n * @type {EventTarget~Event}\n */\n this.trigger('seeking');\n };\n\n /**\n * Retrigger the `seeked` event that was triggered by the {@link Tech}.\n *\n * @fires Player#seeked\n * @listens Tech#seeked\n * @private\n */\n\n\n Player.prototype.handleTechSeeked_ = function handleTechSeeked_() {\n this.removeClass('vjs-seeking');\n /**\n * Fired when the player has finished jumping to a new time\n *\n * @event Player#seeked\n * @type {EventTarget~Event}\n */\n this.trigger('seeked');\n };\n\n /**\n * Retrigger the `firstplay` event that was triggered by the {@link Tech}.\n *\n * @fires Player#firstplay\n * @listens Tech#firstplay\n * @deprecated As of 6.0 firstplay event is deprecated.\n * @deprecated As of 6.0 passing the `starttime` option to the player and the firstplay event are deprecated.\n * @private\n */\n\n\n Player.prototype.handleTechFirstPlay_ = function handleTechFirstPlay_() {\n // If the first starttime attribute is specified\n // then we will start at the given offset in seconds\n if (this.options_.starttime) {\n log$1.warn('Passing the `starttime` option to the player will be deprecated in 6.0');\n this.currentTime(this.options_.starttime);\n }\n\n this.addClass('vjs-has-started');\n /**\n * Fired the first time a video is played. Not part of the HLS spec, and this is\n * probably not the best implementation yet, so use sparingly. If you don't have a\n * reason to prevent playback, use `myPlayer.one('play');` instead.\n *\n * @event Player#firstplay\n * @deprecated As of 6.0 firstplay event is deprecated.\n * @type {EventTarget~Event}\n */\n this.trigger('firstplay');\n };\n\n /**\n * Retrigger the `pause` event that was triggered by the {@link Tech}.\n *\n * @fires Player#pause\n * @listens Tech#pause\n * @private\n */\n\n\n Player.prototype.handleTechPause_ = function handleTechPause_() {\n this.removeClass('vjs-playing');\n this.addClass('vjs-paused');\n /**\n * Fired whenever the media has been paused\n *\n * @event Player#pause\n * @type {EventTarget~Event}\n */\n this.trigger('pause');\n };\n\n /**\n * Retrigger the `ended` event that was triggered by the {@link Tech}.\n *\n * @fires Player#ended\n * @listens Tech#ended\n * @private\n */\n\n\n Player.prototype.handleTechEnded_ = function handleTechEnded_() {\n this.addClass('vjs-ended');\n if (this.options_.loop) {\n this.currentTime(0);\n this.play();\n } else if (!this.paused()) {\n this.pause();\n }\n\n /**\n * Fired when the end of the media resource is reached (currentTime == duration)\n *\n * @event Player#ended\n * @type {EventTarget~Event}\n */\n this.trigger('ended');\n };\n\n /**\n * Fired when the duration of the media resource is first known or changed\n *\n * @listens Tech#durationchange\n * @private\n */\n\n\n Player.prototype.handleTechDurationChange_ = function handleTechDurationChange_() {\n this.duration(this.techGet_('duration'));\n };\n\n /**\n * Handle a click on the media element to play/pause\n *\n * @param {EventTarget~Event} event\n * the event that caused this function to trigger\n *\n * @listens Tech#mousedown\n * @private\n */\n\n\n Player.prototype.handleTechClick_ = function handleTechClick_(event) {\n if (!isSingleLeftClick(event)) {\n return;\n }\n\n // When controls are disabled a click should not toggle playback because\n // the click is considered a control\n if (!this.controls_) {\n return;\n }\n\n if (this.paused()) {\n this.play();\n } else {\n this.pause();\n }\n };\n\n /**\n * Handle a tap on the media element. It will toggle the user\n * activity state, which hides and shows the controls.\n *\n * @listens Tech#tap\n * @private\n */\n\n\n Player.prototype.handleTechTap_ = function handleTechTap_() {\n this.userActive(!this.userActive());\n };\n\n /**\n * Handle touch to start\n *\n * @listens Tech#touchstart\n * @private\n */\n\n\n Player.prototype.handleTechTouchStart_ = function handleTechTouchStart_() {\n this.userWasActive = this.userActive();\n };\n\n /**\n * Handle touch to move\n *\n * @listens Tech#touchmove\n * @private\n */\n\n\n Player.prototype.handleTechTouchMove_ = function handleTechTouchMove_() {\n if (this.userWasActive) {\n this.reportUserActivity();\n }\n };\n\n /**\n * Handle touch to end\n *\n * @param {EventTarget~Event} event\n * the touchend event that triggered\n * this function\n *\n * @listens Tech#touchend\n * @private\n */\n\n\n Player.prototype.handleTechTouchEnd_ = function handleTechTouchEnd_(event) {\n // Stop the mouse events from also happening\n event.preventDefault();\n };\n\n /**\n * Fired when the player switches in or out of fullscreen mode\n *\n * @private\n * @listens Player#fullscreenchange\n */\n\n\n Player.prototype.handleFullscreenChange_ = function handleFullscreenChange_() {\n if (this.isFullscreen()) {\n this.addClass('vjs-fullscreen');\n } else {\n this.removeClass('vjs-fullscreen');\n }\n };\n\n /**\n * native click events on the SWF aren't triggered on IE11, Win8.1RT\n * use stageclick events triggered from inside the SWF instead\n *\n * @private\n * @listens stageclick\n */\n\n\n Player.prototype.handleStageClick_ = function handleStageClick_() {\n this.reportUserActivity();\n };\n\n /**\n * Handle Tech Fullscreen Change\n *\n * @param {EventTarget~Event} event\n * the fullscreenchange event that triggered this function\n *\n * @param {Object} data\n * the data that was sent with the event\n *\n * @private\n * @listens Tech#fullscreenchange\n * @fires Player#fullscreenchange\n */\n\n\n Player.prototype.handleTechFullscreenChange_ = function handleTechFullscreenChange_(event, data) {\n if (data) {\n this.isFullscreen(data.isFullscreen);\n }\n /**\n * Fired when going in and out of fullscreen.\n *\n * @event Player#fullscreenchange\n * @type {EventTarget~Event}\n */\n this.trigger('fullscreenchange');\n };\n\n /**\n * Fires when an error occurred during the loading of an audio/video.\n *\n * @private\n * @listens Tech#error\n */\n\n\n Player.prototype.handleTechError_ = function handleTechError_() {\n var error = this.tech_.error();\n\n this.error(error);\n };\n\n /**\n * Retrigger the `textdata` event that was triggered by the {@link Tech}.\n *\n * @fires Player#textdata\n * @listens Tech#textdata\n * @private\n */\n\n\n Player.prototype.handleTechTextData_ = function handleTechTextData_() {\n var data = null;\n\n if (arguments.length > 1) {\n data = arguments[1];\n }\n\n /**\n * Fires when we get a textdata event from tech\n *\n * @event Player#textdata\n * @type {EventTarget~Event}\n */\n this.trigger('textdata', data);\n };\n\n /**\n * Get object for cached values.\n *\n * @return {Object}\n * get the current object cache\n */\n\n\n Player.prototype.getCache = function getCache() {\n return this.cache_;\n };\n\n /**\n * Pass values to the playback tech\n *\n * @param {string} [method]\n * the method to call\n *\n * @param {Object} arg\n * the argument to pass\n *\n * @private\n */\n\n\n Player.prototype.techCall_ = function techCall_(method, arg) {\n // If it's not ready yet, call method when it is\n\n this.ready(function () {\n if (method in allowedSetters) {\n return set$1(this.middleware_, this.tech_, method, arg);\n } else if (method in allowedMediators) {\n return mediate(this.middleware_, this.tech_, method, arg);\n }\n\n try {\n if (this.tech_) {\n this.tech_[method](arg);\n }\n } catch (e) {\n log$1(e);\n throw e;\n }\n }, true);\n };\n\n /**\n * Get calls can't wait for the tech, and sometimes don't need to.\n *\n * @param {string} method\n * Tech method\n *\n * @return {Function|undefined}\n * the method or undefined\n *\n * @private\n */\n\n\n Player.prototype.techGet_ = function techGet_(method) {\n if (!this.tech_ || !this.tech_.isReady_) {\n return;\n }\n\n if (method in allowedGetters) {\n return get$1(this.middleware_, this.tech_, method);\n } else if (method in allowedMediators) {\n return mediate(this.middleware_, this.tech_, method);\n }\n\n // Flash likes to die and reload when you hide or reposition it.\n // In these cases the object methods go away and we get errors.\n // When that happens we'll catch the errors and inform tech that it's not ready any more.\n try {\n return this.tech_[method]();\n } catch (e) {\n\n // When building additional tech libs, an expected method may not be defined yet\n if (this.tech_[method] === undefined) {\n log$1('Video.js: ' + method + ' method not defined for ' + this.techName_ + ' playback technology.', e);\n throw e;\n }\n\n // When a method isn't available on the object it throws a TypeError\n if (e.name === 'TypeError') {\n log$1('Video.js: ' + method + ' unavailable on ' + this.techName_ + ' playback technology element.', e);\n this.tech_.isReady_ = false;\n throw e;\n }\n\n // If error unknown, just log and throw\n log$1(e);\n throw e;\n }\n };\n\n /**\n * Attempt to begin playback at the first opportunity.\n *\n * @return {Promise|undefined}\n * Returns a `Promise` only if the browser returns one and the player\n * is ready to begin playback. For some browsers and all non-ready\n * situations, this will return `undefined`.\n */\n\n\n Player.prototype.play = function play() {\n var _this5 = this;\n\n // If this is called while we have a play queued up on a loadstart, remove\n // that listener to avoid getting in a potentially bad state.\n if (this.playOnLoadstart_) {\n this.off('loadstart', this.playOnLoadstart_);\n }\n\n // If the player/tech is not ready, queue up another call to `play()` for\n // when it is. This will loop back into this method for another attempt at\n // playback when the tech is ready.\n if (!this.isReady_) {\n\n // Bail out if we're already waiting for `ready`!\n if (this.playWaitingForReady_) {\n return;\n }\n\n this.playWaitingForReady_ = true;\n this.ready(function () {\n _this5.playWaitingForReady_ = false;\n silencePromise(_this5.play());\n });\n\n // If the player/tech is ready and we have a source, we can attempt playback.\n } else if (!this.changingSrc_ && (this.src() || this.currentSrc())) {\n return this.techGet_('play');\n\n // If the tech is ready, but we do not have a source, we'll need to wait\n // for both the `ready` and a `loadstart` when the source is finally\n // resolved by middleware and set on the player.\n //\n // This can happen if `play()` is called while changing sources or before\n // one has been set on the player.\n } else {\n\n this.playOnLoadstart_ = function () {\n _this5.playOnLoadstart_ = null;\n silencePromise(_this5.play());\n };\n\n this.one('loadstart', this.playOnLoadstart_);\n }\n };\n\n /**\n * Pause the video playback\n *\n * @return {Player}\n * A reference to the player object this function was called on\n */\n\n\n Player.prototype.pause = function pause() {\n this.techCall_('pause');\n };\n\n /**\n * Check if the player is paused or has yet to play\n *\n * @return {boolean}\n * - false: if the media is currently playing\n * - true: if media is not currently playing\n */\n\n\n Player.prototype.paused = function paused() {\n // The initial state of paused should be true (in Safari it's actually false)\n return this.techGet_('paused') === false ? false : true;\n };\n\n /**\n * Get a TimeRange object representing the current ranges of time that the user\n * has played.\n *\n * @return {TimeRange}\n * A time range object that represents all the increments of time that have\n * been played.\n */\n\n\n Player.prototype.played = function played() {\n return this.techGet_('played') || createTimeRanges(0, 0);\n };\n\n /**\n * Returns whether or not the user is \"scrubbing\". Scrubbing is\n * when the user has clicked the progress bar handle and is\n * dragging it along the progress bar.\n *\n * @param {boolean} [isScrubbing]\n * wether the user is or is not scrubbing\n *\n * @return {boolean}\n * The value of scrubbing when getting\n */\n\n\n Player.prototype.scrubbing = function scrubbing(isScrubbing) {\n if (typeof isScrubbing === 'undefined') {\n return this.scrubbing_;\n }\n this.scrubbing_ = !!isScrubbing;\n\n if (isScrubbing) {\n this.addClass('vjs-scrubbing');\n } else {\n this.removeClass('vjs-scrubbing');\n }\n };\n\n /**\n * Get or set the current time (in seconds)\n *\n * @param {number|string} [seconds]\n * The time to seek to in seconds\n *\n * @return {number}\n * - the current time in seconds when getting\n */\n\n\n Player.prototype.currentTime = function currentTime(seconds) {\n if (typeof seconds !== 'undefined') {\n if (seconds < 0) {\n seconds = 0;\n }\n this.techCall_('setCurrentTime', seconds);\n return;\n }\n\n // cache last currentTime and return. default to 0 seconds\n //\n // Caching the currentTime is meant to prevent a massive amount of reads on the tech's\n // currentTime when scrubbing, but may not provide much performance benefit afterall.\n // Should be tested. Also something has to read the actual current time or the cache will\n // never get updated.\n this.cache_.currentTime = this.techGet_('currentTime') || 0;\n return this.cache_.currentTime;\n };\n\n /**\n * Normally gets the length in time of the video in seconds;\n * in all but the rarest use cases an argument will NOT be passed to the method\n *\n * > **NOTE**: The video must have started loading before the duration can be\n * known, and in the case of Flash, may not be known until the video starts\n * playing.\n *\n * @fires Player#durationchange\n *\n * @param {number} [seconds]\n * The duration of the video to set in seconds\n *\n * @return {number}\n * - The duration of the video in seconds when getting\n */\n\n\n Player.prototype.duration = function duration(seconds) {\n if (seconds === undefined) {\n // return NaN if the duration is not known\n return this.cache_.duration !== undefined ? this.cache_.duration : NaN;\n }\n\n seconds = parseFloat(seconds);\n\n // Standardize on Inifity for signaling video is live\n if (seconds < 0) {\n seconds = Infinity;\n }\n\n if (seconds !== this.cache_.duration) {\n // Cache the last set value for optimized scrubbing (esp. Flash)\n this.cache_.duration = seconds;\n\n if (seconds === Infinity) {\n this.addClass('vjs-live');\n } else {\n this.removeClass('vjs-live');\n }\n /**\n * @event Player#durationchange\n * @type {EventTarget~Event}\n */\n this.trigger('durationchange');\n }\n };\n\n /**\n * Calculates how much time is left in the video. Not part\n * of the native video API.\n *\n * @return {number}\n * The time remaining in seconds\n */\n\n\n Player.prototype.remainingTime = function remainingTime() {\n return this.duration() - this.currentTime();\n };\n\n /**\n * A remaining time function that is intented to be used when\n * the time is to be displayed directly to the user.\n *\n * @return {number}\n * The rounded time remaining in seconds\n */\n\n\n Player.prototype.remainingTimeDisplay = function remainingTimeDisplay() {\n return Math.floor(this.duration()) - Math.floor(this.currentTime());\n };\n\n //\n // Kind of like an array of portions of the video that have been downloaded.\n\n /**\n * Get a TimeRange object with an array of the times of the video\n * that have been downloaded. If you just want the percent of the\n * video that's been downloaded, use bufferedPercent.\n *\n * @see [Buffered Spec]{@link http://dev.w3.org/html5/spec/video.html#dom-media-buffered}\n *\n * @return {TimeRange}\n * A mock TimeRange object (following HTML spec)\n */\n\n\n Player.prototype.buffered = function buffered() {\n var buffered = this.techGet_('buffered');\n\n if (!buffered || !buffered.length) {\n buffered = createTimeRanges(0, 0);\n }\n\n return buffered;\n };\n\n /**\n * Get the percent (as a decimal) of the video that's been downloaded.\n * This method is not a part of the native HTML video API.\n *\n * @return {number}\n * A decimal between 0 and 1 representing the percent\n * that is bufferred 0 being 0% and 1 being 100%\n */\n\n\n Player.prototype.bufferedPercent = function bufferedPercent$$1() {\n return bufferedPercent(this.buffered(), this.duration());\n };\n\n /**\n * Get the ending time of the last buffered time range\n * This is used in the progress bar to encapsulate all time ranges.\n *\n * @return {number}\n * The end of the last buffered time range\n */\n\n\n Player.prototype.bufferedEnd = function bufferedEnd() {\n var buffered = this.buffered();\n var duration = this.duration();\n var end = buffered.end(buffered.length - 1);\n\n if (end > duration) {\n end = duration;\n }\n\n return end;\n };\n\n /**\n * Get or set the current volume of the media\n *\n * @param {number} [percentAsDecimal]\n * The new volume as a decimal percent:\n * - 0 is muted/0%/off\n * - 1.0 is 100%/full\n * - 0.5 is half volume or 50%\n *\n * @return {number}\n * The current volume as a percent when getting\n */\n\n\n Player.prototype.volume = function volume(percentAsDecimal) {\n var vol = void 0;\n\n if (percentAsDecimal !== undefined) {\n // Force value to between 0 and 1\n vol = Math.max(0, Math.min(1, parseFloat(percentAsDecimal)));\n this.cache_.volume = vol;\n this.techCall_('setVolume', vol);\n\n if (vol > 0) {\n this.lastVolume_(vol);\n }\n\n return;\n }\n\n // Default to 1 when returning current volume.\n vol = parseFloat(this.techGet_('volume'));\n return isNaN(vol) ? 1 : vol;\n };\n\n /**\n * Get the current muted state, or turn mute on or off\n *\n * @param {boolean} [muted]\n * - true to mute\n * - false to unmute\n *\n * @return {boolean}\n * - true if mute is on and getting\n * - false if mute is off and getting\n */\n\n\n Player.prototype.muted = function muted(_muted) {\n if (_muted !== undefined) {\n this.techCall_('setMuted', _muted);\n return;\n }\n return this.techGet_('muted') || false;\n };\n\n /**\n * Get the current defaultMuted state, or turn defaultMuted on or off. defaultMuted\n * indicates the state of muted on intial playback.\n *\n * ```js\n * var myPlayer = videojs('some-player-id');\n *\n * myPlayer.src(\"http://www.example.com/path/to/video.mp4\");\n *\n * // get, should be false\n * console.log(myPlayer.defaultMuted());\n * // set to true\n * myPlayer.defaultMuted(true);\n * // get should be true\n * console.log(myPlayer.defaultMuted());\n * ```\n *\n * @param {boolean} [defaultMuted]\n * - true to mute\n * - false to unmute\n *\n * @return {boolean|Player}\n * - true if defaultMuted is on and getting\n * - false if defaultMuted is off and getting\n * - A reference to the current player when setting\n */\n\n\n Player.prototype.defaultMuted = function defaultMuted(_defaultMuted) {\n if (_defaultMuted !== undefined) {\n return this.techCall_('setDefaultMuted', _defaultMuted);\n }\n return this.techGet_('defaultMuted') || false;\n };\n\n /**\n * Get the last volume, or set it\n *\n * @param {number} [percentAsDecimal]\n * The new last volume as a decimal percent:\n * - 0 is muted/0%/off\n * - 1.0 is 100%/full\n * - 0.5 is half volume or 50%\n *\n * @return {number}\n * the current value of lastVolume as a percent when getting\n *\n * @private\n */\n\n\n Player.prototype.lastVolume_ = function lastVolume_(percentAsDecimal) {\n if (percentAsDecimal !== undefined && percentAsDecimal !== 0) {\n this.cache_.lastVolume = percentAsDecimal;\n return;\n }\n return this.cache_.lastVolume;\n };\n\n /**\n * Check if current tech can support native fullscreen\n * (e.g. with built in controls like iOS, so not our flash swf)\n *\n * @return {boolean}\n * if native fullscreen is supported\n */\n\n\n Player.prototype.supportsFullScreen = function supportsFullScreen() {\n return this.techGet_('supportsFullScreen') || false;\n };\n\n /**\n * Check if the player is in fullscreen mode or tell the player that it\n * is or is not in fullscreen mode.\n *\n * > NOTE: As of the latest HTML5 spec, isFullscreen is no longer an official\n * property and instead document.fullscreenElement is used. But isFullscreen is\n * still a valuable property for internal player workings.\n *\n * @param {boolean} [isFS]\n * Set the players current fullscreen state\n *\n * @return {boolean}\n * - true if fullscreen is on and getting\n * - false if fullscreen is off and getting\n */\n\n\n Player.prototype.isFullscreen = function isFullscreen(isFS) {\n if (isFS !== undefined) {\n this.isFullscreen_ = !!isFS;\n return;\n }\n return !!this.isFullscreen_;\n };\n\n /**\n * Increase the size of the video to full screen\n * In some browsers, full screen is not supported natively, so it enters\n * \"full window mode\", where the video fills the browser window.\n * In browsers and devices that support native full screen, sometimes the\n * browser's default controls will be shown, and not the Video.js custom skin.\n * This includes most mobile devices (iOS, Android) and older versions of\n * Safari.\n *\n * @fires Player#fullscreenchange\n */\n\n\n Player.prototype.requestFullscreen = function requestFullscreen() {\n var fsApi = FullscreenApi;\n\n this.isFullscreen(true);\n\n if (fsApi.requestFullscreen) {\n // the browser supports going fullscreen at the element level so we can\n // take the controls fullscreen as well as the video\n\n // Trigger fullscreenchange event after change\n // We have to specifically add this each time, and remove\n // when canceling fullscreen. Otherwise if there's multiple\n // players on a page, they would all be reacting to the same fullscreen\n // events\n on(document_1, fsApi.fullscreenchange, bind(this, function documentFullscreenChange(e) {\n this.isFullscreen(document_1[fsApi.fullscreenElement]);\n\n // If cancelling fullscreen, remove event listener.\n if (this.isFullscreen() === false) {\n off(document_1, fsApi.fullscreenchange, documentFullscreenChange);\n }\n /**\n * @event Player#fullscreenchange\n * @type {EventTarget~Event}\n */\n this.trigger('fullscreenchange');\n }));\n\n this.el_[fsApi.requestFullscreen]();\n } else if (this.tech_.supportsFullScreen()) {\n // we can't take the video.js controls fullscreen but we can go fullscreen\n // with native controls\n this.techCall_('enterFullScreen');\n } else {\n // fullscreen isn't supported so we'll just stretch the video element to\n // fill the viewport\n this.enterFullWindow();\n /**\n * @event Player#fullscreenchange\n * @type {EventTarget~Event}\n */\n this.trigger('fullscreenchange');\n }\n };\n\n /**\n * Return the video to its normal size after having been in full screen mode\n *\n * @fires Player#fullscreenchange\n */\n\n\n Player.prototype.exitFullscreen = function exitFullscreen() {\n var fsApi = FullscreenApi;\n\n this.isFullscreen(false);\n\n // Check for browser element fullscreen support\n if (fsApi.requestFullscreen) {\n document_1[fsApi.exitFullscreen]();\n } else if (this.tech_.supportsFullScreen()) {\n this.techCall_('exitFullScreen');\n } else {\n this.exitFullWindow();\n /**\n * @event Player#fullscreenchange\n * @type {EventTarget~Event}\n */\n this.trigger('fullscreenchange');\n }\n };\n\n /**\n * When fullscreen isn't supported we can stretch the\n * video container to as wide as the browser will let us.\n *\n * @fires Player#enterFullWindow\n */\n\n\n Player.prototype.enterFullWindow = function enterFullWindow() {\n this.isFullWindow = true;\n\n // Storing original doc overflow value to return to when fullscreen is off\n this.docOrigOverflow = document_1.documentElement.style.overflow;\n\n // Add listener for esc key to exit fullscreen\n on(document_1, 'keydown', bind(this, this.fullWindowOnEscKey));\n\n // Hide any scroll bars\n document_1.documentElement.style.overflow = 'hidden';\n\n // Apply fullscreen styles\n addClass(document_1.body, 'vjs-full-window');\n\n /**\n * @event Player#enterFullWindow\n * @type {EventTarget~Event}\n */\n this.trigger('enterFullWindow');\n };\n\n /**\n * Check for call to either exit full window or\n * full screen on ESC key\n *\n * @param {string} event\n * Event to check for key press\n */\n\n\n Player.prototype.fullWindowOnEscKey = function fullWindowOnEscKey(event) {\n if (event.keyCode === 27) {\n if (this.isFullscreen() === true) {\n this.exitFullscreen();\n } else {\n this.exitFullWindow();\n }\n }\n };\n\n /**\n * Exit full window\n *\n * @fires Player#exitFullWindow\n */\n\n\n Player.prototype.exitFullWindow = function exitFullWindow() {\n this.isFullWindow = false;\n off(document_1, 'keydown', this.fullWindowOnEscKey);\n\n // Unhide scroll bars.\n document_1.documentElement.style.overflow = this.docOrigOverflow;\n\n // Remove fullscreen styles\n removeClass(document_1.body, 'vjs-full-window');\n\n // Resize the box, controller, and poster to original sizes\n // this.positionAll();\n /**\n * @event Player#exitFullWindow\n * @type {EventTarget~Event}\n */\n this.trigger('exitFullWindow');\n };\n\n /**\n * Check whether the player can play a given mimetype\n *\n * @see https://www.w3.org/TR/2011/WD-html5-20110113/video.html#dom-navigator-canplaytype\n *\n * @param {string} type\n * The mimetype to check\n *\n * @return {string}\n * 'probably', 'maybe', or '' (empty string)\n */\n\n\n Player.prototype.canPlayType = function canPlayType(type) {\n var can = void 0;\n\n // Loop through each playback technology in the options order\n for (var i = 0, j = this.options_.techOrder; i < j.length; i++) {\n var techName = j[i];\n var tech = Tech.getTech(techName);\n\n // Support old behavior of techs being registered as components.\n // Remove once that deprecated behavior is removed.\n if (!tech) {\n tech = Component.getComponent(techName);\n }\n\n // Check if the current tech is defined before continuing\n if (!tech) {\n log$1.error('The \"' + techName + '\" tech is undefined. Skipped browser support check for that tech.');\n continue;\n }\n\n // Check if the browser supports this technology\n if (tech.isSupported()) {\n can = tech.canPlayType(type);\n\n if (can) {\n return can;\n }\n }\n }\n\n return '';\n };\n\n /**\n * Select source based on tech-order or source-order\n * Uses source-order selection if `options.sourceOrder` is truthy. Otherwise,\n * defaults to tech-order selection\n *\n * @param {Array} sources\n * The sources for a media asset\n *\n * @return {Object|boolean}\n * Object of source and tech order or false\n */\n\n\n Player.prototype.selectSource = function selectSource(sources) {\n var _this6 = this;\n\n // Get only the techs specified in `techOrder` that exist and are supported by the\n // current platform\n var techs = this.options_.techOrder.map(function (techName) {\n return [techName, Tech.getTech(techName)];\n }).filter(function (_ref) {\n var techName = _ref[0],\n tech = _ref[1];\n\n // Check if the current tech is defined before continuing\n if (tech) {\n // Check if the browser supports this technology\n return tech.isSupported();\n }\n\n log$1.error('The \"' + techName + '\" tech is undefined. Skipped browser support check for that tech.');\n return false;\n });\n\n // Iterate over each `innerArray` element once per `outerArray` element and execute\n // `tester` with both. If `tester` returns a non-falsy value, exit early and return\n // that value.\n var findFirstPassingTechSourcePair = function findFirstPassingTechSourcePair(outerArray, innerArray, tester) {\n var found = void 0;\n\n outerArray.some(function (outerChoice) {\n return innerArray.some(function (innerChoice) {\n found = tester(outerChoice, innerChoice);\n\n if (found) {\n return true;\n }\n });\n });\n\n return found;\n };\n\n var foundSourceAndTech = void 0;\n var flip = function flip(fn) {\n return function (a, b) {\n return fn(b, a);\n };\n };\n var finder = function finder(_ref2, source) {\n var techName = _ref2[0],\n tech = _ref2[1];\n\n if (tech.canPlaySource(source, _this6.options_[techName.toLowerCase()])) {\n return { source: source, tech: techName };\n }\n };\n\n // Depending on the truthiness of `options.sourceOrder`, we swap the order of techs and sources\n // to select from them based on their priority.\n if (this.options_.sourceOrder) {\n // Source-first ordering\n foundSourceAndTech = findFirstPassingTechSourcePair(sources, techs, flip(finder));\n } else {\n // Tech-first ordering\n foundSourceAndTech = findFirstPassingTechSourcePair(techs, sources, finder);\n }\n\n return foundSourceAndTech || false;\n };\n\n /**\n * Get or set the video source.\n *\n * @param {Tech~SourceObject|Tech~SourceObject[]|string} [source]\n * A SourceObject, an array of SourceObjects, or a string referencing\n * a URL to a media source. It is _highly recommended_ that an object\n * or array of objects is used here, so that source selection\n * algorithms can take the `type` into account.\n *\n * If not provided, this method acts as a getter.\n *\n * @return {string|undefined}\n * If the `source` argument is missing, returns the current source\n * URL. Otherwise, returns nothing/undefined.\n */\n\n\n Player.prototype.src = function src(source) {\n var _this7 = this;\n\n // getter usage\n if (typeof source === 'undefined') {\n return this.cache_.src || '';\n }\n // filter out invalid sources and turn our source into\n // an array of source objects\n var sources = filterSource(source);\n\n // if a source was passed in then it is invalid because\n // it was filtered to a zero length Array. So we have to\n // show an error\n if (!sources.length) {\n this.setTimeout(function () {\n this.error({ code: 4, message: this.localize(this.options_.notSupportedMessage) });\n }, 0);\n return;\n }\n\n // intial sources\n this.cache_.sources = sources;\n this.changingSrc_ = true;\n\n // intial source\n this.cache_.source = sources[0];\n\n // middlewareSource is the source after it has been changed by middleware\n setSource(this, sources[0], function (middlewareSource, mws) {\n _this7.middleware_ = mws;\n\n var err = _this7.src_(middlewareSource);\n\n if (err) {\n if (sources.length > 1) {\n return _this7.src(sources.slice(1));\n }\n\n // We need to wrap this in a timeout to give folks a chance to add error event handlers\n _this7.setTimeout(function () {\n this.error({ code: 4, message: this.localize(this.options_.notSupportedMessage) });\n }, 0);\n\n // we could not find an appropriate tech, but let's still notify the delegate that this is it\n // this needs a better comment about why this is needed\n _this7.triggerReady();\n\n return;\n }\n\n _this7.changingSrc_ = false;\n // video element listed source\n _this7.cache_.src = middlewareSource.src;\n\n setTech(mws, _this7.tech_);\n });\n };\n\n /**\n * Set the source object on the tech, returns a boolean that indicates wether\n * there is a tech that can play the source or not\n *\n * @param {Tech~SourceObject} source\n * The source object to set on the Tech\n *\n * @return {Boolean}\n * - True if there is no Tech to playback this source\n * - False otherwise\n *\n * @private\n */\n\n\n Player.prototype.src_ = function src_(source) {\n var sourceTech = this.selectSource([source]);\n\n if (!sourceTech) {\n return true;\n }\n\n if (!titleCaseEquals(sourceTech.tech, this.techName_)) {\n this.changingSrc_ = true;\n\n // load this technology with the chosen source\n this.loadTech_(sourceTech.tech, sourceTech.source);\n return false;\n }\n\n // wait until the tech is ready to set the source\n this.ready(function () {\n\n // The setSource tech method was added with source handlers\n // so older techs won't support it\n // We need to check the direct prototype for the case where subclasses\n // of the tech do not support source handlers\n if (this.tech_.constructor.prototype.hasOwnProperty('setSource')) {\n this.techCall_('setSource', source);\n } else {\n this.techCall_('src', source.src);\n }\n\n if (this.options_.preload === 'auto') {\n this.load();\n }\n\n // Set the source synchronously if possible (#2326)\n }, true);\n\n return false;\n };\n\n /**\n * Begin loading the src data.\n */\n\n\n Player.prototype.load = function load() {\n this.techCall_('load');\n };\n\n /**\n * Reset the player. Loads the first tech in the techOrder,\n * and calls `reset` on the tech`.\n */\n\n\n Player.prototype.reset = function reset() {\n this.loadTech_(this.options_.techOrder[0], null);\n this.techCall_('reset');\n };\n\n /**\n * Returns all of the current source objects.\n *\n * @return {Tech~SourceObject[]}\n * The current source objects\n */\n\n\n Player.prototype.currentSources = function currentSources() {\n var source = this.currentSource();\n var sources = [];\n\n // assume `{}` or `{ src }`\n if (Object.keys(source).length !== 0) {\n sources.push(source);\n }\n\n return this.cache_.sources || sources;\n };\n\n /**\n * Returns the current source object.\n *\n * @return {Tech~SourceObject}\n * The current source object\n */\n\n\n Player.prototype.currentSource = function currentSource() {\n return this.cache_.source || {};\n };\n\n /**\n * Returns the fully qualified URL of the current source value e.g. http://mysite.com/video.mp4\n * Can be used in conjuction with `currentType` to assist in rebuilding the current source object.\n *\n * @return {string}\n * The current source\n */\n\n\n Player.prototype.currentSrc = function currentSrc() {\n return this.currentSource() && this.currentSource().src || '';\n };\n\n /**\n * Get the current source type e.g. video/mp4\n * This can allow you rebuild the current source object so that you could load the same\n * source and tech later\n *\n * @return {string}\n * The source MIME type\n */\n\n\n Player.prototype.currentType = function currentType() {\n return this.currentSource() && this.currentSource().type || '';\n };\n\n /**\n * Get or set the preload attribute\n *\n * @param {boolean} [value]\n * - true means that we should preload\n * - false maens that we should not preload\n *\n * @return {string}\n * The preload attribute value when getting\n */\n\n\n Player.prototype.preload = function preload(value) {\n if (value !== undefined) {\n this.techCall_('setPreload', value);\n this.options_.preload = value;\n return;\n }\n return this.techGet_('preload');\n };\n\n /**\n * Get or set the autoplay attribute.\n *\n * @param {boolean} [value]\n * - true means that we should autoplay\n * - false means that we should not autoplay\n *\n * @return {string}\n * The current value of autoplay when getting\n */\n\n\n Player.prototype.autoplay = function autoplay(value) {\n if (value !== undefined) {\n this.techCall_('setAutoplay', value);\n this.options_.autoplay = value;\n this.ready(this.forceAutoplayInChrome_);\n return;\n }\n return this.techGet_('autoplay', value);\n };\n\n /**\n * chrome started pausing the video when moving in the DOM\n * causing autoplay to not continue due to how Video.js functions.\n * See #4720 for more info.\n *\n * @private\n */\n\n\n Player.prototype.forceAutoplayInChrome_ = function forceAutoplayInChrome_() {\n if (this.paused() && (\n // read from the video element or options\n this.autoplay() || this.options_.autoplay) &&\n // only target desktop chrome\n IS_CHROME && !IS_ANDROID) {\n this.play();\n }\n };\n\n /**\n * Set or unset the playsinline attribute.\n * Playsinline tells the browser that non-fullscreen playback is preferred.\n *\n * @param {boolean} [value]\n * - true means that we should try to play inline by default\n * - false means that we should use the browser's default playback mode,\n * which in most cases is inline. iOS Safari is a notable exception\n * and plays fullscreen by default.\n *\n * @return {string|Player}\n * - the current value of playsinline\n * - the player when setting\n *\n * @see [Spec]{@link https://html.spec.whatwg.org/#attr-video-playsinline}\n */\n\n\n Player.prototype.playsinline = function playsinline(value) {\n if (value !== undefined) {\n this.techCall_('setPlaysinline', value);\n this.options_.playsinline = value;\n return this;\n }\n return this.techGet_('playsinline');\n };\n\n /**\n * Get or set the loop attribute on the video element.\n *\n * @param {boolean} [value]\n * - true means that we should loop the video\n * - false means that we should not loop the video\n *\n * @return {string}\n * The current value of loop when getting\n */\n\n\n Player.prototype.loop = function loop(value) {\n if (value !== undefined) {\n this.techCall_('setLoop', value);\n this.options_.loop = value;\n return;\n }\n return this.techGet_('loop');\n };\n\n /**\n * Get or set the poster image source url\n *\n * @fires Player#posterchange\n *\n * @param {string} [src]\n * Poster image source URL\n *\n * @return {string}\n * The current value of poster when getting\n */\n\n\n Player.prototype.poster = function poster(src) {\n if (src === undefined) {\n return this.poster_;\n }\n\n // The correct way to remove a poster is to set as an empty string\n // other falsey values will throw errors\n if (!src) {\n src = '';\n }\n\n // update the internal poster variable\n this.poster_ = src;\n\n // update the tech's poster\n this.techCall_('setPoster', src);\n\n // alert components that the poster has been set\n /**\n * This event fires when the poster image is changed on the player.\n *\n * @event Player#posterchange\n * @type {EventTarget~Event}\n */\n this.trigger('posterchange');\n };\n\n /**\n * Some techs (e.g. YouTube) can provide a poster source in an\n * asynchronous way. We want the poster component to use this\n * poster source so that it covers up the tech's controls.\n * (YouTube's play button). However we only want to use this\n * source if the player user hasn't set a poster through\n * the normal APIs.\n *\n * @fires Player#posterchange\n * @listens Tech#posterchange\n * @private\n */\n\n\n Player.prototype.handleTechPosterChange_ = function handleTechPosterChange_() {\n if (!this.poster_ && this.tech_ && this.tech_.poster) {\n this.poster_ = this.tech_.poster() || '';\n\n // Let components know the poster has changed\n this.trigger('posterchange');\n }\n };\n\n /**\n * Get or set whether or not the controls are showing.\n *\n * @fires Player#controlsenabled\n *\n * @param {boolean} [bool]\n * - true to turn controls on\n * - false to turn controls off\n *\n * @return {boolean}\n * The current value of controls when getting\n */\n\n\n Player.prototype.controls = function controls(bool) {\n if (bool === undefined) {\n return !!this.controls_;\n }\n\n bool = !!bool;\n\n // Don't trigger a change event unless it actually changed\n if (this.controls_ === bool) {\n return;\n }\n\n this.controls_ = bool;\n\n if (this.usingNativeControls()) {\n this.techCall_('setControls', bool);\n }\n\n if (this.controls_) {\n this.removeClass('vjs-controls-disabled');\n this.addClass('vjs-controls-enabled');\n /**\n * @event Player#controlsenabled\n * @type {EventTarget~Event}\n */\n this.trigger('controlsenabled');\n if (!this.usingNativeControls()) {\n this.addTechControlsListeners_();\n }\n } else {\n this.removeClass('vjs-controls-enabled');\n this.addClass('vjs-controls-disabled');\n /**\n * @event Player#controlsdisabled\n * @type {EventTarget~Event}\n */\n this.trigger('controlsdisabled');\n if (!this.usingNativeControls()) {\n this.removeTechControlsListeners_();\n }\n }\n };\n\n /**\n * Toggle native controls on/off. Native controls are the controls built into\n * devices (e.g. default iPhone controls), Flash, or other techs\n * (e.g. Vimeo Controls)\n * **This should only be set by the current tech, because only the tech knows\n * if it can support native controls**\n *\n * @fires Player#usingnativecontrols\n * @fires Player#usingcustomcontrols\n *\n * @param {boolean} [bool]\n * - true to turn native controls on\n * - false to turn native controls off\n *\n * @return {boolean}\n * The current value of native controls when getting\n */\n\n\n Player.prototype.usingNativeControls = function usingNativeControls(bool) {\n if (bool === undefined) {\n return !!this.usingNativeControls_;\n }\n\n bool = !!bool;\n\n // Don't trigger a change event unless it actually changed\n if (this.usingNativeControls_ === bool) {\n return;\n }\n\n this.usingNativeControls_ = bool;\n\n if (this.usingNativeControls_) {\n this.addClass('vjs-using-native-controls');\n\n /**\n * player is using the native device controls\n *\n * @event Player#usingnativecontrols\n * @type {EventTarget~Event}\n */\n this.trigger('usingnativecontrols');\n } else {\n this.removeClass('vjs-using-native-controls');\n\n /**\n * player is using the custom HTML controls\n *\n * @event Player#usingcustomcontrols\n * @type {EventTarget~Event}\n */\n this.trigger('usingcustomcontrols');\n }\n };\n\n /**\n * Set or get the current MediaError\n *\n * @fires Player#error\n *\n * @param {MediaError|string|number} [err]\n * A MediaError or a string/number to be turned\n * into a MediaError\n *\n * @return {MediaError|null}\n * The current MediaError when getting (or null)\n */\n\n\n Player.prototype.error = function error(err) {\n if (err === undefined) {\n return this.error_ || null;\n }\n\n // restoring to default\n if (err === null) {\n this.error_ = err;\n this.removeClass('vjs-error');\n if (this.errorDisplay) {\n this.errorDisplay.close();\n }\n return;\n }\n\n this.error_ = new MediaError(err);\n\n // add the vjs-error classname to the player\n this.addClass('vjs-error');\n\n // log the name of the error type and any message\n // ie8 just logs \"[object object]\" if you just log the error object\n log$1.error('(CODE:' + this.error_.code + ' ' + MediaError.errorTypes[this.error_.code] + ')', this.error_.message, this.error_);\n\n /**\n * @event Player#error\n * @type {EventTarget~Event}\n */\n this.trigger('error');\n\n return;\n };\n\n /**\n * Report user activity\n *\n * @param {Object} event\n * Event object\n */\n\n\n Player.prototype.reportUserActivity = function reportUserActivity(event) {\n this.userActivity_ = true;\n };\n\n /**\n * Get/set if user is active\n *\n * @fires Player#useractive\n * @fires Player#userinactive\n *\n * @param {boolean} [bool]\n * - true if the user is active\n * - false if the user is inactive\n *\n * @return {boolean}\n * The current value of userActive when getting\n */\n\n\n Player.prototype.userActive = function userActive(bool) {\n if (bool === undefined) {\n return this.userActive_;\n }\n\n bool = !!bool;\n\n if (bool === this.userActive_) {\n return;\n }\n\n this.userActive_ = bool;\n\n if (this.userActive_) {\n this.userActivity_ = true;\n this.removeClass('vjs-user-inactive');\n this.addClass('vjs-user-active');\n /**\n * @event Player#useractive\n * @type {EventTarget~Event}\n */\n this.trigger('useractive');\n return;\n }\n\n // Chrome/Safari/IE have bugs where when you change the cursor it can\n // trigger a mousemove event. This causes an issue when you're hiding\n // the cursor when the user is inactive, and a mousemove signals user\n // activity. Making it impossible to go into inactive mode. Specifically\n // this happens in fullscreen when we really need to hide the cursor.\n //\n // When this gets resolved in ALL browsers it can be removed\n // https://code.google.com/p/chromium/issues/detail?id=103041\n if (this.tech_) {\n this.tech_.one('mousemove', function (e) {\n e.stopPropagation();\n e.preventDefault();\n });\n }\n\n this.userActivity_ = false;\n this.removeClass('vjs-user-active');\n this.addClass('vjs-user-inactive');\n /**\n * @event Player#userinactive\n * @type {EventTarget~Event}\n */\n this.trigger('userinactive');\n };\n\n /**\n * Listen for user activity based on timeout value\n *\n * @private\n */\n\n\n Player.prototype.listenForUserActivity_ = function listenForUserActivity_() {\n var mouseInProgress = void 0;\n var lastMoveX = void 0;\n var lastMoveY = void 0;\n var handleActivity = bind(this, this.reportUserActivity);\n\n var handleMouseMove = function handleMouseMove(e) {\n // #1068 - Prevent mousemove spamming\n // Chrome Bug: https://code.google.com/p/chromium/issues/detail?id=366970\n if (e.screenX !== lastMoveX || e.screenY !== lastMoveY) {\n lastMoveX = e.screenX;\n lastMoveY = e.screenY;\n handleActivity();\n }\n };\n\n var handleMouseDown = function handleMouseDown() {\n handleActivity();\n // For as long as the they are touching the device or have their mouse down,\n // we consider them active even if they're not moving their finger or mouse.\n // So we want to continue to update that they are active\n this.clearInterval(mouseInProgress);\n // Setting userActivity=true now and setting the interval to the same time\n // as the activityCheck interval (250) should ensure we never miss the\n // next activityCheck\n mouseInProgress = this.setInterval(handleActivity, 250);\n };\n\n var handleMouseUp = function handleMouseUp(event) {\n handleActivity();\n // Stop the interval that maintains activity if the mouse/touch is down\n this.clearInterval(mouseInProgress);\n };\n\n // Any mouse movement will be considered user activity\n this.on('mousedown', handleMouseDown);\n this.on('mousemove', handleMouseMove);\n this.on('mouseup', handleMouseUp);\n\n // Listen for keyboard navigation\n // Shouldn't need to use inProgress interval because of key repeat\n this.on('keydown', handleActivity);\n this.on('keyup', handleActivity);\n\n // Run an interval every 250 milliseconds instead of stuffing everything into\n // the mousemove/touchmove function itself, to prevent performance degradation.\n // `this.reportUserActivity` simply sets this.userActivity_ to true, which\n // then gets picked up by this loop\n // http://ejohn.org/blog/learning-from-twitter/\n var inactivityTimeout = void 0;\n\n this.setInterval(function () {\n // Check to see if mouse/touch activity has happened\n if (!this.userActivity_) {\n return;\n }\n\n // Reset the activity tracker\n this.userActivity_ = false;\n\n // If the user state was inactive, set the state to active\n this.userActive(true);\n\n // Clear any existing inactivity timeout to start the timer over\n this.clearTimeout(inactivityTimeout);\n\n var timeout = this.options_.inactivityTimeout;\n\n if (timeout <= 0) {\n return;\n }\n\n // In <timeout> milliseconds, if no more activity has occurred the\n // user will be considered inactive\n inactivityTimeout = this.setTimeout(function () {\n // Protect against the case where the inactivityTimeout can trigger just\n // before the next user activity is picked up by the activity check loop\n // causing a flicker\n if (!this.userActivity_) {\n this.userActive(false);\n }\n }, timeout);\n }, 250);\n };\n\n /**\n * Gets or sets the current playback rate. A playback rate of\n * 1.0 represents normal speed and 0.5 would indicate half-speed\n * playback, for instance.\n *\n * @see https://html.spec.whatwg.org/multipage/embedded-content.html#dom-media-playbackrate\n *\n * @param {number} [rate]\n * New playback rate to set.\n *\n * @return {number}\n * The current playback rate when getting or 1.0\n */\n\n\n Player.prototype.playbackRate = function playbackRate(rate) {\n if (rate !== undefined) {\n this.techCall_('setPlaybackRate', rate);\n return;\n }\n\n if (this.tech_ && this.tech_.featuresPlaybackRate) {\n return this.techGet_('playbackRate');\n }\n return 1.0;\n };\n\n /**\n * Gets or sets the current default playback rate. A default playback rate of\n * 1.0 represents normal speed and 0.5 would indicate half-speed playback, for instance.\n * defaultPlaybackRate will only represent what the intial playbackRate of a video was, not\n * not the current playbackRate.\n *\n * @see https://html.spec.whatwg.org/multipage/embedded-content.html#dom-media-defaultplaybackrate\n *\n * @param {number} [rate]\n * New default playback rate to set.\n *\n * @return {number|Player}\n * - The default playback rate when getting or 1.0\n * - the player when setting\n */\n\n\n Player.prototype.defaultPlaybackRate = function defaultPlaybackRate(rate) {\n if (rate !== undefined) {\n return this.techCall_('setDefaultPlaybackRate', rate);\n }\n\n if (this.tech_ && this.tech_.featuresPlaybackRate) {\n return this.techGet_('defaultPlaybackRate');\n }\n return 1.0;\n };\n\n /**\n * Gets or sets the audio flag\n *\n * @param {boolean} bool\n * - true signals that this is an audio player\n * - false signals that this is not an audio player\n *\n * @return {boolean}\n * The current value of isAudio when getting\n */\n\n\n Player.prototype.isAudio = function isAudio(bool) {\n if (bool !== undefined) {\n this.isAudio_ = !!bool;\n return;\n }\n\n return !!this.isAudio_;\n };\n\n /**\n * A helper method for adding a {@link TextTrack} to our\n * {@link TextTrackList}.\n *\n * In addition to the W3C settings we allow adding additional info through options.\n *\n * @see http://www.w3.org/html/wg/drafts/html/master/embedded-content-0.html#dom-media-addtexttrack\n *\n * @param {string} [kind]\n * the kind of TextTrack you are adding\n *\n * @param {string} [label]\n * the label to give the TextTrack label\n *\n * @param {string} [language]\n * the language to set on the TextTrack\n *\n * @return {TextTrack|undefined}\n * the TextTrack that was added or undefined\n * if there is no tech\n */\n\n\n Player.prototype.addTextTrack = function addTextTrack(kind, label, language) {\n if (this.tech_) {\n return this.tech_.addTextTrack(kind, label, language);\n }\n };\n\n /**\n * Create a remote {@link TextTrack} and an {@link HTMLTrackElement}. It will\n * automatically removed from the video element whenever the source changes, unless\n * manualCleanup is set to false.\n *\n * @param {Object} options\n * Options to pass to {@link HTMLTrackElement} during creation. See\n * {@link HTMLTrackElement} for object properties that you should use.\n *\n * @param {boolean} [manualCleanup=true] if set to false, the TextTrack will be\n *\n * @return {HtmlTrackElement}\n * the HTMLTrackElement that was created and added\n * to the HtmlTrackElementList and the remote\n * TextTrackList\n *\n * @deprecated The default value of the \"manualCleanup\" parameter will default\n * to \"false\" in upcoming versions of Video.js\n */\n\n\n Player.prototype.addRemoteTextTrack = function addRemoteTextTrack(options, manualCleanup) {\n if (this.tech_) {\n return this.tech_.addRemoteTextTrack(options, manualCleanup);\n }\n };\n\n /**\n * Remove a remote {@link TextTrack} from the respective\n * {@link TextTrackList} and {@link HtmlTrackElementList}.\n *\n * @param {Object} track\n * Remote {@link TextTrack} to remove\n *\n * @return {undefined}\n * does not return anything\n */\n\n\n Player.prototype.removeRemoteTextTrack = function removeRemoteTextTrack() {\n var _ref3 = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {},\n _ref3$track = _ref3.track,\n track = _ref3$track === undefined ? arguments[0] : _ref3$track;\n\n // destructure the input into an object with a track argument, defaulting to arguments[0]\n // default the whole argument to an empty object if nothing was passed in\n\n if (this.tech_) {\n return this.tech_.removeRemoteTextTrack(track);\n }\n };\n\n /**\n * Gets available media playback quality metrics as specified by the W3C's Media\n * Playback Quality API.\n *\n * @see [Spec]{@link https://wicg.github.io/media-playback-quality}\n *\n * @return {Object|undefined}\n * An object with supported media playback quality metrics or undefined if there\n * is no tech or the tech does not support it.\n */\n\n\n Player.prototype.getVideoPlaybackQuality = function getVideoPlaybackQuality() {\n return this.techGet_('getVideoPlaybackQuality');\n };\n\n /**\n * Get video width\n *\n * @return {number}\n * current video width\n */\n\n\n Player.prototype.videoWidth = function videoWidth() {\n return this.tech_ && this.tech_.videoWidth && this.tech_.videoWidth() || 0;\n };\n\n /**\n * Get video height\n *\n * @return {number}\n * current video height\n */\n\n\n Player.prototype.videoHeight = function videoHeight() {\n return this.tech_ && this.tech_.videoHeight && this.tech_.videoHeight() || 0;\n };\n\n /**\n * The player's language code\n * NOTE: The language should be set in the player options if you want the\n * the controls to be built with a specific language. Changing the lanugage\n * later will not update controls text.\n *\n * @param {string} [code]\n * the language code to set the player to\n *\n * @return {string}\n * The current language code when getting\n */\n\n\n Player.prototype.language = function language(code) {\n if (code === undefined) {\n return this.language_;\n }\n\n this.language_ = String(code).toLowerCase();\n };\n\n /**\n * Get the player's language dictionary\n * Merge every time, because a newly added plugin might call videojs.addLanguage() at any time\n * Languages specified directly in the player options have precedence\n *\n * @return {Array}\n * An array of of supported languages\n */\n\n\n Player.prototype.languages = function languages() {\n return mergeOptions(Player.prototype.options_.languages, this.languages_);\n };\n\n /**\n * returns a JavaScript object reperesenting the current track\n * information. **DOES not return it as JSON**\n *\n * @return {Object}\n * Object representing the current of track info\n */\n\n\n Player.prototype.toJSON = function toJSON() {\n var options = mergeOptions(this.options_);\n var tracks = options.tracks;\n\n options.tracks = [];\n\n for (var i = 0; i < tracks.length; i++) {\n var track = tracks[i];\n\n // deep merge tracks and null out player so no circular references\n track = mergeOptions(track);\n track.player = undefined;\n options.tracks[i] = track;\n }\n\n return options;\n };\n\n /**\n * Creates a simple modal dialog (an instance of the {@link ModalDialog}\n * component) that immediately overlays the player with arbitrary\n * content and removes itself when closed.\n *\n * @param {string|Function|Element|Array|null} content\n * Same as {@link ModalDialog#content}'s param of the same name.\n * The most straight-forward usage is to provide a string or DOM\n * element.\n *\n * @param {Object} [options]\n * Extra options which will be passed on to the {@link ModalDialog}.\n *\n * @return {ModalDialog}\n * the {@link ModalDialog} that was created\n */\n\n\n Player.prototype.createModal = function createModal(content, options) {\n var _this8 = this;\n\n options = options || {};\n options.content = content || '';\n\n var modal = new ModalDialog(this, options);\n\n this.addChild(modal);\n modal.on('dispose', function () {\n _this8.removeChild(modal);\n });\n\n modal.open();\n return modal;\n };\n\n /**\n * Gets tag settings\n *\n * @param {Element} tag\n * The player tag\n *\n * @return {Object}\n * An object containing all of the settings\n * for a player tag\n */\n\n\n Player.getTagSettings = function getTagSettings(tag) {\n var baseOptions = {\n sources: [],\n tracks: []\n };\n\n var tagOptions = getAttributes(tag);\n var dataSetup = tagOptions['data-setup'];\n\n if (hasClass(tag, 'vjs-fluid')) {\n tagOptions.fluid = true;\n }\n\n // Check if data-setup attr exists.\n if (dataSetup !== null) {\n // Parse options JSON\n // If empty string, make it a parsable json object.\n var _safeParseTuple = tuple(dataSetup || '{}'),\n err = _safeParseTuple[0],\n data = _safeParseTuple[1];\n\n if (err) {\n log$1.error(err);\n }\n assign(tagOptions, data);\n }\n\n assign(baseOptions, tagOptions);\n\n // Get tag children settings\n if (tag.hasChildNodes()) {\n var children = tag.childNodes;\n\n for (var i = 0, j = children.length; i < j; i++) {\n var child = children[i];\n // Change case needed: http://ejohn.org/blog/nodename-case-sensitivity/\n var childName = child.nodeName.toLowerCase();\n\n if (childName === 'source') {\n baseOptions.sources.push(getAttributes(child));\n } else if (childName === 'track') {\n baseOptions.tracks.push(getAttributes(child));\n }\n }\n }\n\n return baseOptions;\n };\n\n /**\n * Determine wether or not flexbox is supported\n *\n * @return {boolean}\n * - true if flexbox is supported\n * - false if flexbox is not supported\n */\n\n\n Player.prototype.flexNotSupported_ = function flexNotSupported_() {\n var elem = document_1.createElement('i');\n\n // Note: We don't actually use flexBasis (or flexOrder), but it's one of the more\n // common flex features that we can rely on when checking for flex support.\n return !('flexBasis' in elem.style || 'webkitFlexBasis' in elem.style || 'mozFlexBasis' in elem.style || 'msFlexBasis' in elem.style ||\n // IE10-specific (2012 flex spec)\n 'msFlexOrder' in elem.style);\n };\n\n return Player;\n}(Component);\n\n/**\n * Get the {@link VideoTrackList}\n * @link https://html.spec.whatwg.org/multipage/embedded-content.html#videotracklist\n *\n * @return {VideoTrackList}\n * the current video track list\n *\n * @method Player.prototype.videoTracks\n */\n\n/**\n * Get the {@link AudioTrackList}\n * @link https://html.spec.whatwg.org/multipage/embedded-content.html#audiotracklist\n *\n * @return {AudioTrackList}\n * the current audio track list\n *\n * @method Player.prototype.audioTracks\n */\n\n/**\n * Get the {@link TextTrackList}\n *\n * @link http://www.w3.org/html/wg/drafts/html/master/embedded-content-0.html#dom-media-texttracks\n *\n * @return {TextTrackList}\n * the current text track list\n *\n * @method Player.prototype.textTracks\n */\n\n/**\n * Get the remote {@link TextTrackList}\n *\n * @return {TextTrackList}\n * The current remote text track list\n *\n * @method Player.prototype.remoteTextTracks\n */\n\n/**\n * Get the remote {@link HtmlTrackElementList} tracks.\n *\n * @return {HtmlTrackElementList}\n * The current remote text track element list\n *\n * @method Player.prototype.remoteTextTrackEls\n */\n\nALL.names.forEach(function (name$$1) {\n var props = ALL[name$$1];\n\n Player.prototype[props.getterName] = function () {\n if (this.tech_) {\n return this.tech_[props.getterName]();\n }\n\n // if we have not yet loadTech_, we create {video,audio,text}Tracks_\n // these will be passed to the tech during loading\n this[props.privateName] = this[props.privateName] || new props.ListClass();\n return this[props.privateName];\n };\n});\n\n/**\n * Global player list\n *\n * @type {Object}\n */\nPlayer.players = {};\n\nvar navigator$1 = window_1.navigator;\n\n/*\n * Player instance options, surfaced using options\n * options = Player.prototype.options_\n * Make changes in options, not here.\n *\n * @type {Object}\n * @private\n */\nPlayer.prototype.options_ = {\n // Default order of fallback technology\n techOrder: Tech.defaultTechOrder_,\n\n html5: {},\n flash: {},\n\n // default inactivity timeout\n inactivityTimeout: 2000,\n\n // default playback rates\n playbackRates: [],\n // Add playback rate selection by adding rates\n // 'playbackRates': [0.5, 1, 1.5, 2],\n\n // Included control sets\n children: ['mediaLoader', 'posterImage', 'textTrackDisplay', 'loadingSpinner', 'bigPlayButton', 'controlBar', 'errorDisplay', 'textTrackSettings'],\n\n language: navigator$1 && (navigator$1.languages && navigator$1.languages[0] || navigator$1.userLanguage || navigator$1.language) || 'en',\n\n // locales and their language translations\n languages: {},\n\n // Default message to show when a video cannot be played.\n notSupportedMessage: 'No compatible source was found for this media.'\n};\n\nif (!IS_IE8) {\n Player.prototype.options_.children.push('resizeManager');\n}\n\n[\n/**\n * Returns whether or not the player is in the \"ended\" state.\n *\n * @return {Boolean} True if the player is in the ended state, false if not.\n * @method Player#ended\n */\n'ended',\n/**\n * Returns whether or not the player is in the \"seeking\" state.\n *\n * @return {Boolean} True if the player is in the seeking state, false if not.\n * @method Player#seeking\n */\n'seeking',\n/**\n * Returns the TimeRanges of the media that are currently available\n * for seeking to.\n *\n * @return {TimeRanges} the seekable intervals of the media timeline\n * @method Player#seekable\n */\n'seekable',\n/**\n * Returns the current state of network activity for the element, from\n * the codes in the list below.\n * - NETWORK_EMPTY (numeric value 0)\n * The element has not yet been initialised. All attributes are in\n * their initial states.\n * - NETWORK_IDLE (numeric value 1)\n * The element's resource selection algorithm is active and has\n * selected a resource, but it is not actually using the network at\n * this time.\n * - NETWORK_LOADING (numeric value 2)\n * The user agent is actively trying to download data.\n * - NETWORK_NO_SOURCE (numeric value 3)\n * The element's resource selection algorithm is active, but it has\n * not yet found a resource to use.\n *\n * @see https://html.spec.whatwg.org/multipage/embedded-content.html#network-states\n * @return {number} the current network activity state\n * @method Player#networkState\n */\n'networkState',\n/**\n * Returns a value that expresses the current state of the element\n * with respect to rendering the current playback position, from the\n * codes in the list below.\n * - HAVE_NOTHING (numeric value 0)\n * No information regarding the media resource is available.\n * - HAVE_METADATA (numeric value 1)\n * Enough of the resource has been obtained that the duration of the\n * resource is available.\n * - HAVE_CURRENT_DATA (numeric value 2)\n * Data for the immediate current playback position is available.\n * - HAVE_FUTURE_DATA (numeric value 3)\n * Data for the immediate current playback position is available, as\n * well as enough data for the user agent to advance the current\n * playback position in the direction of playback.\n * - HAVE_ENOUGH_DATA (numeric value 4)\n * The user agent estimates that enough data is available for\n * playback to proceed uninterrupted.\n *\n * @see https://html.spec.whatwg.org/multipage/embedded-content.html#dom-media-readystate\n * @return {number} the current playback rendering state\n * @method Player#readyState\n */\n'readyState'].forEach(function (fn) {\n Player.prototype[fn] = function () {\n return this.techGet_(fn);\n };\n});\n\nTECH_EVENTS_RETRIGGER.forEach(function (event) {\n Player.prototype['handleTech' + toTitleCase(event) + '_'] = function () {\n return this.trigger(event);\n };\n});\n\n/**\n * Fired when the player has initial duration and dimension information\n *\n * @event Player#loadedmetadata\n * @type {EventTarget~Event}\n */\n\n/**\n * Fired when the player has downloaded data at the current playback position\n *\n * @event Player#loadeddata\n * @type {EventTarget~Event}\n */\n\n/**\n * Fired when the current playback position has changed *\n * During playback this is fired every 15-250 milliseconds, depending on the\n * playback technology in use.\n *\n * @event Player#timeupdate\n * @type {EventTarget~Event}\n */\n\n/**\n * Fired when the volume changes\n *\n * @event Player#volumechange\n * @type {EventTarget~Event}\n */\n\n/**\n * Reports whether or not a player has a plugin available.\n *\n * This does not report whether or not the plugin has ever been initialized\n * on this player. For that, [usingPlugin]{@link Player#usingPlugin}.\n *\n * @method Player#hasPlugin\n * @param {string} name\n * The name of a plugin.\n *\n * @return {boolean}\n * Whether or not this player has the requested plugin available.\n */\n\n/**\n * Reports whether or not a player is using a plugin by name.\n *\n * For basic plugins, this only reports whether the plugin has _ever_ been\n * initialized on this player.\n *\n * @method Player#usingPlugin\n * @param {string} name\n * The name of a plugin.\n *\n * @return {boolean}\n * Whether or not this player is using the requested plugin.\n */\n\nComponent.registerComponent('Player', Player);\n\n/**\n * @file plugin.js\n */\n/**\n * The base plugin name.\n *\n * @private\n * @constant\n * @type {string}\n */\nvar BASE_PLUGIN_NAME = 'plugin';\n\n/**\n * The key on which a player's active plugins cache is stored.\n *\n * @private\n * @constant\n * @type {string}\n */\nvar PLUGIN_CACHE_KEY = 'activePlugins_';\n\n/**\n * Stores registered plugins in a private space.\n *\n * @private\n * @type {Object}\n */\nvar pluginStorage = {};\n\n/**\n * Reports whether or not a plugin has been registered.\n *\n * @private\n * @param {string} name\n * The name of a plugin.\n *\n * @returns {boolean}\n * Whether or not the plugin has been registered.\n */\nvar pluginExists = function pluginExists(name) {\n return pluginStorage.hasOwnProperty(name);\n};\n\n/**\n * Get a single registered plugin by name.\n *\n * @private\n * @param {string} name\n * The name of a plugin.\n *\n * @returns {Function|undefined}\n * The plugin (or undefined).\n */\nvar getPlugin = function getPlugin(name) {\n return pluginExists(name) ? pluginStorage[name] : undefined;\n};\n\n/**\n * Marks a plugin as \"active\" on a player.\n *\n * Also, ensures that the player has an object for tracking active plugins.\n *\n * @private\n * @param {Player} player\n * A Video.js player instance.\n *\n * @param {string} name\n * The name of a plugin.\n */\nvar markPluginAsActive = function markPluginAsActive(player, name) {\n player[PLUGIN_CACHE_KEY] = player[PLUGIN_CACHE_KEY] || {};\n player[PLUGIN_CACHE_KEY][name] = true;\n};\n\n/**\n * Triggers a pair of plugin setup events.\n *\n * @private\n * @param {Player} player\n * A Video.js player instance.\n *\n * @param {Plugin~PluginEventHash} hash\n * A plugin event hash.\n *\n * @param {Boolean} [before]\n * If true, prefixes the event name with \"before\". In other words,\n * use this to trigger \"beforepluginsetup\" instead of \"pluginsetup\".\n */\nvar triggerSetupEvent = function triggerSetupEvent(player, hash, before) {\n var eventName = (before ? 'before' : '') + 'pluginsetup';\n\n player.trigger(eventName, hash);\n player.trigger(eventName + ':' + hash.name, hash);\n};\n\n/**\n * Takes a basic plugin function and returns a wrapper function which marks\n * on the player that the plugin has been activated.\n *\n * @private\n * @param {string} name\n * The name of the plugin.\n *\n * @param {Function} plugin\n * The basic plugin.\n *\n * @returns {Function}\n * A wrapper function for the given plugin.\n */\nvar createBasicPlugin = function createBasicPlugin(name, plugin) {\n var basicPluginWrapper = function basicPluginWrapper() {\n\n // We trigger the \"beforepluginsetup\" and \"pluginsetup\" events on the player\n // regardless, but we want the hash to be consistent with the hash provided\n // for advanced plugins.\n //\n // The only potentially counter-intuitive thing here is the `instance` in\n // the \"pluginsetup\" event is the value returned by the `plugin` function.\n triggerSetupEvent(this, { name: name, plugin: plugin, instance: null }, true);\n\n var instance = plugin.apply(this, arguments);\n\n markPluginAsActive(this, name);\n triggerSetupEvent(this, { name: name, plugin: plugin, instance: instance });\n\n return instance;\n };\n\n Object.keys(plugin).forEach(function (prop) {\n basicPluginWrapper[prop] = plugin[prop];\n });\n\n return basicPluginWrapper;\n};\n\n/**\n * Takes a plugin sub-class and returns a factory function for generating\n * instances of it.\n *\n * This factory function will replace itself with an instance of the requested\n * sub-class of Plugin.\n *\n * @private\n * @param {string} name\n * The name of the plugin.\n *\n * @param {Plugin} PluginSubClass\n * The advanced plugin.\n *\n * @returns {Function}\n */\nvar createPluginFactory = function createPluginFactory(name, PluginSubClass) {\n\n // Add a `name` property to the plugin prototype so that each plugin can\n // refer to itself by name.\n PluginSubClass.prototype.name = name;\n\n return function () {\n triggerSetupEvent(this, { name: name, plugin: PluginSubClass, instance: null }, true);\n\n for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n var instance = new (Function.prototype.bind.apply(PluginSubClass, [null].concat([this].concat(args))))();\n\n // The plugin is replaced by a function that returns the current instance.\n this[name] = function () {\n return instance;\n };\n\n triggerSetupEvent(this, instance.getEventHash());\n\n return instance;\n };\n};\n\n/**\n * Parent class for all advanced plugins.\n *\n * @mixes module:evented~EventedMixin\n * @mixes module:stateful~StatefulMixin\n * @fires Player#beforepluginsetup\n * @fires Player#beforepluginsetup:$name\n * @fires Player#pluginsetup\n * @fires Player#pluginsetup:$name\n * @listens Player#dispose\n * @throws {Error}\n * If attempting to instantiate the base {@link Plugin} class\n * directly instead of via a sub-class.\n */\n\nvar Plugin = function () {\n\n /**\n * Creates an instance of this class.\n *\n * Sub-classes should call `super` to ensure plugins are properly initialized.\n *\n * @param {Player} player\n * A Video.js player instance.\n */\n function Plugin(player) {\n classCallCheck(this, Plugin);\n\n if (this.constructor === Plugin) {\n throw new Error('Plugin must be sub-classed; not directly instantiated.');\n }\n\n this.player = player;\n\n // Make this object evented, but remove the added `trigger` method so we\n // use the prototype version instead.\n evented(this);\n delete this.trigger;\n\n stateful(this, this.constructor.defaultState);\n markPluginAsActive(player, this.name);\n\n // Auto-bind the dispose method so we can use it as a listener and unbind\n // it later easily.\n this.dispose = bind(this, this.dispose);\n\n // If the player is disposed, dispose the plugin.\n player.on('dispose', this.dispose);\n }\n\n /**\n * Get the version of the plugin that was set on <pluginName>.VERSION\n */\n\n\n Plugin.prototype.version = function version() {\n return this.constructor.VERSION;\n };\n\n /**\n * Each event triggered by plugins includes a hash of additional data with\n * conventional properties.\n *\n * This returns that object or mutates an existing hash.\n *\n * @param {Object} [hash={}]\n * An object to be used as event an event hash.\n *\n * @returns {Plugin~PluginEventHash}\n * An event hash object with provided properties mixed-in.\n */\n\n\n Plugin.prototype.getEventHash = function getEventHash() {\n var hash = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n\n hash.name = this.name;\n hash.plugin = this.constructor;\n hash.instance = this;\n return hash;\n };\n\n /**\n * Triggers an event on the plugin object and overrides\n * {@link module:evented~EventedMixin.trigger|EventedMixin.trigger}.\n *\n * @param {string|Object} event\n * An event type or an object with a type property.\n *\n * @param {Object} [hash={}]\n * Additional data hash to merge with a\n * {@link Plugin~PluginEventHash|PluginEventHash}.\n *\n * @returns {boolean}\n * Whether or not default was prevented.\n */\n\n\n Plugin.prototype.trigger = function trigger$$1(event) {\n var hash = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\n return trigger(this.eventBusEl_, event, this.getEventHash(hash));\n };\n\n /**\n * Handles \"statechanged\" events on the plugin. No-op by default, override by\n * subclassing.\n *\n * @abstract\n * @param {Event} e\n * An event object provided by a \"statechanged\" event.\n *\n * @param {Object} e.changes\n * An object describing changes that occurred with the \"statechanged\"\n * event.\n */\n\n\n Plugin.prototype.handleStateChanged = function handleStateChanged(e) {};\n\n /**\n * Disposes a plugin.\n *\n * Subclasses can override this if they want, but for the sake of safety,\n * it's probably best to subscribe the \"dispose\" event.\n *\n * @fires Plugin#dispose\n */\n\n\n Plugin.prototype.dispose = function dispose() {\n var name = this.name,\n player = this.player;\n\n /**\n * Signals that a advanced plugin is about to be disposed.\n *\n * @event Plugin#dispose\n * @type {EventTarget~Event}\n */\n\n this.trigger('dispose');\n this.off();\n player.off('dispose', this.dispose);\n\n // Eliminate any possible sources of leaking memory by clearing up\n // references between the player and the plugin instance and nulling out\n // the plugin's state and replacing methods with a function that throws.\n player[PLUGIN_CACHE_KEY][name] = false;\n this.player = this.state = null;\n\n // Finally, replace the plugin name on the player with a new factory\n // function, so that the plugin is ready to be set up again.\n player[name] = createPluginFactory(name, pluginStorage[name]);\n };\n\n /**\n * Determines if a plugin is a basic plugin (i.e. not a sub-class of `Plugin`).\n *\n * @param {string|Function} plugin\n * If a string, matches the name of a plugin. If a function, will be\n * tested directly.\n *\n * @returns {boolean}\n * Whether or not a plugin is a basic plugin.\n */\n\n\n Plugin.isBasic = function isBasic(plugin) {\n var p = typeof plugin === 'string' ? getPlugin(plugin) : plugin;\n\n return typeof p === 'function' && !Plugin.prototype.isPrototypeOf(p.prototype);\n };\n\n /**\n * Register a Video.js plugin.\n *\n * @param {string} name\n * The name of the plugin to be registered. Must be a string and\n * must not match an existing plugin or a method on the `Player`\n * prototype.\n *\n * @param {Function} plugin\n * A sub-class of `Plugin` or a function for basic plugins.\n *\n * @returns {Function}\n * For advanced plugins, a factory function for that plugin. For\n * basic plugins, a wrapper function that initializes the plugin.\n */\n\n\n Plugin.registerPlugin = function registerPlugin(name, plugin) {\n if (typeof name !== 'string') {\n throw new Error('Illegal plugin name, \"' + name + '\", must be a string, was ' + (typeof name === 'undefined' ? 'undefined' : _typeof(name)) + '.');\n }\n\n if (pluginExists(name)) {\n log$1.warn('A plugin named \"' + name + '\" already exists. You may want to avoid re-registering plugins!');\n } else if (Player.prototype.hasOwnProperty(name)) {\n throw new Error('Illegal plugin name, \"' + name + '\", cannot share a name with an existing player method!');\n }\n\n if (typeof plugin !== 'function') {\n throw new Error('Illegal plugin for \"' + name + '\", must be a function, was ' + (typeof plugin === 'undefined' ? 'undefined' : _typeof(plugin)) + '.');\n }\n\n pluginStorage[name] = plugin;\n\n // Add a player prototype method for all sub-classed plugins (but not for\n // the base Plugin class).\n if (name !== BASE_PLUGIN_NAME) {\n if (Plugin.isBasic(plugin)) {\n Player.prototype[name] = createBasicPlugin(name, plugin);\n } else {\n Player.prototype[name] = createPluginFactory(name, plugin);\n }\n }\n\n return plugin;\n };\n\n /**\n * De-register a Video.js plugin.\n *\n * @param {string} name\n * The name of the plugin to be deregistered.\n */\n\n\n Plugin.deregisterPlugin = function deregisterPlugin(name) {\n if (name === BASE_PLUGIN_NAME) {\n throw new Error('Cannot de-register base plugin.');\n }\n if (pluginExists(name)) {\n delete pluginStorage[name];\n delete Player.prototype[name];\n }\n };\n\n /**\n * Gets an object containing multiple Video.js plugins.\n *\n * @param {Array} [names]\n * If provided, should be an array of plugin names. Defaults to _all_\n * plugin names.\n *\n * @returns {Object|undefined}\n * An object containing plugin(s) associated with their name(s) or\n * `undefined` if no matching plugins exist).\n */\n\n\n Plugin.getPlugins = function getPlugins() {\n var names = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : Object.keys(pluginStorage);\n\n var result = void 0;\n\n names.forEach(function (name) {\n var plugin = getPlugin(name);\n\n if (plugin) {\n result = result || {};\n result[name] = plugin;\n }\n });\n\n return result;\n };\n\n /**\n * Gets a plugin's version, if available\n *\n * @param {string} name\n * The name of a plugin.\n *\n * @returns {string}\n * The plugin's version or an empty string.\n */\n\n\n Plugin.getPluginVersion = function getPluginVersion(name) {\n var plugin = getPlugin(name);\n\n return plugin && plugin.VERSION || '';\n };\n\n return Plugin;\n}();\n\n/**\n * Gets a plugin by name if it exists.\n *\n * @static\n * @method getPlugin\n * @memberOf Plugin\n * @param {string} name\n * The name of a plugin.\n *\n * @returns {Function|undefined}\n * The plugin (or `undefined`).\n */\n\n\nPlugin.getPlugin = getPlugin;\n\n/**\n * The name of the base plugin class as it is registered.\n *\n * @type {string}\n */\nPlugin.BASE_PLUGIN_NAME = BASE_PLUGIN_NAME;\n\nPlugin.registerPlugin(BASE_PLUGIN_NAME, Plugin);\n\n/**\n * Documented in player.js\n *\n * @ignore\n */\nPlayer.prototype.usingPlugin = function (name) {\n return !!this[PLUGIN_CACHE_KEY] && this[PLUGIN_CACHE_KEY][name] === true;\n};\n\n/**\n * Documented in player.js\n *\n * @ignore\n */\nPlayer.prototype.hasPlugin = function (name) {\n return !!pluginExists(name);\n};\n\n/**\n * Signals that a plugin is about to be set up on a player.\n *\n * @event Player#beforepluginsetup\n * @type {Plugin~PluginEventHash}\n */\n\n/**\n * Signals that a plugin is about to be set up on a player - by name. The name\n * is the name of the plugin.\n *\n * @event Player#beforepluginsetup:$name\n * @type {Plugin~PluginEventHash}\n */\n\n/**\n * Signals that a plugin has just been set up on a player.\n *\n * @event Player#pluginsetup\n * @type {Plugin~PluginEventHash}\n */\n\n/**\n * Signals that a plugin has just been set up on a player - by name. The name\n * is the name of the plugin.\n *\n * @event Player#pluginsetup:$name\n * @type {Plugin~PluginEventHash}\n */\n\n/**\n * @typedef {Object} Plugin~PluginEventHash\n *\n * @property {string} instance\n * For basic plugins, the return value of the plugin function. For\n * advanced plugins, the plugin instance on which the event is fired.\n *\n * @property {string} name\n * The name of the plugin.\n *\n * @property {string} plugin\n * For basic plugins, the plugin function. For advanced plugins, the\n * plugin class/constructor.\n */\n\n/**\n * @file extend.js\n * @module extend\n */\n\n/**\n * A combination of node inherits and babel's inherits (after transpile).\n * Both work the same but node adds `super_` to the subClass\n * and Bable adds the superClass as __proto__. Both seem useful.\n *\n * @param {Object} subClass\n * The class to inherit to\n *\n * @param {Object} superClass\n * The class to inherit from\n *\n * @private\n */\nvar _inherits = function _inherits(subClass, superClass) {\n if (typeof superClass !== 'function' && superClass !== null) {\n throw new TypeError('Super expression must either be null or a function, not ' + (typeof superClass === 'undefined' ? 'undefined' : _typeof(superClass)));\n }\n\n subClass.prototype = Object.create(superClass && superClass.prototype, {\n constructor: {\n value: subClass,\n enumerable: false,\n writable: true,\n configurable: true\n }\n });\n\n if (superClass) {\n // node\n subClass.super_ = superClass;\n }\n};\n\n/**\n * Function for subclassing using the same inheritance that\n * videojs uses internally\n *\n * @static\n * @const\n *\n * @param {Object} superClass\n * The class to inherit from\n *\n * @param {Object} [subClassMethods={}]\n * The class to inherit to\n *\n * @return {Object}\n * The new object with subClassMethods that inherited superClass.\n */\nvar extendFn = function extendFn(superClass) {\n var subClassMethods = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\n var subClass = function subClass() {\n superClass.apply(this, arguments);\n };\n\n var methods = {};\n\n if ((typeof subClassMethods === 'undefined' ? 'undefined' : _typeof(subClassMethods)) === 'object') {\n if (subClassMethods.constructor !== Object.prototype.constructor) {\n subClass = subClassMethods.constructor;\n }\n methods = subClassMethods;\n } else if (typeof subClassMethods === 'function') {\n subClass = subClassMethods;\n }\n\n _inherits(subClass, superClass);\n\n // Extend subObj's prototype with functions and other properties from props\n for (var name in methods) {\n if (methods.hasOwnProperty(name)) {\n subClass.prototype[name] = methods[name];\n }\n }\n\n return subClass;\n};\n\n/**\n * @file video.js\n * @module videojs\n */\n// Include the built-in techs\n// HTML5 Element Shim for IE8\nif (typeof HTMLVideoElement === 'undefined' && isReal()) {\n document_1.createElement('video');\n document_1.createElement('audio');\n document_1.createElement('track');\n document_1.createElement('video-js');\n}\n\n/**\n * Normalize an `id` value by trimming off a leading `#`\n *\n * @param {string} id\n * A string, maybe with a leading `#`.\n *\n * @returns {string}\n * The string, without any leading `#`.\n */\nvar normalizeId = function normalizeId(id) {\n return id.indexOf('#') === 0 ? id.slice(1) : id;\n};\n\n/**\n * Doubles as the main function for users to create a player instance and also\n * the main library object.\n * The `videojs` function can be used to initialize or retrieve a player.\n *\n * @param {string|Element} id\n * Video element or video element ID\n *\n * @param {Object} [options]\n * Optional options object for config/settings\n *\n * @param {Component~ReadyCallback} [ready]\n * Optional ready callback\n *\n * @return {Player}\n * A player instance\n */\nfunction videojs(id, options, ready) {\n var player = videojs.getPlayer(id);\n\n if (player) {\n if (options) {\n log$1.warn('Player \"' + id + '\" is already initialised. Options will not be applied.');\n }\n if (ready) {\n player.ready(ready);\n }\n return player;\n }\n\n var el = typeof id === 'string' ? $('#' + normalizeId(id)) : id;\n\n if (!isEl(el)) {\n throw new TypeError('The element or ID supplied is not valid. (videojs)');\n }\n\n if (!document_1.body.contains(el)) {\n log$1.warn('The element supplied is not included in the DOM');\n }\n\n options = options || {};\n\n videojs.hooks('beforesetup').forEach(function (hookFunction) {\n var opts = hookFunction(el, mergeOptions(options));\n\n if (!isObject(opts) || Array.isArray(opts)) {\n log$1.error('please return an object in beforesetup hooks');\n return;\n }\n\n options = mergeOptions(options, opts);\n });\n\n // We get the current \"Player\" component here in case an integration has\n // replaced it with a custom player.\n var PlayerComponent = Component.getComponent('Player');\n\n player = new PlayerComponent(el, options, ready);\n\n videojs.hooks('setup').forEach(function (hookFunction) {\n return hookFunction(player);\n });\n\n return player;\n}\n\n/**\n * An Object that contains lifecycle hooks as keys which point to an array\n * of functions that are run when a lifecycle is triggered\n */\nvideojs.hooks_ = {};\n\n/**\n * Get a list of hooks for a specific lifecycle\n * @function videojs.hooks\n *\n * @param {string} type\n * the lifecyle to get hooks from\n *\n * @param {Function|Function[]} [fn]\n * Optionally add a hook (or hooks) to the lifecycle that your are getting.\n *\n * @return {Array}\n * an array of hooks, or an empty array if there are none.\n */\nvideojs.hooks = function (type, fn) {\n videojs.hooks_[type] = videojs.hooks_[type] || [];\n if (fn) {\n videojs.hooks_[type] = videojs.hooks_[type].concat(fn);\n }\n return videojs.hooks_[type];\n};\n\n/**\n * Add a function hook to a specific videojs lifecycle.\n *\n * @param {string} type\n * the lifecycle to hook the function to.\n *\n * @param {Function|Function[]}\n * The function or array of functions to attach.\n */\nvideojs.hook = function (type, fn) {\n videojs.hooks(type, fn);\n};\n\n/**\n * Add a function hook that will only run once to a specific videojs lifecycle.\n *\n * @param {string} type\n * the lifecycle to hook the function to.\n *\n * @param {Function|Function[]}\n * The function or array of functions to attach.\n */\nvideojs.hookOnce = function (type, fn) {\n videojs.hooks(type, [].concat(fn).map(function (original) {\n var wrapper = function wrapper() {\n videojs.removeHook(type, wrapper);\n return original.apply(undefined, arguments);\n };\n\n return wrapper;\n }));\n};\n\n/**\n * Remove a hook from a specific videojs lifecycle.\n *\n * @param {string} type\n * the lifecycle that the function hooked to\n *\n * @param {Function} fn\n * The hooked function to remove\n *\n * @return {boolean}\n * The function that was removed or undef\n */\nvideojs.removeHook = function (type, fn) {\n var index = videojs.hooks(type).indexOf(fn);\n\n if (index <= -1) {\n return false;\n }\n\n videojs.hooks_[type] = videojs.hooks_[type].slice();\n videojs.hooks_[type].splice(index, 1);\n\n return true;\n};\n\n// Add default styles\nif (window_1.VIDEOJS_NO_DYNAMIC_STYLE !== true && isReal()) {\n var style = $('.vjs-styles-defaults');\n\n if (!style) {\n style = createStyleElement('vjs-styles-defaults');\n var head = $('head');\n\n if (head) {\n head.insertBefore(style, head.firstChild);\n }\n setTextContent(style, '\\n .video-js {\\n width: 300px;\\n height: 150px;\\n }\\n\\n .vjs-fluid {\\n padding-top: 56.25%\\n }\\n ');\n }\n}\n\n// Run Auto-load players\n// You have to wait at least once in case this script is loaded after your\n// video in the DOM (weird behavior only with minified version)\nautoSetupTimeout(1, videojs);\n\n/**\n * Current software version. Follows semver.\n *\n * @type {string}\n */\nvideojs.VERSION = version;\n\n/**\n * The global options object. These are the settings that take effect\n * if no overrides are specified when the player is created.\n *\n * @type {Object}\n */\nvideojs.options = Player.prototype.options_;\n\n/**\n * Get an object with the currently created players, keyed by player ID\n *\n * @return {Object}\n * The created players\n */\nvideojs.getPlayers = function () {\n return Player.players;\n};\n\n/**\n * Get a single player based on an ID or DOM element.\n *\n * This is useful if you want to check if an element or ID has an associated\n * Video.js player, but not create one if it doesn't.\n *\n * @param {string|Element} id\n * An HTML element - `<video>`, `<audio>`, or `<video-js>` -\n * or a string matching the `id` of such an element.\n *\n * @returns {Player|undefined}\n * A player instance or `undefined` if there is no player instance\n * matching the argument.\n */\nvideojs.getPlayer = function (id) {\n var players = Player.players;\n var tag = void 0;\n\n if (typeof id === 'string') {\n var nId = normalizeId(id);\n var player = players[nId];\n\n if (player) {\n return player;\n }\n\n tag = $('#' + nId);\n } else {\n tag = id;\n }\n\n if (isEl(tag)) {\n var _tag = tag,\n _player = _tag.player,\n playerId = _tag.playerId;\n\n // Element may have a `player` property referring to an already created\n // player instance. If so, return that.\n\n if (_player || players[playerId]) {\n return _player || players[playerId];\n }\n }\n};\n\n/**\n * Returns an array of all current players.\n *\n * @return {Array}\n * An array of all players. The array will be in the order that\n * `Object.keys` provides, which could potentially vary between\n * JavaScript engines.\n *\n */\nvideojs.getAllPlayers = function () {\n return (\n\n // Disposed players leave a key with a `null` value, so we need to make sure\n // we filter those out.\n Object.keys(Player.players).map(function (k) {\n return Player.players[k];\n }).filter(Boolean)\n );\n};\n\n/**\n * Expose players object.\n *\n * @memberOf videojs\n * @property {Object} players\n */\nvideojs.players = Player.players;\n\n/**\n * Get a component class object by name\n *\n * @borrows Component.getComponent as videojs.getComponent\n */\nvideojs.getComponent = Component.getComponent;\n\n/**\n * Register a component so it can referred to by name. Used when adding to other\n * components, either through addChild `component.addChild('myComponent')` or through\n * default children options `{ children: ['myComponent'] }`.\n *\n * > NOTE: You could also just initialize the component before adding.\n * `component.addChild(new MyComponent());`\n *\n * @param {string} name\n * The class name of the component\n *\n * @param {Component} comp\n * The component class\n *\n * @return {Component}\n * The newly registered component\n */\nvideojs.registerComponent = function (name$$1, comp) {\n if (Tech.isTech(comp)) {\n log$1.warn('The ' + name$$1 + ' tech was registered as a component. It should instead be registered using videojs.registerTech(name, tech)');\n }\n\n Component.registerComponent.call(Component, name$$1, comp);\n};\n\n/**\n * Get a Tech class object by name\n *\n * @borrows Tech.getTech as videojs.getTech\n */\nvideojs.getTech = Tech.getTech;\n\n/**\n * Register a Tech so it can referred to by name.\n * This is used in the tech order for the player.\n *\n * @borrows Tech.registerTech as videojs.registerTech\n */\nvideojs.registerTech = Tech.registerTech;\n\n/**\n * Register a middleware to a source type.\n *\n * @param {String} type A string representing a MIME type.\n * @param {function(player):object} middleware A middleware factory that takes a player.\n */\nvideojs.use = use;\n\n/**\n * An object that can be returned by a middleware to signify\n * that the middleware is being terminated.\n *\n * @type {object}\n * @memberOf {videojs}\n * @property {object} middleware.TERMINATOR\n */\n// Object.defineProperty is not available in IE8\nif (!IS_IE8 && Object.defineProperty) {\n Object.defineProperty(videojs, 'middleware', {\n value: {},\n writeable: false,\n enumerable: true\n });\n\n Object.defineProperty(videojs.middleware, 'TERMINATOR', {\n value: TERMINATOR,\n writeable: false,\n enumerable: true\n });\n} else {\n videojs.middleware = { TERMINATOR: TERMINATOR };\n}\n\n/**\n * A suite of browser and device tests from {@link browser}.\n *\n * @type {Object}\n * @private\n */\nvideojs.browser = browser;\n\n/**\n * Whether or not the browser supports touch events. Included for backward\n * compatibility with 4.x, but deprecated. Use `videojs.browser.TOUCH_ENABLED`\n * instead going forward.\n *\n * @deprecated since version 5.0\n * @type {boolean}\n */\nvideojs.TOUCH_ENABLED = TOUCH_ENABLED;\n\n/**\n * Subclass an existing class\n * Mimics ES6 subclassing with the `extend` keyword\n *\n * @borrows extend:extendFn as videojs.extend\n */\nvideojs.extend = extendFn;\n\n/**\n * Merge two options objects recursively\n * Performs a deep merge like lodash.merge but **only merges plain objects**\n * (not arrays, elements, anything else)\n * Other values will be copied directly from the second object.\n *\n * @borrows merge-options:mergeOptions as videojs.mergeOptions\n */\nvideojs.mergeOptions = mergeOptions;\n\n/**\n * Change the context (this) of a function\n *\n * > NOTE: as of v5.0 we require an ES5 shim, so you should use the native\n * `function() {}.bind(newContext);` instead of this.\n *\n * @borrows fn:bind as videojs.bind\n */\nvideojs.bind = bind;\n\n/**\n * Register a Video.js plugin.\n *\n * @borrows plugin:registerPlugin as videojs.registerPlugin\n * @method registerPlugin\n *\n * @param {string} name\n * The name of the plugin to be registered. Must be a string and\n * must not match an existing plugin or a method on the `Player`\n * prototype.\n *\n * @param {Function} plugin\n * A sub-class of `Plugin` or a function for basic plugins.\n *\n * @return {Function}\n * For advanced plugins, a factory function for that plugin. For\n * basic plugins, a wrapper function that initializes the plugin.\n */\nvideojs.registerPlugin = Plugin.registerPlugin;\n\n/**\n * Deprecated method to register a plugin with Video.js\n *\n * @deprecated\n * videojs.plugin() is deprecated; use videojs.registerPlugin() instead\n *\n * @param {string} name\n * The plugin name\n *\n * @param {Plugin|Function} plugin\n * The plugin sub-class or function\n */\nvideojs.plugin = function (name$$1, plugin) {\n log$1.warn('videojs.plugin() is deprecated; use videojs.registerPlugin() instead');\n return Plugin.registerPlugin(name$$1, plugin);\n};\n\n/**\n * Gets an object containing multiple Video.js plugins.\n *\n * @param {Array} [names]\n * If provided, should be an array of plugin names. Defaults to _all_\n * plugin names.\n *\n * @return {Object|undefined}\n * An object containing plugin(s) associated with their name(s) or\n * `undefined` if no matching plugins exist).\n */\nvideojs.getPlugins = Plugin.getPlugins;\n\n/**\n * Gets a plugin by name if it exists.\n *\n * @param {string} name\n * The name of a plugin.\n *\n * @return {Function|undefined}\n * The plugin (or `undefined`).\n */\nvideojs.getPlugin = Plugin.getPlugin;\n\n/**\n * Gets a plugin's version, if available\n *\n * @param {string} name\n * The name of a plugin.\n *\n * @return {string}\n * The plugin's version or an empty string.\n */\nvideojs.getPluginVersion = Plugin.getPluginVersion;\n\n/**\n * Adding languages so that they're available to all players.\n * Example: `videojs.addLanguage('es', { 'Hello': 'Hola' });`\n *\n * @param {string} code\n * The language code or dictionary property\n *\n * @param {Object} data\n * The data values to be translated\n *\n * @return {Object}\n * The resulting language dictionary object\n */\nvideojs.addLanguage = function (code, data) {\n var _mergeOptions;\n\n code = ('' + code).toLowerCase();\n\n videojs.options.languages = mergeOptions(videojs.options.languages, (_mergeOptions = {}, _mergeOptions[code] = data, _mergeOptions));\n\n return videojs.options.languages[code];\n};\n\n/**\n * Log messages\n *\n * @borrows log:log as videojs.log\n */\nvideojs.log = log$1;\n\n/**\n * Creates an emulated TimeRange object.\n *\n * @borrows time-ranges:createTimeRanges as videojs.createTimeRange\n */\n/**\n * @borrows time-ranges:createTimeRanges as videojs.createTimeRanges\n */\nvideojs.createTimeRange = videojs.createTimeRanges = createTimeRanges;\n\n/**\n * Format seconds as a time string, H:MM:SS or M:SS\n * Supplying a guide (in seconds) will force a number of leading zeros\n * to cover the length of the guide\n *\n * @borrows format-time:formatTime as videojs.formatTime\n */\nvideojs.formatTime = formatTime;\n\n/**\n * Resolve and parse the elements of a URL\n *\n * @borrows url:parseUrl as videojs.parseUrl\n */\nvideojs.parseUrl = parseUrl;\n\n/**\n * Returns whether the url passed is a cross domain request or not.\n *\n * @borrows url:isCrossOrigin as videojs.isCrossOrigin\n */\nvideojs.isCrossOrigin = isCrossOrigin;\n\n/**\n * Event target class.\n *\n * @borrows EventTarget as videojs.EventTarget\n */\nvideojs.EventTarget = EventTarget;\n\n/**\n * Add an event listener to element\n * It stores the handler function in a separate cache object\n * and adds a generic handler to the element's event,\n * along with a unique id (guid) to the element.\n *\n * @borrows events:on as videojs.on\n */\nvideojs.on = on;\n\n/**\n * Trigger a listener only once for an event\n *\n * @borrows events:one as videojs.one\n */\nvideojs.one = one;\n\n/**\n * Removes event listeners from an element\n *\n * @borrows events:off as videojs.off\n */\nvideojs.off = off;\n\n/**\n * Trigger an event for an element\n *\n * @borrows events:trigger as videojs.trigger\n */\nvideojs.trigger = trigger;\n\n/**\n * A cross-browser XMLHttpRequest wrapper. Here's a simple example:\n *\n * @param {Object} options\n * settings for the request.\n *\n * @return {XMLHttpRequest|XDomainRequest}\n * The request object.\n *\n * @see https://github.com/Raynos/xhr\n */\nvideojs.xhr = xhr;\n\n/**\n * TextTrack class\n *\n * @borrows TextTrack as videojs.TextTrack\n */\nvideojs.TextTrack = TextTrack;\n\n/**\n * export the AudioTrack class so that source handlers can create\n * AudioTracks and then add them to the players AudioTrackList\n *\n * @borrows AudioTrack as videojs.AudioTrack\n */\nvideojs.AudioTrack = AudioTrack;\n\n/**\n * export the VideoTrack class so that source handlers can create\n * VideoTracks and then add them to the players VideoTrackList\n *\n * @borrows VideoTrack as videojs.VideoTrack\n */\nvideojs.VideoTrack = VideoTrack;\n\n/**\n * Determines, via duck typing, whether or not a value is a DOM element.\n *\n * @borrows dom:isEl as videojs.isEl\n * @deprecated Use videojs.dom.isEl() instead\n */\n\n/**\n * Determines, via duck typing, whether or not a value is a text node.\n *\n * @borrows dom:isTextNode as videojs.isTextNode\n * @deprecated Use videojs.dom.isTextNode() instead\n */\n\n/**\n * Creates an element and applies properties.\n *\n * @borrows dom:createEl as videojs.createEl\n * @deprecated Use videojs.dom.createEl() instead\n */\n\n/**\n * Check if an element has a CSS class\n *\n * @borrows dom:hasElClass as videojs.hasClass\n * @deprecated Use videojs.dom.hasClass() instead\n */\n\n/**\n * Add a CSS class name to an element\n *\n * @borrows dom:addElClass as videojs.addClass\n * @deprecated Use videojs.dom.addClass() instead\n */\n\n/**\n * Remove a CSS class name from an element\n *\n * @borrows dom:removeElClass as videojs.removeClass\n * @deprecated Use videojs.dom.removeClass() instead\n */\n\n/**\n * Adds or removes a CSS class name on an element depending on an optional\n * condition or the presence/absence of the class name.\n *\n * @borrows dom:toggleElClass as videojs.toggleClass\n * @deprecated Use videojs.dom.toggleClass() instead\n */\n\n/**\n * Apply attributes to an HTML element.\n *\n * @borrows dom:setElAttributes as videojs.setAttribute\n * @deprecated Use videojs.dom.setAttributes() instead\n */\n\n/**\n * Get an element's attribute values, as defined on the HTML tag\n * Attributes are not the same as properties. They're defined on the tag\n * or with setAttribute (which shouldn't be used with HTML)\n * This will return true or false for boolean attributes.\n *\n * @borrows dom:getElAttributes as videojs.getAttributes\n * @deprecated Use videojs.dom.getAttributes() instead\n */\n\n/**\n * Empties the contents of an element.\n *\n * @borrows dom:emptyEl as videojs.emptyEl\n * @deprecated Use videojs.dom.emptyEl() instead\n */\n\n/**\n * Normalizes and appends content to an element.\n *\n * The content for an element can be passed in multiple types and\n * combinations, whose behavior is as follows:\n *\n * - String\n * Normalized into a text node.\n *\n * - Element, TextNode\n * Passed through.\n *\n * - Array\n * A one-dimensional array of strings, elements, nodes, or functions (which\n * return single strings, elements, or nodes).\n *\n * - Function\n * If the sole argument, is expected to produce a string, element,\n * node, or array.\n *\n * @borrows dom:appendContents as videojs.appendContet\n * @deprecated Use videojs.dom.appendContent() instead\n */\n\n/**\n * Normalizes and inserts content into an element; this is identical to\n * `appendContent()`, except it empties the element first.\n *\n * The content for an element can be passed in multiple types and\n * combinations, whose behavior is as follows:\n *\n * - String\n * Normalized into a text node.\n *\n * - Element, TextNode\n * Passed through.\n *\n * - Array\n * A one-dimensional array of strings, elements, nodes, or functions (which\n * return single strings, elements, or nodes).\n *\n * - Function\n * If the sole argument, is expected to produce a string, element,\n * node, or array.\n *\n * @borrows dom:insertContent as videojs.insertContent\n * @deprecated Use videojs.dom.insertContent() instead\n */\n['isEl', 'isTextNode', 'createEl', 'hasClass', 'addClass', 'removeClass', 'toggleClass', 'setAttributes', 'getAttributes', 'emptyEl', 'appendContent', 'insertContent'].forEach(function (k) {\n videojs[k] = function () {\n log$1.warn('videojs.' + k + '() is deprecated; use videojs.dom.' + k + '() instead');\n return Dom[k].apply(null, arguments);\n };\n});\n\n/**\n * A safe getComputedStyle with an IE8 fallback.\n *\n * This is because in Firefox, if the player is loaded in an iframe with `display:none`,\n * then `getComputedStyle` returns `null`, so, we do a null-check to make sure\n * that the player doesn't break in these cases.\n * See https://bugzilla.mozilla.org/show_bug.cgi?id=548397 for more details.\n *\n * @borrows computed-style:computedStyle as videojs.computedStyle\n */\nvideojs.computedStyle = computedStyle;\n\n/**\n * Export the Dom utilities for use in external plugins\n * and Tech's\n */\nvideojs.dom = Dom;\n\n/**\n * Export the Url utilities for use in external plugins\n * and Tech's\n */\nvideojs.url = Url;\n\nreturn videojs;\n\n})));\n","title":"$:/plugins/TheDiveO/TwTube/libraries/video.js","type":"application/javascript","module-type":"library","created":"20140902114846490","creator":"TheDiveO","modified":"20140902114846490"},"$:/plugins/TheDiveO/TwTube/styles/videojs.css":{"text":"/* automatically included from npm package `video.js` */\r\n.video-js .vjs-big-play-button .vjs-icon-placeholder:before, .vjs-button > .vjs-icon-placeholder:before, .video-js .vjs-modal-dialog, .vjs-modal-dialog .vjs-modal-dialog-content {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%; }\n\n.video-js .vjs-big-play-button .vjs-icon-placeholder:before, .vjs-button > .vjs-icon-placeholder:before {\n text-align: center; }\n\n@font-face {\n font-family: VideoJS;\n src: url(\"font/VideoJS.eot?#iefix\") format(\"eot\"); }\n\n@font-face {\n font-family: VideoJS;\n src: url(data:application/font-woff;charset=utf-8;base64,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) format(\"woff\"), url(data:application/x-font-ttf;charset=utf-8;base64,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AG8AbgB0AGUAbABsAG8AIABwAHIAbwBqAGUAYwB0AC4AaAB0AHQAcAA6AC8ALwBmAG8AbgB0AGUAbABsAG8ALgBjAG8AbQAAAAIAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQECAQMBBAEFAQYBBwEIAQkBCgELAQwBDQEOAQ8BEAERARIBEwEUARUBFgEXARgBGQEaARsBHAEdAR4BHwEgASEBIgAEcGxheQtwbGF5LWNpcmNsZQVwYXVzZQt2b2x1bWUtbXV0ZQp2b2x1bWUtbG93CnZvbHVtZS1taWQLdm9sdW1lLWhpZ2gQZnVsbHNjcmVlbi1lbnRlcg9mdWxsc2NyZWVuLWV4aXQGc3F1YXJlB3NwaW5uZXIJc3VidGl0bGVzCGNhcHRpb25zCGNoYXB0ZXJzBXNoYXJlA2NvZwZjaXJjbGUOY2lyY2xlLW91dGxpbmUTY2lyY2xlLWlubmVyLWNpcmNsZQJoZAZjYW5jZWwGcmVwbGF5CGZhY2Vib29rBWdwbHVzCGxpbmtlZGluB3R3aXR0ZXIGdHVtYmxyCXBpbnRlcmVzdBFhdWRpby1kZXNjcmlwdGlvbgVhdWRpbwluZXh0LWl0ZW0NcHJldmlvdXMtaXRlbQAAAAA=) format(\"truetype\");\n font-weight: normal;\n font-style: normal; }\n\n.vjs-icon-play, .video-js .vjs-big-play-button .vjs-icon-placeholder:before, .video-js .vjs-play-control .vjs-icon-placeholder {\n font-family: VideoJS;\n font-weight: normal;\n font-style: normal; }\n .vjs-icon-play:before, .video-js .vjs-big-play-button .vjs-icon-placeholder:before, .video-js .vjs-play-control .vjs-icon-placeholder:before {\n content: \"\\f101\"; }\n\n.vjs-icon-play-circle {\n font-family: VideoJS;\n font-weight: normal;\n font-style: normal; }\n .vjs-icon-play-circle:before {\n content: \"\\f102\"; }\n\n.vjs-icon-pause, .video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder {\n font-family: VideoJS;\n font-weight: normal;\n font-style: normal; }\n .vjs-icon-pause:before, .video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder:before {\n content: \"\\f103\"; }\n\n.vjs-icon-volume-mute, .video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder {\n font-family: VideoJS;\n font-weight: normal;\n font-style: normal; }\n .vjs-icon-volume-mute:before, .video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder:before {\n content: \"\\f104\"; }\n\n.vjs-icon-volume-low, .video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder {\n font-family: VideoJS;\n font-weight: normal;\n font-style: normal; }\n .vjs-icon-volume-low:before, .video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder:before {\n content: \"\\f105\"; }\n\n.vjs-icon-volume-mid, .video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder {\n font-family: VideoJS;\n font-weight: normal;\n font-style: normal; }\n .vjs-icon-volume-mid:before, .video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder:before {\n content: \"\\f106\"; }\n\n.vjs-icon-volume-high, .video-js .vjs-mute-control .vjs-icon-placeholder {\n font-family: VideoJS;\n font-weight: normal;\n font-style: normal; }\n .vjs-icon-volume-high:before, .video-js .vjs-mute-control .vjs-icon-placeholder:before {\n content: \"\\f107\"; }\n\n.vjs-icon-fullscreen-enter, .video-js .vjs-fullscreen-control .vjs-icon-placeholder {\n font-family: VideoJS;\n font-weight: normal;\n font-style: normal; }\n .vjs-icon-fullscreen-enter:before, .video-js .vjs-fullscreen-control .vjs-icon-placeholder:before {\n content: \"\\f108\"; }\n\n.vjs-icon-fullscreen-exit, .video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder {\n font-family: VideoJS;\n font-weight: normal;\n font-style: normal; }\n .vjs-icon-fullscreen-exit:before, .video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder:before {\n content: \"\\f109\"; }\n\n.vjs-icon-square {\n font-family: VideoJS;\n font-weight: normal;\n font-style: normal; }\n .vjs-icon-square:before {\n content: \"\\f10a\"; }\n\n.vjs-icon-spinner {\n font-family: VideoJS;\n font-weight: normal;\n font-style: normal; }\n .vjs-icon-spinner:before {\n content: \"\\f10b\"; }\n\n.vjs-icon-subtitles, .video-js .vjs-subtitles-button .vjs-icon-placeholder, .video-js .vjs-subs-caps-button .vjs-icon-placeholder,\n.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder,\n.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder,\n.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder,\n.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder {\n font-family: VideoJS;\n font-weight: normal;\n font-style: normal; }\n .vjs-icon-subtitles:before, .video-js .vjs-subtitles-button .vjs-icon-placeholder:before, .video-js .vjs-subs-caps-button .vjs-icon-placeholder:before,\n .video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder:before,\n .video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder:before,\n .video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder:before,\n .video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder:before {\n content: \"\\f10c\"; }\n\n.vjs-icon-captions, .video-js .vjs-captions-button .vjs-icon-placeholder, .video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder,\n.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder {\n font-family: VideoJS;\n font-weight: normal;\n font-style: normal; }\n .vjs-icon-captions:before, .video-js .vjs-captions-button .vjs-icon-placeholder:before, .video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder:before,\n .video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder:before {\n content: \"\\f10d\"; }\n\n.vjs-icon-chapters, .video-js .vjs-chapters-button .vjs-icon-placeholder {\n font-family: VideoJS;\n font-weight: normal;\n font-style: normal; }\n .vjs-icon-chapters:before, .video-js .vjs-chapters-button .vjs-icon-placeholder:before {\n content: \"\\f10e\"; }\n\n.vjs-icon-share {\n font-family: VideoJS;\n font-weight: normal;\n font-style: normal; }\n .vjs-icon-share:before {\n content: \"\\f10f\"; }\n\n.vjs-icon-cog {\n font-family: VideoJS;\n font-weight: normal;\n font-style: normal; }\n .vjs-icon-cog:before {\n content: \"\\f110\"; }\n\n.vjs-icon-circle, .video-js .vjs-play-progress, .video-js .vjs-volume-level {\n font-family: VideoJS;\n font-weight: normal;\n font-style: normal; }\n .vjs-icon-circle:before, .video-js .vjs-play-progress:before, .video-js .vjs-volume-level:before {\n content: \"\\f111\"; }\n\n.vjs-icon-circle-outline {\n font-family: VideoJS;\n font-weight: normal;\n font-style: normal; }\n .vjs-icon-circle-outline:before {\n content: \"\\f112\"; }\n\n.vjs-icon-circle-inner-circle {\n font-family: VideoJS;\n font-weight: normal;\n font-style: normal; }\n .vjs-icon-circle-inner-circle:before {\n content: \"\\f113\"; }\n\n.vjs-icon-hd {\n font-family: VideoJS;\n font-weight: normal;\n font-style: normal; }\n .vjs-icon-hd:before {\n content: \"\\f114\"; }\n\n.vjs-icon-cancel, .video-js .vjs-control.vjs-close-button .vjs-icon-placeholder {\n font-family: VideoJS;\n font-weight: normal;\n font-style: normal; }\n .vjs-icon-cancel:before, .video-js .vjs-control.vjs-close-button .vjs-icon-placeholder:before {\n content: \"\\f115\"; }\n\n.vjs-icon-replay, .video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder {\n font-family: VideoJS;\n font-weight: normal;\n font-style: normal; }\n .vjs-icon-replay:before, .video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder:before {\n content: \"\\f116\"; }\n\n.vjs-icon-facebook {\n font-family: VideoJS;\n font-weight: normal;\n font-style: normal; }\n .vjs-icon-facebook:before {\n content: \"\\f117\"; }\n\n.vjs-icon-gplus {\n font-family: VideoJS;\n font-weight: normal;\n font-style: normal; }\n .vjs-icon-gplus:before {\n content: \"\\f118\"; }\n\n.vjs-icon-linkedin {\n font-family: VideoJS;\n font-weight: normal;\n font-style: normal; }\n .vjs-icon-linkedin:before {\n content: \"\\f119\"; }\n\n.vjs-icon-twitter {\n font-family: VideoJS;\n font-weight: normal;\n font-style: normal; }\n .vjs-icon-twitter:before {\n content: \"\\f11a\"; }\n\n.vjs-icon-tumblr {\n font-family: VideoJS;\n font-weight: normal;\n font-style: normal; }\n .vjs-icon-tumblr:before {\n content: \"\\f11b\"; }\n\n.vjs-icon-pinterest {\n font-family: VideoJS;\n font-weight: normal;\n font-style: normal; }\n .vjs-icon-pinterest:before {\n content: \"\\f11c\"; }\n\n.vjs-icon-audio-description, .video-js .vjs-descriptions-button .vjs-icon-placeholder {\n font-family: VideoJS;\n font-weight: normal;\n font-style: normal; }\n .vjs-icon-audio-description:before, .video-js .vjs-descriptions-button .vjs-icon-placeholder:before {\n content: \"\\f11d\"; }\n\n.vjs-icon-audio, .video-js .vjs-audio-button .vjs-icon-placeholder {\n font-family: VideoJS;\n font-weight: normal;\n font-style: normal; }\n .vjs-icon-audio:before, .video-js .vjs-audio-button .vjs-icon-placeholder:before {\n content: \"\\f11e\"; }\n\n.vjs-icon-next-item {\n font-family: VideoJS;\n font-weight: normal;\n font-style: normal; }\n .vjs-icon-next-item:before {\n content: \"\\f11f\"; }\n\n.vjs-icon-previous-item {\n font-family: VideoJS;\n font-weight: normal;\n font-style: normal; }\n .vjs-icon-previous-item:before {\n content: \"\\f120\"; }\n\n.video-js {\n display: block;\n vertical-align: top;\n box-sizing: border-box;\n color: #fff;\n background-color: #000;\n position: relative;\n padding: 0;\n font-size: 10px;\n line-height: 1;\n font-weight: normal;\n font-style: normal;\n font-family: Arial, Helvetica, sans-serif;\n word-break: initial; }\n .video-js:-moz-full-screen {\n position: absolute; }\n .video-js:-webkit-full-screen {\n width: 100% !important;\n height: 100% !important; }\n\n.video-js[tabindex=\"-1\"] {\n outline: none; }\n\n.video-js *,\n.video-js *:before,\n.video-js *:after {\n box-sizing: inherit; }\n\n.video-js ul {\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n list-style-position: outside;\n margin-left: 0;\n margin-right: 0;\n margin-top: 0;\n margin-bottom: 0; }\n\n.video-js.vjs-fluid,\n.video-js.vjs-16-9,\n.video-js.vjs-4-3 {\n width: 100%;\n max-width: 100%;\n height: 0; }\n\n.video-js.vjs-16-9 {\n padding-top: 56.25%; }\n\n.video-js.vjs-4-3 {\n padding-top: 75%; }\n\n.video-js.vjs-fill {\n width: 100%;\n height: 100%; }\n\n.video-js .vjs-tech {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%; }\n\nbody.vjs-full-window {\n padding: 0;\n margin: 0;\n height: 100%;\n overflow-y: auto; }\n\n.vjs-full-window .video-js.vjs-fullscreen {\n position: fixed;\n overflow: hidden;\n z-index: 1000;\n left: 0;\n top: 0;\n bottom: 0;\n right: 0; }\n\n.video-js.vjs-fullscreen {\n width: 100% !important;\n height: 100% !important;\n padding-top: 0 !important; }\n\n.video-js.vjs-fullscreen.vjs-user-inactive {\n cursor: none; }\n\n.vjs-hidden {\n display: none !important; }\n\n.vjs-disabled {\n opacity: 0.5;\n cursor: default; }\n\n.video-js .vjs-offscreen {\n height: 1px;\n left: -9999px;\n position: absolute;\n top: 0;\n width: 1px; }\n\n.vjs-lock-showing {\n display: block !important;\n opacity: 1;\n visibility: visible; }\n\n.vjs-no-js {\n padding: 20px;\n color: #fff;\n background-color: #000;\n font-size: 18px;\n font-family: Arial, Helvetica, sans-serif;\n text-align: center;\n width: 300px;\n height: 150px;\n margin: 0px auto; }\n\n.vjs-no-js a,\n.vjs-no-js a:visited {\n color: #66A8CC; }\n\n.video-js .vjs-big-play-button {\n font-size: 3em;\n line-height: 1.5em;\n height: 1.5em;\n width: 3em;\n display: block;\n position: absolute;\n top: 10px;\n left: 10px;\n padding: 0;\n cursor: pointer;\n opacity: 1;\n border: 0.06666em solid #fff;\n background-color: #2B333F;\n background-color: rgba(43, 51, 63, 0.7);\n -webkit-border-radius: 0.3em;\n -moz-border-radius: 0.3em;\n border-radius: 0.3em;\n -webkit-transition: all 0.4s;\n -moz-transition: all 0.4s;\n -ms-transition: all 0.4s;\n -o-transition: all 0.4s;\n transition: all 0.4s; }\n\n.vjs-big-play-centered .vjs-big-play-button {\n top: 50%;\n left: 50%;\n margin-top: -0.75em;\n margin-left: -1.5em; }\n\n.video-js:hover .vjs-big-play-button,\n.video-js .vjs-big-play-button:focus {\n border-color: #fff;\n background-color: #73859f;\n background-color: rgba(115, 133, 159, 0.5);\n -webkit-transition: all 0s;\n -moz-transition: all 0s;\n -ms-transition: all 0s;\n -o-transition: all 0s;\n transition: all 0s; }\n\n.vjs-controls-disabled .vjs-big-play-button,\n.vjs-has-started .vjs-big-play-button,\n.vjs-using-native-controls .vjs-big-play-button,\n.vjs-error .vjs-big-play-button {\n display: none; }\n\n.vjs-has-started.vjs-paused.vjs-show-big-play-button-on-pause .vjs-big-play-button {\n display: block; }\n\n.video-js button {\n background: none;\n border: none;\n color: inherit;\n display: inline-block;\n overflow: visible;\n font-size: inherit;\n line-height: inherit;\n text-transform: none;\n text-decoration: none;\n transition: none;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none; }\n\n.vjs-control .vjs-button {\n width: 100%;\n height: 100%; }\n\n.video-js .vjs-control.vjs-close-button {\n cursor: pointer;\n height: 3em;\n position: absolute;\n right: 0;\n top: 0.5em;\n z-index: 2; }\n\n.video-js .vjs-modal-dialog {\n background: rgba(0, 0, 0, 0.8);\n background: -webkit-linear-gradient(-90deg, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0));\n background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0));\n overflow: auto;\n box-sizing: content-box; }\n\n.video-js .vjs-modal-dialog > * {\n box-sizing: border-box; }\n\n.vjs-modal-dialog .vjs-modal-dialog-content {\n font-size: 1.2em;\n line-height: 1.5;\n padding: 20px 24px;\n z-index: 1; }\n\n.vjs-menu-button {\n cursor: pointer; }\n\n.vjs-menu-button.vjs-disabled {\n cursor: default; }\n\n.vjs-workinghover .vjs-menu-button.vjs-disabled:hover .vjs-menu {\n display: none; }\n\n.vjs-menu .vjs-menu-content {\n display: block;\n padding: 0;\n margin: 0;\n font-family: Arial, Helvetica, sans-serif;\n overflow: auto;\n box-sizing: content-box; }\n\n.vjs-menu .vjs-menu-content > * {\n box-sizing: border-box; }\n\n.vjs-scrubbing .vjs-menu-button:hover .vjs-menu {\n display: none; }\n\n.vjs-menu li {\n list-style: none;\n margin: 0;\n padding: 0.2em 0;\n line-height: 1.4em;\n font-size: 1.2em;\n text-align: center;\n text-transform: lowercase; }\n\n.vjs-menu li.vjs-menu-item:focus,\n.vjs-menu li.vjs-menu-item:hover {\n background-color: #73859f;\n background-color: rgba(115, 133, 159, 0.5); }\n\n.vjs-menu li.vjs-selected,\n.vjs-menu li.vjs-selected:focus,\n.vjs-menu li.vjs-selected:hover {\n background-color: #fff;\n color: #2B333F; }\n\n.vjs-menu li.vjs-menu-title {\n text-align: center;\n text-transform: uppercase;\n font-size: 1em;\n line-height: 2em;\n padding: 0;\n margin: 0 0 0.3em 0;\n font-weight: bold;\n cursor: default; }\n\n.vjs-menu-button-popup .vjs-menu {\n display: none;\n position: absolute;\n bottom: 0;\n width: 10em;\n left: -3em;\n height: 0em;\n margin-bottom: 1.5em;\n border-top-color: rgba(43, 51, 63, 0.7); }\n\n.vjs-menu-button-popup .vjs-menu .vjs-menu-content {\n background-color: #2B333F;\n background-color: rgba(43, 51, 63, 0.7);\n position: absolute;\n width: 100%;\n bottom: 1.5em;\n max-height: 15em; }\n\n.vjs-workinghover .vjs-menu-button-popup:hover .vjs-menu,\n.vjs-menu-button-popup .vjs-menu.vjs-lock-showing {\n display: block; }\n\n.video-js .vjs-menu-button-inline {\n -webkit-transition: all 0.4s;\n -moz-transition: all 0.4s;\n -ms-transition: all 0.4s;\n -o-transition: all 0.4s;\n transition: all 0.4s;\n overflow: hidden; }\n\n.video-js .vjs-menu-button-inline:before {\n width: 2.222222222em; }\n\n.video-js .vjs-menu-button-inline:hover,\n.video-js .vjs-menu-button-inline:focus,\n.video-js .vjs-menu-button-inline.vjs-slider-active,\n.video-js.vjs-no-flex .vjs-menu-button-inline {\n width: 12em; }\n\n.vjs-menu-button-inline .vjs-menu {\n opacity: 0;\n height: 100%;\n width: auto;\n position: absolute;\n left: 4em;\n top: 0;\n padding: 0;\n margin: 0;\n -webkit-transition: all 0.4s;\n -moz-transition: all 0.4s;\n -ms-transition: all 0.4s;\n -o-transition: all 0.4s;\n transition: all 0.4s; }\n\n.vjs-menu-button-inline:hover .vjs-menu,\n.vjs-menu-button-inline:focus .vjs-menu,\n.vjs-menu-button-inline.vjs-slider-active .vjs-menu {\n display: block;\n opacity: 1; }\n\n.vjs-no-flex .vjs-menu-button-inline .vjs-menu {\n display: block;\n opacity: 1;\n position: relative;\n width: auto; }\n\n.vjs-no-flex .vjs-menu-button-inline:hover .vjs-menu,\n.vjs-no-flex .vjs-menu-button-inline:focus .vjs-menu,\n.vjs-no-flex .vjs-menu-button-inline.vjs-slider-active .vjs-menu {\n width: auto; }\n\n.vjs-menu-button-inline .vjs-menu-content {\n width: auto;\n height: 100%;\n margin: 0;\n overflow: hidden; }\n\n.video-js .vjs-control-bar {\n display: none;\n width: 100%;\n position: absolute;\n bottom: 0;\n left: 0;\n right: 0;\n height: 3.0em;\n background-color: #2B333F;\n background-color: rgba(43, 51, 63, 0.7); }\n\n.vjs-has-started .vjs-control-bar {\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n visibility: visible;\n opacity: 1;\n -webkit-transition: visibility 0.1s, opacity 0.1s;\n -moz-transition: visibility 0.1s, opacity 0.1s;\n -ms-transition: visibility 0.1s, opacity 0.1s;\n -o-transition: visibility 0.1s, opacity 0.1s;\n transition: visibility 0.1s, opacity 0.1s; }\n\n.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {\n visibility: visible;\n opacity: 0;\n -webkit-transition: visibility 1s, opacity 1s;\n -moz-transition: visibility 1s, opacity 1s;\n -ms-transition: visibility 1s, opacity 1s;\n -o-transition: visibility 1s, opacity 1s;\n transition: visibility 1s, opacity 1s; }\n\n.vjs-controls-disabled .vjs-control-bar,\n.vjs-using-native-controls .vjs-control-bar,\n.vjs-error .vjs-control-bar {\n display: none !important; }\n\n.vjs-audio.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {\n opacity: 1;\n visibility: visible; }\n\n.vjs-has-started.vjs-no-flex .vjs-control-bar {\n display: table; }\n\n.video-js .vjs-control {\n position: relative;\n text-align: center;\n margin: 0;\n padding: 0;\n height: 100%;\n width: 4em;\n -webkit-box-flex: none;\n -moz-box-flex: none;\n -webkit-flex: none;\n -ms-flex: none;\n flex: none; }\n\n.vjs-button > .vjs-icon-placeholder:before {\n font-size: 1.8em;\n line-height: 1.67; }\n\n.video-js .vjs-control:focus:before,\n.video-js .vjs-control:hover:before,\n.video-js .vjs-control:focus {\n text-shadow: 0em 0em 1em white; }\n\n.video-js .vjs-control-text {\n border: 0;\n clip: rect(0 0 0 0);\n height: 1px;\n overflow: hidden;\n padding: 0;\n position: absolute;\n width: 1px; }\n\n.vjs-no-flex .vjs-control {\n display: table-cell;\n vertical-align: middle; }\n\n.video-js .vjs-custom-control-spacer {\n display: none; }\n\n.video-js .vjs-progress-control {\n cursor: pointer;\n -webkit-box-flex: auto;\n -moz-box-flex: auto;\n -webkit-flex: auto;\n -ms-flex: auto;\n flex: auto;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-align: center;\n -webkit-align-items: center;\n -ms-flex-align: center;\n align-items: center;\n min-width: 4em; }\n\n.video-js .vjs-progress-control.disabled {\n cursor: default; }\n\n.vjs-live .vjs-progress-control {\n display: none; }\n\n.vjs-no-flex .vjs-progress-control {\n width: auto; }\n\n.video-js .vjs-progress-holder {\n -webkit-box-flex: auto;\n -moz-box-flex: auto;\n -webkit-flex: auto;\n -ms-flex: auto;\n flex: auto;\n -webkit-transition: all 0.2s;\n -moz-transition: all 0.2s;\n -ms-transition: all 0.2s;\n -o-transition: all 0.2s;\n transition: all 0.2s;\n height: 0.3em; }\n\n.video-js .vjs-progress-control .vjs-progress-holder {\n margin: 0 10px; }\n\n.video-js .vjs-progress-control:hover .vjs-progress-holder {\n font-size: 1.666666666666666666em; }\n\n.video-js .vjs-progress-control:hover .vjs-progress-holder.disabled {\n font-size: 1em; }\n\n.video-js .vjs-progress-holder .vjs-play-progress,\n.video-js .vjs-progress-holder .vjs-load-progress,\n.video-js .vjs-progress-holder .vjs-load-progress div {\n position: absolute;\n display: block;\n height: 100%;\n margin: 0;\n padding: 0;\n width: 0;\n left: 0;\n top: 0; }\n\n.video-js .vjs-play-progress {\n background-color: #fff; }\n .video-js .vjs-play-progress:before {\n font-size: 0.9em;\n position: absolute;\n right: -0.5em;\n top: -0.333333333333333em;\n z-index: 1; }\n\n.video-js .vjs-load-progress {\n background: #bfc7d3;\n background: rgba(115, 133, 159, 0.5); }\n\n.video-js .vjs-load-progress div {\n background: white;\n background: rgba(115, 133, 159, 0.75); }\n\n.video-js .vjs-time-tooltip {\n background-color: #fff;\n background-color: rgba(255, 255, 255, 0.8);\n -webkit-border-radius: 0.3em;\n -moz-border-radius: 0.3em;\n border-radius: 0.3em;\n color: #000;\n float: right;\n font-family: Arial, Helvetica, sans-serif;\n font-size: 1em;\n padding: 6px 8px 8px 8px;\n pointer-events: none;\n position: relative;\n top: -3.4em;\n visibility: hidden;\n z-index: 1; }\n\n.video-js .vjs-progress-holder:focus .vjs-time-tooltip {\n display: none; }\n\n.video-js .vjs-progress-control:hover .vjs-time-tooltip,\n.video-js .vjs-progress-control:hover .vjs-progress-holder:focus .vjs-time-tooltip {\n display: block;\n font-size: 0.6em;\n visibility: visible; }\n\n.video-js .vjs-progress-control.disabled:hover .vjs-time-tooltip {\n font-size: 1em; }\n\n.video-js .vjs-progress-control .vjs-mouse-display {\n display: none;\n position: absolute;\n width: 1px;\n height: 100%;\n background-color: #000;\n z-index: 1; }\n\n.vjs-no-flex .vjs-progress-control .vjs-mouse-display {\n z-index: 0; }\n\n.video-js .vjs-progress-control:hover .vjs-mouse-display {\n display: block; }\n\n.video-js.vjs-user-inactive .vjs-progress-control .vjs-mouse-display {\n visibility: hidden;\n opacity: 0;\n -webkit-transition: visibility 1s, opacity 1s;\n -moz-transition: visibility 1s, opacity 1s;\n -ms-transition: visibility 1s, opacity 1s;\n -o-transition: visibility 1s, opacity 1s;\n transition: visibility 1s, opacity 1s; }\n\n.video-js.vjs-user-inactive.vjs-no-flex .vjs-progress-control .vjs-mouse-display {\n display: none; }\n\n.vjs-mouse-display .vjs-time-tooltip {\n color: #fff;\n background-color: #000;\n background-color: rgba(0, 0, 0, 0.8); }\n\n.video-js .vjs-slider {\n position: relative;\n cursor: pointer;\n padding: 0;\n margin: 0 0.45em 0 0.45em;\n /* iOS Safari */\n -webkit-touch-callout: none;\n /* Safari */\n -webkit-user-select: none;\n /* Konqueror HTML */\n -khtml-user-select: none;\n /* Firefox */\n -moz-user-select: none;\n /* Internet Explorer/Edge */\n -ms-user-select: none;\n /* Non-prefixed version, currently supported by Chrome and Opera */\n user-select: none;\n background-color: #73859f;\n background-color: rgba(115, 133, 159, 0.5); }\n\n.video-js .vjs-slider.disabled {\n cursor: default; }\n\n.video-js .vjs-slider:focus {\n text-shadow: 0em 0em 1em white;\n -webkit-box-shadow: 0 0 1em #fff;\n -moz-box-shadow: 0 0 1em #fff;\n box-shadow: 0 0 1em #fff; }\n\n.video-js .vjs-mute-control {\n cursor: pointer;\n -webkit-box-flex: none;\n -moz-box-flex: none;\n -webkit-flex: none;\n -ms-flex: none;\n flex: none;\n padding-left: 2em;\n padding-right: 2em;\n padding-bottom: 3em; }\n\n.video-js .vjs-volume-control {\n cursor: pointer;\n margin-right: 1em;\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex; }\n\n.video-js .vjs-volume-control.vjs-volume-horizontal {\n width: 5em; }\n\n.video-js .vjs-volume-panel .vjs-volume-control {\n visibility: visible;\n opacity: 0;\n width: 1px;\n height: 1px;\n margin-left: -1px; }\n\n.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical {\n -ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\"; }\n .vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical .vjs-volume-bar,\n .vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical .vjs-volume-level {\n -ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\"; }\n\n.video-js .vjs-volume-panel {\n -webkit-transition: width 1s;\n -moz-transition: width 1s;\n -ms-transition: width 1s;\n -o-transition: width 1s;\n transition: width 1s; }\n .video-js .vjs-volume-panel:hover .vjs-volume-control,\n .video-js .vjs-volume-panel:active .vjs-volume-control,\n .video-js .vjs-volume-panel:focus .vjs-volume-control,\n .video-js .vjs-volume-panel .vjs-volume-control:hover,\n .video-js .vjs-volume-panel .vjs-volume-control:active,\n .video-js .vjs-volume-panel .vjs-mute-control:hover ~ .vjs-volume-control,\n .video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active {\n visibility: visible;\n opacity: 1;\n position: relative;\n -webkit-transition: visibility 0.1s, opacity 0.1s, height 0.1s, width 0.1s, left 0s, top 0s;\n -moz-transition: visibility 0.1s, opacity 0.1s, height 0.1s, width 0.1s, left 0s, top 0s;\n -ms-transition: visibility 0.1s, opacity 0.1s, height 0.1s, width 0.1s, left 0s, top 0s;\n -o-transition: visibility 0.1s, opacity 0.1s, height 0.1s, width 0.1s, left 0s, top 0s;\n transition: visibility 0.1s, opacity 0.1s, height 0.1s, width 0.1s, left 0s, top 0s; }\n .video-js .vjs-volume-panel:hover .vjs-volume-control.vjs-volume-horizontal,\n .video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-horizontal,\n .video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-horizontal,\n .video-js .vjs-volume-panel .vjs-volume-control:hover.vjs-volume-horizontal,\n .video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-horizontal,\n .video-js .vjs-volume-panel .vjs-mute-control:hover ~ .vjs-volume-control.vjs-volume-horizontal,\n .video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-horizontal {\n width: 5em;\n height: 3em; }\n .video-js .vjs-volume-panel:hover .vjs-volume-control.vjs-volume-vertical,\n .video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-vertical,\n .video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-vertical,\n .video-js .vjs-volume-panel .vjs-volume-control:hover.vjs-volume-vertical,\n .video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-vertical,\n .video-js .vjs-volume-panel .vjs-mute-control:hover ~ .vjs-volume-control.vjs-volume-vertical,\n .video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-vertical {\n -ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\"; }\n .video-js .vjs-volume-panel:hover .vjs-volume-control.vjs-volume-vertical .vjs-volume-bar,\n .video-js .vjs-volume-panel:hover .vjs-volume-control.vjs-volume-vertical .vjs-volume-level,\n .video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-vertical .vjs-volume-bar,\n .video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-vertical .vjs-volume-level,\n .video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-vertical .vjs-volume-bar,\n .video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-vertical .vjs-volume-level,\n .video-js .vjs-volume-panel .vjs-volume-control:hover.vjs-volume-vertical .vjs-volume-bar,\n .video-js .vjs-volume-panel .vjs-volume-control:hover.vjs-volume-vertical .vjs-volume-level,\n .video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-vertical .vjs-volume-bar,\n .video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-vertical .vjs-volume-level,\n .video-js .vjs-volume-panel .vjs-mute-control:hover ~ .vjs-volume-control.vjs-volume-vertical .vjs-volume-bar,\n .video-js .vjs-volume-panel .vjs-mute-control:hover ~ .vjs-volume-control.vjs-volume-vertical .vjs-volume-level,\n .video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-vertical .vjs-volume-bar,\n .video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-vertical .vjs-volume-level {\n -ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\"; }\n .video-js .vjs-volume-panel.vjs-volume-panel-horizontal:hover, .video-js .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active {\n width: 9em;\n -webkit-transition: width 0.1s;\n -moz-transition: width 0.1s;\n -ms-transition: width 0.1s;\n -o-transition: width 0.1s;\n transition: width 0.1s; }\n\n.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical {\n height: 8em;\n width: 3em;\n left: -3.5em;\n -webkit-transition: visibility 1s, opacity 1s, height 1s 1s, width 1s 1s, left 1s 1s, top 1s 1s;\n -moz-transition: visibility 1s, opacity 1s, height 1s 1s, width 1s 1s, left 1s 1s, top 1s 1s;\n -ms-transition: visibility 1s, opacity 1s, height 1s 1s, width 1s 1s, left 1s 1s, top 1s 1s;\n -o-transition: visibility 1s, opacity 1s, height 1s 1s, width 1s 1s, left 1s 1s, top 1s 1s;\n transition: visibility 1s, opacity 1s, height 1s 1s, width 1s 1s, left 1s 1s, top 1s 1s; }\n\n.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal {\n -webkit-transition: visibility 1s, opacity 1s, height 1s 1s, width 1s, left 1s 1s, top 1s 1s;\n -moz-transition: visibility 1s, opacity 1s, height 1s 1s, width 1s, left 1s 1s, top 1s 1s;\n -ms-transition: visibility 1s, opacity 1s, height 1s 1s, width 1s, left 1s 1s, top 1s 1s;\n -o-transition: visibility 1s, opacity 1s, height 1s 1s, width 1s, left 1s 1s, top 1s 1s;\n transition: visibility 1s, opacity 1s, height 1s 1s, width 1s, left 1s 1s, top 1s 1s; }\n\n.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal {\n width: 5em;\n height: 3em;\n visibility: visible;\n opacity: 1;\n position: relative;\n -webkit-transition: none;\n -moz-transition: none;\n -ms-transition: none;\n -o-transition: none;\n transition: none; }\n\n.video-js.vjs-no-flex .vjs-volume-control.vjs-volume-vertical,\n.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical {\n position: absolute;\n bottom: 3em;\n left: 0.5em; }\n\n.video-js .vjs-volume-panel {\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex; }\n\n.video-js .vjs-volume-bar {\n margin: 1.35em 0.45em; }\n\n.vjs-volume-bar.vjs-slider-horizontal {\n width: 5em;\n height: 0.3em; }\n\n.vjs-volume-bar.vjs-slider-vertical {\n width: 0.3em;\n height: 5em;\n margin: 1.35em auto; }\n\n.video-js .vjs-volume-level {\n position: absolute;\n bottom: 0;\n left: 0;\n background-color: #fff; }\n .video-js .vjs-volume-level:before {\n position: absolute;\n font-size: 0.9em; }\n\n.vjs-slider-vertical .vjs-volume-level {\n width: 0.3em; }\n .vjs-slider-vertical .vjs-volume-level:before {\n top: -0.5em;\n left: -0.3em; }\n\n.vjs-slider-horizontal .vjs-volume-level {\n height: 0.3em; }\n .vjs-slider-horizontal .vjs-volume-level:before {\n top: -0.3em;\n right: -0.5em; }\n\n.video-js .vjs-volume-panel.vjs-volume-panel-vertical {\n width: 4em; }\n\n.vjs-volume-bar.vjs-slider-vertical .vjs-volume-level {\n height: 100%; }\n\n.vjs-volume-bar.vjs-slider-horizontal .vjs-volume-level {\n width: 100%; }\n\n.video-js .vjs-volume-vertical {\n width: 3em;\n height: 8em;\n bottom: 8em;\n background-color: #2B333F;\n background-color: rgba(43, 51, 63, 0.7); }\n\n.video-js .vjs-volume-horizontal .vjs-menu {\n left: -2em; }\n\n.vjs-poster {\n display: inline-block;\n vertical-align: middle;\n background-repeat: no-repeat;\n background-position: 50% 50%;\n background-size: contain;\n background-color: #000000;\n cursor: pointer;\n margin: 0;\n padding: 0;\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n height: 100%; }\n\n.vjs-poster img {\n display: block;\n vertical-align: middle;\n margin: 0 auto;\n max-height: 100%;\n padding: 0;\n width: 100%; }\n\n.vjs-has-started .vjs-poster {\n display: none; }\n\n.vjs-audio.vjs-has-started .vjs-poster {\n display: block; }\n\n.vjs-using-native-controls .vjs-poster {\n display: none; }\n\n.video-js .vjs-live-control {\n display: -webkit-box;\n display: -webkit-flex;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-align: flex-start;\n -webkit-align-items: flex-start;\n -ms-flex-align: flex-start;\n align-items: flex-start;\n -webkit-box-flex: auto;\n -moz-box-flex: auto;\n -webkit-flex: auto;\n -ms-flex: auto;\n flex: auto;\n font-size: 1em;\n line-height: 3em; }\n\n.vjs-no-flex .vjs-live-control {\n display: table-cell;\n width: auto;\n text-align: left; }\n\n.video-js .vjs-time-control {\n -webkit-box-flex: none;\n -moz-box-flex: none;\n -webkit-flex: none;\n -ms-flex: none;\n flex: none;\n font-size: 1em;\n line-height: 3em;\n min-width: 2em;\n width: auto;\n padding-left: 1em;\n padding-right: 1em; }\n\n.vjs-live .vjs-time-control {\n display: none; }\n\n.video-js .vjs-current-time,\n.vjs-no-flex .vjs-current-time {\n display: none; }\n\n.vjs-no-flex .vjs-remaining-time.vjs-time-control.vjs-control {\n width: 0px !important;\n white-space: nowrap; }\n\n.video-js .vjs-duration,\n.vjs-no-flex .vjs-duration {\n display: none; }\n\n.vjs-time-divider {\n display: none;\n line-height: 3em; }\n\n.vjs-live .vjs-time-divider {\n display: none; }\n\n.video-js .vjs-play-control .vjs-icon-placeholder {\n cursor: pointer;\n -webkit-box-flex: none;\n -moz-box-flex: none;\n -webkit-flex: none;\n -ms-flex: none;\n flex: none; }\n\n.vjs-text-track-display {\n position: absolute;\n bottom: 3em;\n left: 0;\n right: 0;\n top: 0;\n pointer-events: none; }\n\n.video-js.vjs-user-inactive.vjs-playing .vjs-text-track-display {\n bottom: 1em; }\n\n.video-js .vjs-text-track {\n font-size: 1.4em;\n text-align: center;\n margin-bottom: 0.1em;\n background-color: #000;\n background-color: rgba(0, 0, 0, 0.5); }\n\n.vjs-subtitles {\n color: #fff; }\n\n.vjs-captions {\n color: #fc6; }\n\n.vjs-tt-cue {\n display: block; }\n\nvideo::-webkit-media-text-track-display {\n -moz-transform: translateY(-3em);\n -ms-transform: translateY(-3em);\n -o-transform: translateY(-3em);\n -webkit-transform: translateY(-3em);\n transform: translateY(-3em); }\n\n.video-js.vjs-user-inactive.vjs-playing video::-webkit-media-text-track-display {\n -moz-transform: translateY(-1.5em);\n -ms-transform: translateY(-1.5em);\n -o-transform: translateY(-1.5em);\n -webkit-transform: translateY(-1.5em);\n transform: translateY(-1.5em); }\n\n.video-js .vjs-fullscreen-control {\n cursor: pointer;\n -webkit-box-flex: none;\n -moz-box-flex: none;\n -webkit-flex: none;\n -ms-flex: none;\n flex: none; }\n\n.vjs-playback-rate > .vjs-menu-button,\n.vjs-playback-rate .vjs-playback-rate-value {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%; }\n\n.vjs-playback-rate .vjs-playback-rate-value {\n pointer-events: none;\n font-size: 1.5em;\n line-height: 2;\n text-align: center; }\n\n.vjs-playback-rate .vjs-menu {\n width: 4em;\n left: 0em; }\n\n.vjs-error .vjs-error-display .vjs-modal-dialog-content {\n font-size: 1.4em;\n text-align: center; }\n\n.vjs-error .vjs-error-display:before {\n color: #fff;\n content: 'X';\n font-family: Arial, Helvetica, sans-serif;\n font-size: 4em;\n left: 0;\n line-height: 1;\n margin-top: -0.5em;\n position: absolute;\n text-shadow: 0.05em 0.05em 0.1em #000;\n text-align: center;\n top: 50%;\n vertical-align: middle;\n width: 100%; }\n\n.vjs-loading-spinner {\n display: none;\n position: absolute;\n top: 50%;\n left: 50%;\n margin: -25px 0 0 -25px;\n opacity: 0.85;\n text-align: left;\n border: 6px solid rgba(43, 51, 63, 0.7);\n box-sizing: border-box;\n background-clip: padding-box;\n width: 50px;\n height: 50px;\n border-radius: 25px;\n visibility: hidden; }\n\n.vjs-seeking .vjs-loading-spinner,\n.vjs-waiting .vjs-loading-spinner {\n display: block;\n animation: 0s linear 0.3s forwards vjs-spinner-show; }\n\n.vjs-loading-spinner:before,\n.vjs-loading-spinner:after {\n content: \"\";\n position: absolute;\n margin: -6px;\n box-sizing: inherit;\n width: inherit;\n height: inherit;\n border-radius: inherit;\n opacity: 1;\n border: inherit;\n border-color: transparent;\n border-top-color: white; }\n\n.vjs-seeking .vjs-loading-spinner:before,\n.vjs-seeking .vjs-loading-spinner:after,\n.vjs-waiting .vjs-loading-spinner:before,\n.vjs-waiting .vjs-loading-spinner:after {\n -webkit-animation: vjs-spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, vjs-spinner-fade 1.1s linear infinite;\n animation: vjs-spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, vjs-spinner-fade 1.1s linear infinite; }\n\n.vjs-seeking .vjs-loading-spinner:before,\n.vjs-waiting .vjs-loading-spinner:before {\n border-top-color: white; }\n\n.vjs-seeking .vjs-loading-spinner:after,\n.vjs-waiting .vjs-loading-spinner:after {\n border-top-color: white;\n -webkit-animation-delay: 0.44s;\n animation-delay: 0.44s; }\n\n@keyframes vjs-spinner-show {\n to {\n visibility: visible; } }\n\n@-webkit-keyframes vjs-spinner-show {\n to {\n visibility: visible; } }\n\n@keyframes vjs-spinner-spin {\n 100% {\n transform: rotate(360deg); } }\n\n@-webkit-keyframes vjs-spinner-spin {\n 100% {\n -webkit-transform: rotate(360deg); } }\n\n@keyframes vjs-spinner-fade {\n 0% {\n border-top-color: #73859f; }\n 20% {\n border-top-color: #73859f; }\n 35% {\n border-top-color: white; }\n 60% {\n border-top-color: #73859f; }\n 100% {\n border-top-color: #73859f; } }\n\n@-webkit-keyframes vjs-spinner-fade {\n 0% {\n border-top-color: #73859f; }\n 20% {\n border-top-color: #73859f; }\n 35% {\n border-top-color: white; }\n 60% {\n border-top-color: #73859f; }\n 100% {\n border-top-color: #73859f; } }\n\n.vjs-chapters-button .vjs-menu ul {\n width: 24em; }\n\n.video-js .vjs-subs-caps-button + .vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder {\n position: absolute; }\n\n.video-js .vjs-subs-caps-button + .vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {\n font-family: VideoJS;\n content: \"\\f10d\";\n font-size: 1.5em;\n line-height: inherit; }\n\n.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-custom-control-spacer {\n -webkit-box-flex: auto;\n -moz-box-flex: auto;\n -webkit-flex: auto;\n -ms-flex: auto;\n flex: auto; }\n\n.video-js.vjs-layout-tiny:not(.vjs-fullscreen).vjs-no-flex .vjs-custom-control-spacer {\n width: auto; }\n\n.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-current-time, .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-time-divider, .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-duration, .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-remaining-time,\n.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-playback-rate, .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-progress-control,\n.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-mute-control, .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-volume-control,\n.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-chapters-button, .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-descriptions-button, .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-captions-button,\n.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-subtitles-button, .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-audio-button {\n display: none; }\n\n.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-current-time, .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-time-divider, .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-duration, .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-remaining-time,\n.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-playback-rate,\n.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-mute-control, .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-volume-control,\n.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-chapters-button, .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-descriptions-button, .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-captions-button,\n.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-subtitles-button, .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-audio-button {\n display: none; }\n\n.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-current-time, .video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-time-divider, .video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-duration, .video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-remaining-time,\n.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-playback-rate,\n.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-mute-control, .video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-volume-control,\n.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-chapters-button, .video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-descriptions-button, .video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-captions-button,\n.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-subtitles-button .vjs-audio-button {\n display: none; }\n\n.vjs-modal-dialog.vjs-text-track-settings {\n background-color: #2B333F;\n background-color: rgba(43, 51, 63, 0.75);\n color: #fff;\n height: 70%; }\n\n.vjs-text-track-settings .vjs-modal-dialog-content {\n display: table; }\n\n.vjs-text-track-settings .vjs-track-settings-colors,\n.vjs-text-track-settings .vjs-track-settings-font,\n.vjs-text-track-settings .vjs-track-settings-controls {\n display: table-cell; }\n\n.vjs-text-track-settings .vjs-track-settings-controls {\n text-align: right;\n vertical-align: bottom; }\n\n.vjs-text-track-settings fieldset {\n margin: 5px;\n padding: 3px;\n border: none; }\n\n.vjs-text-track-settings fieldset span {\n display: inline-block;\n margin-left: 5px; }\n\n.vjs-text-track-settings legend {\n color: #fff;\n margin: 0 0 5px 0; }\n\n.vjs-text-track-settings .vjs-label {\n position: absolute;\n clip: rect(1px 1px 1px 1px);\n clip: rect(1px, 1px, 1px, 1px);\n display: block;\n margin: 0 0 5px 0;\n padding: 0;\n border: 0;\n height: 1px;\n width: 1px;\n overflow: hidden; }\n\n.vjs-track-settings-controls button:focus,\n.vjs-track-settings-controls button:active {\n outline-style: solid;\n outline-width: medium;\n background-image: linear-gradient(0deg, #fff 88%, #73859f 100%); }\n\n.vjs-track-settings-controls button:hover {\n color: rgba(43, 51, 63, 0.75); }\n\n.vjs-track-settings-controls button {\n background-color: #fff;\n background-image: linear-gradient(-180deg, #fff 88%, #73859f 100%);\n color: #2B333F;\n cursor: pointer;\n border-radius: 2px; }\n\n.vjs-track-settings-controls .vjs-default-button {\n margin-right: 1em; }\n\n@media print {\n .video-js > *:not(.vjs-tech):not(.vjs-poster) {\n visibility: hidden; } }\n\n.vjs-resize-manager {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n border: none;\n visibility: hidden; }\n\n@media \\0screen {\n .vjs-user-inactive.vjs-playing .vjs-control-bar :before {\n content: \"\";\n }\n}\n\n@media \\0screen {\n .vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {\n visibility: hidden;\n }\n}\n","type":"text/css","title":"$:/plugins/TheDiveO/TwTube/styles/videojs.css","created":"20140902114846490","creator":"TheDiveO","modified":"20140902114846490"},"$:/plugins/TheDiveO/TwTube/commands/mediaserver.js":{"title":"$:/plugins/TheDiveO/TwTube/commands/mediaserver.js","text":"/*\\\ntitle: $:/plugins/TheDiveO/TwTube/commands/mediaserver.js\ntype: application/javascript\nmodule-type: command\ncreated: 20140902114846490\ncreator: TheDiveO\nmodified: 20140902114846490\n\nServe tiddlers and additionally media(!) resources over HTTP.\nWhen serving media resources, both single requests (\"en bloc\")\nas well as range transfers are supported. Supported media types\nare currently those registered with the TW core.\n\nMedia can be served not only en bloc, but additionally HTTP ranges\nare supported. The only limitation is that only a single range\nper GET request is supported.\n\nOptional parameters:\n\n1. location of media files (and optionally URL path \"prefix\").\n For instance \"assets/media=media\". Defaults to \"media\".\n2. same as --server parameter.\n3. ...\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nif ($tw.node) {\n\tvar fs = require(\"fs\");\n\tvar url = require(\"url\");\n\tvar path = require(\"path\");\n\tvar serverCmd = require(\"$:/core/modules/commands/server.js\");\n}\n\nexports.info = {\n\tname: \"mediaserver\",\n\tsynchronous: true\n};\n\nvar SANITIZE_REGEX = /[|\\\\{}()[\\]^$+*?.]/g;\n\n// The --mediaserver command constructor. In our specific case,\n// we make use of JavaScript's object-based and prototype-based\n// language/runtime system: in order to inherit the base functionality\n// of the existing --server command, we create an instance of it\n// and then add in our additional stuff.\nvar Command = function(params, commander, callback) {\n\t// The first parameter of the --mediaserver command specifies\n\t// where to find the (subtree of) media files -- and optionally,\n\t// where the HTTP clients can address them in the URL namespace.\n\t// Format(s):\n\t// \"media\" ... media file location, = URL prefix\n\t// \"assets/media=video\" ... media files in assets/media, URL prefix /video\n\tvar mediaparam = (params[0] || \"media\").split(\"=\");\n\tvar mediapath = path.resolve(mediaparam[0]);\n\t$tw.utils.log(\"media path: \" + mediapath);\n\n\tvar urlprefix = mediaparam[1];\n\tif (urlprefix) {\n\t\t// URL prefix explicitly specified, so we use that. For convenience,\n\t\t// we accept relative prefixes which are then interpreted as relative\n\t\t// to the prefix \"/\".\n\t\turlprefix = decodeURI(url.resolve(\"/\", url.parse(urlprefix).pathname));\n\t} else {\n\t\t// no URL prefix specified, so let's use either a prefix relative\n\t\t// to the CWD or an absolute prefix in case the media files are\n\t\t// not inside the CWD or any subdir thereof.\n\t\turlprefix = mediapath;\n\t\tvar cwd = path.resolve();\n\t\tif (urlprefix.substr(0, cwd.length) == cwd) {\n\t\t\turlprefix = urlprefix.substr(cwd.length);\n\t\t}\n\t\t// Ensure that the URL prefix is absolutely absolute.\n\t\tif (urlprefix.substr(0, 1) !== \"/\") {\n\t\t\turlprefix = \"/\" + urlprefix;\n\t\t}\n\t}\n\t// Ensure that the URL prefix always end in a slash. This\n\t// simplifies processing later...\n\tif (urlprefix.substr(-1) != \"/\") {\n\t\turlprefix += \"/\";\n\t}\n\t$tw.utils.log(\"url prefix: \" + urlprefix);\n\t// Phew, the ugly preprocessing is finally done, now we can\n\t// do the heavy lifting ... or rather let the TW core server\n\t// command module do the work. :)\n\n\t// Construct an ordinary server command object which does the\n\t// heavy lifting, then add in our media handling. This way we\n\t// don't need to reinvent the wheel. Pass in the remaining\n\t// command parameters.\n\tvar svrcmd = new serverCmd.Command(params.slice(1), commander, callback);\n\n\t// Augment the command execution from the --server logic with\n\t// handling of media resources...\n\tsvrcmd.inheritedExecute = svrcmd.execute;\n\tsvrcmd.execute = function() {\n\t\t$tw.utils.log(\"Media serving from \" + mediapath\n\t\t + \" at URL path \" + urlprefix\n\t\t\t+ \" (regex: '\" + encodeURI(urlprefix).replace(SANITIZE_REGEX, \"\\\\$&\") + \"')\",\n\t\t\t\"brown/orange\");\n\t\treturn this.inheritedExecute();\n\t};\n\n\t// Add in a new media resources GET handling route that covers\n\t// the URL prefix namespace in requests. Media resource files\n\t// are then served from the local mediapath file space.\n\tsvrcmd.server.addRoute({\n\t\tmethod: \"GET\",\n\t\tpath: new RegExp(\"^\" + encodeURI(urlprefix).replace(SANITIZE_REGEX, \"\\\\$&\") + \"(.+)$\"),\n\t\thandler: function(request, response, state) {\n\t\t\t// Get the URL path and resource name, and make sure\n\t\t\t// that the client cannot play tricks on us by trying\n\t\t\t// to get outside the mediapath root using lots of\n\t\t\t// \"../\" path elements.\n\t\t\ttry {\n\t\t\t\tvar medrsc = mediapath\n\t\t\t\t\t+ decodeURI(url.parse(request.url).pathname)\n\t\t\t\t\t\t\t.substr(urlprefix.length-1);\n\t\t\t} catch (err) {\n\t\t\t\t$tw.utils.log(\"400 \" + request.url, \"brown/orange\");\n\t\t\t\tresponse.writeHead(400, {\n\t\t\t\t\t\"Content-Type\": \"text/plain\"\n\t\t\t\t});\n\t\t\t\tresponse.write(\"400 bad request\");\n\t\t\t\tresponse.end();\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Make sure that the requested media exists and that it actually\n\t\t\t// is a file. We need this in order to determine the size of\n\t\t\t// the media to serve.\n\t\t\tvar mediastat;\n\t\t\ttry {\n\t\t\t\tmediastat = fs.statSync(medrsc);\n\t\t\t} catch (err) {\n\t\t\t\t// NOP: leave mediastat undefined.\n\t\t\t}\n\t\t\tif (mediastat === undefined || !mediastat.isFile()) {\n\t\t\t\t$tw.utils.log(\"404 \" + request.url, \"brown/orange\");\n\t\t\t\tresponse.writeHead(404, {\n\t\t\t\t\t\"Content-Type\": \"text/plain\"\n\t\t\t\t});\n\t\t\t\tresponse.write(\"404 media resource not found\");\n\t\t\t\tresponse.end();\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tvar mediasize = mediastat.size;\n\n\t\t\t// Determine the media type from the media file extension.\n\t\t\tvar filetypeinfo = $tw.utils.getFileExtensionInfo(path.extname(medrsc));\n\t\t\tif (filetypeinfo === null) {\n\t\t\t\t$tw.utils.log(\"500 \" + request.url, \"red\");\n\t\t\t\tresponse.writeHead(500, {\n\t\t\t\t\t\"Content-Type\": \"text/plain\"\n\t\t\t\t});\n\t\t\t\tresponse.write(\"500 unknown media type\");\n\t\t\t\t$tw.utils.log(\"unknown media type for \" + med, \"red\");\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tvar mediatype = filetypeinfo.type;\n\n\t\t\tvar range = request.headers.range;\n\t\t\tif (range && range.length) {\n\t\t\t\t// an HTTP client requests only part of a media resource, so we\n\t\t\t\t// need to decode the requested range and then check if this\n\t\t\t\t// range is satisfiable. If yes, we respond with 206 partial\n\t\t\t\t// content, otherwise with 416 without content but the allowed\n\t\t\t\t// range.\n\t\t\t\t//\n\t\t\t\t// Ranges can be specified by clients as follows, see also\n\t\t\t\t// RFC 7233 for the gory details -- but note that we don't\n\t\t\t\t// support multiple ranges.\n\t\t\t\t//\n\t\t\t\t// (1) from-to ... range from-to (bytes) including,\n\t\t\t\t// (2) from- ... range from to end (bytes).\n\t\t\t\t// (3) -last ... range of only the last (bytes).\n\t\t\t\t//\n\t\t\t\t// In case a range is outside the resource limits, then\n\t\t\t\t// the server must respond with status 416.\n\t\t\t\tvar start = 1, end = 0;\n\t\t\t\tvar parts = range.replace(/bytes=/, \"\").split(\"-\");\n\t\t\t\tif (parts.length == 2) {\n\t\t\t\t\tif (parts[0].length && parts[1].length) {\n\t\t\t\t\t\t// case (1) from-to\n\t\t\t\t\t\tstart = parseInt(parts[0], 10);\n\t\t\t\t\t\tend = parseInt(parts[1], 10);\n\t\t\t\t\t} else if (parts[0].length && !parts[1].length) {\n\t\t\t\t\t\t// case (2) from-\n\t\t\t\t\t\tstart = parseInt(parts[0], 10);\n\t\t\t\t\t\tend = mediasize - 1;\n\t\t\t\t\t} else if (!parts[0].length && parts[1].length) {\n\t\t\t\t\t\t// case (3) -last\n\t\t\t\t\t\tend = mediasize - 1;\n\t\t\t\t\t\tstart = mediasize - parseInt(parts[1], 10);\n\t\t\t\t\t\tif (start < 0) { // see RFC 7233, 2.1\n\t\t\t\t\t\t\tstart = 0;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t// Now that we've decoded the range the HTTP client asks\n\t\t\t\t// for, let's see if it's satisfiable, then do a partial\n\t\t\t\t// transfer (206) of the media data; otherwise, inform the\n\t\t\t\t// HTTP client of the allowed range (416) for the media\n\t\t\t\t// resource, but don't send any media data.\n\t\t\t\tif (start > end || start >= mediasize || end >= mediasize) {\n\t\t\t\t\t// The range is not satisfiable, so it's time for a\n\t\t\t\t\t// status 416 response with the maximum allowed range.\n\t\t\t\t\t$tw.utils.log(\"416 */\" + mediasize + \" \" + request.url, \"brown/orange\");\n\t\t\t\t\tresponse.writeHead(416, {\n\t\t\t\t\t\t\"Accept-Ranges\": \"bytes\",\n\t\t\t\t\t\t\"Content-Range\": \"bytes */\" + mediasize,\n\t\t\t\t\t\t\"Content-Type\": \"text/plain\"\n\t\t\t\t\t});\n\t\t\t\t\tresponse.write(\"416 requested range not satisfiable\");\n\t\t\t\t\tresponse.end();\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\t$tw.utils.log(\"206 \" + start + \"-\" + end + \"/\" + mediasize + \" \" + request.url, \"green\");\n\t\t\t\tresponse.writeHead(206, {\n\t\t\t\t\t\"Accept-Ranges\": \"bytes\",\n\t\t\t\t\t\"Content-Range\": \"bytes \" + start + \"-\" + end + \"/\" + mediasize,\n\t\t\t\t\t\"Content-Length\": end - start + 1,\n\t\t\t\t\t\"Content-Type\": mediatype\n\t\t\t\t});\n\t\t\t\tfs.createReadStream(medrsc, {start: start, end: end}).pipe(response);\n\t\t\t} else {\n\t\t\t\t// an HTTP client requests a media resource en bloc, so we give\n\t\t\t\t// the response the media file stream to send back. Sweet and simple.\n\t\t\t\t// Nevertheless we indicate to the client that we would accept\n\t\t\t\t// ranges in GET requests to these media resources.\n\t\t\t\t$tw.utils.log(\"200 */\" + mediasize + \" \" + request.url, \"green\");\n\t\t\t\tresponse.writeHead(200, {\n\t\t\t\t\t\"Accept-Ranges\": \"bytes\",\n\t\t\t\t\t\"Content-Type\": mediatype,\n\t\t\t\t\t\"Content-Length\": mediasize\n\t\t\t\t});\n\t\t\t\tfs.createReadStream(medrsc).pipe(response);\n\t\t\t}\n\t\t}\n\t});\n\t// Done.\n\treturn svrcmd;\n};\n\n// Finally export our modified --mediaserver command constructor.\nexports.Command = Command;\n\n})();\n","type":"application/javascript","module-type":"command","created":"20140902114846490","creator":"TheDiveO","modified":"20140902114846490"},"$:/plugins/TheDiveO/TwTube/history":{"title":"$:/plugins/TheDiveO/TwTube/history","created":"20140902083720188","creator":"TheDiveO","modified":"20180405141940592","modifier":"TheDiveO","type":"text/vnd.tiddlywiki","text":"* ''1.0.9''\n** upgrades Video.js media player to 6.7.3, using the npm package `video.js`.\n\n* ''1.0.8''\n** publishes TwTube plugin as npm package `tw5-twtube`.\n** fixes spelinng.\n\n* ''1.0.7''\n** fixes media URL/path handling in media server.\n** fixes crash in parsing media alias `path=urlpath` parameter handling.\n\n* ''1.0.6''\n** adds media player skin selection to the [[control panel|$:/ControlPanel]]: see tab \"Media Player Skins\". The current selection is stored in [[$:/config/TwTube/skin]] and containes the title of the selected skin plugin, or [[$:/plugins/TheDiveO/TwTube]].\n\n* ''1.0.5''\n** adds support for Video.js plugins.\n** adds Video.js persistent volume plugin.\n** adds Video.js hotkeys plugin.\n** adds pseudo node main package, so you can run the development server also using `$ node ./twtube`.\n** fixes handling of media resources where their paths and/or filename contain URI encoded characters.\n\n* ''1.0.3''\n** adds new ~YouTube-inspired skin, generated with the [[Videojs Skin Generator|http://www.scriptsmashup.com/Video_Skin_Generator/Videojs/videojs-skin-generator.html]] and some tweaking.\n\n* ''1.0.2''\n** fixes `poster` attribute of `<$videjs>` widget to be overwritten with the value of the `preload` attribute.\n\n* ''1.0.0''\n** introduces `<$videojs>` [[Video.js player|https://videojs.com/]] widget to ~TiddlyWiki 5.\n** supports most of the attributes (parameters) the `<video>` and `<video-js>` elements have to offer.\n** an extensive list of supported widget attributes can be found in [[$:/plugins/TheDiveO/TwTube/usage]].\n** supports Video.js player skin plugins, when the default skin isn't enough:\n*** [[Sublime-inspired skin|$:/plugins/TheDiveO/SublimeInspiredVideojsSkin]]\n*** [[iPlayer-inspired skin|$:/plugins/TheDiveO/IPlayerInspiredVideojsSkin]]\n** supports multiple skin plugins installed side-by-side: enable only one skin plugin at a time to avoid funny skinning result.\n** adds media serving functionality to ~TiddlyWiki servers running on Node.js\n*** use the `--mediaserver media-path ...` command instead of `--server ...`.\n*** supports HTTP GET range requests for media resources.\n** supports npm scripts (on *nix only):\n*** `npm start` starts the ~TwTube development ~TiddlyWiki server at http://localhost:8080.\n*** `npm stop` stops the ~TwTube ~TiddlyWiki server.\n*** `npm run-script develop` runs the ~TwTube development ~TiddlyWiki server in the foreground.\n*** `npm run-script release` generates release files in `editions/release/output` of the project file tree.\n"},"$:/plugins/TheDiveO/TwTube/libraries/videojspluginloader.js":{"title":"$:/plugins/TheDiveO/TwTube/libraries/videojspluginloader.js","text":"/*\\\ncreated: 20140902083720188\ntype: application/javascript\ntitle: $:/plugins/TheDiveO/TwTube/libraries/videojspluginloader.js\nmodifier: TheDiveO\nmodified: 20180125125026949\ncreator: TheDiveO\nmodule-type: library\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n// Where the video.js (CommonJS) module is to be found in this plugin.\nvar TWTUBE_VIDEOJS = \"$:/plugins/TheDiveO/TwTube/libraries/video.js\";\n// Filter expression matching videojs plugin tiddlers.\nvar VIDEOJS_PLUGIN_FILTER =\n \"[\"\n + \"all[shadows+tiddlers]\"\n + \"type[application/javascript]\"\n + \"tag[$:/tags/VideojsPlugin]\"\n + \"]\";\n\n// Please note that we **CANNOT** run this module as a \"startup\" module,\n// due to some ugly race conditions with widget module initialization\n// due to the TiddlyWiki boot/core startup \"sequence\". While running\n// this via a development TiddlyWiki server works, it fails when running\n// an ordinary release TiddlyWiki. Thus, this Video.js plugin loader\n// needs to be pulled in only when the videojs widget module initializes.\n// Then we are first(!) pulling in the Video.js video player base module from\n// its library tiddler. Next, we load any Video.js framework plugins we\n// can find -- based on the special $:/tags/VideojsPlugin tag.\n// Oh, did I mention that we need to run through all these loops\n// only when we're running inside a browser?!\nexports.loadplugins = function TwTubeStartup() {\n if ($tw.browser) {\n // We *NEED* to get our Video.js library activated here, because\n // the videojs plugins rely on it being active by now. Albeit we\n // will later load the plugins as CommonJS modules, there might be\n // some that may choose to use the \"global\" videojs object reference\n // instead. Thus we simply pull in videojs now.\n var videojs = $tw.modules.execute(TWTUBE_VIDEOJS);\n\n // Prepare a template sandbox for loading video.js plugins; as\n // there may be multiple plugins we simply setup a clean context\n // once from which we later clone throw-away contexts just for\n // the purposes of video.js plugin activation.\n var sandbox = $tw.utils.extend({}, {\n console: console,\n setInterval: setInterval,\n clearInterval: clearInterval,\n setTimeout: setTimeout,\n clearTimeout: clearTimeout,\n exports: {},\n videojs: videojs,\n $tw: $tw\n });\n\n // A (rather short) list of global aliases required in order to\n // correctly resolve absolute require()s used in some plugins.\n var aliases = {\n \"video.js\": TWTUBE_VIDEOJS\n };\n\n // A special-purpose require() implementation (solely) for use in\n // videojs plugins: as the modules of such videojs plugins will often\n // be packaged in a TiddlyWiki plugin with their titles somewhere\n // inside the TiddylWiki system namespace ($:/), we need to play some\n // games with the module names to tiddler titles mapping.\n var pluginrequire = function(moduleTitle, contextTitle) {\n if ((moduleTitle.substr(0, 3) !== \"$:/\")\n && (moduleTitle.substr(0, 1) !== \".\")) {\n // So we got an absolute module title which wouldn't be usable\n // at all. So we first check with our (compact) list of known\n // aliases; if there's a match, then go for it!\n if (aliases[moduleTitle]) {\n return $tw.modules.execute(aliases[moduleTitle], \"\");\n }\n // It's none of the known aliases, thus we now try to resolve in\n // the context of the particular videojs plugin location (title).\n // This handles intra-plugin require()s which use absolute module\n // names where they should use relative ones instead. Sigh.\n try {\n var absmodtitle = contextTitle;\n if (absmodtitle.substr(-1) !== \"/\") {\n absmodtitle += \"/\";\n }\n absmodtitle += moduleTitle;\n console.log(\"local require:\", moduleTitle, \"in\", contextTitle);\n var mod = $tw.modules.execute(absmodtitle, \"\");\n return mod;\n } catch (e) {\n console.log(e);\n };\n }\n // If nothing works, desparately attempt to load the module with\n // the module name taken verbatim...\n console.log(\"global require:\", moduleTitle);\n return $tw.modules.execute(moduleTitle, \"\");\n };\n\n // Now load all video.js plugins we can find; these plugins need to be\n // tagged with $:/tags/VideojsPlugin and of type \"application/javascript\".\n // They should NOT have a \"module-type\" field set.\n var vjsplugins = $tw.wiki.filterTiddlers(VIDEOJS_PLUGIN_FILTER);\n $tw.utils.each(vjsplugins, function loadplugin(pluginTitle, index) {\n var vjsplugincode = $tw.wiki.getTiddlerText(pluginTitle, \"\");\n var pluginexports = {};\n var pluginsandbox = $tw.utils.extend({}, sandbox, {\n module: {exports: pluginexports},\n exports: pluginexports,\n });\n var lastslash = pluginTitle.lastIndexOf(\"/\");\n var pluginRoot = lastslash >= 0 ? pluginTitle.substr(0, lastslash-1) : \"\";\n pluginsandbox.require = function(moduleTitle) {\n return pluginrequire(moduleTitle, pluginRoot);\n };\n $tw.utils.evalSandboxed(vjsplugincode, pluginsandbox, pluginTitle);\n // TODO: keep exports?\n });\n\n } // if $tw.browser\n};\n\n})();\n","created":"20140902083720188","type":"application/javascript","modifier":"TheDiveO","modified":"20180125125026949","creator":"TheDiveO","module-type":"library"},"$:/plugins/TheDiveO/TwTube/license":{"title":"$:/plugins/TheDiveO/TwTube/license","created":"20140902084022063","creator":"TheDiveO","modified":"20180127151252098","modifier":"TheDiveO","type":"text/vnd.tiddlywiki","text":"The ''~TwTube'' plugin is covered by the following licenses:\n\n* The plugin itself (with the exceptions below) as well as the associated demo wiki is licensed under the [[MIT License|https://opensource.org/licenses/MIT]].\n* The Video.js player (and framework) is licensed under the [[Apache License 2.0|https://opensource.org/licenses/Apache-2.0]]. See also the GitHub [[videojs/video.js|https://github.com/videojs/video.js]] project page.\n* The persistent volume Video.js plugin is licensed under the [[MIT License|https://opensource.org/licenses/MIT]]."},"$:/plugins/TheDiveO/TwTube/readme":{"title":"$:/plugins/TheDiveO/TwTube/readme","created":"20140902083641711","creator":"TheDiveO","modified":"20180128161145144","modifier":"TheDiveO","type":"text/vnd.tiddlywiki","text":"! About\n\nThis ''~TwTube'' plugin provides a video player using the new `<$videojs>` widget. The video player uses the free and open source HTML5 [[Video.js|https://videojs.com/]] video player.\n\n! Installation\n\nSimply drag [[this TwTube plugin|$:/plugins/TheDiveO/TwTube]] into your own [[TiddlyWiki 5|https://tiddlywiki.com/]] wikis, save, reload, and start enjoying the `<$videojs>` widget.\n\n! Quickstart\n\nA video player widget is created using `<$videojs>`. You then specify the audio-video media to play inside the widget using ordinary HTML5 `source` elements. Such as:\n\n```\n<$videojs controls=\"controls\" fluid=\"fluid\">\n <source src=\"test.mp4\" type=\"video/mp4\">\n</$videojs>\n```\n\nFor more details, please refer to our comprehensive [[usage guide|$:/plugins/TheDiveO/TwTube/usage]].\n\n! Skins\n\nSimply install one or several of the ~TwTube Video.js Skin plugins to be able to switch media player skins. You can then select one of these skins, or the default skin, in the control panel: <$button>\n<$action-setfield $tiddler=\"$:/state/tab-1749438307\" text=\"$:/plugins/TheDiveO/TwTube/ui/ControlPanel/VideojsSkins\"/>\n<$action-navigate $to=\"$:/ControlPanel\"/>\nOpen Control Panel \"Media Player Skin\" tab\n</$button>\n\n! Player Plugins\n\nYou can also install Video.js extension plugins. The ~TwTube plugin already includes a persistent volume plugin that stores the player volume level and muting state in the browser storage."},"$:/plugins/TheDiveO/TwTube/styles/skin-styles-aggregator":{"title":"$:/plugins/TheDiveO/TwTube/styles/skin-styles-aggregator","created":"20180113191643863","modified":"20180128161252220","tags":"$:/tags/Stylesheet","type":"text/vnd.tiddlywiki","text":"<$set name=\"selected-skin-prefix\" filter=\"[title{$:/config/TwTube/skin}addsuffix[/]]\">\n<$list filter=\"$:/plugins/TheDiveO/TwTube/styles/videojs.css [all[shadows+tiddlers]prefix<selected-skin-prefix>tag[$:/tags/TwTubeVideojsSkin]!has[draft.of]]\">\n/* Skin CSS from <$view field=\"title\"/> */\n<$transclude/>\n</$list>\n</$set>"},"$:/plugins/TheDiveO/TwTube/ui/ControlPanel/VideojsSkins":{"title":"$:/plugins/TheDiveO/TwTube/ui/ControlPanel/VideojsSkins","caption":"Media Player Skins","created":"20180128151952619","modified":"20180128155435799","tags":"$:/tags/ControlPanel","type":"text/vnd.tiddlywiki","text":"Customize the visual appearance of the [[Visual.js|https://videojs.com]] media player using skins.\n\nVideo.js media player skin <$select tiddler=\"$:/config/TwTube/skin\" default=\"$:/plugins/TheDiveO/TwTube\">\n<$list filter=\"[all[tiddlers+shadow]tag[$:/tags/TwTubeVideojsSkinPlugin]sort[caption]]\">\n<option value=<<currentTiddler>> ><$view field=\"caption\"><$view field=\"description\"/></$view></option>\n</$list>\n</$select>"},"$:/plugins/TheDiveO/TwTube/usage":{"title":"$:/plugins/TheDiveO/TwTube/usage","created":"20180113181502426","modified":"20180128160857909","tags":"","type":"text/vnd.tiddlywiki","text":"! Usage\n\nA video player widget is created using `<$videojs>`. You then specify the audio-video media to play inside the widget using ordinary HTML5 `source` elements. Such as:\n\n```\n<$videojs controls=\"controls\" fluid=\"fluid\">\n <source src=\"test.mp4\" type=\"video/mp4\">\n</$videojs>\n```\n\n! Widget Attributes\n\nThe `<$videojs>` video player widget supports the following attributes:\n\n|!Attribute |!Description |\n|^`aspectratio` |The video player aspect ratio as two numbers separated by a colon, such as `\"16:9\"` or `\"4:3\"`. While the [[Video.js documentation states|http://docs.videojs.com/tutorial-options.html]] the aspect ratio additionally puts the player into \"fluid\" mode, this seems to be incorrect. You'll still need to also specify the `fluid` attribute if you want the player to scale to fit its container. |\n|^`autoplay` |When present and not empty the player automatically begins playback when it is ready. |\n|^`class` |The CSS class or classes for the video player. You don't need to specify `\"video-js\"` as it gets added automatically by the widget. |\n|^`controls` |When present and not empty the player shows controls the user can interact it. If this attribute is left out the only way to start the player is using the `autoplay` attribute. |\n|^`fluid` |When present and not empty the player will scale to fit its container. |\n|^`height` |Sets the height of the video player in pixels. See also the `fluid` attribute when responsive design is needed. |\n|^`language` |Sets the initial language of the player using a language code, such as `\"en\"`. If not specified, the language defaults to the web browser language setting, or -- as the last resort -- to `\"en\"`. |\n|^`loop` |When present and not empty the the video gets looped endless and endless and ... you get the drift. |\n|^`muted` |When present and not empty then audio is muted by default. The user then can unmute audio at any time. |\n|^`poster` |URL to an image that gets displayed before the video begins playing. |\n|^`preload` |Indicates to the web browser whether media data download should begin immediately or not. Possible values are `auto`, `metadata`, and `none`. `auto` selects immediate downloading, but only if the web browser supports this. `metadata` preloads only information like video frame dimensions and duration. `none` disables preloading and the player will download the media only after the user clicked the \"play\" button. |\n|^`pluginsdata` |Specifies plugin (configuration) data in form of a JSON string. For instance: <pre>pluginsdata='{\"persistvolume\": {\"namespace\": \"twtube\"}}'</pre> Alternatively, you can specify plugin configuration data in data tiddlers of type `application/json` and tagged with `$:/tags/VideojsPluginConfig`. |\n|^`width` |Sets the width of the video player in pixels. See also the `fluid` attribute when responsive design is needed. |\n\n! Widget Content\n\nThe content of the video player widget needs to be one or more media source declarations using the HTML5 `source` element. A typical example is:\n\n```\n<source src=\"glorous-blockbuster-XXII.mp4\" type=\"video/mp4\">\n```\n\nYou can specify multiple media sources for different media formats, so that browsers can pick the format they support or even like the best.\n\n! Widget CSS Classes\n\nThis is an imcomplete list of CSS classes to be used on your `<$videojs>` widgets you might find mildly useful:\n\n;`vjs-big-play-centered`\n: centers the play button over the video player widget instead of hiding it in its topleft corner. The rationale for defaulting to the topleft corner seems to be that then the button does not cover some interesting preload image details in the center.\n\n! Plugin Configuration Data\n\nThe Video.js player widget supports Video.js plugins. The player widget comes with one Video.js plugin out of the box: a plugin for making your player volume setting persistent. However, you need to activate Video.js plugins by specifying plugin configuration data. Otherwise, these Video.js plugins won't get activated. Configuration data can be specified either:\n\n* using the `pluginsdata=` attribute of a `<$videojs>` widget; this allows for an individual per-player configuration.\n\n* using Video.js plugin configuration data tiddlers, tagged with `$:/tags/VideojsPluginConfig` and of type `application/json`.\n\n! Persistent Volume Setting Plugin\n\nAs we deem the persistent volume setting plugin incredibly useful, it's enabled by default. The player's volume setting is stored in either your browser's persistent storage, or, if that isn't available, in a cookie.\n\nIn the default configuration, the `<$videojs>` widgets in ''all ~TiddlyWikis share the same volume setting''. If you change the player volume in one ~TiddlyWiki, the other ~TiddlyWikis will pick up this most recent volume setting automatically.\n\nIf you want instead //individual// player volume settings per ~TiddlyWiki, then overwrite the plugin tiddler [[$:/plugins/TheDiveO/TwTube/videojsplugins/videojs.persistvolume.config]] and specify a different namespace value for each of your ~TiddlyWikis.\n\n! Caveats\n\nDue to the way ~TiddlyWiki handles widget parameters, it is not enough to specify a \"boolean\" parameter in itself or with an empty `\"\"` value. Instead, you need to specify some non-empty value. The actual value is, erm, actually irrelevant, as long as it is not empty. For instance:\n\n```\n<$videojs controls=\"controls\"/>\n```\n\nEven if these parameters are (following the HTML5 standard) termed \"boolean\" values, you ''cannot'' specify a false value. Any value is taken as a truth value."},"$:/plugins/TheDiveO/TwTube/videojsplugins/videojs.persistvolume.config":{"title":"$:/plugins/TheDiveO/TwTube/videojsplugins/videojs.persistvolume.config","created":"20180126205823852","modified":"20180126210055994","tags":"$:/tags/VideojsPluginConfig","type":"application/json","text":"{\n \"persistvolume\": {\n \"namespace\": \"twtube\"\n }\n}"},"$:/plugins/TheDiveO/TwTube/videojsplugins/videojs.persistvolume.js":{"title":"$:/plugins/TheDiveO/TwTube/videojsplugins/videojs.persistvolume.js","text":"/*\\\ncreated: 20140902083720188\ntype: application/javascript\ntitle: $:/plugins/TheDiveO/TwTube/videojsplugins/videojs.persistvolume.js\nmodifier: TheDiveO\nmodified: 20180125125001394\ncreator: TheDiveO\ntags: $:/tags/VideojsPlugin\n\\*/\n\"use strict\";\n(function(factory){\n /*!\n * Custom Universal Module Definition (UMD)\n *\n * Video.js will never be a non-browser lib so we can simplify UMD a bunch and\n * still support requirejs and browserify. This also needs to be closure\n * compiler compatible, so string keys are used.\n */\n if (typeof define === 'function' && define['amd']) {\n define(['./video'], function(vjs){ factory(window, document, vjs) });\n // checking that module is an object too because of umdjs/umd#35\n } else if (typeof exports === 'object' && typeof module === 'object') {\n factory(window, document, require('video.js'));\n } else {\n factory(window, document, videojs);\n }\n\n})(function(window, document, vjs) {\n //cookie functions from https://developer.mozilla.org/en-US/docs/DOM/document.cookie\n var\n getCookieItem = function(sKey) {\n if (!sKey || !hasCookieItem(sKey)) { return null; }\n var reg_ex = new RegExp(\n \"(?:^|.*;\\\\s*)\" +\n window.escape(sKey).replace(/[\\-\\.\\+\\*]/g, \"\\\\$&\") +\n \"\\\\s*\\\\=\\\\s*((?:[^;](?!;))*[^;]?).*\"\n );\n return window.unescape(document.cookie.replace(reg_ex,\"$1\"));\n },\n\n setCookieItem = function(sKey, sValue, vEnd, sPath, sDomain, bSecure) {\n if (!sKey || /^(?:expires|max\\-age|path|domain|secure)$/i.test(sKey)) { return; }\n var sExpires = \"\";\n if (vEnd) {\n switch (vEnd.constructor) {\n case Number:\n sExpires = vEnd === Infinity ? \"; expires=Tue, 19 Jan 2038 03:14:07 GMT\" : \"; max-age=\" + vEnd;\n break;\n case String:\n sExpires = \"; expires=\" + vEnd;\n break;\n case Date:\n sExpires = \"; expires=\" + vEnd.toGMTString();\n break;\n }\n }\n document.cookie =\n window.escape(sKey) + \"=\" +\n window.escape(sValue) +\n sExpires +\n (sDomain ? \"; domain=\" + sDomain : \"\") +\n (sPath ? \"; path=\" + sPath : \"\") +\n (bSecure ? \"; secure\" : \"\");\n },\n\n hasCookieItem = function(sKey) {\n return (new RegExp(\n \"(?:^|;\\\\s*)\" +\n window.escape(sKey).replace(/[\\-\\.\\+\\*]/g, \"\\\\$&\") +\n \"\\\\s*\\\\=\")\n ).test(document.cookie);\n },\n\n hasLocalStorage = function() {\n try {\n window.localStorage.setItem('persistVolume', 'persistVolume');\n window.localStorage.removeItem('persistVolume');\n return true;\n } catch(e) {\n return false;\n }\n },\n getStorageItem = function(key) {\n return hasLocalStorage() ? window.localStorage.getItem(key) : getCookieItem(key);\n },\n setStorageItem = function(key, value) {\n return hasLocalStorage() ? window.localStorage.setItem(key, value) : setCookieItem(key, value, Infinity, '/');\n },\n\n extend = function(obj) {\n var arg, i, k;\n for (i = 1; i < arguments.length; i++) {\n arg = arguments[i];\n for (k in arg) {\n if (arg.hasOwnProperty(k)) {\n obj[k] = arg[k];\n }\n }\n }\n return obj;\n },\n\n defaults = {\n namespace: \"\"\n },\n\n volumePersister = function(options) {\n var player = this;\n var settings = extend({}, defaults, options || {});\n\n var key = settings.namespace + '-' + 'volume';\n var muteKey = settings.namespace + '-' + 'mute';\n\n player.on(\"volumechange\", function() {\n setStorageItem(key, player.volume());\n setStorageItem(muteKey, player.muted());\n });\n\n var persistedVolume = getStorageItem(key);\n if(persistedVolume !== null){\n player.volume(persistedVolume);\n }\n\n var persistedMute = getStorageItem(muteKey);\n if(persistedMute !== null){\n player.muted('true' === persistedMute);\n }\n };\n\n vjs.registerPlugin(\"persistvolume\", volumePersister);\n\n});\n","created":"20140902083720188","type":"application/javascript","modifier":"TheDiveO","modified":"20180125125001394","creator":"TheDiveO","tags":"$:/tags/VideojsPlugin"},"$:/plugins/TheDiveO/TwTube/videojsplugins/videojs.persistvolume.license":{"title":"$:/plugins/TheDiveO/TwTube/videojsplugins/videojs.persistvolume.license","created":"20180127151328027","modified":"20180127151505293","tags":"","type":"text/vnd.tiddlywiki","text":"Source: [[https://github.com/theonion/videojs-persistvolume/blob/master/LICENSE]]\n\n<hr/>\n\nThe MIT License (MIT)\n\nCopyright (c) {{{year}}} {{{fullname}}}\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE."},"$:/plugins/TheDiveO/TwTube/widgets/videojs.js":{"title":"$:/plugins/TheDiveO/TwTube/widgets/videojs.js","text":"/*\\\ncreated: 20180113145438225\ntitle: $:/plugins/TheDiveO/TwTube/widgets/videojs.js\ntags:\nmodified: 20180113150322040\ntype: application/javascript\nmodule-type: widget\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n//\nvar VIDEOJS_PLUGINCFG_FILTER =\n \"[\"\n + \"all[shadows+tiddlers]\"\n + \"tag[$:/tags/VideojsPluginConfig]\"\n + \"type[application/json]\"\n + \"]\";\n\n// Stuff we need...\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\n// Here be Dragons! During development we might be loaded and executed\n// not only in a web browser as usual, but also in Node.js. However,\n// the Video.js library won't work in Node.js -- for obvious reasons --\n// and crash. Thus, when we're run inside Node.js we need to avoid\n// doing anything with the Video.js library and thus just keep a\n// useless stub.\nvar videojs = null;\nif ($tw.browser) {\n // Even more dragons here: we need to lazy load the Video.js plugins.\n // That's not due to the Video.js but instead to startup issues with\n // the TiddlyWiki boot/core mechanics. To cut a long story short: we\n // simply load only when this widget module gets pulled in for the\n // first time. This seems to be safe, otherwise the plugin loader\n // might get run **after** this module initializes.\n require(\"$:/plugins/TheDiveO/TwTube/libraries/videojspluginloader.js\")\n .loadplugins();\n videojs = require(\"$:/plugins/TheDiveO/TwTube/libraries/video.js\");\n}\n\n// Widget constructor\nvar VideojsWidget = function(parseTreeNode, options) {\n this.initialise(parseTreeNode, options);\n};\n\n// Inherit from the base widget \"class\".\nVideojsWidget.prototype = new Widget();\n\n// Render widget into the DOM...\nVideojsWidget.prototype.render = function(parent, nextSibling) {\n this.parentDomNode = parent;\n this.computeAttributes();\n this.execute();\n // Create our DOM elements...\n this.shellDomNode = this.document.createElement(\"div\");\n this.shellDomNode.setAttribute(\"data-vjs-player\", \"\");\n this.videojsDomNode = this.document.createElement(\"video-js\");\n // General\n if (this.vidClass) {\n this.videojsDomNode.setAttribute(\"class\", \"video-js \" + this.vidClass);\n } else {\n this.videojsDomNode.setAttribute(\"class\", \"video-js\");\n }\n\n // Lump all the many video/video-js element attributes into\n // a JSON object and later hand that over in one go.\n var dataSetup = {};\n\n // Multikulti\n if (this.vidLanguage) {\n dataSetup[\"language\"] = this.vidLanguage;\n }\n // Geometry\n if (this.vidAspectRatio) {\n dataSetup[\"aspectratio\"] = this.vidAspectRatio;\n }\n if (this.vidFluid) {\n dataSetup[\"fluid\"] = this.vidFluid;\n }\n if (this.vidWidth) {\n dataSetup[\"width\"] = this.vidWidth;\n }\n if (this.vidHeight) {\n dataSetup[\"height\"] = this.vidHeight;\n }\n // Player control\n if (this.vidAutoplay) {\n dataSetup[\"autoplay\"] = this.vidAutoplay;\n }\n if (this.vidControls) {\n dataSetup[\"controls\"] = this.vidControls;\n }\n if (this.vidLoop) {\n dataSetup[\"loop\"] = this.vidLoop;\n }\n if (this.vidMuted) {\n dataSetup[\"muted\"] = this.vidMuted;\n }\n if (this.vidPreload) {\n dataSetup[\"preload\"] = this.vidPreload;\n }\n if (this.vidPoster) {\n dataSetup[\"poster\"] = this.vidPoster;\n }\n // Plugin configuration data\n // Step (1): fetch any plugin configuration data tiddlers that might\n // be present in this TiddlyWiki. Merge the configuration data from\n // all these configuration data tiddlers.\n var pluginsdata = {};\n var pluginsdatatiddlers = $tw.wiki.filterTiddlers(VIDEOJS_PLUGINCFG_FILTER);\n $tw.utils.each(pluginsdatatiddlers, function loadplugin(pluginDataTitle, index) {\n var data = $tw.wiki.getTiddlerDataCached(pluginDataTitle, {});\n $tw.utils.extend(pluginsdata, data);\n });\n // Step (2): merge in the configuration data from the pluginsdata=\n // attribute, if specified.\n try {\n $tw.utils.extend(pluginsdata, JSON.parse(this.vidPluginsData));\n } catch (e) {};\n dataSetup[\"plugins\"] = pluginsdata;\n\n // Finalize the setup parameters and then add our video element.\n this.videojsDomNode.setAttribute(\"data-setup\", JSON.stringify(dataSetup));\n this.shellDomNode.appendChild(this.videojsDomNode);\n // ...and insert them into the DOM.\n parent.insertBefore(this.shellDomNode, nextSibling);\n this.renderChildren(this.videojsDomNode, null);\n this.domNodes.push(this.shellDomNode);\n // Now let's do the Video.js library its magic...\n if (videojs !== null) {\n videojs(this.videojsDomNode);\n }\n};\n\n// Compute the internal state of the videojs widget. Also make\n// sure that all child widgets/elements get correctly created.\nVideojsWidget.prototype.execute = function() {\n // Get our parameters...\n // General\n this.vidClass = this.getAttribute(\"class\");\n // CSS classes: we take additional CSS class definitions from\n // skin plugins into account.\n var skinClasses = this.getVariable(\"twtube-skin-classes\");\n if (skinClasses !== undefined) {\n this.vidClass += \" \" + skinClasses;\n }\n // Multikulti\n this.vidLanguage = this.getAttribute(\"language\");\n //this.vidLanguages = this.getAttribute(\"languages\");\n // Geometry\n this.vidAspectRatio = this.getAttribute(\"aspectratio\");\n this.vidFluid = this.getAttribute(\"fluid\");\n this.vidWidth = this.getAttribute(\"width\");\n this.vidHeight = this.getAttribute(\"height\");\n // Player control\n this.vidAutoplay = this.getAttribute(\"autoplay\");\n this.vidControls = this.getAttribute(\"controls\");\n this.vidLoop = this.getAttribute(\"loop\");\n this.vidMuted = this.getAttribute(\"muted\");\n this.vidPreload = this.getAttribute(\"preload\");\n this.vidPoster = this.getAttribute(\"poster\");\n // (plugin) configuration mechanism\n this.vidPluginsData = this.getAttribute(\"pluginsdata\")\n // \"Don't forget about the Children!\"\n this.makeChildWidgets();\n};\n\n// Decide whether the video widget needs to be refreshed, either\n// because its own state changed or its children.\nVideojsWidget.prototype.refresh = function(changedTiddlers) {\n var changedAttributes = this.computeAttributes();\n if (\n changedAttributes[\"class\"]\n || changedAttributes[\"language\"]\n || changedAttributes[\"aspectratio\"]\n || changedAttributes[\"fluid\"]\n || changedAttributes.width\n || changedAttributes.height\n || changedAttributes[\"autoplay\"]\n || changedAttributes[\"controls\"]\n || changedAttributes[\"loop\"]\n || changedAttributes[\"muted\"]\n || changedAttributes[\"preload\"]\n || changedAttributes[\"poster\"]\n || changedAttributes[\"pluginsdata\"]\n ) {\n this.refreshSelf();\n return true;\n }\n return false;\n};\n\n// Finally export our Video.js player widget so that it can be\n// used as <$videojs />.\nexports.videojs = VideojsWidget;\n\n})();\n","created":"20180113145438225","tags":"","modified":"20180113150322040","type":"application/javascript","module-type":"widget"}}}
{"tiddlers":{"$:/plugins/TheDiveO/VideojsHotkeys/videojs.hotkeys.js":{"text":"/* automatically included from npm package `videojs-hotkeys` */\r\n/*\n * Video.js Hotkeys\n * https://github.com/ctd1500/videojs-hotkeys\n *\n * Copyright (c) 2015 Chris Dougherty\n * Licensed under the Apache-2.0 license.\n */\n\n;(function(root, factory) {\n if (typeof define === 'function' && define.amd) {\n define('videojs-hotkeys', ['video.js'], function (module) {\n return factory(module.default || module);\n });\n } else if (typeof module !== 'undefined' && module.exports) {\n module.exports = factory(require('video.js'));\n } else {\n factory(videojs);\n }\n}(this, function (videojs) {\n \"use strict\";\n if (typeof window !== 'undefined') {\n window['videojs_hotkeys'] = { version: \"0.2.21\" };\n }\n\n var hotkeys = function(options) {\n var player = this;\n var pEl = player.el();\n var doc = document;\n var def_options = {\n volumeStep: 0.1,\n seekStep: 5,\n enableMute: true,\n enableVolumeScroll: true,\n enableFullscreen: true,\n enableNumbers: true,\n enableJogStyle: false,\n alwaysCaptureHotkeys: false,\n enableModifiersForNumbers: true,\n enableInactiveFocus: true,\n skipInitialFocus: false,\n playPauseKey: playPauseKey,\n rewindKey: rewindKey,\n forwardKey: forwardKey,\n volumeUpKey: volumeUpKey,\n volumeDownKey: volumeDownKey,\n muteKey: muteKey,\n fullscreenKey: fullscreenKey,\n customKeys: {}\n };\n\n var cPlay = 1,\n cRewind = 2,\n cForward = 3,\n cVolumeUp = 4,\n cVolumeDown = 5,\n cMute = 6,\n cFullscreen = 7;\n\n // Use built-in merge function from Video.js v5.0+ or v4.4.0+\n var mergeOptions = videojs.mergeOptions || videojs.util.mergeOptions;\n options = mergeOptions(def_options, options || {});\n\n var volumeStep = options.volumeStep,\n seekStep = options.seekStep,\n enableMute = options.enableMute,\n enableVolumeScroll = options.enableVolumeScroll,\n enableFull = options.enableFullscreen,\n enableNumbers = options.enableNumbers,\n enableJogStyle = options.enableJogStyle,\n alwaysCaptureHotkeys = options.alwaysCaptureHotkeys,\n enableModifiersForNumbers = options.enableModifiersForNumbers,\n enableInactiveFocus = options.enableInactiveFocus,\n skipInitialFocus = options.skipInitialFocus;\n\n // Set default player tabindex to handle keydown and doubleclick events\n if (!pEl.hasAttribute('tabIndex')) {\n pEl.setAttribute('tabIndex', '-1');\n }\n\n // Remove player outline to fix video performance issue\n pEl.style.outline = \"none\";\n\n if (alwaysCaptureHotkeys || !player.autoplay()) {\n if (!skipInitialFocus) {\n player.one('play', function() {\n pEl.focus(); // Fixes the .vjs-big-play-button handing focus back to body instead of the player\n });\n }\n }\n\n if (enableInactiveFocus) {\n player.on('userinactive', function() {\n // When the control bar fades, re-apply focus to the player if last focus was a control button\n var cancelFocusingPlayer = function() {\n clearTimeout(focusingPlayerTimeout);\n };\n var focusingPlayerTimeout = setTimeout(function() {\n player.off('useractive', cancelFocusingPlayer);\n if (doc.activeElement.parentElement == pEl.querySelector('.vjs-control-bar')) {\n pEl.focus();\n }\n }, 10);\n\n player.one('useractive', cancelFocusingPlayer);\n });\n }\n\n player.on('play', function() {\n // Fix allowing the YouTube plugin to have hotkey support.\n var ifblocker = pEl.querySelector('.iframeblocker');\n if (ifblocker && ifblocker.style.display === '') {\n ifblocker.style.display = \"block\";\n ifblocker.style.bottom = \"39px\";\n }\n });\n\n var keyDown = function keyDown(event) {\n var ewhich = event.which, wasPlaying, seekTime;\n var ePreventDefault = event.preventDefault;\n var duration = player.duration();\n // When controls are disabled, hotkeys will be disabled as well\n if (player.controls()) {\n\n // Don't catch keys if any control buttons are focused, unless alwaysCaptureHotkeys is true\n var activeEl = doc.activeElement;\n if (alwaysCaptureHotkeys ||\n activeEl == pEl ||\n activeEl == pEl.querySelector('.vjs-tech') ||\n activeEl == pEl.querySelector('.vjs-control-bar') ||\n activeEl == pEl.querySelector('.iframeblocker')) {\n\n switch (checkKeys(event, player)) {\n // Spacebar toggles play/pause\n case cPlay:\n ePreventDefault();\n if (alwaysCaptureHotkeys) {\n // Prevent control activation with space\n event.stopPropagation();\n }\n\n if (player.paused()) {\n player.play();\n } else {\n player.pause();\n }\n break;\n\n // Seeking with the left/right arrow keys\n case cRewind: // Seek Backward\n wasPlaying = !player.paused();\n ePreventDefault();\n if (wasPlaying) {\n player.pause();\n }\n seekTime = player.currentTime() - seekStep;\n // The flash player tech will allow you to seek into negative\n // numbers and break the seekbar, so try to prevent that.\n if (player.currentTime() <= seekStep) {\n seekTime = 0;\n }\n player.currentTime(seekTime);\n if (wasPlaying) {\n player.play();\n }\n break;\n case cForward: // Seek Forward\n wasPlaying = !player.paused();\n ePreventDefault();\n if (wasPlaying) {\n player.pause();\n }\n seekTime = player.currentTime() + seekStep;\n // Fixes the player not sending the end event if you\n // try to seek past the duration on the seekbar.\n if (seekTime >= duration) {\n seekTime = wasPlaying ? duration - .001 : duration;\n }\n player.currentTime(seekTime);\n if (wasPlaying) {\n player.play();\n }\n break;\n\n // Volume control with the up/down arrow keys\n case cVolumeDown:\n ePreventDefault();\n if (!enableJogStyle) {\n player.volume(player.volume() - volumeStep);\n } else {\n seekTime = player.currentTime() - 1;\n if (player.currentTime() <= 1) {\n seekTime = 0;\n }\n player.currentTime(seekTime);\n }\n break;\n case cVolumeUp:\n ePreventDefault();\n if (!enableJogStyle) {\n player.volume(player.volume() + volumeStep);\n } else {\n seekTime = player.currentTime() + 1;\n if (seekTime >= duration) {\n seekTime = duration;\n }\n player.currentTime(seekTime);\n }\n break;\n\n // Toggle Mute with the M key\n case cMute:\n if (enableMute) {\n player.muted(!player.muted());\n }\n break;\n\n // Toggle Fullscreen with the F key\n case cFullscreen:\n if (enableFull) {\n if (player.isFullscreen()) {\n player.exitFullscreen();\n } else {\n player.requestFullscreen();\n }\n }\n break;\n\n default:\n // Number keys from 0-9 skip to a percentage of the video. 0 is 0% and 9 is 90%\n if ((ewhich > 47 && ewhich < 59) || (ewhich > 95 && ewhich < 106)) {\n // Do not handle if enableModifiersForNumbers set to false and keys are Ctrl, Cmd or Alt\n if (enableModifiersForNumbers || !(event.metaKey || event.ctrlKey || event.altKey)) {\n if (enableNumbers) {\n var sub = 48;\n if (ewhich > 95) {\n sub = 96;\n }\n var number = ewhich - sub;\n ePreventDefault();\n player.currentTime(player.duration() * number * 0.1);\n }\n }\n }\n\n // Handle any custom hotkeys\n for (var customKey in options.customKeys) {\n var customHotkey = options.customKeys[customKey];\n // Check for well formed custom keys\n if (customHotkey && customHotkey.key && customHotkey.handler) {\n // Check if the custom key's condition matches\n if (customHotkey.key(event)) {\n ePreventDefault();\n customHotkey.handler(player, options, event);\n }\n }\n }\n }\n }\n }\n };\n\n var doubleClick = function doubleClick(event) {\n // When controls are disabled, hotkeys will be disabled as well\n if (player.controls()) {\n\n // Don't catch clicks if any control buttons are focused\n var activeEl = event.relatedTarget || event.toElement || doc.activeElement;\n if (activeEl == pEl ||\n activeEl == pEl.querySelector('.vjs-tech') ||\n activeEl == pEl.querySelector('.iframeblocker')) {\n\n if (enableFull) {\n if (player.isFullscreen()) {\n player.exitFullscreen();\n } else {\n player.requestFullscreen();\n }\n }\n }\n }\n };\n\n var mouseScroll = function mouseScroll(event) {\n // When controls are disabled, hotkeys will be disabled as well\n if (player.controls()) {\n var activeEl = doc.activeElement;\n if (alwaysCaptureHotkeys ||\n activeEl == pEl ||\n activeEl == pEl.querySelector('.vjs-tech') ||\n activeEl == pEl.querySelector('.iframeblocker') ||\n activeEl == pEl.querySelector('.vjs-control-bar')) {\n\n if (enableVolumeScroll) {\n event = window.event || event;\n var delta = Math.max(-1, Math.min(1, (event.wheelDelta || -event.detail)));\n event.preventDefault();\n\n if (delta == 1) {\n player.volume(player.volume() + volumeStep);\n } else if (delta == -1) {\n player.volume(player.volume() - volumeStep);\n }\n }\n }\n }\n };\n\n var checkKeys = function checkKeys(e, player) {\n // Allow some modularity in defining custom hotkeys\n\n // Play/Pause check\n if (options.playPauseKey(e, player)) {\n return cPlay;\n }\n\n // Seek Backward check\n if (options.rewindKey(e, player)) {\n return cRewind;\n }\n\n // Seek Forward check\n if (options.forwardKey(e, player)) {\n return cForward;\n }\n\n // Volume Up check\n if (options.volumeUpKey(e, player)) {\n return cVolumeUp;\n }\n\n // Volume Down check\n if (options.volumeDownKey(e, player)) {\n return cVolumeDown;\n }\n\n // Mute check\n if (options.muteKey(e, player)) {\n return cMute;\n }\n\n // Fullscreen check\n if (options.fullscreenKey(e, player)) {\n return cFullscreen;\n }\n };\n\n function playPauseKey(e) {\n // Space bar or MediaPlayPause\n return (e.which === 32 || e.which === 179);\n }\n\n function rewindKey(e) {\n // Left Arrow or MediaRewind\n return (e.which === 37 || e.which === 177);\n }\n\n function forwardKey(e) {\n // Right Arrow or MediaForward\n return (e.which === 39 || e.which === 176);\n }\n\n function volumeUpKey(e) {\n // Up Arrow\n return (e.which === 38);\n }\n\n function volumeDownKey(e) {\n // Down Arrow\n return (e.which === 40);\n }\n\n function muteKey(e) {\n // M key\n return (e.which === 77);\n }\n\n function fullscreenKey(e) {\n // F key\n return (e.which === 70);\n }\n\n player.on('keydown', keyDown);\n player.on('dblclick', doubleClick);\n player.on('mousewheel', mouseScroll);\n player.on(\"DOMMouseScroll\", mouseScroll);\n\n return this;\n };\n\n var registerPlugin = videojs.registerPlugin || videojs.plugin;\n registerPlugin('hotkeys', hotkeys);\n}));\n","title":"$:/plugins/TheDiveO/VideojsHotkeys/videojs.hotkeys.js","type":"application/javascript","tags":"$:/tags/VideojsPlugin","created":"20140902114846490","creator":"TheDiveO","modified":"20140902114846490"},"$:/plugins/TheDiveO/VideojsHotkeys/history":{"title":"$:/plugins/TheDiveO/VideojsHotkeys/history","created":"20180127152008953","modified":"20180405141701908","tags":"","type":"text/vnd.tiddlywiki","text":"* ''1.0.1'' -- automatically uses npm package `videojs-hotkeys`.\n* ''1.0.0'' – first release of the Video.js Hotkeys Skin plugin."},"$:/plugins/TheDiveO/VideojsHotkeys/license":{"title":"$:/plugins/TheDiveO/VideojsHotkeys/license","created":"20180127151728845","modified":"20180127151932518","tags":"","type":"text/vnd.tiddlywiki","text":"* The Video.js Hotkeys Plugin ([[$:/plugins/TheDiveO/VideojsHotkeys/videojs.hotkeys.js]]) is licensed under the [[Apache License 2.0|https://opensource.org/licenses/Apache-2.0]].\n* This plugin is licensed under the [[MIT License|http://opensource.org/licenses/MIT]]."},"$:/plugins/TheDiveO/VideojsHotkeys/readme":{"title":"$:/plugins/TheDiveO/VideojsHotkeys/readme","created":"20180127151555515","modified":"20180127151709239","tags":"","type":"text/vnd.tiddlywiki","text":"Provides the [[Video.js Hotkeys Plugin|https://github.com/ctd1500/videojs-hotkeys]] (~GitHub) by [[ctd1500|https://github.com/ctd1500]] (~GitHub) for use with the [[TwTube plugin|https://github.com/TheDiveO/TwTube]] (//you guessed right// ... ~GitHub). Simply install this plugin into your ~TiddlyWiki alongside the ~TwTube plugin and you're done."},"$:/plugins/TheDiveO/VideojsHotkeys/videojs.persistvolume.config":{"title":"$:/plugins/TheDiveO/VideojsHotkeys/videojs.persistvolume.config","created":"20180126205823852","modified":"20180126210055994","tags":"$:/tags/VideojsPluginConfig","type":"application/json","text":"{\n \"hotkeys\": {\n \"alwaysCaptureHotkeys\": \"true\",\n \"seekStep\": \"15\"\n }\n}\n"}}}
{"tiddlers":{"$:/plugins/TheDiveO/YouTubeInspiredVideojsSkin/history":{"title":"$:/plugins/TheDiveO/YouTubeInspiredVideojsSkin/history","created":"20180114170309007","modified":"20180128162545795","tags":"","type":"text/vnd.tiddlywiki","text":"* ''1.0.1'' -- adds `caption` field to support new skin selection in the Control Panel tab \"Media Player Skins\".\n* ''1.0.0'' -- first release of the ~YouTube-inspired Video.js Skin plugin."},"$:/plugins/TheDiveO/YouTubeInspiredVideojsSkin/license":{"title":"$:/plugins/TheDiveO/YouTubeInspiredVideojsSkin/license","created":"20180114170300930","modified":"20180114211253792","tags":"","type":"text/vnd.tiddlywiki","text":"This plugin and its CSS stylesheet are licensed under the [[MIT License|http://opensource.org/licenses/MIT]].\n"},"$:/plugins/TheDiveO/YouTubeInspiredVideojsSkin/readme":{"title":"$:/plugins/TheDiveO/YouTubeInspiredVideojsSkin/readme","created":"20180114170253183","modified":"20180114211345389","tags":"","type":"text/vnd.tiddlywiki","text":"Provides an YouTube-inspired Video.js skin for use with the [[TwTube plugin|https://github.com/TheDiveO/TwTube]] created using the [[Videojs Skin Generator|http://www.scriptsmashup.com/Video_Skin_Generator/Videojs/videojs-skin-generator.html]]. Simply install this plugin into your ~TiddlyWiki alongside the ~TwTube plugin and you're done.\n"},"$:/plugins/TheDiveO/YouTubeInspiredVideojsSkin/styles/fixes.css":{"title":"$:/plugins/TheDiveO/YouTubeInspiredVideojsSkin/styles/fixes.css","created":"20180114182654131","modified":"20180114182731430","tags":"$:/tags/TwTubeVideojsSkin","type":"text/css","text":".video-js .vjs-time-control {\n padding-left: 0;\n padding-right: 0;\n}\n"},"$:/plugins/TheDiveO/YouTubeInspiredVideojsSkin/styles/skin.css":{"title":"$:/plugins/TheDiveO/YouTubeInspiredVideojsSkin/styles/skin.css","created":"20180114182654131","modified":"20180114182731430","tags":"$:/tags/TwTubeVideojsSkin","type":"text/css","text":".video-js .vjs-menu-button-inline.vjs-slider-active,.video-js .vjs-menu-button-inline:focus,.video-js .vjs-menu-button-inline:hover,.video-js.vjs-no-flex .vjs-menu-button-inline {\n width: 10em\n}\n\n.video-js .vjs-controls-disabled .vjs-big-play-button {\n display: none!important\n}\n\n.video-js .vjs-control {\n width: 3em\n}\n\n.video-js .vjs-menu-button-inline:before {\n width: 1.5em\n}\n\n.vjs-menu-button-inline .vjs-menu {\n left: 3em\n}\n\n.vjs-paused.vjs-has-started.video-js .vjs-big-play-button,.video-js.vjs-ended .vjs-big-play-button,.video-js.vjs-paused .vjs-big-play-button {\n display: block\n}\n\n.video-js .vjs-load-progress div,.vjs-seeking .vjs-big-play-button,.vjs-waiting .vjs-big-play-button {\n display: none!important\n}\n\n.video-js .vjs-mouse-display:after,.video-js .vjs-play-progress:after {\n padding: 0 .4em .3em\n}\n\n.video-js.vjs-ended .vjs-loading-spinner {\n display: none;\n}\n\n.video-js.vjs-ended .vjs-big-play-button {\n display: block !important;\n}\n\n.video-js *,.video-js:after,.video-js:before {\n box-sizing: inherit;\n font-size: inherit;\n color: inherit;\n line-height: inherit\n}\n\n.video-js.vjs-fullscreen,.video-js.vjs-fullscreen .vjs-tech {\n width: 100%!important;\n height: 100%!important\n}\n\n.video-js {\n font-size: 14px;\n overflow: hidden\n}\n\n.video-js .vjs-control {\n color: inherit\n}\n\n.video-js .vjs-menu-button-inline:hover,.video-js.vjs-no-flex .vjs-menu-button-inline {\n width: 8.35em\n}\n\n.video-js .vjs-volume-menu-button.vjs-volume-menu-button-horizontal:hover .vjs-menu .vjs-menu-content {\n height: 3em;\n width: 6.35em\n}\n\n.video-js .vjs-control:focus:before,.video-js .vjs-control:hover:before {\n text-shadow: 0 0 1em #fff,0 0 1em #fff,0 0 1em #fff\n}\n\n.video-js .vjs-spacer,.video-js .vjs-time-control {\n display: -webkit-box;\n display: -moz-box;\n display: -ms-flexbox;\n display: -webkit-flex;\n display: flex;\n -webkit-box-flex: 1 1 auto;\n -moz-box-flex: 1 1 auto;\n -webkit-flex: 1 1 auto;\n -ms-flex: 1 1 auto;\n flex: 1 1 auto\n}\n\n.video-js .vjs-time-control {\n -webkit-box-flex: 0 1 auto;\n -moz-box-flex: 0 1 auto;\n -webkit-flex: 0 1 auto;\n -ms-flex: 0 1 auto;\n flex: 0 1 auto;\n width: auto\n}\n\n.video-js .vjs-time-control.vjs-time-divider {\n width: 14px\n}\n\n.video-js .vjs-time-control.vjs-time-divider div {\n width: 100%;\n text-align: center\n}\n\n.video-js .vjs-time-control.vjs-current-time {\n margin-left: 1em\n}\n\n.video-js .vjs-time-control .vjs-current-time-display,.video-js .vjs-time-control .vjs-duration-display {\n width: 100%\n}\n\n.video-js .vjs-time-control .vjs-current-time-display {\n text-align: right\n}\n\n.video-js .vjs-time-control .vjs-duration-display {\n text-align: left\n}\n\n.video-js .vjs-play-progress:before,.video-js .vjs-progress-control .vjs-play-progress:before,.video-js .vjs-remaining-time,.video-js .vjs-volume-level:after,.video-js .vjs-volume-level:before,.video-js.vjs-live .vjs-time-control.vjs-current-time,.video-js.vjs-live .vjs-time-control.vjs-duration,.video-js.vjs-live .vjs-time-control.vjs-time-divider,.video-js.vjs-no-flex .vjs-time-control.vjs-remaining-time {\n display: none\n}\n\n.video-js.vjs-no-flex .vjs-time-control {\n display: table-cell;\n width: 4em\n}\n\n.video-js .vjs-progress-control {\n position: absolute;\n left: 0;\n right: 0;\n width: 100%;\n height: .5em;\n top: -.5em\n}\n\n.video-js .vjs-progress-control .vjs-load-progress,.video-js .vjs-progress-control .vjs-play-progress,.video-js .vjs-progress-control .vjs-progress-holder {\n height: 100%\n}\n\n.video-js .vjs-progress-control .vjs-progress-holder {\n margin: 0\n}\n\n.video-js .vjs-progress-control:hover {\n height: 1.5em;\n top: -1.5em\n}\n\n.video-js .vjs-control-bar {\n -webkit-transition: -webkit-transform .1s ease 0s;\n -moz-transition: -moz-transform .1s ease 0s;\n -ms-transition: -ms-transform .1s ease 0s;\n -o-transition: -o-transform .1s ease 0s;\n transition: transform .1s ease 0s\n}\n\n.video-js.not-hover.vjs-has-started.vjs-paused.vjs-user-active .vjs-control-bar,.video-js.not-hover.vjs-has-started.vjs-paused.vjs-user-inactive .vjs-control-bar,.video-js.not-hover.vjs-has-started.vjs-playing.vjs-user-active .vjs-control-bar,.video-js.not-hover.vjs-has-started.vjs-playing.vjs-user-inactive .vjs-control-bar,.video-js.vjs-has-started.vjs-playing.vjs-user-inactive .vjs-control-bar {\n visibility: visible;\n opacity: 1;\n -webkit-backface-visibility: hidden;\n -webkit-transform: translateY(3em);\n -moz-transform: translateY(3em);\n -ms-transform: translateY(3em);\n -o-transform: translateY(3em);\n transform: translateY(3em);\n -webkit-transition: -webkit-transform 1s ease 0s;\n -moz-transition: -moz-transform 1s ease 0s;\n -ms-transition: -ms-transform 1s ease 0s;\n -o-transition: -o-transform 1s ease 0s;\n transition: transform 1s ease 0s\n}\n\n.video-js.not-hover.vjs-has-started.vjs-paused.vjs-user-active .vjs-progress-control,.video-js.not-hover.vjs-has-started.vjs-paused.vjs-user-inactive .vjs-progress-control,.video-js.not-hover.vjs-has-started.vjs-playing.vjs-user-active .vjs-progress-control,.video-js.not-hover.vjs-has-started.vjs-playing.vjs-user-inactive .vjs-progress-control,.video-js.vjs-has-started.vjs-playing.vjs-user-inactive .vjs-progress-control {\n height: .25em;\n top: -.25em;\n pointer-events: none;\n -webkit-transition: height 1s,top 1s;\n -moz-transition: height 1s,top 1s;\n -ms-transition: height 1s,top 1s;\n -o-transition: height 1s,top 1s;\n transition: height 1s,top 1s\n}\n\n.video-js.not-hover.vjs-has-started.vjs-paused.vjs-user-active.vjs-fullscreen .vjs-progress-control,.video-js.not-hover.vjs-has-started.vjs-paused.vjs-user-inactive.vjs-fullscreen .vjs-progress-control,.video-js.not-hover.vjs-has-started.vjs-playing.vjs-user-active.vjs-fullscreen .vjs-progress-control,.video-js.not-hover.vjs-has-started.vjs-playing.vjs-user-inactive.vjs-fullscreen .vjs-progress-control,.video-js.vjs-has-started.vjs-playing.vjs-user-inactive.vjs-fullscreen .vjs-progress-control {\n opacity: 0;\n -webkit-transition: opacity 1s ease 1s;\n -moz-transition: opacity 1s ease 1s;\n -ms-transition: opacity 1s ease 1s;\n -o-transition: opacity 1s ease 1s;\n transition: opacity 1s ease 1s\n}\n\n.video-js.vjs-live .vjs-live-control {\n margin-left: 1em\n}\n\n.video-js .vjs-big-play-button {\n top: 50%;\n left: 50%;\n margin-left: -1em;\n margin-top: -1em;\n width: 2em;\n height: 2em;\n line-height: 2em;\n border: none;\n border-radius: 50%;\n font-size: 3.5em;\n background-color: rgba(0,0,0,.45);\n color: #fff;\n -webkit-transition: border-color .4s,outline .4s,background-color .4s;\n -moz-transition: border-color .4s,outline .4s,background-color .4s;\n -ms-transition: border-color .4s,outline .4s,background-color .4s;\n -o-transition: border-color .4s,outline .4s,background-color .4s;\n transition: border-color .4s,outline .4s,background-color .4s\n}\n\n.video-js .vjs-menu-button-popup .vjs-menu {\n left: -3em\n}\n\n.video-js .vjs-menu-button-popup .vjs-menu .vjs-menu-content {\n background-color: transparent;\n width: 12em;\n left: -1.5em;\n padding-bottom: .5em\n}\n\n.video-js .vjs-menu-button-popup .vjs-menu .vjs-menu-item,.video-js .vjs-menu-button-popup .vjs-menu .vjs-menu-title {\n background-color: #151b17;\n margin: .3em 0;\n padding: .5em;\n border-radius: .3em\n}\n\n.video-js .vjs-menu-button-popup .vjs-menu .vjs-menu-item.vjs-selected {\n background-color: #2483d5\n}\n\n.video-js .vjs-big-play-button {\n background-color: rgba(0,0,0,0.5);\n font-size: 3.5em;\n border-radius: 20%;\n height: 1.4em !important;\n line-height: 1.4em !important;\n margin-top: -0.7em !important\n}\n\n.video-js:hover .vjs-big-play-button,.video-js .vjs-big-play-button:focus,.video-js .vjs-big-play-button:active {\n background-color: #cc181e\n}\n\n.video-js .vjs-loading-spinner {\n border-color: #cc181e\n}\n\n.video-js .vjs-control-bar2 {\n background-color: #000000\n}\n\n.video-js .vjs-control-bar {\n background-color: rgba(0,0,0,0.3) !important;\n color: #ffffff;\n font-size: 18px\n}\n\n.video-js .vjs-play-progress,.video-js .vjs-volume-level {\n background-color: #cc181e\n}\n\n.video-js .vjs-load-progress {\n background: rgba(255,255,255,0.3);\n}\n"}}}
{
"tiddlers": {
"$:/plugins/tiddlywiki/blog/docs": {
"title": "$:/plugins/tiddlywiki/blog/docs",
"text": "Until there's more documentation, see an example of the use of this plugin here:\n\n* Blog: http://jermolene-blog.github.io/\n* Repository: https://github.com/Jermolene-blog/blog\n"
},
"$:/plugins/tiddlywiki/blog/readme": {
"title": "$:/plugins/tiddlywiki/blog/readme",
"text": "This plugin contains tools to help publish blogs:\n\n* Templates and tools for building static HTML pages and posts\n"
},
"$:/plugins/tiddlywiki/blog/templates/html-page/page": {
"title": "$:/plugins/tiddlywiki/blog/templates/html-page/page",
"text": "\\define tv-wikilink-template() posts/$uri_doubleencoded$.html\n\\define tv-config-toolbar-icons() no\n\\define tv-config-toolbar-text() no\n\\define tv-config-toolbar-class() tc-btn-invisible\n`<!doctype html>\n<html>\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\" />\n<meta name=\"generator\" content=\"TiddlyWiki\" />\n<meta name=\"tiddlywiki-version\" content=\"`{{$:/core/templates/version}}`\" />\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\n<meta name=\"apple-mobile-web-app-capable\" content=\"yes\" />\n<meta name=\"apple-mobile-web-app-status-bar-style\" content=\"black-translucent\" />\n<meta name=\"mobile-web-app-capable\" content=\"yes\"/>\n<meta name=\"format-detection\" content=\"telephone=no\">\n<link id=\"faviconLink\" rel=\"shortcut icon\" href=\"favicon.ico\">\n<link rel=\"stylesheet\" href=\"static.css\">\n<title>`<$transclude field=\"caption\"><$view field=\"title\"/></$transclude>: {{$:/core/wiki/title}}`</title>\n</head>\n<body class=\"tc-body\">\n`{{$:/StaticBanner||$:/core/templates/html-tiddler}}`\n<section class=\"tc-story-river\">\n`<$importvariables filter=\"[[$:/core/ui/PageMacros]] [all[shadows+tiddlers]tag[$:/tags/Macro]!has[draft.of]]\">\n<$view tiddler=\"$:/plugins/tiddlywiki/blog/templates/tiddler\" format=\"htmlwikified\"/>\n</$importvariables>`\n</section>\n</body>\n</html>\n`\n"
},
"$:/plugins/tiddlywiki/blog/templates/html-page/post": {
"title": "$:/plugins/tiddlywiki/blog/templates/html-page/post",
"text": "\\define tv-wikilink-template() /$uri_doubleencoded$.html\n\\define tv-config-toolbar-icons() no\n\\define tv-config-toolbar-text() no\n\\define tv-config-toolbar-class() tc-btn-invisible\n`<!doctype html>\n<html>\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\" />\n<meta name=\"generator\" content=\"TiddlyWiki\" />\n<meta name=\"tiddlywiki-version\" content=\"`{{$:/core/templates/version}}`\" />\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\n<meta name=\"apple-mobile-web-app-capable\" content=\"yes\" />\n<meta name=\"apple-mobile-web-app-status-bar-style\" content=\"black-translucent\" />\n<meta name=\"mobile-web-app-capable\" content=\"yes\"/>\n<meta name=\"format-detection\" content=\"telephone=no\">\n<link id=\"faviconLink\" rel=\"shortcut icon\" href=\"../favicon.ico\">\n<link rel=\"stylesheet\" href=\"../static.css\">\n<title>`<$transclude field=\"caption\"><$view field=\"title\"/></$transclude>: {{$:/core/wiki/title}}`</title>\n</head>\n<body class=\"tc-body\">\n`{{$:/StaticBanner||$:/core/templates/html-tiddler}}`\n<section class=\"tc-story-river\">\n`<$importvariables filter=\"[[$:/core/ui/PageMacros]] [all[shadows+tiddlers]tag[$:/tags/Macro]!has[draft.of]]\">\n<$view tiddler=\"$:/plugins/tiddlywiki/blog/templates/tiddler\" format=\"htmlwikified\"/>\n<$view tiddler=\"$:/plugins/tiddlywiki/blog/templates/menu\" format=\"htmlwikified\"/>\n</$importvariables>`\n</section>\n</body>\n</html>\n`\n"
},
"$:/plugins/tiddlywiki/blog/templates/menu": {
"title": "$:/plugins/tiddlywiki/blog/templates/menu",
"text": "<div class=\"tc-blog-menu\">\n\n<div class=\"tc-blog-menu-item\">\n\n<a href=\"../index.html\">\n\n{{$:/core/images/home-button}}\n\n</a>\n\n</div>\n\n</div>\n"
},
"$:/plugins/tiddlywiki/blog/templates/tiddler": {
"title": "$:/plugins/tiddlywiki/blog/templates/tiddler",
"text": "<div class=\"tc-tiddler-frame tc-tiddler-view-frame\">\n\n<div class=\"tc-tiddler-title\">\n\n<div class=\"tc-titlebar\">\n\n<h2 class=\"tc-title\">\n\n<$transclude field=\"caption\" mode=\"inline\">\n\n<$view field=\"title\"/>\n\n</$transclude>\n\n</h2>\n\n</div>\n\n</div>\n\n<div class=\"tc-subtitle\">\n\n<$view field=\"modified\" format=\"date\" template=\"DDth MMM YYYY\"/>\n\n</div>\n\n<div class=\"tc-tiddler-body\">\n\n<$transclude/>\n\n</div>\n\n</div>\n"
}
}
}
{
"tiddlers": {
"$:/plugins/tiddlywiki/cecily/cecily.js": {
"title": "$:/plugins/tiddlywiki/cecily/cecily.js",
"text": "/*\\\ntitle: $:/plugins/tiddlywiki/cecily/cecily.js\ntype: application/javascript\nmodule-type: storyview\n\nPositions tiddlers on a 2D map\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar CecilyStoryView = function(listWidget) {\n\tvar self = this;\n\tthis.listWidget = listWidget;\n\t// Load the map\n\tthis.loadMap();\n\t// Position the existing tiddlers\n\t$tw.utils.each(this.listWidget.children,function(itemWidget,index) {\n\t\tvar domNode = itemWidget.findFirstDomNode();\n\t\tdomNode.style.position = \"absolute\";\n\t\tvar title = itemWidget.parseTreeNode.itemTitle;\n\t\tself.positionTiddler(title,domNode);\n\t});\n};\n\nCecilyStoryView.prototype.navigateTo = function(historyInfo) {\n\tvar listElementIndex = this.listWidget.findListItem(0,historyInfo.title);\n\tif(listElementIndex === undefined) {\n\t\treturn;\n\t}\n\tvar listItemWidget = this.listWidget.children[listElementIndex],\n\t\ttargetElement = listItemWidget.findFirstDomNode();\n\t// Scroll the node into view\n\tthis.listWidget.dispatchEvent({type: \"tm-scroll\", target: targetElement});\n};\n\nCecilyStoryView.prototype.insert = function(widget) {\n\tvar domNode = widget.findFirstDomNode(),\n\t\tduration = $tw.utils.getAnimationDuration();\n\t// Make the newly inserted node position absolute\n\t$tw.utils.setStyle(domNode,[\n\t\t{position: \"absolute\"},\n\t\t{transition: \"\"},\n\t\t{opacity: \"0.0\"}\n\t]);\n\t// Position it\n\tvar title = widget.parseTreeNode.itemTitle;\n\tthis.positionTiddler(title,domNode);\n\t$tw.utils.forceLayout(domNode);\n\t// Animate it in\n\t$tw.utils.setStyle(domNode,[\n\t\t{transition: \"opacity \" + duration + \"ms ease-out\"},\n\t\t{opacity: \"1.0\"}\n\t]);\n};\n\nCecilyStoryView.prototype.remove = function(widget) {\n\tvar targetElement = widget.findFirstDomNode(),\n\t\tduration = $tw.utils.getAnimationDuration();\n\t// Remove the widget at the end of the transition\n\tsetTimeout(function() {\n\t\twidget.removeChildDomNodes();\n\t},duration);\n\t// Animate the closure\n\t$tw.utils.setStyle(targetElement,[\n\t\t{transition: \"none\"},\n\t\t{opacity: \"1.0\"}\n\t]);\n\t$tw.utils.forceLayout(targetElement);\n\t$tw.utils.setStyle(targetElement,[\n\t\t{transition: $tw.utils.roundTripPropertyName(\"transform\") + \" \" + duration + \"ms ease-in-out, \" +\n\t\t\t\t\t\"opacity \" + duration + \"ms ease-in-out\"},\n\t\t{transform: \"scale(0.01)\"},\n\t\t{opacity: \"0.0\"}\n\t]);\n};\n\n/*\nLoad the current map\n*/\nCecilyStoryView.prototype.loadMap = function() {\n\tthis.map = this.listWidget.wiki.getTiddlerData(this.getMapTiddlerTitle(),{\n\t\tpositions: {},\n\t\tnewTiddlerPosition: {x: 0, y: 0},\n\t\twidth: parseInt(this.listWidget.getAttribute(\"cecily-width\",\"600\"),10)\n\t});\n};\n\nCecilyStoryView.prototype.getMapTiddlerTitle = function() {\n\treturn this.listWidget.getAttribute(\"cecily-map\",\"$:/TiddlerMap\");\n};\n\n/*\nPosition a tiddler according to the map\n*/\nCecilyStoryView.prototype.positionTiddler = function(title,domNode) {\n\tvar pos = this.lookupTiddlerInMap(title,domNode),\n\t\tscale = pos.w/domNode.offsetWidth;\n\t$tw.utils.setStyle(domNode,[\n\t\t{width: this.map.width + \"px\"},\n\t\t{transformOrigin: \"0% 0%\"},\n\t\t{transform: \"translateX(\" + pos.x + \"px) translateY(\" + pos.y + \"px) scale(\" + scale + \") translateX(-50%) rotate(\" + (pos.r || 0) + \"deg) translateX(50%)\"}\n\t]);\n};\n\n// Get the position of a particular tiddler\nCecilyStoryView.prototype.lookupTiddlerInMap = function(title,domNode) {\n\t// If this is a draft tiddler then look for the position of the original tiddler\n\tvar tiddler = this.listWidget.wiki.getTiddler(title);\n\tif(tiddler) {\n\t\tvar draftOf = tiddler.fields[\"draft.of\"];\n\t\tif(draftOf && this.map.positions[draftOf]) {\n\t\t\treturn this.map.positions[draftOf];\n\t\t}\n\t}\n\t// Try looking the target tiddler up in the map\n\tif(this.map.positions[title]) {\n\t\treturn this.map.positions[title];\n\t}\n\t// If the tiddler wasn't in the map we'll have to compute it\n\tvar newPosition;\n\tswitch(this.map.positionNew) {\n\t\tdefault: // \"right\"\n\t\t\tnewPosition = {\n\t\t\t\tx: this.map.newTiddlerPosition.x,\n\t\t\t\ty: this.map.newTiddlerPosition.y,\n\t\t\t\tw: 200,\n\t\t\t\th: 200\n\t\t\t};\n\t\t\tthis.map.newTiddlerPosition.x += newPosition.w * 1.1;\n\t\t\tbreak;\n\t}\n\t// A default position\n\tnewPosition = newPosition || {x: 0,y: 0,w: 100,h: 100};\n\t// Save the position back to the map\n\tthis.map.positions[title] = newPosition;\n\treturn newPosition;\n};\n\nexports.cecily = CecilyStoryView;\n\n})();\n",
"type": "application/javascript",
"module-type": "storyview"
},
"$:/plugins/tiddlywiki/cecily/readme": {
"title": "$:/plugins/tiddlywiki/cecily/readme",
"text": "This experimental plugin provides a new story visualisation that displays individual tiddlers as resizable tiles on an infinite canvas.\n\nCecily is based on an earlier plugin for TiddlyWiki Classic: http://jermolene.com/cecily\n\nCecily is currently in the early stages of development with little functionality yet implemented.\n\n[[Source code|https://github.com/Jermolene/TiddlyWiki5/blob/master/plugins/tiddlywiki/cecily]]\n"
},
"$:/core/images/storyview-cecily": {
"title": "$:/core/images/storyview-cecily",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-storyview-cecily tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M8.00697327,0 C3.58484404,0 0,3.59075293 0,8.00697327 L0,119.993027 C0,124.415156 3.59075293,128 8.00697327,128 L119.993027,128 C124.415156,128 128,124.409247 128,119.993027 L128,8.00697327 C128,3.58484404 124.409247,0 119.993027,0 L8.00697327,0 L8.00697327,0 Z M23.9949725,16 C19.5794711,16 16,19.5776607 16,23.9924054 L16,40.0075946 C16,44.4216782 19.5905136,48 23.9949725,48 L71.0050275,48 C75.4205289,48 79,44.4223393 79,40.0075946 L79,23.9924054 C79,19.5783218 75.4094864,16 71.0050275,16 L23.9949725,16 L23.9949725,16 Z M72.0070969,64 C67.5848994,64 64,67.5881712 64,72.0070969 L64,103.992903 C64,108.415101 67.5881712,112 72.0070969,112 L103.992903,112 C108.415101,112 112,108.411829 112,103.992903 L112,72.0070969 C112,67.5848994 108.411829,64 103.992903,64 L72.0070969,64 L72.0070969,64 Z M24.0034204,80 C19.5832534,80 16,83.5776607 16,87.9924054 L16,104.007595 C16,108.421678 19.5863782,112 24.0034204,112 L38.9965796,112 C43.4167466,112 47,108.422339 47,104.007595 L47,87.9924054 C47,83.5783218 43.4136218,80 38.9965796,80 L24.0034204,80 L24.0034204,80 Z M104,16 C99.581722,16 96,19.5776607 96,23.9924054 L96,40.0075946 C96,44.4216782 99.5907123,48 104,48 C108.418278,48 112,44.4223393 112,40.0075946 L112,23.9924054 C112,19.5783218 108.409288,16 104,16 L104,16 Z\"></path>\n </g>\n</svg>"
}
}
}
{
"tiddlers": {
"$:/plugins/tiddlywiki/d3/barwidget.js": {
"title": "$:/plugins/tiddlywiki/d3/barwidget.js",
"text": "/*\\\ntitle: $:/plugins/tiddlywiki/d3/barwidget.js\ntype: application/javascript\nmodule-type: widget\n\nA widget for displaying stacked or grouped bar charts. Derived from http://bl.ocks.org/mbostock/3943967\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget,\n\td3 = require(\"$:/plugins/tiddlywiki/d3/d3.js\").d3;\n\nvar BarWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nBarWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nBarWidget.prototype.render = function(parent,nextSibling) {\n\t// Save the parent dom node\n\tthis.parentDomNode = parent;\n\t// Compute our attributes\n\tthis.computeAttributes();\n\t// Execute our logic\n\tthis.execute();\n\t// Create the chart\n\tvar chart = this.createChart(parent,nextSibling);\n\tthis.updateChart = chart.updateChart;\n\tif(this.updateChart) {\n\t\tthis.updateChart();\n\t}\n\t// Insert the chart into the DOM and render any children\n\tparent.insertBefore(chart.domNode,nextSibling);\n\tthis.domNodes.push(chart.domNode);\n};\n\nBarWidget.prototype.createChart = function(parent,nextSibling) {\n\t// Get the data we're plotting\n\tvar data = this.wiki.getTiddlerData(this.barData),\n\t\tn,m,stack,layers;\n\tif(data) {\n\t\tn = data.layers;\n\t\tm = data.samples;\n\t\tlayers = data.data;\n\t} else { // Use randomly generated data if we don't have any\n\t\tn = 4; // number of layers\n\t\tm = 58; // number of samples per layer\n\t\tstack = d3.layout.stack();\n\t\tlayers = stack(d3.range(n).map(function() { return bumpLayer(m, 0.1); }));\n\t}\n\t// Calculate the maximum data values\n\tvar yGroupMax = d3.max(layers, function(layer) { return d3.max(layer, function(d) { return d.y; }); }),\n\t\tyStackMax = d3.max(layers, function(layer) { return d3.max(layer, function(d) { return d.y0 + d.y; }); });\n\t// Calculate margins and width and height\n\tvar margin = {top: 40, right: 10, bottom: 20, left: 10},\n\t\twidth = 960 - margin.left - margin.right,\n\t\theight = 500 - margin.top - margin.bottom;\n\t// x-scale\n\tvar x = d3.scale.ordinal()\n\t\t.domain(d3.range(m))\n\t\t.rangeRoundBands([0, width], 0.08);\n\t// y-scale\n\tvar y = d3.scale.linear()\n\t\t.domain([0, yStackMax])\n\t\t.range([height, 0]);\n\t// Array of colour values\n\tvar color = d3.scale.linear()\n\t\t.domain([0, n - 1])\n\t\t.range([\"#aad\", \"#556\"]);\n\t// x-axis\n\tvar xAxis = d3.svg.axis()\n\t\t.scale(x)\n\t\t.tickSize(0)\n\t\t.tickPadding(6)\n\t\t.orient(\"bottom\");\n\t// Create SVG element\n\tvar svgElement = d3.select(parent).insert(\"svg\",function() {return nextSibling;})\n\t\t.attr(\"viewBox\", \"0 0 960 500\")\n\t\t.attr(\"preserveAspectRatio\", \"xMinYMin meet\")\n\t\t.attr(\"width\", width + margin.left + margin.right)\n\t\t.attr(\"height\", height + margin.top + margin.bottom);\n\t// Create main group\n\tvar mainGroup = svgElement.append(\"g\")\n\t\t.attr(\"transform\", \"translate(\" + margin.left + \",\" + margin.top + \")\");\n\t// Create the layers\n\tvar layer = mainGroup.selectAll(\".layer\")\n\t\t.data(layers)\n\t.enter().append(\"g\")\n\t\t.attr(\"class\", \"layer\")\n\t\t.style(\"fill\", function(d, i) { return color(i); });\n\t// Create the rectangles in each layer\n\tvar rect = layer.selectAll(\"rect\")\n\t\t.data(function(d) { return d; })\n\t.enter().append(\"rect\")\n\t\t.attr(\"x\", function(d) { return x(d.x); })\n\t\t.attr(\"y\", height)\n\t\t.attr(\"width\", x.rangeBand())\n\t\t.attr(\"height\", 0);\n\t// Transition the rectangles to their final height\n\trect.transition()\n\t\t.delay(function(d, i) { return i * 10; })\n\t\t.attr(\"y\", function(d) { return y(d.y0 + d.y); })\n\t\t.attr(\"height\", function(d) { return y(d.y0) - y(d.y0 + d.y); });\n\t// Add to the DOM\n\tmainGroup.append(\"g\")\n\t\t.attr(\"class\", \"x axis\")\n\t\t.attr(\"transform\", \"translate(0,\" + height + \")\")\n\t\t.call(xAxis);\n\tvar self = this;\n\t// Return the svg node\n\treturn {\n\t\tdomNode: svgElement[0][0],\n\t\tupdateChart: function() {\n\t\t\tif (self.barGrouped !== \"no\") {\n\t\t\t\ttransitionGrouped();\n\t\t\t} else {\n\t\t\t\ttransitionStacked();\n\t\t\t}\n\t\t}\n\t};\n\n\tfunction transitionGrouped() {\n\t\ty.domain([0, yGroupMax]);\n\t\trect.transition()\n\t\t\t.duration(500)\n\t\t\t.delay(function(d, i) { return i * 10; })\n\t\t\t.attr(\"x\", function(d, i, j) { return x(d.x) + x.rangeBand() / n * j; })\n\t\t\t.attr(\"width\", x.rangeBand() / n)\n\t\t\t.transition()\n\t\t\t.attr(\"y\", function(d) { return y(d.y); })\n\t\t\t.attr(\"height\", function(d) { return height - y(d.y); });\n\t}\n\n\tfunction transitionStacked() {\n\t\ty.domain([0, yStackMax]);\n\t\trect.transition()\n\t\t\t.duration(500)\n\t\t\t.delay(function(d, i) { return i * 10; })\n\t\t\t.attr(\"y\", function(d) { return y(d.y0 + d.y); })\n\t\t\t.attr(\"height\", function(d) { return y(d.y0) - y(d.y0 + d.y); })\n\t\t\t.transition()\n\t\t\t.attr(\"x\", function(d) { return x(d.x); })\n\t\t\t.attr(\"width\", x.rangeBand());\n\t}\n\n\t// Inspired by Lee Byron's test data generator.\n\tfunction bumpLayer(n, o) {\n\t\tfunction bump(a) {\n\t\t\tvar x = 1 / (0.1 + Math.random()),\n\t\t\t\ty = 2 * Math.random() - 0.5,\n\t\t\t\tz = 10 / (0.1 + Math.random());\n\t\t\tfor (var i = 0; i < n; i++) {\n\t\t\tvar w = (i / n - y) * z;\n\t\t\ta[i] += x * Math.exp(-w * w);\n\t\t\t}\n\t\t}\n\t\tvar a = [], i;\n\t\tfor (i = 0; i < n; ++i) a[i] = o + o * Math.random();\n\t\tfor (i = 0; i < 5; ++i) bump(a);\n\t\treturn a.map(function(d, i) { return {x: i, y: Math.max(0, d)}; });\n\t}\n};\n\n/*\nCompute the internal state of the widget\n*/\nBarWidget.prototype.execute = function() {\n\t// Get the parameters from the attributes\n\tthis.barData = this.getAttribute(\"data\");\n\tthis.barGrouped = this.getAttribute(\"grouped\",\"no\");\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nBarWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\tif(changedAttributes.data || changedTiddlers[this.barData]) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t} else if(changedAttributes.grouped) {\n\t\tthis.execute();\n\t\tif(this.updateChart) {\n\t\t\tthis.updateChart();\n\t\t}\n\t\treturn true;\n\t}\n\treturn false;\n};\n\nexports.d3bar = BarWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/plugins/tiddlywiki/d3/base.tid": {
"title": "$:/plugins/tiddlywiki/d3/base.tid",
"tags": "[[$:/tags/Stylesheet]]",
"text": "\\rules only filteredtranscludeinline transcludeinline macrodef macrocallinline\n\n.tc-barwidget {\n}\n\n.tc-barwidget text {\n font: 8px sans-serif;\n}\n\n.tc-barwidget .axis path,\n.tc-barwidget .axis line {\n fill: none;\n stroke: #000;\n shape-rendering: crispEdges;\n}\n"
},
"$:/plugins/tiddlywiki/d3/cloudwidget.js": {
"title": "$:/plugins/tiddlywiki/d3/cloudwidget.js",
"text": "/*\\\ntitle: $:/plugins/tiddlywiki/d3/cloudwidget.js\ntype: application/javascript\nmodule-type: widget\n\nA widget for displaying word clouds. Derived from https://github.com/jasondavies/d3-cloud\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget,\n\td3 = require(\"$:/plugins/tiddlywiki/d3/d3.js\").d3;\n\nif($tw.browser) {\n\t// Frightful hack to give the cloud plugin the global d3 variable it needs\n\twindow.d3 = d3;\n\td3.layout.cloud = require(\"$:/plugins/tiddlywiki/d3/d3.layout.cloud.js\").cloud;\n}\n\nvar CloudWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nCloudWidget.prototype = new Widget();\n\n/*\nRender this widget into the DOM\n*/\nCloudWidget.prototype.render = function(parent,nextSibling) {\n\t// Save the parent dom node\n\tthis.parentDomNode = parent;\n\t// Compute our attributes\n\tthis.computeAttributes();\n\t// Execute our logic\n\tthis.execute();\n\t// Create the chart\n\tvar chart = this.createChart(parent,nextSibling);\n\tthis.updateChart = chart.updateChart;\n\tif(this.updateChart) {\n\t\tthis.updateChart();\n\t}\n\t// Insert the chart into the DOM and render any children\n\tparent.insertBefore(chart.domNode,nextSibling);\n\tthis.domNodes.push(chart.domNode);\n};\n\nCloudWidget.prototype.createChart = function(parent,nextSibling) {\n\tvar self = this,\n\t\tfill = d3.scale.category20(),\n\t\tdata = this.wiki.getTiddlerData(this.cloudData);\n\t// Use dummy data if none provided\n\tif(!data) {\n\t\tdata = \"This word cloud does not have any data in it\".split(\" \").map(function(d) {\n\t\t\treturn {text: d, size: 10 + Math.random() * 90};\n\t\t});\n\t}\n\t// Create the svg element\n\tvar svgElement = d3.select(parent).insert(\"svg\",function() {return nextSibling;})\n\t\t.attr(\"width\", 600)\n\t\t.attr(\"height\", 400);\n\t// Create the main group\n\tvar mainGroup = svgElement\n\t\t.append(\"g\")\n\t\t.attr(\"transform\", \"translate(300,200)\");\n\t// Create the layout\n\tvar layout = d3.layout.cloud().size([600, 400])\n\t\t.words(data)\n\t\t.padding(5)\n\t\t.rotate(function() { return ~~(Math.random() * 5) * 30 - 60; })\n\t\t.font(\"Impact\")\n\t\t.fontSize(function(d) { return d.size*2; })\n\t\t.on(\"end\", draw)\n\t\t.start();\n\t// Function to draw all the words\n\tfunction draw(words) {\n\t\tmainGroup.selectAll(\"text\")\n\t\t\t.data(words)\n\t\t\t.enter().append(\"text\")\n\t\t\t.style(\"font-size\", function(d) { return d.size + \"px\"; })\n\t\t\t.style(\"font-family\", \"Impact\")\n\t\t\t.style(\"fill\", function(d, i) { return fill(i); })\n\t\t\t.attr(\"text-anchor\", \"middle\")\n\t\t\t.attr(\"transform\", function(d) {\n\t\t\t\treturn \"translate(\" + [d.x, d.y] + \")rotate(\" + d.rotate + \")\";\n\t\t\t})\n\t\t\t.text(function(d) { return d.text; });\n\t}\n\tfunction updateChart() {\n\t\tlayout.spiral(self.spiral);\n\t}\n\treturn {\n\t\tdomNode: svgElement[0][0],\n\t\tupdateChart: updateChart\n\t};\n};\n\n/*\nCompute the internal state of the widget\n*/\nCloudWidget.prototype.execute = function() {\n\t// Get the parameters from the attributes\n\tthis.cloudData = this.getAttribute(\"data\");\n\tthis.cloudSpiral = this.getAttribute(\"spiral\",\"archimedean\");\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nCloudWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\tif(changedAttributes.data || changedTiddlers[this.cloudData]) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t} else if(changedAttributes.spiral) {\n\t\tthis.execute();\n\t\tif(this.updateChart) {\n\t\t\tthis.updateChart();\n\t\t}\n\t\treturn true;\n\t}\n\treturn false;\n};\n\nexports.d3cloud = CloudWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/plugins/tiddlywiki/d3/d3.js": {
"text": "var d3;if($tw.browser){\nd3=function(){function n(n){return null!=n&&!isNaN(n)}function t(n){return n.length}function e(n){for(var t=1;n*t%1;)t*=10;return t}function r(n,t){try{for(var e in t)Object.defineProperty(n.prototype,e,{value:t[e],enumerable:!1})}catch(r){n.prototype=t}}function i(){}function u(){}function a(n,t,e){return function(){var r=e.apply(t,arguments);return r===t?n:r}}function o(n,t){if(t in n)return t;t=t.charAt(0).toUpperCase()+t.substring(1);for(var e=0,r=Na.length;r>e;++e){var i=Na[e]+t;if(i in n)return i}}function c(n){for(var t=-1,e=n.length,r=[];++t<e;)r.push(n[t]);return r}function l(n){return Array.prototype.slice.call(n)}function s(){}function f(){}function h(n){function t(){for(var t,r=e,i=-1,u=r.length;++i<u;)(t=r[i].on)&&t.apply(this,arguments);return n}var e=[],r=new i;return t.on=function(t,i){var u,a=r.get(t);return arguments.length<2?a&&a.on:(a&&(a.on=null,e=e.slice(0,u=e.indexOf(a)).concat(e.slice(u+1)),r.remove(t)),i&&e.push(r.set(t,{on:i})),n)},t}function g(){da.event.preventDefault()}function p(){for(var n,t=da.event;n=t.sourceEvent;)t=n;return t}function d(n){for(var t=new f,e=0,r=arguments.length;++e<r;)t[arguments[e]]=h(t);return t.of=function(e,r){return function(i){try{var u=i.sourceEvent=da.event;i.target=n,da.event=i,t[i.type].apply(e,r)}finally{da.event=u}}},t}function m(n){return za(n,Fa),n}function v(n){return\"function\"==typeof n?n:function(){return Da(n,this)}}function y(n){return\"function\"==typeof n?n:function(){return ja(n,this)}}function M(n,t){function e(){this.removeAttribute(n)}function r(){this.removeAttributeNS(n.space,n.local)}function i(){this.setAttribute(n,t)}function u(){this.setAttributeNS(n.space,n.local,t)}function a(){var e=t.apply(this,arguments);null==e?this.removeAttribute(n):this.setAttribute(n,e)}function o(){var e=t.apply(this,arguments);null==e?this.removeAttributeNS(n.space,n.local):this.setAttributeNS(n.space,n.local,e)}return n=da.ns.qualify(n),null==t?n.local?r:e:\"function\"==typeof t?n.local?o:a:n.local?u:i}function x(n){return n.trim().replace(/\\s+/g,\" \")}function b(n){return new RegExp(\"(?:^|\\\\s+)\"+da.requote(n)+\"(?:\\\\s+|$)\",\"g\")}function _(n,t){function e(){for(var e=-1;++e<i;)n[e](this,t)}function r(){for(var e=-1,r=t.apply(this,arguments);++e<i;)n[e](this,r)}n=n.trim().split(/\\s+/).map(w);var i=n.length;return\"function\"==typeof t?r:e}function w(n){var t=b(n);return function(e,r){if(i=e.classList)return r?i.add(n):i.remove(n);var i=e.getAttribute(\"class\")||\"\";r?(t.lastIndex=0,t.test(i)||e.setAttribute(\"class\",x(i+\" \"+n))):e.setAttribute(\"class\",x(i.replace(t,\" \")))}}function S(n,t,e){function r(){this.style.removeProperty(n)}function i(){this.style.setProperty(n,t,e)}function u(){var r=t.apply(this,arguments);null==r?this.style.removeProperty(n):this.style.setProperty(n,r,e)}return null==t?r:\"function\"==typeof t?u:i}function E(n,t){function e(){delete this[n]}function r(){this[n]=t}function i(){var e=t.apply(this,arguments);null==e?delete this[n]:this[n]=e}return null==t?e:\"function\"==typeof t?i:r}function k(n){return\"function\"==typeof n?n:(n=da.ns.qualify(n)).local?function(){return ma.createElementNS(n.space,n.local)}:function(){return ma.createElementNS(this.namespaceURI,n)}}function A(n){return{__data__:n}}function N(n){return function(){return Ha(this,n)}}function q(n){return arguments.length||(n=da.ascending),function(t,e){return!t-!e||n(t.__data__,e.__data__)}}function T(n,t){for(var e=0,r=n.length;r>e;e++)for(var i,u=n[e],a=0,o=u.length;o>a;a++)(i=u[a])&&t(i,a,e);return n}function C(n){return za(n,Oa),n}function z(n){var t,e;return function(r,i,u){var a,o=n[u].update,c=o.length;for(u!=e&&(e=u,t=0),i>=t&&(t=i+1);!(a=o[t])&&++t<c;);return a}}function D(n,t,e){function r(){var t=this[a];t&&(this.removeEventListener(n,t,t.$),delete this[a])}function i(){var i=c(t,qa(arguments));r.call(this),this.addEventListener(n,this[a]=i,i.$=e),i._=t}function u(){var t,e=new RegExp(\"^__on([^.]+)\"+da.requote(n)+\"$\");for(var r in this)if(t=r.match(e)){var i=this[r];this.removeEventListener(t[1],i,i.$),delete this[r]}}var a=\"__on\"+n,o=n.indexOf(\".\"),c=j;o>0&&(n=n.substring(0,o));var l=Ra.get(n);return l&&(n=l,c=L),o?t?i:r:t?s:u}function j(n,t){return function(e){var r=da.event;da.event=e,t[0]=this.__data__;try{n.apply(this,t)}finally{da.event=r}}}function L(n,t){var e=j(n,t);return function(n){var t=this,r=n.relatedTarget;r&&(r===t||8&r.compareDocumentPosition(t))||e.call(t,n)}}function H(){var n=\".dragsuppress-\"+ ++Ia,t=\"touchmove\"+n,e=\"selectstart\"+n,r=\"dragstart\"+n,i=\"click\"+n,u=da.select(ya).on(t,g).on(e,g).on(r,g),a=va.style,o=a[Ua];return a[Ua]=\"none\",function(t){function e(){u.on(i,null)}u.on(n,null),a[Ua]=o,t&&(u.on(i,function(){g(),e()},!0),setTimeout(e,0))}}function F(n,t){var e=n.ownerSVGElement||n;if(e.createSVGPoint){var r=e.createSVGPoint();if(0>Va&&(ya.scrollX||ya.scrollY)){e=da.select(\"body\").append(\"svg\").style({position:\"absolute\",top:0,left:0,margin:0,padding:0,border:\"none\"},\"important\");var i=e[0][0].getScreenCTM();Va=!(i.f||i.e),e.remove()}return Va?(r.x=t.pageX,r.y=t.pageY):(r.x=t.clientX,r.y=t.clientY),r=r.matrixTransform(n.getScreenCTM().inverse()),[r.x,r.y]}var u=n.getBoundingClientRect();return[t.clientX-u.left-n.clientLeft,t.clientY-u.top-n.clientTop]}function P(){}function O(n,t,e){return new Y(n,t,e)}function Y(n,t,e){this.h=n,this.s=t,this.l=e}function R(n,t,e){function r(n){return n>360?n-=360:0>n&&(n+=360),60>n?u+(a-u)*n/60:180>n?a:240>n?u+(a-u)*(240-n)/60:u}function i(n){return Math.round(255*r(n))}var u,a;return n=isNaN(n)?0:(n%=360)<0?n+360:n,t=isNaN(t)?0:0>t?0:t>1?1:t,e=0>e?0:e>1?1:e,a=.5>=e?e*(1+t):e+t-e*t,u=2*e-a,it(i(n+120),i(n),i(n-120))}function U(n){return n>0?1:0>n?-1:0}function I(n){return n>1?0:-1>n?Wa:Math.acos(n)}function V(n){return n>1?Wa/2:-1>n?-Wa/2:Math.asin(n)}function X(n){return(Math.exp(n)-Math.exp(-n))/2}function Z(n){return(Math.exp(n)+Math.exp(-n))/2}function B(n){return(n=Math.sin(n/2))*n}function $(n,t,e){return new W(n,t,e)}function W(n,t,e){this.h=n,this.c=t,this.l=e}function J(n,t,e){return isNaN(n)&&(n=0),isNaN(t)&&(t=0),G(e,Math.cos(n*=Ka)*t,Math.sin(n)*t)}function G(n,t,e){return new K(n,t,e)}function K(n,t,e){this.l=n,this.a=t,this.b=e}function Q(n,t,e){var r=(n+16)/116,i=r+t/500,u=r-e/200;return i=tt(i)*eo,r=tt(r)*ro,u=tt(u)*io,it(rt(3.2404542*i-1.5371385*r-.4985314*u),rt(-.969266*i+1.8760108*r+.041556*u),rt(.0556434*i-.2040259*r+1.0572252*u))}function nt(n,t,e){return n>0?$(Math.atan2(e,t)*Qa,Math.sqrt(t*t+e*e),n):$(0/0,0/0,n)}function tt(n){return n>.206893034?n*n*n:(n-4/29)/7.787037}function et(n){return n>.008856?Math.pow(n,1/3):7.787037*n+4/29}function rt(n){return Math.round(255*(.00304>=n?12.92*n:1.055*Math.pow(n,1/2.4)-.055))}function it(n,t,e){return new ut(n,t,e)}function ut(n,t,e){this.r=n,this.g=t,this.b=e}function at(n){return 16>n?\"0\"+Math.max(0,n).toString(16):Math.min(255,n).toString(16)}function ot(n,t,e){var r,i,u,a=0,o=0,c=0;if(r=/([a-z]+)\\((.*)\\)/i.exec(n))switch(i=r[2].split(\",\"),r[1]){case\"hsl\":return e(parseFloat(i[0]),parseFloat(i[1])/100,parseFloat(i[2])/100);case\"rgb\":return t(ft(i[0]),ft(i[1]),ft(i[2]))}return(u=oo.get(n))?t(u.r,u.g,u.b):(null!=n&&\"#\"===n.charAt(0)&&(4===n.length?(a=n.charAt(1),a+=a,o=n.charAt(2),o+=o,c=n.charAt(3),c+=c):7===n.length&&(a=n.substring(1,3),o=n.substring(3,5),c=n.substring(5,7)),a=parseInt(a,16),o=parseInt(o,16),c=parseInt(c,16)),t(a,o,c))}function ct(n,t,e){var r,i,u=Math.min(n/=255,t/=255,e/=255),a=Math.max(n,t,e),o=a-u,c=(a+u)/2;return o?(i=.5>c?o/(a+u):o/(2-a-u),r=n==a?(t-e)/o+(e>t?6:0):t==a?(e-n)/o+2:(n-t)/o+4,r*=60):(r=0/0,i=c>0&&1>c?0:r),O(r,i,c)}function lt(n,t,e){n=st(n),t=st(t),e=st(e);var r=et((.4124564*n+.3575761*t+.1804375*e)/eo),i=et((.2126729*n+.7151522*t+.072175*e)/ro),u=et((.0193339*n+.119192*t+.9503041*e)/io);return G(116*i-16,500*(r-i),200*(i-u))}function st(n){return(n/=255)<=.04045?n/12.92:Math.pow((n+.055)/1.055,2.4)}function ft(n){var t=parseFloat(n);return\"%\"===n.charAt(n.length-1)?Math.round(2.55*t):t}function ht(n){return\"function\"==typeof n?n:function(){return n}}function gt(n){return n}function pt(n){return function(t,e,r){return 2===arguments.length&&\"function\"==typeof e&&(r=e,e=null),dt(t,e,n,r)}}function dt(n,t,e,r){function i(){var n,t=c.status;if(!t&&c.responseText||t>=200&&300>t||304===t){try{n=e.call(u,c)}catch(r){return a.error.call(u,r),void 0}a.load.call(u,n)}else a.error.call(u,c)}var u={},a=da.dispatch(\"progress\",\"load\",\"error\"),o={},c=new XMLHttpRequest,l=null;return!ya.XDomainRequest||\"withCredentials\"in c||!/^(http(s)?:)?\\/\\//.test(n)||(c=new XDomainRequest),\"onload\"in c?c.onload=c.onerror=i:c.onreadystatechange=function(){c.readyState>3&&i()},c.onprogress=function(n){var t=da.event;da.event=n;try{a.progress.call(u,c)}finally{da.event=t}},u.header=function(n,t){return n=(n+\"\").toLowerCase(),arguments.length<2?o[n]:(null==t?delete o[n]:o[n]=t+\"\",u)},u.mimeType=function(n){return arguments.length?(t=null==n?null:n+\"\",u):t},u.responseType=function(n){return arguments.length?(l=n,u):l},u.response=function(n){return e=n,u},[\"get\",\"post\"].forEach(function(n){u[n]=function(){return u.send.apply(u,[n].concat(qa(arguments)))}}),u.send=function(e,r,i){if(2===arguments.length&&\"function\"==typeof r&&(i=r,r=null),c.open(e,n,!0),null==t||\"accept\"in o||(o.accept=t+\",*/*\"),c.setRequestHeader)for(var a in o)c.setRequestHeader(a,o[a]);return null!=t&&c.overrideMimeType&&c.overrideMimeType(t),null!=l&&(c.responseType=l),null!=i&&u.on(\"error\",i).on(\"load\",function(n){i(null,n)}),c.send(null==r?null:r),u},u.abort=function(){return c.abort(),u},da.rebind(u,a,\"on\"),null==r?u:u.get(mt(r))}function mt(n){return 1===n.length?function(t,e){n(null==t?e:null)}:n}function vt(){var n=yt(),t=Mt()-n;t>24?(isFinite(t)&&(clearTimeout(fo),fo=setTimeout(vt,t)),so=0):(so=1,ho(vt))}function yt(){for(var n=Date.now(),t=co;t;)n>=t.time&&(t.flush=t.callback(n-t.time)),t=t.next;return n}function Mt(){for(var n,t=co,e=1/0;t;)t.flush?t=n?n.next=t.next:co=t.next:(t.time<e&&(e=t.time),t=(n=t).next);return lo=n,e}function xt(n,t){var e=Math.pow(10,3*Math.abs(8-t));return{scale:t>8?function(n){return n/e}:function(n){return n*e},symbol:n}}function bt(n,t){return t-(n?Math.ceil(Math.log(n)/Math.LN10):1)}function _t(n){return n+\"\"}function wt(){}function St(n,t,e){var r=e.s=n+t,i=r-n,u=r-i;e.t=n-u+(t-i)}function Et(n,t){n&&Eo.hasOwnProperty(n.type)&&Eo[n.type](n,t)}function kt(n,t,e){var r,i=-1,u=n.length-e;for(t.lineStart();++i<u;)r=n[i],t.point(r[0],r[1]);t.lineEnd()}function At(n,t){var e=-1,r=n.length;for(t.polygonStart();++e<r;)kt(n[e],t,1);t.polygonEnd()}function Nt(){function n(n,t){n*=Ka,t=t*Ka/2+Wa/4;var e=n-r,a=Math.cos(t),o=Math.sin(t),c=u*o,l=i*a+c*Math.cos(e),s=c*Math.sin(e);Ao.add(Math.atan2(s,l)),r=n,i=a,u=o}var t,e,r,i,u;No.point=function(a,o){No.point=n,r=(t=a)*Ka,i=Math.cos(o=(e=o)*Ka/2+Wa/4),u=Math.sin(o)},No.lineEnd=function(){n(t,e)}}function qt(n){var t=n[0],e=n[1],r=Math.cos(e);return[r*Math.cos(t),r*Math.sin(t),Math.sin(e)]}function Tt(n,t){return n[0]*t[0]+n[1]*t[1]+n[2]*t[2]}function Ct(n,t){return[n[1]*t[2]-n[2]*t[1],n[2]*t[0]-n[0]*t[2],n[0]*t[1]-n[1]*t[0]]}function zt(n,t){n[0]+=t[0],n[1]+=t[1],n[2]+=t[2]}function Dt(n,t){return[n[0]*t,n[1]*t,n[2]*t]}function jt(n){var t=Math.sqrt(n[0]*n[0]+n[1]*n[1]+n[2]*n[2]);n[0]/=t,n[1]/=t,n[2]/=t}function Lt(n){return[Math.atan2(n[1],n[0]),V(n[2])]}function Ht(n,t){return Math.abs(n[0]-t[0])<Ja&&Math.abs(n[1]-t[1])<Ja}function Ft(n,t){n*=Ka;var e=Math.cos(t*=Ka);Pt(e*Math.cos(n),e*Math.sin(n),Math.sin(t))}function Pt(n,t,e){++qo,Co+=(n-Co)/qo,zo+=(t-zo)/qo,Do+=(e-Do)/qo}function Ot(){function n(n,i){n*=Ka;var u=Math.cos(i*=Ka),a=u*Math.cos(n),o=u*Math.sin(n),c=Math.sin(i),l=Math.atan2(Math.sqrt((l=e*c-r*o)*l+(l=r*a-t*c)*l+(l=t*o-e*a)*l),t*a+e*o+r*c);To+=l,jo+=l*(t+(t=a)),Lo+=l*(e+(e=o)),Ho+=l*(r+(r=c)),Pt(t,e,r)}var t,e,r;Yo.point=function(i,u){i*=Ka;var a=Math.cos(u*=Ka);t=a*Math.cos(i),e=a*Math.sin(i),r=Math.sin(u),Yo.point=n,Pt(t,e,r)}}function Yt(){Yo.point=Ft}function Rt(){function n(n,t){n*=Ka;var e=Math.cos(t*=Ka),a=e*Math.cos(n),o=e*Math.sin(n),c=Math.sin(t),l=i*c-u*o,s=u*a-r*c,f=r*o-i*a,h=Math.sqrt(l*l+s*s+f*f),g=r*a+i*o+u*c,p=h&&-I(g)/h,d=Math.atan2(h,g);Fo+=p*l,Po+=p*s,Oo+=p*f,To+=d,jo+=d*(r+(r=a)),Lo+=d*(i+(i=o)),Ho+=d*(u+(u=c)),Pt(r,i,u)}var t,e,r,i,u;Yo.point=function(a,o){t=a,e=o,Yo.point=n,a*=Ka;var c=Math.cos(o*=Ka);r=c*Math.cos(a),i=c*Math.sin(a),u=Math.sin(o),Pt(r,i,u)},Yo.lineEnd=function(){n(t,e),Yo.lineEnd=Yt,Yo.point=Ft}}function Ut(){return!0}function It(n,t,e,r,i){var u=[],a=[];if(n.forEach(function(n){if(!((t=n.length-1)<=0)){var t,e=n[0],r=n[t];if(Ht(e,r)){i.lineStart();for(var o=0;t>o;++o)i.point((e=n[o])[0],e[1]);return i.lineEnd(),void 0}var c={point:e,points:n,other:null,visited:!1,entry:!0,subject:!0},l={point:e,points:[e],other:c,visited:!1,entry:!1,subject:!1};c.other=l,u.push(c),a.push(l),c={point:r,points:[r],other:null,visited:!1,entry:!1,subject:!0},l={point:r,points:[r],other:c,visited:!1,entry:!0,subject:!1},c.other=l,u.push(c),a.push(l)}}),a.sort(t),Vt(u),Vt(a),u.length){if(e)for(var o=1,c=!e(a[0].point),l=a.length;l>o;++o)a[o].entry=c=!c;for(var s,f,h,g=u[0];;){for(s=g;s.visited;)if((s=s.next)===g)return;f=s.points,i.lineStart();do{if(s.visited=s.other.visited=!0,s.entry){if(s.subject)for(var o=0;o<f.length;o++)i.point((h=f[o])[0],h[1]);else r(s.point,s.next.point,1,i);s=s.next}else{if(s.subject){f=s.prev.points;for(var o=f.length;--o>=0;)i.point((h=f[o])[0],h[1])}else r(s.point,s.prev.point,-1,i);s=s.prev}s=s.other,f=s.points}while(!s.visited);i.lineEnd()}}}function Vt(n){if(t=n.length){for(var t,e,r=0,i=n[0];++r<t;)i.next=e=n[r],e.prev=i,i=e;i.next=e=n[0],e.prev=i}}function Xt(n,t,e,r){return function(i){function u(t,e){n(t,e)&&i.point(t,e)}function a(n,t){d.point(n,t)}function o(){m.point=a,d.lineStart()}function c(){m.point=u,d.lineEnd()}function l(n,t){y.point(n,t),p.push([n,t])}function s(){y.lineStart(),p=[]}function f(){l(p[0][0],p[0][1]),y.lineEnd();var n,t=y.clean(),e=v.buffer(),r=e.length;if(p.pop(),g.push(p),p=null,r){if(1&t){n=e[0];var u,r=n.length-1,a=-1;for(i.lineStart();++a<r;)i.point((u=n[a])[0],u[1]);return i.lineEnd(),void 0}r>1&&2&t&&e.push(e.pop().concat(e.shift())),h.push(e.filter(Zt))}}var h,g,p,d=t(i),m={point:u,lineStart:o,lineEnd:c,polygonStart:function(){m.point=l,m.lineStart=s,m.lineEnd=f,h=[],g=[],i.polygonStart()},polygonEnd:function(){m.point=u,m.lineStart=o,m.lineEnd=c,h=da.merge(h),h.length?It(h,$t,null,e,i):r(g)&&(i.lineStart(),e(null,null,1,i),i.lineEnd()),i.polygonEnd(),h=g=null},sphere:function(){i.polygonStart(),i.lineStart(),e(null,null,1,i),i.lineEnd(),i.polygonEnd()}},v=Bt(),y=t(v);return m}}function Zt(n){return n.length>1}function Bt(){var n,t=[];return{lineStart:function(){t.push(n=[])},point:function(t,e){n.push([t,e])},lineEnd:s,buffer:function(){var e=t;return t=[],n=null,e},rejoin:function(){t.length>1&&t.push(t.pop().concat(t.shift()))}}}function $t(n,t){return((n=n.point)[0]<0?n[1]-Wa/2-Ja:Wa/2-n[1])-((t=t.point)[0]<0?t[1]-Wa/2-Ja:Wa/2-t[1])}function Wt(n,t){var e=n[0],r=n[1],i=[Math.sin(e),-Math.cos(e),0],u=0,a=!1,o=!1,c=0;Ao.reset();for(var l=0,s=t.length;s>l;++l){var f=t[l],h=f.length;if(h){for(var g=f[0],p=g[0],d=g[1]/2+Wa/4,m=Math.sin(d),v=Math.cos(d),y=1;;){y===h&&(y=0),n=f[y];var M=n[0],x=n[1]/2+Wa/4,b=Math.sin(x),_=Math.cos(x),w=M-p,S=Math.abs(w)>Wa,E=m*b;if(Ao.add(Math.atan2(E*Math.sin(w),v*_+E*Math.cos(w))),Math.abs(x)<Ja&&(o=!0),u+=S?w+(w>=0?2:-2)*Wa:w,S^p>=e^M>=e){var k=Ct(qt(g),qt(n));jt(k);var A=Ct(i,k);jt(A);var N=(S^w>=0?-1:1)*V(A[2]);r>N&&(c+=S^w>=0?1:-1)}if(!y++)break;p=M,m=b,v=_,g=n}Math.abs(u)>Ja&&(a=!0)}}return(!o&&!a&&0>Ao||-Ja>u)^1&c}function Jt(n){var t,e=0/0,r=0/0,i=0/0;return{lineStart:function(){n.lineStart(),t=1},point:function(u,a){var o=u>0?Wa:-Wa,c=Math.abs(u-e);Math.abs(c-Wa)<Ja?(n.point(e,r=(r+a)/2>0?Wa/2:-Wa/2),n.point(i,r),n.lineEnd(),n.lineStart(),n.point(o,r),n.point(u,r),t=0):i!==o&&c>=Wa&&(Math.abs(e-i)<Ja&&(e-=i*Ja),Math.abs(u-o)<Ja&&(u-=o*Ja),r=Gt(e,r,u,a),n.point(i,r),n.lineEnd(),n.lineStart(),n.point(o,r),t=0),n.point(e=u,r=a),i=o},lineEnd:function(){n.lineEnd(),e=r=0/0},clean:function(){return 2-t}}}function Gt(n,t,e,r){var i,u,a=Math.sin(n-e);return Math.abs(a)>Ja?Math.atan((Math.sin(t)*(u=Math.cos(r))*Math.sin(e)-Math.sin(r)*(i=Math.cos(t))*Math.sin(n))/(i*u*a)):(t+r)/2}function Kt(n,t,e,r){var i;if(null==n)i=e*Wa/2,r.point(-Wa,i),r.point(0,i),r.point(Wa,i),r.point(Wa,0),r.point(Wa,-i),r.point(0,-i),r.point(-Wa,-i),r.point(-Wa,0),r.point(-Wa,i);else if(Math.abs(n[0]-t[0])>Ja){var u=(n[0]<t[0]?1:-1)*Wa;i=e*u/2,r.point(-u,i),r.point(0,i),r.point(u,i)}else r.point(t[0],t[1])}function Qt(n){return Wt(Uo,n)}function ne(n){function t(n,t){return Math.cos(n)*Math.cos(t)>a}function e(n){var e,u,a,c,s;return{lineStart:function(){c=a=!1,s=1},point:function(f,h){var g,p=[f,h],d=t(f,h),m=o?d?0:i(f,h):d?i(f+(0>f?Wa:-Wa),h):0;if(!e&&(c=a=d)&&n.lineStart(),d!==a&&(g=r(e,p),(Ht(e,g)||Ht(p,g))&&(p[0]+=Ja,p[1]+=Ja,d=t(p[0],p[1]))),d!==a)s=0,d?(n.lineStart(),g=r(p,e),n.point(g[0],g[1])):(g=r(e,p),n.point(g[0],g[1]),n.lineEnd()),e=g;else if(l&&e&&o^d){var v;m&u||!(v=r(p,e,!0))||(s=0,o?(n.lineStart(),n.point(v[0][0],v[0][1]),n.point(v[1][0],v[1][1]),n.lineEnd()):(n.point(v[1][0],v[1][1]),n.lineEnd(),n.lineStart(),n.point(v[0][0],v[0][1])))}!d||e&&Ht(e,p)||n.point(p[0],p[1]),e=p,a=d,u=m},lineEnd:function(){a&&n.lineEnd(),e=null},clean:function(){return s|(c&&a)<<1}}}function r(n,t,e){var r=qt(n),i=qt(t),u=[1,0,0],o=Ct(r,i),c=Tt(o,o),l=o[0],s=c-l*l;if(!s)return!e&&n;var f=a*c/s,h=-a*l/s,g=Ct(u,o),p=Dt(u,f),d=Dt(o,h);zt(p,d);var m=g,v=Tt(p,m),y=Tt(m,m),M=v*v-y*(Tt(p,p)-1);if(!(0>M)){var x=Math.sqrt(M),b=Dt(m,(-v-x)/y);if(zt(b,p),b=Lt(b),!e)return b;var _,w=n[0],S=t[0],E=n[1],k=t[1];w>S&&(_=w,w=S,S=_);var A=S-w,N=Math.abs(A-Wa)<Ja,q=N||Ja>A;if(!N&&E>k&&(_=E,E=k,k=_),q?N?E+k>0^b[1]<(Math.abs(b[0]-w)<Ja?E:k):E<=b[1]&&b[1]<=k:A>Wa^(w<=b[0]&&b[0]<=S)){var T=Dt(m,(-v+x)/y);return zt(T,p),[b,Lt(T)]}}}function i(t,e){var r=o?n:Wa-n,i=0;return-r>t?i|=1:t>r&&(i|=2),-r>e?i|=4:e>r&&(i|=8),i}function u(n){return Wt(c,n)}var a=Math.cos(n),o=a>0,c=[n,0],l=Math.abs(a)>Ja,s=Ee(n,6*Ka);return Xt(t,e,s,u)}function te(n,t,e,r){function i(r,i){return Math.abs(r[0]-n)<Ja?i>0?0:3:Math.abs(r[0]-e)<Ja?i>0?2:1:Math.abs(r[1]-t)<Ja?i>0?1:0:i>0?3:2}function u(n,t){return a(n.point,t.point)}function a(n,t){var e=i(n,1),r=i(t,1);return e!==r?e-r:0===e?t[1]-n[1]:1===e?n[0]-t[0]:2===e?n[1]-t[1]:t[0]-n[0]}function o(i,u){var a=u[0]-i[0],o=u[1]-i[1],c=[0,1];return Math.abs(a)<Ja&&Math.abs(o)<Ja?n<=i[0]&&i[0]<=e&&t<=i[1]&&i[1]<=r:ee(n-i[0],a,c)&&ee(i[0]-e,-a,c)&&ee(t-i[1],o,c)&&ee(i[1]-r,-o,c)?(c[1]<1&&(u[0]=i[0]+c[1]*a,u[1]=i[1]+c[1]*o),c[0]>0&&(i[0]+=c[0]*a,i[1]+=c[0]*o),!0):!1}return function(c){function l(u){var a=i(u,-1),o=s([0===a||3===a?n:e,a>1?r:t]);return o}function s(n){for(var t=0,e=M.length,r=n[1],i=0;e>i;++i)for(var u,a=1,o=M[i],c=o.length,l=o[0];c>a;++a)u=o[a],l[1]<=r?u[1]>r&&f(l,u,n)>0&&++t:u[1]<=r&&f(l,u,n)<0&&--t,l=u;return 0!==t}function f(n,t,e){return(t[0]-n[0])*(e[1]-n[1])-(e[0]-n[0])*(t[1]-n[1])}function h(u,o,c,l){var s=0,f=0;if(null==u||(s=i(u,c))!==(f=i(o,c))||a(u,o)<0^c>0){do l.point(0===s||3===s?n:e,s>1?r:t);while((s=(s+c+4)%4)!==f)}else l.point(o[0],o[1])}function g(i,u){return i>=n&&e>=i&&u>=t&&r>=u}function p(n,t){g(n,t)&&c.point(n,t)}function d(){T.point=v,M&&M.push(x=[]),A=!0,k=!1,S=E=0/0}function m(){y&&(v(b,_),w&&k&&q.rejoin(),y.push(q.buffer())),T.point=p,k&&c.lineEnd()}function v(n,t){n=Math.max(-Io,Math.min(Io,n)),t=Math.max(-Io,Math.min(Io,t));var e=g(n,t);if(M&&x.push([n,t]),A)b=n,_=t,w=e,A=!1,e&&(c.lineStart(),c.point(n,t));else if(e&&k)c.point(n,t);else{var r=[S,E],i=[n,t];o(r,i)?(k||(c.lineStart(),c.point(r[0],r[1])),c.point(i[0],i[1]),e||c.lineEnd()):e&&(c.lineStart(),c.point(n,t))}S=n,E=t,k=e}var y,M,x,b,_,w,S,E,k,A,N=c,q=Bt(),T={point:p,lineStart:d,lineEnd:m,polygonStart:function(){c=q,y=[],M=[]},polygonEnd:function(){c=N,(y=da.merge(y)).length?(c.polygonStart(),It(y,u,l,h,c),c.polygonEnd()):s([n,t])&&(c.polygonStart(),c.lineStart(),h(null,null,1,c),c.lineEnd(),c.polygonEnd()),y=M=x=null}};return T}}function ee(n,t,e){if(Math.abs(t)<Ja)return 0>=n;var r=n/t;if(t>0){if(r>e[1])return!1;r>e[0]&&(e[0]=r)}else{if(r<e[0])return!1;r<e[1]&&(e[1]=r)}return!0}function re(n,t){function e(e,r){return e=n(e,r),t(e[0],e[1])}return n.invert&&t.invert&&(e.invert=function(e,r){return e=t.invert(e,r),e&&n.invert(e[0],e[1])}),e}function ie(n){var t=0,e=Wa/3,r=ye(n),i=r(t,e);return i.parallels=function(n){return arguments.length?r(t=n[0]*Wa/180,e=n[1]*Wa/180):[180*(t/Wa),180*(e/Wa)]},i}function ue(n,t){function e(n,t){var e=Math.sqrt(u-2*i*Math.sin(t))/i;return[e*Math.sin(n*=i),a-e*Math.cos(n)]}var r=Math.sin(n),i=(r+Math.sin(t))/2,u=1+r*(2*i-r),a=Math.sqrt(u)/i;return e.invert=function(n,t){var e=a-t;return[Math.atan2(n,e)/i,V((u-(n*n+e*e)*i*i)/(2*i))]},e}function ae(){function n(n,t){Xo+=i*n-r*t,r=n,i=t}var t,e,r,i;Jo.point=function(u,a){Jo.point=n,t=r=u,e=i=a},Jo.lineEnd=function(){n(t,e)}}function oe(n,t){Zo>n&&(Zo=n),n>$o&&($o=n),Bo>t&&(Bo=t),t>Wo&&(Wo=t)}function ce(){function n(n,t){a.push(\"M\",n,\",\",t,u)}function t(n,t){a.push(\"M\",n,\",\",t),o.point=e}function e(n,t){a.push(\"L\",n,\",\",t)}function r(){o.point=n}function i(){a.push(\"Z\")}var u=le(4.5),a=[],o={point:n,lineStart:function(){o.point=t},lineEnd:r,polygonStart:function(){o.lineEnd=i},polygonEnd:function(){o.lineEnd=r,o.point=n},pointRadius:function(n){return u=le(n),o},result:function(){if(a.length){var n=a.join(\"\");return a=[],n}}};return o}function le(n){return\"m0,\"+n+\"a\"+n+\",\"+n+\" 0 1,1 0,\"+-2*n+\"a\"+n+\",\"+n+\" 0 1,1 0,\"+2*n+\"z\"}function se(n,t){Co+=n,zo+=t,++Do}function fe(){function n(n,r){var i=n-t,u=r-e,a=Math.sqrt(i*i+u*u);jo+=a*(t+n)/2,Lo+=a*(e+r)/2,Ho+=a,se(t=n,e=r)}var t,e;Ko.point=function(r,i){Ko.point=n,se(t=r,e=i)}}function he(){Ko.point=se}function ge(){function n(n,t){var e=n-r,u=t-i,a=Math.sqrt(e*e+u*u);jo+=a*(r+n)/2,Lo+=a*(i+t)/2,Ho+=a,a=i*n-r*t,Fo+=a*(r+n),Po+=a*(i+t),Oo+=3*a,se(r=n,i=t)}var t,e,r,i;Ko.point=function(u,a){Ko.point=n,se(t=r=u,e=i=a)},Ko.lineEnd=function(){n(t,e)}}function pe(n){function t(t,e){n.moveTo(t,e),n.arc(t,e,a,0,2*Wa)}function e(t,e){n.moveTo(t,e),o.point=r}function r(t,e){n.lineTo(t,e)}function i(){o.point=t}function u(){n.closePath()}var a=4.5,o={point:t,lineStart:function(){o.point=e},lineEnd:i,polygonStart:function(){o.lineEnd=u},polygonEnd:function(){o.lineEnd=i,o.point=t},pointRadius:function(n){return a=n,o},result:s};return o}function de(n){function t(t){function r(e,r){e=n(e,r),t.point(e[0],e[1])}function i(){M=0/0,S.point=a,t.lineStart()}function a(r,i){var a=qt([r,i]),o=n(r,i);e(M,x,y,b,_,w,M=o[0],x=o[1],y=r,b=a[0],_=a[1],w=a[2],u,t),t.point(M,x)}function o(){S.point=r,t.lineEnd()}function c(){i(),S.point=l,S.lineEnd=s}function l(n,t){a(f=n,h=t),g=M,p=x,d=b,m=_,v=w,S.point=a}function s(){e(M,x,y,b,_,w,g,p,f,d,m,v,u,t),S.lineEnd=o,o()}var f,h,g,p,d,m,v,y,M,x,b,_,w,S={point:r,lineStart:i,lineEnd:o,polygonStart:function(){t.polygonStart(),S.lineStart=c},polygonEnd:function(){t.polygonEnd(),S.lineStart=i}};return S}function e(t,u,a,o,c,l,s,f,h,g,p,d,m,v){var y=s-t,M=f-u,x=y*y+M*M;if(x>4*r&&m--){var b=o+g,_=c+p,w=l+d,S=Math.sqrt(b*b+_*_+w*w),E=Math.asin(w/=S),k=Math.abs(Math.abs(w)-1)<Ja?(a+h)/2:Math.atan2(_,b),A=n(k,E),N=A[0],q=A[1],T=N-t,C=q-u,z=M*T-y*C;(z*z/x>r||Math.abs((y*T+M*C)/x-.5)>.3||i>o*g+c*p+l*d)&&(e(t,u,a,o,c,l,N,q,k,b/=S,_/=S,w,m,v),v.point(N,q),e(N,q,k,b,_,w,s,f,h,g,p,d,m,v))}}var r=.5,i=Math.cos(30*Ka),u=16;return t.precision=function(n){return arguments.length?(u=(r=n*n)>0&&16,t):Math.sqrt(r)},t}function me(n){var t=de(function(t,e){return n([t*Qa,e*Qa])});return function(n){return n=t(n),{point:function(t,e){n.point(t*Ka,e*Ka)},sphere:function(){n.sphere()},lineStart:function(){n.lineStart()},lineEnd:function(){n.lineEnd()},polygonStart:function(){n.polygonStart()},polygonEnd:function(){n.polygonEnd()}}}}function ve(n){return ye(function(){return n})()}function ye(n){function t(n){return n=o(n[0]*Ka,n[1]*Ka),[n[0]*h+c,l-n[1]*h]}function e(n){return n=o.invert((n[0]-c)/h,(l-n[1])/h),n&&[n[0]*Qa,n[1]*Qa]}function r(){o=re(a=be(v,y,M),u);var n=u(d,m);return c=g-n[0]*h,l=p+n[1]*h,i()}function i(){return s&&(s.valid=!1,s=null),t}var u,a,o,c,l,s,f=de(function(n,t){return n=u(n,t),[n[0]*h+c,l-n[1]*h]}),h=150,g=480,p=250,d=0,m=0,v=0,y=0,M=0,x=Ro,b=gt,_=null,w=null;return t.stream=function(n){return s&&(s.valid=!1),s=Me(a,x(f(b(n)))),s.valid=!0,s},t.clipAngle=function(n){return arguments.length?(x=null==n?(_=n,Ro):ne((_=+n)*Ka),i()):_},t.clipExtent=function(n){return arguments.length?(w=n,b=null==n?gt:te(n[0][0],n[0][1],n[1][0],n[1][1]),i()):w},t.scale=function(n){return arguments.length?(h=+n,r()):h},t.translate=function(n){return arguments.length?(g=+n[0],p=+n[1],r()):[g,p]},t.center=function(n){return arguments.length?(d=n[0]%360*Ka,m=n[1]%360*Ka,r()):[d*Qa,m*Qa]},t.rotate=function(n){return arguments.length?(v=n[0]%360*Ka,y=n[1]%360*Ka,M=n.length>2?n[2]%360*Ka:0,r()):[v*Qa,y*Qa,M*Qa]},da.rebind(t,f,\"precision\"),function(){return u=n.apply(this,arguments),t.invert=u.invert&&e,r()}}function Me(n,t){return{point:function(e,r){r=n(e*Ka,r*Ka),e=r[0],t.point(e>Wa?e-2*Wa:-Wa>e?e+2*Wa:e,r[1])},sphere:function(){t.sphere()},lineStart:function(){t.lineStart()},lineEnd:function(){t.lineEnd()},polygonStart:function(){t.polygonStart()},polygonEnd:function(){t.polygonEnd()}}}function xe(n,t){return[n,t]}function be(n,t,e){return n?t||e?re(we(n),Se(t,e)):we(n):t||e?Se(t,e):xe}function _e(n){return function(t,e){return t+=n,[t>Wa?t-2*Wa:-Wa>t?t+2*Wa:t,e]}}function we(n){var t=_e(n);return t.invert=_e(-n),t}function Se(n,t){function e(n,t){var e=Math.cos(t),o=Math.cos(n)*e,c=Math.sin(n)*e,l=Math.sin(t),s=l*r+o*i;return[Math.atan2(c*u-s*a,o*r-l*i),V(s*u+c*a)]}var r=Math.cos(n),i=Math.sin(n),u=Math.cos(t),a=Math.sin(t);return e.invert=function(n,t){var e=Math.cos(t),o=Math.cos(n)*e,c=Math.sin(n)*e,l=Math.sin(t),s=l*u-c*a;return[Math.atan2(c*u+l*a,o*r+s*i),V(s*r-o*i)]},e}function Ee(n,t){var e=Math.cos(n),r=Math.sin(n);return function(i,u,a,o){null!=i?(i=ke(e,i),u=ke(e,u),(a>0?u>i:i>u)&&(i+=2*a*Wa)):(i=n+2*a*Wa,u=n);for(var c,l=a*t,s=i;a>0?s>u:u>s;s-=l)o.point((c=Lt([e,-r*Math.cos(s),-r*Math.sin(s)]))[0],c[1])}}function ke(n,t){var e=qt(t);e[0]-=n,jt(e);var r=I(-e[1]);return((-e[2]<0?-r:r)+2*Math.PI-Ja)%(2*Math.PI)}function Ae(n,t,e){var r=da.range(n,t-Ja,e).concat(t);return function(n){return r.map(function(t){return[n,t]})}}function Ne(n,t,e){var r=da.range(n,t-Ja,e).concat(t);return function(n){return r.map(function(t){return[t,n]})}}function qe(n){return n.source}function Te(n){return n.target}function Ce(n,t,e,r){var i=Math.cos(t),u=Math.sin(t),a=Math.cos(r),o=Math.sin(r),c=i*Math.cos(n),l=i*Math.sin(n),s=a*Math.cos(e),f=a*Math.sin(e),h=2*Math.asin(Math.sqrt(B(r-t)+i*a*B(e-n))),g=1/Math.sin(h),p=h?function(n){var t=Math.sin(n*=h)*g,e=Math.sin(h-n)*g,r=e*c+t*s,i=e*l+t*f,a=e*u+t*o;return[Math.atan2(i,r)*Qa,Math.atan2(a,Math.sqrt(r*r+i*i))*Qa]}:function(){return[n*Qa,t*Qa]};return p.distance=h,p}function ze(){function n(n,i){var u=Math.sin(i*=Ka),a=Math.cos(i),o=Math.abs((n*=Ka)-t),c=Math.cos(o);Qo+=Math.atan2(Math.sqrt((o=a*Math.sin(o))*o+(o=r*u-e*a*c)*o),e*u+r*a*c),t=n,e=u,r=a}var t,e,r;nc.point=function(i,u){t=i*Ka,e=Math.sin(u*=Ka),r=Math.cos(u),nc.point=n},nc.lineEnd=function(){nc.point=nc.lineEnd=s}}function De(n,t){function e(t,e){var r=Math.cos(t),i=Math.cos(e),u=n(r*i);return[u*i*Math.sin(t),u*Math.sin(e)]}return e.invert=function(n,e){var r=Math.sqrt(n*n+e*e),i=t(r),u=Math.sin(i),a=Math.cos(i);return[Math.atan2(n*u,r*a),Math.asin(r&&e*u/r)]},e}function je(n,t){function e(n,t){var e=Math.abs(Math.abs(t)-Wa/2)<Ja?0:a/Math.pow(i(t),u);return[e*Math.sin(u*n),a-e*Math.cos(u*n)]}var r=Math.cos(n),i=function(n){return Math.tan(Wa/4+n/2)},u=n===t?Math.sin(n):Math.log(r/Math.cos(t))/Math.log(i(t)/i(n)),a=r*Math.pow(i(n),u)/u;return u?(e.invert=function(n,t){var e=a-t,r=U(u)*Math.sqrt(n*n+e*e);return[Math.atan2(n,e)/u,2*Math.atan(Math.pow(a/r,1/u))-Wa/2]},e):He}function Le(n,t){function e(n,t){var e=u-t;return[e*Math.sin(i*n),u-e*Math.cos(i*n)]}var r=Math.cos(n),i=n===t?Math.sin(n):(r-Math.cos(t))/(t-n),u=r/i+n;return Math.abs(i)<Ja?xe:(e.invert=function(n,t){var e=u-t;return[Math.atan2(n,e)/i,u-U(i)*Math.sqrt(n*n+e*e)]},e)}function He(n,t){return[n,Math.log(Math.tan(Wa/4+t/2))]}function Fe(n){var t,e=ve(n),r=e.scale,i=e.translate,u=e.clipExtent;return e.scale=function(){var n=r.apply(e,arguments);return n===e?t?e.clipExtent(null):e:n},e.translate=function(){var n=i.apply(e,arguments);return n===e?t?e.clipExtent(null):e:n},e.clipExtent=function(n){var a=u.apply(e,arguments);if(a===e){if(t=null==n){var o=Wa*r(),c=i();u([[c[0]-o,c[1]-o],[c[0]+o,c[1]+o]])}}else t&&(a=null);return a},e.clipExtent(null)}function Pe(n,t){var e=Math.cos(t)*Math.sin(n);return[Math.log((1+e)/(1-e))/2,Math.atan2(Math.tan(t),Math.cos(n))]}function Oe(n){function t(t){function a(){l.push(\"M\",u(n(s),o))}for(var c,l=[],s=[],f=-1,h=t.length,g=ht(e),p=ht(r);++f<h;)i.call(this,c=t[f],f)?s.push([+g.call(this,c,f),+p.call(this,c,f)]):s.length&&(a(),s=[]);return s.length&&a(),l.length?l.join(\"\"):null}var e=Ye,r=Re,i=Ut,u=Ue,a=u.key,o=.7;return t.x=function(n){return arguments.length?(e=n,t):e},t.y=function(n){return arguments.length?(r=n,t):r},t.defined=function(n){return arguments.length?(i=n,t):i},t.interpolate=function(n){return arguments.length?(a=\"function\"==typeof n?u=n:(u=ac.get(n)||Ue).key,t):a},t.tension=function(n){return arguments.length?(o=n,t):o},t}function Ye(n){return n[0]}function Re(n){return n[1]}function Ue(n){return n.join(\"L\")}function Ie(n){return Ue(n)+\"Z\"}function Ve(n){for(var t=0,e=n.length,r=n[0],i=[r[0],\",\",r[1]];++t<e;)i.push(\"H\",(r[0]+(r=n[t])[0])/2,\"V\",r[1]);return e>1&&i.push(\"H\",r[0]),i.join(\"\")}function Xe(n){for(var t=0,e=n.length,r=n[0],i=[r[0],\",\",r[1]];++t<e;)i.push(\"V\",(r=n[t])[1],\"H\",r[0]);return i.join(\"\")}function Ze(n){for(var t=0,e=n.length,r=n[0],i=[r[0],\",\",r[1]];++t<e;)i.push(\"H\",(r=n[t])[0],\"V\",r[1]);return i.join(\"\")}function Be(n,t){return n.length<4?Ue(n):n[1]+Je(n.slice(1,n.length-1),Ge(n,t))}function $e(n,t){return n.length<3?Ue(n):n[0]+Je((n.push(n[0]),n),Ge([n[n.length-2]].concat(n,[n[1]]),t))}function We(n,t){return n.length<3?Ue(n):n[0]+Je(n,Ge(n,t))}function Je(n,t){if(t.length<1||n.length!=t.length&&n.length!=t.length+2)return Ue(n);var e=n.length!=t.length,r=\"\",i=n[0],u=n[1],a=t[0],o=a,c=1;if(e&&(r+=\"Q\"+(u[0]-2*a[0]/3)+\",\"+(u[1]-2*a[1]/3)+\",\"+u[0]+\",\"+u[1],i=n[1],c=2),t.length>1){o=t[1],u=n[c],c++,r+=\"C\"+(i[0]+a[0])+\",\"+(i[1]+a[1])+\",\"+(u[0]-o[0])+\",\"+(u[1]-o[1])+\",\"+u[0]+\",\"+u[1];for(var l=2;l<t.length;l++,c++)u=n[c],o=t[l],r+=\"S\"+(u[0]-o[0])+\",\"+(u[1]-o[1])+\",\"+u[0]+\",\"+u[1]}if(e){var s=n[c];r+=\"Q\"+(u[0]+2*o[0]/3)+\",\"+(u[1]+2*o[1]/3)+\",\"+s[0]+\",\"+s[1]}return r}function Ge(n,t){for(var e,r=[],i=(1-t)/2,u=n[0],a=n[1],o=1,c=n.length;++o<c;)e=u,u=a,a=n[o],r.push([i*(a[0]-e[0]),i*(a[1]-e[1])]);return r}function Ke(n){if(n.length<3)return Ue(n);var t=1,e=n.length,r=n[0],i=r[0],u=r[1],a=[i,i,i,(r=n[1])[0]],o=[u,u,u,r[1]],c=[i,\",\",u,\"L\",er(lc,a),\",\",er(lc,o)];for(n.push(n[e-1]);++t<=e;)r=n[t],a.shift(),a.push(r[0]),o.shift(),o.push(r[1]),rr(c,a,o);return n.pop(),c.push(\"L\",r),c.join(\"\")}function Qe(n){if(n.length<4)return Ue(n);for(var t,e=[],r=-1,i=n.length,u=[0],a=[0];++r<3;)t=n[r],u.push(t[0]),a.push(t[1]);for(e.push(er(lc,u)+\",\"+er(lc,a)),--r;++r<i;)t=n[r],u.shift(),u.push(t[0]),a.shift(),a.push(t[1]),rr(e,u,a);return e.join(\"\")}function nr(n){for(var t,e,r=-1,i=n.length,u=i+4,a=[],o=[];++r<4;)e=n[r%i],a.push(e[0]),o.push(e[1]);for(t=[er(lc,a),\",\",er(lc,o)],--r;++r<u;)e=n[r%i],a.shift(),a.push(e[0]),o.shift(),o.push(e[1]),rr(t,a,o);return t.join(\"\")}function tr(n,t){var e=n.length-1;if(e)for(var r,i,u=n[0][0],a=n[0][1],o=n[e][0]-u,c=n[e][1]-a,l=-1;++l<=e;)r=n[l],i=l/e,r[0]=t*r[0]+(1-t)*(u+i*o),r[1]=t*r[1]+(1-t)*(a+i*c);return Ke(n)}function er(n,t){return n[0]*t[0]+n[1]*t[1]+n[2]*t[2]+n[3]*t[3]}function rr(n,t,e){n.push(\"C\",er(oc,t),\",\",er(oc,e),\",\",er(cc,t),\",\",er(cc,e),\",\",er(lc,t),\",\",er(lc,e))}function ir(n,t){return(t[1]-n[1])/(t[0]-n[0])\n}function ur(n){for(var t=0,e=n.length-1,r=[],i=n[0],u=n[1],a=r[0]=ir(i,u);++t<e;)r[t]=(a+(a=ir(i=u,u=n[t+1])))/2;return r[t]=a,r}function ar(n){for(var t,e,r,i,u=[],a=ur(n),o=-1,c=n.length-1;++o<c;)t=ir(n[o],n[o+1]),Math.abs(t)<1e-6?a[o]=a[o+1]=0:(e=a[o]/t,r=a[o+1]/t,i=e*e+r*r,i>9&&(i=3*t/Math.sqrt(i),a[o]=i*e,a[o+1]=i*r));for(o=-1;++o<=c;)i=(n[Math.min(c,o+1)][0]-n[Math.max(0,o-1)][0])/(6*(1+a[o]*a[o])),u.push([i||0,a[o]*i||0]);return u}function or(n){return n.length<3?Ue(n):n[0]+Je(n,ar(n))}function cr(n,t,e,r){var i,u,a,o,c,l,s;return i=r[n],u=i[0],a=i[1],i=r[t],o=i[0],c=i[1],i=r[e],l=i[0],s=i[1],(s-a)*(o-u)-(c-a)*(l-u)>0}function lr(n,t,e){return(e[0]-t[0])*(n[1]-t[1])<(e[1]-t[1])*(n[0]-t[0])}function sr(n,t,e,r){var i=n[0],u=e[0],a=t[0]-i,o=r[0]-u,c=n[1],l=e[1],s=t[1]-c,f=r[1]-l,h=(o*(c-l)-f*(i-u))/(f*a-o*s);return[i+h*a,c+h*s]}function fr(n){var t=n[0],e=n[n.length-1];return!(t[0]-e[0]||t[1]-e[1])}function hr(n,t){var e={list:n.map(function(n,t){return{index:t,x:n[0],y:n[1]}}).sort(function(n,t){return n.y<t.y?-1:n.y>t.y?1:n.x<t.x?-1:n.x>t.x?1:0}),bottomSite:null},r={list:[],leftEnd:null,rightEnd:null,init:function(){r.leftEnd=r.createHalfEdge(null,\"l\"),r.rightEnd=r.createHalfEdge(null,\"l\"),r.leftEnd.r=r.rightEnd,r.rightEnd.l=r.leftEnd,r.list.unshift(r.leftEnd,r.rightEnd)},createHalfEdge:function(n,t){return{edge:n,side:t,vertex:null,l:null,r:null}},insert:function(n,t){t.l=n,t.r=n.r,n.r.l=t,n.r=t},leftBound:function(n){var t=r.leftEnd;do t=t.r;while(t!=r.rightEnd&&i.rightOf(t,n));return t=t.l},del:function(n){n.l.r=n.r,n.r.l=n.l,n.edge=null},right:function(n){return n.r},left:function(n){return n.l},leftRegion:function(n){return null==n.edge?e.bottomSite:n.edge.region[n.side]},rightRegion:function(n){return null==n.edge?e.bottomSite:n.edge.region[fc[n.side]]}},i={bisect:function(n,t){var e={region:{l:n,r:t},ep:{l:null,r:null}},r=t.x-n.x,i=t.y-n.y,u=r>0?r:-r,a=i>0?i:-i;return e.c=n.x*r+n.y*i+.5*(r*r+i*i),u>a?(e.a=1,e.b=i/r,e.c/=r):(e.b=1,e.a=r/i,e.c/=i),e},intersect:function(n,t){var e=n.edge,r=t.edge;if(!e||!r||e.region.r==r.region.r)return null;var i=e.a*r.b-e.b*r.a;if(Math.abs(i)<1e-10)return null;var u,a,o=(e.c*r.b-r.c*e.b)/i,c=(r.c*e.a-e.c*r.a)/i,l=e.region.r,s=r.region.r;l.y<s.y||l.y==s.y&&l.x<s.x?(u=n,a=e):(u=t,a=r);var f=o>=a.region.r.x;return f&&\"l\"===u.side||!f&&\"r\"===u.side?null:{x:o,y:c}},rightOf:function(n,t){var e=n.edge,r=e.region.r,i=t.x>r.x;if(i&&\"l\"===n.side)return 1;if(!i&&\"r\"===n.side)return 0;if(1===e.a){var u=t.y-r.y,a=t.x-r.x,o=0,c=0;if(!i&&e.b<0||i&&e.b>=0?c=o=u>=e.b*a:(c=t.x+t.y*e.b>e.c,e.b<0&&(c=!c),c||(o=1)),!o){var l=r.x-e.region.l.x;c=e.b*(a*a-u*u)<l*u*(1+2*a/l+e.b*e.b),e.b<0&&(c=!c)}}else{var s=e.c-e.a*t.x,f=t.y-s,h=t.x-r.x,g=s-r.y;c=f*f>h*h+g*g}return\"l\"===n.side?c:!c},endPoint:function(n,e,r){n.ep[e]=r,n.ep[fc[e]]&&t(n)},distance:function(n,t){var e=n.x-t.x,r=n.y-t.y;return Math.sqrt(e*e+r*r)}},u={list:[],insert:function(n,t,e){n.vertex=t,n.ystar=t.y+e;for(var r=0,i=u.list,a=i.length;a>r;r++){var o=i[r];if(!(n.ystar>o.ystar||n.ystar==o.ystar&&t.x>o.vertex.x))break}i.splice(r,0,n)},del:function(n){for(var t=0,e=u.list,r=e.length;r>t&&e[t]!=n;++t);e.splice(t,1)},empty:function(){return 0===u.list.length},nextEvent:function(n){for(var t=0,e=u.list,r=e.length;r>t;++t)if(e[t]==n)return e[t+1];return null},min:function(){var n=u.list[0];return{x:n.vertex.x,y:n.ystar}},extractMin:function(){return u.list.shift()}};r.init(),e.bottomSite=e.list.shift();for(var a,o,c,l,s,f,h,g,p,d,m,v,y,M=e.list.shift();;)if(u.empty()||(a=u.min()),M&&(u.empty()||M.y<a.y||M.y==a.y&&M.x<a.x))o=r.leftBound(M),c=r.right(o),h=r.rightRegion(o),v=i.bisect(h,M),f=r.createHalfEdge(v,\"l\"),r.insert(o,f),d=i.intersect(o,f),d&&(u.del(o),u.insert(o,d,i.distance(d,M))),o=f,f=r.createHalfEdge(v,\"r\"),r.insert(o,f),d=i.intersect(f,c),d&&u.insert(f,d,i.distance(d,M)),M=e.list.shift();else{if(u.empty())break;o=u.extractMin(),l=r.left(o),c=r.right(o),s=r.right(c),h=r.leftRegion(o),g=r.rightRegion(c),m=o.vertex,i.endPoint(o.edge,o.side,m),i.endPoint(c.edge,c.side,m),r.del(o),u.del(c),r.del(c),y=\"l\",h.y>g.y&&(p=h,h=g,g=p,y=\"r\"),v=i.bisect(h,g),f=r.createHalfEdge(v,y),r.insert(l,f),i.endPoint(v,fc[y],m),d=i.intersect(l,f),d&&(u.del(l),u.insert(l,d,i.distance(d,h))),d=i.intersect(f,s),d&&u.insert(f,d,i.distance(d,h))}for(o=r.right(r.leftEnd);o!=r.rightEnd;o=r.right(o))t(o.edge)}function gr(n){return n.x}function pr(n){return n.y}function dr(){return{leaf:!0,nodes:[],point:null,x:null,y:null}}function mr(n,t,e,r,i,u){if(!n(t,e,r,i,u)){var a=.5*(e+i),o=.5*(r+u),c=t.nodes;c[0]&&mr(n,c[0],e,r,a,o),c[1]&&mr(n,c[1],a,r,i,o),c[2]&&mr(n,c[2],e,o,a,u),c[3]&&mr(n,c[3],a,o,i,u)}}function vr(n,t){n=da.rgb(n),t=da.rgb(t);var e=n.r,r=n.g,i=n.b,u=t.r-e,a=t.g-r,o=t.b-i;return function(t){return n.r=Math.round(e+u*t),n.g=Math.round(r+a*t),n.b=Math.round(i+o*t),n}}function yr(n,t){var e,r={},i={};for(e in n)e in t?r[e]=br(n[e],t[e]):i[e]=n[e];for(e in t)e in n||(i[e]=t[e]);return function(n){for(e in r)i[e]=r[e](n);return i}}function Mr(n,t){return t-=n=+n,function(e){return n+t*e}}function xr(n,t){var e,r,i,u,a,o=0,c=0,l=[],s=[];for(n+=\"\",t+=\"\",hc.lastIndex=0,r=0;e=hc.exec(t);++r)e.index&&l.push(t.substring(o,c=e.index)),s.push({i:l.length,x:e[0]}),l.push(null),o=hc.lastIndex;for(o<t.length&&l.push(t.substring(o)),r=0,u=s.length;(e=hc.exec(n))&&u>r;++r)if(a=s[r],a.x==e[0]){if(a.i)if(null==l[a.i+1])for(l[a.i-1]+=a.x,l.splice(a.i,1),i=r+1;u>i;++i)s[i].i--;else for(l[a.i-1]+=a.x+l[a.i+1],l.splice(a.i,2),i=r+1;u>i;++i)s[i].i-=2;else if(null==l[a.i+1])l[a.i]=a.x;else for(l[a.i]=a.x+l[a.i+1],l.splice(a.i+1,1),i=r+1;u>i;++i)s[i].i--;s.splice(r,1),u--,r--}else a.x=Mr(parseFloat(e[0]),parseFloat(a.x));for(;u>r;)a=s.pop(),null==l[a.i+1]?l[a.i]=a.x:(l[a.i]=a.x+l[a.i+1],l.splice(a.i+1,1)),u--;return 1===l.length?null==l[0]?(a=s[0].x,function(n){return a(n)+\"\"}):function(){return t}:function(n){for(r=0;u>r;++r)l[(a=s[r]).i]=a.x(n);return l.join(\"\")}}function br(n,t){for(var e,r=da.interpolators.length;--r>=0&&!(e=da.interpolators[r](n,t)););return e}function _r(n,t){var e,r=[],i=[],u=n.length,a=t.length,o=Math.min(n.length,t.length);for(e=0;o>e;++e)r.push(br(n[e],t[e]));for(;u>e;++e)i[e]=n[e];for(;a>e;++e)i[e]=t[e];return function(n){for(e=0;o>e;++e)i[e]=r[e](n);return i}}function wr(n){return function(t){return 0>=t?0:t>=1?1:n(t)}}function Sr(n){return function(t){return 1-n(1-t)}}function Er(n){return function(t){return.5*(.5>t?n(2*t):2-n(2-2*t))}}function kr(n){return n*n}function Ar(n){return n*n*n}function Nr(n){if(0>=n)return 0;if(n>=1)return 1;var t=n*n,e=t*n;return 4*(.5>n?e:3*(n-t)+e-.75)}function qr(n){return function(t){return Math.pow(t,n)}}function Tr(n){return 1-Math.cos(n*Wa/2)}function Cr(n){return Math.pow(2,10*(n-1))}function zr(n){return 1-Math.sqrt(1-n*n)}function Dr(n,t){var e;return arguments.length<2&&(t=.45),arguments.length?e=t/(2*Wa)*Math.asin(1/n):(n=1,e=t/4),function(r){return 1+n*Math.pow(2,10*-r)*Math.sin(2*(r-e)*Wa/t)}}function jr(n){return n||(n=1.70158),function(t){return t*t*((n+1)*t-n)}}function Lr(n){return 1/2.75>n?7.5625*n*n:2/2.75>n?7.5625*(n-=1.5/2.75)*n+.75:2.5/2.75>n?7.5625*(n-=2.25/2.75)*n+.9375:7.5625*(n-=2.625/2.75)*n+.984375}function Hr(n,t){n=da.hcl(n),t=da.hcl(t);var e=n.h,r=n.c,i=n.l,u=t.h-e,a=t.c-r,o=t.l-i;return isNaN(a)&&(a=0,r=isNaN(r)?t.c:r),isNaN(u)?(u=0,e=isNaN(e)?t.h:e):u>180?u-=360:-180>u&&(u+=360),function(t){return n.h=e+u*t,n.c=r+a*t,n.l=i+o*t,n}}function Fr(n,t){n=da.hsl(n),t=da.hsl(t);var e=n.h,r=n.s,i=n.l,u=t.h-e,a=t.s-r,o=t.l-i;return isNaN(a)&&(a=0,r=isNaN(r)?t.s:r),isNaN(u)?(u=0,e=isNaN(e)?t.h:e):u>180?u-=360:-180>u&&(u+=360),function(t){return n.h=e+u*t,n.s=r+a*t,n.l=i+o*t,n}}function Pr(n,t){n=da.lab(n),t=da.lab(t);var e=n.l,r=n.a,i=n.b,u=t.l-e,a=t.a-r,o=t.b-i;return function(t){return n.l=e+u*t,n.a=r+a*t,n.b=i+o*t,n}}function Or(n,t){return t-=n,function(e){return Math.round(n+t*e)}}function Yr(n){var t=[n.a,n.b],e=[n.c,n.d],r=Ur(t),i=Rr(t,e),u=Ur(Ir(e,t,-i))||0;t[0]*e[1]<e[0]*t[1]&&(t[0]*=-1,t[1]*=-1,r*=-1,i*=-1),this.rotate=(r?Math.atan2(t[1],t[0]):Math.atan2(-e[0],e[1]))*Qa,this.translate=[n.e,n.f],this.scale=[r,u],this.skew=u?Math.atan2(i,u)*Qa:0}function Rr(n,t){return n[0]*t[0]+n[1]*t[1]}function Ur(n){var t=Math.sqrt(Rr(n,n));return t&&(n[0]/=t,n[1]/=t),t}function Ir(n,t,e){return n[0]+=e*t[0],n[1]+=e*t[1],n}function Vr(n,t){var e,r=[],i=[],u=da.transform(n),a=da.transform(t),o=u.translate,c=a.translate,l=u.rotate,s=a.rotate,f=u.skew,h=a.skew,g=u.scale,p=a.scale;return o[0]!=c[0]||o[1]!=c[1]?(r.push(\"translate(\",null,\",\",null,\")\"),i.push({i:1,x:Mr(o[0],c[0])},{i:3,x:Mr(o[1],c[1])})):c[0]||c[1]?r.push(\"translate(\"+c+\")\"):r.push(\"\"),l!=s?(l-s>180?s+=360:s-l>180&&(l+=360),i.push({i:r.push(r.pop()+\"rotate(\",null,\")\")-2,x:Mr(l,s)})):s&&r.push(r.pop()+\"rotate(\"+s+\")\"),f!=h?i.push({i:r.push(r.pop()+\"skewX(\",null,\")\")-2,x:Mr(f,h)}):h&&r.push(r.pop()+\"skewX(\"+h+\")\"),g[0]!=p[0]||g[1]!=p[1]?(e=r.push(r.pop()+\"scale(\",null,\",\",null,\")\"),i.push({i:e-4,x:Mr(g[0],p[0])},{i:e-2,x:Mr(g[1],p[1])})):(1!=p[0]||1!=p[1])&&r.push(r.pop()+\"scale(\"+p+\")\"),e=i.length,function(n){for(var t,u=-1;++u<e;)r[(t=i[u]).i]=t.x(n);return r.join(\"\")}}function Xr(n,t){return t=t-(n=+n)?1/(t-n):0,function(e){return(e-n)*t}}function Zr(n,t){return t=t-(n=+n)?1/(t-n):0,function(e){return Math.max(0,Math.min(1,(e-n)*t))}}function Br(n){for(var t=n.source,e=n.target,r=Wr(t,e),i=[t];t!==r;)t=t.parent,i.push(t);for(var u=i.length;e!==r;)i.splice(u,0,e),e=e.parent;return i}function $r(n){for(var t=[],e=n.parent;null!=e;)t.push(n),n=e,e=e.parent;return t.push(n),t}function Wr(n,t){if(n===t)return n;for(var e=$r(n),r=$r(t),i=e.pop(),u=r.pop(),a=null;i===u;)a=i,i=e.pop(),u=r.pop();return a}function Jr(n){n.fixed|=2}function Gr(n){n.fixed&=-7}function Kr(n){n.fixed|=4,n.px=n.x,n.py=n.y}function Qr(n){n.fixed&=-5}function ni(n,t,e){var r=0,i=0;if(n.charge=0,!n.leaf)for(var u,a=n.nodes,o=a.length,c=-1;++c<o;)u=a[c],null!=u&&(ni(u,t,e),n.charge+=u.charge,r+=u.charge*u.cx,i+=u.charge*u.cy);if(n.point){n.leaf||(n.point.x+=Math.random()-.5,n.point.y+=Math.random()-.5);var l=t*e[n.point.index];n.charge+=n.pointCharge=l,r+=l*n.point.x,i+=l*n.point.y}n.cx=r/n.charge,n.cy=i/n.charge}function ti(n,t){return da.rebind(n,t,\"sort\",\"children\",\"value\"),n.nodes=n,n.links=ui,n}function ei(n){return n.children}function ri(n){return n.value}function ii(n,t){return t.value-n.value}function ui(n){return da.merge(n.map(function(n){return(n.children||[]).map(function(t){return{source:n,target:t}})}))}function ai(n){return n.x}function oi(n){return n.y}function ci(n,t,e){n.y0=t,n.y=e}function li(n){return da.range(n.length)}function si(n){for(var t=-1,e=n[0].length,r=[];++t<e;)r[t]=0;return r}function fi(n){for(var t,e=1,r=0,i=n[0][1],u=n.length;u>e;++e)(t=n[e][1])>i&&(r=e,i=t);return r}function hi(n){return n.reduce(gi,0)}function gi(n,t){return n+t[1]}function pi(n,t){return di(n,Math.ceil(Math.log(t.length)/Math.LN2+1))}function di(n,t){for(var e=-1,r=+n[0],i=(n[1]-r)/t,u=[];++e<=t;)u[e]=i*e+r;return u}function mi(n){return[da.min(n),da.max(n)]}function vi(n,t){return n.parent==t.parent?1:2}function yi(n){var t=n.children;return t&&t.length?t[0]:n._tree.thread}function Mi(n){var t,e=n.children;return e&&(t=e.length)?e[t-1]:n._tree.thread}function xi(n,t){var e=n.children;if(e&&(i=e.length))for(var r,i,u=-1;++u<i;)t(r=xi(e[u],t),n)>0&&(n=r);return n}function bi(n,t){return n.x-t.x}function _i(n,t){return t.x-n.x}function wi(n,t){return n.depth-t.depth}function Si(n,t){function e(n,r){var i=n.children;if(i&&(a=i.length))for(var u,a,o=null,c=-1;++c<a;)u=i[c],e(u,o),o=u;t(n,r)}e(n,null)}function Ei(n){for(var t,e=0,r=0,i=n.children,u=i.length;--u>=0;)t=i[u]._tree,t.prelim+=e,t.mod+=e,e+=t.shift+(r+=t.change)}function ki(n,t,e){n=n._tree,t=t._tree;var r=e/(t.number-n.number);n.change+=r,t.change-=r,t.shift+=e,t.prelim+=e,t.mod+=e}function Ai(n,t,e){return n._tree.ancestor.parent==t.parent?n._tree.ancestor:e}function Ni(n,t){return n.value-t.value}function qi(n,t){var e=n._pack_next;n._pack_next=t,t._pack_prev=n,t._pack_next=e,e._pack_prev=t}function Ti(n,t){n._pack_next=t,t._pack_prev=n}function Ci(n,t){var e=t.x-n.x,r=t.y-n.y,i=n.r+t.r;return.999*i*i>e*e+r*r}function zi(n){function t(n){s=Math.min(n.x-n.r,s),f=Math.max(n.x+n.r,f),h=Math.min(n.y-n.r,h),g=Math.max(n.y+n.r,g)}if((e=n.children)&&(l=e.length)){var e,r,i,u,a,o,c,l,s=1/0,f=-1/0,h=1/0,g=-1/0;if(e.forEach(Di),r=e[0],r.x=-r.r,r.y=0,t(r),l>1&&(i=e[1],i.x=i.r,i.y=0,t(i),l>2))for(u=e[2],Hi(r,i,u),t(u),qi(r,u),r._pack_prev=u,qi(u,i),i=r._pack_next,a=3;l>a;a++){Hi(r,i,u=e[a]);var p=0,d=1,m=1;for(o=i._pack_next;o!==i;o=o._pack_next,d++)if(Ci(o,u)){p=1;break}if(1==p)for(c=r._pack_prev;c!==o._pack_prev&&!Ci(c,u);c=c._pack_prev,m++);p?(m>d||d==m&&i.r<r.r?Ti(r,i=o):Ti(r=c,i),a--):(qi(r,u),i=u,t(u))}var v=(s+f)/2,y=(h+g)/2,M=0;for(a=0;l>a;a++)u=e[a],u.x-=v,u.y-=y,M=Math.max(M,u.r+Math.sqrt(u.x*u.x+u.y*u.y));n.r=M,e.forEach(ji)}}function Di(n){n._pack_next=n._pack_prev=n}function ji(n){delete n._pack_next,delete n._pack_prev}function Li(n,t,e,r){var i=n.children;if(n.x=t+=r*n.x,n.y=e+=r*n.y,n.r*=r,i)for(var u=-1,a=i.length;++u<a;)Li(i[u],t,e,r)}function Hi(n,t,e){var r=n.r+e.r,i=t.x-n.x,u=t.y-n.y;if(r&&(i||u)){var a=t.r+e.r,o=i*i+u*u;a*=a,r*=r;var c=.5+(r-a)/(2*o),l=Math.sqrt(Math.max(0,2*a*(r+o)-(r-=o)*r-a*a))/(2*o);e.x=n.x+c*i+l*u,e.y=n.y+c*u-l*i}else e.x=n.x+r,e.y=n.y}function Fi(n){return 1+da.max(n,function(n){return n.y})}function Pi(n){return n.reduce(function(n,t){return n+t.x},0)/n.length}function Oi(n){var t=n.children;return t&&t.length?Oi(t[0]):n}function Yi(n){var t,e=n.children;return e&&(t=e.length)?Yi(e[t-1]):n}function Ri(n){return{x:n.x,y:n.y,dx:n.dx,dy:n.dy}}function Ui(n,t){var e=n.x+t[3],r=n.y+t[0],i=n.dx-t[1]-t[3],u=n.dy-t[0]-t[2];return 0>i&&(e+=i/2,i=0),0>u&&(r+=u/2,u=0),{x:e,y:r,dx:i,dy:u}}function Ii(n){var t=n[0],e=n[n.length-1];return e>t?[t,e]:[e,t]}function Vi(n){return n.rangeExtent?n.rangeExtent():Ii(n.range())}function Xi(n,t,e,r){var i=e(n[0],n[1]),u=r(t[0],t[1]);return function(n){return u(i(n))}}function Zi(n,t){var e,r=0,i=n.length-1,u=n[r],a=n[i];return u>a&&(e=r,r=i,i=e,e=u,u=a,a=e),n[r]=t.floor(u),n[i]=t.ceil(a),n}function Bi(n){return n?{floor:function(t){return Math.floor(t/n)*n},ceil:function(t){return Math.ceil(t/n)*n}}:_c}function $i(n,t,e,r){var i=[],u=[],a=0,o=Math.min(n.length,t.length)-1;for(n[o]<n[0]&&(n=n.slice().reverse(),t=t.slice().reverse());++a<=o;)i.push(e(n[a-1],n[a])),u.push(r(t[a-1],t[a]));return function(t){var e=da.bisect(n,t,1,o)-1;return u[e](i[e](t))}}function Wi(n,t,e,r){function i(){var i=Math.min(n.length,t.length)>2?$i:Xi,c=r?Zr:Xr;return a=i(n,t,c,e),o=i(t,n,c,br),u}function u(n){return a(n)}var a,o;return u.invert=function(n){return o(n)},u.domain=function(t){return arguments.length?(n=t.map(Number),i()):n},u.range=function(n){return arguments.length?(t=n,i()):t},u.rangeRound=function(n){return u.range(n).interpolate(Or)},u.clamp=function(n){return arguments.length?(r=n,i()):r},u.interpolate=function(n){return arguments.length?(e=n,i()):e},u.ticks=function(t){return nu(n,t)},u.tickFormat=function(t,e){return tu(n,t,e)},u.nice=function(t){return Gi(n,t),i()},u.copy=function(){return Wi(n,t,e,r)},i()}function Ji(n,t){return da.rebind(n,t,\"range\",\"rangeRound\",\"interpolate\",\"clamp\")}function Gi(n,t){return Zi(n,Bi(t?Qi(n,t)[2]:Ki(n)))}function Ki(n){var t=Ii(n),e=t[1]-t[0];return Math.pow(10,Math.round(Math.log(e)/Math.LN10)-1)}function Qi(n,t){var e=Ii(n),r=e[1]-e[0],i=Math.pow(10,Math.floor(Math.log(r/t)/Math.LN10)),u=t/r*i;return.15>=u?i*=10:.35>=u?i*=5:.75>=u&&(i*=2),e[0]=Math.ceil(e[0]/i)*i,e[1]=Math.floor(e[1]/i)*i+.5*i,e[2]=i,e}function nu(n,t){return da.range.apply(da,Qi(n,t))}function tu(n,t,e){var r=-Math.floor(Math.log(Qi(n,t)[2])/Math.LN10+.01);return da.format(e?e.replace(Mo,function(n,t,e,i,u,a,o,c,l,s){return[t,e,i,u,a,o,c,l||\".\"+(r-2*(\"%\"===s)),s].join(\"\")}):\",.\"+r+\"f\")}function eu(n,t,e,r){function i(n){return(e?Math.log(0>n?0:n):-Math.log(n>0?0:-n))/Math.log(t)}function u(n){return e?Math.pow(t,n):-Math.pow(t,-n)}function a(t){return n(i(t))}return a.invert=function(t){return u(n.invert(t))},a.domain=function(t){return arguments.length?(e=t[0]>=0,n.domain((r=t.map(Number)).map(i)),a):r},a.base=function(e){return arguments.length?(t=+e,n.domain(r.map(i)),a):t},a.nice=function(){var t=Zi(r.map(i),e?Math:Sc);return n.domain(t),r=t.map(u),a},a.ticks=function(){var n=Ii(r),a=[];if(n.every(isFinite)){var o=n[0],c=n[1],l=Math.floor(i(o)),s=Math.ceil(i(c)),f=t%1?2:t;if(e){for(;s>l;l++)for(var h=1;f>h;h++)a.push(u(l)*h);a.push(u(l))}else for(a.push(u(l));l++<s;)for(var h=f-1;h>0;h--)a.push(u(l)*h);for(l=0;a[l]<o;l++);for(s=a.length;a[s-1]>c;s--);a=a.slice(l,s)}return a},a.tickFormat=function(n,t){if(!arguments.length)return wc;arguments.length<2?t=wc:\"function\"!=typeof t&&(t=da.format(t));var r,o=Math.max(.1,n/a.ticks().length),c=e?(r=1e-12,Math.ceil):(r=-1e-12,Math.floor);return function(n){return n/u(c(i(n)+r))<=o?t(n):\"\"}},a.copy=function(){return eu(n.copy(),t,e,r)},Ji(a,n)}function ru(n,t,e){function r(t){return n(i(t))}var i=iu(t),u=iu(1/t);return r.invert=function(t){return u(n.invert(t))},r.domain=function(t){return arguments.length?(n.domain((e=t.map(Number)).map(i)),r):e},r.ticks=function(n){return nu(e,n)},r.tickFormat=function(n,t){return tu(e,n,t)},r.nice=function(n){return r.domain(Gi(e,n))},r.exponent=function(a){return arguments.length?(i=iu(t=a),u=iu(1/t),n.domain(e.map(i)),r):t},r.copy=function(){return ru(n.copy(),t,e)},Ji(r,n)}function iu(n){return function(t){return 0>t?-Math.pow(-t,n):Math.pow(t,n)}}function uu(n,t){function e(t){return a[((u.get(t)||u.set(t,n.push(t)))-1)%a.length]}function r(t,e){return da.range(n.length).map(function(n){return t+e*n})}var u,a,o;return e.domain=function(r){if(!arguments.length)return n;n=[],u=new i;for(var a,o=-1,c=r.length;++o<c;)u.has(a=r[o])||u.set(a,n.push(a));return e[t.t].apply(e,t.a)},e.range=function(n){return arguments.length?(a=n,o=0,t={t:\"range\",a:arguments},e):a},e.rangePoints=function(i,u){arguments.length<2&&(u=0);var c=i[0],l=i[1],s=(l-c)/(Math.max(1,n.length-1)+u);return a=r(n.length<2?(c+l)/2:c+s*u/2,s),o=0,t={t:\"rangePoints\",a:arguments},e},e.rangeBands=function(i,u,c){arguments.length<2&&(u=0),arguments.length<3&&(c=u);var l=i[1]<i[0],s=i[l-0],f=i[1-l],h=(f-s)/(n.length-u+2*c);return a=r(s+h*c,h),l&&a.reverse(),o=h*(1-u),t={t:\"rangeBands\",a:arguments},e},e.rangeRoundBands=function(i,u,c){arguments.length<2&&(u=0),arguments.length<3&&(c=u);var l=i[1]<i[0],s=i[l-0],f=i[1-l],h=Math.floor((f-s)/(n.length-u+2*c)),g=f-s-(n.length-u)*h;return a=r(s+Math.round(g/2),h),l&&a.reverse(),o=Math.round(h*(1-u)),t={t:\"rangeRoundBands\",a:arguments},e},e.rangeBand=function(){return o},e.rangeExtent=function(){return Ii(t.a[0])},e.copy=function(){return uu(n,t)},e.domain(n)}function au(n,t){function e(){var e=0,u=t.length;for(i=[];++e<u;)i[e-1]=da.quantile(n,e/u);return r}function r(n){return isNaN(n=+n)?void 0:t[da.bisect(i,n)]}var i;return r.domain=function(t){return arguments.length?(n=t.filter(function(n){return!isNaN(n)}).sort(da.ascending),e()):n},r.range=function(n){return arguments.length?(t=n,e()):t},r.quantiles=function(){return i},r.invertExtent=function(e){return e=t.indexOf(e),0>e?[0/0,0/0]:[e>0?i[e-1]:n[0],e<i.length?i[e]:n[n.length-1]]},r.copy=function(){return au(n,t)},e()}function ou(n,t,e){function r(t){return e[Math.max(0,Math.min(a,Math.floor(u*(t-n))))]}function i(){return u=e.length/(t-n),a=e.length-1,r}var u,a;return r.domain=function(e){return arguments.length?(n=+e[0],t=+e[e.length-1],i()):[n,t]},r.range=function(n){return arguments.length?(e=n,i()):e},r.invertExtent=function(t){return t=e.indexOf(t),t=0>t?0/0:t/u+n,[t,t+1/u]},r.copy=function(){return ou(n,t,e)},i()}function cu(n,t){function e(e){return e>=e?t[da.bisect(n,e)]:void 0}return e.domain=function(t){return arguments.length?(n=t,e):n},e.range=function(n){return arguments.length?(t=n,e):t},e.invertExtent=function(e){return e=t.indexOf(e),[n[e-1],n[e]]},e.copy=function(){return cu(n,t)},e}function lu(n){function t(n){return+n}return t.invert=t,t.domain=t.range=function(e){return arguments.length?(n=e.map(t),t):n},t.ticks=function(t){return nu(n,t)},t.tickFormat=function(t,e){return tu(n,t,e)},t.copy=function(){return lu(n)},t}function su(n){return n.innerRadius}function fu(n){return n.outerRadius}function hu(n){return n.startAngle}function gu(n){return n.endAngle}function pu(n){for(var t,e,r,i=-1,u=n.length;++i<u;)t=n[i],e=t[0],r=t[1]+qc,t[0]=e*Math.cos(r),t[1]=e*Math.sin(r);return n}function du(n){function t(t){function c(){d.push(\"M\",o(n(v),f),s,l(n(m.reverse()),f),\"Z\")}for(var h,g,p,d=[],m=[],v=[],y=-1,M=t.length,x=ht(e),b=ht(i),_=e===r?function(){return g}:ht(r),w=i===u?function(){return p}:ht(u);++y<M;)a.call(this,h=t[y],y)?(m.push([g=+x.call(this,h,y),p=+b.call(this,h,y)]),v.push([+_.call(this,h,y),+w.call(this,h,y)])):m.length&&(c(),m=[],v=[]);return m.length&&c(),d.length?d.join(\"\"):null}var e=Ye,r=Ye,i=0,u=Re,a=Ut,o=Ue,c=o.key,l=o,s=\"L\",f=.7;return t.x=function(n){return arguments.length?(e=r=n,t):r},t.x0=function(n){return arguments.length?(e=n,t):e},t.x1=function(n){return arguments.length?(r=n,t):r},t.y=function(n){return arguments.length?(i=u=n,t):u},t.y0=function(n){return arguments.length?(i=n,t):i},t.y1=function(n){return arguments.length?(u=n,t):u},t.defined=function(n){return arguments.length?(a=n,t):a},t.interpolate=function(n){return arguments.length?(c=\"function\"==typeof n?o=n:(o=ac.get(n)||Ue).key,l=o.reverse||o,s=o.closed?\"M\":\"L\",t):c},t.tension=function(n){return arguments.length?(f=n,t):f},t}function mu(n){return n.radius}function vu(n){return[n.x,n.y]}function yu(n){return function(){var t=n.apply(this,arguments),e=t[0],r=t[1]+qc;return[e*Math.cos(r),e*Math.sin(r)]}}function Mu(){return 64}function xu(){return\"circle\"}function bu(n){var t=Math.sqrt(n/Wa);return\"M0,\"+t+\"A\"+t+\",\"+t+\" 0 1,1 0,\"+-t+\"A\"+t+\",\"+t+\" 0 1,1 0,\"+t+\"Z\"}function _u(n,t){return za(n,Hc),n.id=t,n}function wu(n,t,e,r){var i=n.id;return T(n,\"function\"==typeof e?function(n,u,a){n.__transition__[i].tween.set(t,r(e.call(n,n.__data__,u,a)))}:(e=r(e),function(n){n.__transition__[i].tween.set(t,e)}))}function Su(n){return null==n&&(n=\"\"),function(){this.textContent=n}}function Eu(n,t,e,r){var u=n.__transition__||(n.__transition__={active:0,count:0}),a=u[e];if(!a){var o=r.time;return a=u[e]={tween:new i,time:o,ease:r.ease,delay:r.delay,duration:r.duration},++u.count,da.timer(function(r){function i(r){return u.active>e?l():(u.active=e,a.event&&a.event.start.call(n,s,t),a.tween.forEach(function(e,r){(r=r.call(n,s,t))&&p.push(r)}),c(r)||da.timer(c,0,o),1)}function c(r){if(u.active!==e)return l();for(var i=(r-h)/g,o=f(i),c=p.length;c>0;)p[--c].call(n,o);return i>=1?(l(),a.event&&a.event.end.call(n,s,t),1):void 0}function l(){return--u.count?delete u[e]:delete n.__transition__,1}var s=n.__data__,f=a.ease,h=a.delay,g=a.duration,p=[];return r>=h?i(r):da.timer(i,h,o),1},0,o),a}}function ku(n,t){n.attr(\"transform\",function(n){return\"translate(\"+t(n)+\",0)\"})}function Au(n,t){n.attr(\"transform\",function(n){return\"translate(0,\"+t(n)+\")\"})}function Nu(n,t,e){if(r=[],e&&t.length>1){for(var r,i,u,a=Ii(n.domain()),o=-1,c=t.length,l=(t[1]-t[0])/++e;++o<c;)for(i=e;--i>0;)(u=+t[o]-i*l)>=a[0]&&r.push(u);for(--o,i=0;++i<e&&(u=+t[o]+i*l)<a[1];)r.push(u)}return r}function qu(){this._=new Date(arguments.length>1?Date.UTC.apply(this,arguments):arguments[0])}function Tu(n,t,e){function r(t){var e=n(t),r=u(e,1);return r-t>t-e?e:r}function i(e){return t(e=n(new Uc(e-1)),1),e}function u(n,e){return t(n=new Uc(+n),e),n}function a(n,r,u){var a=i(n),o=[];if(u>1)for(;r>a;)e(a)%u||o.push(new Date(+a)),t(a,1);else for(;r>a;)o.push(new Date(+a)),t(a,1);return o}function o(n,t,e){try{Uc=qu;var r=new qu;return r._=n,a(r,t,e)}finally{Uc=Date}}n.floor=n,n.round=r,n.ceil=i,n.offset=u,n.range=a;var c=n.utc=Cu(n);return c.floor=c,c.round=Cu(r),c.ceil=Cu(i),c.offset=Cu(u),c.range=o,n}function Cu(n){return function(t,e){try{Uc=qu;var r=new qu;return r._=t,n(r,e)._}finally{Uc=Date}}}function zu(n,t,e,r){for(var i,u,a=0,o=t.length,c=e.length;o>a;){if(r>=c)return-1;if(i=t.charCodeAt(a++),37===i){if(u=ll[t.charAt(a++)],!u||(r=u(n,e,r))<0)return-1}else if(i!=e.charCodeAt(r++))return-1}return r}function Du(n){return new RegExp(\"^(?:\"+n.map(da.requote).join(\"|\")+\")\",\"i\")}function ju(n){for(var t=new i,e=-1,r=n.length;++e<r;)t.set(n[e].toLowerCase(),e);return t}function Lu(n,t,e){var r=0>n?\"-\":\"\",i=(r?-n:n)+\"\",u=i.length;return r+(e>u?new Array(e-u+1).join(t)+i:i)}function Hu(n,t,e){nl.lastIndex=0;var r=nl.exec(t.substring(e));return r?(n.w=tl.get(r[0].toLowerCase()),e+r[0].length):-1}function Fu(n,t,e){Kc.lastIndex=0;var r=Kc.exec(t.substring(e));return r?(n.w=Qc.get(r[0].toLowerCase()),e+r[0].length):-1}function Pu(n,t,e){sl.lastIndex=0;var r=sl.exec(t.substring(e,e+1));return r?(n.w=+r[0],e+r[0].length):-1}function Ou(n,t,e){sl.lastIndex=0;var r=sl.exec(t.substring(e));return r?(n.U=+r[0],e+r[0].length):-1}function Yu(n,t,e){sl.lastIndex=0;var r=sl.exec(t.substring(e));return r?(n.W=+r[0],e+r[0].length):-1}function Ru(n,t,e){il.lastIndex=0;var r=il.exec(t.substring(e));return r?(n.m=ul.get(r[0].toLowerCase()),e+r[0].length):-1}function Uu(n,t,e){el.lastIndex=0;var r=el.exec(t.substring(e));return r?(n.m=rl.get(r[0].toLowerCase()),e+r[0].length):-1}function Iu(n,t,e){return zu(n,cl.c.toString(),t,e)}function Vu(n,t,e){return zu(n,cl.x.toString(),t,e)}function Xu(n,t,e){return zu(n,cl.X.toString(),t,e)}function Zu(n,t,e){sl.lastIndex=0;var r=sl.exec(t.substring(e,e+4));return r?(n.y=+r[0],e+r[0].length):-1}function Bu(n,t,e){sl.lastIndex=0;var r=sl.exec(t.substring(e,e+2));return r?(n.y=$u(+r[0]),e+r[0].length):-1}function $u(n){return n+(n>68?1900:2e3)}function Wu(n,t,e){sl.lastIndex=0;var r=sl.exec(t.substring(e,e+2));return r?(n.m=r[0]-1,e+r[0].length):-1}function Ju(n,t,e){sl.lastIndex=0;var r=sl.exec(t.substring(e,e+2));return r?(n.d=+r[0],e+r[0].length):-1}function Gu(n,t,e){sl.lastIndex=0;var r=sl.exec(t.substring(e,e+3));return r?(n.j=+r[0],e+r[0].length):-1}function Ku(n,t,e){sl.lastIndex=0;var r=sl.exec(t.substring(e,e+2));return r?(n.H=+r[0],e+r[0].length):-1}function Qu(n,t,e){sl.lastIndex=0;var r=sl.exec(t.substring(e,e+2));return r?(n.M=+r[0],e+r[0].length):-1}function na(n,t,e){sl.lastIndex=0;var r=sl.exec(t.substring(e,e+2));return r?(n.S=+r[0],e+r[0].length):-1}function ta(n,t,e){sl.lastIndex=0;var r=sl.exec(t.substring(e,e+3));return r?(n.L=+r[0],e+r[0].length):-1}function ea(n,t,e){var r=fl.get(t.substring(e,e+=2).toLowerCase());return null==r?-1:(n.p=r,e)}function ra(n){var t=n.getTimezoneOffset(),e=t>0?\"-\":\"+\",r=~~(Math.abs(t)/60),i=Math.abs(t)%60;return e+Lu(r,\"0\",2)+Lu(i,\"0\",2)}function ia(n,t,e){al.lastIndex=0;var r=al.exec(t.substring(e,e+1));return r?e+r[0].length:-1}function ua(n){return n.toISOString()}function aa(n,t,e){function r(t){return n(t)}return r.invert=function(t){return oa(n.invert(t))},r.domain=function(t){return arguments.length?(n.domain(t),r):n.domain().map(oa)},r.nice=function(n){return r.domain(Zi(r.domain(),n))},r.ticks=function(e,i){var u=Ii(r.domain());if(\"function\"!=typeof e){var a=u[1]-u[0],o=a/e,c=da.bisect(gl,o);if(c==gl.length)return t.year(u,e);if(!c)return n.ticks(e).map(oa);Math.log(o/gl[c-1])<Math.log(gl[c]/o)&&--c,e=t[c],i=e[1],e=e[0].range}return e(u[0],new Date(+u[1]+1),i)},r.tickFormat=function(){return e},r.copy=function(){return aa(n.copy(),t,e)},Ji(r,n)}function oa(n){return new Date(n)}function ca(n){return function(t){for(var e=n.length-1,r=n[e];!r[1](t);)r=n[--e];return r[0](t)}}function la(n){var t=new Date(n,0,1);return t.setFullYear(n),t}function sa(n){var t=n.getFullYear(),e=la(t),r=la(t+1);return t+(n-e)/(r-e)}function fa(n){var t=new Date(Date.UTC(n,0,1));return t.setUTCFullYear(n),t}function ha(n){var t=n.getUTCFullYear(),e=fa(t),r=fa(t+1);return t+(n-e)/(r-e)}function ga(n){return JSON.parse(n.responseText)}function pa(n){var t=ma.createRange();return t.selectNode(ma.body),t.createContextualFragment(n.responseText)}var da={version:\"3.2.6\"};Date.now||(Date.now=function(){return+new Date});var ma=document,va=ma.documentElement,ya=window;try{ma.createElement(\"div\").style.setProperty(\"opacity\",0,\"\")}catch(Ma){var xa=ya.Element.prototype,ba=xa.setAttribute,_a=xa.setAttributeNS,wa=ya.CSSStyleDeclaration.prototype,Sa=wa.setProperty;xa.setAttribute=function(n,t){ba.call(this,n,t+\"\")},xa.setAttributeNS=function(n,t,e){_a.call(this,n,t,e+\"\")},wa.setProperty=function(n,t,e){Sa.call(this,n,t+\"\",e)}}da.ascending=function(n,t){return t>n?-1:n>t?1:n>=t?0:0/0},da.descending=function(n,t){return n>t?-1:t>n?1:t>=n?0:0/0},da.min=function(n,t){var e,r,i=-1,u=n.length;if(1===arguments.length){for(;++i<u&&!(null!=(e=n[i])&&e>=e);)e=void 0;for(;++i<u;)null!=(r=n[i])&&e>r&&(e=r)}else{for(;++i<u&&!(null!=(e=t.call(n,n[i],i))&&e>=e);)e=void 0;for(;++i<u;)null!=(r=t.call(n,n[i],i))&&e>r&&(e=r)}return e},da.max=function(n,t){var e,r,i=-1,u=n.length;if(1===arguments.length){for(;++i<u&&!(null!=(e=n[i])&&e>=e);)e=void 0;for(;++i<u;)null!=(r=n[i])&&r>e&&(e=r)}else{for(;++i<u&&!(null!=(e=t.call(n,n[i],i))&&e>=e);)e=void 0;for(;++i<u;)null!=(r=t.call(n,n[i],i))&&r>e&&(e=r)}return e},da.extent=function(n,t){var e,r,i,u=-1,a=n.length;if(1===arguments.length){for(;++u<a&&!(null!=(e=i=n[u])&&e>=e);)e=i=void 0;for(;++u<a;)null!=(r=n[u])&&(e>r&&(e=r),r>i&&(i=r))}else{for(;++u<a&&!(null!=(e=i=t.call(n,n[u],u))&&e>=e);)e=void 0;for(;++u<a;)null!=(r=t.call(n,n[u],u))&&(e>r&&(e=r),r>i&&(i=r))}return[e,i]},da.sum=function(n,t){var e,r=0,i=n.length,u=-1;if(1===arguments.length)for(;++u<i;)isNaN(e=+n[u])||(r+=e);else for(;++u<i;)isNaN(e=+t.call(n,n[u],u))||(r+=e);return r},da.mean=function(t,e){var r,i=t.length,u=0,a=-1,o=0;if(1===arguments.length)for(;++a<i;)n(r=t[a])&&(u+=(r-u)/++o);else for(;++a<i;)n(r=e.call(t,t[a],a))&&(u+=(r-u)/++o);return o?u:void 0},da.quantile=function(n,t){var e=(n.length-1)*t+1,r=Math.floor(e),i=+n[r-1],u=e-r;return u?i+u*(n[r]-i):i},da.median=function(t,e){return arguments.length>1&&(t=t.map(e)),t=t.filter(n),t.length?da.quantile(t.sort(da.ascending),.5):void 0},da.bisector=function(n){return{left:function(t,e,r,i){for(arguments.length<3&&(r=0),arguments.length<4&&(i=t.length);i>r;){var u=r+i>>>1;n.call(t,t[u],u)<e?r=u+1:i=u}return r},right:function(t,e,r,i){for(arguments.length<3&&(r=0),arguments.length<4&&(i=t.length);i>r;){var u=r+i>>>1;e<n.call(t,t[u],u)?i=u:r=u+1}return r}}};var Ea=da.bisector(function(n){return n});da.bisectLeft=Ea.left,da.bisect=da.bisectRight=Ea.right,da.shuffle=function(n){for(var t,e,r=n.length;r;)e=0|Math.random()*r--,t=n[r],n[r]=n[e],n[e]=t;return n},da.permute=function(n,t){for(var e=[],r=-1,i=t.length;++r<i;)e[r]=n[t[r]];return e},da.zip=function(){if(!(i=arguments.length))return[];for(var n=-1,e=da.min(arguments,t),r=new Array(e);++n<e;)for(var i,u=-1,a=r[n]=new Array(i);++u<i;)a[u]=arguments[u][n];return r},da.transpose=function(n){return da.zip.apply(da,n)},da.keys=function(n){var t=[];for(var e in n)t.push(e);return t},da.values=function(n){var t=[];for(var e in n)t.push(n[e]);return t},da.entries=function(n){var t=[];for(var e in n)t.push({key:e,value:n[e]});return t},da.merge=function(n){return Array.prototype.concat.apply([],n)},da.range=function(n,t,r){if(arguments.length<3&&(r=1,arguments.length<2&&(t=n,n=0)),1/0===(t-n)/r)throw new Error(\"infinite range\");var i,u=[],a=e(Math.abs(r)),o=-1;if(n*=a,t*=a,r*=a,0>r)for(;(i=n+r*++o)>t;)u.push(i/a);else for(;(i=n+r*++o)<t;)u.push(i/a);return u},da.map=function(n){var t=new i;for(var e in n)t.set(e,n[e]);return t},r(i,{has:function(n){return ka+n in this},get:function(n){return this[ka+n]},set:function(n,t){return this[ka+n]=t},remove:function(n){return n=ka+n,n in this&&delete this[n]},keys:function(){var n=[];return this.forEach(function(t){n.push(t)}),n},values:function(){var n=[];return this.forEach(function(t,e){n.push(e)}),n},entries:function(){var n=[];return this.forEach(function(t,e){n.push({key:t,value:e})}),n},forEach:function(n){for(var t in this)t.charCodeAt(0)===Aa&&n.call(this,t.substring(1),this[t])\n}});var ka=\"\\0\",Aa=ka.charCodeAt(0);da.nest=function(){function n(t,o,c){if(c>=a.length)return r?r.call(u,o):e?o.sort(e):o;for(var l,s,f,h,g=-1,p=o.length,d=a[c++],m=new i;++g<p;)(h=m.get(l=d(s=o[g])))?h.push(s):m.set(l,[s]);return t?(s=t(),f=function(e,r){s.set(e,n(t,r,c))}):(s={},f=function(e,r){s[e]=n(t,r,c)}),m.forEach(f),s}function t(n,e){if(e>=a.length)return n;var r=[],i=o[e++];return n.forEach(function(n,i){r.push({key:n,values:t(i,e)})}),i?r.sort(function(n,t){return i(n.key,t.key)}):r}var e,r,u={},a=[],o=[];return u.map=function(t,e){return n(e,t,0)},u.entries=function(e){return t(n(da.map,e,0),0)},u.key=function(n){return a.push(n),u},u.sortKeys=function(n){return o[a.length-1]=n,u},u.sortValues=function(n){return e=n,u},u.rollup=function(n){return r=n,u},u},da.set=function(n){var t=new u;if(n)for(var e=0;e<n.length;e++)t.add(n[e]);return t},r(u,{has:function(n){return ka+n in this},add:function(n){return this[ka+n]=!0,n},remove:function(n){return n=ka+n,n in this&&delete this[n]},values:function(){var n=[];return this.forEach(function(t){n.push(t)}),n},forEach:function(n){for(var t in this)t.charCodeAt(0)===Aa&&n.call(this,t.substring(1))}}),da.behavior={},da.rebind=function(n,t){for(var e,r=1,i=arguments.length;++r<i;)n[e=arguments[r]]=a(n,t,t[e]);return n};var Na=[\"webkit\",\"ms\",\"moz\",\"Moz\",\"o\",\"O\"],qa=l;try{qa(va.childNodes)[0].nodeType}catch(Ta){qa=c}da.dispatch=function(){for(var n=new f,t=-1,e=arguments.length;++t<e;)n[arguments[t]]=h(n);return n},f.prototype.on=function(n,t){var e=n.indexOf(\".\"),r=\"\";if(e>=0&&(r=n.substring(e+1),n=n.substring(0,e)),n)return arguments.length<2?this[n].on(r):this[n].on(r,t);if(2===arguments.length){if(null==t)for(n in this)this.hasOwnProperty(n)&&this[n].on(r,null);return this}},da.event=null,da.requote=function(n){return n.replace(Ca,\"\\\\$&\")};var Ca=/[\\\\\\^\\$\\*\\+\\?\\|\\[\\]\\(\\)\\.\\{\\}]/g,za={}.__proto__?function(n,t){n.__proto__=t}:function(n,t){for(var e in t)n[e]=t[e]},Da=function(n,t){return t.querySelector(n)},ja=function(n,t){return t.querySelectorAll(n)},La=va[o(va,\"matchesSelector\")],Ha=function(n,t){return La.call(n,t)};\"function\"==typeof Sizzle&&(Da=function(n,t){return Sizzle(n,t)[0]||null},ja=function(n,t){return Sizzle.uniqueSort(Sizzle(n,t))},Ha=Sizzle.matchesSelector),da.selection=function(){return Ya};var Fa=da.selection.prototype=[];Fa.select=function(n){var t,e,r,i,u=[];n=v(n);for(var a=-1,o=this.length;++a<o;){u.push(t=[]),t.parentNode=(r=this[a]).parentNode;for(var c=-1,l=r.length;++c<l;)(i=r[c])?(t.push(e=n.call(i,i.__data__,c,a)),e&&\"__data__\"in i&&(e.__data__=i.__data__)):t.push(null)}return m(u)},Fa.selectAll=function(n){var t,e,r=[];n=y(n);for(var i=-1,u=this.length;++i<u;)for(var a=this[i],o=-1,c=a.length;++o<c;)(e=a[o])&&(r.push(t=qa(n.call(e,e.__data__,o,i))),t.parentNode=e);return m(r)};var Pa={svg:\"http://www.w3.org/2000/svg\",xhtml:\"http://www.w3.org/1999/xhtml\",xlink:\"http://www.w3.org/1999/xlink\",xml:\"http://www.w3.org/XML/1998/namespace\",xmlns:\"http://www.w3.org/2000/xmlns/\"};da.ns={prefix:Pa,qualify:function(n){var t=n.indexOf(\":\"),e=n;return t>=0&&(e=n.substring(0,t),n=n.substring(t+1)),Pa.hasOwnProperty(e)?{space:Pa[e],local:n}:n}},Fa.attr=function(n,t){if(arguments.length<2){if(\"string\"==typeof n){var e=this.node();return n=da.ns.qualify(n),n.local?e.getAttributeNS(n.space,n.local):e.getAttribute(n)}for(t in n)this.each(M(t,n[t]));return this}return this.each(M(n,t))},Fa.classed=function(n,t){if(arguments.length<2){if(\"string\"==typeof n){var e=this.node(),r=(n=n.trim().split(/^|\\s+/g)).length,i=-1;if(t=e.classList){for(;++i<r;)if(!t.contains(n[i]))return!1}else for(t=e.getAttribute(\"class\");++i<r;)if(!b(n[i]).test(t))return!1;return!0}for(t in n)this.each(_(t,n[t]));return this}return this.each(_(n,t))},Fa.style=function(n,t,e){var r=arguments.length;if(3>r){if(\"string\"!=typeof n){2>r&&(t=\"\");for(e in n)this.each(S(e,n[e],t));return this}if(2>r)return ya.getComputedStyle(this.node(),null).getPropertyValue(n);e=\"\"}return this.each(S(n,t,e))},Fa.property=function(n,t){if(arguments.length<2){if(\"string\"==typeof n)return this.node()[n];for(t in n)this.each(E(t,n[t]));return this}return this.each(E(n,t))},Fa.text=function(n){return arguments.length?this.each(\"function\"==typeof n?function(){var t=n.apply(this,arguments);this.textContent=null==t?\"\":t}:null==n?function(){this.textContent=\"\"}:function(){this.textContent=n}):this.node().textContent},Fa.html=function(n){return arguments.length?this.each(\"function\"==typeof n?function(){var t=n.apply(this,arguments);this.innerHTML=null==t?\"\":t}:null==n?function(){this.innerHTML=\"\"}:function(){this.innerHTML=n}):this.node().innerHTML},Fa.append=function(n){return n=k(n),this.select(function(){return this.appendChild(n.apply(this,arguments))})},Fa.insert=function(n,t){return n=k(n),t=v(t),this.select(function(){return this.insertBefore(n.apply(this,arguments),t.apply(this,arguments))})},Fa.remove=function(){return this.each(function(){var n=this.parentNode;n&&n.removeChild(this)})},Fa.data=function(n,t){function e(n,e){var r,u,a,o=n.length,f=e.length,h=Math.min(o,f),g=new Array(f),p=new Array(f),d=new Array(o);if(t){var m,v=new i,y=new i,M=[];for(r=-1;++r<o;)m=t.call(u=n[r],u.__data__,r),v.has(m)?d[r]=u:v.set(m,u),M.push(m);for(r=-1;++r<f;)m=t.call(e,a=e[r],r),(u=v.get(m))?(g[r]=u,u.__data__=a):y.has(m)||(p[r]=A(a)),y.set(m,a),v.remove(m);for(r=-1;++r<o;)v.has(M[r])&&(d[r]=n[r])}else{for(r=-1;++r<h;)u=n[r],a=e[r],u?(u.__data__=a,g[r]=u):p[r]=A(a);for(;f>r;++r)p[r]=A(e[r]);for(;o>r;++r)d[r]=n[r]}p.update=g,p.parentNode=g.parentNode=d.parentNode=n.parentNode,c.push(p),l.push(g),s.push(d)}var r,u,a=-1,o=this.length;if(!arguments.length){for(n=new Array(o=(r=this[0]).length);++a<o;)(u=r[a])&&(n[a]=u.__data__);return n}var c=C([]),l=m([]),s=m([]);if(\"function\"==typeof n)for(;++a<o;)e(r=this[a],n.call(r,r.parentNode.__data__,a));else for(;++a<o;)e(r=this[a],n);return l.enter=function(){return c},l.exit=function(){return s},l},Fa.datum=function(n){return arguments.length?this.property(\"__data__\",n):this.property(\"__data__\")},Fa.filter=function(n){var t,e,r,i=[];\"function\"!=typeof n&&(n=N(n));for(var u=0,a=this.length;a>u;u++){i.push(t=[]),t.parentNode=(e=this[u]).parentNode;for(var o=0,c=e.length;c>o;o++)(r=e[o])&&n.call(r,r.__data__,o)&&t.push(r)}return m(i)},Fa.order=function(){for(var n=-1,t=this.length;++n<t;)for(var e,r=this[n],i=r.length-1,u=r[i];--i>=0;)(e=r[i])&&(u&&u!==e.nextSibling&&u.parentNode.insertBefore(e,u),u=e);return this},Fa.sort=function(n){n=q.apply(this,arguments);for(var t=-1,e=this.length;++t<e;)this[t].sort(n);return this.order()},Fa.each=function(n){return T(this,function(t,e,r){n.call(t,t.__data__,e,r)})},Fa.call=function(n){var t=qa(arguments);return n.apply(t[0]=this,t),this},Fa.empty=function(){return!this.node()},Fa.node=function(){for(var n=0,t=this.length;t>n;n++)for(var e=this[n],r=0,i=e.length;i>r;r++){var u=e[r];if(u)return u}return null},Fa.size=function(){var n=0;return this.each(function(){++n}),n};var Oa=[];da.selection.enter=C,da.selection.enter.prototype=Oa,Oa.append=Fa.append,Oa.empty=Fa.empty,Oa.node=Fa.node,Oa.call=Fa.call,Oa.size=Fa.size,Oa.select=function(n){for(var t,e,r,i,u,a=[],o=-1,c=this.length;++o<c;){r=(i=this[o]).update,a.push(t=[]),t.parentNode=i.parentNode;for(var l=-1,s=i.length;++l<s;)(u=i[l])?(t.push(r[l]=e=n.call(i.parentNode,u.__data__,l,o)),e.__data__=u.__data__):t.push(null)}return m(a)},Oa.insert=function(n,t){return arguments.length<2&&(t=z(this)),Fa.insert.call(this,n,t)},Fa.transition=function(){for(var n,t,e=zc||++Fc,r=[],i=Dc||{time:Date.now(),ease:Nr,delay:0,duration:250},u=-1,a=this.length;++u<a;){r.push(n=[]);for(var o=this[u],c=-1,l=o.length;++c<l;)(t=o[c])&&Eu(t,c,e,i),n.push(t)}return _u(r,e)},da.select=function(n){var t=[\"string\"==typeof n?Da(n,ma):n];return t.parentNode=va,m([t])},da.selectAll=function(n){var t=qa(\"string\"==typeof n?ja(n,ma):n);return t.parentNode=va,m([t])};var Ya=da.select(va);Fa.on=function(n,t,e){var r=arguments.length;if(3>r){if(\"string\"!=typeof n){2>r&&(t=!1);for(e in n)this.each(D(e,n[e],t));return this}if(2>r)return(r=this.node()[\"__on\"+n])&&r._;e=!1}return this.each(D(n,t,e))};var Ra=da.map({mouseenter:\"mouseover\",mouseleave:\"mouseout\"});Ra.forEach(function(n){\"on\"+n in ma&&Ra.remove(n)});var Ua=o(va.style,\"userSelect\"),Ia=0;da.mouse=function(n){return F(n,p())};var Va=/WebKit/.test(ya.navigator.userAgent)?-1:0;da.touches=function(n,t){return arguments.length<2&&(t=p().touches),t?qa(t).map(function(t){var e=F(n,t);return e.identifier=t.identifier,e}):[]},da.behavior.drag=function(){function n(){this.on(\"mousedown.drag\",a).on(\"touchstart.drag\",o)}function t(){return da.event.changedTouches[0].identifier}function e(n,t){return da.touches(n).filter(function(n){return n.identifier===t})[0]}function r(n,t,e,r){return function(){function a(){if(!s)return o();var n=t(s,g),e=n[0]-d[0],r=n[1]-d[1];m|=e|r,d=n,f({type:\"drag\",x:n[0]+c[0],y:n[1]+c[1],dx:e,dy:r})}function o(){v.on(e+\".\"+p,null).on(r+\".\"+p,null),y(m&&da.event.target===h),f({type:\"dragend\"})}var c,l=this,s=l.parentNode,f=i.of(l,arguments),h=da.event.target,g=n(),p=null==g?\"drag\":\"drag-\"+g,d=t(s,g),m=0,v=da.select(ya).on(e+\".\"+p,a).on(r+\".\"+p,o),y=H();u?(c=u.apply(l,arguments),c=[c.x-d[0],c.y-d[1]]):c=[0,0],f({type:\"dragstart\"})}}var i=d(n,\"drag\",\"dragstart\",\"dragend\"),u=null,a=r(s,da.mouse,\"mousemove\",\"mouseup\"),o=r(t,e,\"touchmove\",\"touchend\");return n.origin=function(t){return arguments.length?(u=t,n):u},da.rebind(n,i,\"on\")},da.behavior.zoom=function(){function n(){this.on(E,o).on(Ba+\".zoom\",l).on(k,s).on(\"dblclick.zoom\",f).on(\"touchstart.zoom\",c)}function t(n){return[(n[0]-_[0])/w,(n[1]-_[1])/w]}function e(n){return[n[0]*w+_[0],n[1]*w+_[1]]}function r(n){w=Math.max(S[0],Math.min(S[1],n))}function i(n,t){t=e(t),_[0]+=n[0]-t[0],_[1]+=n[1]-t[1]}function u(){y&&y.domain(v.range().map(function(n){return(n-_[0])/w}).map(v.invert)),x&&x.domain(M.range().map(function(n){return(n-_[1])/w}).map(M.invert))}function a(n){u(),n({type:\"zoom\",scale:w,translate:_})}function o(){function n(){c=1,i(da.mouse(r),f),a(u)}function e(){l.on(k,ya===r?s:null).on(A,null),h(c&&da.event.target===o)}var r=this,u=N.of(r,arguments),o=da.event.target,c=0,l=da.select(ya).on(k,n).on(A,e),f=t(da.mouse(r)),h=H()}function c(){function n(){var n=da.touches(u),t=n[0],e=h[t.identifier];if(c=n[1]){var c,l=h[c.identifier],s=da.event.scale;if(null==s){var f=(f=c[0]-t[0])*f+(f=c[1]-t[1])*f;s=p&&Math.sqrt(f/p)}t=[(t[0]+c[0])/2,(t[1]+c[1])/2],e=[(e[0]+l[0])/2,(e[1]+l[1])/2],r(s*m)}b=null,i(t,e),a(o)}function e(){v.on(f,null).on(d,null),y()}var u=this,o=N.of(u,arguments),c=da.touches(u),l=Date.now(),s=\"zoom-\"+da.event.changedTouches[0].identifier,f=\"touchmove.\"+s,d=\"touchend.\"+s,v=da.select(ya).on(f,n).on(d,e).on(E,null).on(k,null),y=H();if(m=w,h={},p=0,c.forEach(function(n){h[n.identifier]=t(n)}),1===c.length){if(500>l-b){var M=c[0],x=t(c[0]);r(2*w),i(M,x),g(),a(o)}b=l}else if(c.length>1){var M=c[0],_=c[1],S=M[0]-_[0],A=M[1]-_[1];p=S*S+A*A}}function l(){g(),h||(h=t(da.mouse(this))),r(Math.pow(2,.002*Xa())*w),i(da.mouse(this),h),a(N.of(this,arguments))}function s(){h=null}function f(){var n=da.mouse(this),e=t(n),u=Math.log(w)/Math.LN2;r(Math.pow(2,da.event.shiftKey?Math.ceil(u)-1:Math.floor(u)+1)),i(n,e),a(N.of(this,arguments))}var h,p,m,v,y,M,x,b,_=[0,0],w=1,S=Za,E=\"mousedown.zoom\",k=\"mousemove.zoom\",A=\"mouseup.zoom\",N=d(n,\"zoom\");return n.translate=function(t){return arguments.length?(_=t.map(Number),u(),n):_},n.scale=function(t){return arguments.length?(w=+t,u(),n):w},n.scaleExtent=function(t){return arguments.length?(S=null==t?Za:t.map(Number),n):S},n.x=function(t){return arguments.length?(y=t,v=t.copy(),_=[0,0],w=1,n):y},n.y=function(t){return arguments.length?(x=t,M=t.copy(),_=[0,0],w=1,n):x},da.rebind(n,N,\"on\")};var Xa,Za=[0,1/0],Ba=\"onwheel\"in ma?(Xa=function(){return-da.event.deltaY*(da.event.deltaMode?120:1)},\"wheel\"):\"onmousewheel\"in ma?(Xa=function(){return da.event.wheelDelta},\"mousewheel\"):(Xa=function(){return-da.event.detail},\"MozMousePixelScroll\");P.prototype.toString=function(){return this.rgb()+\"\"},da.hsl=function(n,t,e){return 1===arguments.length?n instanceof Y?O(n.h,n.s,n.l):ot(\"\"+n,ct,O):O(+n,+t,+e)};var $a=Y.prototype=new P;$a.brighter=function(n){return n=Math.pow(.7,arguments.length?n:1),O(this.h,this.s,this.l/n)},$a.darker=function(n){return n=Math.pow(.7,arguments.length?n:1),O(this.h,this.s,n*this.l)},$a.rgb=function(){return R(this.h,this.s,this.l)};var Wa=Math.PI,Ja=1e-6,Ga=Ja*Ja,Ka=Wa/180,Qa=180/Wa;da.hcl=function(n,t,e){return 1===arguments.length?n instanceof W?$(n.h,n.c,n.l):n instanceof K?nt(n.l,n.a,n.b):nt((n=lt((n=da.rgb(n)).r,n.g,n.b)).l,n.a,n.b):$(+n,+t,+e)};var no=W.prototype=new P;no.brighter=function(n){return $(this.h,this.c,Math.min(100,this.l+to*(arguments.length?n:1)))},no.darker=function(n){return $(this.h,this.c,Math.max(0,this.l-to*(arguments.length?n:1)))},no.rgb=function(){return J(this.h,this.c,this.l).rgb()},da.lab=function(n,t,e){return 1===arguments.length?n instanceof K?G(n.l,n.a,n.b):n instanceof W?J(n.l,n.c,n.h):lt((n=da.rgb(n)).r,n.g,n.b):G(+n,+t,+e)};var to=18,eo=.95047,ro=1,io=1.08883,uo=K.prototype=new P;uo.brighter=function(n){return G(Math.min(100,this.l+to*(arguments.length?n:1)),this.a,this.b)},uo.darker=function(n){return G(Math.max(0,this.l-to*(arguments.length?n:1)),this.a,this.b)},uo.rgb=function(){return Q(this.l,this.a,this.b)},da.rgb=function(n,t,e){return 1===arguments.length?n instanceof ut?it(n.r,n.g,n.b):ot(\"\"+n,it,R):it(~~n,~~t,~~e)};var ao=ut.prototype=new P;ao.brighter=function(n){n=Math.pow(.7,arguments.length?n:1);var t=this.r,e=this.g,r=this.b,i=30;return t||e||r?(t&&i>t&&(t=i),e&&i>e&&(e=i),r&&i>r&&(r=i),it(Math.min(255,Math.floor(t/n)),Math.min(255,Math.floor(e/n)),Math.min(255,Math.floor(r/n)))):it(i,i,i)},ao.darker=function(n){return n=Math.pow(.7,arguments.length?n:1),it(Math.floor(n*this.r),Math.floor(n*this.g),Math.floor(n*this.b))},ao.hsl=function(){return ct(this.r,this.g,this.b)},ao.toString=function(){return\"#\"+at(this.r)+at(this.g)+at(this.b)};var oo=da.map({aliceblue:\"#f0f8ff\",antiquewhite:\"#faebd7\",aqua:\"#00ffff\",aquamarine:\"#7fffd4\",azure:\"#f0ffff\",beige:\"#f5f5dc\",bisque:\"#ffe4c4\",black:\"#000000\",blanchedalmond:\"#ffebcd\",blue:\"#0000ff\",blueviolet:\"#8a2be2\",brown:\"#a52a2a\",burlywood:\"#deb887\",cadetblue:\"#5f9ea0\",chartreuse:\"#7fff00\",chocolate:\"#d2691e\",coral:\"#ff7f50\",cornflowerblue:\"#6495ed\",cornsilk:\"#fff8dc\",crimson:\"#dc143c\",cyan:\"#00ffff\",darkblue:\"#00008b\",darkcyan:\"#008b8b\",darkgoldenrod:\"#b8860b\",darkgray:\"#a9a9a9\",darkgreen:\"#006400\",darkgrey:\"#a9a9a9\",darkkhaki:\"#bdb76b\",darkmagenta:\"#8b008b\",darkolivegreen:\"#556b2f\",darkorange:\"#ff8c00\",darkorchid:\"#9932cc\",darkred:\"#8b0000\",darksalmon:\"#e9967a\",darkseagreen:\"#8fbc8f\",darkslateblue:\"#483d8b\",darkslategray:\"#2f4f4f\",darkslategrey:\"#2f4f4f\",darkturquoise:\"#00ced1\",darkviolet:\"#9400d3\",deeppink:\"#ff1493\",deepskyblue:\"#00bfff\",dimgray:\"#696969\",dimgrey:\"#696969\",dodgerblue:\"#1e90ff\",firebrick:\"#b22222\",floralwhite:\"#fffaf0\",forestgreen:\"#228b22\",fuchsia:\"#ff00ff\",gainsboro:\"#dcdcdc\",ghostwhite:\"#f8f8ff\",gold:\"#ffd700\",goldenrod:\"#daa520\",gray:\"#808080\",green:\"#008000\",greenyellow:\"#adff2f\",grey:\"#808080\",honeydew:\"#f0fff0\",hotpink:\"#ff69b4\",indianred:\"#cd5c5c\",indigo:\"#4b0082\",ivory:\"#fffff0\",khaki:\"#f0e68c\",lavender:\"#e6e6fa\",lavenderblush:\"#fff0f5\",lawngreen:\"#7cfc00\",lemonchiffon:\"#fffacd\",lightblue:\"#add8e6\",lightcoral:\"#f08080\",lightcyan:\"#e0ffff\",lightgoldenrodyellow:\"#fafad2\",lightgray:\"#d3d3d3\",lightgreen:\"#90ee90\",lightgrey:\"#d3d3d3\",lightpink:\"#ffb6c1\",lightsalmon:\"#ffa07a\",lightseagreen:\"#20b2aa\",lightskyblue:\"#87cefa\",lightslategray:\"#778899\",lightslategrey:\"#778899\",lightsteelblue:\"#b0c4de\",lightyellow:\"#ffffe0\",lime:\"#00ff00\",limegreen:\"#32cd32\",linen:\"#faf0e6\",magenta:\"#ff00ff\",maroon:\"#800000\",mediumaquamarine:\"#66cdaa\",mediumblue:\"#0000cd\",mediumorchid:\"#ba55d3\",mediumpurple:\"#9370db\",mediumseagreen:\"#3cb371\",mediumslateblue:\"#7b68ee\",mediumspringgreen:\"#00fa9a\",mediumturquoise:\"#48d1cc\",mediumvioletred:\"#c71585\",midnightblue:\"#191970\",mintcream:\"#f5fffa\",mistyrose:\"#ffe4e1\",moccasin:\"#ffe4b5\",navajowhite:\"#ffdead\",navy:\"#000080\",oldlace:\"#fdf5e6\",olive:\"#808000\",olivedrab:\"#6b8e23\",orange:\"#ffa500\",orangered:\"#ff4500\",orchid:\"#da70d6\",palegoldenrod:\"#eee8aa\",palegreen:\"#98fb98\",paleturquoise:\"#afeeee\",palevioletred:\"#db7093\",papayawhip:\"#ffefd5\",peachpuff:\"#ffdab9\",peru:\"#cd853f\",pink:\"#ffc0cb\",plum:\"#dda0dd\",powderblue:\"#b0e0e6\",purple:\"#800080\",red:\"#ff0000\",rosybrown:\"#bc8f8f\",royalblue:\"#4169e1\",saddlebrown:\"#8b4513\",salmon:\"#fa8072\",sandybrown:\"#f4a460\",seagreen:\"#2e8b57\",seashell:\"#fff5ee\",sienna:\"#a0522d\",silver:\"#c0c0c0\",skyblue:\"#87ceeb\",slateblue:\"#6a5acd\",slategray:\"#708090\",slategrey:\"#708090\",snow:\"#fffafa\",springgreen:\"#00ff7f\",steelblue:\"#4682b4\",tan:\"#d2b48c\",teal:\"#008080\",thistle:\"#d8bfd8\",tomato:\"#ff6347\",turquoise:\"#40e0d0\",violet:\"#ee82ee\",wheat:\"#f5deb3\",white:\"#ffffff\",whitesmoke:\"#f5f5f5\",yellow:\"#ffff00\",yellowgreen:\"#9acd32\"});oo.forEach(function(n,t){oo.set(n,ot(t,it,R))}),da.functor=ht,da.xhr=pt(gt),da.dsv=function(n,t){function e(n,e,u){arguments.length<3&&(u=e,e=null);var a=da.xhr(n,t,u);return a.row=function(n){return arguments.length?a.response(null==(e=n)?r:i(n)):e},a.row(e)}function r(n){return e.parse(n.responseText)}function i(n){return function(t){return e.parse(t.responseText,n)}}function a(t){return t.map(o).join(n)}function o(n){return c.test(n)?'\"'+n.replace(/\\\"/g,'\"\"')+'\"':n}var c=new RegExp('[\"'+n+\"\\n]\"),l=n.charCodeAt(0);return e.parse=function(n,t){var r;return e.parseRows(n,function(n,e){if(r)return r(n,e-1);var i=new Function(\"d\",\"return {\"+n.map(function(n,t){return JSON.stringify(n)+\": d[\"+t+\"]\"}).join(\",\")+\"}\");r=t?function(n,e){return t(i(n),e)}:i})},e.parseRows=function(n,t){function e(){if(s>=c)return a;if(i)return i=!1,u;var t=s;if(34===n.charCodeAt(t)){for(var e=t;e++<c;)if(34===n.charCodeAt(e)){if(34!==n.charCodeAt(e+1))break;++e}s=e+2;var r=n.charCodeAt(e+1);return 13===r?(i=!0,10===n.charCodeAt(e+2)&&++s):10===r&&(i=!0),n.substring(t+1,e).replace(/\"\"/g,'\"')}for(;c>s;){var r=n.charCodeAt(s++),o=1;if(10===r)i=!0;else if(13===r)i=!0,10===n.charCodeAt(s)&&(++s,++o);else if(r!==l)continue;return n.substring(t,s-o)}return n.substring(t)}for(var r,i,u={},a={},o=[],c=n.length,s=0,f=0;(r=e())!==a;){for(var h=[];r!==u&&r!==a;)h.push(r),r=e();(!t||(h=t(h,f++)))&&o.push(h)}return o},e.format=function(t){if(Array.isArray(t[0]))return e.formatRows(t);var r=new u,i=[];return t.forEach(function(n){for(var t in n)r.has(t)||i.push(r.add(t))}),[i.map(o).join(n)].concat(t.map(function(t){return i.map(function(n){return o(t[n])}).join(n)})).join(\"\\n\")},e.formatRows=function(n){return n.map(a).join(\"\\n\")},e},da.csv=da.dsv(\",\",\"text/csv\"),da.tsv=da.dsv(\"\t\",\"text/tab-separated-values\");var co,lo,so,fo;da.timer=function(n,t,e){if(arguments.length<3){if(arguments.length<2)t=0;else if(!isFinite(t))return;e=Date.now()}var r=e+t,i={callback:n,time:r,next:null};lo?lo.next=i:co=i,lo=i,so||(fo=clearTimeout(fo),so=1,ho(vt))},da.timer.flush=function(){yt(),Mt()};var ho=ya[o(ya,\"requestAnimationFrame\")]||function(n){setTimeout(n,17)},go=\".\",po=\",\",mo=[3,3],vo=\"$\",yo=[\"y\",\"z\",\"a\",\"f\",\"p\",\"n\",\"µ\",\"m\",\"\",\"k\",\"M\",\"G\",\"T\",\"P\",\"E\",\"Z\",\"Y\"].map(xt);da.formatPrefix=function(n,t){var e=0;return n&&(0>n&&(n*=-1),t&&(n=da.round(n,bt(n,t))),e=1+Math.floor(1e-12+Math.log(n)/Math.LN10),e=Math.max(-24,Math.min(24,3*Math.floor((0>=e?e+1:e-1)/3)))),yo[8+e/3]},da.round=function(n,t){return t?Math.round(n*(t=Math.pow(10,t)))/t:Math.round(n)},da.format=function(n){var t=Mo.exec(n),e=t[1]||\" \",r=t[2]||\">\",i=t[3]||\"\",u=t[4]||\"\",a=t[5],o=+t[6],c=t[7],l=t[8],s=t[9],f=1,h=\"\",g=!1;switch(l&&(l=+l.substring(1)),(a||\"0\"===e&&\"=\"===r)&&(a=e=\"0\",r=\"=\",c&&(o-=Math.floor((o-1)/4))),s){case\"n\":c=!0,s=\"g\";break;case\"%\":f=100,h=\"%\",s=\"f\";break;case\"p\":f=100,h=\"%\",s=\"r\";break;case\"b\":case\"o\":case\"x\":case\"X\":\"#\"===u&&(u=\"0\"+s.toLowerCase());case\"c\":case\"d\":g=!0,l=0;break;case\"s\":f=-1,s=\"r\"}\"#\"===u?u=\"\":\"$\"===u&&(u=vo),\"r\"!=s||l||(s=\"g\"),null!=l&&(\"g\"==s?l=Math.max(1,Math.min(21,l)):(\"e\"==s||\"f\"==s)&&(l=Math.max(0,Math.min(20,l)))),s=xo.get(s)||_t;var p=a&&c;return function(n){if(g&&n%1)return\"\";var t=0>n||0===n&&0>1/n?(n=-n,\"-\"):i;if(0>f){var d=da.formatPrefix(n,l);n=d.scale(n),h=d.symbol}else n*=f;n=s(n,l);var m=n.lastIndexOf(\".\"),v=0>m?n:n.substring(0,m),y=0>m?\"\":go+n.substring(m+1);!a&&c&&(v=bo(v));var M=u.length+v.length+y.length+(p?0:t.length),x=o>M?new Array(M=o-M+1).join(e):\"\";return p&&(v=bo(x+v)),t+=u,n=v+y,(\"<\"===r?t+n+x:\">\"===r?x+t+n:\"^\"===r?x.substring(0,M>>=1)+t+n+x.substring(M):t+(p?n:x+n))+h}};var Mo=/(?:([^{])?([<>=^]))?([+\\- ])?([$#])?(0)?(\\d+)?(,)?(\\.-?\\d+)?([a-z%])?/i,xo=da.map({b:function(n){return n.toString(2)},c:function(n){return String.fromCharCode(n)},o:function(n){return n.toString(8)},x:function(n){return n.toString(16)},X:function(n){return n.toString(16).toUpperCase()},g:function(n,t){return n.toPrecision(t)},e:function(n,t){return n.toExponential(t)},f:function(n,t){return n.toFixed(t)},r:function(n,t){return(n=da.round(n,bt(n,t))).toFixed(Math.max(0,Math.min(20,bt(n*(1+1e-15),t))))}}),bo=gt;if(mo){var _o=mo.length;bo=function(n){for(var t=n.length,e=[],r=0,i=mo[0];t>0&&i>0;)e.push(n.substring(t-=i,t+i)),i=mo[r=(r+1)%_o];return e.reverse().join(po)}}da.geo={},wt.prototype={s:0,t:0,add:function(n){St(n,this.t,wo),St(wo.s,this.s,this),this.s?this.t+=wo.t:this.s=wo.t},reset:function(){this.s=this.t=0},valueOf:function(){return this.s}};var wo=new wt;da.geo.stream=function(n,t){n&&So.hasOwnProperty(n.type)?So[n.type](n,t):Et(n,t)};var So={Feature:function(n,t){Et(n.geometry,t)},FeatureCollection:function(n,t){for(var e=n.features,r=-1,i=e.length;++r<i;)Et(e[r].geometry,t)}},Eo={Sphere:function(n,t){t.sphere()},Point:function(n,t){var e=n.coordinates;t.point(e[0],e[1])},MultiPoint:function(n,t){for(var e,r=n.coordinates,i=-1,u=r.length;++i<u;)e=r[i],t.point(e[0],e[1])},LineString:function(n,t){kt(n.coordinates,t,0)},MultiLineString:function(n,t){for(var e=n.coordinates,r=-1,i=e.length;++r<i;)kt(e[r],t,0)},Polygon:function(n,t){At(n.coordinates,t)},MultiPolygon:function(n,t){for(var e=n.coordinates,r=-1,i=e.length;++r<i;)At(e[r],t)},GeometryCollection:function(n,t){for(var e=n.geometries,r=-1,i=e.length;++r<i;)Et(e[r],t)}};da.geo.area=function(n){return ko=0,da.geo.stream(n,No),ko};var ko,Ao=new wt,No={sphere:function(){ko+=4*Wa},point:s,lineStart:s,lineEnd:s,polygonStart:function(){Ao.reset(),No.lineStart=Nt},polygonEnd:function(){var n=2*Ao;ko+=0>n?4*Wa+n:n,No.lineStart=No.lineEnd=No.point=s}};da.geo.bounds=function(){function n(n,t){M.push(x=[s=n,h=n]),f>t&&(f=t),t>g&&(g=t)}function t(t,e){var r=qt([t*Ka,e*Ka]);if(v){var i=Ct(v,r),u=[i[1],-i[0],0],a=Ct(u,i);jt(a),a=Lt(a);var c=t-p,l=c>0?1:-1,d=a[0]*Qa*l,m=Math.abs(c)>180;if(m^(d>l*p&&l*t>d)){var y=a[1]*Qa;y>g&&(g=y)}else if(d=(d+360)%360-180,m^(d>l*p&&l*t>d)){var y=-a[1]*Qa;f>y&&(f=y)}else f>e&&(f=e),e>g&&(g=e);m?p>t?o(s,t)>o(s,h)&&(h=t):o(t,h)>o(s,h)&&(s=t):h>=s?(s>t&&(s=t),t>h&&(h=t)):t>p?o(s,t)>o(s,h)&&(h=t):o(t,h)>o(s,h)&&(s=t)}else n(t,e);v=r,p=t}function e(){b.point=t}function r(){x[0]=s,x[1]=h,b.point=n,v=null}function i(n,e){if(v){var r=n-p;y+=Math.abs(r)>180?r+(r>0?360:-360):r}else d=n,m=e;No.point(n,e),t(n,e)}function u(){No.lineStart()}function a(){i(d,m),No.lineEnd(),Math.abs(y)>Ja&&(s=-(h=180)),x[0]=s,x[1]=h,v=null}function o(n,t){return(t-=n)<0?t+360:t}function c(n,t){return n[0]-t[0]}function l(n,t){return t[0]<=t[1]?t[0]<=n&&n<=t[1]:n<t[0]||t[1]<n}var s,f,h,g,p,d,m,v,y,M,x,b={point:n,lineStart:e,lineEnd:r,polygonStart:function(){b.point=i,b.lineStart=u,b.lineEnd=a,y=0,No.polygonStart()},polygonEnd:function(){No.polygonEnd(),b.point=n,b.lineStart=e,b.lineEnd=r,0>Ao?(s=-(h=180),f=-(g=90)):y>Ja?g=90:-Ja>y&&(f=-90),x[0]=s,x[1]=h}};return function(n){g=h=-(s=f=1/0),M=[],da.geo.stream(n,b);var t=M.length;if(t){M.sort(c);for(var e,r=1,i=M[0],u=[i];t>r;++r)e=M[r],l(e[0],i)||l(e[1],i)?(o(i[0],e[1])>o(i[0],i[1])&&(i[1]=e[1]),o(e[0],i[1])>o(i[0],i[1])&&(i[0]=e[0])):u.push(i=e);for(var a,e,p=-1/0,t=u.length-1,r=0,i=u[t];t>=r;i=e,++r)e=u[r],(a=o(i[1],e[0]))>p&&(p=a,s=e[0],h=i[1])}return M=x=null,1/0===s||1/0===f?[[0/0,0/0],[0/0,0/0]]:[[s,f],[h,g]]}}(),da.geo.centroid=function(n){qo=To=Co=zo=Do=jo=Lo=Ho=Fo=Po=Oo=0,da.geo.stream(n,Yo);var t=Fo,e=Po,r=Oo,i=t*t+e*e+r*r;return Ga>i&&(t=jo,e=Lo,r=Ho,Ja>To&&(t=Co,e=zo,r=Do),i=t*t+e*e+r*r,Ga>i)?[0/0,0/0]:[Math.atan2(e,t)*Qa,V(r/Math.sqrt(i))*Qa]};var qo,To,Co,zo,Do,jo,Lo,Ho,Fo,Po,Oo,Yo={sphere:s,point:Ft,lineStart:Ot,lineEnd:Yt,polygonStart:function(){Yo.lineStart=Rt},polygonEnd:function(){Yo.lineStart=Ot}},Ro=Xt(Ut,Jt,Kt,Qt),Uo=[-Wa,0],Io=1e9;(da.geo.conicEqualArea=function(){return ie(ue)}).raw=ue,da.geo.albers=function(){return da.geo.conicEqualArea().rotate([96,0]).center([-.6,38.7]).parallels([29.5,45.5]).scale(1070)},da.geo.albersUsa=function(){function n(n){var u=n[0],a=n[1];return t=null,e(u,a),t||(r(u,a),t)||i(u,a),t}var t,e,r,i,u=da.geo.albers(),a=da.geo.conicEqualArea().rotate([154,0]).center([-2,58.5]).parallels([55,65]),o=da.geo.conicEqualArea().rotate([157,0]).center([-3,19.9]).parallels([8,18]),c={point:function(n,e){t=[n,e]}};return n.invert=function(n){var t=u.scale(),e=u.translate(),r=(n[0]-e[0])/t,i=(n[1]-e[1])/t;return(i>=.12&&.234>i&&r>=-.425&&-.214>r?a:i>=.166&&.234>i&&r>=-.214&&-.115>r?o:u).invert(n)},n.stream=function(n){var t=u.stream(n),e=a.stream(n),r=o.stream(n);return{point:function(n,i){t.point(n,i),e.point(n,i),r.point(n,i)},sphere:function(){t.sphere(),e.sphere(),r.sphere()},lineStart:function(){t.lineStart(),e.lineStart(),r.lineStart()},lineEnd:function(){t.lineEnd(),e.lineEnd(),r.lineEnd()},polygonStart:function(){t.polygonStart(),e.polygonStart(),r.polygonStart()},polygonEnd:function(){t.polygonEnd(),e.polygonEnd(),r.polygonEnd()}}},n.precision=function(t){return arguments.length?(u.precision(t),a.precision(t),o.precision(t),n):u.precision()},n.scale=function(t){return arguments.length?(u.scale(t),a.scale(.35*t),o.scale(t),n.translate(u.translate())):u.scale()},n.translate=function(t){if(!arguments.length)return u.translate();var l=u.scale(),s=+t[0],f=+t[1];return e=u.translate(t).clipExtent([[s-.455*l,f-.238*l],[s+.455*l,f+.238*l]]).stream(c).point,r=a.translate([s-.307*l,f+.201*l]).clipExtent([[s-.425*l+Ja,f+.12*l+Ja],[s-.214*l-Ja,f+.234*l-Ja]]).stream(c).point,i=o.translate([s-.205*l,f+.212*l]).clipExtent([[s-.214*l+Ja,f+.166*l+Ja],[s-.115*l-Ja,f+.234*l-Ja]]).stream(c).point,n},n.scale(1070)};var Vo,Xo,Zo,Bo,$o,Wo,Jo={point:s,lineStart:s,lineEnd:s,polygonStart:function(){Xo=0,Jo.lineStart=ae},polygonEnd:function(){Jo.lineStart=Jo.lineEnd=Jo.point=s,Vo+=Math.abs(Xo/2)}},Go={point:oe,lineStart:s,lineEnd:s,polygonStart:s,polygonEnd:s},Ko={point:se,lineStart:fe,lineEnd:he,polygonStart:function(){Ko.lineStart=ge},polygonEnd:function(){Ko.point=se,Ko.lineStart=fe,Ko.lineEnd=he}};da.geo.path=function(){function n(n){return n&&(\"function\"==typeof o&&u.pointRadius(+o.apply(this,arguments)),a&&a.valid||(a=i(u)),da.geo.stream(n,a)),u.result()}function t(){return a=null,n}var e,r,i,u,a,o=4.5;return n.area=function(n){return Vo=0,da.geo.stream(n,i(Jo)),Vo},n.centroid=function(n){return Co=zo=Do=jo=Lo=Ho=Fo=Po=Oo=0,da.geo.stream(n,i(Ko)),Oo?[Fo/Oo,Po/Oo]:Ho?[jo/Ho,Lo/Ho]:Do?[Co/Do,zo/Do]:[0/0,0/0]},n.bounds=function(n){return $o=Wo=-(Zo=Bo=1/0),da.geo.stream(n,i(Go)),[[Zo,Bo],[$o,Wo]]},n.projection=function(n){return arguments.length?(i=(e=n)?n.stream||me(n):gt,t()):e},n.context=function(n){return arguments.length?(u=null==(r=n)?new ce:new pe(n),\"function\"!=typeof o&&u.pointRadius(o),t()):r},n.pointRadius=function(t){return arguments.length?(o=\"function\"==typeof t?t:(u.pointRadius(+t),+t),n):o},n.projection(da.geo.albersUsa()).context(null)},da.geo.projection=ve,da.geo.projectionMutator=ye,(da.geo.equirectangular=function(){return ve(xe)}).raw=xe.invert=xe,da.geo.rotation=function(n){function t(t){return t=n(t[0]*Ka,t[1]*Ka),t[0]*=Qa,t[1]*=Qa,t}return n=be(n[0]%360*Ka,n[1]*Ka,n.length>2?n[2]*Ka:0),t.invert=function(t){return t=n.invert(t[0]*Ka,t[1]*Ka),t[0]*=Qa,t[1]*=Qa,t},t},da.geo.circle=function(){function n(){var n=\"function\"==typeof r?r.apply(this,arguments):r,t=be(-n[0]*Ka,-n[1]*Ka,0).invert,i=[];return e(null,null,1,{point:function(n,e){i.push(n=t(n,e)),n[0]*=Qa,n[1]*=Qa}}),{type:\"Polygon\",coordinates:[i]}}var t,e,r=[0,0],i=6;return n.origin=function(t){return arguments.length?(r=t,n):r},n.angle=function(r){return arguments.length?(e=Ee((t=+r)*Ka,i*Ka),n):t},n.precision=function(r){return arguments.length?(e=Ee(t*Ka,(i=+r)*Ka),n):i},n.angle(90)},da.geo.distance=function(n,t){var e,r=(t[0]-n[0])*Ka,i=n[1]*Ka,u=t[1]*Ka,a=Math.sin(r),o=Math.cos(r),c=Math.sin(i),l=Math.cos(i),s=Math.sin(u),f=Math.cos(u);return Math.atan2(Math.sqrt((e=f*a)*e+(e=l*s-c*f*o)*e),c*s+l*f*o)},da.geo.graticule=function(){function n(){return{type:\"MultiLineString\",coordinates:t()}}function t(){return da.range(Math.ceil(u/m)*m,i,m).map(h).concat(da.range(Math.ceil(l/v)*v,c,v).map(g)).concat(da.range(Math.ceil(r/p)*p,e,p).filter(function(n){return Math.abs(n%m)>Ja}).map(s)).concat(da.range(Math.ceil(o/d)*d,a,d).filter(function(n){return Math.abs(n%v)>Ja}).map(f))}var e,r,i,u,a,o,c,l,s,f,h,g,p=10,d=p,m=90,v=360,y=2.5;return n.lines=function(){return t().map(function(n){return{type:\"LineString\",coordinates:n}})},n.outline=function(){return{type:\"Polygon\",coordinates:[h(u).concat(g(c).slice(1),h(i).reverse().slice(1),g(l).reverse().slice(1))]}},n.extent=function(t){return arguments.length?n.majorExtent(t).minorExtent(t):n.minorExtent()},n.majorExtent=function(t){return arguments.length?(u=+t[0][0],i=+t[1][0],l=+t[0][1],c=+t[1][1],u>i&&(t=u,u=i,i=t),l>c&&(t=l,l=c,c=t),n.precision(y)):[[u,l],[i,c]]},n.minorExtent=function(t){return arguments.length?(r=+t[0][0],e=+t[1][0],o=+t[0][1],a=+t[1][1],r>e&&(t=r,r=e,e=t),o>a&&(t=o,o=a,a=t),n.precision(y)):[[r,o],[e,a]]},n.step=function(t){return arguments.length?n.majorStep(t).minorStep(t):n.minorStep()},n.majorStep=function(t){return arguments.length?(m=+t[0],v=+t[1],n):[m,v]},n.minorStep=function(t){return arguments.length?(p=+t[0],d=+t[1],n):[p,d]},n.precision=function(t){return arguments.length?(y=+t,s=Ae(o,a,90),f=Ne(r,e,y),h=Ae(l,c,90),g=Ne(u,i,y),n):y},n.majorExtent([[-180,-90+Ja],[180,90-Ja]]).minorExtent([[-180,-80-Ja],[180,80+Ja]])},da.geo.greatArc=function(){function n(){return{type:\"LineString\",coordinates:[t||r.apply(this,arguments),e||i.apply(this,arguments)]}}var t,e,r=qe,i=Te;return n.distance=function(){return da.geo.distance(t||r.apply(this,arguments),e||i.apply(this,arguments))},n.source=function(e){return arguments.length?(r=e,t=\"function\"==typeof e?null:e,n):r},n.target=function(t){return arguments.length?(i=t,e=\"function\"==typeof t?null:t,n):i},n.precision=function(){return arguments.length?n:0},n},da.geo.interpolate=function(n,t){return Ce(n[0]*Ka,n[1]*Ka,t[0]*Ka,t[1]*Ka)},da.geo.length=function(n){return Qo=0,da.geo.stream(n,nc),Qo};var Qo,nc={sphere:s,point:s,lineStart:ze,lineEnd:s,polygonStart:s,polygonEnd:s},tc=De(function(n){return Math.sqrt(2/(1+n))},function(n){return 2*Math.asin(n/2)});(da.geo.azimuthalEqualArea=function(){return ve(tc)}).raw=tc;var ec=De(function(n){var t=Math.acos(n);return t&&t/Math.sin(t)},gt);(da.geo.azimuthalEquidistant=function(){return ve(ec)}).raw=ec,(da.geo.conicConformal=function(){return ie(je)}).raw=je,(da.geo.conicEquidistant=function(){return ie(Le)}).raw=Le;var rc=De(function(n){return 1/n},Math.atan);(da.geo.gnomonic=function(){return ve(rc)}).raw=rc,He.invert=function(n,t){return[n,2*Math.atan(Math.exp(t))-Wa/2]},(da.geo.mercator=function(){return Fe(He)}).raw=He;var ic=De(function(){return 1},Math.asin);(da.geo.orthographic=function(){return ve(ic)}).raw=ic;var uc=De(function(n){return 1/(1+n)},function(n){return 2*Math.atan(n)});(da.geo.stereographic=function(){return ve(uc)}).raw=uc,Pe.invert=function(n,t){return[Math.atan2(X(n),Math.cos(t)),V(Math.sin(t)/Z(n))]},(da.geo.transverseMercator=function(){return Fe(Pe)}).raw=Pe,da.geom={},da.svg={},da.svg.line=function(){return Oe(gt)\n};var ac=da.map({linear:Ue,\"linear-closed\":Ie,step:Ve,\"step-before\":Xe,\"step-after\":Ze,basis:Ke,\"basis-open\":Qe,\"basis-closed\":nr,bundle:tr,cardinal:We,\"cardinal-open\":Be,\"cardinal-closed\":$e,monotone:or});ac.forEach(function(n,t){t.key=n,t.closed=/-closed$/.test(n)});var oc=[0,2/3,1/3,0],cc=[0,1/3,2/3,0],lc=[0,1/6,2/3,1/6];da.geom.hull=function(n){function t(n){if(n.length<3)return[];var t,i,u,a,o,c,l,s,f,h,g,p,d=ht(e),m=ht(r),v=n.length,y=v-1,M=[],x=[],b=0;if(d===Ye&&r===Re)t=n;else for(u=0,t=[];v>u;++u)t.push([+d.call(this,i=n[u],u),+m.call(this,i,u)]);for(u=1;v>u;++u)(t[u][1]<t[b][1]||t[u][1]==t[b][1]&&t[u][0]<t[b][0])&&(b=u);for(u=0;v>u;++u)u!==b&&(c=t[u][1]-t[b][1],o=t[u][0]-t[b][0],M.push({angle:Math.atan2(c,o),index:u}));for(M.sort(function(n,t){return n.angle-t.angle}),g=M[0].angle,h=M[0].index,f=0,u=1;y>u;++u){if(a=M[u].index,g==M[u].angle){if(o=t[h][0]-t[b][0],c=t[h][1]-t[b][1],l=t[a][0]-t[b][0],s=t[a][1]-t[b][1],o*o+c*c>=l*l+s*s){M[u].index=-1;continue}M[f].index=-1}g=M[u].angle,f=u,h=a}for(x.push(b),u=0,a=0;2>u;++a)M[a].index>-1&&(x.push(M[a].index),u++);for(p=x.length;y>a;++a)if(!(M[a].index<0)){for(;!cr(x[p-2],x[p-1],M[a].index,t);)--p;x[p++]=M[a].index}var _=[];for(u=p-1;u>=0;--u)_.push(n[x[u]]);return _}var e=Ye,r=Re;return arguments.length?t(n):(t.x=function(n){return arguments.length?(e=n,t):e},t.y=function(n){return arguments.length?(r=n,t):r},t)},da.geom.polygon=function(n){return za(n,sc),n};var sc=da.geom.polygon.prototype=[];sc.area=function(){for(var n,t=-1,e=this.length,r=this[e-1],i=0;++t<e;)n=r,r=this[t],i+=n[1]*r[0]-n[0]*r[1];return.5*i},sc.centroid=function(n){var t,e,r=-1,i=this.length,u=0,a=0,o=this[i-1];for(arguments.length||(n=-1/(6*this.area()));++r<i;)t=o,o=this[r],e=t[0]*o[1]-o[0]*t[1],u+=(t[0]+o[0])*e,a+=(t[1]+o[1])*e;return[u*n,a*n]},sc.clip=function(n){for(var t,e,r,i,u,a,o=fr(n),c=-1,l=this.length-fr(this),s=this[l-1];++c<l;){for(t=n.slice(),n.length=0,i=this[c],u=t[(r=t.length-o)-1],e=-1;++e<r;)a=t[e],lr(a,s,i)?(lr(u,s,i)||n.push(sr(u,a,s,i)),n.push(a)):lr(u,s,i)&&n.push(sr(u,a,s,i)),u=a;o&&n.push(n[0]),s=i}return n},da.geom.delaunay=function(n){var t=n.map(function(){return[]}),e=[];return hr(n,function(e){t[e.region.l.index].push(n[e.region.r.index])}),t.forEach(function(t,r){var i=n[r],u=i[0],a=i[1];t.forEach(function(n){n.angle=Math.atan2(n[0]-u,n[1]-a)}),t.sort(function(n,t){return n.angle-t.angle});for(var o=0,c=t.length-1;c>o;o++)e.push([i,t[o],t[o+1]])}),e},da.geom.voronoi=function(n){function t(n){var t,u,a,o=n.map(function(){return[]}),c=ht(e),l=ht(r),s=n.length,f=1e6;if(c===Ye&&l===Re)t=n;else for(t=new Array(s),a=0;s>a;++a)t[a]=[+c.call(this,u=n[a],a),+l.call(this,u,a)];if(hr(t,function(n){var t,e,r,i,u,a;1===n.a&&n.b>=0?(t=n.ep.r,e=n.ep.l):(t=n.ep.l,e=n.ep.r),1===n.a?(u=t?t.y:-f,r=n.c-n.b*u,a=e?e.y:f,i=n.c-n.b*a):(r=t?t.x:-f,u=n.c-n.a*r,i=e?e.x:f,a=n.c-n.a*i);var c=[r,u],l=[i,a];o[n.region.l.index].push(c,l),o[n.region.r.index].push(c,l)}),o=o.map(function(n,e){var r=t[e][0],i=t[e][1],u=n.map(function(n){return Math.atan2(n[0]-r,n[1]-i)}),a=da.range(n.length).sort(function(n,t){return u[n]-u[t]});return a.filter(function(n,t){return!t||u[n]-u[a[t-1]]>Ja}).map(function(t){return n[t]})}),o.forEach(function(n,e){var r=n.length;if(!r)return n.push([-f,-f],[-f,f],[f,f],[f,-f]);if(!(r>2)){var i=t[e],u=n[0],a=n[1],o=i[0],c=i[1],l=u[0],s=u[1],h=a[0],g=a[1],p=Math.abs(h-l),d=g-s;if(Math.abs(d)<Ja){var m=s>c?-f:f;n.push([-f,m],[f,m])}else if(Ja>p){var v=l>o?-f:f;n.push([v,-f],[v,f])}else{var m=(l-o)*(g-s)>(h-l)*(s-c)?f:-f,y=Math.abs(d)-p;Math.abs(y)<Ja?n.push([0>d?m:-m,m]):(y>0&&(m*=-1),n.push([-f,m],[f,m]))}}}),i)for(a=0;s>a;++a)i.clip(o[a]);for(a=0;s>a;++a)o[a].point=n[a];return o}var e=Ye,r=Re,i=null;return arguments.length?t(n):(t.x=function(n){return arguments.length?(e=n,t):e},t.y=function(n){return arguments.length?(r=n,t):r},t.clipExtent=function(n){if(!arguments.length)return i&&[i[0],i[2]];if(null==n)i=null;else{var e=+n[0][0],r=+n[0][1],u=+n[1][0],a=+n[1][1];i=da.geom.polygon([[e,r],[e,a],[u,a],[u,r]])}return t},t.size=function(n){return arguments.length?t.clipExtent(n&&[[0,0],n]):i&&i[2]},t.links=function(n){var t,i,u,a=n.map(function(){return[]}),o=[],c=ht(e),l=ht(r),s=n.length;if(c===Ye&&l===Re)t=n;else for(t=new Array(s),u=0;s>u;++u)t[u]=[+c.call(this,i=n[u],u),+l.call(this,i,u)];return hr(t,function(t){var e=t.region.l.index,r=t.region.r.index;a[e][r]||(a[e][r]=a[r][e]=!0,o.push({source:n[e],target:n[r]}))}),o},t.triangles=function(n){if(e===Ye&&r===Re)return da.geom.delaunay(n);for(var t,i=new Array(c),u=ht(e),a=ht(r),o=-1,c=n.length;++o<c;)(i[o]=[+u.call(this,t=n[o],o),+a.call(this,t,o)]).data=t;return da.geom.delaunay(i).map(function(n){return n.map(function(n){return n.data})})},t)};var fc={l:\"r\",r:\"l\"};da.geom.quadtree=function(n,t,e,r,i){function u(n){function u(n,t,e,r,i,u,a,o){if(!isNaN(e)&&!isNaN(r))if(n.leaf){var c=n.x,s=n.y;if(null!=c)if(Math.abs(c-e)+Math.abs(s-r)<.01)l(n,t,e,r,i,u,a,o);else{var f=n.point;n.x=n.y=n.point=null,l(n,f,c,s,i,u,a,o),l(n,t,e,r,i,u,a,o)}else n.x=e,n.y=r,n.point=t}else l(n,t,e,r,i,u,a,o)}function l(n,t,e,r,i,a,o,c){var l=.5*(i+o),s=.5*(a+c),f=e>=l,h=r>=s,g=(h<<1)+f;n.leaf=!1,n=n.nodes[g]||(n.nodes[g]=dr()),f?i=l:o=l,h?a=s:c=s,u(n,t,e,r,i,a,o,c)}var s,f,h,g,p,d,m,v,y,M=ht(o),x=ht(c);if(null!=t)d=t,m=e,v=r,y=i;else if(v=y=-(d=m=1/0),f=[],h=[],p=n.length,a)for(g=0;p>g;++g)s=n[g],s.x<d&&(d=s.x),s.y<m&&(m=s.y),s.x>v&&(v=s.x),s.y>y&&(y=s.y),f.push(s.x),h.push(s.y);else for(g=0;p>g;++g){var b=+M(s=n[g],g),_=+x(s,g);d>b&&(d=b),m>_&&(m=_),b>v&&(v=b),_>y&&(y=_),f.push(b),h.push(_)}var w=v-d,S=y-m;w>S?y=m+w:v=d+S;var E=dr();if(E.add=function(n){u(E,n,+M(n,++g),+x(n,g),d,m,v,y)},E.visit=function(n){mr(n,E,d,m,v,y)},g=-1,null==t){for(;++g<p;)u(E,n[g],f[g],h[g],d,m,v,y);--g}else n.forEach(E.add);return f=h=n=s=null,E}var a,o=Ye,c=Re;return(a=arguments.length)?(o=gr,c=pr,3===a&&(i=e,r=t,e=t=0),u(n)):(u.x=function(n){return arguments.length?(o=n,u):o},u.y=function(n){return arguments.length?(c=n,u):c},u.extent=function(n){return arguments.length?(null==n?t=e=r=i=null:(t=+n[0][0],e=+n[0][1],r=+n[1][0],i=+n[1][1]),u):null==t?null:[[t,e],[r,i]]},u.size=function(n){return arguments.length?(null==n?t=e=r=i=null:(t=e=0,r=+n[0],i=+n[1]),u):null==t?null:[r-t,i-e]},u)},da.interpolateRgb=vr,da.interpolateObject=yr,da.interpolateNumber=Mr,da.interpolateString=xr;var hc=/[-+]?(?:\\d+\\.?\\d*|\\.?\\d+)(?:[eE][-+]?\\d+)?/g;da.interpolate=br,da.interpolators=[function(n,t){var e=typeof t;return(\"string\"===e?oo.has(t)||/^(#|rgb\\(|hsl\\()/.test(t)?vr:xr:t instanceof P?vr:\"object\"===e?Array.isArray(t)?_r:yr:Mr)(n,t)}],da.interpolateArray=_r;var gc=function(){return gt},pc=da.map({linear:gc,poly:qr,quad:function(){return kr},cubic:function(){return Ar},sin:function(){return Tr},exp:function(){return Cr},circle:function(){return zr},elastic:Dr,back:jr,bounce:function(){return Lr}}),dc=da.map({\"in\":gt,out:Sr,\"in-out\":Er,\"out-in\":function(n){return Er(Sr(n))}});da.ease=function(n){var t=n.indexOf(\"-\"),e=t>=0?n.substring(0,t):n,r=t>=0?n.substring(t+1):\"in\";return e=pc.get(e)||gc,r=dc.get(r)||gt,wr(r(e.apply(null,Array.prototype.slice.call(arguments,1))))},da.interpolateHcl=Hr,da.interpolateHsl=Fr,da.interpolateLab=Pr,da.interpolateRound=Or,da.transform=function(n){var t=ma.createElementNS(da.ns.prefix.svg,\"g\");return(da.transform=function(n){if(null!=n){t.setAttribute(\"transform\",n);var e=t.transform.baseVal.consolidate()}return new Yr(e?e.matrix:mc)})(n)},Yr.prototype.toString=function(){return\"translate(\"+this.translate+\")rotate(\"+this.rotate+\")skewX(\"+this.skew+\")scale(\"+this.scale+\")\"};var mc={a:1,b:0,c:0,d:1,e:0,f:0};da.interpolateTransform=Vr,da.layout={},da.layout.bundle=function(){return function(n){for(var t=[],e=-1,r=n.length;++e<r;)t.push(Br(n[e]));return t}},da.layout.chord=function(){function n(){var n,l,f,h,g,p={},d=[],m=da.range(u),v=[];for(e=[],r=[],n=0,h=-1;++h<u;){for(l=0,g=-1;++g<u;)l+=i[h][g];d.push(l),v.push(da.range(u)),n+=l}for(a&&m.sort(function(n,t){return a(d[n],d[t])}),o&&v.forEach(function(n,t){n.sort(function(n,e){return o(i[t][n],i[t][e])})}),n=(2*Wa-s*u)/n,l=0,h=-1;++h<u;){for(f=l,g=-1;++g<u;){var y=m[h],M=v[y][g],x=i[y][M],b=l,_=l+=x*n;p[y+\"-\"+M]={index:y,subindex:M,startAngle:b,endAngle:_,value:x}}r[y]={index:y,startAngle:f,endAngle:l,value:(l-f)/n},l+=s}for(h=-1;++h<u;)for(g=h-1;++g<u;){var w=p[h+\"-\"+g],S=p[g+\"-\"+h];(w.value||S.value)&&e.push(w.value<S.value?{source:S,target:w}:{source:w,target:S})}c&&t()}function t(){e.sort(function(n,t){return c((n.source.value+n.target.value)/2,(t.source.value+t.target.value)/2)})}var e,r,i,u,a,o,c,l={},s=0;return l.matrix=function(n){return arguments.length?(u=(i=n)&&i.length,e=r=null,l):i},l.padding=function(n){return arguments.length?(s=n,e=r=null,l):s},l.sortGroups=function(n){return arguments.length?(a=n,e=r=null,l):a},l.sortSubgroups=function(n){return arguments.length?(o=n,e=null,l):o},l.sortChords=function(n){return arguments.length?(c=n,e&&t(),l):c},l.chords=function(){return e||n(),e},l.groups=function(){return r||n(),r},l},da.layout.force=function(){function n(n){return function(t,e,r,i){if(t.point!==n){var u=t.cx-n.x,a=t.cy-n.y,o=1/Math.sqrt(u*u+a*a);if(d>(i-e)*o){var c=t.charge*o*o;return n.px-=u*c,n.py-=a*c,!0}if(t.point&&isFinite(o)){var c=t.pointCharge*o*o;n.px-=u*c,n.py-=a*c}}return!t.charge}}function t(n){n.px=da.event.x,n.py=da.event.y,o.resume()}var e,r,i,u,a,o={},c=da.dispatch(\"start\",\"tick\",\"end\"),l=[1,1],s=.9,f=vc,h=yc,g=-30,p=.1,d=.8,m=[],v=[];return o.tick=function(){if((r*=.99)<.005)return c.end({type:\"end\",alpha:r=0}),!0;var t,e,o,f,h,d,y,M,x,b=m.length,_=v.length;for(e=0;_>e;++e)o=v[e],f=o.source,h=o.target,M=h.x-f.x,x=h.y-f.y,(d=M*M+x*x)&&(d=r*u[e]*((d=Math.sqrt(d))-i[e])/d,M*=d,x*=d,h.x-=M*(y=f.weight/(h.weight+f.weight)),h.y-=x*y,f.x+=M*(y=1-y),f.y+=x*y);if((y=r*p)&&(M=l[0]/2,x=l[1]/2,e=-1,y))for(;++e<b;)o=m[e],o.x+=(M-o.x)*y,o.y+=(x-o.y)*y;if(g)for(ni(t=da.geom.quadtree(m),r,a),e=-1;++e<b;)(o=m[e]).fixed||t.visit(n(o));for(e=-1;++e<b;)o=m[e],o.fixed?(o.x=o.px,o.y=o.py):(o.x-=(o.px-(o.px=o.x))*s,o.y-=(o.py-(o.py=o.y))*s);c.tick({type:\"tick\",alpha:r})},o.nodes=function(n){return arguments.length?(m=n,o):m},o.links=function(n){return arguments.length?(v=n,o):v},o.size=function(n){return arguments.length?(l=n,o):l},o.linkDistance=function(n){return arguments.length?(f=\"function\"==typeof n?n:+n,o):f},o.distance=o.linkDistance,o.linkStrength=function(n){return arguments.length?(h=\"function\"==typeof n?n:+n,o):h},o.friction=function(n){return arguments.length?(s=+n,o):s},o.charge=function(n){return arguments.length?(g=\"function\"==typeof n?n:+n,o):g},o.gravity=function(n){return arguments.length?(p=+n,o):p},o.theta=function(n){return arguments.length?(d=+n,o):d},o.alpha=function(n){return arguments.length?(n=+n,r?r=n>0?n:0:n>0&&(c.start({type:\"start\",alpha:r=n}),da.timer(o.tick)),o):r},o.start=function(){function n(n,r){for(var i,u=t(e),a=-1,o=u.length;++a<o;)if(!isNaN(i=u[a][n]))return i;return Math.random()*r}function t(){if(!c){for(c=[],r=0;p>r;++r)c[r]=[];for(r=0;d>r;++r){var n=v[r];c[n.source.index].push(n.target),c[n.target.index].push(n.source)}}return c[e]}var e,r,c,s,p=m.length,d=v.length,y=l[0],M=l[1];for(e=0;p>e;++e)(s=m[e]).index=e,s.weight=0;for(e=0;d>e;++e)s=v[e],\"number\"==typeof s.source&&(s.source=m[s.source]),\"number\"==typeof s.target&&(s.target=m[s.target]),++s.source.weight,++s.target.weight;for(e=0;p>e;++e)s=m[e],isNaN(s.x)&&(s.x=n(\"x\",y)),isNaN(s.y)&&(s.y=n(\"y\",M)),isNaN(s.px)&&(s.px=s.x),isNaN(s.py)&&(s.py=s.y);if(i=[],\"function\"==typeof f)for(e=0;d>e;++e)i[e]=+f.call(this,v[e],e);else for(e=0;d>e;++e)i[e]=f;if(u=[],\"function\"==typeof h)for(e=0;d>e;++e)u[e]=+h.call(this,v[e],e);else for(e=0;d>e;++e)u[e]=h;if(a=[],\"function\"==typeof g)for(e=0;p>e;++e)a[e]=+g.call(this,m[e],e);else for(e=0;p>e;++e)a[e]=g;return o.resume()},o.resume=function(){return o.alpha(.1)},o.stop=function(){return o.alpha(0)},o.drag=function(){return e||(e=da.behavior.drag().origin(gt).on(\"dragstart.force\",Jr).on(\"drag.force\",t).on(\"dragend.force\",Gr)),arguments.length?(this.on(\"mouseover.force\",Kr).on(\"mouseout.force\",Qr).call(e),void 0):e},da.rebind(o,c,\"on\")};var vc=20,yc=1;da.layout.hierarchy=function(){function n(t,a,o){var c=i.call(e,t,a);if(t.depth=a,o.push(t),c&&(l=c.length)){for(var l,s,f=-1,h=t.children=[],g=0,p=a+1;++f<l;)s=n(c[f],p,o),s.parent=t,h.push(s),g+=s.value;r&&h.sort(r),u&&(t.value=g)}else u&&(t.value=+u.call(e,t,a)||0);return t}function t(n,r){var i=n.children,a=0;if(i&&(o=i.length))for(var o,c=-1,l=r+1;++c<o;)a+=t(i[c],l);else u&&(a=+u.call(e,n,r)||0);return u&&(n.value=a),a}function e(t){var e=[];return n(t,0,e),e}var r=ii,i=ei,u=ri;return e.sort=function(n){return arguments.length?(r=n,e):r},e.children=function(n){return arguments.length?(i=n,e):i},e.value=function(n){return arguments.length?(u=n,e):u},e.revalue=function(n){return t(n,0),n},e},da.layout.partition=function(){function n(t,e,r,i){var u=t.children;if(t.x=e,t.y=t.depth*i,t.dx=r,t.dy=i,u&&(a=u.length)){var a,o,c,l=-1;for(r=t.value?r/t.value:0;++l<a;)n(o=u[l],e,c=o.value*r,i),e+=c}}function t(n){var e=n.children,r=0;if(e&&(i=e.length))for(var i,u=-1;++u<i;)r=Math.max(r,t(e[u]));return 1+r}function e(e,u){var a=r.call(this,e,u);return n(a[0],0,i[0],i[1]/t(a[0])),a}var r=da.layout.hierarchy(),i=[1,1];return e.size=function(n){return arguments.length?(i=n,e):i},ti(e,r)},da.layout.pie=function(){function n(u){var a=u.map(function(e,r){return+t.call(n,e,r)}),o=+(\"function\"==typeof r?r.apply(this,arguments):r),c=((\"function\"==typeof i?i.apply(this,arguments):i)-o)/da.sum(a),l=da.range(u.length);null!=e&&l.sort(e===Mc?function(n,t){return a[t]-a[n]}:function(n,t){return e(u[n],u[t])});var s=[];return l.forEach(function(n){var t;s[n]={data:u[n],value:t=a[n],startAngle:o,endAngle:o+=t*c}}),s}var t=Number,e=Mc,r=0,i=2*Wa;return n.value=function(e){return arguments.length?(t=e,n):t},n.sort=function(t){return arguments.length?(e=t,n):e},n.startAngle=function(t){return arguments.length?(r=t,n):r},n.endAngle=function(t){return arguments.length?(i=t,n):i},n};var Mc={};da.layout.stack=function(){function n(o,c){var l=o.map(function(e,r){return t.call(n,e,r)}),s=l.map(function(t){return t.map(function(t,e){return[u.call(n,t,e),a.call(n,t,e)]})}),f=e.call(n,s,c);l=da.permute(l,f),s=da.permute(s,f);var h,g,p,d=r.call(n,s,c),m=l.length,v=l[0].length;for(g=0;v>g;++g)for(i.call(n,l[0][g],p=d[g],s[0][g][1]),h=1;m>h;++h)i.call(n,l[h][g],p+=s[h-1][g][1],s[h][g][1]);return o}var t=gt,e=li,r=si,i=ci,u=ai,a=oi;return n.values=function(e){return arguments.length?(t=e,n):t},n.order=function(t){return arguments.length?(e=\"function\"==typeof t?t:xc.get(t)||li,n):e},n.offset=function(t){return arguments.length?(r=\"function\"==typeof t?t:bc.get(t)||si,n):r},n.x=function(t){return arguments.length?(u=t,n):u},n.y=function(t){return arguments.length?(a=t,n):a},n.out=function(t){return arguments.length?(i=t,n):i},n};var xc=da.map({\"inside-out\":function(n){var t,e,r=n.length,i=n.map(fi),u=n.map(hi),a=da.range(r).sort(function(n,t){return i[n]-i[t]}),o=0,c=0,l=[],s=[];for(t=0;r>t;++t)e=a[t],c>o?(o+=u[e],l.push(e)):(c+=u[e],s.push(e));return s.reverse().concat(l)},reverse:function(n){return da.range(n.length).reverse()},\"default\":li}),bc=da.map({silhouette:function(n){var t,e,r,i=n.length,u=n[0].length,a=[],o=0,c=[];for(e=0;u>e;++e){for(t=0,r=0;i>t;t++)r+=n[t][e][1];r>o&&(o=r),a.push(r)}for(e=0;u>e;++e)c[e]=(o-a[e])/2;return c},wiggle:function(n){var t,e,r,i,u,a,o,c,l,s=n.length,f=n[0],h=f.length,g=[];for(g[0]=c=l=0,e=1;h>e;++e){for(t=0,i=0;s>t;++t)i+=n[t][e][1];for(t=0,u=0,o=f[e][0]-f[e-1][0];s>t;++t){for(r=0,a=(n[t][e][1]-n[t][e-1][1])/(2*o);t>r;++r)a+=(n[r][e][1]-n[r][e-1][1])/o;u+=a*n[t][e][1]}g[e]=c-=i?u/i*o:0,l>c&&(l=c)}for(e=0;h>e;++e)g[e]-=l;return g},expand:function(n){var t,e,r,i=n.length,u=n[0].length,a=1/i,o=[];for(e=0;u>e;++e){for(t=0,r=0;i>t;t++)r+=n[t][e][1];if(r)for(t=0;i>t;t++)n[t][e][1]/=r;else for(t=0;i>t;t++)n[t][e][1]=a}for(e=0;u>e;++e)o[e]=0;return o},zero:si});da.layout.histogram=function(){function n(n,u){for(var a,o,c=[],l=n.map(e,this),s=r.call(this,l,u),f=i.call(this,s,l,u),u=-1,h=l.length,g=f.length-1,p=t?1:1/h;++u<g;)a=c[u]=[],a.dx=f[u+1]-(a.x=f[u]),a.y=0;if(g>0)for(u=-1;++u<h;)o=l[u],o>=s[0]&&o<=s[1]&&(a=c[da.bisect(f,o,1,g)-1],a.y+=p,a.push(n[u]));return c}var t=!0,e=Number,r=mi,i=pi;return n.value=function(t){return arguments.length?(e=t,n):e},n.range=function(t){return arguments.length?(r=ht(t),n):r},n.bins=function(t){return arguments.length?(i=\"number\"==typeof t?function(n){return di(n,t)}:ht(t),n):i},n.frequency=function(e){return arguments.length?(t=!!e,n):t},n},da.layout.tree=function(){function n(n,u){function a(n,t){var r=n.children,i=n._tree;if(r&&(u=r.length)){for(var u,o,l,s=r[0],f=s,h=-1;++h<u;)l=r[h],a(l,o),f=c(l,o,f),o=l;Ei(n);var g=.5*(s._tree.prelim+l._tree.prelim);t?(i.prelim=t._tree.prelim+e(n,t),i.mod=i.prelim-g):i.prelim=g}else t&&(i.prelim=t._tree.prelim+e(n,t))}function o(n,t){n.x=n._tree.prelim+t;var e=n.children;if(e&&(r=e.length)){var r,i=-1;for(t+=n._tree.mod;++i<r;)o(e[i],t)}}function c(n,t,r){if(t){for(var i,u=n,a=n,o=t,c=n.parent.children[0],l=u._tree.mod,s=a._tree.mod,f=o._tree.mod,h=c._tree.mod;o=Mi(o),u=yi(u),o&&u;)c=yi(c),a=Mi(a),a._tree.ancestor=n,i=o._tree.prelim+f-u._tree.prelim-l+e(o,u),i>0&&(ki(Ai(o,n,r),n,i),l+=i,s+=i),f+=o._tree.mod,l+=u._tree.mod,h+=c._tree.mod,s+=a._tree.mod;o&&!Mi(a)&&(a._tree.thread=o,a._tree.mod+=f-s),u&&!yi(c)&&(c._tree.thread=u,c._tree.mod+=l-h,r=n)}return r}var l=t.call(this,n,u),s=l[0];Si(s,function(n,t){n._tree={ancestor:n,prelim:0,mod:0,change:0,shift:0,number:t?t._tree.number+1:0}}),a(s),o(s,-s._tree.prelim);var f=xi(s,_i),h=xi(s,bi),g=xi(s,wi),p=f.x-e(f,h)/2,d=h.x+e(h,f)/2,m=g.depth||1;return Si(s,i?function(n){n.x*=r[0],n.y=n.depth*r[1],delete n._tree}:function(n){n.x=(n.x-p)/(d-p)*r[0],n.y=n.depth/m*r[1],delete n._tree}),l}var t=da.layout.hierarchy().sort(null).value(null),e=vi,r=[1,1],i=!1;return n.separation=function(t){return arguments.length?(e=t,n):e},n.size=function(t){return arguments.length?(i=null==(r=t),n):i?null:r},n.nodeSize=function(t){return arguments.length?(i=null!=(r=t),n):i?r:null},ti(n,t)},da.layout.pack=function(){function n(n,u){var a=e.call(this,n,u),o=a[0],c=i[0],l=i[1],s=null==t?Math.sqrt:\"function\"==typeof t?t:function(){return t};if(o.x=o.y=0,Si(o,function(n){n.r=+s(n.value)}),Si(o,zi),r){var f=r*(t?1:Math.max(2*o.r/c,2*o.r/l))/2;Si(o,function(n){n.r+=f}),Si(o,zi),Si(o,function(n){n.r-=f})}return Li(o,c/2,l/2,t?1:1/Math.max(2*o.r/c,2*o.r/l)),a}var t,e=da.layout.hierarchy().sort(Ni),r=0,i=[1,1];return n.size=function(t){return arguments.length?(i=t,n):i},n.radius=function(e){return arguments.length?(t=null==e||\"function\"==typeof e?e:+e,n):t},n.padding=function(t){return arguments.length?(r=+t,n):r},ti(n,e)},da.layout.cluster=function(){function n(n,u){var a,o=t.call(this,n,u),c=o[0],l=0;Si(c,function(n){var t=n.children;t&&t.length?(n.x=Pi(t),n.y=Fi(t)):(n.x=a?l+=e(n,a):0,n.y=0,a=n)});var s=Oi(c),f=Yi(c),h=s.x-e(s,f)/2,g=f.x+e(f,s)/2;return Si(c,i?function(n){n.x=(n.x-c.x)*r[0],n.y=(c.y-n.y)*r[1]}:function(n){n.x=(n.x-h)/(g-h)*r[0],n.y=(1-(c.y?n.y/c.y:1))*r[1]}),o}var t=da.layout.hierarchy().sort(null).value(null),e=vi,r=[1,1],i=!1;return n.separation=function(t){return arguments.length?(e=t,n):e},n.size=function(t){return arguments.length?(i=null==(r=t),n):i?null:r},n.nodeSize=function(t){return arguments.length?(i=null!=(r=t),n):i?r:null},ti(n,t)},da.layout.treemap=function(){function n(n,t){for(var e,r,i=-1,u=n.length;++i<u;)r=(e=n[i]).value*(0>t?0:t),e.area=isNaN(r)||0>=r?0:r}function t(e){var u=e.children;if(u&&u.length){var a,o,c,l=f(e),s=[],h=u.slice(),p=1/0,d=\"slice\"===g?l.dx:\"dice\"===g?l.dy:\"slice-dice\"===g?1&e.depth?l.dy:l.dx:Math.min(l.dx,l.dy);for(n(h,l.dx*l.dy/e.value),s.area=0;(c=h.length)>0;)s.push(a=h[c-1]),s.area+=a.area,\"squarify\"!==g||(o=r(s,d))<=p?(h.pop(),p=o):(s.area-=s.pop().area,i(s,d,l,!1),d=Math.min(l.dx,l.dy),s.length=s.area=0,p=1/0);s.length&&(i(s,d,l,!0),s.length=s.area=0),u.forEach(t)}}function e(t){var r=t.children;if(r&&r.length){var u,a=f(t),o=r.slice(),c=[];for(n(o,a.dx*a.dy/t.value),c.area=0;u=o.pop();)c.push(u),c.area+=u.area,null!=u.z&&(i(c,u.z?a.dx:a.dy,a,!o.length),c.length=c.area=0);r.forEach(e)}}function r(n,t){for(var e,r=n.area,i=0,u=1/0,a=-1,o=n.length;++a<o;)(e=n[a].area)&&(u>e&&(u=e),e>i&&(i=e));return r*=r,t*=t,r?Math.max(t*i*p/r,r/(t*u*p)):1/0}function i(n,t,e,r){var i,u=-1,a=n.length,o=e.x,l=e.y,s=t?c(n.area/t):0;if(t==e.dx){for((r||s>e.dy)&&(s=e.dy);++u<a;)i=n[u],i.x=o,i.y=l,i.dy=s,o+=i.dx=Math.min(e.x+e.dx-o,s?c(i.area/s):0);i.z=!0,i.dx+=e.x+e.dx-o,e.y+=s,e.dy-=s}else{for((r||s>e.dx)&&(s=e.dx);++u<a;)i=n[u],i.x=o,i.y=l,i.dx=s,l+=i.dy=Math.min(e.y+e.dy-l,s?c(i.area/s):0);i.z=!1,i.dy+=e.y+e.dy-l,e.x+=s,e.dx-=s}}function u(r){var i=a||o(r),u=i[0];return u.x=0,u.y=0,u.dx=l[0],u.dy=l[1],a&&o.revalue(u),n([u],u.dx*u.dy/u.value),(a?e:t)(u),h&&(a=i),i}var a,o=da.layout.hierarchy(),c=Math.round,l=[1,1],s=null,f=Ri,h=!1,g=\"squarify\",p=.5*(1+Math.sqrt(5));return u.size=function(n){return arguments.length?(l=n,u):l},u.padding=function(n){function t(t){var e=n.call(u,t,t.depth);return null==e?Ri(t):Ui(t,\"number\"==typeof e?[e,e,e,e]:e)}function e(t){return Ui(t,n)}if(!arguments.length)return s;var r;return f=null==(s=n)?Ri:\"function\"==(r=typeof n)?t:\"number\"===r?(n=[n,n,n,n],e):e,u},u.round=function(n){return arguments.length?(c=n?Math.round:Number,u):c!=Number},u.sticky=function(n){return arguments.length?(h=n,a=null,u):h},u.ratio=function(n){return arguments.length?(p=n,u):p},u.mode=function(n){return arguments.length?(g=n+\"\",u):g},ti(u,o)},da.random={normal:function(n,t){var e=arguments.length;return 2>e&&(t=1),1>e&&(n=0),function(){var e,r,i;do e=2*Math.random()-1,r=2*Math.random()-1,i=e*e+r*r;while(!i||i>1);return n+t*e*Math.sqrt(-2*Math.log(i)/i)}},logNormal:function(){var n=da.random.normal.apply(da,arguments);return function(){return Math.exp(n())}},irwinHall:function(n){return function(){for(var t=0,e=0;n>e;e++)t+=Math.random();return t/n}}},da.scale={};var _c={floor:gt,ceil:gt};da.scale.linear=function(){return Wi([0,1],[0,1],br,!1)},da.scale.log=function(){return eu(da.scale.linear().domain([0,1]),10,!0,[1,10])};var wc=da.format(\".0e\"),Sc={floor:function(n){return-Math.ceil(-n)},ceil:function(n){return-Math.floor(-n)}};da.scale.pow=function(){return ru(da.scale.linear(),1,[0,1])},da.scale.sqrt=function(){return da.scale.pow().exponent(.5)},da.scale.ordinal=function(){return uu([],{t:\"range\",a:[[]]})},da.scale.category10=function(){return da.scale.ordinal().range(Ec)},da.scale.category20=function(){return da.scale.ordinal().range(kc)},da.scale.category20b=function(){return da.scale.ordinal().range(Ac)},da.scale.category20c=function(){return da.scale.ordinal().range(Nc)};var Ec=[\"#1f77b4\",\"#ff7f0e\",\"#2ca02c\",\"#d62728\",\"#9467bd\",\"#8c564b\",\"#e377c2\",\"#7f7f7f\",\"#bcbd22\",\"#17becf\"],kc=[\"#1f77b4\",\"#aec7e8\",\"#ff7f0e\",\"#ffbb78\",\"#2ca02c\",\"#98df8a\",\"#d62728\",\"#ff9896\",\"#9467bd\",\"#c5b0d5\",\"#8c564b\",\"#c49c94\",\"#e377c2\",\"#f7b6d2\",\"#7f7f7f\",\"#c7c7c7\",\"#bcbd22\",\"#dbdb8d\",\"#17becf\",\"#9edae5\"],Ac=[\"#393b79\",\"#5254a3\",\"#6b6ecf\",\"#9c9ede\",\"#637939\",\"#8ca252\",\"#b5cf6b\",\"#cedb9c\",\"#8c6d31\",\"#bd9e39\",\"#e7ba52\",\"#e7cb94\",\"#843c39\",\"#ad494a\",\"#d6616b\",\"#e7969c\",\"#7b4173\",\"#a55194\",\"#ce6dbd\",\"#de9ed6\"],Nc=[\"#3182bd\",\"#6baed6\",\"#9ecae1\",\"#c6dbef\",\"#e6550d\",\"#fd8d3c\",\"#fdae6b\",\"#fdd0a2\",\"#31a354\",\"#74c476\",\"#a1d99b\",\"#c7e9c0\",\"#756bb1\",\"#9e9ac8\",\"#bcbddc\",\"#dadaeb\",\"#636363\",\"#969696\",\"#bdbdbd\",\"#d9d9d9\"];da.scale.quantile=function(){return au([],[])},da.scale.quantize=function(){return ou(0,1,[0,1])},da.scale.threshold=function(){return cu([.5],[0,1])},da.scale.identity=function(){return lu([0,1])},da.svg.arc=function(){function n(){var n=t.apply(this,arguments),u=e.apply(this,arguments),a=r.apply(this,arguments)+qc,o=i.apply(this,arguments)+qc,c=(a>o&&(c=a,a=o,o=c),o-a),l=Wa>c?\"0\":\"1\",s=Math.cos(a),f=Math.sin(a),h=Math.cos(o),g=Math.sin(o);return c>=Tc?n?\"M0,\"+u+\"A\"+u+\",\"+u+\" 0 1,1 0,\"+-u+\"A\"+u+\",\"+u+\" 0 1,1 0,\"+u+\"M0,\"+n+\"A\"+n+\",\"+n+\" 0 1,0 0,\"+-n+\"A\"+n+\",\"+n+\" 0 1,0 0,\"+n+\"Z\":\"M0,\"+u+\"A\"+u+\",\"+u+\" 0 1,1 0,\"+-u+\"A\"+u+\",\"+u+\" 0 1,1 0,\"+u+\"Z\":n?\"M\"+u*s+\",\"+u*f+\"A\"+u+\",\"+u+\" 0 \"+l+\",1 \"+u*h+\",\"+u*g+\"L\"+n*h+\",\"+n*g+\"A\"+n+\",\"+n+\" 0 \"+l+\",0 \"+n*s+\",\"+n*f+\"Z\":\"M\"+u*s+\",\"+u*f+\"A\"+u+\",\"+u+\" 0 \"+l+\",1 \"+u*h+\",\"+u*g+\"L0,0\"+\"Z\"}var t=su,e=fu,r=hu,i=gu;return n.innerRadius=function(e){return arguments.length?(t=ht(e),n):t},n.outerRadius=function(t){return arguments.length?(e=ht(t),n):e},n.startAngle=function(t){return arguments.length?(r=ht(t),n):r},n.endAngle=function(t){return arguments.length?(i=ht(t),n):i},n.centroid=function(){var n=(t.apply(this,arguments)+e.apply(this,arguments))/2,u=(r.apply(this,arguments)+i.apply(this,arguments))/2+qc;return[Math.cos(u)*n,Math.sin(u)*n]},n};var qc=-Wa/2,Tc=2*Wa-1e-6;da.svg.line.radial=function(){var n=Oe(pu);return n.radius=n.x,delete n.x,n.angle=n.y,delete n.y,n},Xe.reverse=Ze,Ze.reverse=Xe,da.svg.area=function(){return du(gt)},da.svg.area.radial=function(){var n=du(pu);return n.radius=n.x,delete n.x,n.innerRadius=n.x0,delete n.x0,n.outerRadius=n.x1,delete n.x1,n.angle=n.y,delete n.y,n.startAngle=n.y0,delete n.y0,n.endAngle=n.y1,delete n.y1,n},da.svg.chord=function(){function n(n,o){var c=t(this,u,n,o),l=t(this,a,n,o);return\"M\"+c.p0+r(c.r,c.p1,c.a1-c.a0)+(e(c,l)?i(c.r,c.p1,c.r,c.p0):i(c.r,c.p1,l.r,l.p0)+r(l.r,l.p1,l.a1-l.a0)+i(l.r,l.p1,c.r,c.p0))+\"Z\"}function t(n,t,e,r){var i=t.call(n,e,r),u=o.call(n,i,r),a=c.call(n,i,r)+qc,s=l.call(n,i,r)+qc;return{r:u,a0:a,a1:s,p0:[u*Math.cos(a),u*Math.sin(a)],p1:[u*Math.cos(s),u*Math.sin(s)]}}function e(n,t){return n.a0==t.a0&&n.a1==t.a1}function r(n,t,e){return\"A\"+n+\",\"+n+\" 0 \"+ +(e>Wa)+\",1 \"+t}function i(n,t,e,r){return\"Q 0,0 \"+r}var u=qe,a=Te,o=mu,c=hu,l=gu;return n.radius=function(t){return arguments.length?(o=ht(t),n):o},n.source=function(t){return arguments.length?(u=ht(t),n):u},n.target=function(t){return arguments.length?(a=ht(t),n):a},n.startAngle=function(t){return arguments.length?(c=ht(t),n):c},n.endAngle=function(t){return arguments.length?(l=ht(t),n):l},n},da.svg.diagonal=function(){function n(n,i){var u=t.call(this,n,i),a=e.call(this,n,i),o=(u.y+a.y)/2,c=[u,{x:u.x,y:o},{x:a.x,y:o},a];return c=c.map(r),\"M\"+c[0]+\"C\"+c[1]+\" \"+c[2]+\" \"+c[3]}var t=qe,e=Te,r=vu;return n.source=function(e){return arguments.length?(t=ht(e),n):t},n.target=function(t){return arguments.length?(e=ht(t),n):e},n.projection=function(t){return arguments.length?(r=t,n):r},n},da.svg.diagonal.radial=function(){var n=da.svg.diagonal(),t=vu,e=n.projection;return n.projection=function(n){return arguments.length?e(yu(t=n)):t},n},da.svg.symbol=function(){function n(n,r){return(Cc.get(t.call(this,n,r))||bu)(e.call(this,n,r))}var t=xu,e=Mu;return n.type=function(e){return arguments.length?(t=ht(e),n):t},n.size=function(t){return arguments.length?(e=ht(t),n):e},n};var Cc=da.map({circle:bu,cross:function(n){var t=Math.sqrt(n/5)/2;return\"M\"+-3*t+\",\"+-t+\"H\"+-t+\"V\"+-3*t+\"H\"+t+\"V\"+-t+\"H\"+3*t+\"V\"+t+\"H\"+t+\"V\"+3*t+\"H\"+-t+\"V\"+t+\"H\"+-3*t+\"Z\"},diamond:function(n){var t=Math.sqrt(n/(2*Lc)),e=t*Lc;return\"M0,\"+-t+\"L\"+e+\",0\"+\" 0,\"+t+\" \"+-e+\",0\"+\"Z\"},square:function(n){var t=Math.sqrt(n)/2;return\"M\"+-t+\",\"+-t+\"L\"+t+\",\"+-t+\" \"+t+\",\"+t+\" \"+-t+\",\"+t+\"Z\"},\"triangle-down\":function(n){var t=Math.sqrt(n/jc),e=t*jc/2;return\"M0,\"+e+\"L\"+t+\",\"+-e+\" \"+-t+\",\"+-e+\"Z\"},\"triangle-up\":function(n){var t=Math.sqrt(n/jc),e=t*jc/2;return\"M0,\"+-e+\"L\"+t+\",\"+e+\" \"+-t+\",\"+e+\"Z\"}});da.svg.symbolTypes=Cc.keys();var zc,Dc,jc=Math.sqrt(3),Lc=Math.tan(30*Ka),Hc=[],Fc=0;Hc.call=Fa.call,Hc.empty=Fa.empty,Hc.node=Fa.node,Hc.size=Fa.size,da.transition=function(n){return arguments.length?zc?n.transition():n:Ya.transition()},da.transition.prototype=Hc,Hc.select=function(n){var t,e,r,i=this.id,u=[];n=v(n);for(var a=-1,o=this.length;++a<o;){u.push(t=[]);for(var c=this[a],l=-1,s=c.length;++l<s;)(r=c[l])&&(e=n.call(r,r.__data__,l,a))?(\"__data__\"in r&&(e.__data__=r.__data__),Eu(e,l,i,r.__transition__[i]),t.push(e)):t.push(null)}return _u(u,i)},Hc.selectAll=function(n){var t,e,r,i,u,a=this.id,o=[];n=y(n);for(var c=-1,l=this.length;++c<l;)for(var s=this[c],f=-1,h=s.length;++f<h;)if(r=s[f]){u=r.__transition__[a],e=n.call(r,r.__data__,f,c),o.push(t=[]);for(var g=-1,p=e.length;++g<p;)(i=e[g])&&Eu(i,g,a,u),t.push(i)}return _u(o,a)},Hc.filter=function(n){var t,e,r,i=[];\"function\"!=typeof n&&(n=N(n));for(var u=0,a=this.length;a>u;u++){i.push(t=[]);for(var e=this[u],o=0,c=e.length;c>o;o++)(r=e[o])&&n.call(r,r.__data__,o)&&t.push(r)}return _u(i,this.id,this.time).ease(this.ease())},Hc.tween=function(n,t){var e=this.id;return arguments.length<2?this.node().__transition__[e].tween.get(n):T(this,null==t?function(t){t.__transition__[e].tween.remove(n)}:function(r){r.__transition__[e].tween.set(n,t)})},Hc.attr=function(n,t){function e(){this.removeAttribute(o)}function r(){this.removeAttributeNS(o.space,o.local)}function i(n){return null==n?e:(n+=\"\",function(){var t,e=this.getAttribute(o);return e!==n&&(t=a(e,n),function(n){this.setAttribute(o,t(n))})})}function u(n){return null==n?r:(n+=\"\",function(){var t,e=this.getAttributeNS(o.space,o.local);return e!==n&&(t=a(e,n),function(n){this.setAttributeNS(o.space,o.local,t(n))})})}if(arguments.length<2){for(t in n)this.attr(t,n[t]);return this}var a=\"transform\"==n?Vr:br,o=da.ns.qualify(n);return wu(this,\"attr.\"+n,t,o.local?u:i)},Hc.attrTween=function(n,t){function e(n,e){var r=t.call(this,n,e,this.getAttribute(i));return r&&function(n){this.setAttribute(i,r(n))}}function r(n,e){var r=t.call(this,n,e,this.getAttributeNS(i.space,i.local));return r&&function(n){this.setAttributeNS(i.space,i.local,r(n))}}var i=da.ns.qualify(n);return this.tween(\"attr.\"+n,i.local?r:e)},Hc.style=function(n,t,e){function r(){this.style.removeProperty(n)}function i(t){return null==t?r:(t+=\"\",function(){var r,i=ya.getComputedStyle(this,null).getPropertyValue(n);return i!==t&&(r=br(i,t),function(t){this.style.setProperty(n,r(t),e)})})}var u=arguments.length;if(3>u){if(\"string\"!=typeof n){2>u&&(t=\"\");for(e in n)this.style(e,n[e],t);return this}e=\"\"}return wu(this,\"style.\"+n,t,i)},Hc.styleTween=function(n,t,e){function r(r,i){var u=t.call(this,r,i,ya.getComputedStyle(this,null).getPropertyValue(n));return u&&function(t){this.style.setProperty(n,u(t),e)}}return arguments.length<3&&(e=\"\"),this.tween(\"style.\"+n,r)},Hc.text=function(n){return wu(this,\"text\",n,Su)},Hc.remove=function(){return this.each(\"end.transition\",function(){var n;!this.__transition__&&(n=this.parentNode)&&n.removeChild(this)})},Hc.ease=function(n){var t=this.id;return arguments.length<1?this.node().__transition__[t].ease:(\"function\"!=typeof n&&(n=da.ease.apply(da,arguments)),T(this,function(e){e.__transition__[t].ease=n}))},Hc.delay=function(n){var t=this.id;return T(this,\"function\"==typeof n?function(e,r,i){e.__transition__[t].delay=0|n.call(e,e.__data__,r,i)}:(n|=0,function(e){e.__transition__[t].delay=n}))},Hc.duration=function(n){var t=this.id;return T(this,\"function\"==typeof n?function(e,r,i){e.__transition__[t].duration=Math.max(1,0|n.call(e,e.__data__,r,i))}:(n=Math.max(1,0|n),function(e){e.__transition__[t].duration=n}))},Hc.each=function(n,t){var e=this.id;if(arguments.length<2){var r=Dc,i=zc;zc=e,T(this,function(t,r,i){Dc=t.__transition__[e],n.call(t,t.__data__,r,i)}),Dc=r,zc=i}else T(this,function(r){var i=r.__transition__[e];(i.event||(i.event=da.dispatch(\"start\",\"end\"))).on(n,t)});return this},Hc.transition=function(){for(var n,t,e,r,i=this.id,u=++Fc,a=[],o=0,c=this.length;c>o;o++){a.push(n=[]);for(var t=this[o],l=0,s=t.length;s>l;l++)(e=t[l])&&(r=Object.create(e.__transition__[i]),r.delay+=r.duration,Eu(e,l,u,r)),n.push(e)}return _u(a,u)},da.svg.axis=function(){function n(n){n.each(function(){var n,f=da.select(this),h=null==l?e.ticks?e.ticks.apply(e,c):e.domain():l,g=null==t?e.tickFormat?e.tickFormat.apply(e,c):String:t,p=Nu(e,h,s),d=f.selectAll(\".tick.minor\").data(p,String),m=d.enter().insert(\"line\",\".tick\").attr(\"class\",\"tick minor\").style(\"opacity\",1e-6),v=da.transition(d.exit()).style(\"opacity\",1e-6).remove(),y=da.transition(d).style(\"opacity\",1),M=f.selectAll(\".tick.major\").data(h,String),x=M.enter().insert(\"g\",\".domain\").attr(\"class\",\"tick major\").style(\"opacity\",1e-6),b=da.transition(M.exit()).style(\"opacity\",1e-6).remove(),_=da.transition(M).style(\"opacity\",1),w=Vi(e),S=f.selectAll(\".domain\").data([0]),E=(S.enter().append(\"path\").attr(\"class\",\"domain\"),da.transition(S)),k=e.copy(),A=this.__chart__||k;\nthis.__chart__=k,x.append(\"line\"),x.append(\"text\");var N=x.select(\"line\"),q=_.select(\"line\"),T=M.select(\"text\").text(g),C=x.select(\"text\"),z=_.select(\"text\");switch(r){case\"bottom\":n=ku,m.attr(\"y2\",u),y.attr(\"x2\",0).attr(\"y2\",u),N.attr(\"y2\",i),C.attr(\"y\",Math.max(i,0)+o),q.attr(\"x2\",0).attr(\"y2\",i),z.attr(\"x\",0).attr(\"y\",Math.max(i,0)+o),T.attr(\"dy\",\".71em\").style(\"text-anchor\",\"middle\"),E.attr(\"d\",\"M\"+w[0]+\",\"+a+\"V0H\"+w[1]+\"V\"+a);break;case\"top\":n=ku,m.attr(\"y2\",-u),y.attr(\"x2\",0).attr(\"y2\",-u),N.attr(\"y2\",-i),C.attr(\"y\",-(Math.max(i,0)+o)),q.attr(\"x2\",0).attr(\"y2\",-i),z.attr(\"x\",0).attr(\"y\",-(Math.max(i,0)+o)),T.attr(\"dy\",\"0em\").style(\"text-anchor\",\"middle\"),E.attr(\"d\",\"M\"+w[0]+\",\"+-a+\"V0H\"+w[1]+\"V\"+-a);break;case\"left\":n=Au,m.attr(\"x2\",-u),y.attr(\"x2\",-u).attr(\"y2\",0),N.attr(\"x2\",-i),C.attr(\"x\",-(Math.max(i,0)+o)),q.attr(\"x2\",-i).attr(\"y2\",0),z.attr(\"x\",-(Math.max(i,0)+o)).attr(\"y\",0),T.attr(\"dy\",\".32em\").style(\"text-anchor\",\"end\"),E.attr(\"d\",\"M\"+-a+\",\"+w[0]+\"H0V\"+w[1]+\"H\"+-a);break;case\"right\":n=Au,m.attr(\"x2\",u),y.attr(\"x2\",u).attr(\"y2\",0),N.attr(\"x2\",i),C.attr(\"x\",Math.max(i,0)+o),q.attr(\"x2\",i).attr(\"y2\",0),z.attr(\"x\",Math.max(i,0)+o).attr(\"y\",0),T.attr(\"dy\",\".32em\").style(\"text-anchor\",\"start\"),E.attr(\"d\",\"M\"+a+\",\"+w[0]+\"H0V\"+w[1]+\"H\"+a)}if(e.rangeBand){var D=k.rangeBand()/2,j=function(n){return k(n)+D};x.call(n,j),_.call(n,j)}else x.call(n,A),_.call(n,k),b.call(n,k),m.call(n,A),y.call(n,k),v.call(n,k)})}var t,e=da.scale.linear(),r=Pc,i=6,u=6,a=6,o=3,c=[10],l=null,s=0;return n.scale=function(t){return arguments.length?(e=t,n):e},n.orient=function(t){return arguments.length?(r=t in Oc?t+\"\":Pc,n):r},n.ticks=function(){return arguments.length?(c=arguments,n):c},n.tickValues=function(t){return arguments.length?(l=t,n):l},n.tickFormat=function(e){return arguments.length?(t=e,n):t},n.tickSize=function(t,e){if(!arguments.length)return i;var r=arguments.length-1;return i=+t,u=r>1?+e:i,a=r>0?+arguments[r]:i,n},n.tickPadding=function(t){return arguments.length?(o=+t,n):o},n.tickSubdivide=function(t){return arguments.length?(s=+t,n):s},n};var Pc=\"bottom\",Oc={top:1,right:1,bottom:1,left:1};da.svg.brush=function(){function n(u){u.each(function(){var u,a=da.select(this),s=a.selectAll(\".background\").data([0]),f=a.selectAll(\".extent\").data([0]),h=a.selectAll(\".resize\").data(l,String);a.style(\"pointer-events\",\"all\").on(\"mousedown.brush\",i).on(\"touchstart.brush\",i),s.enter().append(\"rect\").attr(\"class\",\"background\").style(\"visibility\",\"hidden\").style(\"cursor\",\"crosshair\"),f.enter().append(\"rect\").attr(\"class\",\"extent\").style(\"cursor\",\"move\"),h.enter().append(\"g\").attr(\"class\",function(n){return\"resize \"+n}).style(\"cursor\",function(n){return Yc[n]}).append(\"rect\").attr(\"x\",function(n){return/[ew]$/.test(n)?-3:null}).attr(\"y\",function(n){return/^[ns]/.test(n)?-3:null}).attr(\"width\",6).attr(\"height\",6).style(\"visibility\",\"hidden\"),h.style(\"display\",n.empty()?\"none\":null),h.exit().remove(),o&&(u=Vi(o),s.attr(\"x\",u[0]).attr(\"width\",u[1]-u[0]),e(a)),c&&(u=Vi(c),s.attr(\"y\",u[0]).attr(\"height\",u[1]-u[0]),r(a)),t(a)})}function t(n){n.selectAll(\".resize\").attr(\"transform\",function(n){return\"translate(\"+s[+/e$/.test(n)][0]+\",\"+s[+/^s/.test(n)][1]+\")\"})}function e(n){n.select(\".extent\").attr(\"x\",s[0][0]),n.selectAll(\".extent,.n>rect,.s>rect\").attr(\"width\",s[1][0]-s[0][0])}function r(n){n.select(\".extent\").attr(\"y\",s[0][1]),n.selectAll(\".extent,.e>rect,.w>rect\").attr(\"height\",s[1][1]-s[0][1])}function i(){function i(){var n=da.event.changedTouches;return n?da.touches(M,n)[0]:da.mouse(M)}function l(){32==da.event.keyCode&&(k||(v=null,N[0]-=s[1][0],N[1]-=s[1][1],k=2),g())}function h(){32==da.event.keyCode&&2==k&&(N[0]+=s[1][0],N[1]+=s[1][1],k=0,g())}function p(){var n=i(),u=!1;y&&(n[0]+=y[0],n[1]+=y[1]),k||(da.event.altKey?(v||(v=[(s[0][0]+s[1][0])/2,(s[0][1]+s[1][1])/2]),N[0]=s[+(n[0]<v[0])][0],N[1]=s[+(n[1]<v[1])][1]):v=null),S&&d(n,o,0)&&(e(_),u=!0),E&&d(n,c,1)&&(r(_),u=!0),u&&(t(_),b({type:\"brush\",mode:k?\"move\":\"resize\"}))}function d(n,t,e){var r,i,a=Vi(t),o=a[0],c=a[1],l=N[e],h=s[1][e]-s[0][e];return k&&(o-=l,c-=h+l),r=f[e]?Math.max(o,Math.min(c,n[e])):n[e],k?i=(r+=l)+h:(v&&(l=Math.max(o,Math.min(c,2*v[e]-r))),r>l?(i=r,r=l):i=l),s[0][e]!==r||s[1][e]!==i?(u=null,s[0][e]=r,s[1][e]=i,!0):void 0}function m(){p(),_.style(\"pointer-events\",\"all\").selectAll(\".resize\").style(\"display\",n.empty()?\"none\":null),da.select(\"body\").style(\"cursor\",null),q.on(\"mousemove.brush\",null).on(\"mouseup.brush\",null).on(\"touchmove.brush\",null).on(\"touchend.brush\",null).on(\"keydown.brush\",null).on(\"keyup.brush\",null),A(),b({type:\"brushend\"})}var v,y,M=this,x=da.select(da.event.target),b=a.of(M,arguments),_=da.select(M),w=x.datum(),S=!/^(n|s)$/.test(w)&&o,E=!/^(e|w)$/.test(w)&&c,k=x.classed(\"extent\"),A=H(),N=i(),q=da.select(ya).on(\"keydown.brush\",l).on(\"keyup.brush\",h);if(da.event.changedTouches?q.on(\"touchmove.brush\",p).on(\"touchend.brush\",m):q.on(\"mousemove.brush\",p).on(\"mouseup.brush\",m),k)N[0]=s[0][0]-N[0],N[1]=s[0][1]-N[1];else if(w){var T=+/w$/.test(w),C=+/^n/.test(w);y=[s[1-T][0]-N[0],s[1-C][1]-N[1]],N[0]=s[T][0],N[1]=s[C][1]}else da.event.altKey&&(v=N.slice());_.style(\"pointer-events\",\"none\").selectAll(\".resize\").style(\"display\",null),da.select(\"body\").style(\"cursor\",x.style(\"cursor\")),b({type:\"brushstart\"}),p()}var u,a=d(n,\"brushstart\",\"brush\",\"brushend\"),o=null,c=null,l=Rc[0],s=[[0,0],[0,0]],f=[!0,!0];return n.x=function(t){return arguments.length?(o=t,l=Rc[!o<<1|!c],n):o},n.y=function(t){return arguments.length?(c=t,l=Rc[!o<<1|!c],n):c},n.clamp=function(t){return arguments.length?(o&&c?f=[!!t[0],!!t[1]]:(o||c)&&(f[+!o]=!!t),n):o&&c?f:o||c?f[+!o]:null},n.extent=function(t){var e,r,i,a,l;return arguments.length?(u=[[0,0],[0,0]],o&&(e=t[0],r=t[1],c&&(e=e[0],r=r[0]),u[0][0]=e,u[1][0]=r,o.invert&&(e=o(e),r=o(r)),e>r&&(l=e,e=r,r=l),s[0][0]=0|e,s[1][0]=0|r),c&&(i=t[0],a=t[1],o&&(i=i[1],a=a[1]),u[0][1]=i,u[1][1]=a,c.invert&&(i=c(i),a=c(a)),i>a&&(l=i,i=a,a=l),s[0][1]=0|i,s[1][1]=0|a),n):(t=u||s,o&&(e=t[0][0],r=t[1][0],u||(e=s[0][0],r=s[1][0],o.invert&&(e=o.invert(e),r=o.invert(r)),e>r&&(l=e,e=r,r=l))),c&&(i=t[0][1],a=t[1][1],u||(i=s[0][1],a=s[1][1],c.invert&&(i=c.invert(i),a=c.invert(a)),i>a&&(l=i,i=a,a=l))),o&&c?[[e,i],[r,a]]:o?[e,r]:c&&[i,a])},n.clear=function(){return u=null,s[0][0]=s[0][1]=s[1][0]=s[1][1]=0,n},n.empty=function(){return o&&s[0][0]===s[1][0]||c&&s[0][1]===s[1][1]},da.rebind(n,a,\"on\")};var Yc={n:\"ns-resize\",e:\"ew-resize\",s:\"ns-resize\",w:\"ew-resize\",nw:\"nwse-resize\",ne:\"nesw-resize\",se:\"nwse-resize\",sw:\"nesw-resize\"},Rc=[[\"n\",\"e\",\"s\",\"w\",\"nw\",\"ne\",\"se\",\"sw\"],[\"e\",\"w\"],[\"n\",\"s\"],[]];da.time={};var Uc=Date,Ic=[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"];qu.prototype={getDate:function(){return this._.getUTCDate()},getDay:function(){return this._.getUTCDay()},getFullYear:function(){return this._.getUTCFullYear()},getHours:function(){return this._.getUTCHours()},getMilliseconds:function(){return this._.getUTCMilliseconds()},getMinutes:function(){return this._.getUTCMinutes()},getMonth:function(){return this._.getUTCMonth()},getSeconds:function(){return this._.getUTCSeconds()},getTime:function(){return this._.getTime()},getTimezoneOffset:function(){return 0},valueOf:function(){return this._.valueOf()},setDate:function(){Vc.setUTCDate.apply(this._,arguments)},setDay:function(){Vc.setUTCDay.apply(this._,arguments)},setFullYear:function(){Vc.setUTCFullYear.apply(this._,arguments)},setHours:function(){Vc.setUTCHours.apply(this._,arguments)},setMilliseconds:function(){Vc.setUTCMilliseconds.apply(this._,arguments)},setMinutes:function(){Vc.setUTCMinutes.apply(this._,arguments)},setMonth:function(){Vc.setUTCMonth.apply(this._,arguments)},setSeconds:function(){Vc.setUTCSeconds.apply(this._,arguments)},setTime:function(){Vc.setTime.apply(this._,arguments)}};var Vc=Date.prototype,Xc=\"%a %b %e %X %Y\",Zc=\"%m/%d/%Y\",Bc=\"%H:%M:%S\",$c=[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"],Wc=[\"Sun\",\"Mon\",\"Tue\",\"Wed\",\"Thu\",\"Fri\",\"Sat\"],Jc=[\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"],Gc=[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"];da.time.year=Tu(function(n){return n=da.time.day(n),n.setMonth(0,1),n},function(n,t){n.setFullYear(n.getFullYear()+t)},function(n){return n.getFullYear()}),da.time.years=da.time.year.range,da.time.years.utc=da.time.year.utc.range,da.time.day=Tu(function(n){var t=new Uc(2e3,0);return t.setFullYear(n.getFullYear(),n.getMonth(),n.getDate()),t},function(n,t){n.setDate(n.getDate()+t)},function(n){return n.getDate()-1}),da.time.days=da.time.day.range,da.time.days.utc=da.time.day.utc.range,da.time.dayOfYear=function(n){var t=da.time.year(n);return Math.floor((n-t-6e4*(n.getTimezoneOffset()-t.getTimezoneOffset()))/864e5)},Ic.forEach(function(n,t){n=n.toLowerCase(),t=7-t;var e=da.time[n]=Tu(function(n){return(n=da.time.day(n)).setDate(n.getDate()-(n.getDay()+t)%7),n},function(n,t){n.setDate(n.getDate()+7*Math.floor(t))},function(n){var e=da.time.year(n).getDay();return Math.floor((da.time.dayOfYear(n)+(e+t)%7)/7)-(e!==t)});da.time[n+\"s\"]=e.range,da.time[n+\"s\"].utc=e.utc.range,da.time[n+\"OfYear\"]=function(n){var e=da.time.year(n).getDay();return Math.floor((da.time.dayOfYear(n)+(e+t)%7)/7)}}),da.time.week=da.time.sunday,da.time.weeks=da.time.sunday.range,da.time.weeks.utc=da.time.sunday.utc.range,da.time.weekOfYear=da.time.sundayOfYear,da.time.format=function(n){function t(t){for(var r,i,u,a=[],o=-1,c=0;++o<e;)37===n.charCodeAt(o)&&(a.push(n.substring(c,o)),null!=(i=ol[r=n.charAt(++o)])&&(r=n.charAt(++o)),(u=cl[r])&&(r=u(t,null==i?\"e\"===r?\" \":\"0\":i)),a.push(r),c=o+1);return a.push(n.substring(c,o)),a.join(\"\")}var e=n.length;return t.parse=function(t){var e={y:1900,m:0,d:1,H:0,M:0,S:0,L:0},r=zu(e,n,t,0);if(r!=t.length)return null;\"p\"in e&&(e.H=e.H%12+12*e.p);var i=new Uc;return\"j\"in e?i.setFullYear(e.y,0,e.j):\"w\"in e&&(\"W\"in e||\"U\"in e)?(i.setFullYear(e.y,0,1),i.setFullYear(e.y,0,\"W\"in e?(e.w+6)%7+7*e.W-(i.getDay()+5)%7:e.w+7*e.U-(i.getDay()+6)%7)):i.setFullYear(e.y,e.m,e.d),i.setHours(e.H,e.M,e.S,e.L),i},t.toString=function(){return n},t};var Kc=Du($c),Qc=ju($c),nl=Du(Wc),tl=ju(Wc),el=Du(Jc),rl=ju(Jc),il=Du(Gc),ul=ju(Gc),al=/^%/,ol={\"-\":\"\",_:\" \",0:\"0\"},cl={a:function(n){return Wc[n.getDay()]},A:function(n){return $c[n.getDay()]},b:function(n){return Gc[n.getMonth()]},B:function(n){return Jc[n.getMonth()]},c:da.time.format(Xc),d:function(n,t){return Lu(n.getDate(),t,2)},e:function(n,t){return Lu(n.getDate(),t,2)},H:function(n,t){return Lu(n.getHours(),t,2)},I:function(n,t){return Lu(n.getHours()%12||12,t,2)},j:function(n,t){return Lu(1+da.time.dayOfYear(n),t,3)},L:function(n,t){return Lu(n.getMilliseconds(),t,3)},m:function(n,t){return Lu(n.getMonth()+1,t,2)},M:function(n,t){return Lu(n.getMinutes(),t,2)},p:function(n){return n.getHours()>=12?\"PM\":\"AM\"},S:function(n,t){return Lu(n.getSeconds(),t,2)},U:function(n,t){return Lu(da.time.sundayOfYear(n),t,2)},w:function(n){return n.getDay()},W:function(n,t){return Lu(da.time.mondayOfYear(n),t,2)},x:da.time.format(Zc),X:da.time.format(Bc),y:function(n,t){return Lu(n.getFullYear()%100,t,2)},Y:function(n,t){return Lu(n.getFullYear()%1e4,t,4)},Z:ra,\"%\":function(){return\"%\"}},ll={a:Hu,A:Fu,b:Ru,B:Uu,c:Iu,d:Ju,e:Ju,H:Ku,I:Ku,j:Gu,L:ta,m:Wu,M:Qu,p:ea,S:na,U:Ou,w:Pu,W:Yu,x:Vu,X:Xu,y:Bu,Y:Zu,\"%\":ia},sl=/^\\s*\\d+/,fl=da.map({am:0,pm:1});da.time.format.utc=function(n){function t(n){try{Uc=qu;var t=new Uc;return t._=n,e(t)}finally{Uc=Date}}var e=da.time.format(n);return t.parse=function(n){try{Uc=qu;var t=e.parse(n);return t&&t._}finally{Uc=Date}},t.toString=e.toString,t};var hl=da.time.format.utc(\"%Y-%m-%dT%H:%M:%S.%LZ\");da.time.format.iso=Date.prototype.toISOString&&+new Date(\"2000-01-01T00:00:00.000Z\")?ua:hl,ua.parse=function(n){var t=new Date(n);return isNaN(t)?null:t},ua.toString=hl.toString,da.time.second=Tu(function(n){return new Uc(1e3*Math.floor(n/1e3))},function(n,t){n.setTime(n.getTime()+1e3*Math.floor(t))},function(n){return n.getSeconds()}),da.time.seconds=da.time.second.range,da.time.seconds.utc=da.time.second.utc.range,da.time.minute=Tu(function(n){return new Uc(6e4*Math.floor(n/6e4))},function(n,t){n.setTime(n.getTime()+6e4*Math.floor(t))},function(n){return n.getMinutes()}),da.time.minutes=da.time.minute.range,da.time.minutes.utc=da.time.minute.utc.range,da.time.hour=Tu(function(n){var t=n.getTimezoneOffset()/60;return new Uc(36e5*(Math.floor(n/36e5-t)+t))},function(n,t){n.setTime(n.getTime()+36e5*Math.floor(t))},function(n){return n.getHours()}),da.time.hours=da.time.hour.range,da.time.hours.utc=da.time.hour.utc.range,da.time.month=Tu(function(n){return n=da.time.day(n),n.setDate(1),n},function(n,t){n.setMonth(n.getMonth()+t)},function(n){return n.getMonth()}),da.time.months=da.time.month.range,da.time.months.utc=da.time.month.utc.range;var gl=[1e3,5e3,15e3,3e4,6e4,3e5,9e5,18e5,36e5,108e5,216e5,432e5,864e5,1728e5,6048e5,2592e6,7776e6,31536e6],pl=[[da.time.second,1],[da.time.second,5],[da.time.second,15],[da.time.second,30],[da.time.minute,1],[da.time.minute,5],[da.time.minute,15],[da.time.minute,30],[da.time.hour,1],[da.time.hour,3],[da.time.hour,6],[da.time.hour,12],[da.time.day,1],[da.time.day,2],[da.time.week,1],[da.time.month,1],[da.time.month,3],[da.time.year,1]],dl=[[da.time.format(\"%Y\"),Ut],[da.time.format(\"%B\"),function(n){return n.getMonth()}],[da.time.format(\"%b %d\"),function(n){return 1!=n.getDate()}],[da.time.format(\"%a %d\"),function(n){return n.getDay()&&1!=n.getDate()}],[da.time.format(\"%I %p\"),function(n){return n.getHours()}],[da.time.format(\"%I:%M\"),function(n){return n.getMinutes()}],[da.time.format(\":%S\"),function(n){return n.getSeconds()}],[da.time.format(\".%L\"),function(n){return n.getMilliseconds()}]],ml=da.scale.linear(),vl=ca(dl);pl.year=function(n,t){return ml.domain(n.map(sa)).ticks(t).map(la)},da.time.scale=function(){return aa(da.scale.linear(),pl,vl)};var yl=pl.map(function(n){return[n[0].utc,n[1]]}),Ml=[[da.time.format.utc(\"%Y\"),Ut],[da.time.format.utc(\"%B\"),function(n){return n.getUTCMonth()}],[da.time.format.utc(\"%b %d\"),function(n){return 1!=n.getUTCDate()}],[da.time.format.utc(\"%a %d\"),function(n){return n.getUTCDay()&&1!=n.getUTCDate()}],[da.time.format.utc(\"%I %p\"),function(n){return n.getUTCHours()}],[da.time.format.utc(\"%I:%M\"),function(n){return n.getUTCMinutes()}],[da.time.format.utc(\":%S\"),function(n){return n.getUTCSeconds()}],[da.time.format.utc(\".%L\"),function(n){return n.getUTCMilliseconds()}]],xl=ca(Ml);return yl.year=function(n,t){return ml.domain(n.map(ha)).ticks(t).map(fa)},da.time.scale.utc=function(){return aa(da.scale.linear(),yl,xl)},da.text=pt(function(n){return n.responseText}),da.json=function(n,t){return dt(n,\"application/json\",ga,t)},da.html=function(n,t){return dt(n,\"text/html\",pa,t)},da.xml=pt(function(n){return n.responseXML}),da}();}\nexports.d3 = d3;\n",
"type": "application/javascript",
"title": "$:/plugins/tiddlywiki/d3/d3.js",
"module-type": "library"
},
"$:/plugins/tiddlywiki/d3/d3.layout.cloud.js": {
"text": "// Word cloud layout by Jason Davies, http://www.jasondavies.com/word-cloud/\n// Algorithm due to Jonathan Feinberg, http://static.mrfeinberg.com/bv_ch03.pdf\n(function(exports) {\n function cloud() {\n var size = [256, 256],\n text = cloudText,\n font = cloudFont,\n fontSize = cloudFontSize,\n fontStyle = cloudFontNormal,\n fontWeight = cloudFontNormal,\n rotate = cloudRotate,\n padding = cloudPadding,\n spiral = archimedeanSpiral,\n words = [],\n timeInterval = Infinity,\n event = d3.dispatch(\"word\", \"end\"),\n timer = null,\n cloud = {};\n\n cloud.start = function() {\n var board = zeroArray((size[0] >> 5) * size[1]),\n bounds = null,\n n = words.length,\n i = -1,\n tags = [],\n data = words.map(function(d, i) {\n d.text = text.call(this, d, i);\n d.font = font.call(this, d, i);\n d.style = fontStyle.call(this, d, i);\n d.weight = fontWeight.call(this, d, i);\n d.rotate = rotate.call(this, d, i);\n d.size = ~~fontSize.call(this, d, i);\n d.padding = padding.call(this, d, i);\n return d;\n }).sort(function(a, b) { return b.size - a.size; });\n\n if (timer) clearInterval(timer);\n timer = setInterval(step, 0);\n step();\n\n return cloud;\n\n function step() {\n var start = +new Date,\n d;\n while (+new Date - start < timeInterval && ++i < n && timer) {\n d = data[i];\n d.x = (size[0] * (Math.random() + .5)) >> 1;\n d.y = (size[1] * (Math.random() + .5)) >> 1;\n cloudSprite(d, data, i);\n if (d.hasText && place(board, d, bounds)) {\n tags.push(d);\n event.word(d);\n if (bounds) cloudBounds(bounds, d);\n else bounds = [{x: d.x + d.x0, y: d.y + d.y0}, {x: d.x + d.x1, y: d.y + d.y1}];\n // Temporary hack\n d.x -= size[0] >> 1;\n d.y -= size[1] >> 1;\n }\n }\n if (i >= n) {\n cloud.stop();\n event.end(tags, bounds);\n }\n }\n }\n\n cloud.stop = function() {\n if (timer) {\n clearInterval(timer);\n timer = null;\n }\n return cloud;\n };\n\n cloud.timeInterval = function(x) {\n if (!arguments.length) return timeInterval;\n timeInterval = x == null ? Infinity : x;\n return cloud;\n };\n\n function place(board, tag, bounds) {\n var perimeter = [{x: 0, y: 0}, {x: size[0], y: size[1]}],\n startX = tag.x,\n startY = tag.y,\n maxDelta = Math.sqrt(size[0] * size[0] + size[1] * size[1]),\n s = spiral(size),\n dt = Math.random() < .5 ? 1 : -1,\n t = -dt,\n dxdy,\n dx,\n dy;\n\n while (dxdy = s(t += dt)) {\n dx = ~~dxdy[0];\n dy = ~~dxdy[1];\n\n if (Math.min(dx, dy) > maxDelta) break;\n\n tag.x = startX + dx;\n tag.y = startY + dy;\n\n if (tag.x + tag.x0 < 0 || tag.y + tag.y0 < 0 ||\n tag.x + tag.x1 > size[0] || tag.y + tag.y1 > size[1]) continue;\n // TODO only check for collisions within current bounds.\n if (!bounds || !cloudCollide(tag, board, size[0])) {\n if (!bounds || collideRects(tag, bounds)) {\n var sprite = tag.sprite,\n w = tag.width >> 5,\n sw = size[0] >> 5,\n lx = tag.x - (w << 4),\n sx = lx & 0x7f,\n msx = 32 - sx,\n h = tag.y1 - tag.y0,\n x = (tag.y + tag.y0) * sw + (lx >> 5),\n last;\n for (var j = 0; j < h; j++) {\n last = 0;\n for (var i = 0; i <= w; i++) {\n board[x + i] |= (last << msx) | (i < w ? (last = sprite[j * w + i]) >>> sx : 0);\n }\n x += sw;\n }\n delete tag.sprite;\n return true;\n }\n }\n }\n return false;\n }\n\n cloud.words = function(x) {\n if (!arguments.length) return words;\n words = x;\n return cloud;\n };\n\n cloud.size = function(x) {\n if (!arguments.length) return size;\n size = [+x[0], +x[1]];\n return cloud;\n };\n\n cloud.font = function(x) {\n if (!arguments.length) return font;\n font = d3.functor(x);\n return cloud;\n };\n\n cloud.fontStyle = function(x) {\n if (!arguments.length) return fontStyle;\n fontStyle = d3.functor(x);\n return cloud;\n };\n\n cloud.fontWeight = function(x) {\n if (!arguments.length) return fontWeight;\n fontWeight = d3.functor(x);\n return cloud;\n };\n\n cloud.rotate = function(x) {\n if (!arguments.length) return rotate;\n rotate = d3.functor(x);\n return cloud;\n };\n\n cloud.text = function(x) {\n if (!arguments.length) return text;\n text = d3.functor(x);\n return cloud;\n };\n\n cloud.spiral = function(x) {\n if (!arguments.length) return spiral;\n spiral = spirals[x + \"\"] || x;\n return cloud;\n };\n\n cloud.fontSize = function(x) {\n if (!arguments.length) return fontSize;\n fontSize = d3.functor(x);\n return cloud;\n };\n\n cloud.padding = function(x) {\n if (!arguments.length) return padding;\n padding = d3.functor(x);\n return cloud;\n };\n\n return d3.rebind(cloud, event, \"on\");\n }\n\n function cloudText(d) {\n return d.text;\n }\n\n function cloudFont() {\n return \"serif\";\n }\n\n function cloudFontNormal() {\n return \"normal\";\n }\n\n function cloudFontSize(d) {\n return Math.sqrt(d.value);\n }\n\n function cloudRotate() {\n return (~~(Math.random() * 6) - 3) * 30;\n }\n\n function cloudPadding() {\n return 1;\n }\n\n // Fetches a monochrome sprite bitmap for the specified text.\n // Load in batches for speed.\n function cloudSprite(d, data, di) {\n if (d.sprite) return;\n c.clearRect(0, 0, (cw << 5) / ratio, ch / ratio);\n var x = 0,\n y = 0,\n maxh = 0,\n n = data.length;\n --di;\n while (++di < n) {\n d = data[di];\n c.save();\n c.font = d.style + \" \" + d.weight + \" \" + ~~((d.size + 1) / ratio) + \"px \" + d.font;\n var w = c.measureText(d.text + \"m\").width * ratio,\n h = d.size << 1;\n if (d.rotate) {\n var sr = Math.sin(d.rotate * cloudRadians),\n cr = Math.cos(d.rotate * cloudRadians),\n wcr = w * cr,\n wsr = w * sr,\n hcr = h * cr,\n hsr = h * sr;\n w = (Math.max(Math.abs(wcr + hsr), Math.abs(wcr - hsr)) + 0x1f) >> 5 << 5;\n h = ~~Math.max(Math.abs(wsr + hcr), Math.abs(wsr - hcr));\n } else {\n w = (w + 0x1f) >> 5 << 5;\n }\n if (h > maxh) maxh = h;\n if (x + w >= (cw << 5)) {\n x = 0;\n y += maxh;\n maxh = 0;\n }\n if (y + h >= ch) break;\n c.translate((x + (w >> 1)) / ratio, (y + (h >> 1)) / ratio);\n if (d.rotate) c.rotate(d.rotate * cloudRadians);\n c.fillText(d.text, 0, 0);\n if (d.padding) c.lineWidth = 2 * d.padding, c.strokeText(d.text, 0, 0);\n c.restore();\n d.width = w;\n d.height = h;\n d.xoff = x;\n d.yoff = y;\n d.x1 = w >> 1;\n d.y1 = h >> 1;\n d.x0 = -d.x1;\n d.y0 = -d.y1;\n d.hasText = true;\n x += w;\n }\n var pixels = c.getImageData(0, 0, (cw << 5) / ratio, ch / ratio).data,\n sprite = [];\n while (--di >= 0) {\n d = data[di];\n if (!d.hasText) continue;\n var w = d.width,\n w32 = w >> 5,\n h = d.y1 - d.y0;\n // Zero the buffer\n for (var i = 0; i < h * w32; i++) sprite[i] = 0;\n x = d.xoff;\n if (x == null) return;\n y = d.yoff;\n var seen = 0,\n seenRow = -1;\n for (var j = 0; j < h; j++) {\n for (var i = 0; i < w; i++) {\n var k = w32 * j + (i >> 5),\n m = pixels[((y + j) * (cw << 5) + (x + i)) << 2] ? 1 << (31 - (i % 32)) : 0;\n sprite[k] |= m;\n seen |= m;\n }\n if (seen) seenRow = j;\n else {\n d.y0++;\n h--;\n j--;\n y++;\n }\n }\n d.y1 = d.y0 + seenRow;\n d.sprite = sprite.slice(0, (d.y1 - d.y0) * w32);\n }\n }\n\n // Use mask-based collision detection.\n function cloudCollide(tag, board, sw) {\n sw >>= 5;\n var sprite = tag.sprite,\n w = tag.width >> 5,\n lx = tag.x - (w << 4),\n sx = lx & 0x7f,\n msx = 32 - sx,\n h = tag.y1 - tag.y0,\n x = (tag.y + tag.y0) * sw + (lx >> 5),\n last;\n for (var j = 0; j < h; j++) {\n last = 0;\n for (var i = 0; i <= w; i++) {\n if (((last << msx) | (i < w ? (last = sprite[j * w + i]) >>> sx : 0))\n & board[x + i]) return true;\n }\n x += sw;\n }\n return false;\n }\n\n function cloudBounds(bounds, d) {\n var b0 = bounds[0],\n b1 = bounds[1];\n if (d.x + d.x0 < b0.x) b0.x = d.x + d.x0;\n if (d.y + d.y0 < b0.y) b0.y = d.y + d.y0;\n if (d.x + d.x1 > b1.x) b1.x = d.x + d.x1;\n if (d.y + d.y1 > b1.y) b1.y = d.y + d.y1;\n }\n\n function collideRects(a, b) {\n return a.x + a.x1 > b[0].x && a.x + a.x0 < b[1].x && a.y + a.y1 > b[0].y && a.y + a.y0 < b[1].y;\n }\n\n function archimedeanSpiral(size) {\n var e = size[0] / size[1];\n return function(t) {\n return [e * (t *= .1) * Math.cos(t), t * Math.sin(t)];\n };\n }\n\n function rectangularSpiral(size) {\n var dy = 4,\n dx = dy * size[0] / size[1],\n x = 0,\n y = 0;\n return function(t) {\n var sign = t < 0 ? -1 : 1;\n // See triangular numbers: T_n = n * (n + 1) / 2.\n switch ((Math.sqrt(1 + 4 * sign * t) - sign) & 3) {\n case 0: x += dx; break;\n case 1: y += dy; break;\n case 2: x -= dx; break;\n default: y -= dy; break;\n }\n return [x, y];\n };\n }\n\n // TODO reuse arrays?\n function zeroArray(n) {\n var a = [],\n i = -1;\n while (++i < n) a[i] = 0;\n return a;\n }\n\n var cloudRadians = Math.PI / 180,\n cw = 1 << 11 >> 5,\n ch = 1 << 11,\n canvas,\n ratio = 1;\n\n if (typeof document !== \"undefined\") {\n canvas = document.createElement(\"canvas\");\n canvas.width = 1;\n canvas.height = 1;\n ratio = Math.sqrt(canvas.getContext(\"2d\").getImageData(0, 0, 1, 1).data.length >> 2);\n canvas.width = (cw << 5) / ratio;\n canvas.height = ch / ratio;\n } else {\n // node-canvas support\n var Canvas = require(\"canvas\");\n canvas = new Canvas(cw << 5, ch);\n }\n\n var c = canvas.getContext(\"2d\"),\n spirals = {\n archimedean: archimedeanSpiral,\n rectangular: rectangularSpiral\n };\n c.fillStyle = c.strokeStyle = \"red\";\n c.textAlign = \"center\";\n\n exports.cloud = cloud;\n})(typeof exports === \"undefined\" ? d3.layout || (d3.layout = {}) : exports);\n",
"type": "application/javascript",
"title": "$:/plugins/tiddlywiki/d3/d3.layout.cloud.js",
"module-type": "library"
},
"$:/plugins/tiddlywiki/d3/readme": {
"title": "$:/plugins/tiddlywiki/d3/readme",
"text": "The D3 plugin is a proof-of-concept demo of integration with the D3.js data visualisation framework (http://d3js.org).\n\nIt is not currently in a state where it can be used for anything useful.\n\n[[Source code|https://github.com/Jermolene/TiddlyWiki5/blob/master/plugins/tiddlywiki/d3]]\n"
}
}
}
{
"tiddlers": {
"$:/plugins/tiddlywiki/help/HelpPanel": {
"title": "$:/plugins/tiddlywiki/help/HelpPanel",
"tags": "$:/tags/PageTemplate",
"text": "<$reveal type=\"match\" state=\"$:/config/ShowHelp\" text=\"yes\">\n<div class=\"tc-help-panel\">\n<div class=\"tc-tiddler-controls\">\n<$button set=\"$:/config/ShowHelp\" setTo=\"no\" class=\"tc-btn-invisible\">{{$:/core/images/close-button}}</$button> ''Help Panel''\n</div>\n<<tabs \"[all[shadows+tiddlers]tag[$:/tags/HelpPanel]!has[draft.of]]\" \"$:/plugins/tiddlywiki/help/HelpPanel/Support\" \"$:/state/tab/help\">>\n</div>\n</$reveal>\n\n"
},
"$:/config/Help/CurrentVideo": {
"title": "$:/config/Help/CurrentVideo",
"text": "$:/plugins/tiddlywiki/help/Videos/Introduction"
},
"$:/config/ShowHelp": {
"title": "$:/config/ShowHelp",
"text": "no"
},
"$:/plugins/help/Buttons/help": {
"title": "$:/plugins/help/Buttons/help",
"tags": "$:/tags/PageControls",
"caption": "{{$:/core/images/help}} {{$:/language/Buttons/Help/Caption}}",
"description": "{{$:/language/Buttons/Help/Hint}}",
"text": "\\define help-inner()\n<$reveal type=\"match\" state=\"$:/config/ShowHelp\" text=\"yes\">\n<$button set=\"$:/config/ShowHelp\" setTo=\"no\" tooltip={{$:/language/Buttons/Help/Hint}} aria-label={{$:/language/Buttons/Help/Caption}} class=\"\"\"$(tv-config-toolbar-class)$ tc-selected\"\"\">\n<$list filter=\"[<tv-config-toolbar-icons>prefix[yes]]\">\n{{$:/core/images/help}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>prefix[yes]]\">\n<span class=\"tc-btn-text\"><$text text={{$:/language/Buttons/Help/Caption}}/></span>\n</$list>\n</$button>\n</$reveal>\n<$reveal type=\"nomatch\" state=\"$:/config/ShowHelp\" text=\"yes\">\n<$button set=\"$:/config/ShowHelp\" setTo=\"yes\" tooltip={{$:/language/Buttons/Help/Hint}} aria-label={{$:/language/Buttons/Help/Caption}} class=<<tv-config-toolbar-class>>>\n<$list filter=\"[<tv-config-toolbar-icons>prefix[yes]]\">\n{{$:/core/images/help}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>prefix[yes]]\">\n<span class=\"tc-btn-text\"><$text text={{$:/language/Buttons/Help/Caption}}/></span>\n</$list>\n</$button>\n</$reveal>\n\\end\n<<help-inner>>\n"
},
"$:/plugins/tiddlywiki/help/readme": {
"title": "$:/plugins/tiddlywiki/help/readme",
"text": "This plugin provides an overlay help panel at the bottom right of the window.\n\n[[Source code|https://github.com/Jermolene/TiddlyWiki5/blob/master/plugins/tiddlywiki/help]]\n"
},
"$:/plugins/tiddlywiki/help/styles": {
"title": "$:/plugins/tiddlywiki/help/styles",
"tags": "[[$:/tags/Stylesheet]]",
"text": "\\rules only filteredtranscludeinline transcludeinline macrodef macrocallinline\n\n.tc-help-panel {\n\tposition: fixed;\n\tbottom: 0;\n\tright: 0;\n\twidth: 310px;\n\theight: 400px;\n\toverflow: auto;\n\t-webkit-overflow-scrolling: touch;\n\t<<box-shadow \"0px 0px 5px rgba(0, 0, 0, 0.3)\">>\n\tborder: 1px solid <<colour tiddler-border>>;\n\tbackground: <<colour tiddler-background>>;\n\tpadding: 1em;\n\tmargin: 0.5em;\n\tz-index: 1000;\n}\n\ndl.tc-help-cheatsheet {\n\toverflow: hidden;\n}\n\ndl.tc-help-cheatsheet .red {\n\tcolor: red;\n}\n\n.tc-help-cheatsheet > dt {\n\tdisplay: block;\n\tfloat: left;\n\tclear: left;\n\tmargin: 2% 1em 0 0;\n\tpadding;\n\tfont-weight: normal;\n\twidth: 45%;\n}\n\n.tc-help-cheatsheet > dt > pre {\n\tmargin: 0;\n}\n\n.tc-help-cheatsheet > dd {\n\tdisplay: block;\n\tfloat: left;\n\twidth: 45%;\n\tmargin: 1em 0 0 0;\n\tpadding: 0;\n}\n\n.tc-help-cheatsheet > dd > p,\n.tc-help-cheatsheet > dd > h1,\n.tc-help-cheatsheet > dd > pre,\n.tc-help-cheatsheet > dd > ul,\n.tc-help-cheatsheet > dd > ol,\n.tc-help-cheatsheet > dd > dl,\n.tc-help-cheatsheet > dd > table,\n.tc-help-cheatsheet > dd > blockquote,\n.tc-help-cheatsheet > dd > blockquote >p {\n\tmargin: 0;\n}\n\n.tc-help-cheatsheet .tc-image {\n\twidth: 16px;\n}\n"
},
"$:/plugins/tiddlywiki/help/HelpPanel/Support": {
"title": "$:/plugins/tiddlywiki/help/HelpPanel/Support",
"tags": "$:/tags/HelpPanel",
"caption": "Support",
"text": "~TiddlyWiki is an open source project with a vibrant community of users and developers. We're always happy to help new users get the most from ~TiddlyWiki.\n\nJoin the ~TiddlyWiki mailing list:\n\nhttp://groups.google.com/group/TiddlyWiki\n\nPost bug reports to the ~TiddlyWiki ~GitHub repository:\n\nhttps://github.com/Jermolene/TiddlyWiki5\n"
},
"$:/plugins/tiddlywiki/help/HelpPanel/Videos": {
"title": "$:/plugins/tiddlywiki/help/HelpPanel/Videos",
"tags": "$:/tags/HelpPanel",
"caption": "Videos",
"text": "\\define show-video-inner(embed)\n<iframe width=\"280\" height=\"157\" src=\"\"\"https://www.youtube.com/embed/$embed$?autoplay=0&showinfo=0&theme=light&rel=0&modestbranding=1&autohide=1\"\"\" frameborder=\"0\" allowfullscreen></iframe>\n\\end\n\n\\define show-video(title)\n<$macrocall $name=\"show-video-inner\" embed={{$title$!!embed}}/>\n<p>{{$title$!!text}}</p>\n\\end\n\n<div class=\"tc-help-panel-inner\">\n\nChoose video: <$select tiddler=\"$:/config/Help/CurrentVideo\">\n<$list filter=\"[all[shadows+tiddlers]tag[$:/tags/HelpPanel/Videos]]\">\n<option value=<<currentTiddler>>><$view field=\"caption\"/></option>\n</$list>\n</$select>\n\n<$macrocall $name=\"show-video\" title={{$:/config/Help/CurrentVideo}}>>\n\n</div>\n"
},
"$:/plugins/tiddlywiki/help/Videos/FirefoxAndroid": {
"title": "$:/plugins/tiddlywiki/help/Videos/FirefoxAndroid",
"tags": "$:/tags/HelpPanel/Videos",
"caption": "Firefox for Android",
"embed": "iikkv9orGGI",
"text": "How to get started with using TiddlyWiki as a standalone HTML file with the TiddlyFox add-on for Firefox for Android.\n"
},
"$:/plugins/tiddlywiki/help/Videos/GettingStarted": {
"title": "$:/plugins/tiddlywiki/help/Videos/GettingStarted",
"tags": "$:/tags/HelpPanel/Videos",
"caption": "GettingStarted",
"embed": "1g66s7UbyuU",
"text": "How to get started with using TiddlyWiki as a standalone HTML file.\n"
},
"$:/plugins/tiddlywiki/help/Videos/Introduction": {
"title": "$:/plugins/tiddlywiki/help/Videos/Introduction",
"tags": "$:/tags/HelpPanel/Videos",
"caption": "Introduction",
"embed": "KtCUr83XgyE",
"text": "An introduction to the concepts of TiddlyWiki.\n"
},
"$:/plugins/tiddlywiki/help/Videos/TiddlyDesktop": {
"title": "$:/plugins/tiddlywiki/help/Videos/TiddlyDesktop",
"tags": "$:/tags/HelpPanel/Videos",
"caption": "TiddlyDesktop",
"embed": "i3Bggkm7paA",
"text": "Using TiddlyDesktop, the custom desktop TiddlyWiki application for Windows, OS X and Linux.\n"
}
}
}
{
"tiddlers": {
"$:/plugins/tiddlywiki/markdown/EditorToolbar/bold": {
"title": "$:/plugins/tiddlywiki/markdown/EditorToolbar/bold",
"list-after": "$:/core/ui/EditorToolbar/bold",
"tags": "$:/tags/EditorToolbar",
"icon": "$:/core/images/bold",
"caption": "{{$:/language/Buttons/Bold/Caption}} (Markdown)",
"description": "{{$:/language/Buttons/Bold/Hint}}",
"condition": "[<targetTiddler>type[text/x-markdown]]",
"shortcuts": "((bold))",
"text": "<$action-sendmessage\n\t$message=\"tm-edit-text-operation\"\n\t$param=\"wrap-selection\"\n\tprefix=\"**\"\n\tsuffix=\"**\"\n/>\n"
},
"$:/plugins/tiddlywiki/markdown/EditorToolbar/heading-1": {
"title": "$:/plugins/tiddlywiki/markdown/EditorToolbar/heading-1",
"list-after": "$:/core/ui/EditorToolbar/heading-1",
"tags": "$:/tags/EditorToolbar",
"icon": "$:/core/images/heading-1",
"caption": "{{$:/language/Buttons/Heading1/Caption}} (Markdown)",
"description": "{{$:/language/Buttons/Heading1/Hint}}",
"condition": "[<targetTiddler>type[text/x-markdown]]",
"shortcuts": "((heading-1))",
"text": "<$action-sendmessage\n\t$message=\"tm-edit-text-operation\"\n\t$param=\"prefix-lines\"\n\tcharacter=\"#\"\n\tcount=\"1\"\n/>\n"
},
"$:/plugins/tiddlywiki/markdown/EditorToolbar/heading-2": {
"title": "$:/plugins/tiddlywiki/markdown/EditorToolbar/heading-2",
"list-after": "$:/core/ui/EditorToolbar/heading-2",
"tags": "$:/tags/EditorToolbar",
"icon": "$:/core/images/heading-2",
"caption": "{{$:/language/Buttons/Heading2/Caption}} (Markdown)",
"description": "{{$:/language/Buttons/Heading2/Hint}}",
"condition": "[<targetTiddler>type[text/x-markdown]]",
"shortcuts": "((heading-2))",
"text": "<$action-sendmessage\n\t$message=\"tm-edit-text-operation\"\n\t$param=\"prefix-lines\"\n\tcharacter=\"#\"\n\tcount=\"2\"\n/>\n"
},
"$:/plugins/tiddlywiki/markdown/EditorToolbar/heading-3": {
"title": "$:/plugins/tiddlywiki/markdown/EditorToolbar/heading-3",
"list-after": "$:/core/ui/EditorToolbar/heading-3",
"tags": "$:/tags/EditorToolbar",
"icon": "$:/core/images/heading-3",
"caption": "{{$:/language/Buttons/Heading3/Caption}} (Markdown)",
"description": "{{$:/language/Buttons/Heading3/Hint}}",
"condition": "[<targetTiddler>type[text/x-markdown]]",
"shortcuts": "((heading-3))",
"text": "<$action-sendmessage\n\t$message=\"tm-edit-text-operation\"\n\t$param=\"prefix-lines\"\n\tcharacter=\"#\"\n\tcount=\"3\"\n/>\n"
},
"$:/plugins/tiddlywiki/markdown/EditorToolbar/heading-4": {
"title": "$:/plugins/tiddlywiki/markdown/EditorToolbar/heading-4",
"list-after": "$:/core/ui/EditorToolbar/heading-4",
"tags": "$:/tags/EditorToolbar",
"icon": "$:/core/images/heading-4",
"caption": "{{$:/language/Buttons/Heading4/Caption}} (Markdown)",
"description": "{{$:/language/Buttons/Heading4/Hint}}",
"condition": "[<targetTiddler>type[text/x-markdown]]",
"shortcuts": "((heading-4))",
"text": "<$action-sendmessage\n\t$message=\"tm-edit-text-operation\"\n\t$param=\"prefix-lines\"\n\tcharacter=\"#\"\n\tcount=\"4\"\n/>\n"
},
"$:/plugins/tiddlywiki/markdown/EditorToolbar/heading-5": {
"title": "$:/plugins/tiddlywiki/markdown/EditorToolbar/heading-5",
"list-after": "$:/core/ui/EditorToolbar/heading-5",
"tags": "$:/tags/EditorToolbar",
"icon": "$:/core/images/heading-5",
"caption": "{{$:/language/Buttons/Heading5/Caption}} (Markdown)",
"description": "{{$:/language/Buttons/Heading5/Hint}}",
"condition": "[<targetTiddler>type[text/x-markdown]]",
"shortcuts": "((heading-5))",
"text": "<$action-sendmessage\n\t$message=\"tm-edit-text-operation\"\n\t$param=\"prefix-lines\"\n\tcharacter=\"#\"\n\tcount=\"5\"\n/>\n"
},
"$:/plugins/tiddlywiki/markdown/EditorToolbar/heading-6": {
"title": "$:/plugins/tiddlywiki/markdown/EditorToolbar/heading-6",
"list-after": "$:/core/ui/EditorToolbar/heading-6",
"tags": "$:/tags/EditorToolbar",
"icon": "$:/core/images/heading-6",
"caption": "{{$:/language/Buttons/Heading6/Caption}} (Markdown)",
"description": "{{$:/language/Buttons/Heading6/Hint}}",
"condition": "[<targetTiddler>type[text/x-markdown]]",
"shortcuts": "((heading-6))",
"text": "<$action-sendmessage\n\t$message=\"tm-edit-text-operation\"\n\t$param=\"prefix-lines\"\n\tcharacter=\"#\"\n\tcount=\"6\"\n/>\n"
},
"$:/plugins/tiddlywiki/markdown/EditorToolbar/italic": {
"title": "$:/plugins/tiddlywiki/markdown/EditorToolbar/italic",
"list-after": "$:/core/ui/EditorToolbar/italic",
"tags": "$:/tags/EditorToolbar",
"icon": "$:/core/images/italic",
"caption": "{{$:/language/Buttons/Italic/Caption}} (Markdown)",
"description": "{{$:/language/Buttons/Italic/Hint}}",
"condition": "[<targetTiddler>type[text/x-markdown]]",
"shortcuts": "((italic))",
"text": "<$action-sendmessage\n\t$message=\"tm-edit-text-operation\"\n\t$param=\"wrap-selection\"\n\tprefix=\"*\"\n\tsuffix=\"*\"\n/>\n"
},
"$:/plugins/tiddlywiki/markdown/EditorToolbar/list-bullet": {
"title": "$:/plugins/tiddlywiki/markdown/EditorToolbar/list-bullet",
"list-after": "$:/core/ui/EditorToolbar/list-bullet",
"tags": "$:/tags/EditorToolbar",
"icon": "$:/core/images/list-bullet",
"caption": "{{$:/language/Buttons/ListBullet/Caption}} (Markdown)",
"description": "{{$:/language/Buttons/ListBullet/Hint}}",
"condition": "[<targetTiddler>type[text/x-markdown]]",
"shortcuts": "((list-bullet))",
"text": "<$action-sendmessage\n\t$message=\"tm-edit-text-operation\"\n\t$param=\"prefix-lines\"\n\tcharacter=\"*\"\n\tcount=\"1\"\n/>\n"
},
"$:/plugins/tiddlywiki/markdown/EditorToolbar/list-number": {
"title": "$:/plugins/tiddlywiki/markdown/EditorToolbar/list-number",
"list-after": "$:/core/ui/EditorToolbar/list-number",
"tags": "$:/tags/EditorToolbar",
"icon": "$:/core/images/list-number",
"caption": "{{$:/language/Buttons/ListNumber/Caption}} (Markdown)",
"description": "{{$:/language/Buttons/ListNumber/Hint}}",
"condition": "[<targetTiddler>type[text/x-markdown]]",
"shortcuts": "((list-number))",
"text": "<$action-sendmessage\n\t$message=\"tm-edit-text-operation\"\n\t$param=\"prefix-lines\"\n\tcharacter=\"1.\"\n\tcount=\"1\"\n/>\n"
},
"$:/plugins/tiddlywiki/markdown/EditorToolbar/mono-line": {
"title": "$:/plugins/tiddlywiki/markdown/EditorToolbar/mono-line",
"list-after": "$:/core/ui/EditorToolbar/mono-line",
"tags": "$:/tags/EditorToolbar",
"icon": "$:/core/images/mono-line",
"caption": "{{$:/language/Buttons/MonoLine/Caption}} (Markdown)",
"description": "{{$:/language/Buttons/MonoLine/Hint}}",
"condition": "[<targetTiddler>type[text/x-markdown]]",
"shortcuts": "((mono-line))",
"text": "<$action-sendmessage\n\t$message=\"tm-edit-text-operation\"\n\t$param=\"wrap-selection\"\n\tprefix=\"`\"\n\tsuffix=\"`\"\n/>\n"
},
"$:/plugins/tiddlywiki/markdown/EditorToolbar/quote": {
"title": "$:/plugins/tiddlywiki/markdown/EditorToolbar/quote",
"list-after": "$:/core/ui/EditorToolbar/quote",
"tags": "$:/tags/EditorToolbar",
"icon": "$:/core/images/quote",
"caption": "{{$:/language/Buttons/Quote/Caption}} (Markdown)",
"description": "{{$:/language/Buttons/Quote/Hint}}",
"condition": "[<targetTiddler>type[text/x-markdown]]",
"shortcuts": "((quote))",
"text": "<$action-sendmessage\n\t$message=\"tm-edit-text-operation\"\n\t$param=\"prefix-lines\"\n\tcharacter=\">\"\n\tcount=\"1\"\n/>\n"
},
"$:/config/markdown/dialect": {
"title": "$:/config/markdown/dialect",
"text": "Gruber"
},
"$:/language/Docs/Types/text/x-markdown": {
"title": "$:/language/Docs/Types/text/x-markdown",
"description": "Markdown",
"name": "text/x-markdown",
"group": "Text"
},
"$:/plugins/tiddlywiki/markdown/markdown.js": {
"text": "// Released under MIT license\n// Copyright (c) 2009-2010 Dominic Baggott\n// Copyright (c) 2009-2010 Ash Berlin\n// Copyright (c) 2011 Christoph Dorn <christoph@christophdorn.com> (http://www.christophdorn.com)\n\n/*jshint browser:true, devel:true */\n\n(function( expose ) {\n\n/**\n * class Markdown\n *\n * Markdown processing in Javascript done right. We have very particular views\n * on what constitutes 'right' which include:\n *\n * - produces well-formed HTML (this means that em and strong nesting is\n * important)\n *\n * - has an intermediate representation to allow processing of parsed data (We\n * in fact have two, both as [JsonML]: a markdown tree and an HTML tree).\n *\n * - is easily extensible to add new dialects without having to rewrite the\n * entire parsing mechanics\n *\n * - has a good test suite\n *\n * This implementation fulfills all of these (except that the test suite could\n * do with expanding to automatically run all the fixtures from other Markdown\n * implementations.)\n *\n * ##### Intermediate Representation\n *\n * *TODO* Talk about this :) Its JsonML, but document the node names we use.\n *\n * [JsonML]: http://jsonml.org/ \"JSON Markup Language\"\n **/\nvar Markdown = expose.Markdown = function(dialect) {\n switch (typeof dialect) {\n case \"undefined\":\n this.dialect = Markdown.dialects.Gruber;\n break;\n case \"object\":\n this.dialect = dialect;\n break;\n default:\n if ( dialect in Markdown.dialects ) {\n this.dialect = Markdown.dialects[dialect];\n }\n else {\n throw new Error(\"Unknown Markdown dialect '\" + String(dialect) + \"'\");\n }\n break;\n }\n this.em_state = [];\n this.strong_state = [];\n this.debug_indent = \"\";\n};\n\n/**\n * parse( markdown, [dialect] ) -> JsonML\n * - markdown (String): markdown string to parse\n * - dialect (String | Dialect): the dialect to use, defaults to gruber\n *\n * Parse `markdown` and return a markdown document as a Markdown.JsonML tree.\n **/\nexpose.parse = function( source, dialect ) {\n // dialect will default if undefined\n var md = new Markdown( dialect );\n return md.toTree( source );\n};\n\n/**\n * toHTML( markdown, [dialect] ) -> String\n * toHTML( md_tree ) -> String\n * - markdown (String): markdown string to parse\n * - md_tree (Markdown.JsonML): parsed markdown tree\n *\n * Take markdown (either as a string or as a JsonML tree) and run it through\n * [[toHTMLTree]] then turn it into a well-formated HTML fragment.\n **/\nexpose.toHTML = function toHTML( source , dialect , options ) {\n var input = expose.toHTMLTree( source , dialect , options );\n\n return expose.renderJsonML( input );\n};\n\n/**\n * toHTMLTree( markdown, [dialect] ) -> JsonML\n * toHTMLTree( md_tree ) -> JsonML\n * - markdown (String): markdown string to parse\n * - dialect (String | Dialect): the dialect to use, defaults to gruber\n * - md_tree (Markdown.JsonML): parsed markdown tree\n *\n * Turn markdown into HTML, represented as a JsonML tree. If a string is given\n * to this function, it is first parsed into a markdown tree by calling\n * [[parse]].\n **/\nexpose.toHTMLTree = function toHTMLTree( input, dialect , options ) {\n // convert string input to an MD tree\n if ( typeof input ===\"string\" ) input = this.parse( input, dialect );\n\n // Now convert the MD tree to an HTML tree\n\n // remove references from the tree\n var attrs = extract_attr( input ),\n refs = {};\n\n if ( attrs && attrs.references ) {\n refs = attrs.references;\n }\n\n var html = convert_tree_to_html( input, refs , options );\n merge_text_nodes( html );\n return html;\n};\n\n// For Spidermonkey based engines\nfunction mk_block_toSource() {\n return \"Markdown.mk_block( \" +\n uneval(this.toString()) +\n \", \" +\n uneval(this.trailing) +\n \", \" +\n uneval(this.lineNumber) +\n \" )\";\n}\n\n// node\nfunction mk_block_inspect() {\n var util = require(\"util\");\n return \"Markdown.mk_block( \" +\n util.inspect(this.toString()) +\n \", \" +\n util.inspect(this.trailing) +\n \", \" +\n util.inspect(this.lineNumber) +\n \" )\";\n\n}\n\nvar mk_block = Markdown.mk_block = function(block, trail, line) {\n // Be helpful for default case in tests.\n if ( arguments.length == 1 ) trail = \"\\n\\n\";\n\n var s = new String(block);\n s.trailing = trail;\n // To make it clear its not just a string\n s.inspect = mk_block_inspect;\n s.toSource = mk_block_toSource;\n\n if ( line != undefined )\n s.lineNumber = line;\n\n return s;\n};\n\nfunction count_lines( str ) {\n var n = 0, i = -1;\n while ( ( i = str.indexOf(\"\\n\", i + 1) ) !== -1 ) n++;\n return n;\n}\n\n// Internal - split source into rough blocks\nMarkdown.prototype.split_blocks = function splitBlocks( input, startLine ) {\n input = input.replace(/(\\r\\n|\\n|\\r)/g, \"\\n\");\n // [\\s\\S] matches _anything_ (newline or space)\n // [^] is equivalent but doesn't work in IEs.\n var re = /([\\s\\S]+?)($|\\n#|\\n(?:\\s*\\n|$)+)/g,\n blocks = [],\n m;\n\n var line_no = 1;\n\n if ( ( m = /^(\\s*\\n)/.exec(input) ) != null ) {\n // skip (but count) leading blank lines\n line_no += count_lines( m[0] );\n re.lastIndex = m[0].length;\n }\n\n while ( ( m = re.exec(input) ) !== null ) {\n if (m[2] == \"\\n#\") {\n m[2] = \"\\n\";\n re.lastIndex--;\n }\n blocks.push( mk_block( m[1], m[2], line_no ) );\n line_no += count_lines( m[0] );\n }\n\n return blocks;\n};\n\n/**\n * Markdown#processBlock( block, next ) -> undefined | [ JsonML, ... ]\n * - block (String): the block to process\n * - next (Array): the following blocks\n *\n * Process `block` and return an array of JsonML nodes representing `block`.\n *\n * It does this by asking each block level function in the dialect to process\n * the block until one can. Succesful handling is indicated by returning an\n * array (with zero or more JsonML nodes), failure by a false value.\n *\n * Blocks handlers are responsible for calling [[Markdown#processInline]]\n * themselves as appropriate.\n *\n * If the blocks were split incorrectly or adjacent blocks need collapsing you\n * can adjust `next` in place using shift/splice etc.\n *\n * If any of this default behaviour is not right for the dialect, you can\n * define a `__call__` method on the dialect that will get invoked to handle\n * the block processing.\n */\nMarkdown.prototype.processBlock = function processBlock( block, next ) {\n var cbs = this.dialect.block,\n ord = cbs.__order__;\n\n if ( \"__call__\" in cbs ) {\n return cbs.__call__.call(this, block, next);\n }\n\n for ( var i = 0; i < ord.length; i++ ) {\n //D:this.debug( \"Testing\", ord[i] );\n var res = cbs[ ord[i] ].call( this, block, next );\n if ( res ) {\n //D:this.debug(\" matched\");\n if ( !isArray(res) || ( res.length > 0 && !( isArray(res[0]) ) ) )\n this.debug(ord[i], \"didn't return a proper array\");\n //D:this.debug( \"\" );\n return res;\n }\n }\n\n // Uhoh! no match! Should we throw an error?\n return [];\n};\n\nMarkdown.prototype.processInline = function processInline( block ) {\n return this.dialect.inline.__call__.call( this, String( block ) );\n};\n\n/**\n * Markdown#toTree( source ) -> JsonML\n * - source (String): markdown source to parse\n *\n * Parse `source` into a JsonML tree representing the markdown document.\n **/\n// custom_tree means set this.tree to `custom_tree` and restore old value on return\nMarkdown.prototype.toTree = function toTree( source, custom_root ) {\n var blocks = source instanceof Array ? source : this.split_blocks( source );\n\n // Make tree a member variable so its easier to mess with in extensions\n var old_tree = this.tree;\n try {\n this.tree = custom_root || this.tree || [ \"markdown\" ];\n\n blocks:\n while ( blocks.length ) {\n var b = this.processBlock( blocks.shift(), blocks );\n\n // Reference blocks and the like won't return any content\n if ( !b.length ) continue blocks;\n\n this.tree.push.apply( this.tree, b );\n }\n return this.tree;\n }\n finally {\n if ( custom_root ) {\n this.tree = old_tree;\n }\n }\n};\n\n// Noop by default\nMarkdown.prototype.debug = function () {\n var args = Array.prototype.slice.call( arguments);\n args.unshift(this.debug_indent);\n if ( typeof print !== \"undefined\" )\n print.apply( print, args );\n if ( typeof console !== \"undefined\" && typeof console.log !== \"undefined\" )\n console.log.apply( null, args );\n}\n\nMarkdown.prototype.loop_re_over_block = function( re, block, cb ) {\n // Dont use /g regexps with this\n var m,\n b = block.valueOf();\n\n while ( b.length && (m = re.exec(b) ) != null ) {\n b = b.substr( m[0].length );\n cb.call(this, m);\n }\n return b;\n};\n\n/**\n * Markdown.dialects\n *\n * Namespace of built-in dialects.\n **/\nMarkdown.dialects = {};\n\n/**\n * Markdown.dialects.Gruber\n *\n * The default dialect that follows the rules set out by John Gruber's\n * markdown.pl as closely as possible. Well actually we follow the behaviour of\n * that script which in some places is not exactly what the syntax web page\n * says.\n **/\nMarkdown.dialects.Gruber = {\n block: {\n atxHeader: function atxHeader( block, next ) {\n var m = block.match( /^(#{1,6})\\s*(.*?)\\s*#*\\s*(?:\\n|$)/ );\n\n if ( !m ) return undefined;\n\n var header = [ \"header\", { level: m[ 1 ].length } ];\n Array.prototype.push.apply(header, this.processInline(m[ 2 ]));\n\n if ( m[0].length < block.length )\n next.unshift( mk_block( block.substr( m[0].length ), block.trailing, block.lineNumber + 2 ) );\n\n return [ header ];\n },\n\n setextHeader: function setextHeader( block, next ) {\n var m = block.match( /^(.*)\\n([-=])\\2\\2+(?:\\n|$)/ );\n\n if ( !m ) return undefined;\n\n var level = ( m[ 2 ] === \"=\" ) ? 1 : 2;\n var header = [ \"header\", { level : level }, m[ 1 ] ];\n\n if ( m[0].length < block.length )\n next.unshift( mk_block( block.substr( m[0].length ), block.trailing, block.lineNumber + 2 ) );\n\n return [ header ];\n },\n\n code: function code( block, next ) {\n // | Foo\n // |bar\n // should be a code block followed by a paragraph. Fun\n //\n // There might also be adjacent code block to merge.\n\n var ret = [],\n re = /^(?: {0,3}\\t| {4})(.*)\\n?/,\n lines;\n\n // 4 spaces + content\n if ( !block.match( re ) ) return undefined;\n\n block_search:\n do {\n // Now pull out the rest of the lines\n var b = this.loop_re_over_block(\n re, block.valueOf(), function( m ) { ret.push( m[1] ); } );\n\n if ( b.length ) {\n // Case alluded to in first comment. push it back on as a new block\n next.unshift( mk_block(b, block.trailing) );\n break block_search;\n }\n else if ( next.length ) {\n // Check the next block - it might be code too\n if ( !next[0].match( re ) ) break block_search;\n\n // Pull how how many blanks lines follow - minus two to account for .join\n ret.push ( block.trailing.replace(/[^\\n]/g, \"\").substring(2) );\n\n block = next.shift();\n }\n else {\n break block_search;\n }\n } while ( true );\n\n return [ [ \"code_block\", ret.join(\"\\n\") ] ];\n },\n\n horizRule: function horizRule( block, next ) {\n // this needs to find any hr in the block to handle abutting blocks\n var m = block.match( /^(?:([\\s\\S]*?)\\n)?[ \\t]*([-_*])(?:[ \\t]*\\2){2,}[ \\t]*(?:\\n([\\s\\S]*))?$/ );\n\n if ( !m ) {\n return undefined;\n }\n\n var jsonml = [ [ \"hr\" ] ];\n\n // if there's a leading abutting block, process it\n if ( m[ 1 ] ) {\n jsonml.unshift.apply( jsonml, this.processBlock( m[ 1 ], [] ) );\n }\n\n // if there's a trailing abutting block, stick it into next\n if ( m[ 3 ] ) {\n next.unshift( mk_block( m[ 3 ] ) );\n }\n\n return jsonml;\n },\n\n // There are two types of lists. Tight and loose. Tight lists have no whitespace\n // between the items (and result in text just in the <li>) and loose lists,\n // which have an empty line between list items, resulting in (one or more)\n // paragraphs inside the <li>.\n //\n // There are all sorts weird edge cases about the original markdown.pl's\n // handling of lists:\n //\n // * Nested lists are supposed to be indented by four chars per level. But\n // if they aren't, you can get a nested list by indenting by less than\n // four so long as the indent doesn't match an indent of an existing list\n // item in the 'nest stack'.\n //\n // * The type of the list (bullet or number) is controlled just by the\n // first item at the indent. Subsequent changes are ignored unless they\n // are for nested lists\n //\n lists: (function( ) {\n // Use a closure to hide a few variables.\n var any_list = \"[*+-]|\\\\d+\\\\.\",\n bullet_list = /[*+-]/,\n number_list = /\\d+\\./,\n // Capture leading indent as it matters for determining nested lists.\n is_list_re = new RegExp( \"^( {0,3})(\" + any_list + \")[ \\t]+\" ),\n indent_re = \"(?: {0,3}\\\\t| {4})\";\n\n // TODO: Cache this regexp for certain depths.\n // Create a regexp suitable for matching an li for a given stack depth\n function regex_for_depth( depth ) {\n\n return new RegExp(\n // m[1] = indent, m[2] = list_type\n \"(?:^(\" + indent_re + \"{0,\" + depth + \"} {0,3})(\" + any_list + \")\\\\s+)|\" +\n // m[3] = cont\n \"(^\" + indent_re + \"{0,\" + (depth-1) + \"}[ ]{0,4})\"\n );\n }\n function expand_tab( input ) {\n return input.replace( / {0,3}\\t/g, \" \" );\n }\n\n // Add inline content `inline` to `li`. inline comes from processInline\n // so is an array of content\n function add(li, loose, inline, nl) {\n if ( loose ) {\n li.push( [ \"para\" ].concat(inline) );\n return;\n }\n // Hmmm, should this be any block level element or just paras?\n var add_to = li[li.length -1] instanceof Array && li[li.length - 1][0] == \"para\"\n ? li[li.length -1]\n : li;\n\n // If there is already some content in this list, add the new line in\n if ( nl && li.length > 1 ) inline.unshift(nl);\n\n for ( var i = 0; i < inline.length; i++ ) {\n var what = inline[i],\n is_str = typeof what == \"string\";\n if ( is_str && add_to.length > 1 && typeof add_to[add_to.length-1] == \"string\" ) {\n add_to[ add_to.length-1 ] += what;\n }\n else {\n add_to.push( what );\n }\n }\n }\n\n // contained means have an indent greater than the current one. On\n // *every* line in the block\n function get_contained_blocks( depth, blocks ) {\n\n var re = new RegExp( \"^(\" + indent_re + \"{\" + depth + \"}.*?\\\\n?)*$\" ),\n replace = new RegExp(\"^\" + indent_re + \"{\" + depth + \"}\", \"gm\"),\n ret = [];\n\n while ( blocks.length > 0 ) {\n if ( re.exec( blocks[0] ) ) {\n var b = blocks.shift(),\n // Now remove that indent\n x = b.replace( replace, \"\");\n\n ret.push( mk_block( x, b.trailing, b.lineNumber ) );\n }\n else {\n break;\n }\n }\n return ret;\n }\n\n // passed to stack.forEach to turn list items up the stack into paras\n function paragraphify(s, i, stack) {\n var list = s.list;\n var last_li = list[list.length-1];\n\n if ( last_li[1] instanceof Array && last_li[1][0] == \"para\" ) {\n return;\n }\n if ( i + 1 == stack.length ) {\n // Last stack frame\n // Keep the same array, but replace the contents\n last_li.push( [\"para\"].concat( last_li.splice(1, last_li.length - 1) ) );\n }\n else {\n var sublist = last_li.pop();\n last_li.push( [\"para\"].concat( last_li.splice(1, last_li.length - 1) ), sublist );\n }\n }\n\n // The matcher function\n return function( block, next ) {\n var m = block.match( is_list_re );\n if ( !m ) return undefined;\n\n function make_list( m ) {\n var list = bullet_list.exec( m[2] )\n ? [\"bulletlist\"]\n : [\"numberlist\"];\n\n stack.push( { list: list, indent: m[1] } );\n return list;\n }\n\n\n var stack = [], // Stack of lists for nesting.\n list = make_list( m ),\n last_li,\n loose = false,\n ret = [ stack[0].list ],\n i;\n\n // Loop to search over block looking for inner block elements and loose lists\n loose_search:\n while ( true ) {\n // Split into lines preserving new lines at end of line\n var lines = block.split( /(?=\\n)/ );\n\n // We have to grab all lines for a li and call processInline on them\n // once as there are some inline things that can span lines.\n var li_accumulate = \"\";\n\n // Loop over the lines in this block looking for tight lists.\n tight_search:\n for ( var line_no = 0; line_no < lines.length; line_no++ ) {\n var nl = \"\",\n l = lines[line_no].replace(/^\\n/, function(n) { nl = n; return \"\"; });\n\n // TODO: really should cache this\n var line_re = regex_for_depth( stack.length );\n\n m = l.match( line_re );\n //print( \"line:\", uneval(l), \"\\nline match:\", uneval(m) );\n\n // We have a list item\n if ( m[1] !== undefined ) {\n // Process the previous list item, if any\n if ( li_accumulate.length ) {\n add( last_li, loose, this.processInline( li_accumulate ), nl );\n // Loose mode will have been dealt with. Reset it\n loose = false;\n li_accumulate = \"\";\n }\n\n m[1] = expand_tab( m[1] );\n var wanted_depth = Math.floor(m[1].length/4)+1;\n //print( \"want:\", wanted_depth, \"stack:\", stack.length);\n if ( wanted_depth > stack.length ) {\n // Deep enough for a nested list outright\n //print ( \"new nested list\" );\n list = make_list( m );\n last_li.push( list );\n last_li = list[1] = [ \"listitem\" ];\n }\n else {\n // We aren't deep enough to be strictly a new level. This is\n // where Md.pl goes nuts. If the indent matches a level in the\n // stack, put it there, else put it one deeper then the\n // wanted_depth deserves.\n var found = false;\n for ( i = 0; i < stack.length; i++ ) {\n if ( stack[ i ].indent != m[1] ) continue;\n list = stack[ i ].list;\n stack.splice( i+1, stack.length - (i+1) );\n found = true;\n break;\n }\n\n if (!found) {\n //print(\"not found. l:\", uneval(l));\n wanted_depth++;\n if ( wanted_depth <= stack.length ) {\n stack.splice(wanted_depth, stack.length - wanted_depth);\n //print(\"Desired depth now\", wanted_depth, \"stack:\", stack.length);\n list = stack[wanted_depth-1].list;\n //print(\"list:\", uneval(list) );\n }\n else {\n //print (\"made new stack for messy indent\");\n list = make_list(m);\n last_li.push(list);\n }\n }\n\n //print( uneval(list), \"last\", list === stack[stack.length-1].list );\n last_li = [ \"listitem\" ];\n list.push(last_li);\n } // end depth of shenegains\n nl = \"\";\n }\n\n // Add content\n if ( l.length > m[0].length ) {\n li_accumulate += nl + l.substr( m[0].length );\n }\n } // tight_search\n\n if ( li_accumulate.length ) {\n add( last_li, loose, this.processInline( li_accumulate ), nl );\n // Loose mode will have been dealt with. Reset it\n loose = false;\n li_accumulate = \"\";\n }\n\n // Look at the next block - we might have a loose list. Or an extra\n // paragraph for the current li\n var contained = get_contained_blocks( stack.length, next );\n\n // Deal with code blocks or properly nested lists\n if ( contained.length > 0 ) {\n // Make sure all listitems up the stack are paragraphs\n forEach( stack, paragraphify, this);\n\n last_li.push.apply( last_li, this.toTree( contained, [] ) );\n }\n\n var next_block = next[0] && next[0].valueOf() || \"\";\n\n if ( next_block.match(is_list_re) || next_block.match( /^ / ) ) {\n block = next.shift();\n\n // Check for an HR following a list: features/lists/hr_abutting\n var hr = this.dialect.block.horizRule( block, next );\n\n if ( hr ) {\n ret.push.apply(ret, hr);\n break;\n }\n\n // Make sure all listitems up the stack are paragraphs\n forEach( stack, paragraphify, this);\n\n loose = true;\n continue loose_search;\n }\n break;\n } // loose_search\n\n return ret;\n };\n })(),\n\n blockquote: function blockquote( block, next ) {\n if ( !block.match( /^>/m ) )\n return undefined;\n\n var jsonml = [];\n\n // separate out the leading abutting block, if any. I.e. in this case:\n //\n // a\n // > b\n //\n if ( block[ 0 ] != \">\" ) {\n var lines = block.split( /\\n/ ),\n prev = [],\n line_no = block.lineNumber;\n\n // keep shifting lines until you find a crotchet\n while ( lines.length && lines[ 0 ][ 0 ] != \">\" ) {\n prev.push( lines.shift() );\n line_no++;\n }\n\n var abutting = mk_block( prev.join( \"\\n\" ), \"\\n\", block.lineNumber );\n jsonml.push.apply( jsonml, this.processBlock( abutting, [] ) );\n // reassemble new block of just block quotes!\n block = mk_block( lines.join( \"\\n\" ), block.trailing, line_no );\n }\n\n\n // if the next block is also a blockquote merge it in\n while ( next.length && next[ 0 ][ 0 ] == \">\" ) {\n var b = next.shift();\n block = mk_block( block + block.trailing + b, b.trailing, block.lineNumber );\n }\n\n // Strip off the leading \"> \" and re-process as a block.\n var input = block.replace( /^> ?/gm, \"\" ),\n old_tree = this.tree,\n processedBlock = this.toTree( input, [ \"blockquote\" ] ),\n attr = extract_attr( processedBlock );\n\n // If any link references were found get rid of them\n if ( attr && attr.references ) {\n delete attr.references;\n // And then remove the attribute object if it's empty\n if ( isEmpty( attr ) ) {\n processedBlock.splice( 1, 1 );\n }\n }\n\n jsonml.push( processedBlock );\n return jsonml;\n },\n\n referenceDefn: function referenceDefn( block, next) {\n var re = /^\\s*\\[(.*?)\\]:\\s*(\\S+)(?:\\s+(?:(['\"])(.*?)\\3|\\((.*?)\\)))?\\n?/;\n // interesting matches are [ , ref_id, url, , title, title ]\n\n if ( !block.match(re) )\n return undefined;\n\n // make an attribute node if it doesn't exist\n if ( !extract_attr( this.tree ) ) {\n this.tree.splice( 1, 0, {} );\n }\n\n var attrs = extract_attr( this.tree );\n\n // make a references hash if it doesn't exist\n if ( attrs.references === undefined ) {\n attrs.references = {};\n }\n\n var b = this.loop_re_over_block(re, block, function( m ) {\n\n if ( m[2] && m[2][0] == \"<\" && m[2][m[2].length-1] == \">\" )\n m[2] = m[2].substring( 1, m[2].length - 1 );\n\n var ref = attrs.references[ m[1].toLowerCase() ] = {\n href: m[2]\n };\n\n if ( m[4] !== undefined )\n ref.title = m[4];\n else if ( m[5] !== undefined )\n ref.title = m[5];\n\n } );\n\n if ( b.length )\n next.unshift( mk_block( b, block.trailing ) );\n\n return [];\n },\n\n para: function para( block, next ) {\n // everything's a para!\n return [ [\"para\"].concat( this.processInline( block ) ) ];\n }\n }\n};\n\nMarkdown.dialects.Gruber.inline = {\n\n __oneElement__: function oneElement( text, patterns_or_re, previous_nodes ) {\n var m,\n res,\n lastIndex = 0;\n\n patterns_or_re = patterns_or_re || this.dialect.inline.__patterns__;\n var re = new RegExp( \"([\\\\s\\\\S]*?)(\" + (patterns_or_re.source || patterns_or_re) + \")\" );\n\n m = re.exec( text );\n if (!m) {\n // Just boring text\n return [ text.length, text ];\n }\n else if ( m[1] ) {\n // Some un-interesting text matched. Return that first\n return [ m[1].length, m[1] ];\n }\n\n var res;\n if ( m[2] in this.dialect.inline ) {\n res = this.dialect.inline[ m[2] ].call(\n this,\n text.substr( m.index ), m, previous_nodes || [] );\n }\n // Default for now to make dev easier. just slurp special and output it.\n res = res || [ m[2].length, m[2] ];\n return res;\n },\n\n __call__: function inline( text, patterns ) {\n\n var out = [],\n res;\n\n function add(x) {\n //D:self.debug(\" adding output\", uneval(x));\n if ( typeof x == \"string\" && typeof out[out.length-1] == \"string\" )\n out[ out.length-1 ] += x;\n else\n out.push(x);\n }\n\n while ( text.length > 0 ) {\n res = this.dialect.inline.__oneElement__.call(this, text, patterns, out );\n text = text.substr( res.shift() );\n forEach(res, add )\n }\n\n return out;\n },\n\n // These characters are intersting elsewhere, so have rules for them so that\n // chunks of plain text blocks don't include them\n \"]\": function () {},\n \"}\": function () {},\n\n __escape__ : /^\\\\[\\\\`\\*_{}\\[\\]()#\\+.!\\-]/,\n\n \"\\\\\": function escaped( text ) {\n // [ length of input processed, node/children to add... ]\n // Only esacape: \\ ` * _ { } [ ] ( ) # * + - . !\n if ( this.dialect.inline.__escape__.exec( text ) )\n return [ 2, text.charAt( 1 ) ];\n else\n // Not an esacpe\n return [ 1, \"\\\\\" ];\n },\n\n \"\n // 1 2 3 4 <--- captures\n var m = text.match( /^!\\[(.*?)\\][ \\t]*\\([ \\t]*([^\")]*?)(?:[ \\t]+([\"'])(.*?)\\3)?[ \\t]*\\)/ );\n\n if ( m ) {\n if ( m[2] && m[2][0] == \"<\" && m[2][m[2].length-1] == \">\" )\n m[2] = m[2].substring( 1, m[2].length - 1 );\n\n m[2] = this.dialect.inline.__call__.call( this, m[2], /\\\\/ )[0];\n\n var attrs = { alt: m[1], href: m[2] || \"\" };\n if ( m[4] !== undefined)\n attrs.title = m[4];\n\n return [ m[0].length, [ \"img\", attrs ] ];\n }\n\n // ![Alt text][id]\n m = text.match( /^!\\[(.*?)\\][ \\t]*\\[(.*?)\\]/ );\n\n if ( m ) {\n // We can't check if the reference is known here as it likely wont be\n // found till after. Check it in md tree->hmtl tree conversion\n return [ m[0].length, [ \"img_ref\", { alt: m[1], ref: m[2].toLowerCase(), original: m[0] } ] ];\n }\n\n // Just consume the '!['\n return [ 2, \"![\" ];\n },\n\n \"[\": function link( text ) {\n\n var orig = String(text);\n // Inline content is possible inside `link text`\n var res = Markdown.DialectHelpers.inline_until_char.call( this, text.substr(1), \"]\" );\n\n // No closing ']' found. Just consume the [\n if ( !res ) return [ 1, \"[\" ];\n\n var consumed = 1 + res[ 0 ],\n children = res[ 1 ],\n link,\n attrs;\n\n // At this point the first [...] has been parsed. See what follows to find\n // out which kind of link we are (reference or direct url)\n text = text.substr( consumed );\n\n // [link text](/path/to/img.jpg \"Optional title\")\n // 1 2 3 <--- captures\n // This will capture up to the last paren in the block. We then pull\n // back based on if there a matching ones in the url\n // ([here](/url/(test))\n // The parens have to be balanced\n var m = text.match( /^\\s*\\([ \\t]*([^\"']*)(?:[ \\t]+([\"'])(.*?)\\2)?[ \\t]*\\)/ );\n if ( m ) {\n var url = m[1];\n consumed += m[0].length;\n\n if ( url && url[0] == \"<\" && url[url.length-1] == \">\" )\n url = url.substring( 1, url.length - 1 );\n\n // If there is a title we don't have to worry about parens in the url\n if ( !m[3] ) {\n var open_parens = 1; // One open that isn't in the capture\n for ( var len = 0; len < url.length; len++ ) {\n switch ( url[len] ) {\n case \"(\":\n open_parens++;\n break;\n case \")\":\n if ( --open_parens == 0) {\n consumed -= url.length - len;\n url = url.substring(0, len);\n }\n break;\n }\n }\n }\n\n // Process escapes only\n url = this.dialect.inline.__call__.call( this, url, /\\\\/ )[0];\n\n attrs = { href: url || \"\" };\n if ( m[3] !== undefined)\n attrs.title = m[3];\n\n link = [ \"link\", attrs ].concat( children );\n return [ consumed, link ];\n }\n\n // [Alt text][id]\n // [Alt text] [id]\n m = text.match( /^\\s*\\[(.*?)\\]/ );\n\n if ( m ) {\n\n consumed += m[ 0 ].length;\n\n // [links][] uses links as its reference\n attrs = { ref: ( m[ 1 ] || String(children) ).toLowerCase(), original: orig.substr( 0, consumed ) };\n\n link = [ \"link_ref\", attrs ].concat( children );\n\n // We can't check if the reference is known here as it likely wont be\n // found till after. Check it in md tree->hmtl tree conversion.\n // Store the original so that conversion can revert if the ref isn't found.\n return [ consumed, link ];\n }\n\n // [id]\n // Only if id is plain (no formatting.)\n if ( children.length == 1 && typeof children[0] == \"string\" ) {\n\n attrs = { ref: children[0].toLowerCase(), original: orig.substr( 0, consumed ) };\n link = [ \"link_ref\", attrs, children[0] ];\n return [ consumed, link ];\n }\n\n // Just consume the \"[\"\n return [ 1, \"[\" ];\n },\n\n\n \"<\": function autoLink( text ) {\n var m;\n\n if ( ( m = text.match( /^<(?:((https?|ftp|mailto):[^>]+)|(.*?@.*?\\.[a-zA-Z]+))>/ ) ) != null ) {\n if ( m[3] ) {\n return [ m[0].length, [ \"link\", { href: \"mailto:\" + m[3] }, m[3] ] ];\n\n }\n else if ( m[2] == \"mailto\" ) {\n return [ m[0].length, [ \"link\", { href: m[1] }, m[1].substr(\"mailto:\".length ) ] ];\n }\n else\n return [ m[0].length, [ \"link\", { href: m[1] }, m[1] ] ];\n }\n\n return [ 1, \"<\" ];\n },\n\n \"`\": function inlineCode( text ) {\n // Inline code block. as many backticks as you like to start it\n // Always skip over the opening ticks.\n var m = text.match( /(`+)(([\\s\\S]*?)\\1)/ );\n\n if ( m && m[2] )\n return [ m[1].length + m[2].length, [ \"inlinecode\", m[3] ] ];\n else {\n // TODO: No matching end code found - warn!\n return [ 1, \"`\" ];\n }\n },\n\n \" \\n\": function lineBreak( text ) {\n return [ 3, [ \"linebreak\" ] ];\n }\n\n};\n\n// Meta Helper/generator method for em and strong handling\nfunction strong_em( tag, md ) {\n\n var state_slot = tag + \"_state\",\n other_slot = tag == \"strong\" ? \"em_state\" : \"strong_state\";\n\n function CloseTag(len) {\n this.len_after = len;\n this.name = \"close_\" + md;\n }\n\n return function ( text, orig_match ) {\n\n if ( this[state_slot][0] == md ) {\n // Most recent em is of this type\n //D:this.debug(\"closing\", md);\n this[state_slot].shift();\n\n // \"Consume\" everything to go back to the recrusion in the else-block below\n return[ text.length, new CloseTag(text.length-md.length) ];\n }\n else {\n // Store a clone of the em/strong states\n var other = this[other_slot].slice(),\n state = this[state_slot].slice();\n\n this[state_slot].unshift(md);\n\n //D:this.debug_indent += \" \";\n\n // Recurse\n var res = this.processInline( text.substr( md.length ) );\n //D:this.debug_indent = this.debug_indent.substr(2);\n\n var last = res[res.length - 1];\n\n //D:this.debug(\"processInline from\", tag + \": \", uneval( res ) );\n\n var check = this[state_slot].shift();\n if ( last instanceof CloseTag ) {\n res.pop();\n // We matched! Huzzah.\n var consumed = text.length - last.len_after;\n return [ consumed, [ tag ].concat(res) ];\n }\n else {\n // Restore the state of the other kind. We might have mistakenly closed it.\n this[other_slot] = other;\n this[state_slot] = state;\n\n // We can't reuse the processed result as it could have wrong parsing contexts in it.\n return [ md.length, md ];\n }\n }\n }; // End returned function\n}\n\nMarkdown.dialects.Gruber.inline[\"**\"] = strong_em(\"strong\", \"**\");\nMarkdown.dialects.Gruber.inline[\"__\"] = strong_em(\"strong\", \"__\");\nMarkdown.dialects.Gruber.inline[\"*\"] = strong_em(\"em\", \"*\");\nMarkdown.dialects.Gruber.inline[\"_\"] = strong_em(\"em\", \"_\");\n\n\n// Build default order from insertion order.\nMarkdown.buildBlockOrder = function(d) {\n var ord = [];\n for ( var i in d ) {\n if ( i == \"__order__\" || i == \"__call__\" ) continue;\n ord.push( i );\n }\n d.__order__ = ord;\n};\n\n// Build patterns for inline matcher\nMarkdown.buildInlinePatterns = function(d) {\n var patterns = [];\n\n for ( var i in d ) {\n // __foo__ is reserved and not a pattern\n if ( i.match( /^__.*__$/) ) continue;\n var l = i.replace( /([\\\\.*+?|()\\[\\]{}])/g, \"\\\\$1\" )\n .replace( /\\n/, \"\\\\n\" );\n patterns.push( i.length == 1 ? l : \"(?:\" + l + \")\" );\n }\n\n patterns = patterns.join(\"|\");\n d.__patterns__ = patterns;\n //print(\"patterns:\", uneval( patterns ) );\n\n var fn = d.__call__;\n d.__call__ = function(text, pattern) {\n if ( pattern != undefined ) {\n return fn.call(this, text, pattern);\n }\n else\n {\n return fn.call(this, text, patterns);\n }\n };\n};\n\nMarkdown.DialectHelpers = {};\nMarkdown.DialectHelpers.inline_until_char = function( text, want ) {\n var consumed = 0,\n nodes = [];\n\n while ( true ) {\n if ( text.charAt( consumed ) == want ) {\n // Found the character we were looking for\n consumed++;\n return [ consumed, nodes ];\n }\n\n if ( consumed >= text.length ) {\n // No closing char found. Abort.\n return null;\n }\n\n var res = this.dialect.inline.__oneElement__.call(this, text.substr( consumed ) );\n consumed += res[ 0 ];\n // Add any returned nodes.\n nodes.push.apply( nodes, res.slice( 1 ) );\n }\n}\n\n// Helper function to make sub-classing a dialect easier\nMarkdown.subclassDialect = function( d ) {\n function Block() {}\n Block.prototype = d.block;\n function Inline() {}\n Inline.prototype = d.inline;\n\n return { block: new Block(), inline: new Inline() };\n};\n\nMarkdown.buildBlockOrder ( Markdown.dialects.Gruber.block );\nMarkdown.buildInlinePatterns( Markdown.dialects.Gruber.inline );\n\nMarkdown.dialects.Maruku = Markdown.subclassDialect( Markdown.dialects.Gruber );\n\nMarkdown.dialects.Maruku.processMetaHash = function processMetaHash( meta_string ) {\n var meta = split_meta_hash( meta_string ),\n attr = {};\n\n for ( var i = 0; i < meta.length; ++i ) {\n // id: #foo\n if ( /^#/.test( meta[ i ] ) ) {\n attr.id = meta[ i ].substring( 1 );\n }\n // class: .foo\n else if ( /^\\./.test( meta[ i ] ) ) {\n // if class already exists, append the new one\n if ( attr[\"class\"] ) {\n attr[\"class\"] = attr[\"class\"] + meta[ i ].replace( /./, \" \" );\n }\n else {\n attr[\"class\"] = meta[ i ].substring( 1 );\n }\n }\n // attribute: foo=bar\n else if ( /\\=/.test( meta[ i ] ) ) {\n var s = meta[ i ].split( /\\=/ );\n attr[ s[ 0 ] ] = s[ 1 ];\n }\n }\n\n return attr;\n}\n\nfunction split_meta_hash( meta_string ) {\n var meta = meta_string.split( \"\" ),\n parts = [ \"\" ],\n in_quotes = false;\n\n while ( meta.length ) {\n var letter = meta.shift();\n switch ( letter ) {\n case \" \" :\n // if we're in a quoted section, keep it\n if ( in_quotes ) {\n parts[ parts.length - 1 ] += letter;\n }\n // otherwise make a new part\n else {\n parts.push( \"\" );\n }\n break;\n case \"'\" :\n case '\"' :\n // reverse the quotes and move straight on\n in_quotes = !in_quotes;\n break;\n case \"\\\\\" :\n // shift off the next letter to be used straight away.\n // it was escaped so we'll keep it whatever it is\n letter = meta.shift();\n default :\n parts[ parts.length - 1 ] += letter;\n break;\n }\n }\n\n return parts;\n}\n\nMarkdown.dialects.Maruku.block.document_meta = function document_meta( block, next ) {\n // we're only interested in the first block\n if ( block.lineNumber > 1 ) return undefined;\n\n // document_meta blocks consist of one or more lines of `Key: Value\\n`\n if ( ! block.match( /^(?:\\w+:.*\\n)*\\w+:.*$/ ) ) return undefined;\n\n // make an attribute node if it doesn't exist\n if ( !extract_attr( this.tree ) ) {\n this.tree.splice( 1, 0, {} );\n }\n\n var pairs = block.split( /\\n/ );\n for ( p in pairs ) {\n var m = pairs[ p ].match( /(\\w+):\\s*(.*)$/ ),\n key = m[ 1 ].toLowerCase(),\n value = m[ 2 ];\n\n this.tree[ 1 ][ key ] = value;\n }\n\n // document_meta produces no content!\n return [];\n};\n\nMarkdown.dialects.Maruku.block.block_meta = function block_meta( block, next ) {\n // check if the last line of the block is an meta hash\n var m = block.match( /(^|\\n) {0,3}\\{:\\s*((?:\\\\\\}|[^\\}])*)\\s*\\}$/ );\n if ( !m ) return undefined;\n\n // process the meta hash\n var attr = this.dialect.processMetaHash( m[ 2 ] );\n\n var hash;\n\n // if we matched ^ then we need to apply meta to the previous block\n if ( m[ 1 ] === \"\" ) {\n var node = this.tree[ this.tree.length - 1 ];\n hash = extract_attr( node );\n\n // if the node is a string (rather than JsonML), bail\n if ( typeof node === \"string\" ) return undefined;\n\n // create the attribute hash if it doesn't exist\n if ( !hash ) {\n hash = {};\n node.splice( 1, 0, hash );\n }\n\n // add the attributes in\n for ( a in attr ) {\n hash[ a ] = attr[ a ];\n }\n\n // return nothing so the meta hash is removed\n return [];\n }\n\n // pull the meta hash off the block and process what's left\n var b = block.replace( /\\n.*$/, \"\" ),\n result = this.processBlock( b, [] );\n\n // get or make the attributes hash\n hash = extract_attr( result[ 0 ] );\n if ( !hash ) {\n hash = {};\n result[ 0 ].splice( 1, 0, hash );\n }\n\n // attach the attributes to the block\n for ( a in attr ) {\n hash[ a ] = attr[ a ];\n }\n\n return result;\n};\n\nMarkdown.dialects.Maruku.block.definition_list = function definition_list( block, next ) {\n // one or more terms followed by one or more definitions, in a single block\n var tight = /^((?:[^\\s:].*\\n)+):\\s+([\\s\\S]+)$/,\n list = [ \"dl\" ],\n i, m;\n\n // see if we're dealing with a tight or loose block\n if ( ( m = block.match( tight ) ) ) {\n // pull subsequent tight DL blocks out of `next`\n var blocks = [ block ];\n while ( next.length && tight.exec( next[ 0 ] ) ) {\n blocks.push( next.shift() );\n }\n\n for ( var b = 0; b < blocks.length; ++b ) {\n var m = blocks[ b ].match( tight ),\n terms = m[ 1 ].replace( /\\n$/, \"\" ).split( /\\n/ ),\n defns = m[ 2 ].split( /\\n:\\s+/ );\n\n // print( uneval( m ) );\n\n for ( i = 0; i < terms.length; ++i ) {\n list.push( [ \"dt\", terms[ i ] ] );\n }\n\n for ( i = 0; i < defns.length; ++i ) {\n // run inline processing over the definition\n list.push( [ \"dd\" ].concat( this.processInline( defns[ i ].replace( /(\\n)\\s+/, \"$1\" ) ) ) );\n }\n }\n }\n else {\n return undefined;\n }\n\n return [ list ];\n};\n\n// splits on unescaped instances of @ch. If @ch is not a character the result\n// can be unpredictable\n\nMarkdown.dialects.Maruku.block.table = function table (block, next) {\n\n var _split_on_unescaped = function(s, ch) {\n ch = ch || '\\\\s';\n if (ch.match(/^[\\\\|\\[\\]{}?*.+^$]$/)) { ch = '\\\\' + ch; }\n var res = [ ],\n r = new RegExp('^((?:\\\\\\\\.|[^\\\\\\\\' + ch + '])*)' + ch + '(.*)'),\n m;\n while(m = s.match(r)) {\n res.push(m[1]);\n s = m[2];\n }\n res.push(s);\n return res;\n }\n\n var leading_pipe = /^ {0,3}\\|(.+)\\n {0,3}\\|\\s*([\\-:]+[\\-| :]*)\\n((?:\\s*\\|.*(?:\\n|$))*)(?=\\n|$)/,\n // find at least an unescaped pipe in each line\n no_leading_pipe = /^ {0,3}(\\S(?:\\\\.|[^\\\\|])*\\|.*)\\n {0,3}([\\-:]+\\s*\\|[\\-| :]*)\\n((?:(?:\\\\.|[^\\\\|])*\\|.*(?:\\n|$))*)(?=\\n|$)/,\n i, m;\n if (m = block.match(leading_pipe)) {\n // remove leading pipes in contents\n // (header and horizontal rule already have the leading pipe left out)\n m[3] = m[3].replace(/^\\s*\\|/gm, '');\n } else if (! ( m = block.match(no_leading_pipe))) {\n return undefined;\n }\n\n var table = [ \"table\", [ \"thead\", [ \"tr\" ] ], [ \"tbody\" ] ];\n\n // remove trailing pipes, then split on pipes\n // (no escaped pipes are allowed in horizontal rule)\n m[2] = m[2].replace(/\\|\\s*$/, '').split('|');\n\n // process alignment\n var html_attrs = [ ];\n forEach (m[2], function (s) {\n if (s.match(/^\\s*-+:\\s*$/)) html_attrs.push({align: \"right\"});\n else if (s.match(/^\\s*:-+\\s*$/)) html_attrs.push({align: \"left\"});\n else if (s.match(/^\\s*:-+:\\s*$/)) html_attrs.push({align: \"center\"});\n else html_attrs.push({});\n });\n\n // now for the header, avoid escaped pipes\n m[1] = _split_on_unescaped(m[1].replace(/\\|\\s*$/, ''), '|');\n for (i = 0; i < m[1].length; i++) {\n table[1][1].push(['th', html_attrs[i] || {}].concat(\n this.processInline(m[1][i].trim())));\n }\n\n // now for body contents\n forEach (m[3].replace(/\\|\\s*$/mg, '').split('\\n'), function (row) {\n var html_row = ['tr'];\n row = _split_on_unescaped(row, '|');\n for (i = 0; i < row.length; i++) {\n html_row.push(['td', html_attrs[i] || {}].concat(this.processInline(row[i].trim())));\n }\n table[2].push(html_row);\n }, this);\n\n return [table];\n}\n\nMarkdown.dialects.Maruku.inline[ \"{:\" ] = function inline_meta( text, matches, out ) {\n if ( !out.length ) {\n return [ 2, \"{:\" ];\n }\n\n // get the preceeding element\n var before = out[ out.length - 1 ];\n\n if ( typeof before === \"string\" ) {\n return [ 2, \"{:\" ];\n }\n\n // match a meta hash\n var m = text.match( /^\\{:\\s*((?:\\\\\\}|[^\\}])*)\\s*\\}/ );\n\n // no match, false alarm\n if ( !m ) {\n return [ 2, \"{:\" ];\n }\n\n // attach the attributes to the preceeding element\n var meta = this.dialect.processMetaHash( m[ 1 ] ),\n attr = extract_attr( before );\n\n if ( !attr ) {\n attr = {};\n before.splice( 1, 0, attr );\n }\n\n for ( var k in meta ) {\n attr[ k ] = meta[ k ];\n }\n\n // cut out the string and replace it with nothing\n return [ m[ 0 ].length, \"\" ];\n};\n\nMarkdown.dialects.Maruku.inline.__escape__ = /^\\\\[\\\\`\\*_{}\\[\\]()#\\+.!\\-|:]/;\n\nMarkdown.buildBlockOrder ( Markdown.dialects.Maruku.block );\nMarkdown.buildInlinePatterns( Markdown.dialects.Maruku.inline );\n\nvar isArray = Array.isArray || function(obj) {\n return Object.prototype.toString.call(obj) == \"[object Array]\";\n};\n\nvar forEach;\n// Don't mess with Array.prototype. Its not friendly\nif ( Array.prototype.forEach ) {\n forEach = function( arr, cb, thisp ) {\n return arr.forEach( cb, thisp );\n };\n}\nelse {\n forEach = function(arr, cb, thisp) {\n for (var i = 0; i < arr.length; i++) {\n cb.call(thisp || arr, arr[i], i, arr);\n }\n }\n}\n\nvar isEmpty = function( obj ) {\n for ( var key in obj ) {\n if ( hasOwnProperty.call( obj, key ) ) {\n return false;\n }\n }\n\n return true;\n}\n\nfunction extract_attr( jsonml ) {\n return isArray(jsonml)\n && jsonml.length > 1\n && typeof jsonml[ 1 ] === \"object\"\n && !( isArray(jsonml[ 1 ]) )\n ? jsonml[ 1 ]\n : undefined;\n}\n\n\n\n/**\n * renderJsonML( jsonml[, options] ) -> String\n * - jsonml (Array): JsonML array to render to XML\n * - options (Object): options\n *\n * Converts the given JsonML into well-formed XML.\n *\n * The options currently understood are:\n *\n * - root (Boolean): wether or not the root node should be included in the\n * output, or just its children. The default `false` is to not include the\n * root itself.\n */\nexpose.renderJsonML = function( jsonml, options ) {\n options = options || {};\n // include the root element in the rendered output?\n options.root = options.root || false;\n\n var content = [];\n\n if ( options.root ) {\n content.push( render_tree( jsonml ) );\n }\n else {\n jsonml.shift(); // get rid of the tag\n if ( jsonml.length && typeof jsonml[ 0 ] === \"object\" && !( jsonml[ 0 ] instanceof Array ) ) {\n jsonml.shift(); // get rid of the attributes\n }\n\n while ( jsonml.length ) {\n content.push( render_tree( jsonml.shift() ) );\n }\n }\n\n return content.join( \"\\n\\n\" );\n};\n\nfunction escapeHTML( text ) {\n return text.replace( /&/g, \"&\" )\n .replace( /</g, \"<\" )\n .replace( />/g, \">\" )\n .replace( /\"/g, \""\" )\n .replace( /'/g, \"'\" );\n}\n\nfunction render_tree( jsonml ) {\n // basic case\n if ( typeof jsonml === \"string\" ) {\n return escapeHTML( jsonml );\n }\n\n var tag = jsonml.shift(),\n attributes = {},\n content = [];\n\n if ( jsonml.length && typeof jsonml[ 0 ] === \"object\" && !( jsonml[ 0 ] instanceof Array ) ) {\n attributes = jsonml.shift();\n }\n\n while ( jsonml.length ) {\n content.push( render_tree( jsonml.shift() ) );\n }\n\n var tag_attrs = \"\";\n for ( var a in attributes ) {\n tag_attrs += \" \" + a + '=\"' + escapeHTML( attributes[ a ] ) + '\"';\n }\n\n // be careful about adding whitespace here for inline elements\n if ( tag == \"img\" || tag == \"br\" || tag == \"hr\" ) {\n return \"<\"+ tag + tag_attrs + \"/>\";\n }\n else {\n return \"<\"+ tag + tag_attrs + \">\" + content.join( \"\" ) + \"</\" + tag + \">\";\n }\n}\n\nfunction convert_tree_to_html( tree, references, options ) {\n var i;\n options = options || {};\n\n // shallow clone\n var jsonml = tree.slice( 0 );\n\n if ( typeof options.preprocessTreeNode === \"function\" ) {\n jsonml = options.preprocessTreeNode(jsonml, references);\n }\n\n // Clone attributes if they exist\n var attrs = extract_attr( jsonml );\n if ( attrs ) {\n jsonml[ 1 ] = {};\n for ( i in attrs ) {\n jsonml[ 1 ][ i ] = attrs[ i ];\n }\n attrs = jsonml[ 1 ];\n }\n\n // basic case\n if ( typeof jsonml === \"string\" ) {\n return jsonml;\n }\n\n // convert this node\n switch ( jsonml[ 0 ] ) {\n case \"header\":\n jsonml[ 0 ] = \"h\" + jsonml[ 1 ].level;\n delete jsonml[ 1 ].level;\n break;\n case \"bulletlist\":\n jsonml[ 0 ] = \"ul\";\n break;\n case \"numberlist\":\n jsonml[ 0 ] = \"ol\";\n break;\n case \"listitem\":\n jsonml[ 0 ] = \"li\";\n break;\n case \"para\":\n jsonml[ 0 ] = \"p\";\n break;\n case \"markdown\":\n jsonml[ 0 ] = \"html\";\n if ( attrs ) delete attrs.references;\n break;\n case \"code_block\":\n jsonml[ 0 ] = \"pre\";\n i = attrs ? 2 : 1;\n var code = [ \"code\" ];\n code.push.apply( code, jsonml.splice( i, jsonml.length - i ) );\n jsonml[ i ] = code;\n break;\n case \"inlinecode\":\n jsonml[ 0 ] = \"code\";\n break;\n case \"img\":\n jsonml[ 1 ].src = jsonml[ 1 ].href;\n delete jsonml[ 1 ].href;\n break;\n case \"linebreak\":\n jsonml[ 0 ] = \"br\";\n break;\n case \"link\":\n jsonml[ 0 ] = \"a\";\n break;\n case \"link_ref\":\n jsonml[ 0 ] = \"a\";\n\n // grab this ref and clean up the attribute node\n var ref = references[ attrs.ref ];\n\n // if the reference exists, make the link\n if ( ref ) {\n delete attrs.ref;\n\n // add in the href and title, if present\n attrs.href = ref.href;\n if ( ref.title ) {\n attrs.title = ref.title;\n }\n\n // get rid of the unneeded original text\n delete attrs.original;\n }\n // the reference doesn't exist, so revert to plain text\n else {\n return attrs.original;\n }\n break;\n case \"img_ref\":\n jsonml[ 0 ] = \"img\";\n\n // grab this ref and clean up the attribute node\n var ref = references[ attrs.ref ];\n\n // if the reference exists, make the link\n if ( ref ) {\n delete attrs.ref;\n\n // add in the href and title, if present\n attrs.src = ref.href;\n if ( ref.title ) {\n attrs.title = ref.title;\n }\n\n // get rid of the unneeded original text\n delete attrs.original;\n }\n // the reference doesn't exist, so revert to plain text\n else {\n return attrs.original;\n }\n break;\n }\n\n // convert all the children\n i = 1;\n\n // deal with the attribute node, if it exists\n if ( attrs ) {\n // if there are keys, skip over it\n for ( var key in jsonml[ 1 ] ) {\n i = 2;\n break;\n }\n // if there aren't, remove it\n if ( i === 1 ) {\n jsonml.splice( i, 1 );\n }\n }\n\n for ( ; i < jsonml.length; ++i ) {\n jsonml[ i ] = convert_tree_to_html( jsonml[ i ], references, options );\n }\n\n return jsonml;\n}\n\n\n// merges adjacent text nodes into a single node\nfunction merge_text_nodes( jsonml ) {\n // skip the tag name and attribute hash\n var i = extract_attr( jsonml ) ? 2 : 1;\n\n while ( i < jsonml.length ) {\n // if it's a string check the next item too\n if ( typeof jsonml[ i ] === \"string\" ) {\n if ( i + 1 < jsonml.length && typeof jsonml[ i + 1 ] === \"string\" ) {\n // merge the second string into the first and remove it\n jsonml[ i ] += jsonml.splice( i + 1, 1 )[ 0 ];\n }\n else {\n ++i;\n }\n }\n // if it's not a string recurse\n else {\n merge_text_nodes( jsonml[ i ] );\n ++i;\n }\n }\n}\n\n} )( (function() {\n if ( typeof exports === \"undefined\" ) {\n window.markdown = {};\n return window.markdown;\n }\n else {\n return exports;\n }\n} )() );\n",
"type": "application/javascript",
"title": "$:/plugins/tiddlywiki/markdown/markdown.js",
"module-type": "library"
},
"$:/plugins/tiddlywiki/markdown/images/new-markdown-button": {
"title": "$:/plugins/tiddlywiki/markdown/images/new-markdown-button",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-new-markdown-button tc-image-button\" viewBox=\"0 0 128 128\" width=\"22pt\" height=\"22pt\">\n <g fill-rule=\"evenodd\">\n <rect x=\"80\" y=\"96\" width=\"48\" height=\"16\" rx=\"8\"></rect>\n <rect x=\"96\" y=\"80\" width=\"16\" height=\"48\" rx=\"8\"></rect>\n <path d=\"M3.23876972,39.5396716 C3.23876972,35.9653274 6.13586353,33.0691646 9.7141757,33.0691646 L98.1283744,33.0691646 C101.706101,33.0691646 104.60378,35.9646626 104.60378,39.5396716 L104.60378,84.8296213 C104.60378,88.4039654 101.706687,91.3001282 98.1283744,91.3001282 L9.7141757,91.3001282 C6.13644944,91.3001282 3.23876972,88.4046302 3.23876972,84.8296213 L3.23876972,39.5396716 L3.23876972,39.5396716 Z M-2.15298617,39.5396716 L-2.15298617,84.8296213 C-2.15298617,91.3833243 3.15957363,96.6918841 9.7141757,96.6918841 L98.1283744,96.6918841 C104.684083,96.6918841 109.995536,91.382138 109.995536,84.8296213 L109.995536,39.5396716 C109.995536,32.9859686 104.682977,27.6774087 98.1283744,27.6774087 L9.7141757,27.6774087 C3.15846686,27.6774087 -2.15298617,32.9871549 -2.15298617,39.5396716 Z M14.0222815,80.5166164 L14.0222815,43.8526764 L24.8057933,43.8526764 L35.589305,57.3320661 L46.3728168,43.8526764 L57.1563286,43.8526764 L57.1563286,80.5166164 L46.3728168,80.5166164 L46.3728168,59.4887685 L35.589305,72.9681582 L24.8057933,59.4887685 L24.8057933,80.5166164 L14.0222815,80.5166164 Z M81.4192301,80.5166164 L65.2439624,62.723822 L76.0274742,62.723822 L76.0274742,43.8526764 L86.810986,43.8526764 L86.810986,62.723822 L97.5944978,62.723822 L81.4192301,80.5166164 Z\"transform=\"translate(53.921275, 62.184646) rotate(-60.000000) translate(-53.921275, -62.184646) \"></path>\n </g>\n</svg>"
},
"$:/plugins/tiddlywiki/markdown/new-markdown-button": {
"title": "$:/plugins/tiddlywiki/markdown/new-markdown-button",
"tags": "$:/tags/PageControls",
"caption": "{{$:/plugins/tiddlywiki/markdown/images/new-markdown-button}} {{$:/language/Buttons/NewMarkdown/Caption}}",
"description": "{{$:/language/Buttons/NewMarkdown/Hint}}",
"list-after": "$:/core/ui/Buttons/new-tiddler",
"text": "<$button tooltip={{$:/language/Buttons/NewMarkdown/Hint}} aria-label={{$:/language/Buttons/NewMarkdown/Caption}} class=<<tv-config-toolbar-class>>>\n<$action-sendmessage $message=\"tm-new-tiddler\" type=\"text/x-markdown\"/>\n<$list filter=\"[<tv-config-toolbar-icons>prefix[yes]]\">\n{{$:/plugins/tiddlywiki/markdown/images/new-markdown-button}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>prefix[yes]]\">\n<span class=\"tc-btn-text\"><$text text={{$:/language/Buttons/NewMarkdown/Caption}}/></span>\n</$list>\n</$button>\n"
},
"$:/plugins/tiddlywiki/markdown/readme": {
"title": "$:/plugins/tiddlywiki/markdown/readme",
"text": "This is a TiddlyWiki plugin for parsing Markdown text, based on the [[markdown-js|https://github.com/evilstreak/markdown-js]] project from Dominic Baggott. \n\nIt is completely self-contained, and doesn't need an Internet connection in order to work. It works both in the browser and under Node.js.\n\n[[Source code|https://github.com/Jermolene/TiddlyWiki5/blob/master/plugins/tiddlywiki/markdown]]\n"
},
"$:/plugins/tiddlywiki/markdown/usage": {
"title": "$:/plugins/tiddlywiki/markdown/usage",
"text": "! Markdown Dialects\n\nBy default the markdown parser recognises the original dialect of Markdown [[as described by John Gruber|http://daringfireball.net/projects/markdown/]]. An extended dialect called \"Maruku\" is also included that provides table support and other advanced features. The syntax extensions are modelled on those of [[PHP Markdown Extra|https://michelf.ca/projects/php-markdown/extra/]].\n\nThe configuration tiddler [[$:/config/markdown/dialect]] determines which dialect is used:\n\n|!Dialect |!Description |\n|Gruber |Standard Markdown |\n|Maruku |Extended Maruku Markdown |\n\n\n! Creating ~WikiLinks\n\nCreate wiki links with the usual Markdown link syntax targeting `#` and the target tiddler title:\n\n```\n[link text](#TiddlerTitle)\n```\n\n! Images\n\nMarkdown image syntax can be used to reference images by tiddler title or an external URI. For example:\n\n```\n\n\n\n```\n"
},
"$:/plugins/tiddlywiki/markdown/wrapper.js": {
"title": "$:/plugins/tiddlywiki/markdown/wrapper.js",
"text": "/*\\\ntitle: $:/plugins/tiddlywiki/markdown/wrapper.js\ntype: application/javascript\nmodule-type: parser\n\nWraps up the markdown-js parser for use in TiddlyWiki5\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar markdown = require(\"$:/plugins/tiddlywiki/markdown/markdown.js\");\n\nvar CONFIG_DIALECT_TIDDLER = \"$:/config/markdown/dialect\",\n\tDEFAULT_DIALECT = \"Gruber\";\n\nfunction transformNodes(nodes) {\n\tvar results = [];\n\tfor(var index=0; index<nodes.length; index++) {\n\t\tresults.push(transformNode(nodes[index]));\n\t}\n\treturn results;\n}\n\nfunction transformNode(node) {\n\tif($tw.utils.isArray(node)) {\n\t\tvar p = 0,\n\t\t\twidget = {type: \"element\", tag: node[p++]};\n\t\tif(!$tw.utils.isArray(node[p]) && typeof(node[p]) === \"object\") {\n\t\t\twidget.attributes = {};\n\t\t\t$tw.utils.each(node[p++],function(value,name) {\n\t\t\t\twidget.attributes[name] = {type: \"string\", value: value};\n\t\t\t});\n\t\t}\n\t\twidget.children = transformNodes(node.slice(p++));\n\t\t// Massage images into the image widget\n\t\tif(widget.tag === \"img\") {\n\t\t\twidget.type = \"image\";\n\t\t\tif(widget.attributes.alt) {\n\t\t\t\twidget.attributes.tooltip = widget.attributes.alt;\n\t\t\t\tdelete widget.attributes.alt;\n\t\t\t}\n\t\t\tif(widget.attributes.src) {\n\t\t\t\twidget.attributes.source = widget.attributes.src;\n\t\t\t\tdelete widget.attributes.src;\n\t\t\t}\n\t\t}\n\t\t// Convert internal links to proper wikilinks\n\t\tif (widget.tag === \"a\" && widget.attributes.href.value[0] === \"#\") {\n\t\t\twidget.type = \"link\";\n\t\t\twidget.attributes.to = widget.attributes.href;\n\t\t\tif (widget.attributes.to.type === \"string\") {\n\t\t\t\t//Remove '#' before conversion to wikilink\n\t\t\t\twidget.attributes.to.value = widget.attributes.to.value.substr(1);\n\t\t\t}\n\t\t\t//Children is fine\n\t\t\tdelete widget.tag;\n\t\t\tdelete widget.attributes.href;\n\t\t}\n\t\treturn widget;\n\t} else {\n\t\treturn {type: \"text\", text: node};\n\t}\n}\n\nvar MarkdownParser = function(type,text,options) {\n\tvar dialect = options.wiki.getTiddlerText(CONFIG_DIALECT_TIDDLER,DEFAULT_DIALECT),\n\t\tmarkdownTree = markdown.toHTMLTree(text,dialect),\n\t\tnode = $tw.utils.isArray(markdownTree[1]) ? markdownTree.slice(1) : markdownTree.slice(2);\n\tthis.tree = transformNodes(node);\n};\n\n/*\n\n[ 'html',\n [ 'p', 'something' ],\n [ 'h1',\n 'heading and ',\n [ 'strong', 'other' ] ] ]\n\n*/\n\nexports[\"text/x-markdown\"] = MarkdownParser;\n\n})();\n\n",
"type": "application/javascript",
"module-type": "parser"
}
}
}
{
"tiddlers": {
"$:/plugins/tiddlywiki/mobiledragdrop/ios-drag-drop.js": {
"text": "(function(doc) {\n\nfunction _exposeIosHtml5DragDropShim(config) {\n log = noop; // noOp, remove this line to enable debugging\n\n var coordinateSystemForElementFromPoint;\n\n var DRAG_OVER_EMIT_FREQ = 50;\n\n function main() {\n config = config || {};\n if (!config.hasOwnProperty(\"simulateAnchorClick\")) config.simulateAnchorClick = true;\n\n coordinateSystemForElementFromPoint = navigator.userAgent.match(/OS [1-4](?:_\\d+)+ like Mac/) ? \"page\" : \"client\";\n\n var div = doc.createElement('div');\n var dragDiv = 'draggable' in div;\n var evts = 'ondragstart' in div && 'ondrop' in div;\n\n var needsPatch = !(dragDiv || evts) || /iPad|iPhone|iPod|Android/.test(navigator.userAgent);\n log((needsPatch ? \"\" : \"not \") + \"patching html5 drag drop\");\n\n if(!needsPatch) {\n return;\n }\n\n if(!config.enableEnterLeave) {\n DragDrop.prototype.synthesizeEnterLeave = noop;\n }\n\n if(config.holdToDrag){\n doc.addEventListener(\"touchstart\", touchstartDelay(config.holdToDrag), {passive:false});\n }\n else {\n doc.addEventListener(\"touchstart\", touchstart, {passive:false});\n }\n }\n\n function DragDrop(event, el) {\n\n this.dragData = {};\n this.dragDataTypes = [];\n this.dragImage = null;\n this.dragImageTransform = null;\n this.dragImageWebKitTransform = null;\n this.customDragImage = null;\n this.customDragImageX = null;\n this.customDragImageY = null;\n this.el = el || event.target;\n this.dragOverTimer = null;\n this.lastMoveEvent = null;\n\n log(\"dragstart\");\n\n if (this.dispatchDragStart()) {\n this.createDragImage();\n this.listen();\n }\n }\n\n DragDrop.prototype = {\n listen: function() {\n var move = onEvt(doc, \"touchmove\", this.move, this);\n var end = onEvt(doc, \"touchend\", ontouchend, this);\n var cancel = onEvt(doc, \"touchcancel\", cleanup, this);\n\n function ontouchend(event) {\n this.dragend(event, event.target);\n cleanup.call(this);\n }\n function cleanup() {\n log(\"cleanup\");\n this.dragDataTypes = [];\n if (this.dragImage !== null) {\n this.dragImage.parentNode.removeChild(this.dragImage);\n this.dragImage = null;\n this.dragImageTransform = null;\n this.dragImageWebKitTransform = null;\n }\n this.customDragImage = null;\n this.customDragImageX = null;\n this.customDragImageY = null;\n this.el = this.dragData = null;\n return [move, end, cancel].forEach(function(handler) {\n return handler.off();\n });\n }\n },\n move: function(event) {\n event.preventDefault();\n var pageXs = [], pageYs = [];\n [].forEach.call(event.changedTouches, function(touch) {\n pageXs.push(touch.pageX);\n pageYs.push(touch.pageY);\n });\n\n var x = average(pageXs) - (this.customDragImageX || parseInt(this.dragImage.offsetWidth, 10) / 2);\n var y = average(pageYs) - (this.customDragImageY || parseInt(this.dragImage.offsetHeight, 10) / 2);\n this.translateDragImage(x, y);\n\n this.synthesizeEnterLeave(event);\n this.synthesizeOver(event);\n },\n // We use translate instead of top/left because of sub-pixel rendering and for the hope of better performance\n // http://www.paulirish.com/2012/why-moving-elements-with-translate-is-better-than-posabs-topleft/\n translateDragImage: function(x, y) {\n var translate = \"translate(\" + x + \"px,\" + y + \"px) \";\n\n if (this.dragImageWebKitTransform !== null) {\n this.dragImage.style[\"-webkit-transform\"] = translate + this.dragImageWebKitTransform;\n }\n if (this.dragImageTransform !== null) {\n this.dragImage.style.transform = translate + this.dragImageTransform;\n }\n },\n synthesizeEnterLeave: function(event) {\n var target = elementFromTouchEvent(this.el,event)\n if (target != this.lastEnter) {\n if (this.lastEnter) {\n this.dispatchLeave(event);\n }\n this.lastEnter = target;\n if (this.lastEnter) {\n this.dispatchEnter(event);\n }\n }\n },\n synthesizeOver: function(event) {\n this.lastMoveEvent = event;\n if(this.lastEnter && !this.dragOverTimer) {\n this.dragOverTimer = setInterval(this.dispatchOver.bind(this), DRAG_OVER_EMIT_FREQ);\n }\n },\n clearDragOverTimer: function() {\n if(this.dragOverTimer) {\n clearInterval(this.dragOverTimer);\n this.dragOverTimer = null;\n }\n },\n dragend: function(event) {\n\n // we'll dispatch drop if there's a target, then dragEnd.\n // drop comes first http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd.html#drag-and-drop-processing-model\n log(\"dragend\");\n\n if (this.lastEnter) {\n this.dispatchLeave(event);\n }\n\n var target = elementFromTouchEvent(this.el,event)\n if (target) {\n log(\"found drop target \" + target.tagName);\n this.dispatchDrop(target, event);\n } else {\n log(\"no drop target\");\n }\n\n var dragendEvt = doc.createEvent(\"Event\");\n dragendEvt.initEvent(\"dragend\", true, true);\n this.el.dispatchEvent(dragendEvt);\n this.clearDragOverTimer();\n },\n dispatchDrop: function(target, event) {\n var dropEvt = doc.createEvent(\"Event\");\n dropEvt.initEvent(\"drop\", true, true);\n\n var touch = event.changedTouches[0];\n var x = touch[coordinateSystemForElementFromPoint + 'X'];\n var y = touch[coordinateSystemForElementFromPoint + 'Y'];\n\n var targetOffset = getOffset(target);\n\n dropEvt.offsetX = x - targetOffset.x;\n dropEvt.offsetY = y - targetOffset.y;\n\n dropEvt.dataTransfer = {\n types: this.dragDataTypes,\n getData: function(type) {\n return this.dragData[type];\n }.bind(this),\n dropEffect: \"move\"\n };\n dropEvt.preventDefault = function() {\n // https://www.w3.org/Bugs/Public/show_bug.cgi?id=14638 - if we don't cancel it, we'll snap back\n }.bind(this);\n\n once(doc, \"drop\", function() {\n log(\"drop event not canceled\");\n },this);\n\n target.dispatchEvent(dropEvt);\n },\n dispatchEnter: function(event) {\n\n var enterEvt = doc.createEvent(\"Event\");\n enterEvt.initEvent(\"dragenter\", true, true);\n enterEvt.dataTransfer = {\n types: this.dragDataTypes,\n getData: function(type) {\n return this.dragData[type];\n }.bind(this)\n };\n\n var touch = event.changedTouches[0];\n enterEvt.pageX = touch.pageX;\n enterEvt.pageY = touch.pageY;\n enterEvt.clientX = touch.clientX;\n enterEvt.clientY = touch.clientY;\n\n this.lastEnter.dispatchEvent(enterEvt);\n },\n dispatchOver: function() {\n\n var overEvt = doc.createEvent(\"Event\");\n overEvt.initEvent(\"dragover\", true, true);\n overEvt.dataTransfer = {\n types: this.dragDataTypes,\n getData: function(type) {\n return this.dragData[type];\n }.bind(this)\n };\n\n var touch = this.lastMoveEvent.changedTouches[0];\n overEvt.pageX = touch.pageX;\n overEvt.pageY = touch.pageY;\n overEvt.clientX = touch.clientX;\n overEvt.clientY = touch.clientY;\n\n this.lastEnter.dispatchEvent(overEvt);\n },\n dispatchLeave: function(event) {\n\n var leaveEvt = doc.createEvent(\"Event\");\n leaveEvt.initEvent(\"dragleave\", true, true);\n leaveEvt.dataTransfer = {\n types: this.dragDataTypes,\n getData: function(type) {\n return this.dragData[type];\n }.bind(this)\n };\n\n var touch = event.changedTouches[0];\n leaveEvt.pageX = touch.pageX;\n leaveEvt.pageY = touch.pageY;\n leaveEvt.clientX = touch.clientX;\n leaveEvt.clientY = touch.clientY;\n\n this.lastEnter.dispatchEvent(leaveEvt);\n this.lastEnter = null;\n this.clearDragOverTimer();\n },\n dispatchDragStart: function() {\n var evt = doc.createEvent(\"Event\");\n evt.initEvent(\"dragstart\", true, true);\n evt.dataTransfer = {\n setData: function(type, val) {\n this.dragData[type] = val;\n if (this.dragDataTypes.indexOf(type) == -1) {\n this.dragDataTypes[this.dragDataTypes.length] = type;\n }\n return val;\n }.bind(this),\n setDragImage: function(el, x, y){\n this.customDragImage = el;\n this.customDragImageX = x\n this.customDragImageY = y\n }.bind(this),\n dropEffect: \"move\"\n };\n return this.el.dispatchEvent(evt);\n },\n createDragImage: function() {\n if (this.customDragImage) {\n this.dragImage = this.customDragImage.cloneNode(true);\n duplicateStyle(this.customDragImage, this.dragImage);\n } else {\n this.dragImage = this.el.cloneNode(true);\n duplicateStyle(this.el, this.dragImage);\n }\n this.dragImage.style.opacity = \"0.5\";\n this.dragImage.style.position = \"absolute\";\n this.dragImage.style.left = \"0px\";\n this.dragImage.style.top = \"0px\";\n this.dragImage.style.zIndex = \"999999\";\n\n var transform = this.dragImage.style.transform;\n if (typeof transform !== \"undefined\") {\n this.dragImageTransform = \"\";\n if (transform != \"none\") {\n this.dragImageTransform = transform.replace(/translate\\(\\D*\\d+[^,]*,\\D*\\d+[^,]*\\)\\s*/g, '');\n }\n }\n\n var webkitTransform = this.dragImage.style[\"-webkit-transform\"];\n if (typeof webkitTransform !== \"undefined\") {\n this.dragImageWebKitTransform = \"\";\n if (webkitTransform != \"none\") {\n this.dragImageWebKitTransform = webkitTransform.replace(/translate\\(\\D*\\d+[^,]*,\\D*\\d+[^,]*\\)\\s*/g, '');\n }\n }\n\n this.translateDragImage(-9999, -9999);\n\n doc.body.appendChild(this.dragImage);\n }\n };\n\n // delayed touch start event\n function touchstartDelay(delay) {\n return function(evt){\n var el = evt.target;\n\n do {\n if (elementIsDraggable(el)) {\n var heldItem = function() {\n end.off();\n cancel.off();\n scroll.off();\n touchstart(evt);\n };\n\n var onReleasedItem = function() {\n end.off();\n cancel.off();\n scroll.off();\n clearTimeout(timer);\n };\n\n var timer = setTimeout(heldItem, delay);\n\n var end = onEvt(el, 'touchend', onReleasedItem, this);\n var cancel = onEvt(el, 'touchcancel', onReleasedItem, this);\n var scroll = onEvt(window, 'scroll', onReleasedItem, this);\n break;\n }\n } while ((el = el.parentNode) && el !== doc.body);\n };\n };\n\n // event listeners\n function touchstart(evt) {\n var el = evt.target;\n do {\n if (elementIsDraggable(el)) {\n handleTouchStartOnAnchor(evt, el);\n\n evt.preventDefault();\n new DragDrop(evt,el);\n break;\n }\n } while((el = el.parentNode) && el !== doc.body);\n }\n\n function elementIsDraggable(el){\n // if an element is not draggable either explicitly or implicitly we can exit immediately\n if(!el.draggable) return false;\n\n // if an element has been explicitly set to be draggable we're good to go\n if(el.hasAttribute(\"draggable\")) return true;\n\n // otherwise we investigate the implicit option\n return (!config.requireExplicitDraggable);\n }\n\n function elementIsAnchor(el){\n return el.tagName.toLowerCase() == \"a\";\n }\n\n function handleTouchStartOnAnchor(evt, el){\n // If draggable isn't explicitly set for anchors, then simulate a click event.\n // Otherwise plain old vanilla links will stop working.\n // https://developer.mozilla.org/en-US/docs/Web/Guide/Events/Touch_events#Handling_clicks\n if (!el.hasAttribute(\"draggable\") && elementIsAnchor(el) && config.simulateAnchorClick) {\n var clickEvt = document.createEvent(\"MouseEvents\");\n clickEvt.initMouseEvent(\"click\", true, true, el.ownerDocument.defaultView, 1,\n evt.screenX, evt.screenY, evt.clientX, evt.clientY,\n evt.ctrlKey, evt.altKey, evt.shiftKey, evt.metaKey, 0, null);\n el.dispatchEvent(clickEvt);\n log(\"Simulating click to anchor\");\n }\n }\n\n // DOM helpers\n function elementFromTouchEvent(el,event) {\n var touch = event.changedTouches[0];\n var target = doc.elementFromPoint(\n touch[coordinateSystemForElementFromPoint + \"X\"],\n touch[coordinateSystemForElementFromPoint + \"Y\"]\n );\n return target;\n }\n\n //calculate the offset position of an element (relative to the window, not the document)\n function getOffset(el) {\n var rect = el.getBoundingClientRect();\n return {\n \"x\": rect.left,\n \"y\": rect.top\n };\n }\n\n function onEvt(el, event, handler, context) {\n if(context) {\n handler = handler.bind(context);\n }\n el.addEventListener(event, handler, {passive:false});\n return {\n off: function() {\n return el.removeEventListener(event, handler, {passive:false});\n }\n };\n }\n\n function once(el, event, handler, context) {\n if(context) {\n handler = handler.bind(context);\n }\n function listener(evt) {\n handler(evt);\n return el.removeEventListener(event,listener);\n }\n return el.addEventListener(event,listener);\n }\n\n // duplicateStyle expects dstNode to be a clone of srcNode\n function duplicateStyle(srcNode, dstNode) {\n // Is this node an element?\n if (srcNode.nodeType == 1) {\n // Remove any potential conflict attributes\n dstNode.removeAttribute(\"id\");\n dstNode.removeAttribute(\"class\");\n dstNode.removeAttribute(\"style\");\n dstNode.removeAttribute(\"draggable\");\n\n // Clone the style\n var cs = window.getComputedStyle(srcNode);\n for (var i = 0; i < cs.length; i++) {\n var csName = cs[i];\n dstNode.style.setProperty(csName, cs.getPropertyValue(csName), cs.getPropertyPriority(csName));\n }\n\n // Pointer events as none makes the drag image transparent to document.elementFromPoint()\n dstNode.style.pointerEvents = \"none\";\n }\n\n // Do the same for the children\n if (srcNode.hasChildNodes()) {\n for (var j = 0; j < srcNode.childNodes.length; j++) {\n duplicateStyle(srcNode.childNodes[j], dstNode.childNodes[j]);\n }\n }\n }\n\n // general helpers\n function log(msg) {\n console.log(msg);\n }\n\n function average(arr) {\n if (arr.length === 0) return 0;\n return arr.reduce((function(s, v) {\n return v + s;\n }), 0) / arr.length;\n }\n\n function noop() {}\n\n main();\n\n};\n\nif (typeof module === 'object' && typeof module.exports === 'object') {\n module.exports = _exposeIosHtml5DragDropShim;\n} else if (typeof window !== 'undefined') {\n _exposeIosHtml5DragDropShim(window.iosDragDropShim);\n}\n})(document);",
"type": "application/javascript",
"title": "$:/plugins/tiddlywiki/mobiledragdrop/ios-drag-drop.js"
},
"$:/plugins/tiddlywiki/mobiledragdrop/license": {
"text": "Copyright (c) 2013 Tim Ruffles\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n",
"type": "text/plain",
"title": "$:/plugins/tiddlywiki/mobiledragdrop/license"
},
"$:/plugins/tiddlywiki/mobiledragdrop/rawmarkup": {
"title": "$:/plugins/tiddlywiki/mobiledragdrop/rawmarkup",
"tags": "$:/tags/RawMarkupWikified",
"text": "`<script>\nvar iosDragDropShim = { enableEnterLeave: true, holdToDrag: 300 };`\n{{$:/plugins/tiddlywiki/mobiledragdrop/ios-drag-drop.js}}\n`</script>`\n"
},
"$:/plugins/tiddlywiki/mobiledragdrop/readme": {
"title": "$:/plugins/tiddlywiki/mobiledragdrop/readme",
"text": "This plugin provides a \"shim\" that enables HTML 5 compatible drag and drop operations on mobile browsers, including iOS and Android. The shim was created by Tim Ruffles and is published at https://github.com/timruffles/ios-html5-drag-drop-shim.\n\nAfter installing the plugin it is necessary to save the HTML file a second time before it will be fully enabled.\n"
},
"$:/plugins/tiddlywiki/mobiledragdrop/startup.js": {
"title": "$:/plugins/tiddlywiki/mobiledragdrop/startup.js",
"text": "/*\\\ntitle: $:/plugins/tiddlywiki/mobiledragdrop/startup.js\ntype: application/javascript\nmodule-type: startup\n\nStartup initialisation\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n// Export name and synchronous status\nexports.name = \"mobiledragdrop\";\nexports.platforms = [\"browser\"];\nexports.after = [\"startup\"];\nexports.synchronous = true;\n\nexports.startup = function() {\n\twindow.addEventListener(\"touchmove\", function() {});\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "startup"
}
}
}
{
"tiddlers": {
"$:/plugins/tiddlywiki/qrcode/MakeContactQR": {
"title": "$:/plugins/tiddlywiki/qrcode/MakeContactQR",
"tags": "$:/tags/MakeQR",
"caption": "Contact",
"text": "\\define wifi-url()\nWIFI:wifi name;T:WPA;S:SSID;P:password;\n\\end\n\n\\define image(firstname,lastname,address,tel,email)\n<img src=<<makeqr text:\"\"\"MECARD:N:$lastname$,$firstname$;ADR:$address$;TEL:$tel$;EMAIL:$email$;;\"\"\" size:\"350\">>/>\n\\end\n\n! Enter the contact details\n\nFirst name: <$edit-text tiddler=\"$:/config/plugins/tiddlywiki/qrcode/contact/firstname\" tag=\"input\" default=\"\"/>\n\nLast name: <$edit-text tiddler=\"$:/config/plugins/tiddlywiki/qrcode/contact/lastname\" tag=\"input\" default=\"\"/>\n\nAddress: <$edit-text tiddler=\"$:/config/plugins/tiddlywiki/qrcode/contact/address\" tag=\"input\" default=\"\"/>\n\nTelephone: <$edit-text tiddler=\"$:/config/plugins/tiddlywiki/qrcode/contact/tel\" tag=\"input\" default=\"\"/>\n\nEmail: <$edit-text tiddler=\"$:/config/plugins/tiddlywiki/qrcode/contact/email\" tag=\"input\" default=\"\"/>\n\n! Here is your QR code\n\n<$macrocall $name=\"image\" firstname={{$:/config/plugins/tiddlywiki/qrcode/contact/firstname}} lastname={{$:/config/plugins/tiddlywiki/qrcode/contact/lastname}} address={{$:/config/plugins/tiddlywiki/qrcode/contact/address}} tel={{$:/config/plugins/tiddlywiki/qrcode/contact/tel}} email={{$:/config/plugins/tiddlywiki/qrcode/contact/email}}/>\n"
},
"$:/plugins/tiddlywiki/qrcode/MakeGenericQR": {
"title": "$:/plugins/tiddlywiki/qrcode/MakeGenericQR",
"tags": "$:/tags/MakeQR",
"caption": "Generic",
"text": "\\define image(content)\n<img src=<<makeqr text:\"\"\"$content$\"\"\" size:\"350\">>/>\n\\end\n\n! Enter the details\n\nYou can also use this form to encode URLs.\n\n<$edit-text tiddler=\"$:/config/plugins/tiddlywiki/qrcode/generic\" default=\"\" class=\"tc-edit-texteditor\"/>\n\n! Here is your QR code\n\n<$macrocall $name=\"image\" content={{$:/config/plugins/tiddlywiki/qrcode/generic}}/>\n"
},
"$:/plugins/tiddlywiki/qrcode/MakeWifiQR": {
"title": "$:/plugins/tiddlywiki/qrcode/MakeWifiQR",
"tags": "$:/tags/MakeQR",
"caption": "Wifi",
"text": "\\define wifi-url()\nWIFI:T:WPA;S:SSID;P:password;;\n\\end\n\n\\define image(network,encryption,ssid,password)\n<img src=<<makeqr text:\"\"\"WIFI:T:$encryption$;S:$ssid$;P:$password$;;\"\"\" size:\"350\">>/>\n\\end\n\n! Enter the details of your wifi network\n\nEncryption: <$select tiddler=\"$:/config/plugins/tiddlywiki/qrcode/wifi/encryption\" default=\"none\">\n<option value=\"none\">None</option>\n<option value=\"WEP\">WEP</option>\n<option value=\"WPA\">WPA</option>\n<option value=\"WPA2\">WPA2</option>\n</$select>\n\nSSID: <$edit-text tiddler=\"$:/config/plugins/tiddlywiki/qrcode/wifi/ssid\" tag=\"input\" default=\"\"/>\n\nPassword: <$edit-text tiddler=\"$:/config/plugins/tiddlywiki/qrcode/wifi/password\" tag=\"input\" default=\"\"/>\n\n! Here is your QR code\n\n<$macrocall $name=\"image\" network={{$:/config/plugins/tiddlywiki/qrcode/wifi/network}} encryption={{$:/config/plugins/tiddlywiki/qrcode/wifi/encryption}} ssid={{$:/config/plugins/tiddlywiki/qrcode/wifi/ssid}} password={{$:/config/plugins/tiddlywiki/qrcode/wifi/password}}/>\n"
},
"$:/plugins/tiddlywiki/qrcode/ViewToolbarButton": {
"title": "$:/plugins/tiddlywiki/qrcode/ViewToolbarButton",
"tags": "$:/tags/ViewToolbar",
"list-before": "$:/core/ui/Buttons/close",
"caption": "{{$:/plugins/tiddlywiki/qrcode/icon}}",
"short-caption": "QR code",
"description": "Generate QR code for this tiddler",
"text": "\\whitespace trim\n<span class=\"tc-popup-keep\">\n<$button popup=<<qualify \"$:/state/popup/qrcode\">> tooltip={{$:/plugins/tiddlywiki/qrcode/ViewToolbarButton!!description}} aria-label={{$:/plugins/tiddlywiki/qrcode/ViewToolbarButton!!short-caption}} class=<<tv-config-toolbar-class>> class=<<tv-config-toolbar-class>> selectedClass=\"tc-selected\">\n<$list filter=\"[<tv-config-toolbar-icons>prefix[yes]]\">\n{{$:/plugins/tiddlywiki/qrcode/icon}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>prefix[yes]]\">\n<span class=\"tc-btn-text\">\n<$text text=\" \"/>\n<$text text={{$:/plugins/tiddlywiki/qrcode/ViewToolbarButton!!short-caption}}/>\n</span>\n</$list>\n</$button>\n</span>\n<$reveal state=<<qualify \"$:/state/popup/qrcode\">> type=\"popup\" position=\"below\" animate=\"yes\">\n\n<div class=\"tc-drop-down\">\n\n{{$:/plugins/tiddlywiki/qrcode/ViewToolbarButton||description}}\n\n<$set name=\"tv-config-toolbar-icons\" value=\"yes\">\n\n<$set name=\"tv-config-toolbar-text\" value=\"yes\">\n\n<$set name=\"tv-config-toolbar-class\" value=\"tc-btn-invisible\">\n\n<$set name=\"targetTiddler\" value=<<currentTiddler>>>\n\n<$list filter=\"[all[shadows+tiddlers]tag[$:/tags/ViewToolbarButton/QRcode]!has[draft.of]]\">\n\n<$button popup=<<qualify \"$:/state/popup/qrcode/type\">> class=\"tc-btn-invisible\" selectedClass=\"tc-selected\">\n\n<$action-sendmessage $message=\"tm-modal\" $param=<<currentTiddler>> currentTiddler=<<targetTiddler>>/>\n\n<$transclude field=\"caption\" mode=\"inline\"/>\n\n</$button>\n\n</$list>\n\n</$set>\n\n</$set>\n\n</$set>\n\n</$set>\n\n</div>\n\n</$reveal>\n"
},
"$:/plugins/tiddlywiki/qrcode/ViewToolbarButton/Raw": {
"title": "$:/plugins/tiddlywiki/qrcode/ViewToolbarButton/Raw",
"tags": "$:/tags/ViewToolbarButton/QRcode",
"caption": "Raw content of this tiddler",
"subtitle": "QR code of raw tiddler content",
"text": "\\define image()\n<img src=<<makeqr text:\"\"\"$(content)$\"\"\" size:\"350\">>/>\n\\end\n\n<$set name=\"content\" value={{!!text}}>\n<<image>>\n</$set>\n"
},
"$:/plugins/tiddlywiki/qrcode/ViewToolbarButton/Rendered": {
"title": "$:/plugins/tiddlywiki/qrcode/ViewToolbarButton/Rendered",
"tags": "$:/tags/ViewToolbarButton/QRcode",
"caption": "Rendered content of this tiddler",
"subtitle": "QR code of rendered tiddler content",
"text": "\\define image()\n<img src=<<makeqr text:\"\"\"$(content)$\"\"\" size:\"350\">>/>\n\\end\n\n<$wikify name=\"content\" text={{!!text}} type=\"text\" mode=\"block\" output=\"formattedtext\">\n<<image>>\n</$wikify>\n"
},
"$:/plugins/tiddlywiki/qrcode/ViewToolbarButton/URL": {
"title": "$:/plugins/tiddlywiki/qrcode/ViewToolbarButton/URL",
"tags": "$:/tags/ViewToolbarButton/QRcode",
"caption": "URL of this tiddler",
"subtitle": "QR code of URL of this tiddler",
"text": "\\define image()\n<img src=<<makeqr text:\"\"\"$(url)$#$(hash)$\"\"\" size:\"350\">>/>\n\\end\n\n<$set name=\"url\" value={{$:/info/url/full}}>\n<$set name=\"hash\" filter=\"[<currentTiddler>encodeuricomponent[]]\" select=\"0\">\n<<image>>\n</$set>\n</$set>\n"
},
"$:/plugins/tiddlywiki/qrcode/styles": {
"title": "$:/plugins/tiddlywiki/qrcode/styles",
"tags": "[[$:/tags/Stylesheet]]",
"text": "\\rules only filteredtranscludeinline transcludeinline macrodef macrocallinline\n\n.tc-drop-down .tc-qrcode-drop-down img {\n\twidth: 100%;\n\theight: 100%;\n}\n"
},
"$:/plugins/tiddlywiki/qrcode/examples": {
"title": "$:/plugins/tiddlywiki/qrcode/examples",
"text": "<<tabs \"[all[shadows+tiddlers]tag[$:/tags/MakeQR]!has[draft.of]]\" \"$:/plugins/tiddlywiki/qrcode/MakeGenericQR\">>"
},
"$:/plugins/tiddlywiki/qrcode/readme": {
"title": "$:/plugins/tiddlywiki/qrcode/readme",
"text": "The QR code plugin provides a macro that enables any text to be rendered as a [[QR code|https://en.wikipedia.org/wiki/QR_code]]. QR codes are a type of 2-dimensional bar code that encodes arbitrary data: text, numbers, links. QR code readers are available or built-in for smartphones, making them a convenient means to transfer information between devices\n\nThe QR code plugin adds the following features to TiddlyWiki:\n\n* A new [[makeqr Macro]] that renders specified text as a QR code image that can be displayed or printed\n* A new toolbar button that can display several QR code renderings of the content of a tiddler:\n** Raw content\n** Rendered, formatted content\n** URL of tiddler\n\nThe QR code plugin is based on the library [[qrcode.js by Zeno Zeng|https://github.com/zenozeng/node-yaqrcode]]."
},
"$:/plugins/tiddlywiki/qrcode/usage": {
"title": "$:/plugins/tiddlywiki/qrcode/usage",
"text": "! `makeqr` Macro\n\nThe <<.def makeqr>> [[macro|Macros]] converts text data into an image of the corresponding QR code. The image is returned as [[base64-encoded data URI|https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/Data_URIs]].\n\n!! Parameters\n\n;text\n: The text to encode\n;size\n: The size of the image in pixels (defaults to 500)\n;errorCorrectLevel\n: Determines the amount of error correction applied to the image; see below (defaults to \"M\").\n;fallback\n: The fallback image to be returned in case of an error (see below)\n\nThe conversion will fail if the text is too long and/or complex and the macro will return the provided fallback image. If no fallback image is provided then an error image is generated.\n\nThe error correction level is a [[QR code feature|http://www.qrcode.com/en/about/error_correction.html]]:\n\n<<<\nQR Code has error correction capability to restore data if the code is dirty or damaged. ... Level Q or H may be selected for factory environment where QR Code get dirty, whereas Level L may be selected for clean environment with the large amount of data. Typically, Level M (15%) is most frequently selected.\n<<<\n\n!! Examples\n\nMaking a QR code for a simple string of text:\n\n```\n<<makeqr \"Hello there!\">>\n```\n\nMaking a QR code for the URL field of the current tiddler:\n\n```\n<$macrocall $name=\"makeqr\" text={{!!url}}/>\n```\n\nMaking a QR code for the URL of the current wiki:\n\n```\n<$macrocall $name=\"makeqr\" text={{$:/info/url/full}}/>\n```\n"
},
"$:/plugins/tiddlywiki/qrcode/qrcode.js": {
"text": "//---------------------------------------------------------------------\n//\n// QR Code Generator for JavaScript\n//\n// Copyright (c) 2009 Kazuhiko Arase\n//\n// URL: http://www.d-project.com/\n//\n// Licensed under the MIT license:\n//\thttp://www.opensource.org/licenses/mit-license.php\n//\n// The word 'QR Code' is registered trademark of\n// DENSO WAVE INCORPORATED\n//\thttp://www.denso-wave.com/qrcode/faqpatent-e.html\n//\n//---------------------------------------------------------------------\n\n//---------------------------------------------------------------------\n// qrcode\n//---------------------------------------------------------------------\n\n/**\n * qrcode\n * @param typeNumber 1 to 40\n * @param errorCorrectLevel 'L','M','Q','H'\n */\nvar qrcode = function(typeNumber, errorCorrectLevel) {\n\n var PAD0 = 0xEC;\n var PAD1 = 0x11;\n\n var _typeNumber = typeNumber;\n var _errorCorrectLevel = QRErrorCorrectLevel[errorCorrectLevel];\n var _modules = null;\n var _moduleCount = 0;\n var _dataCache = null;\n var _dataList = new Array();\n\n var _this = {};\n\n var makeImpl = function(test, maskPattern) {\n\n\t_moduleCount = _typeNumber * 4 + 17;\n\t_modules = function(moduleCount) {\n\t var modules = new Array(moduleCount);\n\t for (var row = 0; row < moduleCount; row += 1) {\n\t\tmodules[row] = new Array(moduleCount);\n\t\tfor (var col = 0; col < moduleCount; col += 1) {\n\t\t modules[row][col] = null;\n\t\t}\n\t }\n\t return modules;\n\t}(_moduleCount);\n\n\tsetupPositionProbePattern(0, 0);\n\tsetupPositionProbePattern(_moduleCount - 7, 0);\n\tsetupPositionProbePattern(0, _moduleCount - 7);\n\tsetupPositionAdjustPattern();\n\tsetupTimingPattern();\n\tsetupTypeInfo(test, maskPattern);\n\n\tif (_typeNumber >= 7) {\n\t setupTypeNumber(test);\n\t}\n\n\tif (_dataCache == null) {\n\t _dataCache = createData(_typeNumber, _errorCorrectLevel, _dataList);\n\t}\n\n\tmapData(_dataCache, maskPattern);\n };\n\n var setupPositionProbePattern = function(row, col) {\n\n\tfor (var r = -1; r <= 7; r += 1) {\n\n\t if (row + r <= -1 || _moduleCount <= row + r) continue;\n\n\t for (var c = -1; c <= 7; c += 1) {\n\n\t\tif (col + c <= -1 || _moduleCount <= col + c) continue;\n\n\t\tif ( (0 <= r && r <= 6 && (c == 0 || c == 6) )\n\t\t || (0 <= c && c <= 6 && (r == 0 || r == 6) )\n\t\t || (2 <= r && r <= 4 && 2 <= c && c <= 4) ) {\n\t\t _modules[row + r][col + c] = true;\n\t\t} else {\n\t\t _modules[row + r][col + c] = false;\n\t\t}\n\t }\n\t}\n };\n\n var getBestMaskPattern = function() {\n\n\tvar minLostPoint = 0;\n\tvar pattern = 0;\n\n\tfor (var i = 0; i < 8; i += 1) {\n\n\t makeImpl(true, i);\n\n\t var lostPoint = QRUtil.getLostPoint(_this);\n\n\t if (i == 0 || minLostPoint > lostPoint) {\n\t\tminLostPoint = lostPoint;\n\t\tpattern = i;\n\t }\n\t}\n\n\treturn pattern;\n };\n\n var setupTimingPattern = function() {\n\n\tfor (var r = 8; r < _moduleCount - 8; r += 1) {\n\t if (_modules[r][6] != null) {\n\t\tcontinue;\n\t }\n\t _modules[r][6] = (r % 2 == 0);\n\t}\n\n\tfor (var c = 8; c < _moduleCount - 8; c += 1) {\n\t if (_modules[6][c] != null) {\n\t\tcontinue;\n\t }\n\t _modules[6][c] = (c % 2 == 0);\n\t}\n };\n\n var setupPositionAdjustPattern = function() {\n\n\tvar pos = QRUtil.getPatternPosition(_typeNumber);\n\n\tfor (var i = 0; i < pos.length; i += 1) {\n\n\t for (var j = 0; j < pos.length; j += 1) {\n\n\t\tvar row = pos[i];\n\t\tvar col = pos[j];\n\n\t\tif (_modules[row][col] != null) {\n\t\t continue;\n\t\t}\n\n\t\tfor (var r = -2; r <= 2; r += 1) {\n\n\t\t for (var c = -2; c <= 2; c += 1) {\n\n\t\t\tif (r == -2 || r == 2 || c == -2 || c == 2\n\t\t\t || (r == 0 && c == 0) ) {\n\t\t\t _modules[row + r][col + c] = true;\n\t\t\t} else {\n\t\t\t _modules[row + r][col + c] = false;\n\t\t\t}\n\t\t }\n\t\t}\n\t }\n\t}\n };\n\n var setupTypeNumber = function(test) {\n\n\tvar bits = QRUtil.getBCHTypeNumber(_typeNumber);\n\n\tfor (var i = 0; i < 18; i += 1) {\n\t var mod = (!test && ( (bits >> i) & 1) == 1);\n\t _modules[Math.floor(i / 3)][i % 3 + _moduleCount - 8 - 3] = mod;\n\t}\n\n\tfor (var i = 0; i < 18; i += 1) {\n\t var mod = (!test && ( (bits >> i) & 1) == 1);\n\t _modules[i % 3 + _moduleCount - 8 - 3][Math.floor(i / 3)] = mod;\n\t}\n };\n\n var setupTypeInfo = function(test, maskPattern) {\n\n\tvar data = (_errorCorrectLevel << 3) | maskPattern;\n\tvar bits = QRUtil.getBCHTypeInfo(data);\n\n\t// vertical\n\tfor (var i = 0; i < 15; i += 1) {\n\n\t var mod = (!test && ( (bits >> i) & 1) == 1);\n\n\t if (i < 6) {\n\t\t_modules[i][8] = mod;\n\t } else if (i < 8) {\n\t\t_modules[i + 1][8] = mod;\n\t } else {\n\t\t_modules[_moduleCount - 15 + i][8] = mod;\n\t }\n\t}\n\n\t// horizontal\n\tfor (var i = 0; i < 15; i += 1) {\n\n\t var mod = (!test && ( (bits >> i) & 1) == 1);\n\n\t if (i < 8) {\n\t\t_modules[8][_moduleCount - i - 1] = mod;\n\t } else if (i < 9) {\n\t\t_modules[8][15 - i - 1 + 1] = mod;\n\t } else {\n\t\t_modules[8][15 - i - 1] = mod;\n\t }\n\t}\n\n\t// fixed module\n\t_modules[_moduleCount - 8][8] = (!test);\n };\n\n var mapData = function(data, maskPattern) {\n\n\tvar inc = -1;\n\tvar row = _moduleCount - 1;\n\tvar bitIndex = 7;\n\tvar byteIndex = 0;\n\tvar maskFunc = QRUtil.getMaskFunction(maskPattern);\n\n\tfor (var col = _moduleCount - 1; col > 0; col -= 2) {\n\n\t if (col == 6) col -= 1;\n\n\t while (true) {\n\n\t\tfor (var c = 0; c < 2; c += 1) {\n\n\t\t if (_modules[row][col - c] == null) {\n\n\t\t\tvar dark = false;\n\n\t\t\tif (byteIndex < data.length) {\n\t\t\t dark = ( ( (data[byteIndex] >>> bitIndex) & 1) == 1);\n\t\t\t}\n\n\t\t\tvar mask = maskFunc(row, col - c);\n\n\t\t\tif (mask) {\n\t\t\t dark = !dark;\n\t\t\t}\n\n\t\t\t_modules[row][col - c] = dark;\n\t\t\tbitIndex -= 1;\n\n\t\t\tif (bitIndex == -1) {\n\t\t\t byteIndex += 1;\n\t\t\t bitIndex = 7;\n\t\t\t}\n\t\t }\n\t\t}\n\n\t\trow += inc;\n\n\t\tif (row < 0 || _moduleCount <= row) {\n\t\t row -= inc;\n\t\t inc = -inc;\n\t\t break;\n\t\t}\n\t }\n\t}\n };\n\n var createBytes = function(buffer, rsBlocks) {\n\n\tvar offset = 0;\n\n\tvar maxDcCount = 0;\n\tvar maxEcCount = 0;\n\n\tvar dcdata = new Array(rsBlocks.length);\n\tvar ecdata = new Array(rsBlocks.length);\n\n\tfor (var r = 0; r < rsBlocks.length; r += 1) {\n\n\t var dcCount = rsBlocks[r].dataCount;\n\t var ecCount = rsBlocks[r].totalCount - dcCount;\n\n\t maxDcCount = Math.max(maxDcCount, dcCount);\n\t maxEcCount = Math.max(maxEcCount, ecCount);\n\n\t dcdata[r] = new Array(dcCount);\n\n\t for (var i = 0; i < dcdata[r].length; i += 1) {\n\t\tdcdata[r][i] = 0xff & buffer.getBuffer()[i + offset];\n\t }\n\t offset += dcCount;\n\n\t var rsPoly = QRUtil.getErrorCorrectPolynomial(ecCount);\n\t var rawPoly = qrPolynomial(dcdata[r], rsPoly.getLength() - 1);\n\n\t var modPoly = rawPoly.mod(rsPoly);\n\t ecdata[r] = new Array(rsPoly.getLength() - 1);\n\t for (var i = 0; i < ecdata[r].length; i += 1) {\n\t\tvar modIndex = i + modPoly.getLength() - ecdata[r].length;\n\t\tecdata[r][i] = (modIndex >= 0)? modPoly.getAt(modIndex) : 0;\n\t }\n\t}\n\n\tvar totalCodeCount = 0;\n\tfor (var i = 0; i < rsBlocks.length; i += 1) {\n\t totalCodeCount += rsBlocks[i].totalCount;\n\t}\n\n\tvar data = new Array(totalCodeCount);\n\tvar index = 0;\n\n\tfor (var i = 0; i < maxDcCount; i += 1) {\n\t for (var r = 0; r < rsBlocks.length; r += 1) {\n\t\tif (i < dcdata[r].length) {\n\t\t data[index] = dcdata[r][i];\n\t\t index += 1;\n\t\t}\n\t }\n\t}\n\n\tfor (var i = 0; i < maxEcCount; i += 1) {\n\t for (var r = 0; r < rsBlocks.length; r += 1) {\n\t\tif (i < ecdata[r].length) {\n\t\t data[index] = ecdata[r][i];\n\t\t index += 1;\n\t\t}\n\t }\n\t}\n\n\treturn data;\n };\n\n var createData = function(typeNumber, errorCorrectLevel, dataList) {\n\n\tvar rsBlocks = QRRSBlock.getRSBlocks(typeNumber, errorCorrectLevel);\n\n\tvar buffer = qrBitBuffer();\n\n\tfor (var i = 0; i < dataList.length; i += 1) {\n\t var data = dataList[i];\n\t buffer.put(data.getMode(), 4);\n\t buffer.put(data.getLength(), QRUtil.getLengthInBits(data.getMode(), typeNumber) );\n\t data.write(buffer);\n\t}\n\n\t// calc num max data.\n\tvar totalDataCount = 0;\n\tfor (var i = 0; i < rsBlocks.length; i += 1) {\n\t totalDataCount += rsBlocks[i].dataCount;\n\t}\n\n\tif (buffer.getLengthInBits() > totalDataCount * 8) {\n\t throw new Error('code length overflow. ('\n\t\t\t + buffer.getLengthInBits()\n\t\t\t + '>'\n\t\t\t + totalDataCount * 8\n\t\t\t + ')');\n\t}\n\n\t// end code\n\tif (buffer.getLengthInBits() + 4 <= totalDataCount * 8) {\n\t buffer.put(0, 4);\n\t}\n\n\t// padding\n\twhile (buffer.getLengthInBits() % 8 != 0) {\n\t buffer.putBit(false);\n\t}\n\n\t// padding\n\twhile (true) {\n\n\t if (buffer.getLengthInBits() >= totalDataCount * 8) {\n\t\tbreak;\n\t }\n\t buffer.put(PAD0, 8);\n\n\t if (buffer.getLengthInBits() >= totalDataCount * 8) {\n\t\tbreak;\n\t }\n\t buffer.put(PAD1, 8);\n\t}\n\n\treturn createBytes(buffer, rsBlocks);\n };\n\n _this.addData = function(data) {\n\tvar newData = qr8BitByte(data);\n\t_dataList.push(newData);\n\t_dataCache = null;\n };\n\n _this.isDark = function(row, col) {\n\tif (row < 0 || _moduleCount <= row || col < 0 || _moduleCount <= col) {\n\t throw new Error(row + ',' + col);\n\t}\n\treturn _modules[row][col];\n };\n\n _this.getModuleCount = function() {\n\treturn _moduleCount;\n };\n\n _this.make = function() {\n\tmakeImpl(false, getBestMaskPattern() );\n };\n\n _this.createTableTag = function(cellSize, margin) {\n\n\tcellSize = cellSize || 2;\n\tmargin = (typeof margin == 'undefined')? cellSize * 4 : margin;\n\n\tvar qrHtml = '';\n\n\tqrHtml += '<table style=\"';\n\tqrHtml += ' border-width: 0px; border-style: none;';\n\tqrHtml += ' border-collapse: collapse;';\n\tqrHtml += ' padding: 0px; margin: ' + margin + 'px;';\n\tqrHtml += '\">';\n\tqrHtml += '<tbody>';\n\n\tfor (var r = 0; r < _this.getModuleCount(); r += 1) {\n\n\t qrHtml += '<tr>';\n\n\t for (var c = 0; c < _this.getModuleCount(); c += 1) {\n\t\tqrHtml += '<td style=\"';\n\t\tqrHtml += ' border-width: 0px; border-style: none;';\n\t\tqrHtml += ' border-collapse: collapse;';\n\t\tqrHtml += ' padding: 0px; margin: 0px;';\n\t\tqrHtml += ' width: ' + cellSize + 'px;';\n\t\tqrHtml += ' height: ' + cellSize + 'px;';\n\t\tqrHtml += ' background-color: ';\n\t\tqrHtml += _this.isDark(r, c)? '#000000' : '#ffffff';\n\t\tqrHtml += ';';\n\t\tqrHtml += '\"/>';\n\t }\n\n\t qrHtml += '</tr>';\n\t}\n\n\tqrHtml += '</tbody>';\n\tqrHtml += '</table>';\n\n\treturn qrHtml;\n };\n\n _this.createImgTag = function(cellSize, margin, size) {\n\n\tcellSize = cellSize || 2;\n\tmargin = (typeof margin == 'undefined')? cellSize * 4 : margin;\n\n\tvar min = margin;\n\tvar max = _this.getModuleCount() * cellSize + margin;\n\n\treturn createImgTag(size, size, function(x, y) {\n\t if (min <= x && x < max && min <= y && y < max) {\n\t\tvar c = Math.floor( (x - min) / cellSize);\n\t\tvar r = Math.floor( (y - min) / cellSize);\n\t\treturn _this.isDark(r, c)? 0 : 1;\n\t } else {\n\t\treturn 1;\n\t }\n\t} );\n };\n\n return _this;\n};\n\n//---------------------------------------------------------------------\n// qrcode.stringToBytes\n//---------------------------------------------------------------------\n\nqrcode.stringToBytes = function(s) {\n var bytes = new Array();\n for (var i = 0; i < s.length; i += 1) {\n\tvar c = s.charCodeAt(i);\n\tbytes.push(c & 0xff);\n }\n return bytes;\n};\n\n//---------------------------------------------------------------------\n// qrcode.createStringToBytes\n//---------------------------------------------------------------------\n\n/**\n * @param unicodeData base64 string of byte array.\n * [16bit Unicode],[16bit Bytes], ...\n * @param numChars\n */\nqrcode.createStringToBytes = function(unicodeData, numChars) {\n\n // create conversion map.\n\n var unicodeMap = function() {\n\n\tvar bin = base64DecodeInputStream(unicodeData);\n\tvar read = function() {\n\t var b = bin.read();\n\t if (b == -1) throw new Error();\n\t return b;\n\t};\n\n\tvar count = 0;\n\tvar unicodeMap = {};\n\twhile (true) {\n\t var b0 = bin.read();\n\t if (b0 == -1) break;\n\t var b1 = read();\n\t var b2 = read();\n\t var b3 = read();\n\t var k = String.fromCharCode( (b0 << 8) | b1);\n\t var v = (b2 << 8) | b3;\n\t unicodeMap[k] = v;\n\t count += 1;\n\t}\n\tif (count != numChars) {\n\t throw new Error(count + ' != ' + numChars);\n\t}\n\n\treturn unicodeMap;\n }();\n\n var unknownChar = '?'.charCodeAt(0);\n\n return function(s) {\n\tvar bytes = new Array();\n\tfor (var i = 0; i < s.length; i += 1) {\n\t var c = s.charCodeAt(i);\n\t if (c < 128) {\n\t\tbytes.push(c);\n\t } else {\n\t\tvar b = unicodeMap[s.charAt(i)];\n\t\tif (typeof b == 'number') {\n\t\t if ( (b & 0xff) == b) {\n\t\t\t// 1byte\n\t\t\tbytes.push(b);\n\t\t } else {\n\t\t\t// 2bytes\n\t\t\tbytes.push(b >>> 8);\n\t\t\tbytes.push(b & 0xff);\n\t\t }\n\t\t} else {\n\t\t bytes.push(unknownChar);\n\t\t}\n\t }\n\t}\n\treturn bytes;\n };\n};\n\n//---------------------------------------------------------------------\n// QRMode\n//---------------------------------------------------------------------\n\nvar QRMode = {\n MODE_NUMBER :\t\t1 << 0,\n MODE_ALPHA_NUM : \t1 << 1,\n MODE_8BIT_BYTE : \t1 << 2,\n MODE_KANJI :\t\t1 << 3\n};\n\n//---------------------------------------------------------------------\n// QRErrorCorrectLevel\n//---------------------------------------------------------------------\n\nvar QRErrorCorrectLevel = {\n L : 1,\n M : 0,\n Q : 3,\n H : 2\n};\n\n//---------------------------------------------------------------------\n// QRMaskPattern\n//---------------------------------------------------------------------\n\nvar QRMaskPattern = {\n PATTERN000 : 0,\n PATTERN001 : 1,\n PATTERN010 : 2,\n PATTERN011 : 3,\n PATTERN100 : 4,\n PATTERN101 : 5,\n PATTERN110 : 6,\n PATTERN111 : 7\n};\n\n//---------------------------------------------------------------------\n// QRUtil\n//---------------------------------------------------------------------\n\nvar QRUtil = function() {\n\n var PATTERN_POSITION_TABLE = [\n\t[],\n\t[6, 18],\n\t[6, 22],\n\t[6, 26],\n\t[6, 30],\n\t[6, 34],\n\t[6, 22, 38],\n\t[6, 24, 42],\n\t[6, 26, 46],\n\t[6, 28, 50],\n\t[6, 30, 54],\n\t[6, 32, 58],\n\t[6, 34, 62],\n\t[6, 26, 46, 66],\n\t[6, 26, 48, 70],\n\t[6, 26, 50, 74],\n\t[6, 30, 54, 78],\n\t[6, 30, 56, 82],\n\t[6, 30, 58, 86],\n\t[6, 34, 62, 90],\n\t[6, 28, 50, 72, 94],\n\t[6, 26, 50, 74, 98],\n\t[6, 30, 54, 78, 102],\n\t[6, 28, 54, 80, 106],\n\t[6, 32, 58, 84, 110],\n\t[6, 30, 58, 86, 114],\n\t[6, 34, 62, 90, 118],\n\t[6, 26, 50, 74, 98, 122],\n\t[6, 30, 54, 78, 102, 126],\n\t[6, 26, 52, 78, 104, 130],\n\t[6, 30, 56, 82, 108, 134],\n\t[6, 34, 60, 86, 112, 138],\n\t[6, 30, 58, 86, 114, 142],\n\t[6, 34, 62, 90, 118, 146],\n\t[6, 30, 54, 78, 102, 126, 150],\n\t[6, 24, 50, 76, 102, 128, 154],\n\t[6, 28, 54, 80, 106, 132, 158],\n\t[6, 32, 58, 84, 110, 136, 162],\n\t[6, 26, 54, 82, 110, 138, 166],\n\t[6, 30, 58, 86, 114, 142, 170]\n ];\n var G15 = (1 << 10) | (1 << 8) | (1 << 5) | (1 << 4) | (1 << 2) | (1 << 1) | (1 << 0);\n var G18 = (1 << 12) | (1 << 11) | (1 << 10) | (1 << 9) | (1 << 8) | (1 << 5) | (1 << 2) | (1 << 0);\n var G15_MASK = (1 << 14) | (1 << 12) | (1 << 10) | (1 << 4) | (1 << 1);\n\n var _this = {};\n\n var getBCHDigit = function(data) {\n\tvar digit = 0;\n\twhile (data != 0) {\n\t digit += 1;\n\t data >>>= 1;\n\t}\n\treturn digit;\n };\n\n _this.getBCHTypeInfo = function(data) {\n\tvar d = data << 10;\n\twhile (getBCHDigit(d) - getBCHDigit(G15) >= 0) {\n\t d ^= (G15 << (getBCHDigit(d) - getBCHDigit(G15) ) );\n\t}\n\treturn ( (data << 10) | d) ^ G15_MASK;\n };\n\n _this.getBCHTypeNumber = function(data) {\n\tvar d = data << 12;\n\twhile (getBCHDigit(d) - getBCHDigit(G18) >= 0) {\n\t d ^= (G18 << (getBCHDigit(d) - getBCHDigit(G18) ) );\n\t}\n\treturn (data << 12) | d;\n };\n\n _this.getPatternPosition = function(typeNumber) {\n\treturn PATTERN_POSITION_TABLE[typeNumber - 1];\n };\n\n _this.getMaskFunction = function(maskPattern) {\n\n\tswitch (maskPattern) {\n\n\t case QRMaskPattern.PATTERN000 :\n\t\treturn function(i, j) { return (i + j) % 2 == 0; };\n\t case QRMaskPattern.PATTERN001 :\n\t\treturn function(i, j) { return i % 2 == 0; };\n\t case QRMaskPattern.PATTERN010 :\n\t\treturn function(i, j) { return j % 3 == 0; };\n\t case QRMaskPattern.PATTERN011 :\n\t\treturn function(i, j) { return (i + j) % 3 == 0; };\n\t case QRMaskPattern.PATTERN100 :\n\t\treturn function(i, j) { return (Math.floor(i / 2) + Math.floor(j / 3) ) % 2 == 0; };\n\t case QRMaskPattern.PATTERN101 :\n\t\treturn function(i, j) { return (i * j) % 2 + (i * j) % 3 == 0; };\n\t case QRMaskPattern.PATTERN110 :\n\t\treturn function(i, j) { return ( (i * j) % 2 + (i * j) % 3) % 2 == 0; };\n\t case QRMaskPattern.PATTERN111 :\n\t\treturn function(i, j) { return ( (i * j) % 3 + (i + j) % 2) % 2 == 0; };\n\n\t\tdefault :\n\t\tthrow new Error('bad maskPattern:' + maskPattern);\n\t}\n };\n\n _this.getErrorCorrectPolynomial = function(errorCorrectLength) {\n\tvar a = qrPolynomial([1], 0);\n\tfor (var i = 0; i < errorCorrectLength; i += 1) {\n\t a = a.multiply(qrPolynomial([1, QRMath.gexp(i)], 0) );\n\t}\n\treturn a;\n };\n\n _this.getLengthInBits = function(mode, type) {\n\n\tif (1 <= type && type < 10) {\n\n\t // 1 - 9\n\n\t switch(mode) {\n\t\tcase QRMode.MODE_NUMBER \t: return 10;\n\t\tcase QRMode.MODE_ALPHA_NUM \t: return 9;\n\t\tcase QRMode.MODE_8BIT_BYTE\t: return 8;\n\t\tcase QRMode.MODE_KANJI\t\t: return 8;\n\t\t default :\n\t\t throw new Error('mode:' + mode);\n\t }\n\n\t} else if (type < 27) {\n\n\t // 10 - 26\n\n\t switch(mode) {\n\t\tcase QRMode.MODE_NUMBER \t: return 12;\n\t\tcase QRMode.MODE_ALPHA_NUM \t: return 11;\n\t\tcase QRMode.MODE_8BIT_BYTE\t: return 16;\n\t\tcase QRMode.MODE_KANJI\t\t: return 10;\n\t\t default :\n\t\t throw new Error('mode:' + mode);\n\t }\n\n\t} else if (type < 41) {\n\n\t // 27 - 40\n\n\t switch(mode) {\n\t\tcase QRMode.MODE_NUMBER \t: return 14;\n\t\tcase QRMode.MODE_ALPHA_NUM\t: return 13;\n\t\tcase QRMode.MODE_8BIT_BYTE\t: return 16;\n\t\tcase QRMode.MODE_KANJI\t\t: return 12;\n\t\t default :\n\t\t throw new Error('mode:' + mode);\n\t }\n\n\t} else {\n\t throw new Error('type:' + type);\n\t}\n };\n\n _this.getLostPoint = function(qrcode) {\n\n\tvar moduleCount = qrcode.getModuleCount();\n\n\tvar lostPoint = 0;\n\n\t// LEVEL1\n\n\tfor (var row = 0; row < moduleCount; row += 1) {\n\t for (var col = 0; col < moduleCount; col += 1) {\n\n\t\tvar sameCount = 0;\n\t\tvar dark = qrcode.isDark(row, col);\n\n\t\tfor (var r = -1; r <= 1; r += 1) {\n\n\t\t if (row + r < 0 || moduleCount <= row + r) {\n\t\t\tcontinue;\n\t\t }\n\n\t\t for (var c = -1; c <= 1; c += 1) {\n\n\t\t\tif (col + c < 0 || moduleCount <= col + c) {\n\t\t\t continue;\n\t\t\t}\n\n\t\t\tif (r == 0 && c == 0) {\n\t\t\t continue;\n\t\t\t}\n\n\t\t\tif (dark == qrcode.isDark(row + r, col + c) ) {\n\t\t\t sameCount += 1;\n\t\t\t}\n\t\t }\n\t\t}\n\n\t\tif (sameCount > 5) {\n\t\t lostPoint += (3 + sameCount - 5);\n\t\t}\n\t }\n\t};\n\n\t// LEVEL2\n\n\tfor (var row = 0; row < moduleCount - 1; row += 1) {\n\t for (var col = 0; col < moduleCount - 1; col += 1) {\n\t\tvar count = 0;\n\t\tif (qrcode.isDark(row, col) ) count += 1;\n\t\tif (qrcode.isDark(row + 1, col) ) count += 1;\n\t\tif (qrcode.isDark(row, col + 1) ) count += 1;\n\t\tif (qrcode.isDark(row + 1, col + 1) ) count += 1;\n\t\tif (count == 0 || count == 4) {\n\t\t lostPoint += 3;\n\t\t}\n\t }\n\t}\n\n\t// LEVEL3\n\n\tfor (var row = 0; row < moduleCount; row += 1) {\n\t for (var col = 0; col < moduleCount - 6; col += 1) {\n\t\tif (qrcode.isDark(row, col)\n\t\t && !qrcode.isDark(row, col + 1)\n\t\t && qrcode.isDark(row, col + 2)\n\t\t && qrcode.isDark(row, col + 3)\n\t\t && qrcode.isDark(row, col + 4)\n\t\t && !qrcode.isDark(row, col + 5)\n\t\t && qrcode.isDark(row, col + 6) ) {\n\t\t lostPoint += 40;\n\t\t}\n\t }\n\t}\n\n\tfor (var col = 0; col < moduleCount; col += 1) {\n\t for (var row = 0; row < moduleCount - 6; row += 1) {\n\t\tif (qrcode.isDark(row, col)\n\t\t && !qrcode.isDark(row + 1, col)\n\t\t && qrcode.isDark(row + 2, col)\n\t\t && qrcode.isDark(row + 3, col)\n\t\t && qrcode.isDark(row + 4, col)\n\t\t && !qrcode.isDark(row + 5, col)\n\t\t && qrcode.isDark(row + 6, col) ) {\n\t\t lostPoint += 40;\n\t\t}\n\t }\n\t}\n\n\t// LEVEL4\n\n\tvar darkCount = 0;\n\n\tfor (var col = 0; col < moduleCount; col += 1) {\n\t for (var row = 0; row < moduleCount; row += 1) {\n\t\tif (qrcode.isDark(row, col) ) {\n\t\t darkCount += 1;\n\t\t}\n\t }\n\t}\n\n\tvar ratio = Math.abs(100 * darkCount / moduleCount / moduleCount - 50) / 5;\n\tlostPoint += ratio * 10;\n\n\treturn lostPoint;\n };\n\n return _this;\n}();\n\n//---------------------------------------------------------------------\n// QRMath\n//---------------------------------------------------------------------\n\nvar QRMath = function() {\n\n var EXP_TABLE = new Array(256);\n var LOG_TABLE = new Array(256);\n\n // initialize tables\n for (var i = 0; i < 8; i += 1) {\n\tEXP_TABLE[i] = 1 << i;\n }\n for (var i = 8; i < 256; i += 1) {\n\tEXP_TABLE[i] = EXP_TABLE[i - 4]\n\t ^ EXP_TABLE[i - 5]\n\t ^ EXP_TABLE[i - 6]\n\t ^ EXP_TABLE[i - 8];\n }\n for (var i = 0; i < 255; i += 1) {\n\tLOG_TABLE[EXP_TABLE[i] ] = i;\n }\n\n var _this = {};\n\n _this.glog = function(n) {\n\n\tif (n < 1) {\n\t throw new Error('glog(' + n + ')');\n\t}\n\n\treturn LOG_TABLE[n];\n };\n\n _this.gexp = function(n) {\n\n\twhile (n < 0) {\n\t n += 255;\n\t}\n\n\twhile (n >= 256) {\n\t n -= 255;\n\t}\n\n\treturn EXP_TABLE[n];\n };\n\n return _this;\n}();\n\n//---------------------------------------------------------------------\n// qrPolynomial\n//---------------------------------------------------------------------\n\nfunction qrPolynomial(num, shift) {\n\n if (typeof num.length == 'undefined') {\n\tthrow new Error(num.length + '/' + shift);\n }\n\n var _num = function() {\n\tvar offset = 0;\n\twhile (offset < num.length && num[offset] == 0) {\n\t offset += 1;\n\t}\n\tvar _num = new Array(num.length - offset + shift);\n\tfor (var i = 0; i < num.length - offset; i += 1) {\n\t _num[i] = num[i + offset];\n\t}\n\treturn _num;\n }();\n\n var _this = {};\n\n _this.getAt = function(index) {\n\treturn _num[index];\n };\n\n _this.getLength = function() {\n\treturn _num.length;\n };\n\n _this.multiply = function(e) {\n\n\tvar num = new Array(_this.getLength() + e.getLength() - 1);\n\n\tfor (var i = 0; i < _this.getLength(); i += 1) {\n\t for (var j = 0; j < e.getLength(); j += 1) {\n\t\tnum[i + j] ^= QRMath.gexp(QRMath.glog(_this.getAt(i) ) + QRMath.glog(e.getAt(j) ) );\n\t }\n\t}\n\n\treturn qrPolynomial(num, 0);\n };\n\n _this.mod = function(e) {\n\n\tif (_this.getLength() - e.getLength() < 0) {\n\t return _this;\n\t}\n\n\tvar ratio = QRMath.glog(_this.getAt(0) ) - QRMath.glog(e.getAt(0) );\n\n\tvar num = new Array(_this.getLength() );\n\tfor (var i = 0; i < _this.getLength(); i += 1) {\n\t num[i] = _this.getAt(i);\n\t}\n\n\tfor (var i = 0; i < e.getLength(); i += 1) {\n\t num[i] ^= QRMath.gexp(QRMath.glog(e.getAt(i) ) + ratio);\n\t}\n\n\t// recursive call\n\treturn qrPolynomial(num, 0).mod(e);\n };\n\n return _this;\n};\n\n//---------------------------------------------------------------------\n// QRRSBlock\n//---------------------------------------------------------------------\n\nvar QRRSBlock = function() {\n\n\n // [1: [L, M, Q, H], ..]\n var RS_BLOCK_TABLE=[[1,26,19],[1,26,16],[1,26,13],[1,26,9],[1,44,34],[1,44,28],[1,44,22],[1,44,16],[1,70,55],[1,70,44],[2,35,17],[2,35,13],[1,100,80],[2,50,32],[2,50,24],[4,25,9],[1,134,108],[2,67,43],[2,33,15,2,34,16],[2,33,11,2,34,12],[2,86,68],[4,43,27],[4,43,19],[4,43,15],[2,98,78],[4,49,31],[2,32,14,4,33,15],[4,39,13,1,40,14],[2,121,97],[2,60,38,2,61,39],[4,40,18,2,41,19],[4,40,14,2,41,15],[2,146,116],[3,58,36,2,59,37],[4,36,16,4,37,17],[4,36,12,4,37,13],[2,86,68,2,87,69],[4,69,43,1,70,44],[6,43,19,2,44,20],[6,43,15,2,44,16],[4,101,81],[1,80,50,4,81,51],[4,50,22,4,51,23],[3,36,12,8,37,13],[2,116,92,2,117,93],[6,58,36,2,59,37],[4,46,20,6,47,21],[7,42,14,4,43,15],[4,133,107],[8,59,37,1,60,38],[8,44,20,4,45,21],[12,33,11,4,34,12],[3,145,115,1,146,116],[4,64,40,5,65,41],[11,36,16,5,37,17],[11,36,12,5,37,13],[5,109,87,1,110,88],[5,65,41,5,66,42],[5,54,24,7,55,25],[11,36,12],[5,122,98,1,123,99],[7,73,45,3,74,46],[15,43,19,2,44,20],[3,45,15,13,46,16],[1,135,107,5,136,108],[10,74,46,1,75,47],[1,50,22,15,51,23],[2,42,14,17,43,15],[5,150,120,1,151,121],[9,69,43,4,70,44],[17,50,22,1,51,23],[2,42,14,19,43,15],[3,141,113,4,142,114],[3,70,44,11,71,45],[17,47,21,4,48,22],[9,39,13,16,40,14],[3,135,107,5,136,108],[3,67,41,13,68,42],[15,54,24,5,55,25],[15,43,15,10,44,16],[4,144,116,4,145,117],[17,68,42],[17,50,22,6,51,23],[19,46,16,6,47,17],[2,139,111,7,140,112],[17,74,46],[7,54,24,16,55,25],[34,37,13],[4,151,121,5,152,122],[4,75,47,14,76,48],[11,54,24,14,55,25],[16,45,15,14,46,16],[6,147,117,4,148,118],[6,73,45,14,74,46],[11,54,24,16,55,25],[30,46,16,2,47,17],[8,132,106,4,133,107],[8,75,47,13,76,48],[7,54,24,22,55,25],[22,45,15,13,46,16],[10,142,114,2,143,115],[19,74,46,4,75,47],[28,50,22,6,51,23],[33,46,16,4,47,17],[8,152,122,4,153,123],[22,73,45,3,74,46],[8,53,23,26,54,24],[12,45,15,28,46,16],[3,147,117,10,148,118],[3,73,45,23,74,46],[4,54,24,31,55,25],[11,45,15,31,46,16],[7,146,116,7,147,117],[21,73,45,7,74,46],[1,53,23,37,54,24],[19,45,15,26,46,16],[5,145,115,10,146,116],[19,75,47,10,76,48],[15,54,24,25,55,25],[23,45,15,25,46,16],[13,145,115,3,146,116],[2,74,46,29,75,47],[42,54,24,1,55,25],[23,45,15,28,46,16],[17,145,115],[10,74,46,23,75,47],[10,54,24,35,55,25],[19,45,15,35,46,16],[17,145,115,1,146,116],[14,74,46,21,75,47],[29,54,24,19,55,25],[11,45,15,46,46,16],[13,145,115,6,146,116],[14,74,46,23,75,47],[44,54,24,7,55,25],[59,46,16,1,47,17],[12,151,121,7,152,122],[12,75,47,26,76,48],[39,54,24,14,55,25],[22,45,15,41,46,16],[6,151,121,14,152,122],[6,75,47,34,76,48],[46,54,24,10,55,25],[2,45,15,64,46,16],[17,152,122,4,153,123],[29,74,46,14,75,47],[49,54,24,10,55,25],[24,45,15,46,46,16],[4,152,122,18,153,123],[13,74,46,32,75,47],[48,54,24,14,55,25],[42,45,15,32,46,16],[20,147,117,4,148,118],[40,75,47,7,76,48],[43,54,24,22,55,25],[10,45,15,67,46,16],[19,148,118,6,149,119],[18,75,47,31,76,48],[34,54,24,34,55,25],[20,45,15,61,46,16]];\n\n var qrRSBlock = function(totalCount, dataCount) {\n\tvar _this = {};\n\t_this.totalCount = totalCount;\n\t_this.dataCount = dataCount;\n\treturn _this;\n };\n\n var _this = {};\n\n var getRsBlockTable = function(typeNumber, errorCorrectLevel) {\n\n\tswitch(errorCorrectLevel) {\n\t case QRErrorCorrectLevel.L :\n\t\treturn RS_BLOCK_TABLE[(typeNumber - 1) * 4 + 0];\n\t case QRErrorCorrectLevel.M :\n\t\treturn RS_BLOCK_TABLE[(typeNumber - 1) * 4 + 1];\n\t case QRErrorCorrectLevel.Q :\n\t\treturn RS_BLOCK_TABLE[(typeNumber - 1) * 4 + 2];\n\t case QRErrorCorrectLevel.H :\n\t\treturn RS_BLOCK_TABLE[(typeNumber - 1) * 4 + 3];\n\t\tdefault :\n\t\treturn undefined;\n\t}\n };\n\n _this.getRSBlocks = function(typeNumber, errorCorrectLevel) {\n\n\tvar rsBlock = getRsBlockTable(typeNumber, errorCorrectLevel);\n\n\tif (typeof rsBlock == 'undefined') {\n\t throw new Error('bad rs block @ typeNumber:' + typeNumber +\n\t\t\t '/errorCorrectLevel:' + errorCorrectLevel);\n\t}\n\n\tvar length = rsBlock.length / 3;\n\n\tvar list = new Array();\n\n\tfor (var i = 0; i < length; i += 1) {\n\n\t var count = rsBlock[i * 3 + 0];\n\t var totalCount = rsBlock[i * 3 + 1];\n\t var dataCount = rsBlock[i * 3 + 2];\n\n\t for (var j = 0; j < count; j += 1) {\n\t\tlist.push(qrRSBlock(totalCount, dataCount) );\n\t }\n\t}\n\n\treturn list;\n };\n\n return _this;\n}();\n\n//---------------------------------------------------------------------\n// qrBitBuffer\n//---------------------------------------------------------------------\n\nvar qrBitBuffer = function() {\n\n var _buffer = new Array();\n var _length = 0;\n\n var _this = {};\n\n _this.getBuffer = function() {\n\treturn _buffer;\n };\n\n _this.getAt = function(index) {\n\tvar bufIndex = Math.floor(index / 8);\n\treturn ( (_buffer[bufIndex] >>> (7 - index % 8) ) & 1) == 1;\n };\n\n _this.put = function(num, length) {\n\tfor (var i = 0; i < length; i += 1) {\n\t _this.putBit( ( (num >>> (length - i - 1) ) & 1) == 1);\n\t}\n };\n\n _this.getLengthInBits = function() {\n\treturn _length;\n };\n\n _this.putBit = function(bit) {\n\n\tvar bufIndex = Math.floor(_length / 8);\n\tif (_buffer.length <= bufIndex) {\n\t _buffer.push(0);\n\t}\n\n\tif (bit) {\n\t _buffer[bufIndex] |= (0x80 >>> (_length % 8) );\n\t}\n\n\t_length += 1;\n };\n\n return _this;\n};\n\n//---------------------------------------------------------------------\n// qr8BitByte\n//---------------------------------------------------------------------\n\nvar qr8BitByte = function(data) {\n\n var _mode = QRMode.MODE_8BIT_BYTE;\n var _data = data;\n var _parsedData = [];\n\n var _this = {};\n\n\n // Added to support UTF-8 Characters\n for (var i = 0, l = _data.length; i < l; i++) {\n\tvar byteArray = [];\n\tvar code = _data.charCodeAt(i);\n\n\tif (code > 0x10000) {\n\t byteArray[0] = 0xF0 | ((code & 0x1C0000) >>> 18);\n\t byteArray[1] = 0x80 | ((code & 0x3F000) >>> 12);\n\t byteArray[2] = 0x80 | ((code & 0xFC0) >>> 6);\n\t byteArray[3] = 0x80 | (code & 0x3F);\n\t} else if (code > 0x800) {\n\t byteArray[0] = 0xE0 | ((code & 0xF000) >>> 12);\n\t byteArray[1] = 0x80 | ((code & 0xFC0) >>> 6);\n\t byteArray[2] = 0x80 | (code & 0x3F);\n\t} else if (code > 0x80) {\n\t byteArray[0] = 0xC0 | ((code & 0x7C0) >>> 6);\n\t byteArray[1] = 0x80 | (code & 0x3F);\n\t} else {\n\t byteArray[0] = code;\n\t}\n\n // Fix Unicode corruption bug\n _parsedData.push(byteArray);\n }\n\n _parsedData = Array.prototype.concat.apply([], _parsedData);\n\n if (_parsedData.length != _data.length) {\n\t_parsedData.unshift(191);\n\t_parsedData.unshift(187);\n\t_parsedData.unshift(239);\n }\n\n var _bytes = _parsedData;\n\n _this.getMode = function() {\n\treturn _mode;\n };\n\n _this.getLength = function(buffer) {\n\treturn _bytes.length;\n };\n\n _this.write = function(buffer) {\n\tfor (var i = 0; i < _bytes.length; i += 1) {\n\t buffer.put(_bytes[i], 8);\n\t}\n };\n\n return _this;\n};\n\n//=====================================================================\n// GIF Support etc.\n//\n\n//---------------------------------------------------------------------\n// byteArrayOutputStream\n//---------------------------------------------------------------------\n\nvar byteArrayOutputStream = function() {\n\n var _bytes = new Array();\n\n var _this = {};\n\n _this.writeByte = function(b) {\n\t_bytes.push(b & 0xff);\n };\n\n _this.writeShort = function(i) {\n\t_this.writeByte(i);\n\t_this.writeByte(i >>> 8);\n };\n\n _this.writeBytes = function(b, off, len) {\n\toff = off || 0;\n\tlen = len || b.length;\n\tfor (var i = 0; i < len; i += 1) {\n\t _this.writeByte(b[i + off]);\n\t}\n };\n\n _this.writeString = function(s) {\n\tfor (var i = 0; i < s.length; i += 1) {\n\t _this.writeByte(s.charCodeAt(i) );\n\t}\n };\n\n _this.toByteArray = function() {\n\treturn _bytes;\n };\n\n _this.toString = function() {\n\tvar s = '';\n\ts += '[';\n\tfor (var i = 0; i < _bytes.length; i += 1) {\n\t if (i > 0) {\n\t\ts += ',';\n\t }\n\t s += _bytes[i];\n\t}\n\ts += ']';\n\treturn s;\n };\n\n return _this;\n};\n\n//---------------------------------------------------------------------\n// base64EncodeOutputStream\n//---------------------------------------------------------------------\n\nvar base64EncodeOutputStream = function() {\n\n var _buffer = 0;\n var _buflen = 0;\n var _length = 0;\n var _base64 = '';\n\n var _this = {};\n\n var writeEncoded = function(b) {\n\t_base64 += String.fromCharCode(encode(b & 0x3f) );\n };\n\n var encode = function(n) {\n\tif (n < 0) {\n\t // error.\n\t} else if (n < 26) {\n\t return 0x41 + n;\n\t} else if (n < 52) {\n\t return 0x61 + (n - 26);\n\t} else if (n < 62) {\n\t return 0x30 + (n - 52);\n\t} else if (n == 62) {\n\t return 0x2b;\n\t} else if (n == 63) {\n\t return 0x2f;\n\t}\n\tthrow new Error('n:' + n);\n };\n\n _this.writeByte = function(n) {\n\n\t_buffer = (_buffer << 8) | (n & 0xff);\n\t_buflen += 8;\n\t_length += 1;\n\n\twhile (_buflen >= 6) {\n\t writeEncoded(_buffer >>> (_buflen - 6) );\n\t _buflen -= 6;\n\t}\n };\n\n _this.flush = function() {\n\n\tif (_buflen > 0) {\n\t writeEncoded(_buffer << (6 - _buflen) );\n\t _buffer = 0;\n\t _buflen = 0;\n\t}\n\n\tif (_length % 3 != 0) {\n\t // padding\n\t var padlen = 3 - _length % 3;\n\t for (var i = 0; i < padlen; i += 1) {\n\t\t_base64 += '=';\n\t }\n\t}\n };\n\n _this.toString = function() {\n\treturn _base64;\n };\n\n return _this;\n};\n\n//---------------------------------------------------------------------\n// base64DecodeInputStream\n//---------------------------------------------------------------------\n\nvar base64DecodeInputStream = function(str) {\n\n var _str = str;\n var _pos = 0;\n var _buffer = 0;\n var _buflen = 0;\n\n var _this = {};\n\n _this.read = function() {\n\n\twhile (_buflen < 8) {\n\n\t if (_pos >= _str.length) {\n\t\tif (_buflen == 0) {\n\t\t return -1;\n\t\t}\n\t\tthrow new Error('unexpected end of file./' + _buflen);\n\t }\n\n\t var c = _str.charAt(_pos);\n\t _pos += 1;\n\n\t if (c == '=') {\n\t\t_buflen = 0;\n\t\treturn -1;\n\t } else if (c.match(/^\\s$/) ) {\n\t\t// ignore if whitespace.\n\t\tcontinue;\n\t }\n\n\t _buffer = (_buffer << 6) | decode(c.charCodeAt(0) );\n\t _buflen += 6;\n\t}\n\n\tvar n = (_buffer >>> (_buflen - 8) ) & 0xff;\n\t_buflen -= 8;\n\treturn n;\n };\n\n var decode = function(c) {\n\tif (0x41 <= c && c <= 0x5a) {\n\t return c - 0x41;\n\t} else if (0x61 <= c && c <= 0x7a) {\n\t return c - 0x61 + 26;\n\t} else if (0x30 <= c && c <= 0x39) {\n\t return c - 0x30 + 52;\n\t} else if (c == 0x2b) {\n\t return 62;\n\t} else if (c == 0x2f) {\n\t return 63;\n\t} else {\n\t throw new Error('c:' + c);\n\t}\n };\n\n return _this;\n};\n\n//---------------------------------------------------------------------\n// gifImage (B/W)\n//---------------------------------------------------------------------\n\nvar gifImage = function(width, height) {\n\n var _width = width;\n var _height = height;\n var _data = new Array(width * height);\n\n var _this = {};\n\n _this.setPixel = function(x, y, pixel) {\n\t_data[y * _width + x] = pixel;\n };\n\n _this.write = function(out) {\n\n\t//---------------------------------\n\t// GIF Signature\n\n\tout.writeString('GIF87a');\n\n\t//---------------------------------\n\t// Screen Descriptor\n\n\tout.writeShort(_width);\n\tout.writeShort(_height);\n\n\tout.writeByte(0x80); // 2bit\n\tout.writeByte(0);\n\tout.writeByte(0);\n\n\t//---------------------------------\n\t// Global Color Map\n\n\t// black\n\tout.writeByte(0x00);\n\tout.writeByte(0x00);\n\tout.writeByte(0x00);\n\n\t// white\n\tout.writeByte(0xff);\n\tout.writeByte(0xff);\n\tout.writeByte(0xff);\n\n\t//---------------------------------\n\t// Image Descriptor\n\n\tout.writeString(',');\n\tout.writeShort(0);\n\tout.writeShort(0);\n\tout.writeShort(_width);\n\tout.writeShort(_height);\n\tout.writeByte(0);\n\n\t//---------------------------------\n\t// Local Color Map\n\n\t//---------------------------------\n\t// Raster Data\n\n\tvar lzwMinCodeSize = 2;\n\tvar raster = getLZWRaster(lzwMinCodeSize);\n\n\tout.writeByte(lzwMinCodeSize);\n\n\tvar offset = 0;\n\n\twhile (raster.length - offset > 255) {\n\t out.writeByte(255);\n\t out.writeBytes(raster, offset, 255);\n\t offset += 255;\n\t}\n\n\tout.writeByte(raster.length - offset);\n\tout.writeBytes(raster, offset, raster.length - offset);\n\tout.writeByte(0x00);\n\n\t//---------------------------------\n\t// GIF Terminator\n\tout.writeString(';');\n };\n\n var bitOutputStream = function(out) {\n\n\tvar _out = out;\n\tvar _bitLength = 0;\n\tvar _bitBuffer = 0;\n\n\tvar _this = {};\n\n\t_this.write = function(data, length) {\n\n\t if ( (data >>> length) != 0) {\n\t\tthrow new Error('length over');\n\t }\n\n\t while (_bitLength + length >= 8) {\n\t\t_out.writeByte(0xff & ( (data << _bitLength) | _bitBuffer) );\n\t\tlength -= (8 - _bitLength);\n\t\tdata >>>= (8 - _bitLength);\n\t\t_bitBuffer = 0;\n\t\t_bitLength = 0;\n\t }\n\n\t _bitBuffer = (data << _bitLength) | _bitBuffer;\n\t _bitLength = _bitLength + length;\n\t};\n\n\t_this.flush = function() {\n\t if (_bitLength > 0) {\n\t\t_out.writeByte(_bitBuffer);\n\t }\n\t};\n\n\treturn _this;\n };\n\n var getLZWRaster = function(lzwMinCodeSize) {\n\n\tvar clearCode = 1 << lzwMinCodeSize;\n\tvar endCode = (1 << lzwMinCodeSize) + 1;\n\tvar bitLength = lzwMinCodeSize + 1;\n\n\t// Setup LZWTable\n\tvar table = lzwTable();\n\n\tfor (var i = 0; i < clearCode; i += 1) {\n\t table.add(String.fromCharCode(i) );\n\t}\n\ttable.add(String.fromCharCode(clearCode) );\n\ttable.add(String.fromCharCode(endCode) );\n\n\tvar byteOut = byteArrayOutputStream();\n\tvar bitOut = bitOutputStream(byteOut);\n\n\t// clear code\n\tbitOut.write(clearCode, bitLength);\n\n\tvar dataIndex = 0;\n\n\tvar s = String.fromCharCode(_data[dataIndex]);\n\tdataIndex += 1;\n\n\twhile (dataIndex < _data.length) {\n\n\t var c = String.fromCharCode(_data[dataIndex]);\n\t dataIndex += 1;\n\n\t if (table.contains(s + c) ) {\n\n\t\ts = s + c;\n\n\t } else {\n\n\t\tbitOut.write(table.indexOf(s), bitLength);\n\n\t\tif (table.size() < 0xfff) {\n\n\t\t if (table.size() == (1 << bitLength) ) {\n\t\t\tbitLength += 1;\n\t\t }\n\n\t\t table.add(s + c);\n\t\t}\n\n\t\ts = c;\n\t }\n\t}\n\n\tbitOut.write(table.indexOf(s), bitLength);\n\n\t// end code\n\tbitOut.write(endCode, bitLength);\n\n\tbitOut.flush();\n\n\treturn byteOut.toByteArray();\n };\n\n var lzwTable = function() {\n\n\tvar _map = {};\n\tvar _size = 0;\n\n\tvar _this = {};\n\n\t_this.add = function(key) {\n\t if (_this.contains(key) ) {\n\t\tthrow new Error('dup key:' + key);\n\t }\n\t _map[key] = _size;\n\t _size += 1;\n\t};\n\n\t_this.size = function() {\n\t return _size;\n\t};\n\n\t_this.indexOf = function(key) {\n\t return _map[key];\n\t};\n\n\t_this.contains = function(key) {\n\t return typeof _map[key] != 'undefined';\n\t};\n\n\treturn _this;\n };\n\n return _this;\n};\n\nvar createImgTag = function(width, height, getPixel, alt) {\n\n var gif = gifImage(width, height);\n for (var y = 0; y < height; y += 1) {\n\tfor (var x = 0; x < width; x += 1) {\n\t gif.setPixel(x, y, getPixel(x, y) );\n\t}\n }\n\n var b = byteArrayOutputStream();\n gif.write(b);\n\n var base64 = base64EncodeOutputStream();\n var bytes = b.toByteArray();\n for (var i = 0; i < bytes.length; i += 1) {\n\tbase64.writeByte(bytes[i]);\n }\n base64.flush();\n\n var img = '';\n img += 'data:image/gif;base64,';\n img += base64;\n\n return img;\n};\n\n//---------------------------------------------------------------------\n// returns qrcode function.\n\nmodule.exports = qrcode;\n",
"type": "application/javascript",
"title": "$:/plugins/tiddlywiki/qrcode/qrcode.js",
"module-type": "library"
},
"$:/plugins/tiddlywiki/qrcode/license": {
"text": "The MIT License (MIT)\n\nCopyright (c) 2013 Zeno Zeng\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n",
"type": "text/plain",
"title": "$:/plugins/tiddlywiki/qrcode/license"
},
"$:/plugins/tiddlywiki/qrcode/icon": {
"title": "$:/plugins/tiddlywiki/qrcode/icon",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-qrcode tc-image-button\" viewBox=\"0 0 128 128\" width=\"22pt\" height=\"22pt\">\n <g fill-rule=\"evenodd\">\n <path d=\"M0,15.9969199 C0,7.16206498 7.16987059,0 15.9969199,0 L64.0030801,0 C72.837935,0 80,7.16987059 80,15.9969199 L80,64.0030801 C80,72.837935 72.8301294,80 64.0030801,80 L15.9969199,80 C7.16206498,80 0,72.8301294 0,64.0030801 L0,15.9969199 Z M16,22.0063866 C16,18.6891509 18.6835413,16 22.0063866,16 L57.9936134,16 C61.3108491,16 64,18.6835413 64,22.0063866 L64,57.9936134 C64,61.3108491 61.3164587,64 57.9936134,64 L22.0063866,64 C18.6891509,64 16,61.3164587 16,57.9936134 L16,22.0063866 Z M28,31.990053 C28,29.7864076 29.7842933,28 31.990053,28 L48.009947,28 C50.2135924,28 52,29.7842933 52,31.990053 L52,48.009947 C52,50.2135924 50.2157067,52 48.009947,52 L31.990053,52 C29.7864076,52 28,50.2157067 28,48.009947 L28,31.990053 Z\"></path>\n <path d=\"M112,16 L112,8.49833453 L112,6.00333095 C112,2.68778282 114.67804,0 118.003331,0 L121.996669,0 C125.312217,0 128,2.67804027 128,6.00333095 L128,8.49833453 L128,23.0016655 L128,25.9966691 C128,29.3122172 125.32196,32 121.996669,32 L119.001665,32 L104.998335,32 L102.003331,32 C98.6877828,32 96,29.3219597 96,25.9966691 L96,22.0033309 C96,18.6877828 98.6780403,16 102.003331,16 L104.998335,16 L112,16 Z\"></path>\n <path d=\"M96,56.9983345 L96,54.0033309 C96,50.6877828 98.6780403,48 102.003331,48 L104.998335,48 L119.001665,48 L121.996669,48 C125.312217,48 128,50.6780403 128,54.0033309 L128,57.9966691 C128,61.3122172 125.32196,64 121.996669,64 L119.001665,64 L112,64 L112,71.0016655 L112,73.9966691 C112,77.3122172 109.32196,80 105.996669,80 L102.003331,80 C98.6877828,80 96,77.3219597 96,73.9966691 L96,71.0016655 L96,56.9983345 Z\"></path>\n <path d=\"M16,112 L23.0016655,112 L24.9983345,112 L32,112 L32,104.998335 L32,102.003331 C32,98.6877828 34.6780403,96 38.0033309,96 L40.9983345,96 L55.0016655,96 L57.9966691,96 C61.3122172,96 64,98.6780403 64,102.003331 L64,105.996669 C64,109.312217 61.3219597,112 57.9966691,112 L55.0016655,112 L48,112 L48,119.001665 L48,121.996669 C48,125.312217 45.3219597,128 41.9966691,128 L39.0016655,128 L24.9983345,128 L23.0016655,128 L8.99833453,128 L6.00333095,128 C2.68778282,128 0,125.32196 0,121.996669 L0,119.001665 L0,104.998335 L0,102.003331 C0,98.6877828 2.67804027,96 6.00333095,96 L9.99666905,96 C13.3122172,96 16,98.6780403 16,102.003331 L16,104.998335 L16,112 Z\"></path>\n <path d=\"M103.001665,96 L105.996669,96 C109.312217,96 112,98.6780403 112,102.003331 L112,105.996669 C112,109.312217 109.32196,112 105.996669,112 L103.001665,112 L88.9983345,112 L86.0033309,112 C82.6877828,112 80,109.32196 80,105.996669 L80,102.003331 C80,98.6877828 82.6780403,96 86.0033309,96 L88.9983345,96 L103.001665,96 Z\"></path>\n <path d=\"M72.9983345,112 L70.0033309,112 C66.6780403,112 64,114.687783 64,118.003331 L64,121.996669 C64,125.32196 66.6877828,128 70.0033309,128 L72.9983345,128 L87.0016655,128 L89.9966691,128 C93.3219597,128 96,125.312217 96,121.996669 L96,118.003331 C96,114.67804 93.3122172,112 89.9966691,112 L87.0016655,112 L72.9983345,112 Z\"></path>\n <rect x=\"112\" y=\"80\" width=\"16\" height=\"16\" rx=\"6\"></rect>\n <rect x=\"112\" y=\"112\" width=\"16\" height=\"16\" rx=\"6\"></rect>\n </g>\n</svg>"
},
"$:/plugins/tiddlywiki/qrcode/makeqr.js": {
"title": "$:/plugins/tiddlywiki/qrcode/makeqr.js",
"text": "/*\\\ntitle: $:/plugins/tiddlywiki/qrcode/makeqr.js\ntype: application/javascript\nmodule-type: macro\n\nMacro to convert a string into a QR Code\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\n/*\nInformation about this macro\n*/\n\nvar qrcode = require(\"$:/plugins/tiddlywiki/qrcode/qrcode.js\");\n\nvar QRCODE_GENERATION_ERROR_PREFIX = '<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 300 300\"><text x=\"0\" y=\"30\" fill=\"red\" font-family=\"Helvetica, sans-serif\" font-size=\"18\">',\n\tQRCODE_GENERATION_ERROR_SUFFIX = '</text></svg>';\n\nexports.name = \"makeqr\";\n\nexports.params = [\n\t{name: \"text\"},\n\t{name: \"size\"},\n\t{name: \"errorCorrectLevel\"},\n\t{name: \"fallback\"}\n];\n\n/*\nRun the macro\n*/\nexports.run = function(text,size,errorCorrectLevel,fallback) {\n\tvar result;\n\ttry {\n\t\tresult = generateQrCode(text,{size: size, errorCorrectLevel: errorCorrectLevel});\n\t} catch (ex) {\n\t\tconsole.log(\"makeqr error: \" + ex);\n\t\tresult = fallback || (\"data:image/svg+xml,\" + encodeURI(QRCODE_GENERATION_ERROR_PREFIX + ex + QRCODE_GENERATION_ERROR_SUFFIX));\n\t}\n\treturn result || \"\";\n};\n\nfunction generateQrCode(text,options) {\n\toptions = options || {};\n\tvar typeNumber = options.typeNumber || 4,\n\t\terrorCorrectLevel = options.errorCorrectLevel || \"M\",\n\t\tsize = options.size || 500,\n\t\tqr;\n\ttry {\n\t\tqr = qrcode(typeNumber,errorCorrectLevel);\n\t\tqr.addData(text);\n\t\tqr.make();\n\t} catch (e) {\n\t\tif(typeNumber >= 40) {\n\t\t\tthrow new Error(\"Text too long to encode\");\n\t\t} else {\n\t\t\treturn generateQrCode(text, {\n\t\t\t\tsize: size,\n\t\t\t\terrorCorrectLevel: errorCorrectLevel,\n\t\t\t\ttypeNumber: typeNumber + 1\n\t\t\t});\n\t\t}\n\t}\n\tvar cellsize = parseInt(size / qr.getModuleCount()),\n\t\tmargin = parseInt((size - qr.getModuleCount() * cellsize) / 2);\n\treturn qr.createImgTag(cellsize, margin, size);\n}\n\n\n})();\n",
"type": "application/javascript",
"module-type": "macro"
}
}
}
{
"tiddlers": {
"$:/plugins/tiddlywiki/stacked-view/StackedControls": {
"title": "$:/plugins/tiddlywiki/stacked-view/StackedControls",
"caption": "Stacked View",
"tags": "$:/tags/SideBar",
"text": "Set the [[fan separation|$:/config/StackedStoryViewFanHeight]]:\n\n* <$button set=\"$:/config/StackedStoryViewFanHeight\" setTo=\"-10\">-10</$button>\n* <$button set=\"$:/config/StackedStoryViewFanHeight\" setTo=\"0\">0</$button>\n* <$button set=\"$:/config/StackedStoryViewFanHeight\" setTo=\"10\">10</$button>\n* <$button set=\"$:/config/StackedStoryViewFanHeight\" setTo=\"30\">30</$button>\n* <$button set=\"$:/config/StackedStoryViewFanHeight\" setTo=\"50\">50</$button>\n* <$button set=\"$:/config/StackedStoryViewFanHeight\" setTo=\"100\">100</$button>\n* <$button set=\"$:/config/StackedStoryViewFanHeight\" setTo=\"150\">150</$button>\n* <$button set=\"$:/config/StackedStoryViewFanHeight\" setTo=\"200\">200</$button>\n* <$button set=\"$:/config/StackedStoryViewFanHeight\" setTo=\"250\">250</$button>\n* <$button set=\"$:/config/StackedStoryViewFanHeight\" setTo=\"300\">300</$button>\n* <$button set=\"$:/config/StackedStoryViewFanHeight\" setTo=\"500\">500</$button>\n* <$button set=\"$:/config/StackedStoryViewFanHeight\" setTo=\"700\">700</$button>\n* <$button set=\"$:/config/StackedStoryViewFanHeight\" setTo=\"1500\">1500</$button>\n"
},
"$:/config/StackedStoryViewFanHeight": {
"title": "$:/config/StackedStoryViewFanHeight",
"text": "100"
},
"$:/plugins/tiddlywiki/stacked-view/readme": {
"title": "$:/plugins/tiddlywiki/stacked-view/readme",
"text": "This plugin provides a new story visualisation that displays individual tiddlers as a stack of cards. It is currently experimental and incomplete.\n\n[[Source code|https://github.com/Jermolene/TiddlyWiki5/blob/master/plugins/tiddlywiki/stacked-view]]\n"
},
"$:/plugins/tiddlywiki/stacked-view/config-macros/stacked-storyview": {
"title": "$:/plugins/tiddlywiki/stacked-view/config-macros/stacked-storyview",
"tags": "$:/tags/Macro",
"text": "\\define tv-stacked-storyview-fan-height-config-title() $:/config/StackedStoryViewFanHeight\n"
},
"$:/plugins/tiddlywiki/stacked-view/stacked.js": {
"title": "$:/plugins/tiddlywiki/stacked-view/stacked.js",
"text": "/*\\\ntitle: $:/plugins/tiddlywiki/stacked-view/stacked.js\ntype: application/javascript\nmodule-type: storyview\n\nKeeps tiddlers in a stack\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar easing = \"cubic-bezier(0.645, 0.045, 0.355, 1)\"; // From http://easings.net/#easeInOutCubic\n\nvar StackedListView = function(listWidget) {\n\tvar self = this;\n\tthis.listWidget = listWidget;\n\tthis.fanHeightConfigTitle = listWidget.getVariable(\"tv-stacked-storyview-fan-height-config-title\");\n\tthis.placeTiddlers();\n};\n\nStackedListView.prototype.placeTiddlers = function() {\n\t// Initialise the stack of tiddler titles\n\tthis.listStack = [];\n\tvar numItems = this.listWidget.children.length,\n\t\tt, itemWidget,\n\t\tduration = $tw.utils.getAnimationDuration();\n\tfor(t=numItems-1; t>=0; t--) {\n\t\titemWidget = this.listWidget.children[t];\n\t\tthis.listStack.push(itemWidget.parseTreeNode.itemTitle);\n\t}\n\t// Ensure the tiddler at the top of the history stack is at the top of the array\n\tvar history = this.listWidget.wiki.getTiddlerData(this.listWidget.historyTitle,[]);\n\tfor(t=0; t<history.length; t++) {\n\t\tvar title = history[t].title;\n\t\tif(this.listStack.indexOf(title) !== -1) {\n\t\t\t$tw.utils.pushTop(this.listStack,title);\n\t\t}\n\t}\n\t// Get the configured fan height\n\tvar fanHeight = parseInt(this.listWidget.wiki.getTiddlerText(this.fanHeightConfigTitle),10);\n\t// Position each tiddler\n\tfor(var t=numItems-1; t>=0; t--) {\n\t\t// Get the DOM node for this tiddler\n\t\titemWidget = this.listWidget.children[t];\n\t\tvar domNode = itemWidget.findFirstDomNode();\n\t\tif(domNode instanceof Element) {\n\t\t\t// Allows the width of the tiddler to be adjusted\n\t\t\t$tw.utils.addClass(domNode,\"tc-storyview-zoomin-tiddler\");\n\t\t\t// Find the position of the tiddler in the stack\n\t\t\tvar pos = this.listStack.indexOf(itemWidget.parseTreeNode.itemTitle);\n\t\t\tif(pos !== -1) {\n\t\t\t\t// Style the tiddler to position it\n\t\t\t\tvar posFactor = pos/(numItems-1);\n\t\t\t\t$tw.utils.setStyle(domNode,[\n\t\t\t\t\t{position: \"absolute\"},\n\t\t\t\t\t{transformOrigin: \"50% 0\"},\n\t\t\t\t\t{transition: $tw.utils.roundTripPropertyName(\"transform\") + \" \" + duration * (0.5 + posFactor) + \"ms \" + easing},\n\t\t\t\t\t{transform: \"translateX(0px) translateY(\" + (fanHeight * posFactor * posFactor) + \"px) scale(\" + (0.1 + posFactor * 0.9) + \")\"},\n\t\t\t\t\t{zIndex: pos + \"\"}\n\t\t\t\t]);\n\t\t\t}\n\t\t}\n\t}\n};\n\nStackedListView.prototype.refreshStart = function(changedTiddlers,changedAttributes) {\n};\n\nStackedListView.prototype.refreshEnd = function(changedTiddlers,changedAttributes) {\n\tthis.placeTiddlers();\n};\n\nStackedListView.prototype.navigateTo = function(historyInfo) {\n};\n\nStackedListView.prototype.insert = function(widget) {\n};\n\nStackedListView.prototype.remove = function(widget) {\n\twidget.removeChildDomNodes();\n};\n\nexports.stacked = StackedListView;\n\n})();",
"type": "application/javascript",
"module-type": "storyview"
},
"$:/core/images/storyview-stacked": {
"title": "$:/core/images/storyview-stacked",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-storyview-stack tc-image-button\" width=\"22pt\" height=\"22pt\" viewBox=\"0 0 128 128\">\n <g fill-rule=\"evenodd\">\n <path d=\"M8.00697327,0 C3.58484404,0 0,3.59075293 0,8.00697327 L0,119.993027 C0,124.415156 3.59075293,128 8.00697327,128 L119.993027,128 C124.415156,128 128,124.409247 128,119.993027 L128,8.00697327 C128,3.58484404 124.409247,0 119.993027,0 L8.00697327,0 L8.00697327,0 Z M32,43 L32,37.3807213 C32,34.4040057 34.3875896,32 37.3328305,32 L45.5,32 L45.5,32 L84,32 L90.6671695,32 C93.6079301,32 96,34.409031 96,37.3807213 L96,43 L32,43 Z M30,48 L23.9992458,48 C19.5813843,48 16,51.578055 16,56.0085154 L16,103.991485 C16,108.414466 19.5881049,112 23.9992458,112 L104.000754,112 C108.418616,112 112,108.421945 112,103.991485 L112,56.0085154 C112,51.5855345 108.411895,48 104.000754,48 L98.5,48 L30,48 Z M80,27 L80,23.7529272 C80,22.2325275 78.803965,21 77.3335847,21 L50.6664153,21 C49.1937948,21 48,22.2299564 48,23.7529272 L48,27 L80,27 Z\"></path>\n </g>\n</svg>"
}
}
}
{
"tiddlers": {
"AllTiddlers": {
"title": "AllTiddlers",
"created": "20140225211938920",
"modified": "20140225211938920",
"type": "text/vnd.tiddlywiki",
"text": "Current tiddlers:\n\n<$list filter=\"[!is[system]sort[title]]\" />\n"
},
"License": {
"title": "License",
"created": "20170127221457627",
"modified": "20170127222646488",
"type": "text/vnd.tiddlywiki",
"tags": "About",
"text": "TiddlyWiki is published under a [[permissive BSD 3-Clause License|https://opensource.org/licenses/BSD-3-Clause]] stored in the [[shadow tiddler|ShadowTiddlers]] [[$:/core/copyright.txt]]:\n\n<div style=\"font-size: 0.5em;line-height:1.4;\">\n\n{{$:/core/copyright.txt}}\n\n</div>\n\nIn layman's terms, the license says that you can take TiddlyWiki and do anything you want with it without any license fee payment or other legal obligation to the creators of TiddlyWiki or anyone else. The quid pro quo is that there is no warranty or guarantee with open source projects like TiddlyWiki. You can't sue the contributors to TiddlyWiki for any loss or damage due to the use of TiddlyWiki: even if your data is lost due to a tragic chain of circumstances that involves TiddlyWiki.\n\nYou are respectfully requested that to make an attribution to the project, but there's no obligation to do so.\n\nFor the avoidance of doubt, any information that you choose to store within your own copy of TiddlyWiki remains yours; using TiddlyWiki to publish content doesn't change whatever rights you may have to that content.\n"
},
"TableOfContents": {
"title": "TableOfContents",
"caption": "{{$:/language/SideBar/Contents/Caption}}",
"created": "20140809114010378",
"list": "HelloThere Learning [[Working with TiddlyWiki]] [[Customise TiddlyWiki]] Features Languages Editions Plugins Platforms Reference Community About",
"list-after": "$:/core/ui/SideBar/Open",
"modified": "20150414070242411",
"tags": "$:/tags/SideBar",
"type": "text/vnd.tiddlywiki",
"text": "<div class=\"tc-table-of-contents\">\n\n<<toc-selective-expandable 'TableOfContents'>>\n\n</div>\n"
},
"About": {
"title": "About",
"created": "20140912145139340",
"modified": "20140916132022553",
"tags": "TableOfContents",
"type": "text/vnd.tiddlywiki",
"text": "Information about the making of TiddlyWiki:\n\n<<list-links \"[tag[About]]\">>\n"
},
"Acknowledgements": {
"title": "Acknowledgements",
"created": "20140129204112515",
"modified": "20140912145138466",
"tags": "About",
"type": "text/vnd.tiddlywiki",
"text": "TiddlyWiki wouldn't be possible without the ongoing support of the TiddlyWiki [[Community]]. Their attention and feedback has made it possible to gain an understanding of what is wanted from the product, and their passion for it has taught me that it is worth the investment.\n\n{{$:/Acknowledgements}}\n"
},
"Contributors": {
"title": "Contributors",
"created": "20140916132828137",
"modified": "20140916133148206",
"tags": "About",
"type": "text/vnd.tiddlywiki",
"text": "The following individuals have generously given their time to [[contribute to the development of TiddlyWiki|https://github.com/Jermolene/TiddlyWiki5/graphs/contributors]]:\n\n* Jeremy Ruston ([[@Jermolene|https://github.com/Jermolene]])\n* Dave Gifford ([[@giffmex|https://github.com/giffmex]])\n* Bram Chen ([[@BramChen|https://github.com/BramChen]])\n* Mario Pietsch ([[@pmario|https://github.com/pmario]])\n* Xavier Cazin ([[@xcazin|https://github.com/xcazin]])\n* Eric Shulman ([[@ericshulman|https://github.com/ericshulman]])\n* Stephan Hradek ([[@Skeeve|https://github.com/Skeeve]])\n* ~BuggyJef ([[@buggyj|https://github.com/buggyj]])\n* Nathan Cain ([[@natecain|https://github.com/natecain]])\n* Ton Gerner ([[@gernert|https://github.com/gernert]])\n* Devin Weaver ([[@sukima|https://github.com/sukima]])\n* João Bolila ([[@jbolila|https://github.com/jbolila]])\n* David Johnston ([[@Brennall|https://github.com/Brennall]])\n* David Jade ([[@davidjade|https://github.com/davidjade]])\n* Bob Robison ([[@grayeul|https://github.com/grayeul]])\n* [[@nameanyone|https://github.com/nameanyone]]\n* Maurizio Pollio ([[@mpollio|https://github.com/mpollio]])\n* Ogoshi Masayuki ([[@ogoshima|https://github.com/ogoshima]])\n* Chris Sugden ([[@csugden|https://github.com/csugden]])\n* [[@asampal|https://github.com/asampal]]\n* Bow Yi Jang ([[@Eucaly|https://github.com/Eucaly]])\n* Mal Gamble ([[@malgam|https://github.com/malgam]])\n* Michael Fogleman ([[@mwfogleman|https://github.com/mwfogleman]])\n* Daniel Barrett ([[@shendaras|https://github.com/shendaras]])\n* Simon Baird ([[@simonbaird|https://github.com/simonbaird]])\n* James Anderson ([[@welford|https://github.com/welford]])\n* Jon Lister ([[@jayfresh|https://github.com/jayfresh]])\n* [[@TheDiveO|https://github.com/TheDiveO]]\n* Danielo Rodríguez ([[@danielo515|https://github.com/danielo515]])\n* [[@willover|https://github.com/willover]]\n* [[@slotik|https://github.com/slotik]]\n* Irene Knapp ([[@IreneKnapp|https://github.com/IreneKnapp]])\n* Brian Shaver ([[@shakerlxxv|https://github.com/shakerlxxv]])\n* Tobi Beer ([[@tobibeer|https://github.com/tobibeer]])\n* Craig Cook ([[@BoyCook|https://github.com/BoyCook]])\n"
},
"Developers": {
"title": "Developers",
"created": "20150412191004348",
"modified": "20160710150754023",
"tags": "Community Reference",
"type": "text/vnd.tiddlywiki",
"text": "There are several resources for developers to learn more about TiddlyWiki and to discuss and contribute to its development.\n\n* [[tiddlywiki.com/dev|https://tiddlywiki.com/dev]] is the official developer documentation\n* [[TiddlyWikiDev group|http://groups.google.com/group/TiddlyWikiDev]] for discussions about TiddlyWiki development\n* https://github.com/Jermolene/TiddlyWiki5 for the source code and development activity\n"
},
"History of TiddlyWiki": {
"title": "History of TiddlyWiki",
"created": "20140908114400000",
"modified": "20140923141919329",
"tags": "About",
"type": "text/vnd.tiddlywiki",
"text": "//These are personal reflections on the history and development of TiddlyWiki from JeremyRuston.//\n\n//There is also a [[podcast|https://changelog.com/196/]] discussing TiddlyWiki's backstory.//\n\n! Origins of TiddlyWiki\n\nBack in 1997 a colleague introduced me to [[Ward Cunningham's original wiki|http://c2.com/cgi/wiki]]. I was impressed that something so powerful could fit into just 700 lines of Perl, and fascinated by the radical reimagining of security and permissions. Like many other developers, I took every opportunity I could to try out various wikis, and to explore their use at work.\n\nThe allure of the wiki for me was the feeling that it could eventually disrupt the prevailing paradigm of print-oriented documents and emails.\n\nAfter watching people use wikis for a few years, I noticed that power users made extensive use of the ability to open multiple wiki pages at once in several browser tabs, making it easier for them to compare and review pages, to copy text between them and to act as a sort of queue of pages yet to be read.\n\nI felt that this ability to manipulate multiple pages at once was central to the ability to refactor a wiki, and it is generally accepted that a wiki that is lovingly refactored tends to be more useful. And yet, standard wiki user interfaces have always been designed exclusively for the presentation and manipulation of single pages at once.\n\nAll of these thoughts came together when I saw GMail in April 2004, which used Ajax cleverly to blend individual emails into threaded conversations.\n\nI started experimenting with HTML and JavaScript to explore the idea further. I'd had virtually no experience of either, just having put together some static pages and simple ASP sites in previous lives. Getting my head around these client-side technologies was painful; like everyone else, I was horrified to discover how appalling were the incompatibilities and inconsistencies of web programming.\n\n! Launch of TiddlyWiki\n\nSo, in September 2004 I released a primitive [[first version of TiddlyWiki|https://classic.tiddlywiki.com/firstversion.html]]. It was the smallest possible thing that demonstrated the idea: it was a simple, self-contained static 48KB HTML file.\n\nThe downside of writing the first version of TiddlyWiki in this way was that it made it completely impractical to use for editing - when you click 'save changes' it just pops up a window showing the data that would be saved if it were possible for an HTML page to write to the file system.\n\nMuch of the early feedback was that TiddlyWiki was neat, but that it would be more useful when it was possible to properly save changes. I was a little frustrated, as I thought I knew that it was impossible for an HTML file running in the browser to save changes to the local file system.\n\nWithin a few months I saw an experimental Firefox extension that enabled TiddlyWiki to save changes in the browser. Examining the code, I realised that the APIs that it used to write to the file system were actually available in ordinary HTML files - as long as they were loaded via a `file://` URI.\n\nI adapted the Firefox code into the core of TiddlyWiki, and soon added a similar ability for Internet Explorer (making use of an old ActiveX control that Microsoft distributed with Internet Explorer).\n\n! Growth of TiddlyWiki\n\nA major milestone in the growth of TiddlyWiki was the creation of \"GTDTiddlyWiki\" by Nathan Bowers. He took the vanilla TiddlyWiki product and adapted it for the specific application of keeping track of tasks using the popular Getting Things Done methodology. GTDTiddlyWiki was an immediate hit, being enthusiastically greeted on websites like LifeHacker.\n\nOver the next couple of years TiddlyWiki continued to grow in popularity, and gained new features and capabilities. Within a year I was able to support myself by performing bespoke development work on TiddlyWiki, notably working with wiki pioneer SocialText on the ability to synchronise changes with an online server\n\n! BT Acquisition\n\nIn May 2007, [[BT]] acquired [[Osmosoft]], my consultancy company. It was an unusual decision to acquire a company with a single employee and a tiny trickle of revenue - [[Osmosoft]] didn't even own the intellectual property in TiddlyWiki since I had handed it over to UnaMesa to assure its future for the community.\n\n[[BT]]'s motivation was to help them understand community-based ecosystems. I joined the organisation as \"Head of Open Source Innovation\", taking responsibility for open source governance, and providing advice and expertise on how to participate in open soure communities.\n\n! [[Osmosoft]] and TiddlySpace\n\nI built a team in BT under the name [[Osmosoft]]. Our purpose was to evangelise the benefits of open source, and to help other teams realise those benefits in practice. We also found that it was necessary to evangelise the use of the web in general, and web standards in particular.\n\nOur approach was to focus on showing rather than telling. We worked with the TiddlyWiki community to extend the ecosystem and we built numerous internal systems for BT (some based on TiddlyWiki and some not).\n\n[[Osmosoft]]'s chief contribution to the TiddlyWiki community was the creation of TiddlyWeb and TiddlySpace. TiddlyWeb was a robust, internet scale server for tiddlers that could also compose TiddlyWiki views of those tiddlers. TiddlySpace was an attempt to package TiddlyWeb into a more directly usable form.\n\n! Leaving BT\n\nBy the end of 2011 I was increasingly feeling that I would be better placed to realise the potential of TiddlyWiki outside of the corporate confines BT. Accordingly, I left and started work as an independent developer, primarily working on a brand new reboot of TiddlyWiki in the shape of TiddlyWiki5.\n\n! Development of TiddlyWiki5\n\nI worked on new release of TiddlyWiki from November 2011. As a programmer, working on \"version 2.0\" of something that I had already written is a very attractive proposition. It means that the requirements were fully understood, allowing me to focus on evolving the architecture needed to support the desired functionality.\n\n! The Future\n\nNow that TiddlyWiki5 has finally left \"beta\" status behind, my hope is that it will have a long life. Because it only uses standard features of HTML5 and Node.js, there is no reason why it cannot be fully operational for many years to come. My goal is for it to last for at least 25 years.\n\n//Jeremy Ruston, 20th September 2014//\n\n"
},
"Philosophy of Tiddlers": {
"title": "Philosophy of Tiddlers",
"created": "20131128075743966",
"modified": "20140919160655340",
"tags": "Learning",
"type": "text/vnd.tiddlywiki",
"text": "The purpose of recording and organising information is so that it can be used again. The value of recorded information is directly proportional to the ease with which it can be re-used.\n\nThe philosophy of [[tiddlers|Tiddlers]] is that we maximise the possibilities for re-use by slicing information up into the smallest semantically meaningful units with [[rich modelling of relationships between them|Structuring TiddlyWiki]]. Then we use aggregation and composition to weave the fragments together to present narrative stories.\n\nTiddlyWiki aspires to provide an algebra for tiddlers, a concise way of expressing and exploring the relationships between items of information.\n"
},
"BuildCommand": {
"title": "BuildCommand",
"created": "20140425085548209",
"modified": "20140427210435569",
"tags": "Commands",
"type": "text/vnd.tiddlywiki",
"caption": "build",
"text": "{{$:/language/Help/build}}\n\nSee TiddlyWikiFolders for details of defining build targets.\n"
},
"ClearPasswordCommand": {
"title": "ClearPasswordCommand",
"tags": "Commands",
"caption": "clearpassword",
"text": "{{$:/language/Help/clearpassword}}\n"
},
"Commands": {
"title": "Commands",
"created": "20150117174359000",
"modified": "20180626122309578",
"tags": "Concepts Reference",
"type": "text/vnd.tiddlywiki",
"text": "A <<.def command>> is one of the following words, written with a `--` prefix and used as a command-line option under Node.js, indicating which action is desired. See [[Using TiddlyWiki on Node.js]] for details of how to use them.\n\n<<list-links \"[tag[Commands]]\">>\n"
},
"DeleteTiddlersCommand": {
"title": "DeleteTiddlersCommand",
"tags": "Commands",
"created": "20190530155418184",
"modified": "20190530155418184",
"caption": "deletetiddlers",
"text": "{{$:/language/Help/deletetiddlers}}\n"
},
"EditionsCommand": {
"title": "EditionsCommand",
"created": "20141029114305697",
"modified": "20141029114305697",
"tags": "Commands",
"type": "text/vnd.tiddlywiki",
"caption": "editions",
"text": "{{$:/language/Help/editions}}\n"
},
"FetchCommand": {
"title": "FetchCommand",
"created": "20170218131511071",
"modified": "20170218131511071",
"tags": "Commands",
"type": "text/vnd.tiddlywiki",
"caption": "fetch",
"text": "{{$:/language/Help/fetch}}\n"
},
"HelpCommand": {
"title": "HelpCommand",
"created": "20140225195548209",
"modified": "20140225195738745",
"tags": "Commands",
"type": "text/vnd.tiddlywiki",
"caption": "help",
"text": "{{$:/language/Help/help}}\n"
},
"ImportCommand": {
"title": "ImportCommand",
"caption": "import",
"created": "20170712153850528",
"modified": "20170712153850528",
"tags": "Commands",
"type": "text/vnd.tiddlywiki",
"text": "{{$:/language/Help/import}}\n"
},
"InitCommand": {
"title": "InitCommand",
"created": "20140223195548209",
"modified": "20140617212529392",
"tags": "Commands",
"type": "text/vnd.tiddlywiki",
"caption": "init",
"text": "{{$:/language/Help/init}}\n\nSee also:\n\n* [[Environment Variables on Node.js]]\n"
},
"ListenCommand": {
"title": "ListenCommand",
"caption": "listen",
"created": "20180626135301279",
"modified": "20180701171046122",
"tags": "Commands",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.18\">> See WebServer for details of TiddlyWiki's web server functionality.\n\n{{$:/language/Help/listen}}"
},
"LoadCommand": {
"title": "LoadCommand",
"created": "20140119201439976",
"modified": "20140119201554602",
"tags": "Commands",
"type": "text/vnd.tiddlywiki",
"caption": "load",
"text": "{{$:/language/Help/load}}\n"
},
"MakeLibraryCommand": {
"title": "MakeLibraryCommand",
"created": "20140903085210479",
"modified": "20140903085210479",
"tags": "Commands",
"type": "text/vnd.tiddlywiki",
"caption": "makelibrary",
"text": "{{$:/language/Help/makelibrary}}\n\nSee the UpgradeMechanism for more details.\n"
},
"NamedCommandParameters": {
"title": "NamedCommandParameters",
"created": "20180626122427188",
"modified": "20180626134639673",
"tags": "[[Using TiddlyWiki on Node.js]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.18\">> Most TiddlyWiki [[Commands]] use a position-based system for their parameters where each parameter must be listed in the precise order defined by the command. Some of the more complex commands offer an alternative scheme of named command parameters. For example, here we provide two parameters named \"port\" and \"host\":\n\n```\n--listen port=8090 host=0.0.0.0\n```\n\nNote that the order of the parameters does not matter.\n\nUsing special characters within a parameter requires quoting. Unix, Linux and the Mac use single quotes, and Windows uses double quotes:\n\n```\n--listen port=8090 username=joe 'password=s3cret(!'\n--listen port=8090 username=joe \"password=s3cret(!\"\n```\n\nNote that the quotes are applied to the entire name=value pair, not just to the value part.\n"
},
"OutputCommand": {
"title": "OutputCommand",
"created": "20140425085548209",
"modified": "20140425085738745",
"tags": "Commands",
"type": "text/vnd.tiddlywiki",
"caption": "output",
"text": "{{$:/language/Help/output}}\n"
},
"PasswordCommand": {
"title": "PasswordCommand",
"tags": "Commands",
"caption": "password",
"text": "{{$:/language/Help/password}}\n"
},
"RenderCommand": {
"title": "RenderCommand",
"caption": "render",
"created": "20170919131752774",
"modified": "20170919131805871",
"tags": "Commands",
"type": "text/vnd.tiddlywiki",
"text": "{{$:/language/Help/render}}\n\n<$button class=\"tc-btn-invisible\" style=\"text-decoration:underline\">\nShow available rendering templates\n<$action-setfield $tiddler=\"$:/temp/advancedsearch\" text=\"[all[shadows]prefix[$:/core/templates/]]\"/>\n<$action-setfield $tiddler=\"$:/state/tab--1498284803\" text=\"$:/core/ui/AdvancedSearch/Filter\"/>\n<$action-navigate $to=\"$:/AdvancedSearch\"/>\n</$button>\n"
},
"RenderTiddlerCommand": {
"title": "RenderTiddlerCommand",
"tags": "Commands",
"caption": "rendertiddler",
"text": "{{$:/language/Help/rendertiddler}}\n"
},
"RenderTiddlersCommand": {
"title": "RenderTiddlersCommand",
"tags": "Commands",
"caption": "rendertiddlers",
"text": "{{$:/language/Help/rendertiddlers}}\n"
},
"SaveCommand": {
"title": "SaveCommand",
"caption": "save",
"created": "20170919131738203",
"modified": "20170919131813069",
"tags": "Commands",
"type": "text/vnd.tiddlywiki",
"text": "{{$:/language/Help/save}}\n"
},
"SaveTiddlerCommand": {
"title": "SaveTiddlerCommand",
"tags": "Commands",
"created": "20131218121606089",
"modified": "20131218121606089",
"caption": "savetiddler",
"text": "{{$:/language/Help/savetiddler}}\n"
},
"SaveTiddlersCommand": {
"title": "SaveTiddlersCommand",
"tags": "Commands",
"created": "20140609121606089",
"modified": "20140609121606089",
"caption": "savetiddlers",
"text": "{{$:/language/Help/savetiddlers}}\n"
},
"SaveWikiFolderCommand": {
"title": "SaveWikiFolderCommand",
"tags": "Commands",
"created": "20190414110120829",
"modified": "20190414110120829",
"caption": "savewikifolder",
"text": "{{$:/language/Help/savewikifolder}}\n"
},
"ServerCommand": {
"title": "ServerCommand",
"caption": "server",
"created": "20131219163923630",
"modified": "20180626150505679",
"tags": "Commands",
"type": "text/vnd.tiddlywiki",
"text": "''Note that the `--server` command is now deprecated in favour of the new ListenCommand''.\n\nSee WebServer for details of TiddlyWiki's web server functionality.\n\n{{$:/language/Help/server}}\n"
},
"SetFieldCommand": {
"title": "SetFieldCommand",
"tags": "Commands",
"created": "20140609121606089",
"modified": "20140609121606089",
"caption": "setfield",
"text": "{{$:/language/Help/setfield}}\n"
},
"UnpackPluginCommand": {
"title": "UnpackPluginCommand",
"created": "20141029114305697",
"modified": "20141029114305697",
"tags": "Commands",
"type": "text/vnd.tiddlywiki",
"caption": "unpackplugin",
"text": "{{$:/language/Help/unpackplugin}}\n"
},
"VerboseCommand": {
"title": "VerboseCommand",
"tags": "Commands",
"caption": "verbose",
"text": "{{$:/language/Help/verbose}}\n"
},
"VersionCommand": {
"title": "VersionCommand",
"tags": "Commands",
"caption": "version",
"text": "{{$:/language/Help/version}}\n"
},
"Articles": {
"title": "Articles",
"created": "20140320230543190",
"modified": "20160602172752299",
"tags": "Community",
"type": "text/vnd.tiddlywiki",
"text": "Here are some recent articles written about ~TiddlyWiki. Submit new articles via GitHub, Twitter or by posting in the [[TiddlyWiki Groups|Forums]].\n\n<div class=\"tc-link-info\">\n\n<$list filter=\"[tag[Articles]!sort[modified]]\">\n\n<div class=\"tc-link-info-item\">\n\n! <$link><$view field=\"title\"/></$link>\n\n<div class=\"tc-subtitle\">Posted <$view field=\"modified\" format=\"relativedate\"/></div>\n\n<$transclude/>\n\n</div>\n\n</$list>\n\n</div>\n"
},
"Community": {
"title": "Community",
"created": "20130909151600000",
"modified": "20140911084937570",
"tags": "TableOfContents",
"type": "text/vnd.tiddlywiki",
"text": "Here we gather the latest and most useful material from the TiddlyWiki community.\n\n<<tabs \"Forums Latest Tutorials Resources Examples Articles Meetups\" \"Latest\">>\n"
},
"Contributing": {
"title": "Contributing",
"created": "20131101111400000",
"modified": "20190115165616599",
"tags": "Community",
"type": "text/vnd.tiddlywiki",
"text": "We welcome contributions to the code and documentation of TiddlyWiki in several ways:\n\n* ReportingBugs\n* Helping to [[improve our documentation|Improving TiddlyWiki Documentation]]\n* Contributing to the code via [[GitHub|https://github.com/Jermolene/TiddlyWiki5]]\n** See https://tiddlywiki.com/dev for more details\n\nThere are other ways to [[help TiddlyWiki|HelpingTiddlyWiki]] too.\n\n! Contributor License Agreement\n\n{{Contributor License Agreement}}\n\n! How to sign the CLA\n\n{{Signing the Contributor License Agreement}}\n\n---\n\n//The CLA documents used for this project were created using [[Harmony Project Templates|http://www.harmonyagreements.org]]. \"HA-CLA-I-LIST Version 1.0\" for \"CLA-individual\" and \"HA-CLA-E-LIST Version 1.0\" for \"CLA-entity\".//\n\n!! Remarks\n\n''If you do not own the copyright in the entire work of authorship'':\n\nIn this case, please clearly state so and provide links and any additional information that clarify under which license the rest of the code is distributed.\n"
},
"Contributor License Agreement": {
"title": "Contributor License Agreement",
"created": "20150630205511173",
"modified": "20150630205632460",
"tags": "",
"type": "text/vnd.tiddlywiki",
"text": "Like other OpenSource projects, TiddlyWiki5 needs a signed contributor license agreement from individual contributors. This is a legal agreement that allows contributors to assert that they own the copyright of their contribution, and that they agree to license it to the UnaMesa Association (the legal entity that owns TiddlyWiki on behalf of the community).\n\n* For individuals use: [[licenses/CLA-individual|https://github.com/Jermolene/TiddlyWiki5/tree/master/licenses/cla-individual.md]]\n* For entities use: [[licenses/CLA-entity|https://github.com/Jermolene/TiddlyWiki5/tree/master/licenses/cla-entity.md]]\n"
},
"Examples": {
"title": "Examples",
"created": "20140320230543190",
"modified": "20160602172745917",
"tags": "HelloThere Community",
"type": "text/vnd.tiddlywiki",
"text": "This collection showcases inspiring and interesting examples of ~TiddlyWiki being used in the wild. Submit new entries to this collection via GitHub, Twitter or by posting in the [[TiddlyWiki Groups|Forums]].\n\n<div class=\"tc-link-info\">\n\n<$list filter=\"[tag[Examples]!sort[modified]]\">\n\n<div class=\"tc-link-info-item\">\n\n! <$link><$view field=\"title\"/></$link>\n\n<div class=\"tc-subtitle\">Posted <$view field=\"modified\" format=\"relativedate\"/></div>\n\n<$transclude/>\n\n</div>\n\n</$list>\n"
},
"Forums": {
"title": "Forums",
"created": "20140721121924384",
"modified": "20161229091129395",
"tags": "Community",
"type": "text/vnd.tiddlywiki",
"text": "! Users\n\nThe ~TiddlyWiki discussion groups are mailing lists for talking about ~TiddlyWiki: requests for help, announcements of new releases and plugins, debating new features, or just sharing experiences. You can participate via the associated website, or subscribe via email.\n\n* The main ~TiddlyWiki group: http://groups.google.com/group/TiddlyWiki\n*> Note that you do not need a Google Account to join the discussion groups. Subscribe by sending an email to mailto:tiddlywiki+subscribe@googlegroups.com or mailto:tiddlywikidev+subscribe@googlegroups.com.\n** An enhanced group search facility is available on [[mail-archive.com|https://www.mail-archive.com/tiddlywiki@googlegroups.com/]]\n* Watch recordings of our regular [[TiddlyWiki Hangouts]]\n* Follow [[@TiddlyWiki on Twitter|http://twitter.com/TiddlyWiki]] for the latest news\n* ''New: Join us on our live chat at https://gitter.im/TiddlyWiki/public !''\n\n\n! Developers\n\n* The TiddlyWikiDev group for developers: http://groups.google.com/group/TiddlyWikiDev\n*> Note that you do not need a Google Account to join the discussion groups. Subscribe by sending an email to mailto:tiddlywiki+subscribe@googlegroups.com or mailto:tiddlywikidev+subscribe@googlegroups.com.\n** An enhanced group search facility is available on [[mail-archive.com|https://www.mail-archive.com/tiddlywikidev@googlegroups.com/]]\n* Follow [[@TiddlyWiki on Twitter|http://twitter.com/#!/TiddlyWiki]] for the latest news\n* Get involved in the [[development on GitHub|https://github.com/Jermolene/TiddlyWiki5]]\n* Chat at https://gitter.im/TiddlyWiki/public (development room coming soon)\n\nNew releases of TiddlyWiki, TiddlyDesktop and TiddlyFox are announced via the discussion groups and [[Twitter|https://twitter.com/TiddlyWiki]] (you can also subscribe to an Atom/RSS feed of [[TiddlyWiki releases from GitHub|https://github.com/jermolene/tiddlywiki5/releases.atom]])\n\n! Documentation\n\nThere is also a discussion group specifically for discussing TiddlyWiki documentation improvement initiatives: http://groups.google.com/group/tiddlywikidocs\n"
},
"HelpingTiddlyWiki": {
"title": "HelpingTiddlyWiki",
"created": "20130825160500000",
"modified": "20151010131218969",
"tags": "Community",
"type": "text/vnd.tiddlywiki",
"text": "If you find TiddlyWiki useful, there are lots of ways you can help assure its future and make it better.\n\n! Teach and Tell\n\nOpenSource projects like ~TiddlyWiki thrive on the feedback and engagement of users. ~TiddlyWiki becomes more useful to everyone as more and more people use it. So, if you find ~TiddlyWiki useful, spread the word. The best possible way to assure its future is for it to become a hundred times more popular than before.\n\n* [img[https://img.shields.io/twitter/url/http/tiddlywiki.com.svg?style=social]]\n* Tweet about ~TiddlyWiki: [[I love TiddlyWiki because...|https://twitter.com/intent/tweet?text=I+love+TiddlyWiki+because...&source=tiddlywiki5]]\n* [img[https://img.shields.io/github/stars/jermolene/tiddlywiki5.svg?style=social&label=Star]]\n* [[Star the TiddlyWiki5 GitHub Repository|https://github.com/Jermolene/TiddlyWiki5]]\n* [[Display the TiddlyWiki Poster|https://tiddlywiki.com/poster]]\n\n[img width=232 [Tiddler Poster.png]]\n\n! Help improve the documentation and code\n\nThere are many ways you can contribute to ~TiddlyWiki:\n\n* Writing tutorials\n* Contributing to the documentation on tiddlywiki.com\n* Making video screencasts\n* Curating relevant links, hints and tips on a wiki\n\nThe main ~TiddlyWiki documentation and code lives on GitHub, and welcomes [[contributions|Contributing]]:\n\n* https://github.com/Jermolene/TiddlyWiki5\n\n"
},
"Improving TiddlyWiki Documentation": {
"title": "Improving TiddlyWiki Documentation",
"created": "20140820151051019",
"modified": "20190115165616599",
"tags": "Community",
"type": "text/vnd.tiddlywiki",
"text": "Anyone can submit improvements to the TiddlyWiki documentation that appears on https://tiddlywiki.com. (For improvements to the core code a more complicated process must be used because of the need to test the changes both in the browser and under Node.js before submission).\n\n<<.warning \"\"\"If you already know GitHub, note that documentation updates must be directed to the `tiddlywiki-com` branch\"\"\">>\n\n# Read and observe the [[Documentation Style Guide]]\n# Create an account on https://github.com if you don't already have one\n# If you haven't done so already, sign the [[Contributor License Agreement]] as described in [[Signing the Contributor License Agreement]]\n# On https://tiddlywiki.com, click \"edit\" on the tiddler you want to improve\n# You should see a pink banner with the text: //Can you help us improve this documentation? Find out how to edit this tiddler on ~GitHub//\n# Click on the external link ...''this tiddler on ~GitHub''\n## You will be prompted that \"you need to fork this repository to propose changes\". A \"fork\" is your own copy of the repository that incorporates the changes you are proposing\n# A new browser tab should open ready to edit the tiddler on github.com\n# Below the edit box for the tiddler text you should see a box labelled ''Propose file change''\n# Enter a brief title to explain the change (eg, \"Clarify attribute syntax instability\")\n# If necessary, enter a longer description too\n# Click the green button labelled ''Propose file change''\n# On the following screen, click the green button labelled ''Create pull request''\n\n[[Jermolene|https://github.com/Jermolene]] or one of the other core developers will then have the opportunity to merge your pull request so that it is incorporated into the next build of https://tiddlywiki.com.\n\nMario Pietsch has created these short video tutorials:\n\n<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/L4zTkMYcri8\" frameborder=\"0\" allowfullscreen></iframe>\n\n<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/6ElUruH92tc\" frameborder=\"0\" allowfullscreen></iframe>\n\n<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/axFCk9KsMFc\" frameborder=\"0\" allowfullscreen></iframe>\n"
},
"Latest": {
"title": "Latest",
"created": "20140321090511826",
"modified": "20140919170549958",
"tags": "Community",
"type": "text/vnd.tiddlywiki",
"text": "The latest news, articles, resources and examples.\n\n<div class=\"tc-link-info\">\n\n<$list filter=\"[tag[Articles]] [tag[Examples]] [tag[Resources]] [tag[Tutorials]] +[!sort[modified]limit[8]]\">\n\n<div class=\"tc-link-info-item\">\n\n! <$link><$view field=\"title\"/></$link>\n\n<div class=\"tc-subtitle\">Posted <$view field=\"modified\" format=\"relativedate\"/></div>\n\n<$transclude/>\n\n</div>\n\n</$list>\n\n</div>\n"
},
"Meetups": {
"title": "Meetups",
"created": "20140721121924384",
"modified": "20160712121508468",
"tags": "Community",
"type": "text/vnd.tiddlywiki",
"text": "Local meetings around the world for ~TiddlyWiki people:\n\n* The [[TiddlyWiki European Meetup 2016]] and [[TiddlyWiki European Meetup 2017]] in Oxford, UK\n* [[OXTWIG]], the ''Oxford ~TiddlyWiki Interest Group'' meets monthly in Oxford, UK to share experiences of using TiddlyWiki\n* ''[[TiddlyWiki Camp Paris]]'' is an all day celebration and exploration of TiddlyWiki for experienced users and beginners alike\n\n//If you are a ~TiddlyWiki enthusiast please consider starting a local TWIG in your area, it's a great way to spread the word about using TiddlyWiki//\n\n"
},
"OXTWIG": {
"title": "OXTWIG",
"created": "20140222133223882",
"modified": "20140912150349097",
"tags": "Meetups Videos",
"type": "text/vnd.tiddlywiki",
"text": "The ''Oxford ~TiddlyWiki Interest Group'' meets monthly for discussions and demonstrations about TiddlyWiki.\n\nSee https://oxtwig.eventbrite.co.uk/ for details of our next meeting.\n\nWe have an email discussion list, too: https://groups.google.com/forum/#!members/oxtwig\n\n! OXTWIG #2\n\nThe second OXTWIG meeting was held on Thursday 16th January 2014:\n\n<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/WOK_nVBf_6U\" frameborder=\"0\" allowfullscreen></iframe>\n\n! OXTWIG #1\n\nThe first OXTWIG meeting was held on Thursday 21st November 2013:\n\n<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/tpNf_Dms_TE\" frameborder=\"0\" allowfullscreen></iframe>\n"
},
"ReportingBugs": {
"title": "ReportingBugs",
"created": "20140604204709181",
"modified": "20140910212541960",
"tags": "Community",
"type": "text/vnd.tiddlywiki",
"text": "You can report bugs or problems with TiddlyWiki via our [[discussion groups|Forums]]. If you have a GitHub account then you can raise an issue there:\n\nhttps://github.com/Jermolene/TiddlyWiki5/issues/new\n\nUnless you are already familiar with GitHub, it's usually easiest to report problems through the discussion groups.\n\n! TiddlyWiki on GitHub\n\nWe use GitHub Issues to manage bug reports and feature requests for TiddlyWiki. To maintain their effectiveness we endeavour to have as few open issues as possible.\n\n!! Policies for Managing Issues\n\nOpen issues should be actionable: generally either a reproducible bug report, or a specific feature request. From the perspective of the core developers, the issues list behaves like a shared todo list. Every item on the list requires a little bit of attention each time we check the list.\n\nGitHub Issues are not very good for managing ideas that are not immediately actionable. Better to use the [[TiddlyWiki discussion groups|Forums]] for open ended questions, or speculative discussions of new features.\n\n!! Creating Issues\n\nBefore creating a GitHub issue it is good etiquette to search through the existing issues to see whether the problem has already been reported. If a search isn't practical, don't worry too much; GitHub makes it easy to merge existing issues.\n\nWhen you do create an issue, remember that for effective debugging, we need as much information as possible. At a minimum, please try to include:\n\n* A descriptive title\n* A summary\n* Steps to reproduce\n* Expected behaviour\n* Context (OS, browser etc.)\n\nConsider also adding screenshots if it makes things clearer.\n\nThere's a lot of good material on the web about bug reports:\n\n* http://mhay68.tumblr.com/post/1648223018/what-makes-a-good-bug-report\n* http://www.chiark.greenend.org.uk/~sgtatham/bugs.html\n"
},
"Resources": {
"title": "Resources",
"created": "20140320230543190",
"modified": "20160602172731726",
"tags": "Community",
"type": "text/vnd.tiddlywiki",
"text": "These are sites with resources created by the ~TiddlyWiki [[Community]] help you get the best out of ~TiddlyWiki: plugins, macros and more. Submit new entries via GitHub, Twitter or by posting in the [[TiddlyWiki Groups|Forums]].\n\n<div class=\"tc-link-info\">\n\n<$list filter='[tag[Resources]!sort[modified]]'>\n\n<div class=\"tc-link-info-item\">\n\n! <$link><$view field=\"title\"/></$link>\n\n<div class=\"tc-subtitle\">Posted <$view field=\"modified\" format=\"relativedate\"/></div>\n\n<$transclude/>\n\n</div>\n\n</$list>\n\n</div>\n"
},
"Signing the Contributor License Agreement": {
"title": "Signing the Contributor License Agreement",
"created": "20150630205653005",
"modified": "20190115165616599",
"tags": "",
"type": "text/vnd.tiddlywiki",
"text": "Create a GitHub pull request to add your name to `cla-individual.md` or `cla-entity.md`, with the date in the format (YYYY/MM/DD).\n\n''step by step''\n\n# Navigate to [[licenses/CLA-individual|https://github.com/Jermolene/TiddlyWiki5/tree/master/licenses/cla-individual.md]] or [[licenses/CLA-entity|https://github.com/Jermolene/TiddlyWiki5/tree/master/licenses/cla-entity.md]] according to whether you are signing as an individual or representative of an organisation\n# Ensure that the \"branch\" dropdown at the top left is set to `tiddlywiki-com`\n# Click the \"edit\" button at the top-right corner (clicking this button will fork the project so you can edit the file)\n# Add your name at the bottom\n#* eg: `Jeremy Ruston, @Jermolene, 2011/11/22`\n# Below the edit box for the CLA text you should see a box labelled ''Propose file change''\n# Enter a brief title to explain the change (eg, \"Signing the CLA\")\n# Click the green button labelled ''Propose file change''\n# On the following screen, click the green button labelled ''Create pull request''\n"
},
"TiddlyWiki Camp Paris": {
"title": "TiddlyWiki Camp Paris",
"created": "20150612095925878",
"modified": "20150612100105269",
"tags": "Meetups",
"type": "text/vnd.tiddlywiki",
"text": "The first TiddlyWiki Camp Paris was held on Saturday 6th June 2015.\n\nhttp://paris.twcamp.info\n\n> Bienvenue sur le site du TiddlyWiki Camp. Un évènement pour rencontrer la communauté de ce logiciel Open Source, libre et gratuit. Découvrez ce bloc note personnel polyvalent et adoptez-le pour gérer votre quotidien !"
},
"TiddlyWiki Hangouts": {
"title": "TiddlyWiki Hangouts",
"created": "20130823091700000",
"modified": "20140912150339263",
"tags": "Community Videos",
"type": "text/vnd.tiddlywiki",
"text": "The TiddlyWiki community holds regular Google Hangouts, usually every Tuesday from 4pm to 6pm (UK time). They are announced in the [[TiddlyWiki Google group|https://groups.google.com/d/forum/tiddlywiki]] and on the [[TiddlyWiki Twitter account|https://twitter.com/TiddlyWiki]].\n\nPast Hangouts are archived in this ~YouTube playlist:\n\n<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/videoseries?list=PLVT_2PPd-1p34gGCQ5qpwC8QdykxVAI3u\" frameborder=\"0\" allowfullscreen></iframe>\n"
},
"TiddlyWiki European Meetup 2016": {
"title": "TiddlyWiki European Meetup 2016",
"created": "20160712121509718",
"modified": "20160712121548453",
"tags": "Meetups",
"type": "text/vnd.tiddlywiki",
"text": "https://tiddlywiki.com/tiddlywiki-eu-meetup-2016/\n\nHere's the stream of day 1:\n\n<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/7o0ClSI7Tdg\" frameborder=\"0\" allowfullscreen></iframe>\n\nHere's day 2:\n\n<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/ipXyZkC8tjM\" frameborder=\"0\" allowfullscreen></iframe>\n"
},
"TiddlyWiki European Meetup 2017": {
"title": "TiddlyWiki European Meetup 2017",
"created": "20170426210309235",
"modified": "20170426210309235",
"tags": "Meetups",
"type": "text/vnd.tiddlywiki",
"text": "The TiddlyWiki European Meetup 2017, Oxford, on June 10th and 11th 2017.\n\nFor more details:\n\nhttps://tiddlywiki.com/tiddlywiki-eu-meetup-2017/\n"
},
"Translate TiddlyWiki into your language": {
"title": "Translate TiddlyWiki into your language",
"created": "20141126153016142",
"modified": "20180701185730340",
"tags": "Community",
"type": "text/vnd.tiddlywiki",
"text": "There is a special edition of TiddlyWiki that simplifies creating and maintaining translations:\n\n* https://tiddlywiki.com/editions/translators/ to translate current version of ~TiddlyWiki\n* https://tiddlywiki.com/prerelease/editions/translators/ to translate latest prerelease version of ~TiddlyWiki\n\nNote that no knowledge of Node.js or GitHub is required.\n\nYou can translate ~TiddlyWiki on Node.js, type `tiddlywiki editions/translators --listen` and visit http://127.0.0.1:8080/ in your browser.\n\nSee https://tiddlywiki.com/dev for technical details of creating and maintaining translations.\n"
},
"Tutorials": {
"title": "Tutorials",
"created": "20140908125300000",
"modified": "20160602172722526",
"tags": "Community",
"type": "text/vnd.tiddlywiki",
"text": "Here are some webpages with tips and tutorials related to ~TiddlyWiki.\n\n<div class=\"tc-link-info\">\n\n<$list filter=\"[tag[Tutorials]!sort[modified]]\">\n\n<div class=\"tc-link-info-item\">\n\n! <$link><$view field=\"title\"/></$link>\n\n<div class=\"tc-subtitle\">Posted <$view field=\"modified\" format=\"relativedate\"/></div>\n\n<$transclude/>\n\n</div>\n\n</$list>\n\n</div>\n"
},
"\"A free, open source wiki revisited\" by Mark Gibbs, NetworkWorld": {
"title": "\"A free, open source wiki revisited\" by Mark Gibbs, NetworkWorld",
"created": "20160204225047445",
"modified": "20160204225307847",
"tags": "Articles",
"type": "text/vnd.tiddlywiki",
"url": "http://www.networkworld.com/article/3028098/open-source-tools/tiddlywiki-a-free-open-source-wiki-revisited.html",
"text": "Interesting article giving the perspective of someone who has been away from TiddlyWiki for a few years:\n\n{{!!url}}\n\n<<<\nWay back in the mists of time (actually, January 2009) I wrote about a really cool tool called TiddlyWiki, a “non-linear personal web notebook”. Fast forward to today and I just had an out of body experience: Completely by accident I found a TiddlyWiki that I started when I wrote that piece and it still works! \n\nFinding code that works flawlessly after just two or three years is magical enough but after seven years?! And given that TiddlyWiki is written as a single page Web application and considering how different browsers are now than they were in 2009, the fact that the old version of TiddlyWiki still works is not short of miraculous.\n<<<\n"
},
"\"Notizen mit TiddlyWiki systemübergreifend nutzen\" by Michael Sonntag": {
"title": "\"Notizen mit TiddlyWiki systemübergreifend nutzen\" by Michael Sonntag",
"created": "20140910102845245",
"modified": "20140910102845245",
"tags": "Articles",
"url": "http://michaelsonntag.net/notizen-mit-tiddlywiki-systemuebergreifend-nutzen",
"text": "A quick guide to using TiddlyWiki (written in German)\n\n{{!!url}}\n\n<<<\nThose using multiple different computer platforms (if only PC and Android) knows for certain: You would like to sync notes across computers and thereby be independent of any apps or services. I am concerned at any rate so and so I am constantly looking for the perfect solution.\n\nWith TiddlyWiki I found it mostly. As the name suggests, it TiddlyWiki is a Wikisystem. In contrast to all other wikis, TiddlyWiki is a single HTML file that runs in the browser and thus can be used on all modern operating systems. And because there is only one file, it can be very easily via the well-known cloud services (Dropbox, Google Drive, ownCloud) or synchronized with FTP or used on a USB stick.\n<<<\n\n(Translation from German by Google Translate)\n"
},
"\"Setting Up a Personal TiddlyWiki Server on OS X\" by Kris Johnson": {
"title": "\"Setting Up a Personal TiddlyWiki Server on OS X\" by Kris Johnson",
"created": "20150403104015626",
"modified": "20150403104206017",
"tags": "Articles",
"type": "text/vnd.tiddlywiki",
"url": "http://undefinedvalue.com/2015/04/02/setting-personal-tiddlywiki-server-os-x",
"text": "Detailed description of setting up [[TiddlyWiki on Node.js]] on OS X.\n\n{{!!url}}\n\n<<<\nFor a new job, I decided to set up a personal wiki to keep notes. I wanted to keep it simple, meeting these requirements:\n\n* All the data is in a Dropbox folder (so it can be automatically synced between machines)\n* It must support Markdown syntax\n\nAfter looking at the options, I settled on TiddlyWiki. I've used \"classic TiddlyWiki\" before, and liked its simplicity, but I was always a little annoyed with the weird steps you have to go through to save changes. The new version of TiddlyWiki includes support for running it as a real HTTP server, so you can use it just like an online wiki.\n\nBut it took me a couple of hours to figure out how to set that up. The TiddlyWiki documentation is not clear (\"not clear\" is a euphemistic way of saying \"terrible\"). So, I've written up these instructions in the hope it will spare somebody else all the frustration I had.\n<<<\n\n"
},
"\"TiddlyWiki 5 im Betatest\" by besim": {
"title": "\"TiddlyWiki 5 im Betatest\" by besim",
"created": "20140105085406905",
"modified": "20140105084548184",
"tags": "Articles",
"url": "http://blog.netplanet.org/2014/01/03/tiddlywiki-5-im-betatest/",
"text": "Reaction to TiddlyWiki5 from the translator of the German edition of TiddlyWikiClassic.\n\n{{!!url}}\n\n<<<\nThere is little software that can still inspire me so even after years, as on the first day. This includes TiddlyWiki, the \"pocket-wiki\". The latter is because the Wiki completely fits into an HTML file, and this HTML file brings everything - JavaScript program logic, CSS appearance and the entire Wiki content as stored records. So a TiddlyWiki file is then sometimes happy times some megabytes in size, but just has the unbeatable advantage that it works just as fast file created locally in a variety of browsers.\n<<<\n\n(Translation from German by Google Translate)\n"
},
"\"TiddlyWiki\" by Sander de Boer": {
"title": "\"TiddlyWiki\" by Sander de Boer",
"created": "20141127163201036",
"modified": "20141127163201036",
"tags": "Articles",
"url": "https://breinbout.wordpress.com/2014/11/26/tiddlywiki/",
"text": "Dutch blog post about TiddlyWiki\n\n{{!!url}}\n\n<<<\nI'm allergic to websites that are highly dependent on JavaScript. I think that JavaScript has many useful applications to add functionality to a site, but content needs to be visible if JavaScript is switched off. I use the NoScript extension for Firefox and surf with pleasure over the Internet without spontaneous things happen that I do not give permission. I love JavaScript on a short leash. More crazier maybe I'm so excited about TiddlyWiki.\n<<<\n\n(Translation from Dutch by Google Translate)\n"
},
"\"A Thesis Notebook\" by Alberto Molina": {
"title": "\"A Thesis Notebook\" by Alberto Molina",
"created": "20130302085406905",
"modified": "20130302084548184",
"tags": "Examples",
"url": "http://tesis.tiddlyspot.com/",
"text": "A thesis notebook based on TiddlyWiki.\n\n{{!!url}}\n\n<<<\nThis is an example of a thesis notebook powered by TiddlyWiki 5.0.8-beta.\n\nTiddlyWiki is a great piece of software created by Jeremy Ruston. It allows you, among other things, to take notes, organize ideas, store information, and display all your stuff the way you want. It is an incredibly flexible tool you can adapt to fit almost all your needs.\n\nThis TiddlyWiki has been customized to serve as a philosophy notebook centered around authors, books and papers, concepts and theories, and personal notes. I use it along with Zotero, which is a dedicated bibliography software. Both are free, open source projects. TiddlyWiki can be downloaded at https://tiddlywiki.com.\n<<<\n"
},
"Interactive Git Documentation by Devin Weaver": {
"title": "Interactive Git Documentation by Devin Weaver",
"created": "20150621212120755",
"modified": "20150621214507584",
"tags": "Examples",
"url": "http://sukima.github.io/GitFixUm/",
"text": "A git choose-your-own-adventure!ⓡ for walking yourself though fixing a //broken// Git repository.\n\n{{!!url}}\n\n<<<\nThis document is an attempt to be a fairly comprehensive guide to recovering from what you did not mean to do when using git. It isn't that git is so complicated that you need a large document to take care or your particular problem, it is more that the set of things that you might have done is so large that different techniques are needed depending on exactly what you have done and what you want to have happen.\n<<<\n"
},
"Obadiah TOC": {
"title": "Obadiah TOC",
"created": "20131207085406905",
"modified": "20131207084548184",
"tags": "Examples",
"url": "http://giffmex.org/experiments/obadiah.html",
"text": "An introduction to the biblical book of Obadiah by Dave Gifford using the table of contents macro and various custom tweaks to ~TiddlyWiki: custom new here buttons, [[this custom viewtemplate addition|http://giffmex.org/experiments/obadiah.html#%24%3A%2F_aa%2FViewTemplate%2FNoteList]] to add notes or images within any tiddler, and a tiddler transcluding all the content, in order to facilitate printing ([[this tiddler|http://giffmex.org/experiments/obadiah.html#An%20introduction%20to%20Obadiah]]).\n\n{{!!url}}\n\n"
},
"PESpot Lesson Planner by Patrick Detzner": {
"title": "PESpot Lesson Planner by Patrick Detzner",
"created": "20150403104722092",
"modified": "20150403105247619",
"tags": "Examples",
"type": "text/vnd.tiddlywiki",
"url": "http://pespot.tiddlyspot.com",
"text": "A system for lesson planning built with TiddlyWiki.\n\n{{!!url}}\n\n<<<\nI built a program to help enter and store lesson plan information and then facilitate/automate some of the tedious work involved in creating the actual lesson plan document.\n<<<\n"
},
"\"PETTIL - Forth for the Commodore PET\" by Charlie Hitselberger": {
"title": "\"PETTIL - Forth for the Commodore PET\" by Charlie Hitselberger",
"created": "20140716085406905",
"modified": "20140716084548184",
"tags": "Examples",
"type": "text/vnd.tiddlywiki",
"url": "http://chitselb.com/files/tiddlypettil.html",
"text": "A fast Forth interpreter for the [[Commodore PET|http://en.wikipedia.org/wiki/Commodore_PET]], written in 6502 assembly language. The TiddlyWiki containing program documentation is automatically generated from the source code: see https://github.com/chitselb/pettil.\n\n{{!!url}}\n\n<<<\nObjectives of the project are, in no particular order:\n\n* make a Forth that runs on my Commodore PET 2001\n* have fun\n* improve my \"6502 assembly golf\" skills\n* find other people who are interested in this project\n<<<\n"
},
"Simple Zork-like Game by Jed Carty": {
"title": "Simple Zork-like Game by Jed Carty",
"created": "20141118143636664",
"modified": "20141118143636664",
"tags": "Examples",
"url": "http://zorklike.tiddlyspot.com",
"text": "A simple game built with TiddlyWiki, introduced in [[this post|https://groups.google.com/d/topic/tiddlywiki/4aRpZht1vOs/discussion]].\n\n{{!!url}}\n\n<<<\nI decided to see if it was possible to make some sort of game using only the core tiddlywiki with no plugins or javascript. I made a very bare bones zork/interactive fiction type game. It is currently the simplest thing I could make and claim it was a game, but I may add on to it in the future. It uses the 5.1.5 prerelease because the action-setfield widget saved lots of work making macros.\n\nOne goal of this is to use nothing besides what is contained in the core tiddlywiki, so there is no javascript and no plugins.\n<<<\n"
},
"TriTarget.org by Devin Weaver": {
"title": "TriTarget.org by Devin Weaver",
"created": "20160424111304190",
"modified": "20160424112155381",
"tags": "Examples",
"type": "text/vnd.tiddlywiki",
"url": "https://tritarget.org",
"text": "A personal website built with TiddlyWiki.\n\n{{!!url}}\n\n<<<\nTriTarget.org is a name I came up with in high school. I was big into computer programming and wanted a company name that was kinda catchy. When I made a few programs in BASIC I would brand them with TriTarget as a way to show off my company (Even though I didn't have one).\n<<<\n"
},
"Ace Editor Plugin by Joerg Plewe": {
"title": "Ace Editor Plugin by Joerg Plewe",
"created": "20150403110817298",
"modified": "20150403111020017",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "http://innoq.tiddlyspot.com",
"text": "A plugin to integrate the [[Ace editor|https://github.com/ajaxorg/ace]] into TiddlyWiki.\n\n{{!!url}}\n\n<<<\nBeing quite new to TW5 development I tried my best to draft a SyncAdaptor to store tiddlers in IndexedDb. This is quite useful if an application / plugin installation is not possible (we have quite some restrictions at work...).\n<<<\n"
},
"\"BJTools\" by buggyj": {
"title": "\"BJTools\" by buggyj",
"created": "20140315085406905",
"modified": "20140321084548184",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "http://bjtools.tiddlyspot.com",
"text": "buggyj has created several useful plugins, including a WYSIWYG HTML editor, a configurable calendar and tag lists with draggable ordering.\n\n{{!!url}}\n"
},
"\"BrainTest - tools for a digital brain\" by Danielo Rodriguez": {
"title": "\"BrainTest - tools for a digital brain\" by Danielo Rodriguez",
"created": "20140315085406905",
"modified": "20140321084548184",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "http://braintest.tiddlyspot.com/",
"text": "A collection of customisations and macros from Danielo Rodriguez.\n\n{{!!url}}\n\n<<<\nThis is my personal tiddlywiki file for testing.\n\nHere I will post the tools and Macros that I develop for this awesome tool. That way, all the help the comunity gave me can came back to the comunity again.\n<<<\n"
},
"Code styles and auto format settings for IDEs": {
"title": "Code styles and auto format settings for IDEs",
"created": "20181108094230499",
"modified": "20181108095858434",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "https://gitlab.com/bimlas/tw5-code-style-auto-format",
"text": "Implementation of TiddlyWiki [[Coding Style Guidelines|https://tiddlywiki.com/dev/#TiddlyWiki%20Coding%20Style%20Guidelines]] for different IDEs.\n\n{{!!url}}\n"
},
"\"CouchDB Adaptor\" by William Shallum": {
"title": "\"CouchDB Adaptor\" by William Shallum",
"created": "20140927155929149",
"modified": "20140927155929149",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "https://github.com/wshallum/couchadaptor",
"text": "An adaptor to enable TiddlyWiki to sync changes with a [[CouchDB|http://couchdb.apache.org]] database.\n\n{{!!url}}\n\n<<<\nCouchDB sync adaptor for TiddlyWiki 5. Requires TiddlyWiki >= 5.1.2.\n\nWorks in limited testing. Not sure how well it handles conflicts.\n<<<\n"
},
"Disqus comments plugin by bimlas": {
"title": "Disqus comments plugin by bimlas",
"created": "20190219201946994",
"modified": "20190219202305854",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "https://bimlas.gitlab.io/tw5-disqus/",
"text": "Use this plugin to give your visitors the opportunity to comment on your tiddlers without changing the wiki itself.\n\n[[Disqus|https://disqus.com/]] is a networked community platform used by hundreds of thousands of sites all over the web. With Disqus, your website gains a feature-rich comment system complete with social network integration, advanced administration and moderation options, and other extensive community functions.\n\n{{!!url}}\n"
},
"\"Encrypt single tiddler plugin\" by Danielo Rodriguez": {
"title": "\"Encrypt single tiddler plugin\" by Danielo Rodriguez",
"created": "20150602084548184",
"modified": "20150602084548184",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "http://danielorodriguez.com/TW5-EncryptTiddlerPlugin/",
"text": "A plugin that allows to encrypt your tiddlers individually Danielo Rodriguez.\n\n{{!!url}}\n\n<<<\nAdvantages:\n\n* You can specify a different password for each tiddler if you want.\n* You don't have to encrypt your whole wiky.\n* If you forget your password, you only lose a tiddler.\n* It's possible to edit the tiddler content , tags and fields except the encrypt field after encryption.\n* [...]\n<<<\n"
},
"Eucaly's Tiddly World": {
"title": "Eucaly's Tiddly World",
"tags": "Resources",
"created": "201409081039",
"modified": "201409131039",
"url": "http://eucaly-tw5.tiddlyspot.com/",
"text": "I collect my tw5 creations on-line as http://eucaly-tw5.tiddlyspot.com/\n\nAvailable Plugins :\n\n*TitleMe - Return in-place tiddler title, to link / show / edit the source tiddler\n*QuickJump - Quick jump to tiddlers in story list\n*FlexWidth - Flexibly tweak sidebar width for TiddlyWiki 5 (Inspired by TW5 tristate Sidebar)\n*MatchFilter - returns matching text instead of a list of the tiddlers from FieldFilter\n*PopupTagger - TagBar / TagTable with popup list of tags (Inspired by MonkeyTaggerMacro for TiddlyWiki classic)\n"
},
"\"Filter Examples\" by Tobias Beer": {
"title": "\"Filter Examples\" by Tobias Beer",
"created": "20141122093837330",
"modified": "20161224181607230",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "http://tobibeer.github.io/tw/filters/#Filter%20Examples",
"text": "This wiki gives examples for various [[filters|Filters]] and their use in the [[list widget|ListWidget]]\n\n{{!!url}}\n\n<<<\nThis wiki gives examples for various [[filters|Filters]] and their use in the [[list widget|ListWidget]]. A good starting point to understand what filters yield which results also is [[test-filters.js|https://github.com/Jermolene/TiddlyWiki5/blob/master/editions/test/tiddlers/tests/test-filters.js]].\n<<<\n"
},
"\"Font Awesome 5 Free SVGs for TiddlyWiki\" by morosanuae": {
"title": "\"Font Awesome 5 Free SVGs for TiddlyWiki\" by morosanuae",
"created": "20190710085450262",
"modified": "20190710090131976",
"tags": "SVG Images [[Font Awesome 5]] Resources",
"type": "text/vnd.tiddlywiki",
"url": "http://fa5-free-svg.tiddlyspot.com",
"text": "The ''Font Awesome 5 Free'' SVG images collection converted to tiddlers that you can easily import (drag'n'drop) in your wiki.\n\n{{!!url}}\n"
},
"Full Text Search Plugin by Rob Hoelz": {
"title": "Full Text Search Plugin by Rob Hoelz",
"created": "20171109171703588",
"modified": "20171109171922913",
"tags": "Resources plugins",
"type": "text/vnd.tiddlywiki",
"url": "https://hoelz.ro/files/fts.html",
"text": "A plugin to integrate the popular [[lunr.js|https://lunrjs.com/]] search engine, giving TiddlyWiki much more sophisticated search capabilities:\n\n{{!!url}}\n\n<<<\nProvides an alternative search result list that orders results by search relevance and ignores differences in word forms (ex. //tag// vs //tags//).\n\nOn my personal wiki, I have the problem that there are terms I use across a lot of tiddlers, and sometimes I'll use different forms (such as the aforementioned //tag// vs //tags//). I wanted a plugin to allow me to find the tiddler I'm looking for quickly and didn't require me to worry about how I declined a noun or inflected a verb - so I wrote this plugin, which provides an alternative search list powered by [[lunr.js|https://lunrjs.com/]].\n<<<"
},
"\"GSD5\" by Roma Hicks": {
"title": "\"GSD5\" by Roma Hicks",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "http://gsd5.tiddlyspot.com/",
"created": "20141230182901899",
"modified": "20141230182901899",
"text": "An adaptation of the [[TiddlyWiki powered GTD® system formerly known as MonkeyGTD|http://mgsd.tiddlyspot.com/]] for TiddlyWiki version 5.\n\n{{!!url}}\n\n<<<\nGSD5 is a Getting-Thing-Done tool for TiddlyWiki5 based off the mGSD classic TiddlyWiki.\n<<<\n"
},
"\"Gospel Bubbles\" by Rev. David Gifford": {
"title": "\"Gospel Bubbles\" by Rev. David Gifford",
"created": "20141122093837330",
"modified": "20161224182127471",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "http://giffmex.org/gospels.bubbles.html#Gospels%20Bubbles",
"text": "Creates bubble maps of Biblical texts.\n\n{{!!url}}\n\n<<<\nThis ~TiddlyWiki, which is still under construction, has several features that together make it lightning fast to find passages, types of passages, themes, people, places and images in the New Testament Gospels. The bubblemaps are color-coded overviews of each Gospel. Each type of passage (miracle story, parable, etc) was assigned a color. Bubblemaps allow you to do three things:\n\n#The ''bubblemaps'' are color-coded overviews of each Gospel. Each type of passage (miracle story, parable, etc) was assigned a color. Bubblemaps allow you to do three things:\n##See how the different types of passages are distributed throughout each Gospel.\n##Hover over passages to see the verses and titles.\n##Click on a passage to open it and see the themes and other data it mentions.\n\n#The ''themes by passage'' indexes are lists of the passages in each Gospel, followed by the themes and other data found in the passage. Clicking on a theme calls up a list of all the passages that mention that theme.\n\n#The ''indexes of themes'' contain lists of links to each theme, person, group, place and image. Clicking on a theme calls up a list of all the passages that mention that theme.\n\n#There is a ''search window'' hidden in the right hand menu. Use the search window to find passages quickly, by typing things like sower or paralytic. Click the arrows in the upper right of the screen to open the menu and search.\n<<<\n"
},
"\"Heeg.ru\" by sini-Kit": {
"title": "\"Heeg.ru\" by sini-Kit",
"created": "20141215174011558",
"modified": "20141215174011558",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "http://heeg.ru/",
"text": "A guide in Russian to creating an online shop with TiddlyWiki. No serverside code is needed, instead orders are handled by Disqus.\n\n{{!!url}}\n"
},
"\"Hosting TiddlyWiki5 on GoogleDrive\" by Tony Ching": {
"title": "\"Hosting TiddlyWiki5 on GoogleDrive\" by Tony Ching",
"created": "20140315085406905",
"modified": "20140321084548184",
"tags": "Resources",
"url": "https://googledrive.com/host/0B51gSXixfJ2Qb0I4R2M4MWJVMlU",
"text": "Tony Ching's quick guide for sharing TiddlyWiki with Google Drive.\n\n{{!!url}}\n\n<<<\nAnyway your self-contained a non-linear personal web notebook can be hosted on Google Drive, a free cloud service from Google.com. Because TiddlyWiki5 now supports the Stanford Javascript Crypto Library (SJCL), you can encrypt your content from prying eyes (excluding the NSA of course)\n<<<\n"
},
"\"How Does Twederation Work\" by Jed Carty": {
"title": "\"How Does Twederation Work\" by Jed Carty",
"created": "20141122093837330",
"modified": "20161224220352820",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "http://twederation.tiddlyspot.com/#How%20does%20the%20TWederation%20work%20anyway%3F%20-%20The%20TWederation%20(2016122014h0034)",
"text": "An explainer about Twederation, a system of sharing information between TiddlyWiki instances.\n\n{{!!url}}\n\n<<<\nTWederation is a system for sharing information between participating ~TiddlyWikis without using a client-server model. The link here points to a tiddler that gives more details. This particular implementation works something like an online forum. On the rest of the site, you can follow discussions by the developers and collaborators occurring within the Twederation \"network\" itself.\n<<<\n"
},
"IndexedDB Plugin by Andreas Abeck": {
"title": "IndexedDB Plugin by Andreas Abeck",
"created": "20150403110356105",
"modified": "20150403110758877",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "http://tw5-dev.cibm.de",
"text": "A plugin that allows changes to be synchronised with the IndexedDB database that is built-in to most browsers.\n\n{{!!url}}\n\n<<<\nBeing quite new to TW5 development I tried my best to draft a SyncAdaptor to store tiddlers in IndexedDb. This is quite useful if an application / plugin installation is not possible (we have quite some restrictions at work...).\n<<<\n"
},
"Json Mangler plugin by Joshua Fontany": {
"title": "Json Mangler plugin by Joshua Fontany",
"created": "20190308041321498",
"modified": "20190308042014046",
"tags": "Resources",
"text": "Extend tiddlywiki to parse complex (\"nested\") json data tiddlers.\n\nJson Mangler introduces a new path syntax for indexes of json data tiddlers , and includes many supporting tools, filters, widgets, etc.\n\nExample Wiki: https://joshuafontany.github.io/TW5-JsonManglerPlugin/\n\nSource: https://github.com/joshuafontany/TW5-JsonManglerPlugin"
},
"Kin filter operator by bimlas": {
"title": "Kin filter operator by bimlas",
"created": "20190219094230499",
"modified": "20190219095858434",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "https://bimlas.gitlab.io/tw5-kin-filter/",
"text": "The purpose of the kin operator with examples:\n\n* Finds related tags, related tiddlers in any depth\n* Finds out where base tiddler originates and what other elements originate from it\n* Finds the ancestors and successors of a family member\n* Finds the \"leaves\" of the branch of the base tiddler in a tree-like structure (where the base tiddler is a leaf)\n* Finds the super- and subsets / groups of a mathematical set (where the base tiddler is a set)\n\n{{!!url}}\n"
},
"Leaflet maps plugin by Sylvain Comte": {
"title": "Leaflet maps plugin by Sylvain Comte",
"created": "20151110060519720",
"modified": "20170115170220030",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "http://sycom.github.io/TiddlyWiki-Plugins/#Leaflet%20plugin",
"text": "A mapping plugin based on [[Leaflet|http://leafletjs.com/]] library. Allows you to create maps based upon geographical data contained in tiddlers.\n\n{{!!url}}\n\n<<<\nThe [[leaflet plugin|http://sycom.github.io/TiddlyWiki-Plugins/#Leaflet%20plugin]] is a (working) attempt to integrate the [[leaflet|http://leafletjs.com/]] library in TiddlyWiki in order to display geographical purpose tiddlers.\n\nFor now `<$leafmap>` widget displays an interactive map. Select size, location and zoom, clustering distance, and background. You can display data : geojson, point(s), polygon(s) and/or polyline(s) directly or calling //GeoTiddler//(s). Tiddler can be called individually, by list or with a [[filter|Filters]].\n\nHave a look at [[demo page on the web|http://sycom.github.io/TiddlyWiki-Plugins/#A%20plugin%20collection:%5B%5BA%20plugin%20collection%5D%5D%20%5B%5BLeaflet%20plugin%5D%5D]].\n<<<\n"
},
"Locator plugin by bimlas": {
"title": "Locator plugin by bimlas",
"created": "20190219191946994",
"modified": "20190219192305854",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "https://bimlas.gitlab.io/tw5-locator/",
"text": "For those who use many tags or store many different topics in a common wiki the Locator plugin is a table of contents widget and an enhanced search engine that gives you the opportunity to filter results by related tags. Unlike table of contents, standard search and list of tags, this plugin offers these features in an organic, collaborative way.\n\n{{!!url}}\n"
},
"MathJax Plugin by Martin Kantor": {
"title": "MathJax Plugin by Martin Kantor",
"created": "20140403191946994",
"modified": "20140403192305854",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "http://mathjax-tw5.kantorsite.net",
"text": "An experimental MathJax plugin for TiddlyWiki version 5. As Martin says, the implementation is a bit of a hack but may be useful until we have a better alternative.\n\n{{!!url}}\n\n<<<\nWelcome. I have created plugin for TiddlyWiki 5 which allows you to use MathJax (math in TeX and MathML) inside TiddlyWiki 5. It's unofficial plugin and it doesn't follow general policy of TiddlyWiki as stand-alone solution but it works. So you can use it if you want.\n<<<"
},
"Plugins by TheDiveO": {
"title": "Plugins by TheDiveO",
"created": "20140910102845245",
"modified": "20140910102845245",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "http://thediveo.github.io",
"text": "A collection of plugins from TheDiveO.\n\n{{!!url}}\n\n[[TheDiveO's Third Flow|http://thediveo.github.io/ThirdFlow/]] plugin construction system:\n\n<<<\nThe ~ThirdFlow plugin brings to you another way to develop customization plugins for TiddlyWiki 5. It is not enforcing a specific development flow, it simply tries to help you. Otherwise, it tries to stay out of your way.\n<<<\n\n[[TheDiveO's FontAwesome|http://thediveo.github.io/TW5FontAwesome/]] plugin:\n\n<<<\nThe FontAwesome plugin supports embedding Font Awesome in TiddlyWiki 5. There is no need to install this font into your operating system in order to use it with TiddlyWiki 5. The font is already embedded in this TiddlyWiki 5 customization plugin instead, so nothing else to install.\n<<<\n"
},
"Plugins by Uwe Stuehler": {
"title": "Plugins by Uwe Stuehler",
"created": "20171212104509964",
"modified": "20171212104733995",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "https://ustuehler.github.io",
"text": "A collection of plugins from Uwe Stuehler, including:\n\n* Material Edition, a theme based on Google's \"material\" design language\n* A wrapper for the [[MUURI plugin|https://github.com/haltu/muuri]], bringing complex \"masonry\"-style layouts to TiddlyWiki\n\n{{!!url}}\n"
},
"SeeAlso by Matias Goldman": {
"title": "SeeAlso by Matias Goldman",
"created": "20150430154234863",
"modified": "20150430154355656",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "http://seealso.tiddlyspot.com",
"text": "A simple technique for adding tag-based cross references to the default view template.\n\n{{!!url}}\n\n<<<\nSee also: - is a feature to generate a \"See also:\" section after the tiddler text, somewhat like in Wikipedia articles.\n<<<\n"
},
"\"TB5 - a pocket full of tips\" by Tobias Beer": {
"title": "\"TB5 - a pocket full of tips\" by Tobias Beer",
"created": "20140315085406905",
"modified": "20161230173004886",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "http://tobibeer.github.io/tb5/",
"text": "An enormous collection of tips beautifully curated by Tobias Beer. It is actually a collection of sites, with sub-sites dedicated to topics such as filtering (http://tobibeer.github.io/tw/filters/).\n\n{{!!url}}\n\n<<<\nA collection of references and sandbox for testing concepts around TiddlyWiki 5...\n<<<\n"
},
"\"TW5 Magick\" by Stephan Hradek": {
"title": "\"TW5 Magick\" by Stephan Hradek",
"created": "20140315085406905",
"modified": "20140321084548184",
"tags": "Resources Tutorials",
"type": "text/vnd.tiddlywiki",
"url": "http://tw5magick.tiddlyspot.com/",
"text": "Stephan Hradek's growing catalogue of tips, tutorials, and other resources. Stephan has also developed several plugins and macros that you can find at http://tiddlystuff.tiddlyspot.com/.\n\n{{!!url}}\n\n<<<\nSome things in TiddlyWiki seem like Magic. As my preferred nick is Skeeve, I felt that TW5 Magick is a proper name for this collection of some of the \"magic\" tricks one can do with TiddlyWiki.\n<<<\n"
},
"TW5-SingleExecutable by Jed Carty": {
"title": "TW5-SingleExecutable by Jed Carty",
"created": "20180320020552940",
"modified": "20180320020554172",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "https://github.com/OokTech/TW5-SingleExecutable",
"text": "TiddlyWiki5 Packaged with the multi-user plugin in a single executable file. \n\n{{!!url}}\n\n<<<\nTiddlywiki, node js, multiuser plugin - all packaged into a single file so user can just download the file and run it and not have to install anything else. Versions available for windows, osx, and linux. \n<<<\n"
},
"TWCommunitySearch": {
"title": "TWCommunitySearch",
"created": "20150913184230499",
"modified": "20150913184230499",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "http://erwanm.github.io/tw-community-search",
"text": "The [[CommunitySearch wiki|http://erwanm.github.io/tw-community-search]] aggregates many public wikis from the community. It is updated automatically every day. At the time of writing, more than 5000 tiddlers are indexed, thus giving access to the largest known collection of TW content.\n\nIt lets you search for some specific content among a preselected list of wikis. The indexed content is mostly focused on TW usage, so you would typically use this search system to find information about a particular aspect of TiddlyWiki. Say for example that you want to learn how to make a table of content, type \"table of content\" in the [[CommunitySearch box|http://erwanm.github.io/tw-community-search/#CommunitySearch]] (also accessible in the default tiddler [[GettingStarted|http://erwanm.github.io/tw-community-search/#GettingStarted]]). The search results are links to various wikis, and point directly to the specific tiddlers containing your request.\n\n\nThe ~CommunitySearch wiki also lets you:\n\n* Browse the [[list of wikis|http://erwanm.github.io/tw-community-search/#CommunityWikis]]\n* Browse the [[list of author|http://erwanm.github.io/tw-community-search/#CommunityAuthors]]\n* Browse the [[list of plugins|http://erwanm.github.io/tw-community-search/#CommunityPlugins]]\n* Access content by [[tag|http://erwanm.github.io/tw-community-search/#CommunityTags]] (see also [[BookmarkingTags|http://erwanm.github.io/tw-community-search/#BookmarkingTags]])\n* Follow the [[latest news|http://erwanm.github.io/tw-community-search/#CommunityNews]] from the community (and [[publish your own news|http://erwanm.github.io/tw-community-search/#PublishingInCommunityNews]] if you are a wiki author)\n\n\n\n"
},
"TWaddle by Matias Goldman": {
"title": "TWaddle by Matias Goldman",
"created": "20150529084054330",
"modified": "20150529084329815",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "http://twaddle.tiddlyspot.com/",
"text": "A collection of hints and tips, musings and proposals from long-time TiddlyWiki contributor Mat Goldman.\n\n{{!!url}}\n\n<<<\nThis is Mat's, a.k.a <:-) little man-cave in the ~TiddlyVerse.\n\nMost TW development is, understandably, based on the premise that //\"Improve code ➔ Better TW\"//. ''TWaddle'' is also about developing TW but from the perspective that [[Bigger community ⇄ Better TW]]. Thus, TWaddle looks more to people issues - how to attract them, how to make them stick with TW etc.\n\nI'm not a programmer but I //am// a TW enthusiast so I tiddlefiddle enough to make the occasional discovery of something cool. Given the amount of words I utter, it is also a mere numbers game before I say something that makes sense. TWaddle is intended to capture these eventualities. \n<<<\n"
},
"TiddlyChrome by Arlen Beiler": {
"title": "TiddlyChrome by Arlen Beiler",
"created": "20160422143238688",
"modified": "20160422143637775",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "https://github.com/Arlen22/tiddly-chrome-app/",
"text": "An extension application for Google Chrome that enables TiddlyWiki to save changes directly to the file system.\n\n{{!!url}}\n"
},
"TiddlyClip by buggyjay": {
"title": "TiddlyClip by buggyjay",
"created": "20140910102845245",
"modified": "20140910102845245",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "http://tiddlyclip.tiddlyspot.com",
"text": "BuggyJay's TiddlyClip browser extension for [[Firefox]] permits clipping of text and graphics from web pages:\n\n{{!!url}}\n\n<<<\nTiddlyClip allows parts of webpages to be clipped into a TiddlyWiki, and consists of two parts, the browser addon and the TiddlyWiki plugin. The addon is completely memoryless, any configuration is determined by the current TiddlyWiki that the user has select to work with (we say that the addon is docked to the TiddlyWiki). TiddlyClip is designed to work (in a basic mode) without configuration. Once the addon and plugin are installed, all the user has to do is select which TW to dock to.\n<<<\n"
},
"TiddlyDrive Add-on for Google Drive by Joshua Stubbs": {
"title": "TiddlyDrive Add-on for Google Drive by Joshua Stubbs",
"caption": "~TiddlyDrive",
"created": "20171109172705241",
"delivery": "Google Drive Add-on",
"description": "Google Drive add-on to save TiddlyWiki files",
"method": "save",
"modified": "20190531161707260",
"tags": "Saving plugins Resources Android Chrome Firefox InternetExplorer iOS Linux Mac Opera PHP Safari Windows",
"type": "text/vnd.tiddlywiki",
"url": "https://lordratte.gitlab.io/tiddlydrive/#installation-guide",
"text": "An add-on for Google Drive that allows TiddlyWiki files stored there to be opened and saved directly\n\nTo find out how to add it to your account, go to the project's info page: \n{{!!url}}\n\n<<<\nI made an app that lets one edit TiddlyWiki files saved in your Google drive and then saving them back automagically. The page is here https://chrome.google.com/webstore/detail/tiddly-drive/oaphhjhbbabdjnpjpiliepphpmnioolo but I think you need to add it from the Google Drive web interface.\n\nI even added an optional ability to save with ctrl + s hotkeys.\n<<< [[Joshua's launch post|https://groups.google.com/d/topic/tiddlywiki/7pNJizR57e8/discussion]]\n"
},
"TiddlyMap Plugin by Felix Küppers": {
"title": "TiddlyMap Plugin by Felix Küppers",
"created": "20141122093837330",
"modified": "20141122093837330",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "http://tiddlymap.org",
"text": "An interactive network visualisation plugin based on [[Vis.js|http://visjs.org]]. A demo that also contains installation instructions can be found here: {{!!url}}. The plugin's GitHub repository can be found [[here|https://github.com/felixhayashi/TW5-TiddlyMap]].\n\n<<<\n~TiddlyMap is a TiddlyWiki plugin that allows you to link your wiki-topics (tiddlers) in order to create clickable graphs. By creating relations between your topics you can easily do the following:\n\n* Create concept maps and quickly manifest your ideas in tiddlers.\n* Create task-dependency graphs to organize and describe your tasks.\n* Visualize your topic structures to get an immediate grasp of topics and relations.\n\nIn general you may create, visualize and describe any network-structure you have in mind.\n<<<\n"
},
"TiddlyServer by Arlen Beiler": {
"title": "TiddlyServer by Arlen Beiler",
"caption": "~TiddlyServer",
"created": "20171109171415540",
"delivery": "App",
"description": "An extension to TiddlyWiki's Node.js server",
"method": "sync",
"modified": "20171113134624304",
"tags": "Linux Mac Windows Saving Resources",
"type": "text/vnd.tiddlywiki",
"url": "https://github.com/Arlen22/TiddlyServer",
"text": "An extension to the Node.js configuration of TiddlyWiki that adds support for static attachments and for working with multiple wikis at the same time.\n\n{{!!url}}\n\n<<<\nTiddlyServer 2.0 takes the server command of TiddlyWiki on NodeJS and adds it to a static file server. This means you can load and serve any TiddlyWiki data folder in the same way you can serve a single file TiddlyWiki.\n\nBut you don't need to serve files and folders from just one place, you can serve them from multiple places anywhere on your harddrive (literally anywhere NodeJS can stat, readdir, and readFile). You can even organize them into virtual folders (aka aliases in Apache and mounts in Express).\n\nThe main point, of course, is that you can actually edit your files, not just look at them. Single file TiddlyWikis use the put saver, which needs to be patched using a bookmarklet included on the index page. The instructions for this are below under the heading \"One thing that needs to be noted\".\n\nAnd, of course, you can edit data folder tiddlywikis just like you were running node tiddlywiki.js data --server, except that you run it on the path that you found it at (e.g. http://localhost/personal/notes/). You can have as many data folders open as you want, they don't conflict (though they will each take memory).\n\nData folders store individual tiddlers instead of entire wikis. They take less disk space as they also do not store the core and plugins. This means they also save much quicker, especially over the internet. They also save immediately (within 10 seconds or so) and they save drafts.\n<<<"
},
"TiddlyWiki Jingle by Måns Mårtensson": {
"title": "TiddlyWiki Jingle by Måns Mårtensson",
"created": "20150630204917564",
"modified": "20150630205144064",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "https://musescore.com/node/796056",
"text": "A catchy jingle for TiddlyWiki.\n\n{{!!url}}\n\n<<<\nEven if it sounds like some ol' jazz tune it ''IS'' an original composition and it should be quite obvious that the \"hook of the melody\" is a trill made by singing Tidd-ly Wiki :-).\n\nMy lacking skills for writing text/lyrics should be apparent in the fact that the text consists of 12 Tidd-ly Wikis and some extra \"tiddly's\" - just for the sake of getting the message delivered ;-)...\n\nI've recorded every instrument on my guitar via a guitar synth on a loop machine (except for the drums - they were played live/in sync with the loop station on a \"~BeatBuddy\" drum pedal..) - no pc was involved..\n<<<\n"
},
"\"TiddlyWiki Notes\" by James Anderson": {
"title": "\"TiddlyWiki Notes\" by James Anderson",
"created": "20140327085406905",
"modified": "20140327084548184",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "http://welford.github.io",
"text": "Notes and tips by a developer working on writing TiddlyWiki plugins -- including [[TWExe|https://github.com/welford/twexe]], a widget for running Windows scripts and executables. \n\n{{!!url}}\n"
},
"\"TiddlyWiki Posts\" by Jeffrey Kishner": {
"title": "\"TiddlyWiki Posts\" by Jeffrey Kishner",
"created": "20140129085406905",
"modified": "20140129084548184",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "http://blog.jeffreykishner.com/tiddlywiki/",
"text": "A collection of articles covering integration with Fargo, Font Awesome and Google Calendar, and tips for managing task lists.\n\n{{!!url}}\n\n<<<\nI have become a regular user of TiddlyWiki and have become so accustomed to using Font Awesome icons in Fargo that I wanted to incorporate the icons into my wikis as well.\n<<<\n"
},
"TiddlyWiki Video Tutorials by Francis Meetze": {
"title": "TiddlyWiki Video Tutorials by Francis Meetze",
"created": "20150926170842677",
"modified": "20150926171056402",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "https://www.youtube.com/playlist?list=PLzZCajspPU_UjFn0uy-J9URz0LP4zhxRK",
"text": "An extensive tutorial for getting started with TiddlyWiki. Recommended \n\n{{!!url}}\n\n<<<\nThis tutorial is aimed at giving you a basic foundation so that you can start using TiddlyWiki right away. Here we take a look at the technology behind Tiddlywiki, how to install it and create your first Tiddler.\n<<<\n"
},
"TiddlyWiki extensions for Sublime Text 3 by roma0104": {
"title": "TiddlyWiki extensions for Sublime Text 3 by roma0104",
"created": "20160424121451825",
"modified": "20160424121733860",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "https://github.com/roma0104/sublime-tid",
"text": "[[Sublime Text 3|https://www.sublimetext.com/3]] syntax file for TiddlyWiki5 `*.tid` files.\n\n{{!!url}}\n"
},
"TiddlyWiki extensions for ViM": {
"title": "TiddlyWiki extensions for ViM",
"created": "20160820000000000",
"modified": "20160820000000000",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "https://github.com/roma0104/vim-tid",
"text": "[[Vi iMproved|http://www.vim.org/]] syntax file for TiddlyWiki5 `*.tid` files.\n\n{{!!url}}\n"
},
"\"TiddlyWiki for Scholars\" by Alberto Molina": {
"title": "\"TiddlyWiki for Scholars\" by Alberto Molina",
"created": "20140720085406905",
"modified": "20140720084548184",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "http://tw5.scholars.tiddlyspot.com/",
"text": "An early release of an edition of TiddlyWiki customised for rigorous, academic notetaking.\n\n{{!!url}}\n\n<<<\nTiddlyWiki for Scholars is a personal customization of TiddlyWiki 5.0.13-beta I made for note-taking from readings, but it can be useful for other purposes. The idea behind this adaptation is to show and to allow creating relevant data related to the current tiddler without leaving the tiddler.\n<<<\n"
},
"\"TiddlyWiki guide FR\" by Sylvain Naudin": {
"title": "\"TiddlyWiki guide FR\" by Sylvain Naudin",
"created": "20141031210213087",
"modified": "20141031210213087",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "http://sylvain.naud.in/public/TiddlyWiki/tiddlywiki-guide-fr-CCbysa.html",
"text": "A collection of tips and guides in French, introduced by this blog post:\n\nhttp://sylvain.naud.in/post/2014/10/29/Ressources-pour-TiddlyWiki-5-%28FR%29\n\n<<<\nCe guide de prise en main de TiddlyWiki vous permettra de débuter sur ce logiciel : rédiger du texte avec la syntaxe wiki, insérer des images, créer des Tiddler, faire une recherche, ajouter des fonctionnalités, et bien d'autres choses.. Bonne lecture ! Sylvain\n<<<\n"
},
"\"TiddlyWiki 舞\" by Bram Chen": {
"title": "\"TiddlyWiki 舞\" by Bram Chen",
"created": "20140322085406905",
"modified": "20140322084539183",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "http://tw5-zh.tiddlyspot.com",
"text": "A translation of the tiddlywiki.com documentation from Bram Chen, TiddlyWiki's Chinese translator.\n\n{{!!url}}\n"
},
"\"TiddlyWiki5 Coding\" by Chris Hunt": {
"title": "\"TiddlyWiki5 Coding\" by Chris Hunt",
"created": "20140315085406905",
"modified": "20140321084548184",
"tags": "Resources",
"url": "http://cjhunt.github.io/",
"text": "Chris Hunt's detailed developer tutorials for getting started with writing widgets for TiddlyWiki.\n\n{{!!url}}\n\n<<<\nThese pages document aspects TiddlyWiki5 programming, sharing \"lessons learned\" to help developers to get started with TiddlyWiki5 customization and extension.\n\nThere are currently two articles in this wiki:\n\n* A Simple Widget\n* A More Complex Widget\n<<<\n"
},
"\"TiddlyWiki5 Playground\" by Ton Gerner": {
"title": "\"TiddlyWiki5 Playground\" by Ton Gerner",
"created": "20140315085406905",
"modified": "20140321084548184",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "http://tongerner.tiddlyspot.com/",
"text": "Huge collection of customisations and tweaks from Ton Gerner.\n\n{{!!url}}\n\n<<<\nI am a longtime user of TiddlyWiki Classic and still use it daily since you can't do everything in TiddlyWiki 5 (yet) ;)\n\nI started experimenting with TW5 at the end of September 2013 (alpha10).\nSince I missed a few things in the layout I got used to in TiddlyWiki Classic 1, I started with modifying the layout of TW5.\nTo share my knowledge, I made a few guides about these 'modifications'.\nThe guides started as a non-linear personal web notebook (yeah, the subtitle of TiddlyWiki!). I started experimenting with layout things and used TW5 to document my experiments.\n<<<\n"
},
"\"TiddlyWiki5^2 documenting while learning TiddlyWiki5\" by Iannis Zannos": {
"title": "\"TiddlyWiki5^2 documenting while learning TiddlyWiki5\" by Iannis Zannos",
"created": "20141009170239174",
"modified": "20190217000000000",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "https://web.archive.org/web/20170728212414/http://larigot.avarts.ionio.gr/users/iani/wikis/tw5square.html",
"text": "A wealth of hints, tips and notes about using [[TiddlyWiki on Node.js]]:\n\n<<<\nTiddlyWiki is different from other wikis because of its principle of dynamically customizeable \"storyline\" based on tiddlers as basic units of information. That is, the user \"composes\" their own version of the webpage by clicking on tiddler links, which add tiddlers to the page in order to compose a storyline.\n\nThe Node.js implementation in TiddlyWiki5 adds all the advantages of flat-file markup language based type of site. This makes TiddlyWiki an excellent alternative to flat-file based CMS/webpage/blog authoring systems for the web.\n\nAlso very cool is the treatment of tags as menus everywhere.\n<<<\n\n<a href={{!!url}}><$text text=\"http://larigot.avarts.ionio.gr/users/iani/wikis/tw5square.html\"/></a>\n\nAlso available on [[GitHub|https://github.com/iani/tw5square]] (download and save index.html and open it in your browser).\n"
},
"Tinka by Andreas Hahn": {
"title": "Tinka by Andreas Hahn",
"created": "20140920124011558",
"modified": "20170305081535978",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "https://tinkaplugin.github.io/",
"text": "The Tinka plugin provides the ability to create and modify plugins in the browser, without requiring the use of Node.js.\n\nSee https://github.com/TinkaPlugin/Tinka for the GitHub repo.\n\n{{!!url}}\n\n<<<\nThis is a Control Panel extension that aims to simplify the plugin creation and editing process. After installing, you will find a new tab in your control panel that makes creating and modifying plugins a little bit easier.\n<<<\n"
},
"Widdly by Opennota": {
"title": "Widdly by Opennota",
"created": "20180309162923236",
"modified": "20180309164105386",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "https://github.com/opennota/widdly",
"text": "A cross platform server application that can save tiddlers to a local database\n\n{{!!url}}\n\n<<<\n a minimal self-hosted app, written in Go, that can serve as a backend for a personal TiddlyWiki.\n<<<\n"
},
"\"Wikilabs\" by PMario": {
"title": "\"Wikilabs\" by PMario",
"created": "201704191641",
"modified": "201704191641",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "https://wikilabs.github.io",
"text": "A collection of references for testing concepts around ~TiddlyWiki 5...\n\n{{!!url}}\n\n<<<\nThis is PMario's playground with ramblings about ~TiddlyWiki and related stuff.\n\nIt basically is a \"jump off\" page to various ~TiddlyWiki sites, that show editions, themes and plugins.\n<<<\n"
},
"\"Wills Q&D gTD\" by Matabele": {
"title": "\"Wills Q&D gTD\" by Matabele",
"created": "20140505085406905",
"modified": "20140505085406905",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "http://wills.tiddlyspot.com",
"text": "Matabele's stylish and clean system for personal task management.\n\n{{!!url}}\n\n<<<\nThis is my work in progress version of TW5, incorporating various features and ideas as and when they intrigue me. To grab any feature you may wish to try, drag the listed tiddlers across to the dropzone of an empty TiddlyWiki 5.0.10-beta\n<<<\n"
},
"\"ATWiki\" by Lamusia Project": {
"title": "\"ATWiki\" by Lamusia Project",
"created": "20171219171531482",
"modified": "20171219171730344",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "https://lamusia.github.io/#ATWiki",
"text": "A desktop application for TiddlyWiki, running on Windows.\n\n{{!!url}}\n\n<<<\nTiddlyWiki for Windows. A unique non-linear notebook for capturing, organising and sharing complex information.\n<<<"
},
"\"Cardo - Task and Project Management Wiki\" by David Szego": {
"title": "\"Cardo - Task and Project Management Wiki\" by David Szego",
"created": "20141122093837330",
"modified": "20170101184753993",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "http://cardo.wiki",
"text": "Task & Delegation Tracking, Meetings & Agenda Items, Project Roles, Progress & Status Updates, Reference Items, Tickler Calendar, Conversation Logging, Book Notes & Library, and More!\n\n{{!!url}}\n\n<<<\nCardo is a standalone, browser-based tool that can be used as a simple task manager, or as a complex Project Management system (and indeed, I do use it this way in my daily work) as well as a fully Wiki-ized personal knowledge store. It runs completely independently in the browser, even without an Internet connection, making it possible to carry around on a USB stick, or to use on the morning commute.\n<<<"
},
"\"Dropboard\" by Reid Gould": {
"title": "\"Dropboard\" by Reid Gould",
"created": "20171111192738730",
"creator": "MAS",
"modified": "20171111192738730",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "https://github.com/reidgould/tiddlywiki-dropboard",
"text": "A TiddlyWiki plugin for kanban-like organization in the style of Trello™ using boards, lists, and cards.\n\n{{!!url}}\n\n\n"
},
"\"Dynamic Tables\" by Jed Carty": {
"title": "\"Dynamic Tables\" by Jed Carty",
"created": "20180309160958926",
"modified": "20180309160118848",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "http://ooktech.com/jed/ExampleWikis/DynamicTables/",
"text": "//''Dynamic Tables''// is a set of macros that allow you to create tables where the rows are created from tiddlers and the columns from the tiddler fields, or where the columns are created from tiddlers and the rows from their fields. Individual cells can be edited on the fly. Row tables can be sorted by columns and column tables can be sorted by rows.\n\n{{!!url}}"
},
"\"Ghostwriter theme by Rory Gibson\" adapted for TW5 by Riz": {
"title": "\"Ghostwriter theme by Rory Gibson\" adapted for TW5 by Riz",
"created": "20141122093837330",
"modified": "20161224230649593",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "https://ibnishak.github.io/ghostwriter/",
"text": "An adaption of the \"Ghostwriter\" theme for ~TiddlyWiki.\n\n{{!!url}}\n\n<<<\nGhostwriter is a popular, minimalist and mobile responsive theme for the blogging platform ghost. This is an adaptation for ~TiddlyWiki.\n<<<\n"
},
"\"Hacks\" by Thomas Elmiger": {
"title": "\"Hacks\" by Thomas Elmiger",
"created": "20161226165024380",
"creator": "Thomas Elmiger",
"modified": "20161226193911129",
"modifier": "Thomas Elmiger",
"tags": "Resources",
"url": "http://tid.li/tw5/hacks.html",
"text": "A collection of helpers by Thomas Elmiger, among them a ''tweet button'' macro, a ''text-stretch'' solution, a ''snippet extraction'' macro and a tiddler that installs a ''scroll-to-top button'' via drag-and-drop.\n\n{{!!url}}\n\n<<<\nQuick Extensions for ~TiddlyWiki 5 – […] As I take from the community, I am happy if I can give back. You can use my stuff to do whatever you like, but remember to save a back-up first. \n<<< Thomas\n\n"
},
"\"In My Socks\" by Jed Carty": {
"title": "\"In My Socks\" by Jed Carty",
"created": "20141122093837330",
"modified": "20141122093837330",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "http://inmysocks.tiddlyspot.com",
"text": "An extensive collection of hints and tips from Jed Carty.\n\n{{!!url}}\n\n<<<\nI made this so that some of my friends with absolutely no coding experience could use some of the better features of TW5 without having to learn much. I am hopefully going to continue updating it as I learn new things. There isn't really anything here that isn't available in plenty of other places, but I figured that since I spent a while putting it together and people keep saying that TW needs more documentation I would post it here. \n<<<\n"
},
"\"JD Mobile Layout plugin\" by JD": {
"title": "\"JD Mobile Layout plugin\" by JD",
"created": "20171107181449175",
"creator": "Ste Willson",
"modified": "20171107185105718",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "http://j.d.simplemobile.tiddlyspot.com",
"text": "A plugin that improves the usability of TiddlyWiki on smartphones by [[JD|http://j.d.tiddlyspot.com]]:\n\n{{!!url}}\n"
},
"\"Lucky Sushi\" online shop by sini-Kit": {
"title": "\"Lucky Sushi\" online shop by sini-Kit",
"created": "20141122093837330",
"modified": "20161224181607230",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "http://luckysushi.ru/habarovsk/heeg35.html#index",
"text": "A complete online shop made in ~TiddlyWiki!\n\n{{!!url}}\n\n"
},
"\"Mal's Sandbox\" by Mal": {
"title": "\"Mal's Sandbox\" by Mal",
"created": "20160501131111865",
"modified": "20160501131900615",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "http://malsandbox.tiddlyspot.com",
"text": "A collection of extensions by [[@malgam|https://github.com/malgam]]\n\n{{!!url}}\n\n<<<\nThe \"loadnew\" plugin provides the JavaScript module $:/plugins/malgam/loadnew/loadnew.js that implements an incremental load command for Tiddlywiki 5.\n\nThe javascript code is based on the built-in module $:/core/modules/commands/load.js that loads tiddlers from a Tiddlywiki file into a node.js Tiddlywiki instance. This command loads all non-system tiddlers, irrespective of whether they have been modified since last loaded. As a result, all tiddlers in the node.js tiddlers folder will end up with a new modification date.\n\nIn contrast, the loadnew command only loads tiddlers that either don't already exist in the tiddlers folder, or have a newer modified date than the existing tiddler.\n\nWith a backup strategy that uses a file system snapshot process to preserve historical versions of tiddlers, the loadnew command minimises the sizes of the resulting snapshots.\n<<<\n"
},
"\"MathCell\" by Stephen Kimmel": {
"title": "\"MathCell\" by Stephen Kimmel",
"created": "20161226165024380",
"creator": "Ste Willson",
"modified": "20170813162852649",
"tags": "Resources",
"url": "http://mathcell.tiddlyspot.com/",
"text": "Mathcell allows spreadsheet-like abilities in a completely contained TiddlyWiki.\n\n{{!!url}}\n\n<<<\nMathcell allows spreadsheet-like abilities in a completely contained TiddlyWiki. Additional abilities allow it work as a general math engine.\n<<<\n\n"
},
"\"Moments: A little color won't hurt\" by Riz": {
"title": "\"Moments: A little color won't hurt\" by Riz",
"created": "20141122093837330",
"modified": "20161224225452147",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "http://tesseractmoments.surge.sh/",
"text": "An adaption of the \"Moments\" theme for ~TiddlyWiki.\n\n{{!!url}}\n\n<<<\nMoments is a beautiful free and responsive theme available for wordpress from here: http://www.s5themes.com/theme/moments/. This is an adaptation of the same for TW5 platform. All the design credits goes to the site and the original designer. If TW5 is going to be here for 25 years, might as well suit up.\n<<<\n"
},
"\"Noteself\" by Danielo Rodríguez": {
"title": "\"Noteself\" by Danielo Rodríguez",
"caption": "Noteself",
"created": "20141122093837330",
"delivery": "Web Service",
"description": "Free online service that you can also host yourself",
"method": "sync",
"modified": "20171113132811794",
"tags": "Saving Resources Android Chrome Firefox InternetExplorer iOS Linux Mac Opera PHP Safari Windows",
"type": "text/vnd.tiddlywiki",
"url": "https://noteself.github.io/",
"text": "~NoteSelf is your personal, private, customizable, Evernote-like experience.\nYou want cloud? Fine! You don't? Fine too! It's all yours, It's your decision!\nWhy not be a bit selfish?\n\nhttps://noteself.github.io/\n\n<<<\n~NoteSelf is the perfect place to store your ideas, notes, thoughts, tips, tricks, recipes... \nwhatever you want to put into it! ~NoteSelf will store, index, and make it easily \nsearchable, so you will find it instantly whenever you need it! \n\nYou already know and love Evernote, we know it. It is comfortable, it syncs, has search capabilities...\nWow, it's almost perfect, but what about:\n\n* Privacy - Everything is stored on the Evernote's servers!\n* Customization - If you don't like the interface of Evernote, there's nothing you can do\n\n~NoteSelf is built on top of ~TiddlyWiki, a powerful, free, highly customizable and open-source personal wiki.\nWe took the best of it, it's powerful customization system, and mixed it with one of the best\nembedded databases available, [[PouchDb|http://www.pouchdb.com]], for bringing the synchronization capabilities you need.\n<<<\n"
},
"\"SK Plugins\" by Stephen Kimmel": {
"title": "\"SK Plugins\" by Stephen Kimmel",
"created": "20160505180545073",
"modified": "20160505180934836",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "http://skplugins.tiddlyspot.com/",
"text": "A collection of plugins by Stephen Kimmel, including a number of additional editor toolbar buttons.\n\n{{!!url}}\n\n<<<\nIn keeping with the general spirit of the TiddlyWiki community, ie, you develop something useful and/or potentially interesting you share it with others, I'm sharing some of the plugins I've developed to go with the new Editor Toolbar. You'll find them and a more extensive discussion of what each does at http://skplugins.tiddlyspot.com/ \n<<<\n"
},
"\"Slides and Stories\" by Jan": {
"title": "\"Slides and Stories\" by Jan",
"created": "20141122093837330",
"modified": "20170101192254712",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "http://slidesnstories.tiddlyspot.com",
"text": "Slides and Stories is a repository of the tools to optimize TW for scientific research and for presenting and publishing results.\n\n{{!!url}}\n\n<<<\n!~SlidesnStories \n...is a tool to save and reload sets of Tiddlers. This is already working, The aim is to develop a mechanism to transform these into instant slideshows.\n\n!~MetaTabs \nis a tool which gives you the possibility to attach and show specific information in tabs at the bottom of each Tiddler: ideas, notes, tasks, stories and presentations, comments, annotations and footnotes. <br>\nIt is inspired by ~MagicTabs and Tiddlyscholar by Alberto Molina Pérez, which are very elaborated tools that alas do not seem to be in active development any more.\nI wanted to change the behaviour in some ways. For example I wanted show tabs only if they have content. \n\n!...furthermore there is \n* an export-plugin,\n* a footnote-plugin,\n* and a plugin to rearrange Tiddlers in the ~StoryRiver\n<<<"
},
"\"TW5-TeXZilla\" plugin by Joe Renes": {
"title": "\"TW5-TeXZilla\" plugin by Joe Renes",
"created": "20150206170114934",
"modified": "20150206170327332",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "http://tw5-texzilla.tiddlyspot.com",
"text": "An alternative LaTeX plugin for TiddlyWiki5. It supports a wider set of LaTeX commands than [[KaTeX|KaTeX Plugin]], though not as extensive as MathJax\n\n{{!!url}}\n\n<<<\nThis plugin provides LaTeX support in TiddlyWiki5, using the [[TeXZilla|https://github.com/fred-wang/TeXZilla]] latex parser to generate MathML.\n\nOnly Firefox and Safari support MathML at the moment, so the plugin is only useful if you're using one of these browsers. It might be possible to combine this plugin with MathJax to convert MathML to something that other browsers can understand, e.g. HTML+CSS, but I haven't tried this.\n<<<\n"
},
"\"TWeb.at\" by Mario Pietsch": {
"title": "\"TWeb.at\" by Mario Pietsch",
"created": "20140410103123179",
"modified": "20140410103123179",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "https://tweb.at",
"text": "A collection of TiddlyWiki resources from Mario Pietsch, with a focus on cloud deployments. Mario also maintains the German translation of TiddlyWiki.\n\n{{!!url}}\n\n<<<\nMy name is Mario Pietsch from Austria. I'm living near Salzburg.\n\nThis page, will be the portal to my TiddlyWiki, TiddlyWeb related content.\n<<<\n"
},
"\"Tekan: Kanban that stays with you\" by Riz": {
"title": "\"Tekan: Kanban that stays with you\" by Riz",
"created": "20171115160958926",
"modified": "20171115161136049",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "https://ibnishak.github.io/Tesseract/projects/tekan/Tekan.html",
"text": "A Kanban implementation for TiddlyWiki with a familiar look and feel (see the [[demo|https://ibnishak.github.io/Tesseract/projects/tekan/]]).\n\n{{!!url}}\n\n<<<\nThis is Tekan, a TW based kanban. The easiest way to know tekan is to use it. So let us begin, shall we?\n<<<\n\n\n"
},
"\"TiddlyServer\" by Matt Lauber": {
"title": "\"TiddlyServer\" by Matt Lauber",
"created": "20161226165024380",
"creator": "Matt Lauber",
"modified": "20161226193911129",
"tags": "Resources",
"url": "https://github.com/mklauber/TiddlyServer/releases/",
"text": "TiddlyServer is a special purpose Desktop app, designed to facilitate managing multiple instances of TiddlyWiki running as a server. It does not require internet acess to access the wikis.\n\n{{!!url}}\n\n<<<\nTiddlyServer can import both TiddlyWiki files and TiddlyFolder wikis. For each wiki, you specify a prefix to serve it with and the source to import from. It will copy the wikis to its own internal store and begin serving them up at http://localhost:8080/{prefix}/. The export button for each wiki will convert it to a single file wiki. \n\n<<<\n\n"
},
"\"TiddlyWiki Knowledge Network\" by Dmitry Sokolov": {
"title": "\"TiddlyWiki Knowledge Network\" by Dmitry Sokolov",
"created": "20141122093837330",
"modified": "20170101185203168",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "http://confocal-manawatu.pbworks.com/w/page/113574373/TiddlyWiki",
"text": "A Knowledge Network about ~TiddlyWiki.\n\n{{!!url}}\n\n<<<\nInterconnected with the visual taxonomy at every node:\nhttp://debategraph.org/Stream.aspx?nid=457381&vt=bubble&dc=focus\n\nTWKN will be transferred into TWederation/~TiddlyMap format as soon as I am convinced in reliable and secure versioning and multi-user operation in TW format.\nYour assistance and support would be highly appreciated.\n<<<"
},
"\"TiddlyWiki Toolmap\" by David Gifford": {
"title": "\"TiddlyWiki Toolmap\" by David Gifford",
"created": "20181012161505447",
"modified": "20181012184124165",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "https://dynalist.io/d/zUP-nIWu2FFoXH-oM7L7d9DM",
"text": "A topical index of known plugins, tutorials, themes, and other helpful tools for ~TiddlyWiki.\n\n{{!!url}}\n\nSome of the topics indexed so far include:\n\n* Background images and background colors\n* Breadcrumbs\n* Business - examples\n* CSS / Styles, general\n* Calendars, dates and timelines\n* Checklists\n* Collaboration\n* Color palettes\n* Colors\n* Data visualizations\n* Developer / advanced tools\n* Diplay tiddlers horizontally\n* Dropdowns\n* Educational\n* External files\n* Fields\n* Fonts\n* Fun and games\n* Home and lifestyle\n* IFrames and embedding media\n* Image galleries, modals and lightboxes\n* Images, icons, emojis\n* Importing and exporting between TiddlyWiki files\n* Includes scaffolding within a tiddler, dragging to reorder tiddlers, choosing the number of columns\n* Interfacing with, importing and exporting to and from other formats\n* Knowledge bases, dictionaries and glossaries\n* Layout/UI\n* Lightboxes\n* Links, linking\n* Lists and filters\n* Maps and geography\n* Masonry, scaffolding\n* Math\n* ~MindMapping\n* Mobile tools\n* Music and sound\n* Navigation\n* node.js\n* Note-taking\n* Open the \"filter\" tab\n* Partially hidden tiddlers\n* Personal websites (examples)\n* Presentations and slideshows\n* Printing\n* Project management\n* Publishing and hosting TiddlyWikis on the web\n* Searching tools\n* Security and backup tools\n* Social media, sharing, comments\n* Spreadsheets and math\n* Startup\n* Sticky titles\n* Story and screenplay creation\n* Table of contents\n* Tables, charts and graphs (cf data visualizations)\n* Tabs\n* Tags, tagging\n* Task management and productivity - to do lists\n* Themes\n* Understanding TiddlyWiki\n* Writing and editing\n\n"
},
"\"TiddlyWiki5 Bourbon\" by mkt_memory": {
"title": "\"TiddlyWiki5 Bourbon\" by mkt_memory",
"created": "20141020072708790",
"modified": "20141020072708790",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "http://bacchus.ivory.ne.jp/bourbon/",
"text": "An extensive collection of tips and resources for users of TiddlyWiki in Japanese.\n\n{{!!url}}\n\n<<<\nTiddlyWikiをHTML5にしたTiddlyWiki5が正式にリリースされました。このTiddlyWiki5の使い方について、自分で試した機能を中心に解説します。\n\nTiddlyWiki5は、非常に多機能なローカルWikiです。このブログに書いてあることは、TiddlyWiki5で出来ることのごく一部です。\n<<<\n\n"
},
"\"TiddlyWiki5 Forum on Reddit\" by Riz": {
"title": "\"TiddlyWiki5 Forum on Reddit\" by Riz",
"created": "20141122093837330",
"modified": "20161224230649593",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "https://www.reddit.com/r/TiddlyWiki5/",
"text": "A TiddlyWiki5 forum on Reddit. \n\n{{!!url}}\n\n<<<\nA ~TiddlyWiki5 forum on Reddit. As of 2016, it claims to have the most up-to-date list of plugins available for TW5.\n<<<\n\n\n"
},
"\"Timimi\" Extension and executable by Riz": {
"title": "\"Timimi\" Extension and executable by Riz",
"caption": "Timimi",
"created": "20180830194141190",
"delivery": "Browser Extension & Executable",
"description": "Browser extension & executable for desktops",
"method": "save",
"modified": "20181012165153986",
"tags": "Windows Linux Chrome Firefox Saving Resources plugins",
"type": "text/vnd.tiddlywiki",
"url": "https://github.com/ibnishak/Timimi",
"text": "`Timimi` is a Web Extension and executable for Firefox, Chrome and Chromium that allows it to save standalone ~TiddlyWiki files.\n\n{{!!url}}\n\nThis is an addon using native messaging, essentially handing over the contents to a webextension host (executable) which does the actual saving. Once installed, you can save the standalone TW from anywhere in your hard drive without any more interactions, like the original Tiddlyfox addon.\n"
},
"\"X3DOM for TiddlyWiki 5\" by Jamal Wills": {
"title": "\"X3DOM for TiddlyWiki 5\" by Jamal Wills",
"created": "20171107175718679",
"creator": "Ste Willson",
"modified": "20171113155204443",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "http://x3dom.tiddlyspot.com/",
"text": "An experiment to embed interactive 3D graphics within TiddlyWiki by [[Jamal Wills|http://zemox.tiddlyspot.com]]. It is based [[X3DOM|https://www.x3dom.org]], an open source JavaScript library.\n\n{{!!url}}\n"
},
"\"file-backups\" Extension for Firefox by pmario": {
"title": "\"file-backups\" Extension for Firefox by pmario",
"caption": "file-backups",
"created": "201711161655",
"delivery": "Browser Extension",
"description": "Browser extension for Firefox",
"method": "save",
"modified": "201711161655",
"tags": "Firefox Saving Resources plugins",
"type": "text/vnd.tiddlywiki",
"url": "https://github.com/pmario/file-backups",
"text": "An extension for Mozilla Firefox that smoothes out some of the friction from ~TiddlyWiki's built-in [[HTML5 fallback saver|Saving with the HTML5 fallback saver]], making it almost as easy to use as ~TiddlyFox. The workflow is intended to work out of the box, without configuration.\n\nhttps://github.com/pmario/file-backups which contains links to the documentation and introduction video(s).\n\nA chrome version is planned!"
},
"\"muritest\" by Simon Huber": {
"title": "\"muritest\" by Simon Huber",
"created": "20171219165418434",
"modified": "20171219165845495",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "http://muritest.tiddlyspot.com",
"text": "A terrific demo of drag and drop, pan and zoom, and other sophisticated touch effects. Based on the [[muuri plugin by Uwe Stuehler|Plugins by Uwe Stuehler]].\n\n{{!!url}}\n"
},
"\"savetiddlers\" Extension for Chrome and Firefox by buggyj": {
"title": "\"savetiddlers\" Extension for Chrome and Firefox by buggyj",
"caption": "savetiddlers",
"created": "20171109171935039",
"delivery": "Browser Extension",
"description": "Browser extension for Chrome and Firefox",
"method": "save",
"modified": "20171113132624609",
"tags": "Chrome Firefox Saving Resources plugins",
"type": "text/vnd.tiddlywiki",
"url": "https://github.com/buggyj/savetiddlers",
"text": "An extension for Google Chrome and Mozilla Firefox that smoothes out some of the friction from TiddlyWiki's built-in [[HTML5 fallback saver|Saving with the HTML5 fallback saver]], making it almost as easy to use as TiddlyFox once it is set up correctly.\n\nhttps://github.com/buggyj/savetiddlers\n"
},
"datepicker plugin based on Pikaday, by kixam": {
"title": "datepicker plugin based on Pikaday, by kixam",
"created": "20151015072304780",
"modified": "20151015073121685",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "http://kixam.github.io/TW5-datePicker/",
"text": "An interactive date picker plugin based on [[Pikaday|https://github.com/dbushell/Pikaday]]. A demo can be found here: {{!!url}}.\n\n<<<\ndatepicker is a TiddlyWiki plugin that allows you to use a widget much like EditTextWidget to pick a date, and optionaly a time. It shows a nice interactive mini-calendar when clicked, allows you to set a date format for display, and is compatible with core date fields such as `modified` and `created`.\n<<<\n"
},
"rboue's plugins for TiddlyWiki": {
"title": "rboue's plugins for TiddlyWiki",
"created": "20150403104230499",
"modified": "20150630165603125",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "http://rboue.tiddlyspot.com",
"text": "Featuring plugins that integrate two interesting new capabilities:\n\n* [[SocialCalc|https://www.socialtext.net/open/socialcalc]] providing a powerful spreadsheet\n* [[Three.js|http://threejs.org/]] providing interactive 3D graphics\n\n{{!!url}}\n\n<<<\nI developed some plugins related to engineering tasks.\n\nAfter using them for personal projects I'm glad to share with TiddlyWiki community.\n<<<\n"
},
"twproxy by Steve Gattuso": {
"title": "twproxy by Steve Gattuso",
"created": "20160424150055313",
"modified": "20160424150236151",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "https://github.com/stevenleeg/twproxy",
"text": "An authentication proxy for your TiddlyWiki.\n\n{{!!url}}\n\n<<<\nOne of my favorite aspects of TiddlyWiki has been that it's web-based, making it possible for me to access my wiki from everywhere (especially my phone). That being said, I'm a bit paranoid, so I was left a bit unsatisfied with the tiddlywiki server's HTTP basic auth for protecting my wiki. ~23 commits later, I've created something called twproxy that I'd like to share with you all today, as I'm hoping somebody other than myself will find it useful.\n\nEssentially it is a simple proxy that puts your wiki behind a username, password, and optional 2-factor auth prompt. This gives you added security in addition to the ability to remember your credentials past one browsing session (I was getting sick and tired of typing my username/password in over and over using basic auth).\n<<<\n"
},
"vis.js Timeline by emkay, revived by kixam": {
"title": "vis.js Timeline by emkay, revived by kixam",
"created": "20150527080809699",
"modified": "20150527080809699",
"tags": "Resources",
"type": "text/vnd.tiddlywiki",
"url": "http://kixam.github.io/TW5-visjsTimeline/",
"text": "An interactive timeline visualisation plugin based on [[Vis.js|http://visjs.org]]. A demo can be found here: {{!!url}}.\n\n<<<\nvis.js Timeline is a TiddlyWiki plugin that allows you to link your wiki-topics (tiddlers) in order to create clickable timelines. This project is a direct continuation of [[emkay's plugin|https://github.com/emkayonline/tw5visjs]].\n<<<\n"
},
"\"Creating a baby journal with TiddlyWiki 5\" from A Penguin in Redmond": {
"title": "\"Creating a baby journal with TiddlyWiki 5\" from A Penguin in Redmond",
"created": "20140220085406905",
"modified": "20140220084548184",
"tags": "Tutorials",
"type": "text/vnd.tiddlywiki",
"url": "http://a-penguin-in-redmond.blogspot.co.uk/2014/02/creating-baby-journal-with-tiddlywiki-5.html",
"text": "A guide to creating a baby journal with TiddlyWiki.\n\n{{!!url}}\n\n<<<\nKeeping a journal about your baby is fun. It allows you to keep track of those events in your baby's life and development that are most important to you, and to tell them in your own words. [...]\n\nThere are plenty of online services that can help to keep such a diary, but you need to have an internet connection to access them, and you have to trust them to keep your data safe.\n<<<\n"
},
"\"Install and run TiddlyWiki on a CentOS 6 VPS using Nginx\" from RoseHosting": {
"title": "\"Install and run TiddlyWiki on a CentOS 6 VPS using Nginx\" from RoseHosting",
"created": "20140312085406905",
"modified": "20140312084543862",
"tags": "Tutorials",
"type": "text/vnd.tiddlywiki",
"url": "http://www.rosehosting.com/blog/install-and-run-tiddlywiki-on-a-centoos-6-vps-using-nginx/",
"text": "A step by step guide to running TiddlyWiki on a ~CentOS Virtual Private Server.\n\n{{!!url}}\n\n<<<\nIn this tutorial we will guide you through the steps of installing and running TiddlyWiki on a ~CentOS 6 VPS.\n\nWe will also install and configure Nginx as a reverse proxy, so you can run TiddlyWiki behind Nginx.\n<<<\n"
},
"\"Microblogging con Tiddlywiki\" by Juan": {
"title": "\"Microblogging con Tiddlywiki\" by Juan",
"created": "20141008134309742",
"modified": "20141008134309742",
"tags": "Tutorials",
"type": "text/vnd.tiddlywiki",
"url": "http://3palmeras.wordpress.com/2014/11/05/microblogging-con-tiddlywiki/",
"text": "A Spanish guide to using TiddlyWiki on Android.\n\n{{!!url}}\n\n<<<\nTiddlywiki software is prodigious based on javascript which is capable of holding a notepad that can be edited with Internet Explorer or function as a full blog, contained in a single file.\n<<<\n\n//Translation by Google Translate//\n"
},
"\"デザイン刷新。次の25年を目指すTiddlyWiki\" by Moongift": {
"title": "\"デザイン刷新。次の25年を目指すTiddlyWiki\" by Moongift",
"created": "20131111085406905",
"modified": "20131111084548184",
"tags": "Tutorials",
"url": "http://www.moongift.jp/2013/11/tiddlywiki5-%E3%83%87%E3%82%B6%E3%82%A4%E3%83%B3%E5%88%B7%E6%96%B0%E3%80%82%E6%AC%A1%E3%81%AE25%E5%B9%B4%E3%82%92%E7%9B%AE%E6%8C%87%E3%81%99tiddlywiki-2/",
"text": "An introduction to TiddlyWiki in Japanese.\n\n{{!!url}}\n"
},
"\"Shining Ark Using TiddlyWiki\" by Helu": {
"title": "\"Shining Ark Using TiddlyWiki\" by Helu",
"created": "20130907085406905",
"modified": "20130907084548184",
"tags": "Tutorials",
"url": "http://helugame.wordpress.com/2013/09/07/shining-ark-7-using-tiddlywiki/",
"text": "A gamers guide to using TiddlyWiki.\n\n{{!!url}}\n\n<<<\nI’ve been using TiddlyWiki for this game mainly to record the monsters’ locations and the items that they drop. This is so that when I need a certain item to upgrade/create weapons, I can quickly look it up; which monsters drop it and which quests have those monsters.\n\nAs I play the game, as I encounter new information, I just input them into my Shining Ark TiddlyWiki. It’s like I’m building a wiki from scratch. The reason why I don’t just use online wikis is that 1) it’s too easy to get spoiled and 2) sometimes online wikis provide too much information (who cares about the non-gameplay related descriptions that can be found in the game, etc).\n<<<\n"
},
"\"TW5 Tribal Knowledge\" from Scott Kingery": {
"title": "\"TW5 Tribal Knowledge\" from Scott Kingery",
"created": "20140315085406905",
"modified": "20140321084533577",
"tags": "Tutorials",
"type": "text/vnd.tiddlywiki",
"url": "http://techlifeweb.com/tw5tribalknowledge.html",
"text": "Tips and guides for using TiddlyWiki.\n\n{{!!url}}\n\n<<<\nI never used Node.js until a couple weeks ago when I wanted to try a TW5 installation on Node and expand my knowledge a bit. I figured someone else may be in the same boat so I wrote it all down\n<<<\n"
},
"\"Un wiki sur votre BiblioBox avec TiddlyWiki\" from A Penguin in Redmond": {
"title": "\"Un wiki sur votre BiblioBox avec TiddlyWiki\" from A Penguin in Redmond",
"created": "20140716085406905",
"modified": "20140716084548184",
"tags": "Tutorials",
"type": "text/vnd.tiddlywiki",
"url": "http://bibliobox.net/blog/post/2014/07/16/un-wiki-sur-votre-bibliobox-avec-tiddlywiki",
"text": "A guide (in French) to using TiddlyWiki on the [[BiblioBox|http://bibliobox.net/]], a variation of the [[PirateBox|http://daviddarts.com/piratebox/]] mobile communication and file sharing system.\n\n{{!!url}}\n\n<<<\nI've known TiddlyWiki since its beginning in 2004. For personal or professional needs, I used it regularly for notepad staff in 2007 and 2012. But I admit I ignored the tool during the past two years. And then I said yesterday: but why not put TiddlyWiki on a BiblioBox? Because it is a single HTML file with javascript. In addition I knew the existence of a server version for saving online amendments.\n<<<\n\n//Hand optimised from a translation by Google Translate//\n"
},
"ColourPalettes": {
"title": "ColourPalettes",
"created": "20140216102454178",
"modified": "20160617101212889",
"tags": "Concepts",
"type": "text/vnd.tiddlywiki",
"text": "A colour palette is a [[data tiddler|DataTiddlers]] that supplies a [[CSS]] colour value, such as ''yellow'' or ''#fe0'', for each of several colour names, like this:\n\n```\npage-background: #fe0\ntable-border: #ccc\n...\n```\n\nSeveral palettes form part of the core. The system tiddler [[$:/palette]] always contains the title of the currently selected palette tiddler. You can change a palette using the {{$:/core/images/palette}} ''palette'' button, found on the \"Tools\" tab in the sidebar.\n\nTo retrieve the value of a named colour from the current palette, e.g. for use in a stylesheet tiddler, use the <<.mlink colour>> macro:\n\n```\n<<colour page-background>>\n```\n\nPalette tiddlers should have the following fields:\n\n|!Name |!Value |\n|title |Typically starting with `$:/` |\n|type |`application/x-tiddler-dictionary` |\n|tags |`$:/tags/Palette` |\n|name |Displayed in the palette browser |\n|description |Displayed in the palette browser |\n|text |`name: value` colour definitions |\n"
},
"Concepts": {
"title": "Concepts",
"color": "#FF8383",
"created": "201308251447",
"modified": "201308251447",
"tags": "Reference",
"text": "These are the concepts underlying TiddlyWiki. Understanding how these ideas fit together is the key to getting the most from TiddlyWiki.\n\n<<list-links \"[tag[Concepts]]\">>\n"
},
"Current Tiddler": {
"title": "Current Tiddler",
"created": "20130825144900000",
"modified": "20150221215022000",
"tags": "Concepts",
"type": "text/vnd.tiddlywiki",
"text": "The <<.def \"current tiddler\">> provides the context in which several aspects of WikiText are interpreted.\n\nFor example, `{{!!title}}` denotes the value of the <<.field title>> field of whatever the current tiddler happens to be. This technique can be used to create general-purpose [[template tiddlers|TemplateTiddlers]].\n\nThe title of the current tiddler can always be found in the <<.vlink currentTiddler>> variable.\n\nThe two most common ways in which the current tiddler is changed are:\n\n* the <<.wlink TiddlerWidget>> widget\n* the <<.wlink ListWidget>> widget (when its <<.attr variable>> attribute is not overridden)\n\nThe current tiddler is therefore often <<.em not>> the same as the [[tiddler that is being viewed or edited|storyTiddler Variable]].\n"
},
"DataTiddlers": {
"title": "DataTiddlers",
"created": "201308291647",
"modified": "201308291647",
"tags": "Concepts",
"text": "A data tiddler is a miniature database contained within a tiddler.\n\nThere are two standard formats:\n\n* DictionaryTiddlers\n* [[JSONTiddlers]]\n\nOther formats of tiddler can also be parsed to yield blocks of data that behave like data tiddlers.\n\nUse a TextReference to look up the value of a named property. For example, if a [[DictionaryTiddler|DictionaryTiddlers]] called `MonthDays` contains:\n\n```\noct:31\nnov:30\ndec:31\n```\n\n... then `{{MonthDays##nov}}` will resolve to the value `30`.\n\nThe same is true if `MonthDays` is a [[JSONTiddler|JSONTiddlers]] with the following content:\n\n```\n{\"oct\":31,\"nov\":30,\"dec\":31}\n```\n\nNote: //It is currently only possible to retrieve data from the immediate properties of the root object of a JSONTiddler.//\n\nThe widgets ActionSetFieldWidget and ActionListopsWidget can manipulate named properties of data tiddlers by indicating the name of the property in the $index attribute. To create or modify a named property with ActionSetFieldWidget, provide a $value attribute. To delete a named property with ActionSetFieldWidget, omit the $value attribute. ActionListopsWidget assigns the named property the list constructed through its $filter and $subfilter attributes.\n"
},
"Date Fields": {
"title": "Date Fields",
"created": "20150117190213631",
"modified": "20150124214537000",
"tags": "Concepts",
"type": "text/vnd.tiddlywiki",
"text": "Certain [[fields|TiddlerFields]] of a tiddler are used to store dates and times.\n\nThe two standard date fields are <<.field created>> and <<.field modified>>.\n\nValues of date fields are 17-character strings:\n\n* 4 digits for the year\n* 2 digits for the month\n* 2 digits for the day\n* 2 digits for the hour\n* 2 digits for the minute\n* 2 digits for the second\n* 3 digits for the millisecond\n\nTo avoid problems arising from differences of time zone, TiddlyWiki always uses [[UTC|http://en.wikipedia.org/wiki/Coordinated_Universal_Time]].\n\nAs an example, the <<.field created>> field of this tiddler has the value <<.value \"\"\"<$view field=\"created\"/>\"\"\">>.\n\nDates can be [[converted to other formats|DateFormat]] for display:\n\n<$macrocall $name=\"wikitext-example-without-html\"\nsrc=\"\"\"<$view field=\"created\" format=\"date\" template=\"DDD DDth MMM YYYY\"/>\"\"\">\n"
},
"DefaultTiddlers": {
"title": "DefaultTiddlers",
"created": "20180306113011255",
"modified": "20180306161225140",
"tags": "Concepts",
"type": "text/vnd.tiddlywiki",
"text": "\"Default tiddlers\" refers to the list of tiddlers that is opened at startup in the browser if the address bar does not include a [[permalink|PermaLinks]]).\n\nAt startup, the text of the system tiddler [[$:/DefaultTiddlers]] is retrieved and evaluated as a [[filter expression|Filter Expression]]. The resulting list of titles is then inserted into the [[story river|Story River]].\n\nThe [[control panel|$:/ControlPanel]] ''info/basics'' tab includes a text box for direct access to [[$:/DefaultTiddlers]].\n\n"
},
"DictionaryTiddlers": {
"title": "DictionaryTiddlers",
"created": "20141228094500000",
"modified": "20180305111822713",
"tags": "Concepts",
"text": "A dictionary tiddler is a [[data tiddler|DataTiddlers]] containing a simple list of `name: value` pairs.\n\nIts [[ContentType]] is `application/x-tiddler-dictionary`.\n\nThe `text` field consists of one or more lines of the form <code>//name//: //value//</code>.\n\n[[ColourPalettes]], such as the [[default Vanilla palette|$:/palettes/Vanilla]], are dictionary tiddlers.\n"
},
"Dominant Append": {
"title": "Dominant Append",
"created": "20150123220223000",
"modified": "20190610165255223",
"tags": "Filters",
"type": "text/vnd.tiddlywiki",
"text": "[[Filters]] manipulate [[sets of titles|Title Selection]] in which no title may appear more than once. Furthermore, they often need to append one such set to another.\n\nThis is done in such a way that, if a title would be duplicated, the earlier copy of that title is discarded. The titles being appended are dominant.\n\nFor example, if a selection contains `Andrew Becky Clara Daniel` and `Andrew Barney Clara Daisy` is then appended to it, the result is `Becky Daniel Andrew Barney Clara Daisy`.\n\nThis behaviour can cause unexpected results when working with [[Mathematics Operators]]. For example, `1 2 3 +[sum[]]` evaluates to `6`, as expected. But `1 1 1 +[sum[]]` evaluates to `1`. Removing the `+[sum[]]` from each filter reveals the problem: `1 2 3` evaluates to the list `1`, `2`, `3`, while `1 1 1` evaluates to the single item `1` due to de-duplication.\n\nIn such situations, the `=` prefix can be used to disable the de-duplication. For example, `=1 =1 =1 +[sum[]]` evaluates to `3` as expected. Alternatively, the [[split Operator]] can be used: `[[1,1,1]split[,]sum[]]`.\n"
},
"ExternalImages": {
"title": "ExternalImages",
"created": "20140610213500000",
"modified": "20140912141341933",
"tags": "Concepts Features",
"type": "text/vnd.tiddlywiki",
"text": "External images in TiddlyWiki are tiddlers that point to the URI of an image, rather than embedding the full image data. They can perform better than embedded images, particularly with large numbers or sizes of images. However, using them breaks the single file pattern of TiddlyWiki.\n\nExternal images are used in the browser. They can be created by the Node.js configuration when it builds a TiddlyWiki, or they can be created manually within the browser.\n\n! What is an External Image\n\nAn external image is an ordinary image tiddler that has a ''_canonical_uri'' field containing the URI of the image. The URI can be absolute or relative to the HTML document. If the canonical URI is provided then the ''text'' field of the tiddler is ignored and so should be omitted.\n\n! Manually Creating External Images\n\nTo manually create an external image just create the tiddler with the appropriate image content type, and add a ''_canonical_uri'' field with a URI pointing to the actual image location.\n\n''IMPORTANT:'' Double-check your spelling. ``_canonical_uri`` is spelled [[URI|https://en.wikipedia.org/wiki/URI#The_relationship_between_URIs.2C_URLs.2C_and_URNs]], not URL.\n\n! Creating external images under Node.js\n\nThe following steps are used to create a static HTML file version of a wiki accompanied by an ''images'' folder containing the referenced external images:\n\n# Create image tiddlers in your TiddlyWikiFolders in the usual way\n# Save the images as separate files (by convention, in a subfolder named ''images'')\n# Externalise the image tiddlers by giving them a ''_canonical_uri'' field\n# Save the main HTML file\n\nNote the image files must be saved before they are externalised. Externalising them destroys the ''text'' field within the in-memory copy of the wiki store, meaning that attempts to save them will fail.\n\nFor an example see the ''externalimages'' build target of the demo ''tw5.com'' wiki:\n\n```\n--savetiddlers [is[image]] images\n--setfield [is[image]] _canonical_uri $:/core/templates/canonical-uri-external-image text/plain\n--setfield [is[image]] text \"\" text/plain\n--rendertiddler $:/core/save/all externalimages.html text/plain\n```\n\n!! Saving Separate Image Files\n\nThe following `--savetiddlers` command can be used to save the images of a wiki into an ''images'' subfolder:\n\n```\n--savetiddlers [is[image]] images\n```\n\n!! Externalising Image Tiddlers\n\nTwo `--setfield` commands are used: the first sets the ''_canonical_uri'' field to a URI derived from the title of the tiddler, and the second clears the text field.\n\n```\n--setfield [is[image]] _canonical_uri $:/core/templates/canonical-uri-external-image text/plain\n--setfield [is[image]] text \"\" text/plain\n```\n\nThe template tiddler [[$:/core/templates/canonical-uri-external-image]] contains:\n\n<pre>\n\n<$view tiddler=\"$:/core/templates/canonical-uri-external-image\" field=\"text\" format=\"text\"/>\n\n</pre>\n\nNote that these operations modify the tiddlers in the wiki store and so may affect the operation of subsequent commands.\n\n! Using External Images\n\nYou can't edit an external image directly in the browser except by changing the URI field to point to a different image.\n"
},
"Filters": {
"title": "Filters",
"created": "20130827080000000",
"modified": "20150221225414000",
"tags": "Reference Concepts",
"type": "text/vnd.tiddlywiki",
"list": "[[Introduction to filter notation]] [[Filter Syntax]]",
"text": "You can think of TiddlyWiki as a database in which the records are tiddlers. A database typically provides a way of discovering which records match a given pattern, and in ~TiddlyWiki this is done with filters.\n\nA <<.def filter>> is a concise notation for selecting a particular [[set of tiddlers|Title Selection]], known as its <<.def \"output\">>. Whenever ~TiddlyWiki encounters a filter, it calculates the output. Further work can then be done with just those tiddlers, such as [[counting|CountWidget]] or [[listing|ListWidget]] them.\n\nThe following example passes a filter to the <<.mlink list-links>> macro to display a list of all tiddlers whose titles start with the letter H:\n\n> `<<list-links \"[prefix[H]]\">>`\n\nA filter's output can change as tiddlers are added and deleted in the wiki. ~TiddlyWiki recalculates on the fly, automatically updating any filter-based counts or lists as well.\n\n[[Advanced Search|$:/AdvancedSearch]] has a <<.advancedsearch-tab Filter>> tab that makes it easy to experiment with filters.\n\n;Find out more:\n* [[Introduction to filter notation]] -- a step-by-step walkthrough\n* [[Filter Syntax]] -- the detailed technical rules\n* [[Filter Operators]] -- the available methods of filtering\n"
},
"Hard and Soft Links": {
"title": "Hard and Soft Links",
"created": "20150123220237000",
"modified": "20150226163104000",
"tags": "Concepts",
"type": "text/vnd.tiddlywiki",
"text": "A <<.def \"hard link\">> is one that can be detected by a superficial examination of WikiText.\n\nA link is <<.def \"soft\">> if it is:\n\n* contained in text [[trancluded|Transclusion]] from elsewhere\n* supplied via a [[macro|Macros]] or [[variable|Variables]]\n* generated by a link widget whose <<.attr to>> attribute is a transclusion, macro or variable\n\n<$macrocall $name=\".warning\" _=\"\"\"Soft links are not detected by link-related filter operators such as <<.olink backlinks>>, <<.olink links>>, <<.olink all>> and <<.olink is>>.\"\"\"/>\n"
},
"InfoPanel": {
"title": "InfoPanel",
"created": "20150917193630604",
"modified": "20150917193631731",
"tags": "Features",
"type": "text/vnd.tiddlywiki",
"text": "Each tiddler has a panel of additional information. To reveal it, click the {{$:/core/images/down-arrow}} button in the tiddler's toolbar and then choose {{$:/core/images/info-button}} ''info'' from the dropdown list.\n\nThe info panel has the following tabs:\n\n* ''Tools'' - This offers buttons for various actions you can perform on the tiddler. The checkbox next to each button lets you promote an action to the tiddler's toolbar - this will affect all of the tiddlers in your wiki\n* ''References'', ''Tagging'', ''List'' and ''Listed'' - These list various kinds of related tiddlers. See [[Using links to navigate between tiddlers]]\n* ''Fields'' - This summarises all of the tiddler's [[fields|TiddlerFields]], except for ''text''\n* ''Advanced'' - This indicates whether the tiddler is a [[shadow|ShadowTiddlers]]. If it is, this also reveals which plugin it comes from and whether it has been overridden by an ordinary tiddler\n\nTo close the info panel, click anywhere outside it.\n"
},
"JSONTiddlers": {
"title": "JSONTiddlers",
"created": "20141228094500000",
"modified": "20150221152956000",
"tags": "Concepts",
"text": "A JSON tiddler is a [[data tiddler|DataTiddlers]] containing a [[JSON|JavaScript Object Notation]] structure in its `text` field.\n\nIts [[ContentType]] is `application/json`.\n\nThe [[history list|$:/HistoryList]] is a good example of a JSON tiddler.\n"
},
"Keyboard Shortcut Tiddler": {
"title": "Keyboard Shortcut Tiddler",
"tags": "Concepts",
"text": "A ''Keyboard Shortcut Tiddler'' is made of three parts:\n\n* The ''Tag'' <<tag-pill $:/tags/KeyboardShortcut>>\n* The ''field'' `key` with a [[Keyboard Shortcut Descriptor]] as its ''value''\n* Actions in its ''text'' field\n\nIf the [[Keyboard Shortcut Descriptor]] has the form `((my-shortcut))` it's a ''reference'' to a ''configuration Tiddler'' that stores the corresponding [[Keyboard Shortcut|KeyboardShortcuts]]\n\nIn order to make a ''shortcut'' editable through the <<.controlpanel-tab KeyboardShortcuts>> Tab in the $:/ControlPanel it's sufficient to create a tiddler `$:/config/ShortcutInfo/my-shortcut`, where the ''suffix'' is the ''reference'' used for the [[Keyboard Shortcut|KeyboardShortcuts]]\n"
},
"Macros": {
"title": "Macros",
"created": "20140211171341271",
"modified": "20150228114909000",
"tags": "Concepts Reference",
"type": "text/vnd.tiddlywiki",
"text": "A <<.def macro>> is a named snippet of text. WikiText can use the name as a shorthand way of [[transcluding|Transclusion]] the snippet. Such transclusions are known as <<.def \"macro calls\">>, and each call can supply a different set of parameters that get substituted for special placeholders within the snippet.\n\nFor the syntax, see [[Macros in WikiText]].\n\nMost macros are in fact just parameterised [[variables|Variables]].\n\nThey are created using the `\\define` [[pragma|Pragma]]. (Behind the scenes, this is transformed into a <<.wlink SetWidget>>, i.e. macros and variables are two sides of the same coin.)\n\nThe snippet and its incoming parameter values are treated as simple strings of characters with no WikiText meaning, at least until the placeholders have been filled in and the macro call has returned. This means that a macro can assemble and return the complete syntax of a ~WikiText component, such as a [[link|Linking in WikiText]]. (See [[Transclusion and Substitution]] for further discussion of this.)\n\nThe string returned by a macro call is parsed separately from any surrounding ~WikiText components. So a safe way to insert a special character sequence (such as `[[` or `<`) without triggering its normal ~WikiText meaning is to wrap it in a macro.\n\nWithin a snippet itself, the only markup detected is `$name$` (a placeholder for a macro parameter) and `$(name)$` (a placeholder for a [[variable|Variables]]).\n\nThe <<.mlink dumpvariables>> macro lists all variables (including macros) that are available at that position in the widget tree.\n\nAn <<.wlink ImportVariablesWidget>> widget can be used to copy macro definitions to another branch of the [[widget tree|Widgets]]. ~TiddlyWiki uses this technique internally to implement global macros -- namely any macros defined in tiddlers with the <<.tag $:/tags/Macro>> tag.\n\nFor maximum flexibility, macros can also be <<.js-macro-link \"written as JavaScript modules\">>.\n\nA similar effect to a parameterised macro call can be produced by setting [[variables|Variables]] around a [[transclusion|Transclusion]].\n\n~TiddlyWiki's core has [[several macros|Core Macros]] built in.\n"
},
"Messages": {
"title": "Messages",
"created": "20140226083311937",
"modified": "20140226090209479",
"tags": "Concepts Reference",
"type": "text/vnd.tiddlywiki",
"text": "Widget messages are generated by widgets in response to user actions. They flow up the widget tree until they are handled by an ancestor widget.\n\nThe following widget messages are implemented by the core:\n\n<<list-links \"[tag[Messages]]\">>\n"
},
"ModuleType": {
"title": "ModuleType",
"created": "20131129162847412",
"modified": "20150917193804197",
"tags": "Modules",
"type": "text/vnd.tiddlywiki",
"text": "\\define describe() {{$:/language/Docs/ModuleTypes/$(type)$}}\n\nThe `module-type` field of a [[JavaScript module|Modules]] is a string that identifies the type of the module. Here is a list of the module types used in this wiki:\n\n<dl>\n<$list filter=\"[moduletypes[]]\">\n<dt>{{!!title}}</dt>\n<$set name=type value=<<currentTiddler>>>\n<dd><<describe>></dd>\n</$set>\n</$list>\n</dl>\n"
},
"Modules": {
"title": "Modules",
"created": "20131129162919588",
"modified": "20160610082237902",
"tags": "Concepts",
"type": "text/vnd.tiddlywiki",
"text": "A //module// in TiddlyWiki5 is a tiddler containing executable JavaScript, of the type `application/javascript` and with the field `module-type` set to the ModuleType of the module.\n\nSee [[control panel|$:/ControlPanel]] {{$:/core/images/options-button}} > ''Info'' > ''Advanced'' > ''Loaded Modules'' for a list of currently loaded modules.\n"
},
"Order of Tagged Tiddlers": {
"title": "Order of Tagged Tiddlers",
"created": "20150124125646000",
"modified": "20170328161702062",
"tags": "Tagging",
"type": "text/vnd.tiddlywiki",
"text": "When ~TiddlyWiki generates a list of the tiddlers that have a particular tag (e.g. the dropdown list of a tag pill), it orders the tiddlers using the following rules:\n\n# Start with any that are [[declared|Title List]] in the <<.field list>> field of the tag tiddler, in the order given there.\n\n# In each remaining tiddler <<.place T>>, look for a <<.field list-before>> field. If this has a tiddler title as its value, place <<.place T>> just <<.em before>> that one.\n#* As a special case, if the field exists but its value is empty, place <<.place T>> at the very start of the list.\n\n# In each remaining tiddler <<.place T>>, look for a <<.field list-after>> field. If this has a tiddler title as its value, place tiddler <<.place T>> just <<.em after>> that one.\n\n# If any tiddlers still remain, place them at the end of the list in ascending alphabetical order of title. The difference between capital and lowercase letters is ignored.\n\nThe ordering of tiddlers with a particular tag can be directly modified using drag and drop within a tag pill dropdown. The underlying [[list-tagged-draggable Macro]] can also be used elsewhere.\n"
},
"PermaLinks": {
"title": "PermaLinks",
"created": "20140502213500000",
"modified": "20160622111355787",
"tags": "Features Concepts",
"type": "text/vnd.tiddlywiki",
"text": "Permalinks allow direct links to individual tiddlers within a TiddlyWiki.\n\n! Simple Permalinks\n\nThe simplest form of permalink ({{$:/core/images/permalink-button}}) is a single target tiddler title appended to the base URL with `#`:\n\nhttps://tiddlywiki.com/#HelloThere\n\nThe tiddler title can contain spaces if required:\n\n[[https://tiddlywiki.com/#Using TiddlyWiki on Node.js]]\n\nNote that double square brackets are not required around the target tiddler title; however, if present they are silently removed.\n\n! Story Permalinks\n\nThe permalink can also specify the story list of tiddlers that should be opened alongside the target tiddler as a [[TiddlerFilter|Filters]]:\n\n[[https://tiddlywiki.com/#TiddlerFields:Tiddlers TiddlerTags TiddlerFields ContentType]]\n\nIf the target tiddler isn't present in the story list then it is automatically inserted at the top. This means that the following two examples both target the tiddler `Tiddlers` within the story sequence `Tiddlers`, `Tags`, `TiddlerFields`:\n\n[[https://tiddlywiki.com/#Tiddlers:Tags TiddlerFields]]\n\n[[https://tiddlywiki.com/#Tiddlers:Tiddlers Tags TiddlerFields]]\n\nIt is also possible to specify a story filter without specifying a target tiddler for navigation:\n\n<a href=\"https://tiddlywiki.com/#:[tags[task]]\" rel=\"noopener noreferrer\">~https://tiddlywiki.com/#:[tags[task]]</a>\n\n! About URL encoding\n\nThere are technical restrictions on the legal characters in an URL fragment. To allow all tiddler titles to be addressed, illegal characters are subject to a process called \"URL encoding\" whereby problematic characters are replaced by their numeric code. For example, the space character is replaced with `%20`.\n\nBoth the target tiddler title and the story filter should be URL encoded (but not the separating colon). TiddlyWiki generates properly encoded URLs which can look quite ugly. However, in practice browsers will usually perfectly happily process arbitrary characters in URL fragments. Thus when creating permalinks manually you can choose to ignore URL encoding.\n\n! Permalink Behaviour\n\nTwo important aspects of TiddlyWiki's behaviour with permalinks can be controlled via options in the [[control panel|$:/ControlPanel]] {{$:/core/images/options-button}} ''Settings'' tab:\n\n* Whether to automatically update the address bar at each navigation, and if so whether to include the story sequence as well as the target tiddler\n* Whether the updates to the address bar should affect browser history. The default is ''no''; when switched to ''yes'' you can rewind navigation between tiddlers using the browser back and forward buttons\n\nNote that typing or navigating to a permalink will always cause the permalink to be processed, and tiddlers opened and closed as appropriate.\n\n!! Technical Details\n\nWhen TiddlyWiki starts up it processes permalinks according to the following steps; the same steps are repeated if the permalink changes dynamically (this happens in response to the user editing the address bar, for example).\n\n# If the permalink contains a colon, treat the string before as the ''target'' and the string after it as the ''story filter''\n# If the permalink doesn't contain a colon, treat the entire string as the ''target'' and mark the ''story filter'' as //unspecified//\n# If the ''story filter'' was unspecified and we're in the process of starting up, then set the ''story filter'' to the empty string if the ''target'' is specified, or to the default tiddlers if the ''target'' is unspecified\n# If the ''story filter'' was unspecified and we're not starting up, then set the ''story filter'' to the current story list\n# Evaluate the ''story filter'' as the ''story list''\n# If the ''target'' is specified and not present in the ''story list'' then add it at the top\n# If the ''target'' is specified then navigate to it, otherwise navigate to the first tiddler in the ''story list''\n"
},
"Pragma": {
"title": "Pragma",
"created": "20150219175930000",
"modified": "20180928145730028",
"tags": "Concepts",
"type": "text/vnd.tiddlywiki",
"text": "A <<.def pragma>> is a special component of WikiText that provides control over the way the remaining text is parsed.\n\nPragmas occupy lines that start with `\\`. They can only appear at the start of the text, but blank lines are allowed between them. If a pragma line appears in the main body of the text, it is treated as if it was ordinary text.\n\nThe following pragmas are available:\n\n;`\\define`\n: for defining a [[macro|Macros]]\n;`\\rules`\n: for adjusting the set of rules used to parse the text\n;`\\whitespace trim` or `\\whitespace notrim`\n: <<.from-version \"5.1.15\">> Control whether whitespace is trimmed from the start and end of text runs (the default is ''notrim''). This setting can be useful when the whitespace generated by linebreaks disturbs formatting\n;`\\import <filter-expression>`\n: <<.from-version \"5.1.18\">> for importing macro definitions from tiddlers identified by a filter expression\n"
},
"Railroad Diagrams": {
"title": "Railroad Diagrams",
"created": "20150105133800000",
"modified": "20150124181306000",
"text": "<<.def \"Railroad diagrams\">>, sometimes called <<.def \"syntax diagrams\">>, are a visual way of explaining the syntax rules of a computer language. Reading one is like reading a public transport map.\n\nEach diagram starts on the left and ends on the right. Simply follow any line from the startpoint to the endpoint. All the alternative lines are equally valid. A line will sometimes jump over an item that is optional, or loop back to indicate that an item can be repeated.\n\n<$railroad text=\"\"\"\nstart [:optional] {repeated +\",\"} end\n\"\"\"/>\n\nIn the example above, a comma appears between each occurrence of the `repeated` item. The comma path runs from right to left, and can only be reached by first passing through `repeated`.\n\nCharacters in round boxes are literal, i.e. they denote themselves. A name in a rectangular box denotes a further railroad diagram.\n\nThe railroad diagrams in ~TiddlyWiki's documentation are generated with the [[Railroad Plugin]].\n"
},
"Selection Constructors": {
"title": "Selection Constructors",
"created": "20150117204109000",
"modified": "20150917193713204",
"tags": "Filters",
"type": "text/vnd.tiddlywiki",
"text": "The output of a [[Filter Step]] depends on its [[operator|Filter Operators]]:\n\n* Most operators derive their output from their input. For example, many of them output a subset of their input, and thus truly live up to the name of <<.word filters>>, narrowing down the overall output of the containing [[run|Filter Run]]. These operators are called <<.def \"selection modifiers\">>.\n\n* A few operators ignore their input and generate an independent output instead. These are called <<.def \"selection constructors\">>: they construct an entirely new [[selection|Title Selection]].\n\nA good example of a constructor is <<.olink title>>. The output of `[title[A]title[B]]` is just <<.tid B>>. But the <<.olink field>> operator is a modifier, so `[title[A]field:title[B]` outputs nothing at all.\n"
},
"ShadowTiddlers": {
"title": "ShadowTiddlers",
"tags": "Concepts",
"modified": "201308091623",
"text": "ShadowTiddlers are tiddlers that are loaded from within [[Plugins]]. Unlike ordinary tiddlers, they don't appear in most lists.\n\nShadowTiddlers can be overridden with an ordinary tiddler of the same name. If that tiddler is subsequently deleted then the original shadow tiddler is automatically restored.\n\nThe current shadow tiddlers are:\n\n<$list filter=\"[all[shadows]sort[title]]\"/>\n"
},
"Story River": {
"title": "Story River",
"created": "20150917193906790",
"modified": "20150917194028462",
"tags": "Concepts",
"type": "text/vnd.tiddlywiki",
"text": "The \"story river\" (sometimes abbreviated to \"story\") is the sequence of [[tiddlers|Tiddlers]] in the main column of the display."
},
"SystemTags": {
"title": "SystemTags",
"created": "20130822080600000",
"modified": "20180927080631239",
"tags": "Reference Concepts",
"type": "text/vnd.tiddlywiki",
"text": "System tags are used to give special behaviour to tiddlers.\n\nThese are the system tags defined by the ~TiddlyWiki core:\n\n<table>\n<tbody>\n<$list filter=\"[tag[SystemTags]]\">\n<tr>\n<td>\n<$macrocall $name=\"tag\" tag={{!!caption}}/>\n</td>\n<td>\n<$link>\n{{!!description}}\n</$link>\n</td>\n</tr>\n</$list>\n</tbody>\n</table>\n\n!! System tags defined by ~TiddlyWiki plugins\n\n|<<tag \"$:/tags/HelpPanel>> |can be seen at: [[tiddlywiki prerelease|https://tiddlywiki.com/prerelease/]] see: top left page control bubble|\n|<<tag \"$:/tags/HelpPanel/Videos>> |help panel \"videos\" tab|\n|<<tag \"$:/tags/MakeQR>> |can be seen at: [[tiddlywiki prerelease|https://tiddlywiki.com/prerelease/]]. see: Tiddler toolbar |\n|<<tag \"$:/tags/TranslationGroup>> |used by the [[translators edition|https://tiddlywiki.com/editions/translators/]] |\n|<<tag \"$:/tags/TwitterUsage>> |twitter plugin |\n|<<tag \"$:/tags/ViewToolbarButton/QRcode>> |see: [[tiddlywiki prerelease|https://tiddlywiki.com/prerelease/]] |\n|<<tag \"$:/tags/test-spec>> |tiddlywiki test suite |\n\n"
},
"SystemTiddlers": {
"title": "SystemTiddlers",
"created": "20180113144350185",
"modified": "20180113153832195",
"tags": "Concepts",
"type": "text/vnd.tiddlywiki",
"text": "Tiddlers are classified as system tiddlers if their title starts with the special string `$:/`. The only difference from ordinary tiddlers is that they are hidden from most searches and lists in the sidebar. (In particular, system tiddlers are shown in the \"More/System\" list).\n\nSystem tiddlers provide a simple way to hide the internal components of TiddlyWiki so that they don't clutter things up, getting in the way of the users content.\n\nMany of the system tiddlers follow the convention of using further slashes to delineate the components of the title. For example: `$:/config/BitmapEditor/LineWidth`.\n\nYou don't need to create your own system tiddlers, but it can be useful when customising TiddlyWiki. For example, if you create a custom palette you might call it `$:/_MyPalette` so that (a) it is hidden from searches/lists and (b) it will appear at the top of the system tiddler list for easy reference.\n\n"
},
"TagTiddlers": {
"title": "TagTiddlers",
"created": "20141228094500000",
"modified": "20150917193731240",
"tags": "Tagging",
"type": "text/vnd.tiddlywiki",
"text": "A tag tiddler is any tiddler that is in use as a tag.\n\nThe ''Tagging'' tab on the InfoPanel of a tag tiddler shows which tiddlers are tagged with the tag tiddler.\n\nA tag can be used without a corresponding tag tiddler.\n"
},
"TemplateTiddlers": {
"title": "TemplateTiddlers",
"created": "20140107114355828",
"modified": "20150220160920000",
"tags": "Concepts",
"type": "text/vnd.tiddlywiki",
"text": "A template tiddler is not actually a type of tiddler, it is a role in which a tiddler can be used.\n\nTemplates are a way to re-use chunks of WikiText.\n\nTranscluding through a template extends the basic functionality of [[Transclusion]] by combining two tiddlers:\n\n* A template tiddler that contains the WikiText to be displayed. It can contain transclusions that reference fields in the [[current tiddler|Current Tiddler]]\n* A target tiddler that identifies which tiddler is to be treated as current when resolving references to fields\n\nThe best example of templating is the main story river in TiddlyWiki. Each tiddler in the story river is rendered through a ViewTemplate that specifies how each field is to be rendered.\n\nSee [[Transclusion with Templates]] for details.\n"
},
"TextReference": {
"title": "TextReference",
"created": "20130827075900000",
"modified": "20161216173541948",
"tags": "Concepts",
"type": "text/vnd.tiddlywiki",
"text": "A TextReference is a general purpose way to describe a fragment of text as either a field of a tiddler, or an index within a [[data tiddler|DataTiddlers]].\n\nIn different situations, text references can be used to retrieve values, or to specify a value that should be modified.\n\nA TextReference consists of several parts:\n\n* The title of the target tiddler. If omitted, it defaults to the [[Current Tiddler]]\n* Either one of:\n** The name of a field (marked with `!!`)\n** The name of an index within a [[data tiddler|DataTiddlers]] (marked with `##`)\n* If both the field and index are omitted, the text field is used as the default\n\nMost of the parts of a text reference can be optional:\n\n* `tiddlerTitle` - the title [[field|TiddlerFields]] of the specified tiddler\n* `tiddlerTitle!!field` - a [[tiddler field|TiddlerFields]] (eg, `modified`, `modifier`, `type` etc)\n* `!!field` - a [[field|TiddlerFields]] of the current tiddler\n* `tiddlerTitle##propertyIndex` - extracts a named property from DataTiddlers\n\nText references can be used in several places:\n\n* As [[indirect parameters|Filter Parameter]] within [[Filters]] (eg, `<$list filter=\"[tag{MyTag!!name}]\"/>`)\n* As [[indirect attributes|HTML in WikiText]] of an element or widget (eg, `<$widget attrib={{Title!!description}}/>`)\n* As the operand of a shortcut transclusion (eg, `{{MyTiddler!!title}}`)\n* As the `state` attribute of the RevealWidget and the LinkCatcherWidget\n\n<$macrocall $name=\".tip\" _=\"\"\"Note the distinction between a text reference such as `foo!!bar` and a transclusion of a text reference such as `{{foo!!bar}}`\"\"\"/>\n\n"
},
"TiddlerFields": {
"title": "TiddlerFields",
"created": "20130825213300000",
"modified": "20180104000000000",
"tags": "Concepts",
"type": "text/vnd.tiddlywiki",
"text": "\\define lingo-base() $:/language/Docs/Fields/\n~TiddlerFields are name:value pairs that make up a [[tiddler|Tiddlers]]. Field names must be lowercase letters, digits or the characters `-` (dash), `_` (underscore) and `.` (period).\n\nThe standard fields are:\n\n|!Field Name |!Reference |!Description |\n|`title` |TitleField |<<lingo title>> |\n|`text` |TextField |<<lingo text>> |\n|`modified` |ModifiedField |<<lingo modified>> |\n|`modifier` |ModifierField |<<lingo modifier>> |\n|`created` |CreatedField |<<lingo created>> |\n|`creator` |CreatorField |<<lingo creator>> |\n|`tags` |TagsField |<<lingo tags>> |\n|`type` |TypeField |<<lingo type>> |\n|`list` |ListField |<<lingo list>> |\n|`caption` |CaptionField |<<lingo caption>> |\n\nOther fields used by the core are:\n\n|!Field Name |!Reference |!Description |\n|`class` |ClassField |<<lingo class>> |\n|`color` |ColorField |<<lingo color>> |\n|`description` |DescriptionField |<<lingo description>> |\n|`draft.of` |DraftOfField |<<lingo draft.of>> |\n|`draft.title` |DraftTitleField |<<lingo draft.title>> |\n|`footer` |FooterField |<<lingo footer>> |\n|`hide-body`|HideBodyField|<<lingo hide-body>>|\n|`icon` |IconField |<<lingo icon>> |\n|`library` |LibraryField |<<lingo library>> |\n|`list-after` |ListAfterField |<<lingo list-after>> |\n|`list-before` |ListBeforeField |<<lingo list-before>> |\n|`name` |NameField |<<lingo name>> |\n|`plugin-priority` |PluginPriorityField |<<lingo plugin-priority>> |\n|`plugin-type` |PluginTypeField |<<lingo plugin-type>> |\n|`source` |SourceField |<<lingo source>> |\n|`subtitle` |SubtitleField |<<lingo subtitle>> |\n|`toc-link`|TocLink|<<lingo toc-link>>|\n\nThe TiddlyWebAdaptor uses a few more fields:\n\n|!Field Name |!Reference |!Description |\n|`bag` |BagField |<<lingo bag>> |\n|`revision` |RevisionField |<<lingo revision>> |\n\nDetails of the fields used in this ~TiddlyWiki are shown in the [[control panel|$:/ControlPanel]] {{$:/core/ui/Buttons/control-panel}} under the <<.controlpanel-tab Info>> tab >> <<.info-tab Advanced>> sub-tab >> Tiddler Fields\n"
},
"TiddlerLinks": {
"title": "TiddlerLinks",
"created": "20130825202900000",
"modified": "20141231093344090",
"tags": "Concepts",
"type": "text/vnd.tiddlywiki",
"text": "Links are regions of a tiddler that can be clicked to cause navigation to a different tiddler. The navigation behaviour is determined by the current StoryView; the classic TiddlyWiki view displays the story as a linear sequence of tiddlers.\n\nHolding the ''control'' or ''command'' key while clicking on a tiddler link opens the target tiddler but doesn't navigate to it. This can be a useful way of queueing up tiddlers to be read later.\n\nLinks are useful for modelling organic relationships between tiddlers, and particularly for expressing the navigational paths between tiddlers.\n\nThe InfoPanel lists incoming links to a tiddler in the tab ''References''.\n\n[[Filters]] can include the following filter operators that work with links:\n\n* `[links[]]` - returns the titles of the tiddlers that are linked from the currently selected tiddler(s)\n* `[backlinks[]]` - returns the titles of the tiddlers that link to the currently selected tiddler(s)\n\nTiddlyWiki5 alters the appearance of tiddler links to convey additional information about the target of the link:\n\n|!Link description |!Link appearance |\n|To a tiddler that exists |[[LikeThis|TiddlerLinks]] |\n|To a tiddler that doesn't exist |[[LikeThis|ATiddlerThatDoesntExist]] |\n|To a shadow tiddler that has not been overridden |[[LikeThis|$:/core/copyright.txt]] |\n|To a shadow tiddler that has been overridden by an ordinary tiddler |[[LikeThis|$:/SiteTitle]] |\n\nExternal links are shown like this: https://tiddlywiki.com/ or [[like this|https://tiddlywiki.com/]].\n"
},
"Tiddlers": {
"title": "Tiddlers",
"created": "20130825213500000",
"modified": "20141121111732959",
"tags": "Concepts",
"type": "text/vnd.tiddlywiki",
"text": "Tiddlers are the fundamental units of information in TiddlyWiki. Tiddlers work best when they are as small as possible so that they can be reused by weaving them together in different ways.\n\nA \"tiddler\" is an informal British word meaning a small fish, typically a stickleback or a minnow. Other systems have analogous concepts with generic names like \"items\", \"entries\", \"entities\", \"nodes\" or \"records\". TiddlyWiki takes the view that it is better to be confusingly distinctive than confusingly generic.\n\nInternally, tiddlers are a list of uniquely named values called fields. The only field that is required is the `title` field, but useful tiddlers also have a `text` field, and some or all of the standard fields listed in TiddlerFields.\n\nTiddlers are ubiquitous in TiddlyWiki. They are used to store everything from JavaScript code modules to the settings and state associated with the user interface.\n"
},
"TiddlyWiki": {
"title": "TiddlyWiki",
"created": "20130822170700000",
"modified": "20170127221451610",
"tags": "Concepts",
"type": "text/vnd.tiddlywiki",
"text": "~TiddlyWiki is a rich, interactive tool for manipulating complex data with structure that doesn't easily fit into conventional tools like spreadsheets or wordprocessors.\n\n~TiddlyWiki is designed to fit around your brain, helping you deal with the things that won't fit. The [[fundamental idea|Philosophy of Tiddlers]] is that information is more useful and reusable if we cut it up into the smallest semantically meaningful chunks -- [[tiddlers|Tiddlers]] -- and give them titles so that they can be [[structured|Structuring TiddlyWiki]] with [[links|TiddlerLinks]], [[tags|Tagging]], [[lists|ListField]] and [[macros|Macros]]. Tiddlers use a WikiText notation that concisely represents a wide range of text formatting and hypertext features. ~TiddlyWiki aims to provide a fluid interface for working with tiddlers, allowing them to be aggregated and composed into longer narratives.\n\nPeople love using ~TiddlyWiki. Because it can be used without any complicated server infrastructure, and because it is [[open source|OpenSource]], it has brought unprecedented freedom to everyone to keep their precious information under their own control.\n\n~TiddlyWiki was originally created by JeremyRuston and is now a thriving [[open source|License]] project with a busy [[Community]] of independent developers.\n"
},
"TiddlyWiki5": {
"title": "TiddlyWiki5",
"created": "201308252136",
"modified": "201308252136",
"tags": "Concepts",
"type": "text/vnd.tiddlywiki",
"text": "~TiddlyWiki5 is a reboot of TiddlyWiki for the next 25 years. It is a complete interactive wiki in JavaScript that can be run in the browser or on the server under [[Node.js]].\n"
},
"TiddlyWikiFolders": {
"title": "TiddlyWikiFolders",
"created": "20130825214200000",
"modified": "20161015134454785",
"tags": "[[TiddlyWiki on Node.js]]",
"type": "text/vnd.tiddlywiki",
"text": "As well as traditional single file wikis, [[TiddlyWiki on Node.js]] supports wikis that are stored as a folder of individual tiddler files.\n\n! Wiki Folder Structure\n\nWiki folders can contain the following files and folders:\n\n* ''tiddlywiki.info'' - JSON file containing metadata for the wiki -- see [[tiddlywiki.info Files]]\n* ''\\tiddlers'' - folder containing tiddler files comprising the wiki\n* ''\\plugins'' - folder containing [[plugin folders|PluginFolders]] to be included in the wiki\n* ''\\languages'' - folder containing [[plugin folders|PluginFolders]] for language plugins to be included in the wiki\n* ''\\themes'' - folder containing [[plugin folders|PluginFolders]] for theme plugins to be included in the wiki\n\nOnly the ''tiddlywiki.info'' file is required; everything else is optional. Any files and folders not listed above are ignored.\n\n!! Plugin processing\n\nTo be usable in the browser, plugins just need to be included in the wiki. For wikis that are generated on the server, TiddlyWikiFolders can contain a [[tiddlywiki.info file|tiddlywiki.info Files]] that identifies the plugins to be included in this wiki:\n\n```\n{\n\t\"plugins\": [\n\t\t\"tiddlywiki/slider\",\n\t\t\"tiddlytools/chooser\"\n\t]\n}\n```\n\nPlugins names refer to plugin folders listed in TiddlyWiki5's root `plugins` folder. Plugins can also be included manually by copying them into the `plugins` subfolder of the wiki.\n\n!! Processing of `tiddlers` folder\n\nAll the TiddlerFiles in the `tiddlers` folder are read into the wiki at startup. Sub-folders are scanned recursively for TiddlerFiles. Newly created tiddlers are stored in TiddlerFiles directly beneath the `tiddlers` folder, unless [[configured otherwise|Customising Tiddler File Naming]].\n\nThe default processing for sub-folders within the `tiddlers` folder can be overridden by providing a JSON file called `tiddlywiki.files` -- see [[tiddlywiki.files Files]]."
},
"Title List": {
"title": "Title List",
"created": "20150117152418000",
"modified": "20150124205659000",
"tags": "Concepts",
"text": "A <<.def \"title list\">> is a line of text that presents one or more tiddler titles, strung together with a space between each one and the next.\n\nIf a title <<.em contains>> a space, it needs double square brackets around it:\n\n`GettingStarted [[Discover TiddlyWiki]] Upgrading`\n\nTitle lists are used in various places, including PermaLinks and the ListField.\n\nThey are in fact the simplest case of a [[filter|Filters]], and are thus a way of expressing a [[selection of titles|Title Selection]].\n"
},
"Title Selection": {
"title": "Title Selection",
"created": "20150117152418000",
"modified": "20150124202920000",
"tags": "Concepts",
"text": "A <<.def \"title selection\">> is an ordered set of tiddler titles (or similar strings), in which no title appears more than once.\n\nTitle selections are important in [[filter|Filters]] processing.\n\nThe simplest way to write one down is as a [[title list|Title List]].\n"
},
"Transclusion": {
"title": "Transclusion",
"created": "20141129194651420",
"modified": "20141130195444237",
"tags": "Concepts",
"text": "[[Transclusion|http://en.wikipedia.org/wiki/Transclusion]] is the process of referencing one tiddler \"A\" from another tiddler \"B\" such that the content of \"A\" appears to be a part of \"B\".\n\nCopying and pasting content creates multiple copies of the same content in several different places. With transclusion, there can be a single copy and a special instruction in \"B\" which indicates the point at which content should be inserted from tiddler \"A\".\n\nNote that if the content of \"A\" is modified then the modification automatically appears in \"B\". This makes it easier to maintain repetitive content, by allowing every piece to be written in a single place, but viewed from many.\n\nThe concept of transclusion plays an important role in the [[Philosophy of Tiddlers]] because it is the primary way in which small items of content are combined.\n\nTo learn more:\n\n* [[Transclusion in WikiText]]\n* [[Transclusion Basic Usage]]\n* [[Transclusion with Templates]]\n* [[Transclusion and Substitution]]\n* TextReference\n* TemplateTiddlers\n* TranscludeWidget\n"
},
"Wiki": {
"title": "Wiki",
"tags": "Concepts",
"text": "Groups of uniquely titled tiddlers are contained in WikiStore objects.\n\nThe WikiStore also manages the plugin modules used for widgets, and operations like serializing, deserializing, parsing and rendering tiddlers.\n"
},
"WikiText": {
"title": "WikiText",
"created": "20131205155227468",
"modified": "20140919191220377",
"tags": "Concepts Reference",
"type": "text/vnd.tiddlywiki",
"text": "~WikiText is a concise, expressive way of typing a wide range of text formatting, hypertext and interactive features. It allows you to focus on writing without a complex user interface getting in the way. It is designed to be familiar for users of [[MarkDown|http://daringfireball.net/projects/markdown/]], but with more of a focus on linking and the interactive features.\n\n~WikiText can also be inserted to the text field using the [[Editor toolbar]].\n\nSee [[Formatting text in TiddlyWiki]] for an introduction to WikiText.\n\nThe following elements of WikiText syntax are built into the core:\n\n<<list-links \"[tag[WikiText]]\">>\n"
},
"Configuring startup tiddlers": {
"title": "Configuring startup tiddlers",
"created": "20180305174809089",
"modified": "20180306161405033",
"tags": "[[Customise TiddlyWiki]]",
"type": "text/vnd.tiddlywiki",
"text": "You can configure ~TiddlyWiki to start up using whatever individual or group of tiddlers you want using the [[default tiddlers|DefaultTiddlers]] mechanism.\n\nIn the control panel under the info tab is an input field labeled \"Choose which tiddlers are displayed at startup\". You can list whatever tiddlers you want to open at startup. Use double square brackets for titles containing spaces. For example:\n\n```\nFirstTiddler\nSecondTiddler\n[[Third Tiddler]]\n```\n\nYou can also use [[filter expressions|Filter Expression]] to open more than one tiddler. For example:\n\n```\n[tag[HelloThere]]\n```\n\nwill open all tiddlers tagged as <<tag HelloThere>>. \n\nYou can also use this technique to [[preserve open tiddlers at startup|Preserving open tiddlers at startup]]"
},
"Customise TiddlyWiki": {
"title": "Customise TiddlyWiki",
"tags": "TableOfContents",
"created": "201409041016",
"modified": "201409041016",
"list": "[[Initial customisation]]",
"text": "Information about customising TiddlyWiki\n\n<<list-links \"[tag[Customise TiddlyWiki]]\">>\n"
},
"Customising search results": {
"title": "Customising search results",
"created": "20141027151552783",
"modified": "20141027151947305",
"tags": "[[Customise TiddlyWiki]]",
"type": "text/vnd.tiddlywiki",
"text": "By default, the results for the sidebar search box are displayed as a simple list of tiddler titles. The search results can be customised by adding plugin visualisations that show the search results in different ways. (Tabs are shown automatically if an additional search result visualisation is detected).\n\nSearch result visualisations are stored in tiddlers tagged [[$:/tags/SearchResults]]. The default search result listing is implemented in the system tiddler [[$:/core/ui/DefaultSearchResultList]].\n\nTo create a new search result visualisation:\n\n# Create a new tiddler tagged [[$:/tags/SearchResults]]\n# Use the widget variable ''searchTiddler'' to access the title of the tiddler containing the current search term\n\nIf you'd like the new visualisation to be the default, create a tiddler called [[$:/config/SearchResults/Default]] containing the title of the tiddler containing the search visualisation that you want to display by default.\n\nHere is an example of an alternative visualisation that displays results in reverse chronological order:\n\n```\n\\define searchResults()\n<$set name=\"resultCount\" value=\"\"\"<$count filter=\"[!is[system]search{$(searchTiddler)$}]\"/>\"\"\">\n\n{{$:/language/Search/Matches}}\n\n</$set>\n<<timeline subfilter:\"!is[system]search{$(searchTiddler)$}\">>\n\\end\n<<searchResults>>\n```\n\n"
},
"Page and tiddler layout customisation": {
"title": "Page and tiddler layout customisation",
"tags": "[[Customise TiddlyWiki]]",
"created": "201411201253",
"modified": "201411201253",
"text": "One major feature of TiddlyWiki that many new users are unaware of is the degree to which TiddlyWiki can be customised, just by adding or removing SystemTags in key shadow tiddlers or in your own custom tiddlers. \n\n* You can add and remove default features in tiddlers in either viewing or editing mode (let's say you find the tiddler subtitle distracting, or you want to add yourself a reminder that you will see when you edit tiddlers)\n* You can also add and remove default features from the general page layout (maybe you want to add a clock to the sidebar, or replace one of the page control buttons with your own)\n* You can also rearrange the order in which these features are displayed (perhaps you would like tags above tiddler titles, or the subtitle of your TiddlyWiki below the page control buttons)\n\nOnce you know what you are doing, all of these things are actually pretty easy to do.\n\n! Adding custom-made tiddlers to the user interface\n\nYou can also create any tiddler you want and tag it with the appropriate SystemTag, and it will appear in that place. For example, if you create a tiddler 'Reminder to self', add the text 'This is a reminder' and tag it `$:/tags/EditTemplate`, the words 'This is a reminder' will appear inside every tiddler when you edit it.\n\nWhen you add new tiddlers to be displayed within tiddlers or within the page layout, you will also probably need to reposition it so that it appears precisely where you want it to appear. To do this, edit the appropriate shadow tiddler with the prefix `$:/tags/`, and insert the title of your tiddler in the proper place in the list field. For example, if you want the words 'This is a reminder' from the example above to appear above the tags editor in editing mode, edit the tiddler $:/tags/EditTemplate, go to the 'list' field, and insert `[[Reminder to self]]` right before `$:/core/ui/EditTemplate/tags`. \n\n! Creating new buttons for the ViewToolbar and page controls\n\nLet's say you have a skeleton tiddler called 'Recipe template', and you want to have a button available in the tiddler ViewToolbar to create new recipe tiddlers on demand. This will require the following steps:\n\n# You will want an image for your button. If none of the core images (shadow tiddlers with the prefix $:/core/images/) work for you, then you will need to create or acquire an SVG image (for example, one of the images at http://flaticon.com), drag it into your file so that it becomes a tiddler, edit the tiddler and adjust the height and width to 22px\n# You will want to create the tiddler that contains your tiddler. Create it, title it, and add the button code (see the code at the bottom of this tiddler for an example, with hints where you will need to adapt it). Tag it [[$:/tags/ViewToolbar]]\n# You will need to create a tiddler that tells TiddlyWiki whether your button should be visible in the toolbar or hidden. Let's title it [[$:/config/ViewToolbarButtons/Visibility/Recipe]]. Type `reveal` into the text area, and save.\n# You will want to position the button properly. Open the tiddler $:/tags/ViewToolbar and insert your button tiddler's title in the appropriate place in the list field.\n\n```\n\\define newHereButtonTags()\n[[$(currentTiddler)$]]\n\\end\n\\define newHereButton()\n<$button class=<<tv-config-toolbar-class>>>\n<$action-sendmessage\n $message=\"tm-new-tiddler\"\n$param=\"TITLE OF YOUR SKELETON BUTTON\"\ntitle=\"New tiddler\"\n tags=<<newHereButtonTags>> />\n<$list filter=\"[<tv-config-toolbar-icons>prefix[yes]]\">\n{{TITLE OF YOUR SVG IMAGE TIDDLER}}\n</$list>\n<$list filter=\"[<tv-config-toolbar-text>prefix[yes]]\">\n<span class=\"tc-btn-text\"><$text text=\"CAPTION FOR YOUR BUTTON\"/></span>\n</$list>\n</$button>\n\\end\n\n<<newHereButton>>\n```\n\n! Removing shadow tiddlers from the user interface\n\nIn the More > Shadows tab you will find a list of all the shadow tiddlers. In this list you will find many tiddlers with the prefix `$:/core/ui/`. These are the core tiddlers that define the user interface. These tiddlers are tagged with SystemTags, and removing or adding these tags will adjust the tiddler and page layouts.\n\nFor example, $:/core/ui/SideBar/More is the tiddler for the More tab in the Sidebar, and it is tagged with the SystemTag `$:/tags/SideBar` so that it appears in the Sidebar. Removing the tag from that tiddler will remove the More tab from the Sidebar, and reinserting the Sidebar tag to that tiddler will make it reappear in the Sidebar. \n\nYou can use the same process for any of the core user interface tiddlers with the $:/core/ui/ prefix. For example, removing the SystemTag `$:/tags/ViewTemplate` from the tiddler `$:/core/ui/ViewTemplate/subtitle` will remove the subtitles from all tiddlers.\n\nIf you modify a shadow tiddler in this way you will overwrite the pre-installed value. If you want to revert, just delete the modified tiddler to restore the underlying shadow tiddler.\n"
},
"BT": {
"title": "BT",
"created": "201311010911",
"modified": "201311010911",
"text": "BT (née British Telecom) is the UK's largest telecommunications company. In 2007, [[Osmosoft]] was acquired by BT. JeremyRuston subsequently left BT in 2011.\n"
},
"Base64": {
"title": "Base64",
"created": "20150221180826000",
"modified": "20150221181700000",
"tags": "Definitions",
"type": "text/vnd.tiddlywiki",
"text": "<<.dlink-ex Base64 \"http://en.wikipedia.org/wiki/Base64\">> is a way of representing binary data, such an image, as a string of text.\n"
},
"CamelCase": {
"title": "CamelCase",
"created": "201308281853",
"modified": "201308281853",
"tags": "Definitions",
"text": "CamelCase is formed by taking a phrase, capitalising the initial letter of each word, and smashing the words together to form a portmanteau word. Most wikis use CamelCase to signal phrases that should automatically become links.\n"
},
"Cascading Style Sheets": {
"title": "Cascading Style Sheets",
"created": "20150221120651000",
"modified": "20150221181705000",
"tags": "Definitions",
"type": "text/vnd.tiddlywiki",
"text": "<<.dlink-ex CSS \"http://en.wikipedia.org/wiki/Cascading_Style_Sheets\">> is a standard plain-text format used for defining the presentational style of the various elements on a web page.\n"
},
"Comma-Separated Values": {
"title": "Comma-Separated Values",
"created": "20150221120117000",
"modified": "20150221181310000",
"tags": "Definitions",
"type": "text/vnd.tiddlywiki",
"text": "<<.dlink-ex CSV \"http://en.wikipedia.org/wiki/Comma-separated_values\">> is a standard plain-text format for storing a table of data.\n\nEach row of the table is called a <<.def record>> and occupies one line.\n\nThe columns are called <<.def fields>>. Each field of a row is separated from the next by a comma, and is often delimited by quotation marks.\n\nThe <<.mlink csvtiddlers>> macro returns tiddler content in this format.\n"
},
"ContentType": {
"title": "ContentType",
"created": "20130828185900000",
"modified": "20150221120839000",
"tags": "Definitions",
"type": "text/vnd.tiddlywiki",
"text": "Used in Internet protocols to indicate the type that should be used to interpret the content of a web resource.\n\nIn TiddlyWiki, the `type` field gives the content type to apply to the main `text` field.\n\n!! List of Common Content Types\n\n|!Group |!Type |!Content of `type` field |\n|^''Developer'' |Data dictionary |application/x-tiddler-dictionary|\n|~|~JavaScript code |application/javascript|\n|~|JSON data |application/json|\n|~|Static stylesheet |text/css|\n|^''Image''|GIF image |image/gif|\n|~|ICO format icon file |image/x-icon|\n|~|JPEG image |image/jpeg|\n|~|PDF image |application/pdf|\n|~|PNG image |image/png|\n|~|Structured Vector Graphics image |image/svg+xml|\n|^''Text''|HTML markup |text/html|\n|~|[[CSS|Cascading Style Sheets]] stylesheet |text/css|\n|~|[[Comma-separated values|Comma-Separated Values]] |text/csv|\n|~|Plain text |text/plain|\n|~|~TiddlyWiki 5 |text/vnd.tiddlywiki|\n|~|~TiddlyWiki Classic |text/x-tiddlywiki|\n"
},
"Data URI": {
"title": "Data URI",
"created": "20150221161803000",
"modified": "20150221181711000",
"tags": "Definitions",
"type": "text/vnd.tiddlywiki",
"text": "A <<.dlink-ex \"data URI\" \"http://en.wikipedia.org/wiki/Data_URI_scheme\">> is a way of storing data (such as an image) in a way that is compatible with the addresses used by web pages and [[stylesheets|Cascading Style Sheets]] to access external resources.\n\nThe <<.mlink datauri>> macro can be used to generate data URIs within ~TiddlyWiki.\n"
},
"Definitions": {
"title": "Definitions",
"color": "#7bb95d",
"created": "201308251451",
"modified": "201308251451",
"tags": "Reference",
"type": "text/vnd.tiddlywiki",
"text": "These are definitions of technical words and phrases used in this documentation. (As distinct from the [[Concepts]] that make up TiddlyWiki itself).\n\n<<list-links \"[tag[Definitions]]\">>\n"
},
"Document Object Model": {
"title": "Document Object Model",
"created": "20150228133106000",
"modified": "20150228134018000",
"tags": "Definitions",
"type": "text/vnd.tiddlywiki",
"text": "The <<.dlink-ex DOM \"http://en.wikipedia.org/wiki/Document_Object_Model\">> of a web page is a tree-shaped model of its content, maintained internally by the web browser as the user interacts with that content. Each point in the tree is called a <<.def node>>.\n\nWhen ~TiddlyWiki is running in a web browser, its [[widgets|Widgets]] are rendered into DOM nodes for display.\n\nWhen ~TiddlyWiki is running on [[Node.js|TiddlyWiki on Node.js]], it uses a fake DOM to simulate the behaviour of a browser.\n"
},
"Federatial": {
"title": "Federatial",
"created": "20130825154900000",
"modified": "20170718160846820",
"tags": "Definitions",
"type": "text/vnd.tiddlywiki",
"text": "Federatial Limited is a software consultancy founded by JeremyRuston, the creator of TiddlyWiki. Federatial helps organisations explore new user interaction concepts through rapid prototyping of sophisticated web-based tools.\n\nSee https://federatial.com/ and https://twitter.com/federatial for more information.\n"
},
"GitHub": {
"title": "GitHub",
"created": "20140910212609354",
"modified": "20190408173002622",
"tags": "Definitions",
"type": "text/vnd.tiddlywiki",
"text": "GitHub is a hosting service for distributed projects that use git as their version-control system. It allows free hosting and management of open-source projects and facilitates collaborative developement on the source code. Using GitHub for non-open-source endeavors requires additional fees.\n\nThe code and documentation of TiddlyWiki is hosted on GitHub at:\n\nhttps://github.com/Jermolene/TiddlyWiki5\n\nGitHub also offer a free web hosting service called [[GitHub Pages|https://pages.github.com/]] that can be used directly from the single file configuration. See [[Saving to GitHub]].\n"
},
"GuerillaWiki": {
"title": "GuerillaWiki",
"created": "20140817140917462",
"modified": "20140817141027417",
"tags": "Definitions",
"type": "text/vnd.tiddlywiki",
"text": "TiddlyWiki makes a great GuerillaWiki in situations where it is not practical to use a traditional wiki.\n\nFor instance, in a corporate setting, persuading an over-worked IT department to install a Wiki server for you is seldom going to be possible overnight. And if your PC is locked down you can't install a conventional Wiki yourself. Equally, you can't go and use one of the public hosted Wiki services because your Information Security department would not allow all that corporate data to flow into an outside server.\n\nTiddlyWiki slices through those barriers by being usable on virtually all PCs.\n"
},
"HyperText Markup Language": {
"title": "HyperText Markup Language",
"created": "20150228132723000",
"modified": "20150228133925000",
"tags": "Definitions",
"type": "text/vnd.tiddlywiki",
"text": "<<.dlink-ex HTML \"http://en.wikipedia.org/wiki/HTML\">> is a standard plain-text format used for defining the content of a web page.\n\nIt consists of a tree of elements expressed using a system of special <<.def tags>> enclosed in angle brackets.\n\nAlmost the whole of HTML can be used unchanged in the WikiText of a tiddler.\n"
},
"JavaScript Object Notation": {
"title": "JavaScript Object Notation",
"created": "20150221152904000",
"modified": "20150221181720000",
"tags": "Definitions",
"type": "text/vnd.tiddlywiki",
"text": "<<.dlink-ex JSON \"http://en.wikipedia.org/wiki/JSON\">> is a standard plain-text format used for modelling hierarchical structures of objects that contain named fields.\n\nDataTiddlers can have JSON content.\n\nThe <<.mlink jsontiddlers>> macro returns tiddler content in JSON format.\n"
},
"JavaScript": {
"title": "JavaScript",
"created": "20130825142100000",
"modified": "20140211195324716",
"tags": "Definitions",
"type": "text/vnd.tiddlywiki",
"text": "~JavaScript is a computer language that was originally introduced by browsers as a way of scripting web pages. At first it was considered a poorly designed toy, but over the years has become recognised as a powerful language in its own right, and has been adopted widely beyond the browser.\n\n~JavaScript looks like this:\n\n```\nfunction circleArea(radius) {\n\treturn radius * 2 * 3.141592653;\n}\n```\n"
},
"JeremyRuston": {
"title": "JeremyRuston",
"created": "20130825162500000",
"modified": "20170920131119498",
"tags": "Definitions",
"type": "text/vnd.tiddlywiki",
"text": "I'm the original inventor of TiddlyWiki. You can hire me through [[Federatial]], and find me on these services:\n\n* jeremy (at) jermolene (dot) com\n* [[Jermolene on GitHub|https://github.com/Jermolene]]\n* [[Jermolene on GitTip|https://www.gittip.com/Jermolene/]], a micropayment service\n* [[@Jermolene on Twitter|http://twitter.com/#!/jermolene]]\n* [[Jermy on LinkedIn|http://www.linkedin.com/in/jermy]]\n* [[Jermy on Flickr|http://www.flickr.com/photos/jermy/]]\n\nFurther information:\n\n* An [[interview with me in The Inquirer|http://www.theinquirer.net/inquirer/feature/2105529/bt-software-engineer-tells-telco-source]] by Wendy Grossman\n* A [[hilarious interview with me|https://www.youtube.com/watch?v=auyIhw8MTmQ]] from British television in 1983\n* Here's a video of a presentation I did in 2007 called [[\"How to Start an Open Source Project\"|http://vimeo.com/856110]].\n"
},
"Jermolene": {
"title": "Jermolene",
"created": "201308281902",
"modified": "201308281902",
"tags": "Definitions",
"text": "Alias for JeremyRuston."
},
"Keyboard Shortcut Descriptor": {
"title": "Keyboard Shortcut Descriptor",
"tags": "Definitions",
"text": "`Keyboard Shortcut Descriptors` are used by the [[KeyboardWidget]] and within Tiddlers tagged <<tag-pill $:/tags/KeyboardShortcut>> to link actions with a keyboard combination\n\nA `Keyboard Shortcut Descriptor` has the following format:\n\n```\n\tctrl+enter\n\tctrl+shift+alt+A\n\talt-shift-T\n\talt-Space\n```\n\nIt can have multiple Key combinations:\n\n```\nctrl+enter alt+shift+A ctrl+alt+9 alt-Space ctrl-Backspace\n```\n\nThere are ''two ways'' Keyboard Shortcut Descriptors can be used:\n\n* directly\n** passing the attribute `key=\"ctrl-enter\"` to the KeyboardWidget\n** setting `ctrl-enter` as the ''value'' of the `key` ''field'' in a Tiddler tagged <<tag-pill $:/tags/KeyboardShortcut>>\n* with a ''reference'' to a configuration Tiddler\n** A ''configuration Tiddler'' for Keyboard Shortcuts follows some naming rules:\n*** The title starts with `$:/config/`\n*** Followed by either the string `shortcuts` or one of the following ''platform descriptors'':\n**** <<.tid shortcuts-linux>>\n**** <<.tid shortcuts-not-linux>>\n**** <<.tid shortcuts-mac>>\n**** <<.tid shortcuts-not-mac>>\n**** <<.tid shortcuts-windows>>\n**** <<.tid shortcuts-not-windows>>\n*** The title ends with another `/` followed by a suffix that can be chosen freely\n**** This suffix is the ''identifier'' for the `Keyboard Shortcut Descriptor` (A)\n** The ''reference'' to the configuration Tiddler is made of `((` + the ''identifier'' (A) + `))`\n*** Example: `((my-shortcut))` is the ''reference'' to these configuration Tiddlers:\n**** <<.tid $:/config/shortcuts/my-shortcut>>\n**** <<.tid $:/config/shortcuts-linux/my-shortcut>>\n**** <<.tid $:/config/shortcuts-not-linux/my-shortcut>>\n**** <<.tid $:/config/shortcuts-mac/my-shortcut>>\n**** <<.tid $:/config/shortcuts-not-mac/my-shortcut>>\n**** <<.tid $:/config/shortcuts-windows/my-shortcut>>\n**** <<.tid $:/config/shortcuts-not-windows/my-shortcut>>\n** Finally, the referenced configuration Tiddler stores the Keyboard Shortcut Descriptor in its ''text'' field\n"
},
"MathML": {
"title": "MathML",
"created": "20130901213100000",
"modified": "20140919161635814",
"tags": "Definitions Features",
"type": "text/vnd.tiddlywiki",
"text": "MathML is a markup language for mathematical notation that can be used with HTML.\n\nIf your browser supports it, MathML elements can be used in TiddlyWiki5 WikiText just like HTML.\n\nHere is an example MathML equation from [[the W3C|http://www.w3.org/Math/XSL/csmall2.xml]]:\n\n```\n<math><mrow><mo>[</mo><mtable><mtr><mtd><mn>0</mn></mtd><mtd><mn>1</mn></mtd><mtd><mn>0</mn></mtd></mtr><mtr><mtd><mn>0</mn></mtd><mtd><mn>0</mn></mtd><mtd><mn>1</mn></mtd></mtr><mtr><mtd><mn>1</mn></mtd><mtd><mn>0</mn></mtd><mtd><mn>0</mn></mtd></mtr></mtable><mo>]</mo></mrow></math>\n```\n\nRenders as:\n\n<math><mrow><mo>[</mo><mtable><mtr><mtd><mn>0</mn></mtd><mtd><mn>1</mn></mtd><mtd><mn>0</mn></mtd></mtr><mtr><mtd><mn>0</mn></mtd><mtd><mn>0</mn></mtd><mtd><mn>1</mn></mtd></mtr><mtr><mtd><mn>1</mn></mtd><mtd><mn>0</mn></mtd><mtd><mn>0</mn></mtd></mtr></mtable><mo>]</mo></mrow></math>\n"
},
"NW.js": {
"title": "NW.js",
"created": "20150310165059118",
"modified": "20150310165059118",
"tags": "Definitions",
"type": "text/vnd.tiddlywiki",
"text": "NW.js is an OpenSource application that fuses the functionality of a web browser with that of [[Node.js]]. It makes it possible to use web applications as though they were native apps, with full access to the file system and other native facilities. Learn more from the [[official site|https://github.com/nwjs/nw.js]] or [[this introductory blog post|http://net.tutsplus.com/tutorials/javascript-ajax/introduction-to-html5-desktop-apps-with-node-webkit/]].\n\nSee [[TiddlyWiki on NW.js]] for details of how to use TiddlyWiki with NW.js.\n\n"
},
"Node.js": {
"title": "Node.js",
"created": "20131129094739786",
"modified": "20140211195455541",
"tags": "Definitions",
"type": "text/vnd.tiddlywiki",
"text": "''Node.js'' is a downloadable application for your PC, Mac or Linux computer that lets it run JavaScript applications. Unlike ~JavaScript applications running in a web browser, Node.js code has full access to the file system and other resources of the computer, enabling it to perform the roles that have traditionally been the preserve of languages like Java, PHP and Python. See http://nodejs.org for more details.\n\nFor ~TiddlyWiki, Node.js means that we can have a single code base that can run in the browser or on the server, giving great flexibility in how it is used.\n\nFor end users, Node.js is no more complicated to install than a web browser, but unlocks powerful capabilities such as the ability to run ~TiddlyWiki as a web server that you can connect to from other devices.\n\nSee [[TiddlyWiki on Node.js]] for more details.\n"
},
"OpenSource": {
"title": "OpenSource",
"created": "201308251307",
"modified": "201308251307",
"tags": "Definitions",
"text": "OpenSource is [[defined by Wikipedia|http://en.wikipedia.org/wiki/Open_source]] as //a philosophy, or pragmatic methodology that promotes free redistribution and access to an end product's design and implementation details//.\n\n"
},
"Osmosoft": {
"title": "Osmosoft",
"created": "201311010913",
"modified": "201311010924",
"text": "Founded in 2004 by JeremyRuston, Osmosoft was originally a consultancy for software services around TiddlyWiki. Notable engagements included working with Socialtext on [[Socialtext Unplugged|https://www.socialtext.net/open/socialtext_unplugged]].\n\nIn 2007, Osmosoft was acquired by [[BT]] and became the champions for open source within the enterprise. As part of BT, Osmosoft has worked on a diverse range of projects within BT and for BT's customers.\n\nSee http://osmosoft.com/\n"
},
"Percent Encoding": {
"title": "Percent Encoding",
"created": "20150228131248000",
"modified": "20150228131522000",
"tags": "Definitions",
"type": "text/vnd.tiddlywiki",
"text": "<<.dlink-ex \"Percent encoding\" \"http://en.wikipedia.org/wiki/Percent-encoding\">> is a notation that allows otherwise invalid characters to be included in a [[URI]].\n\nSuch characters are represented as a percent sign `%` followed by two additional characters.\n\nFor example, a space is represented as `%20` and an actual percent sign is represented as `%25`.\n"
},
"Quine": {
"title": "Quine",
"created": "20171110100048967",
"modified": "20171110100146695",
"tags": "Definitions",
"type": "text/vnd.tiddlywiki",
"text": "Wikipedia [[defines a Quine|http://en.wikipedia.org/wiki/Quine_(computing)]] as //a computer program which takes no input and produces a copy of its own source code as its only output//.\n\nTiddlyWiki is an unusual example of a practical quine: it is this ability to produce a copy of its own source code that lies at the heart of TiddlyWiki's ability to independently save changes to itself.\n\n\"Quine\" is also the name of [[the unofficial TiddlyWiki application for iPhone/iPad|Saving on iPad/iPhone]]"
},
"SingleFileApplication": {
"title": "SingleFileApplication",
"created": "20130822174000000",
"modified": "20140126160359657",
"tags": "Definitions",
"type": "text/vnd.tiddlywiki",
"text": "A single file application is a web application where all of the assets are delivered in a single static file. This means that it can be downloaded and used offline without losing functionality. It can also be hosted on almost any type of web server.\n\nTiddlyWiki is an unusual single file application because it stores its data within the same file, and is capable of saving changes to itself.\n\nEvery single file application must also by definition be a SinglePageApplication, but the converse is not true.\n"
},
"SinglePageApplication": {
"title": "SinglePageApplication",
"created": "201308221739",
"modified": "201308231751",
"tags": "Definitions",
"text": "As defined by Wikipedia, a SinglePageApplication is a web application that presents itself as a single HTML document that dynamically loads additional content as the user browses the site. Frequently, single page applications are carefully designed to hide their nature, appearing and functioning as an ordinary static website by respecting the address bar and the back/forward navigation controls.\n\nUnusually, TiddlyWiki is also a SingleFileApplication.\n"
},
"Stanford JavaScript Crypto Library": {
"title": "Stanford JavaScript Crypto Library",
"created": "20150624235333601",
"modified": "20150624235400799",
"tags": "Definitions",
"url": "http://bitwiseshiftleft.github.io/sjcl/",
"text": "The Stanford Javascript Crypto Library is a project by the Stanford Computer Security Lab to build a secure, powerful, fast, small, easy-to-use, cross-browser library for cryptography in Javascript.\n\n{{!!url}}"
},
"TiddlyDesktop": {
"title": "TiddlyDesktop",
"created": "20140126125259638",
"modified": "20171118195316103",
"tags": "Definitions Platforms",
"type": "text/vnd.tiddlywiki",
"text": "TiddlyDesktop is an app for working with TiddlyWiki files (both TiddlyWikiClassic and TiddlyWiki version 5). It can be installed on Windows, Mac OS X or Linux. It is compatible with TiddlyWiki version 5 and the older TiddlyWikiClassic.\n\n{{Saving on TiddlyDesktop}}\n\n{{Introducing TiddlyDesktop Video}}\n\n! Source\n\nTiddlyDesktop is based on the OpenSource project [[NW.js]]. The source is on GitHub:\n\nhttps://github.com/Jermolene/TiddlyDesktop/\n\nSee [[TiddlyDesktop Releases]] and [[How to Customize TiddlyDesktop]]"
},
"TiddlyFox": {
"title": "TiddlyFox",
"created": "20130825161100000",
"modified": "20171110094548887",
"tags": "Definitions",
"type": "text/vnd.tiddlywiki",
"text": "TiddlyFox is an extension for older versions of Firefox that allows standalone TiddlyWiki files to save their changes directly to the file system. TiddlyFox works on both desktop and smartphone versions of [[Firefox]]. See [[Saving with TiddlyFox]] or [[Saving with TiddlyFox on Android]] for detailed instructions.\n\nTiddlyFox is now obsolete due to its incompatibility with the latest versions of Firefox - see [[Firefox Apocalypse]]. There are many alternatives to TiddlyFox, but none that work in precisely the same way -- see GettingStarted for details.\n\nTiddlyFox can be downloaded from the Mozilla Addons site:\n\nhttps://addons.mozilla.org/en-GB/firefox/addon/tiddlyfox/\n\n<<<\nYou can also install the latest development version of TiddlyFox direct from GitHub:\n\nhttps://github.com/TiddlyWiki/TiddlyFox/raw/master/tiddlyfox.xpi\n<<<\n"
},
"TiddlyIE": {
"title": "TiddlyIE",
"created": "20131211220000000",
"modified": "20131211224200000",
"tags": "Definitions",
"type": "text/vnd.tiddlywiki",
"text": "TiddlyIE is an extension for Internet Explorer that allows standalone TiddlyWiki files to save their changes directly to the file system. TiddlyIE works with the desktop version of Internet Explorer.\n\nSee [[Saving with TiddlyIE]]."
},
"TiddlySpace": {
"title": "TiddlySpace",
"created": "20130830084200000",
"modified": "20180421162644074",
"tags": "Definitions",
"type": "text/vnd.tiddlywiki",
"text": "TiddlySpace was a public TiddlyWiki hosting service that operated from 2010 until 2016.\n\nTiddlySpace, and the underlying TiddlyWeb, was originally sponsored by [[Osmosoft]] at [[BT]].\n"
},
"TiddlyWeb": {
"title": "TiddlyWeb",
"created": "201308300841",
"modified": "20170127221451610",
"tags": "Definitions",
"text": "TiddlyWeb is a reference implementation for an interface to put [[Tiddlers]] on the web.\n\nIt was created by a team led by Chris Dent at [[Osmosoft]] under [[BT]] from 2008 to 2012. \n\nhttp://tiddlyweb.com/\n\nTiddlyWeb can be used to host TiddlyWiki and TiddlyWiki5 wikis, making the individual tiddlers available over a flexible HTTP API.\n\nOther implementations of the API include:\n\n* [[TiddlyWiki App Engine Server|https://github.com/rsc/tiddly]], a 300-line Go implementation from Russ Cox\n* [[TiddlyWiki 5 server module|https://github.com/Jermolene/TiddlyWiki5/blob/master/core/modules/commands/server.js]], the bare-bones subset of the API implemented in TiddlyWiki version 5 for Node.js\n\nAs of early 2017, none is currently as complete as TiddlyWeb itself.\n"
},
"TiddlyWikiClassic": {
"title": "TiddlyWikiClassic",
"created": "20131222152210279",
"modified": "20140105163248574",
"tags": "Definitions",
"type": "text/vnd.tiddlywiki",
"text": "\"~TiddlyWiki Classic\" refers to versions prior to 5.0, before TiddlyWiki was completely rewritten from the ground up. TiddlyWiki Classic is still being maintained at:\n\nhttps://classic.tiddlywiki.com/\n"
},
"URI": {
"title": "URI",
"created": "20150228113450000",
"modified": "20150228113654000",
"tags": "Definitions",
"type": "text/vnd.tiddlywiki",
"text": "A <<.dlink-ex \"URI\" \"http://en.wikipedia.org/wiki/Uniform_resource_identifier\">> (also often known as a <<.def URL>>) is a string of characters used to specify the location of a resource such as a web page.\n"
},
"node-webkit": {
"title": "node-webkit",
"created": "20140101164042231",
"modified": "20150310165059118",
"type": "text/vnd.tiddlywiki",
"text": "\"node-webkit\" was the original name for the project now known as [[NW.js]].\n"
},
"Alice in Wonderland": {
"title": "Alice in Wonderland",
"tags": "external-text",
"text": "//Included here as a demonstration of ExternalText text support. See the bottom for the license from Project Gutenberg//\n\n---\n\n# ALICE'S ADVENTURES IN WONDERLAND\n\n## Lewis Carroll\n\nTHE MILLENNIUM FULCRUM EDITION 3.0\n\n!!! CHAPTER I. Down the Rabbit-Hole\n\nAlice was beginning to get very tired of sitting by her sister on the\nbank, and of having nothing to do: once or twice she had peeped into the\nbook her sister was reading, but it had no pictures or conversations in\nit, 'and what is the use of a book,' thought Alice 'without pictures or\nconversations?'\n\nSo she was considering in her own mind (as well as she could, for the\nhot day made her feel very sleepy and stupid), whether the pleasure\nof making a daisy-chain would be worth the trouble of getting up and\npicking the daisies, when suddenly a White Rabbit with pink eyes ran\nclose by her.\n\nThere was nothing so VERY remarkable in that; nor did Alice think it so\nVERY much out of the way to hear the Rabbit say to itself, 'Oh dear!\nOh dear! I shall be late!' (when she thought it over afterwards, it\noccurred to her that she ought to have wondered at this, but at the time\nit all seemed quite natural); but when the Rabbit actually TOOK A WATCH\nOUT OF ITS WAISTCOAT-POCKET, and looked at it, and then hurried on,\nAlice started to her feet, for it flashed across her mind that she had\nnever before seen a rabbit with either a waistcoat-pocket, or a watch\nto take out of it, and burning with curiosity, she ran across the field\nafter it, and fortunately was just in time to see it pop down a large\nrabbit-hole under the hedge.\n\nIn another moment down went Alice after it, never once considering how\nin the world she was to get out again.\n\nThe rabbit-hole went straight on like a tunnel for some way, and then\ndipped suddenly down, so suddenly that Alice had not a moment to think\nabout stopping herself before she found herself falling down a very deep\nwell.\n\nEither the well was very deep, or she fell very slowly, for she had\nplenty of time as she went down to look about her and to wonder what was\ngoing to happen next. First, she tried to look down and make out what\nshe was coming to, but it was too dark to see anything; then she\nlooked at the sides of the well, and noticed that they were filled with\ncupboards and book-shelves; here and there she saw maps and pictures\nhung upon pegs. She took down a jar from one of the shelves as\nshe passed; it was labelled 'ORANGE MARMALADE', but to her great\ndisappointment it was empty: she did not like to drop the jar for fear\nof killing somebody, so managed to put it into one of the cupboards as\nshe fell past it.\n\n'Well!' thought Alice to herself, 'after such a fall as this, I shall\nthink nothing of tumbling down stairs! How brave they'll all think me at\nhome! Why, I wouldn't say anything about it, even if I fell off the top\nof the house!' (Which was very likely true.)\n\nDown, down, down. Would the fall NEVER come to an end! 'I wonder how\nmany miles I've fallen by this time?' she said aloud. 'I must be getting\nsomewhere near the centre of the earth. Let me see: that would be four\nthousand miles down, I think--' (for, you see, Alice had learnt several\nthings of this sort in her lessons in the schoolroom, and though this\nwas not a VERY good opportunity for showing off her knowledge, as there\nwas no one to listen to her, still it was good practice to say it over)\n'--yes, that's about the right distance--but then I wonder what Latitude\nor Longitude I've got to?' (Alice had no idea what Latitude was, or\nLongitude either, but thought they were nice grand words to say.)\n\nPresently she began again. 'I wonder if I shall fall right THROUGH the\nearth! How funny it'll seem to come out among the people that walk with\ntheir heads downward! The Antipathies, I think--' (she was rather glad\nthere WAS no one listening, this time, as it didn't sound at all the\nright word) '--but I shall have to ask them what the name of the country\nis, you know. Please, Ma'am, is this New Zealand or Australia?' (and\nshe tried to curtsey as she spoke--fancy CURTSEYING as you're falling\nthrough the air! Do you think you could manage it?) 'And what an\nignorant little girl she'll think me for asking! No, it'll never do to\nask: perhaps I shall see it written up somewhere.'\n\nDown, down, down. There was nothing else to do, so Alice soon began\ntalking again. 'Dinah'll miss me very much to-night, I should think!'\n(Dinah was the cat.) 'I hope they'll remember her saucer of milk at\ntea-time. Dinah my dear! I wish you were down here with me! There are no\nmice in the air, I'm afraid, but you might catch a bat, and that's very\nlike a mouse, you know. But do cats eat bats, I wonder?' And here Alice\nbegan to get rather sleepy, and went on saying to herself, in a dreamy\nsort of way, 'Do cats eat bats? Do cats eat bats?' and sometimes, 'Do\nbats eat cats?' for, you see, as she couldn't answer either question,\nit didn't much matter which way she put it. She felt that she was dozing\noff, and had just begun to dream that she was walking hand in hand with\nDinah, and saying to her very earnestly, 'Now, Dinah, tell me the truth:\ndid you ever eat a bat?' when suddenly, thump! thump! down she came upon\na heap of sticks and dry leaves, and the fall was over.\n\nAlice was not a bit hurt, and she jumped up on to her feet in a moment:\nshe looked up, but it was all dark overhead; before her was another\nlong passage, and the White Rabbit was still in sight, hurrying down it.\nThere was not a moment to be lost: away went Alice like the wind, and\nwas just in time to hear it say, as it turned a corner, 'Oh my ears\nand whiskers, how late it's getting!' She was close behind it when she\nturned the corner, but the Rabbit was no longer to be seen: she found\nherself in a long, low hall, which was lit up by a row of lamps hanging\nfrom the roof.\n\nThere were doors all round the hall, but they were all locked; and when\nAlice had been all the way down one side and up the other, trying every\ndoor, she walked sadly down the middle, wondering how she was ever to\nget out again.\n\nSuddenly she came upon a little three-legged table, all made of solid\nglass; there was nothing on it except a tiny golden key, and Alice's\nfirst thought was that it might belong to one of the doors of the hall;\nbut, alas! either the locks were too large, or the key was too small,\nbut at any rate it would not open any of them. However, on the second\ntime round, she came upon a low curtain she had not noticed before, and\nbehind it was a little door about fifteen inches high: she tried the\nlittle golden key in the lock, and to her great delight it fitted!\n\nAlice opened the door and found that it led into a small passage, not\nmuch larger than a rat-hole: she knelt down and looked along the passage\ninto the loveliest garden you ever saw. How she longed to get out of\nthat dark hall, and wander about among those beds of bright flowers and\nthose cool fountains, but she could not even get her head through the\ndoorway; 'and even if my head would go through,' thought poor Alice, 'it\nwould be of very little use without my shoulders. Oh, how I wish I could\nshut up like a telescope! I think I could, if I only knew how to begin.'\nFor, you see, so many out-of-the-way things had happened lately,\nthat Alice had begun to think that very few things indeed were really\nimpossible.\n\nThere seemed to be no use in waiting by the little door, so she went\nback to the table, half hoping she might find another key on it, or at\nany rate a book of rules for shutting people up like telescopes: this\ntime she found a little bottle on it, ('which certainly was not here\nbefore,' said Alice,) and round the neck of the bottle was a paper\nlabel, with the words 'DRINK ME' beautifully printed on it in large\nletters.\n\nIt was all very well to say 'Drink me,' but the wise little Alice was\nnot going to do THAT in a hurry. 'No, I'll look first,' she said, 'and\nsee whether it's marked \"poison\" or not'; for she had read several nice\nlittle histories about children who had got burnt, and eaten up by wild\nbeasts and other unpleasant things, all because they WOULD not remember\nthe simple rules their friends had taught them: such as, that a red-hot\npoker will burn you if you hold it too long; and that if you cut your\nfinger VERY deeply with a knife, it usually bleeds; and she had never\nforgotten that, if you drink much from a bottle marked 'poison,' it is\nalmost certain to disagree with you, sooner or later.\n\nHowever, this bottle was NOT marked 'poison,' so Alice ventured to taste\nit, and finding it very nice, (it had, in fact, a sort of mixed flavour\nof cherry-tart, custard, pine-apple, roast turkey, toffee, and hot\nbuttered toast,) she very soon finished it off.\n\n * * * * * * *\n\n * * * * * *\n\n * * * * * * *\n\n'What a curious feeling!' said Alice; 'I must be shutting up like a\ntelescope.'\n\nAnd so it was indeed: she was now only ten inches high, and her face\nbrightened up at the thought that she was now the right size for going\nthrough the little door into that lovely garden. First, however, she\nwaited for a few minutes to see if she was going to shrink any further:\nshe felt a little nervous about this; 'for it might end, you know,' said\nAlice to herself, 'in my going out altogether, like a candle. I wonder\nwhat I should be like then?' And she tried to fancy what the flame of a\ncandle is like after the candle is blown out, for she could not remember\never having seen such a thing.\n\nAfter a while, finding that nothing more happened, she decided on going\ninto the garden at once; but, alas for poor Alice! when she got to the\ndoor, she found she had forgotten the little golden key, and when she\nwent back to the table for it, she found she could not possibly reach\nit: she could see it quite plainly through the glass, and she tried her\nbest to climb up one of the legs of the table, but it was too slippery;\nand when she had tired herself out with trying, the poor little thing\nsat down and cried.\n\n'Come, there's no use in crying like that!' said Alice to herself,\nrather sharply; 'I advise you to leave off this minute!' She generally\ngave herself very good advice, (though she very seldom followed it),\nand sometimes she scolded herself so severely as to bring tears into\nher eyes; and once she remembered trying to box her own ears for having\ncheated herself in a game of croquet she was playing against herself,\nfor this curious child was very fond of pretending to be two people.\n'But it's no use now,' thought poor Alice, 'to pretend to be two people!\nWhy, there's hardly enough of me left to make ONE respectable person!'\n\nSoon her eye fell on a little glass box that was lying under the table:\nshe opened it, and found in it a very small cake, on which the words\n'EAT ME' were beautifully marked in currants. 'Well, I'll eat it,' said\nAlice, 'and if it makes me grow larger, I can reach the key; and if it\nmakes me grow smaller, I can creep under the door; so either way I'll\nget into the garden, and I don't care which happens!'\n\nShe ate a little bit, and said anxiously to herself, 'Which way? Which\nway?', holding her hand on the top of her head to feel which way it was\ngrowing, and she was quite surprised to find that she remained the same\nsize: to be sure, this generally happens when one eats cake, but Alice\nhad got so much into the way of expecting nothing but out-of-the-way\nthings to happen, that it seemed quite dull and stupid for life to go on\nin the common way.\n\nSo she set to work, and very soon finished off the cake.\n\n * * * * * * *\n\n * * * * * *\n\n * * * * * * *\n\n\n\n\n!!! CHAPTER II. The Pool of Tears\n\n'Curiouser and curiouser!' cried Alice (she was so much surprised, that\nfor the moment she quite forgot how to speak good English); 'now I'm\nopening out like the largest telescope that ever was! Good-bye, feet!'\n(for when she looked down at her feet, they seemed to be almost out of\nsight, they were getting so far off). 'Oh, my poor little feet, I wonder\nwho will put on your shoes and stockings for you now, dears? I'm sure\n_I_ shan't be able! I shall be a great deal too far off to trouble\nmyself about you: you must manage the best way you can;--but I must be\nkind to them,' thought Alice, 'or perhaps they won't walk the way I want\nto go! Let me see: I'll give them a new pair of boots every Christmas.'\n\nAnd she went on planning to herself how she would manage it. 'They must\ngo by the carrier,' she thought; 'and how funny it'll seem, sending\npresents to one's own feet! And how odd the directions will look!\n\n ALICE'S RIGHT FOOT, ESQ.\n HEARTHRUG,\n NEAR THE FENDER,\n (WITH ALICE'S LOVE).\n\nOh dear, what nonsense I'm talking!'\n\nJust then her head struck against the roof of the hall: in fact she was\nnow more than nine feet high, and she at once took up the little golden\nkey and hurried off to the garden door.\n\nPoor Alice! It was as much as she could do, lying down on one side, to\nlook through into the garden with one eye; but to get through was more\nhopeless than ever: she sat down and began to cry again.\n\n'You ought to be ashamed of yourself,' said Alice, 'a great girl like\nyou,' (she might well say this), 'to go on crying in this way! Stop this\nmoment, I tell you!' But she went on all the same, shedding gallons of\ntears, until there was a large pool all round her, about four inches\ndeep and reaching half down the hall.\n\nAfter a time she heard a little pattering of feet in the distance, and\nshe hastily dried her eyes to see what was coming. It was the White\nRabbit returning, splendidly dressed, with a pair of white kid gloves in\none hand and a large fan in the other: he came trotting along in a great\nhurry, muttering to himself as he came, 'Oh! the Duchess, the Duchess!\nOh! won't she be savage if I've kept her waiting!' Alice felt so\ndesperate that she was ready to ask help of any one; so, when the Rabbit\ncame near her, she began, in a low, timid voice, 'If you please, sir--'\nThe Rabbit started violently, dropped the white kid gloves and the fan,\nand skurried away into the darkness as hard as he could go.\n\nAlice took up the fan and gloves, and, as the hall was very hot, she\nkept fanning herself all the time she went on talking: 'Dear, dear! How\nqueer everything is to-day! And yesterday things went on just as usual.\nI wonder if I've been changed in the night? Let me think: was I the\nsame when I got up this morning? I almost think I can remember feeling a\nlittle different. But if I'm not the same, the next question is, Who\nin the world am I? Ah, THAT'S the great puzzle!' And she began thinking\nover all the children she knew that were of the same age as herself, to\nsee if she could have been changed for any of them.\n\n'I'm sure I'm not Ada,' she said, 'for her hair goes in such long\nringlets, and mine doesn't go in ringlets at all; and I'm sure I can't\nbe Mabel, for I know all sorts of things, and she, oh! she knows such a\nvery little! Besides, SHE'S she, and I'm I, and--oh dear, how puzzling\nit all is! I'll try if I know all the things I used to know. Let me\nsee: four times five is twelve, and four times six is thirteen, and\nfour times seven is--oh dear! I shall never get to twenty at that rate!\nHowever, the Multiplication Table doesn't signify: let's try Geography.\nLondon is the capital of Paris, and Paris is the capital of Rome, and\nRome--no, THAT'S all wrong, I'm certain! I must have been changed for\nMabel! I'll try and say \"How doth the little--\"' and she crossed her\nhands on her lap as if she were saying lessons, and began to repeat it,\nbut her voice sounded hoarse and strange, and the words did not come the\nsame as they used to do:--\n\n 'How doth the little crocodile\n Improve his shining tail,\n And pour the waters of the Nile\n On every golden scale!\n\n 'How cheerfully he seems to grin,\n How neatly spread his claws,\n And welcome little fishes in\n With gently smiling jaws!'\n\n'I'm sure those are not the right words,' said poor Alice, and her eyes\nfilled with tears again as she went on, 'I must be Mabel after all, and\nI shall have to go and live in that poky little house, and have next to\nno toys to play with, and oh! ever so many lessons to learn! No, I've\nmade up my mind about it; if I'm Mabel, I'll stay down here! It'll be no\nuse their putting their heads down and saying \"Come up again, dear!\" I\nshall only look up and say \"Who am I then? Tell me that first, and then,\nif I like being that person, I'll come up: if not, I'll stay down here\ntill I'm somebody else\"--but, oh dear!' cried Alice, with a sudden burst\nof tears, 'I do wish they WOULD put their heads down! I am so VERY tired\nof being all alone here!'\n\nAs she said this she looked down at her hands, and was surprised to see\nthat she had put on one of the Rabbit's little white kid gloves while\nshe was talking. 'How CAN I have done that?' she thought. 'I must\nbe growing small again.' She got up and went to the table to measure\nherself by it, and found that, as nearly as she could guess, she was now\nabout two feet high, and was going on shrinking rapidly: she soon found\nout that the cause of this was the fan she was holding, and she dropped\nit hastily, just in time to avoid shrinking away altogether.\n\n'That WAS a narrow escape!' said Alice, a good deal frightened at the\nsudden change, but very glad to find herself still in existence; 'and\nnow for the garden!' and she ran with all speed back to the little door:\nbut, alas! the little door was shut again, and the little golden key was\nlying on the glass table as before, 'and things are worse than ever,'\nthought the poor child, 'for I never was so small as this before, never!\nAnd I declare it's too bad, that it is!'\n\nAs she said these words her foot slipped, and in another moment, splash!\nshe was up to her chin in salt water. Her first idea was that she\nhad somehow fallen into the sea, 'and in that case I can go back by\nrailway,' she said to herself. (Alice had been to the seaside once in\nher life, and had come to the general conclusion, that wherever you go\nto on the English coast you find a number of bathing machines in the\nsea, some children digging in the sand with wooden spades, then a row\nof lodging houses, and behind them a railway station.) However, she soon\nmade out that she was in the pool of tears which she had wept when she\nwas nine feet high.\n\n'I wish I hadn't cried so much!' said Alice, as she swam about, trying\nto find her way out. 'I shall be punished for it now, I suppose, by\nbeing drowned in my own tears! That WILL be a queer thing, to be sure!\nHowever, everything is queer to-day.'\n\nJust then she heard something splashing about in the pool a little way\noff, and she swam nearer to make out what it was: at first she thought\nit must be a walrus or hippopotamus, but then she remembered how small\nshe was now, and she soon made out that it was only a mouse that had\nslipped in like herself.\n\n'Would it be of any use, now,' thought Alice, 'to speak to this mouse?\nEverything is so out-of-the-way down here, that I should think very\nlikely it can talk: at any rate, there's no harm in trying.' So she\nbegan: 'O Mouse, do you know the way out of this pool? I am very tired\nof swimming about here, O Mouse!' (Alice thought this must be the right\nway of speaking to a mouse: she had never done such a thing before, but\nshe remembered having seen in her brother's Latin Grammar, 'A mouse--of\na mouse--to a mouse--a mouse--O mouse!') The Mouse looked at her rather\ninquisitively, and seemed to her to wink with one of its little eyes,\nbut it said nothing.\n\n'Perhaps it doesn't understand English,' thought Alice; 'I daresay it's\na French mouse, come over with William the Conqueror.' (For, with all\nher knowledge of history, Alice had no very clear notion how long ago\nanything had happened.) So she began again: 'Ou est ma chatte?' which\nwas the first sentence in her French lesson-book. The Mouse gave a\nsudden leap out of the water, and seemed to quiver all over with fright.\n'Oh, I beg your pardon!' cried Alice hastily, afraid that she had hurt\nthe poor animal's feelings. 'I quite forgot you didn't like cats.'\n\n'Not like cats!' cried the Mouse, in a shrill, passionate voice. 'Would\nYOU like cats if you were me?'\n\n'Well, perhaps not,' said Alice in a soothing tone: 'don't be angry\nabout it. And yet I wish I could show you our cat Dinah: I think you'd\ntake a fancy to cats if you could only see her. She is such a dear quiet\nthing,' Alice went on, half to herself, as she swam lazily about in the\npool, 'and she sits purring so nicely by the fire, licking her paws and\nwashing her face--and she is such a nice soft thing to nurse--and she's\nsuch a capital one for catching mice--oh, I beg your pardon!' cried\nAlice again, for this time the Mouse was bristling all over, and she\nfelt certain it must be really offended. 'We won't talk about her any\nmore if you'd rather not.'\n\n'We indeed!' cried the Mouse, who was trembling down to the end of his\ntail. 'As if I would talk on such a subject! Our family always HATED\ncats: nasty, low, vulgar things! Don't let me hear the name again!'\n\n'I won't indeed!' said Alice, in a great hurry to change the subject of\nconversation. 'Are you--are you fond--of--of dogs?' The Mouse did not\nanswer, so Alice went on eagerly: 'There is such a nice little dog near\nour house I should like to show you! A little bright-eyed terrier, you\nknow, with oh, such long curly brown hair! And it'll fetch things when\nyou throw them, and it'll sit up and beg for its dinner, and all sorts\nof things--I can't remember half of them--and it belongs to a farmer,\nyou know, and he says it's so useful, it's worth a hundred pounds! He\nsays it kills all the rats and--oh dear!' cried Alice in a sorrowful\ntone, 'I'm afraid I've offended it again!' For the Mouse was swimming\naway from her as hard as it could go, and making quite a commotion in\nthe pool as it went.\n\nSo she called softly after it, 'Mouse dear! Do come back again, and we\nwon't talk about cats or dogs either, if you don't like them!' When the\nMouse heard this, it turned round and swam slowly back to her: its\nface was quite pale (with passion, Alice thought), and it said in a low\ntrembling voice, 'Let us get to the shore, and then I'll tell you my\nhistory, and you'll understand why it is I hate cats and dogs.'\n\nIt was high time to go, for the pool was getting quite crowded with the\nbirds and animals that had fallen into it: there were a Duck and a Dodo,\na Lory and an Eaglet, and several other curious creatures. Alice led the\nway, and the whole party swam to the shore.\n\n\n\n\n!!! CHAPTER III. A Caucus-Race and a Long Tale\n\nThey were indeed a queer-looking party that assembled on the bank--the\nbirds with draggled feathers, the animals with their fur clinging close\nto them, and all dripping wet, cross, and uncomfortable.\n\nThe first question of course was, how to get dry again: they had a\nconsultation about this, and after a few minutes it seemed quite natural\nto Alice to find herself talking familiarly with them, as if she had\nknown them all her life. Indeed, she had quite a long argument with the\nLory, who at last turned sulky, and would only say, 'I am older than\nyou, and must know better'; and this Alice would not allow without\nknowing how old it was, and, as the Lory positively refused to tell its\nage, there was no more to be said.\n\nAt last the Mouse, who seemed to be a person of authority among them,\ncalled out, 'Sit down, all of you, and listen to me! I'LL soon make you\ndry enough!' They all sat down at once, in a large ring, with the Mouse\nin the middle. Alice kept her eyes anxiously fixed on it, for she felt\nsure she would catch a bad cold if she did not get dry very soon.\n\n'Ahem!' said the Mouse with an important air, 'are you all ready? This\nis the driest thing I know. Silence all round, if you please! \"William\nthe Conqueror, whose cause was favoured by the pope, was soon submitted\nto by the English, who wanted leaders, and had been of late much\naccustomed to usurpation and conquest. Edwin and Morcar, the earls of\nMercia and Northumbria--\"'\n\n'Ugh!' said the Lory, with a shiver.\n\n'I beg your pardon!' said the Mouse, frowning, but very politely: 'Did\nyou speak?'\n\n'Not I!' said the Lory hastily.\n\n'I thought you did,' said the Mouse. '--I proceed. \"Edwin and Morcar,\nthe earls of Mercia and Northumbria, declared for him: and even Stigand,\nthe patriotic archbishop of Canterbury, found it advisable--\"'\n\n'Found WHAT?' said the Duck.\n\n'Found IT,' the Mouse replied rather crossly: 'of course you know what\n\"it\" means.'\n\n'I know what \"it\" means well enough, when I find a thing,' said the\nDuck: 'it's generally a frog or a worm. The question is, what did the\narchbishop find?'\n\nThe Mouse did not notice this question, but hurriedly went on, '\"--found\nit advisable to go with Edgar Atheling to meet William and offer him the\ncrown. William's conduct at first was moderate. But the insolence of his\nNormans--\" How are you getting on now, my dear?' it continued, turning\nto Alice as it spoke.\n\n'As wet as ever,' said Alice in a melancholy tone: 'it doesn't seem to\ndry me at all.'\n\n'In that case,' said the Dodo solemnly, rising to its feet, 'I move\nthat the meeting adjourn, for the immediate adoption of more energetic\nremedies--'\n\n'Speak English!' said the Eaglet. 'I don't know the meaning of half\nthose long words, and, what's more, I don't believe you do either!' And\nthe Eaglet bent down its head to hide a smile: some of the other birds\ntittered audibly.\n\n'What I was going to say,' said the Dodo in an offended tone, 'was, that\nthe best thing to get us dry would be a Caucus-race.'\n\n'What IS a Caucus-race?' said Alice; not that she wanted much to know,\nbut the Dodo had paused as if it thought that SOMEBODY ought to speak,\nand no one else seemed inclined to say anything.\n\n'Why,' said the Dodo, 'the best way to explain it is to do it.' (And, as\nyou might like to try the thing yourself, some winter day, I will tell\nyou how the Dodo managed it.)\n\nFirst it marked out a race-course, in a sort of circle, ('the exact\nshape doesn't matter,' it said,) and then all the party were placed\nalong the course, here and there. There was no 'One, two, three, and\naway,' but they began running when they liked, and left off when they\nliked, so that it was not easy to know when the race was over. However,\nwhen they had been running half an hour or so, and were quite dry again,\nthe Dodo suddenly called out 'The race is over!' and they all crowded\nround it, panting, and asking, 'But who has won?'\n\nThis question the Dodo could not answer without a great deal of thought,\nand it sat for a long time with one finger pressed upon its forehead\n(the position in which you usually see Shakespeare, in the pictures\nof him), while the rest waited in silence. At last the Dodo said,\n'EVERYBODY has won, and all must have prizes.'\n\n'But who is to give the prizes?' quite a chorus of voices asked.\n\n'Why, SHE, of course,' said the Dodo, pointing to Alice with one finger;\nand the whole party at once crowded round her, calling out in a confused\nway, 'Prizes! Prizes!'\n\nAlice had no idea what to do, and in despair she put her hand in her\npocket, and pulled out a box of comfits, (luckily the salt water had\nnot got into it), and handed them round as prizes. There was exactly one\na-piece all round.\n\n'But she must have a prize herself, you know,' said the Mouse.\n\n'Of course,' the Dodo replied very gravely. 'What else have you got in\nyour pocket?' he went on, turning to Alice.\n\n'Only a thimble,' said Alice sadly.\n\n'Hand it over here,' said the Dodo.\n\nThen they all crowded round her once more, while the Dodo solemnly\npresented the thimble, saying 'We beg your acceptance of this elegant\nthimble'; and, when it had finished this short speech, they all cheered.\n\nAlice thought the whole thing very absurd, but they all looked so grave\nthat she did not dare to laugh; and, as she could not think of anything\nto say, she simply bowed, and took the thimble, looking as solemn as she\ncould.\n\nThe next thing was to eat the comfits: this caused some noise and\nconfusion, as the large birds complained that they could not taste\ntheirs, and the small ones choked and had to be patted on the back.\nHowever, it was over at last, and they sat down again in a ring, and\nbegged the Mouse to tell them something more.\n\n'You promised to tell me your history, you know,' said Alice, 'and why\nit is you hate--C and D,' she added in a whisper, half afraid that it\nwould be offended again.\n\n'Mine is a long and a sad tale!' said the Mouse, turning to Alice, and\nsighing.\n\n'It IS a long tail, certainly,' said Alice, looking down with wonder at\nthe Mouse's tail; 'but why do you call it sad?' And she kept on puzzling\nabout it while the Mouse was speaking, so that her idea of the tale was\nsomething like this:--\n\n 'Fury said to a\n mouse, That he\n met in the\n house,\n \"Let us\n both go to\n law: I will\n prosecute\n YOU.--Come,\n I'll take no\n denial; We\n must have a\n trial: For\n really this\n morning I've\n nothing\n to do.\"\n Said the\n mouse to the\n cur, \"Such\n a trial,\n dear Sir,\n With\n no jury\n or judge,\n would be\n wasting\n our\n breath.\"\n \"I'll be\n judge, I'll\n be jury,\"\n Said\n cunning\n old Fury:\n \"I'll\n try the\n whole\n cause,\n and\n condemn\n you\n to\n death.\"'\n\n\n'You are not attending!' said the Mouse to Alice severely. 'What are you\nthinking of?'\n\n'I beg your pardon,' said Alice very humbly: 'you had got to the fifth\nbend, I think?'\n\n'I had NOT!' cried the Mouse, sharply and very angrily.\n\n'A knot!' said Alice, always ready to make herself useful, and looking\nanxiously about her. 'Oh, do let me help to undo it!'\n\n'I shall do nothing of the sort,' said the Mouse, getting up and walking\naway. 'You insult me by talking such nonsense!'\n\n'I didn't mean it!' pleaded poor Alice. 'But you're so easily offended,\nyou know!'\n\nThe Mouse only growled in reply.\n\n'Please come back and finish your story!' Alice called after it; and the\nothers all joined in chorus, 'Yes, please do!' but the Mouse only shook\nits head impatiently, and walked a little quicker.\n\n'What a pity it wouldn't stay!' sighed the Lory, as soon as it was quite\nout of sight; and an old Crab took the opportunity of saying to her\ndaughter 'Ah, my dear! Let this be a lesson to you never to lose\nYOUR temper!' 'Hold your tongue, Ma!' said the young Crab, a little\nsnappishly. 'You're enough to try the patience of an oyster!'\n\n'I wish I had our Dinah here, I know I do!' said Alice aloud, addressing\nnobody in particular. 'She'd soon fetch it back!'\n\n'And who is Dinah, if I might venture to ask the question?' said the\nLory.\n\nAlice replied eagerly, for she was always ready to talk about her pet:\n'Dinah's our cat. And she's such a capital one for catching mice you\ncan't think! And oh, I wish you could see her after the birds! Why,\nshe'll eat a little bird as soon as look at it!'\n\nThis speech caused a remarkable sensation among the party. Some of the\nbirds hurried off at once: one old Magpie began wrapping itself up very\ncarefully, remarking, 'I really must be getting home; the night-air\ndoesn't suit my throat!' and a Canary called out in a trembling voice to\nits children, 'Come away, my dears! It's high time you were all in bed!'\nOn various pretexts they all moved off, and Alice was soon left alone.\n\n'I wish I hadn't mentioned Dinah!' she said to herself in a melancholy\ntone. 'Nobody seems to like her, down here, and I'm sure she's the best\ncat in the world! Oh, my dear Dinah! I wonder if I shall ever see you\nany more!' And here poor Alice began to cry again, for she felt very\nlonely and low-spirited. In a little while, however, she again heard\na little pattering of footsteps in the distance, and she looked up\neagerly, half hoping that the Mouse had changed his mind, and was coming\nback to finish his story.\n\n\n\n\n!!! CHAPTER IV. The Rabbit Sends in a Little Bill\n\nIt was the White Rabbit, trotting slowly back again, and looking\nanxiously about as it went, as if it had lost something; and she heard\nit muttering to itself 'The Duchess! The Duchess! Oh my dear paws! Oh\nmy fur and whiskers! She'll get me executed, as sure as ferrets are\nferrets! Where CAN I have dropped them, I wonder?' Alice guessed in a\nmoment that it was looking for the fan and the pair of white kid gloves,\nand she very good-naturedly began hunting about for them, but they were\nnowhere to be seen--everything seemed to have changed since her swim in\nthe pool, and the great hall, with the glass table and the little door,\nhad vanished completely.\n\nVery soon the Rabbit noticed Alice, as she went hunting about, and\ncalled out to her in an angry tone, 'Why, Mary Ann, what ARE you doing\nout here? Run home this moment, and fetch me a pair of gloves and a fan!\nQuick, now!' And Alice was so much frightened that she ran off at once\nin the direction it pointed to, without trying to explain the mistake it\nhad made.\n\n'He took me for his housemaid,' she said to herself as she ran. 'How\nsurprised he'll be when he finds out who I am! But I'd better take him\nhis fan and gloves--that is, if I can find them.' As she said this, she\ncame upon a neat little house, on the door of which was a bright brass\nplate with the name 'W. RABBIT' engraved upon it. She went in without\nknocking, and hurried upstairs, in great fear lest she should meet the\nreal Mary Ann, and be turned out of the house before she had found the\nfan and gloves.\n\n'How queer it seems,' Alice said to herself, 'to be going messages for\na rabbit! I suppose Dinah'll be sending me on messages next!' And she\nbegan fancying the sort of thing that would happen: '\"Miss Alice! Come\nhere directly, and get ready for your walk!\" \"Coming in a minute,\nnurse! But I've got to see that the mouse doesn't get out.\" Only I don't\nthink,' Alice went on, 'that they'd let Dinah stop in the house if it\nbegan ordering people about like that!'\n\nBy this time she had found her way into a tidy little room with a table\nin the window, and on it (as she had hoped) a fan and two or three pairs\nof tiny white kid gloves: she took up the fan and a pair of the gloves,\nand was just going to leave the room, when her eye fell upon a little\nbottle that stood near the looking-glass. There was no label this time\nwith the words 'DRINK ME,' but nevertheless she uncorked it and put it\nto her lips. 'I know SOMETHING interesting is sure to happen,' she said\nto herself, 'whenever I eat or drink anything; so I'll just see what\nthis bottle does. I do hope it'll make me grow large again, for really\nI'm quite tired of being such a tiny little thing!'\n\nIt did so indeed, and much sooner than she had expected: before she had\ndrunk half the bottle, she found her head pressing against the ceiling,\nand had to stoop to save her neck from being broken. She hastily put\ndown the bottle, saying to herself 'That's quite enough--I hope I shan't\ngrow any more--As it is, I can't get out at the door--I do wish I hadn't\ndrunk quite so much!'\n\nAlas! it was too late to wish that! She went on growing, and growing,\nand very soon had to kneel down on the floor: in another minute there\nwas not even room for this, and she tried the effect of lying down with\none elbow against the door, and the other arm curled round her head.\nStill she went on growing, and, as a last resource, she put one arm out\nof the window, and one foot up the chimney, and said to herself 'Now I\ncan do no more, whatever happens. What WILL become of me?'\n\nLuckily for Alice, the little magic bottle had now had its full effect,\nand she grew no larger: still it was very uncomfortable, and, as there\nseemed to be no sort of chance of her ever getting out of the room\nagain, no wonder she felt unhappy.\n\n'It was much pleasanter at home,' thought poor Alice, 'when one wasn't\nalways growing larger and smaller, and being ordered about by mice and\nrabbits. I almost wish I hadn't gone down that rabbit-hole--and yet--and\nyet--it's rather curious, you know, this sort of life! I do wonder what\nCAN have happened to me! When I used to read fairy-tales, I fancied that\nkind of thing never happened, and now here I am in the middle of one!\nThere ought to be a book written about me, that there ought! And when I\ngrow up, I'll write one--but I'm grown up now,' she added in a sorrowful\ntone; 'at least there's no room to grow up any more HERE.'\n\n'But then,' thought Alice, 'shall I NEVER get any older than I am\nnow? That'll be a comfort, one way--never to be an old woman--but\nthen--always to have lessons to learn! Oh, I shouldn't like THAT!'\n\n'Oh, you foolish Alice!' she answered herself. 'How can you learn\nlessons in here? Why, there's hardly room for YOU, and no room at all\nfor any lesson-books!'\n\nAnd so she went on, taking first one side and then the other, and making\nquite a conversation of it altogether; but after a few minutes she heard\na voice outside, and stopped to listen.\n\n'Mary Ann! Mary Ann!' said the voice. 'Fetch me my gloves this moment!'\nThen came a little pattering of feet on the stairs. Alice knew it was\nthe Rabbit coming to look for her, and she trembled till she shook the\nhouse, quite forgetting that she was now about a thousand times as large\nas the Rabbit, and had no reason to be afraid of it.\n\nPresently the Rabbit came up to the door, and tried to open it; but, as\nthe door opened inwards, and Alice's elbow was pressed hard against it,\nthat attempt proved a failure. Alice heard it say to itself 'Then I'll\ngo round and get in at the window.'\n\n'THAT you won't' thought Alice, and, after waiting till she fancied\nshe heard the Rabbit just under the window, she suddenly spread out her\nhand, and made a snatch in the air. She did not get hold of anything,\nbut she heard a little shriek and a fall, and a crash of broken glass,\nfrom which she concluded that it was just possible it had fallen into a\ncucumber-frame, or something of the sort.\n\nNext came an angry voice--the Rabbit's--'Pat! Pat! Where are you?' And\nthen a voice she had never heard before, 'Sure then I'm here! Digging\nfor apples, yer honour!'\n\n'Digging for apples, indeed!' said the Rabbit angrily. 'Here! Come and\nhelp me out of THIS!' (Sounds of more broken glass.)\n\n'Now tell me, Pat, what's that in the window?'\n\n'Sure, it's an arm, yer honour!' (He pronounced it 'arrum.')\n\n'An arm, you goose! Who ever saw one that size? Why, it fills the whole\nwindow!'\n\n'Sure, it does, yer honour: but it's an arm for all that.'\n\n'Well, it's got no business there, at any rate: go and take it away!'\n\nThere was a long silence after this, and Alice could only hear whispers\nnow and then; such as, 'Sure, I don't like it, yer honour, at all, at\nall!' 'Do as I tell you, you coward!' and at last she spread out her\nhand again, and made another snatch in the air. This time there were\nTWO little shrieks, and more sounds of broken glass. 'What a number of\ncucumber-frames there must be!' thought Alice. 'I wonder what they'll do\nnext! As for pulling me out of the window, I only wish they COULD! I'm\nsure I don't want to stay in here any longer!'\n\nShe waited for some time without hearing anything more: at last came a\nrumbling of little cartwheels, and the sound of a good many voices\nall talking together: she made out the words: 'Where's the other\nladder?--Why, I hadn't to bring but one; Bill's got the other--Bill!\nfetch it here, lad!--Here, put 'em up at this corner--No, tie 'em\ntogether first--they don't reach half high enough yet--Oh! they'll\ndo well enough; don't be particular--Here, Bill! catch hold of this\nrope--Will the roof bear?--Mind that loose slate--Oh, it's coming\ndown! Heads below!' (a loud crash)--'Now, who did that?--It was Bill, I\nfancy--Who's to go down the chimney?--Nay, I shan't! YOU do it!--That I\nwon't, then!--Bill's to go down--Here, Bill! the master says you're to\ngo down the chimney!'\n\n'Oh! So Bill's got to come down the chimney, has he?' said Alice to\nherself. 'Shy, they seem to put everything upon Bill! I wouldn't be in\nBill's place for a good deal: this fireplace is narrow, to be sure; but\nI THINK I can kick a little!'\n\nShe drew her foot as far down the chimney as she could, and waited\ntill she heard a little animal (she couldn't guess of what sort it was)\nscratching and scrambling about in the chimney close above her: then,\nsaying to herself 'This is Bill,' she gave one sharp kick, and waited to\nsee what would happen next.\n\nThe first thing she heard was a general chorus of 'There goes Bill!'\nthen the Rabbit's voice along--'Catch him, you by the hedge!' then\nsilence, and then another confusion of voices--'Hold up his head--Brandy\nnow--Don't choke him--How was it, old fellow? What happened to you? Tell\nus all about it!'\n\nLast came a little feeble, squeaking voice, ('That's Bill,' thought\nAlice,) 'Well, I hardly know--No more, thank ye; I'm better now--but I'm\na deal too flustered to tell you--all I know is, something comes at me\nlike a Jack-in-the-box, and up I goes like a sky-rocket!'\n\n'So you did, old fellow!' said the others.\n\n'We must burn the house down!' said the Rabbit's voice; and Alice called\nout as loud as she could, 'If you do. I'll set Dinah at you!'\n\nThere was a dead silence instantly, and Alice thought to herself, 'I\nwonder what they WILL do next! If they had any sense, they'd take the\nroof off.' After a minute or two, they began moving about again, and\nAlice heard the Rabbit say, 'A barrowful will do, to begin with.'\n\n'A barrowful of WHAT?' thought Alice; but she had not long to doubt,\nfor the next moment a shower of little pebbles came rattling in at the\nwindow, and some of them hit her in the face. 'I'll put a stop to this,'\nshe said to herself, and shouted out, 'You'd better not do that again!'\nwhich produced another dead silence.\n\nAlice noticed with some surprise that the pebbles were all turning into\nlittle cakes as they lay on the floor, and a bright idea came into her\nhead. 'If I eat one of these cakes,' she thought, 'it's sure to make\nSOME change in my size; and as it can't possibly make me larger, it must\nmake me smaller, I suppose.'\n\nSo she swallowed one of the cakes, and was delighted to find that she\nbegan shrinking directly. As soon as she was small enough to get through\nthe door, she ran out of the house, and found quite a crowd of little\nanimals and birds waiting outside. The poor little Lizard, Bill, was\nin the middle, being held up by two guinea-pigs, who were giving it\nsomething out of a bottle. They all made a rush at Alice the moment she\nappeared; but she ran off as hard as she could, and soon found herself\nsafe in a thick wood.\n\n'The first thing I've got to do,' said Alice to herself, as she wandered\nabout in the wood, 'is to grow to my right size again; and the second\nthing is to find my way into that lovely garden. I think that will be\nthe best plan.'\n\nIt sounded an excellent plan, no doubt, and very neatly and simply\narranged; the only difficulty was, that she had not the smallest idea\nhow to set about it; and while she was peering about anxiously among\nthe trees, a little sharp bark just over her head made her look up in a\ngreat hurry.\n\nAn enormous puppy was looking down at her with large round eyes, and\nfeebly stretching out one paw, trying to touch her. 'Poor little thing!'\nsaid Alice, in a coaxing tone, and she tried hard to whistle to it; but\nshe was terribly frightened all the time at the thought that it might be\nhungry, in which case it would be very likely to eat her up in spite of\nall her coaxing.\n\nHardly knowing what she did, she picked up a little bit of stick, and\nheld it out to the puppy; whereupon the puppy jumped into the air off\nall its feet at once, with a yelp of delight, and rushed at the stick,\nand made believe to worry it; then Alice dodged behind a great thistle,\nto keep herself from being run over; and the moment she appeared on the\nother side, the puppy made another rush at the stick, and tumbled head\nover heels in its hurry to get hold of it; then Alice, thinking it was\nvery like having a game of play with a cart-horse, and expecting every\nmoment to be trampled under its feet, ran round the thistle again; then\nthe puppy began a series of short charges at the stick, running a very\nlittle way forwards each time and a long way back, and barking hoarsely\nall the while, till at last it sat down a good way off, panting, with\nits tongue hanging out of its mouth, and its great eyes half shut.\n\nThis seemed to Alice a good opportunity for making her escape; so she\nset off at once, and ran till she was quite tired and out of breath, and\ntill the puppy's bark sounded quite faint in the distance.\n\n'And yet what a dear little puppy it was!' said Alice, as she leant\nagainst a buttercup to rest herself, and fanned herself with one of the\nleaves: 'I should have liked teaching it tricks very much, if--if I'd\nonly been the right size to do it! Oh dear! I'd nearly forgotten that\nI've got to grow up again! Let me see--how IS it to be managed? I\nsuppose I ought to eat or drink something or other; but the great\nquestion is, what?'\n\nThe great question certainly was, what? Alice looked all round her at\nthe flowers and the blades of grass, but she did not see anything that\nlooked like the right thing to eat or drink under the circumstances.\nThere was a large mushroom growing near her, about the same height as\nherself; and when she had looked under it, and on both sides of it, and\nbehind it, it occurred to her that she might as well look and see what\nwas on the top of it.\n\nShe stretched herself up on tiptoe, and peeped over the edge of the\nmushroom, and her eyes immediately met those of a large caterpillar,\nthat was sitting on the top with its arms folded, quietly smoking a long\nhookah, and taking not the smallest notice of her or of anything else.\n\n\n\n\n!!! CHAPTER V. Advice from a Caterpillar\n\nThe Caterpillar and Alice looked at each other for some time in silence:\nat last the Caterpillar took the hookah out of its mouth, and addressed\nher in a languid, sleepy voice.\n\n'Who are YOU?' said the Caterpillar.\n\nThis was not an encouraging opening for a conversation. Alice replied,\nrather shyly, 'I--I hardly know, sir, just at present--at least I know\nwho I WAS when I got up this morning, but I think I must have been\nchanged several times since then.'\n\n'What do you mean by that?' said the Caterpillar sternly. 'Explain\nyourself!'\n\n'I can't explain MYSELF, I'm afraid, sir' said Alice, 'because I'm not\nmyself, you see.'\n\n'I don't see,' said the Caterpillar.\n\n'I'm afraid I can't put it more clearly,' Alice replied very politely,\n'for I can't understand it myself to begin with; and being so many\ndifferent sizes in a day is very confusing.'\n\n'It isn't,' said the Caterpillar.\n\n'Well, perhaps you haven't found it so yet,' said Alice; 'but when you\nhave to turn into a chrysalis--you will some day, you know--and then\nafter that into a butterfly, I should think you'll feel it a little\nqueer, won't you?'\n\n'Not a bit,' said the Caterpillar.\n\n'Well, perhaps your feelings may be different,' said Alice; 'all I know\nis, it would feel very queer to ME.'\n\n'You!' said the Caterpillar contemptuously. 'Who are YOU?'\n\nWhich brought them back again to the beginning of the conversation.\nAlice felt a little irritated at the Caterpillar's making such VERY\nshort remarks, and she drew herself up and said, very gravely, 'I think,\nyou ought to tell me who YOU are, first.'\n\n'Why?' said the Caterpillar.\n\nHere was another puzzling question; and as Alice could not think of any\ngood reason, and as the Caterpillar seemed to be in a VERY unpleasant\nstate of mind, she turned away.\n\n'Come back!' the Caterpillar called after her. 'I've something important\nto say!'\n\nThis sounded promising, certainly: Alice turned and came back again.\n\n'Keep your temper,' said the Caterpillar.\n\n'Is that all?' said Alice, swallowing down her anger as well as she\ncould.\n\n'No,' said the Caterpillar.\n\nAlice thought she might as well wait, as she had nothing else to do, and\nperhaps after all it might tell her something worth hearing. For some\nminutes it puffed away without speaking, but at last it unfolded its\narms, took the hookah out of its mouth again, and said, 'So you think\nyou're changed, do you?'\n\n'I'm afraid I am, sir,' said Alice; 'I can't remember things as I\nused--and I don't keep the same size for ten minutes together!'\n\n'Can't remember WHAT things?' said the Caterpillar.\n\n'Well, I've tried to say \"HOW DOTH THE LITTLE BUSY BEE,\" but it all came\ndifferent!' Alice replied in a very melancholy voice.\n\n'Repeat, \"YOU ARE OLD, FATHER WILLIAM,\"' said the Caterpillar.\n\nAlice folded her hands, and began:--\n\n 'You are old, Father William,' the young man said,\n 'And your hair has become very white;\n And yet you incessantly stand on your head--\n Do you think, at your age, it is right?'\n\n 'In my youth,' Father William replied to his son,\n 'I feared it might injure the brain;\n But, now that I'm perfectly sure I have none,\n Why, I do it again and again.'\n\n 'You are old,' said the youth, 'as I mentioned before,\n And have grown most uncommonly fat;\n Yet you turned a back-somersault in at the door--\n Pray, what is the reason of that?'\n\n 'In my youth,' said the sage, as he shook his grey locks,\n 'I kept all my limbs very supple\n By the use of this ointment--one shilling the box--\n Allow me to sell you a couple?'\n\n 'You are old,' said the youth, 'and your jaws are too weak\n For anything tougher than suet;\n Yet you finished the goose, with the bones and the beak--\n Pray how did you manage to do it?'\n\n 'In my youth,' said his father, 'I took to the law,\n And argued each case with my wife;\n And the muscular strength, which it gave to my jaw,\n Has lasted the rest of my life.'\n\n 'You are old,' said the youth, 'one would hardly suppose\n That your eye was as steady as ever;\n Yet you balanced an eel on the end of your nose--\n What made you so awfully clever?'\n\n 'I have answered three questions, and that is enough,'\n Said his father; 'don't give yourself airs!\n Do you think I can listen all day to such stuff?\n Be off, or I'll kick you down stairs!'\n\n\n'That is not said right,' said the Caterpillar.\n\n'Not QUITE right, I'm afraid,' said Alice, timidly; 'some of the words\nhave got altered.'\n\n'It is wrong from beginning to end,' said the Caterpillar decidedly, and\nthere was silence for some minutes.\n\nThe Caterpillar was the first to speak.\n\n'What size do you want to be?' it asked.\n\n'Oh, I'm not particular as to size,' Alice hastily replied; 'only one\ndoesn't like changing so often, you know.'\n\n'I DON'T know,' said the Caterpillar.\n\nAlice said nothing: she had never been so much contradicted in her life\nbefore, and she felt that she was losing her temper.\n\n'Are you content now?' said the Caterpillar.\n\n'Well, I should like to be a LITTLE larger, sir, if you wouldn't mind,'\nsaid Alice: 'three inches is such a wretched height to be.'\n\n'It is a very good height indeed!' said the Caterpillar angrily, rearing\nitself upright as it spoke (it was exactly three inches high).\n\n'But I'm not used to it!' pleaded poor Alice in a piteous tone. And\nshe thought of herself, 'I wish the creatures wouldn't be so easily\noffended!'\n\n'You'll get used to it in time,' said the Caterpillar; and it put the\nhookah into its mouth and began smoking again.\n\nThis time Alice waited patiently until it chose to speak again. In\na minute or two the Caterpillar took the hookah out of its mouth\nand yawned once or twice, and shook itself. Then it got down off the\nmushroom, and crawled away in the grass, merely remarking as it went,\n'One side will make you grow taller, and the other side will make you\ngrow shorter.'\n\n'One side of WHAT? The other side of WHAT?' thought Alice to herself.\n\n'Of the mushroom,' said the Caterpillar, just as if she had asked it\naloud; and in another moment it was out of sight.\n\nAlice remained looking thoughtfully at the mushroom for a minute, trying\nto make out which were the two sides of it; and as it was perfectly\nround, she found this a very difficult question. However, at last she\nstretched her arms round it as far as they would go, and broke off a bit\nof the edge with each hand.\n\n'And now which is which?' she said to herself, and nibbled a little of\nthe right-hand bit to try the effect: the next moment she felt a violent\nblow underneath her chin: it had struck her foot!\n\nShe was a good deal frightened by this very sudden change, but she felt\nthat there was no time to be lost, as she was shrinking rapidly; so she\nset to work at once to eat some of the other bit. Her chin was pressed\nso closely against her foot, that there was hardly room to open her\nmouth; but she did it at last, and managed to swallow a morsel of the\nlefthand bit.\n\n\n * * * * * * *\n\n * * * * * *\n\n * * * * * * *\n\n'Come, my head's free at last!' said Alice in a tone of delight, which\nchanged into alarm in another moment, when she found that her shoulders\nwere nowhere to be found: all she could see, when she looked down, was\nan immense length of neck, which seemed to rise like a stalk out of a\nsea of green leaves that lay far below her.\n\n'What CAN all that green stuff be?' said Alice. 'And where HAVE my\nshoulders got to? And oh, my poor hands, how is it I can't see you?'\nShe was moving them about as she spoke, but no result seemed to follow,\nexcept a little shaking among the distant green leaves.\n\nAs there seemed to be no chance of getting her hands up to her head, she\ntried to get her head down to them, and was delighted to find that her\nneck would bend about easily in any direction, like a serpent. She had\njust succeeded in curving it down into a graceful zigzag, and was going\nto dive in among the leaves, which she found to be nothing but the tops\nof the trees under which she had been wandering, when a sharp hiss made\nher draw back in a hurry: a large pigeon had flown into her face, and\nwas beating her violently with its wings.\n\n'Serpent!' screamed the Pigeon.\n\n'I'm NOT a serpent!' said Alice indignantly. 'Let me alone!'\n\n'Serpent, I say again!' repeated the Pigeon, but in a more subdued tone,\nand added with a kind of sob, 'I've tried every way, and nothing seems\nto suit them!'\n\n'I haven't the least idea what you're talking about,' said Alice.\n\n'I've tried the roots of trees, and I've tried banks, and I've tried\nhedges,' the Pigeon went on, without attending to her; 'but those\nserpents! There's no pleasing them!'\n\nAlice was more and more puzzled, but she thought there was no use in\nsaying anything more till the Pigeon had finished.\n\n'As if it wasn't trouble enough hatching the eggs,' said the Pigeon;\n'but I must be on the look-out for serpents night and day! Why, I\nhaven't had a wink of sleep these three weeks!'\n\n'I'm very sorry you've been annoyed,' said Alice, who was beginning to\nsee its meaning.\n\n'And just as I'd taken the highest tree in the wood,' continued the\nPigeon, raising its voice to a shriek, 'and just as I was thinking I\nshould be free of them at last, they must needs come wriggling down from\nthe sky! Ugh, Serpent!'\n\n'But I'm NOT a serpent, I tell you!' said Alice. 'I'm a--I'm a--'\n\n'Well! WHAT are you?' said the Pigeon. 'I can see you're trying to\ninvent something!'\n\n'I--I'm a little girl,' said Alice, rather doubtfully, as she remembered\nthe number of changes she had gone through that day.\n\n'A likely story indeed!' said the Pigeon in a tone of the deepest\ncontempt. 'I've seen a good many little girls in my time, but never ONE\nwith such a neck as that! No, no! You're a serpent; and there's no use\ndenying it. I suppose you'll be telling me next that you never tasted an\negg!'\n\n'I HAVE tasted eggs, certainly,' said Alice, who was a very truthful\nchild; 'but little girls eat eggs quite as much as serpents do, you\nknow.'\n\n'I don't believe it,' said the Pigeon; 'but if they do, why then they're\na kind of serpent, that's all I can say.'\n\nThis was such a new idea to Alice, that she was quite silent for a\nminute or two, which gave the Pigeon the opportunity of adding, 'You're\nlooking for eggs, I know THAT well enough; and what does it matter to me\nwhether you're a little girl or a serpent?'\n\n'It matters a good deal to ME,' said Alice hastily; 'but I'm not looking\nfor eggs, as it happens; and if I was, I shouldn't want YOURS: I don't\nlike them raw.'\n\n'Well, be off, then!' said the Pigeon in a sulky tone, as it settled\ndown again into its nest. Alice crouched down among the trees as well as\nshe could, for her neck kept getting entangled among the branches, and\nevery now and then she had to stop and untwist it. After a while she\nremembered that she still held the pieces of mushroom in her hands, and\nshe set to work very carefully, nibbling first at one and then at the\nother, and growing sometimes taller and sometimes shorter, until she had\nsucceeded in bringing herself down to her usual height.\n\nIt was so long since she had been anything near the right size, that it\nfelt quite strange at first; but she got used to it in a few minutes,\nand began talking to herself, as usual. 'Come, there's half my plan done\nnow! How puzzling all these changes are! I'm never sure what I'm going\nto be, from one minute to another! However, I've got back to my right\nsize: the next thing is, to get into that beautiful garden--how IS that\nto be done, I wonder?' As she said this, she came suddenly upon an open\nplace, with a little house in it about four feet high. 'Whoever lives\nthere,' thought Alice, 'it'll never do to come upon them THIS size: why,\nI should frighten them out of their wits!' So she began nibbling at the\nrighthand bit again, and did not venture to go near the house till she\nhad brought herself down to nine inches high.\n\n\n\n\n!!! CHAPTER VI. Pig and Pepper\n\nFor a minute or two she stood looking at the house, and wondering what\nto do next, when suddenly a footman in livery came running out of the\nwood--(she considered him to be a footman because he was in livery:\notherwise, judging by his face only, she would have called him a\nfish)--and rapped loudly at the door with his knuckles. It was opened\nby another footman in livery, with a round face, and large eyes like a\nfrog; and both footmen, Alice noticed, had powdered hair that curled all\nover their heads. She felt very curious to know what it was all about,\nand crept a little way out of the wood to listen.\n\nThe Fish-Footman began by producing from under his arm a great letter,\nnearly as large as himself, and this he handed over to the other,\nsaying, in a solemn tone, 'For the Duchess. An invitation from the Queen\nto play croquet.' The Frog-Footman repeated, in the same solemn tone,\nonly changing the order of the words a little, 'From the Queen. An\ninvitation for the Duchess to play croquet.'\n\nThen they both bowed low, and their curls got entangled together.\n\nAlice laughed so much at this, that she had to run back into the\nwood for fear of their hearing her; and when she next peeped out the\nFish-Footman was gone, and the other was sitting on the ground near the\ndoor, staring stupidly up into the sky.\n\nAlice went timidly up to the door, and knocked.\n\n'There's no sort of use in knocking,' said the Footman, 'and that for\ntwo reasons. First, because I'm on the same side of the door as you\nare; secondly, because they're making such a noise inside, no one could\npossibly hear you.' And certainly there was a most extraordinary noise\ngoing on within--a constant howling and sneezing, and every now and then\na great crash, as if a dish or kettle had been broken to pieces.\n\n'Please, then,' said Alice, 'how am I to get in?'\n\n'There might be some sense in your knocking,' the Footman went on\nwithout attending to her, 'if we had the door between us. For instance,\nif you were INSIDE, you might knock, and I could let you out, you know.'\nHe was looking up into the sky all the time he was speaking, and this\nAlice thought decidedly uncivil. 'But perhaps he can't help it,' she\nsaid to herself; 'his eyes are so VERY nearly at the top of his head.\nBut at any rate he might answer questions.--How am I to get in?' she\nrepeated, aloud.\n\n'I shall sit here,' the Footman remarked, 'till tomorrow--'\n\nAt this moment the door of the house opened, and a large plate came\nskimming out, straight at the Footman's head: it just grazed his nose,\nand broke to pieces against one of the trees behind him.\n\n'--or next day, maybe,' the Footman continued in the same tone, exactly\nas if nothing had happened.\n\n'How am I to get in?' asked Alice again, in a louder tone.\n\n'ARE you to get in at all?' said the Footman. 'That's the first\nquestion, you know.'\n\nIt was, no doubt: only Alice did not like to be told so. 'It's really\ndreadful,' she muttered to herself, 'the way all the creatures argue.\nIt's enough to drive one crazy!'\n\nThe Footman seemed to think this a good opportunity for repeating his\nremark, with variations. 'I shall sit here,' he said, 'on and off, for\ndays and days.'\n\n'But what am I to do?' said Alice.\n\n'Anything you like,' said the Footman, and began whistling.\n\n'Oh, there's no use in talking to him,' said Alice desperately: 'he's\nperfectly idiotic!' And she opened the door and went in.\n\nThe door led right into a large kitchen, which was full of smoke from\none end to the other: the Duchess was sitting on a three-legged stool in\nthe middle, nursing a baby; the cook was leaning over the fire, stirring\na large cauldron which seemed to be full of soup.\n\n'There's certainly too much pepper in that soup!' Alice said to herself,\nas well as she could for sneezing.\n\nThere was certainly too much of it in the air. Even the Duchess\nsneezed occasionally; and as for the baby, it was sneezing and howling\nalternately without a moment's pause. The only things in the kitchen\nthat did not sneeze, were the cook, and a large cat which was sitting on\nthe hearth and grinning from ear to ear.\n\n'Please would you tell me,' said Alice, a little timidly, for she was\nnot quite sure whether it was good manners for her to speak first, 'why\nyour cat grins like that?'\n\n'It's a Cheshire cat,' said the Duchess, 'and that's why. Pig!'\n\nShe said the last word with such sudden violence that Alice quite\njumped; but she saw in another moment that it was addressed to the baby,\nand not to her, so she took courage, and went on again:--\n\n'I didn't know that Cheshire cats always grinned; in fact, I didn't know\nthat cats COULD grin.'\n\n'They all can,' said the Duchess; 'and most of 'em do.'\n\n'I don't know of any that do,' Alice said very politely, feeling quite\npleased to have got into a conversation.\n\n'You don't know much,' said the Duchess; 'and that's a fact.'\n\nAlice did not at all like the tone of this remark, and thought it would\nbe as well to introduce some other subject of conversation. While she\nwas trying to fix on one, the cook took the cauldron of soup off the\nfire, and at once set to work throwing everything within her reach at\nthe Duchess and the baby--the fire-irons came first; then followed a\nshower of saucepans, plates, and dishes. The Duchess took no notice of\nthem even when they hit her; and the baby was howling so much already,\nthat it was quite impossible to say whether the blows hurt it or not.\n\n'Oh, PLEASE mind what you're doing!' cried Alice, jumping up and down in\nan agony of terror. 'Oh, there goes his PRECIOUS nose'; as an unusually\nlarge saucepan flew close by it, and very nearly carried it off.\n\n'If everybody minded their own business,' the Duchess said in a hoarse\ngrowl, 'the world would go round a deal faster than it does.'\n\n'Which would NOT be an advantage,' said Alice, who felt very glad to get\nan opportunity of showing off a little of her knowledge. 'Just think of\nwhat work it would make with the day and night! You see the earth takes\ntwenty-four hours to turn round on its axis--'\n\n'Talking of axes,' said the Duchess, 'chop off her head!'\n\nAlice glanced rather anxiously at the cook, to see if she meant to take\nthe hint; but the cook was busily stirring the soup, and seemed not to\nbe listening, so she went on again: 'Twenty-four hours, I THINK; or is\nit twelve? I--'\n\n'Oh, don't bother ME,' said the Duchess; 'I never could abide figures!'\nAnd with that she began nursing her child again, singing a sort of\nlullaby to it as she did so, and giving it a violent shake at the end of\nevery line:\n\n 'Speak roughly to your little boy,\n And beat him when he sneezes:\n He only does it to annoy,\n Because he knows it teases.'\n\n CHORUS.\n\n (In which the cook and the baby joined):--\n\n 'Wow! wow! wow!'\n\nWhile the Duchess sang the second verse of the song, she kept tossing\nthe baby violently up and down, and the poor little thing howled so,\nthat Alice could hardly hear the words:--\n\n 'I speak severely to my boy,\n I beat him when he sneezes;\n For he can thoroughly enjoy\n The pepper when he pleases!'\n\n CHORUS.\n\n 'Wow! wow! wow!'\n\n'Here! you may nurse it a bit, if you like!' the Duchess said to Alice,\nflinging the baby at her as she spoke. 'I must go and get ready to play\ncroquet with the Queen,' and she hurried out of the room. The cook threw\na frying-pan after her as she went out, but it just missed her.\n\nAlice caught the baby with some difficulty, as it was a queer-shaped\nlittle creature, and held out its arms and legs in all directions, 'just\nlike a star-fish,' thought Alice. The poor little thing was snorting\nlike a steam-engine when she caught it, and kept doubling itself up and\nstraightening itself out again, so that altogether, for the first minute\nor two, it was as much as she could do to hold it.\n\nAs soon as she had made out the proper way of nursing it, (which was to\ntwist it up into a sort of knot, and then keep tight hold of its right\near and left foot, so as to prevent its undoing itself,) she carried\nit out into the open air. 'IF I don't take this child away with me,'\nthought Alice, 'they're sure to kill it in a day or two: wouldn't it be\nmurder to leave it behind?' She said the last words out loud, and the\nlittle thing grunted in reply (it had left off sneezing by this time).\n'Don't grunt,' said Alice; 'that's not at all a proper way of expressing\nyourself.'\n\nThe baby grunted again, and Alice looked very anxiously into its face to\nsee what was the matter with it. There could be no doubt that it had\na VERY turn-up nose, much more like a snout than a real nose; also its\neyes were getting extremely small for a baby: altogether Alice did not\nlike the look of the thing at all. 'But perhaps it was only sobbing,'\nshe thought, and looked into its eyes again, to see if there were any\ntears.\n\nNo, there were no tears. 'If you're going to turn into a pig, my dear,'\nsaid Alice, seriously, 'I'll have nothing more to do with you. Mind\nnow!' The poor little thing sobbed again (or grunted, it was impossible\nto say which), and they went on for some while in silence.\n\nAlice was just beginning to think to herself, 'Now, what am I to do with\nthis creature when I get it home?' when it grunted again, so violently,\nthat she looked down into its face in some alarm. This time there could\nbe NO mistake about it: it was neither more nor less than a pig, and she\nfelt that it would be quite absurd for her to carry it further.\n\nSo she set the little creature down, and felt quite relieved to see\nit trot away quietly into the wood. 'If it had grown up,' she said\nto herself, 'it would have made a dreadfully ugly child: but it makes\nrather a handsome pig, I think.' And she began thinking over other\nchildren she knew, who might do very well as pigs, and was just saying\nto herself, 'if one only knew the right way to change them--' when she\nwas a little startled by seeing the Cheshire Cat sitting on a bough of a\ntree a few yards off.\n\nThe Cat only grinned when it saw Alice. It looked good-natured, she\nthought: still it had VERY long claws and a great many teeth, so she\nfelt that it ought to be treated with respect.\n\n'Cheshire Puss,' she began, rather timidly, as she did not at all know\nwhether it would like the name: however, it only grinned a little wider.\n'Come, it's pleased so far,' thought Alice, and she went on. 'Would you\ntell me, please, which way I ought to go from here?'\n\n'That depends a good deal on where you want to get to,' said the Cat.\n\n'I don't much care where--' said Alice.\n\n'Then it doesn't matter which way you go,' said the Cat.\n\n'--so long as I get SOMEWHERE,' Alice added as an explanation.\n\n'Oh, you're sure to do that,' said the Cat, 'if you only walk long\nenough.'\n\nAlice felt that this could not be denied, so she tried another question.\n'What sort of people live about here?'\n\n'In THAT direction,' the Cat said, waving its right paw round, 'lives\na Hatter: and in THAT direction,' waving the other paw, 'lives a March\nHare. Visit either you like: they're both mad.'\n\n'But I don't want to go among mad people,' Alice remarked.\n\n'Oh, you can't help that,' said the Cat: 'we're all mad here. I'm mad.\nYou're mad.'\n\n'How do you know I'm mad?' said Alice.\n\n'You must be,' said the Cat, 'or you wouldn't have come here.'\n\nAlice didn't think that proved it at all; however, she went on 'And how\ndo you know that you're mad?'\n\n'To begin with,' said the Cat, 'a dog's not mad. You grant that?'\n\n'I suppose so,' said Alice.\n\n'Well, then,' the Cat went on, 'you see, a dog growls when it's angry,\nand wags its tail when it's pleased. Now I growl when I'm pleased, and\nwag my tail when I'm angry. Therefore I'm mad.'\n\n'I call it purring, not growling,' said Alice.\n\n'Call it what you like,' said the Cat. 'Do you play croquet with the\nQueen to-day?'\n\n'I should like it very much,' said Alice, 'but I haven't been invited\nyet.'\n\n'You'll see me there,' said the Cat, and vanished.\n\nAlice was not much surprised at this, she was getting so used to queer\nthings happening. While she was looking at the place where it had been,\nit suddenly appeared again.\n\n'By-the-bye, what became of the baby?' said the Cat. 'I'd nearly\nforgotten to ask.'\n\n'It turned into a pig,' Alice quietly said, just as if it had come back\nin a natural way.\n\n'I thought it would,' said the Cat, and vanished again.\n\nAlice waited a little, half expecting to see it again, but it did not\nappear, and after a minute or two she walked on in the direction in\nwhich the March Hare was said to live. 'I've seen hatters before,' she\nsaid to herself; 'the March Hare will be much the most interesting, and\nperhaps as this is May it won't be raving mad--at least not so mad as\nit was in March.' As she said this, she looked up, and there was the Cat\nagain, sitting on a branch of a tree.\n\n'Did you say pig, or fig?' said the Cat.\n\n'I said pig,' replied Alice; 'and I wish you wouldn't keep appearing and\nvanishing so suddenly: you make one quite giddy.'\n\n'All right,' said the Cat; and this time it vanished quite slowly,\nbeginning with the end of the tail, and ending with the grin, which\nremained some time after the rest of it had gone.\n\n'Well! I've often seen a cat without a grin,' thought Alice; 'but a grin\nwithout a cat! It's the most curious thing I ever saw in my life!'\n\nShe had not gone much farther before she came in sight of the house\nof the March Hare: she thought it must be the right house, because the\nchimneys were shaped like ears and the roof was thatched with fur. It\nwas so large a house, that she did not like to go nearer till she had\nnibbled some more of the lefthand bit of mushroom, and raised herself to\nabout two feet high: even then she walked up towards it rather timidly,\nsaying to herself 'Suppose it should be raving mad after all! I almost\nwish I'd gone to see the Hatter instead!'\n\n\n\n\n!!! CHAPTER VII. A Mad Tea-Party\n\nThere was a table set out under a tree in front of the house, and the\nMarch Hare and the Hatter were having tea at it: a Dormouse was sitting\nbetween them, fast asleep, and the other two were using it as a\ncushion, resting their elbows on it, and talking over its head. 'Very\nuncomfortable for the Dormouse,' thought Alice; 'only, as it's asleep, I\nsuppose it doesn't mind.'\n\nThe table was a large one, but the three were all crowded together at\none corner of it: 'No room! No room!' they cried out when they saw Alice\ncoming. 'There's PLENTY of room!' said Alice indignantly, and she sat\ndown in a large arm-chair at one end of the table.\n\n'Have some wine,' the March Hare said in an encouraging tone.\n\nAlice looked all round the table, but there was nothing on it but tea.\n'I don't see any wine,' she remarked.\n\n'There isn't any,' said the March Hare.\n\n'Then it wasn't very civil of you to offer it,' said Alice angrily.\n\n'It wasn't very civil of you to sit down without being invited,' said\nthe March Hare.\n\n'I didn't know it was YOUR table,' said Alice; 'it's laid for a great\nmany more than three.'\n\n'Your hair wants cutting,' said the Hatter. He had been looking at Alice\nfor some time with great curiosity, and this was his first speech.\n\n'You should learn not to make personal remarks,' Alice said with some\nseverity; 'it's very rude.'\n\nThe Hatter opened his eyes very wide on hearing this; but all he SAID\nwas, 'Why is a raven like a writing-desk?'\n\n'Come, we shall have some fun now!' thought Alice. 'I'm glad they've\nbegun asking riddles.--I believe I can guess that,' she added aloud.\n\n'Do you mean that you think you can find out the answer to it?' said the\nMarch Hare.\n\n'Exactly so,' said Alice.\n\n'Then you should say what you mean,' the March Hare went on.\n\n'I do,' Alice hastily replied; 'at least--at least I mean what I\nsay--that's the same thing, you know.'\n\n'Not the same thing a bit!' said the Hatter. 'You might just as well say\nthat \"I see what I eat\" is the same thing as \"I eat what I see\"!'\n\n'You might just as well say,' added the March Hare, 'that \"I like what I\nget\" is the same thing as \"I get what I like\"!'\n\n'You might just as well say,' added the Dormouse, who seemed to be\ntalking in his sleep, 'that \"I breathe when I sleep\" is the same thing\nas \"I sleep when I breathe\"!'\n\n'It IS the same thing with you,' said the Hatter, and here the\nconversation dropped, and the party sat silent for a minute, while Alice\nthought over all she could remember about ravens and writing-desks,\nwhich wasn't much.\n\nThe Hatter was the first to break the silence. 'What day of the month\nis it?' he said, turning to Alice: he had taken his watch out of his\npocket, and was looking at it uneasily, shaking it every now and then,\nand holding it to his ear.\n\nAlice considered a little, and then said 'The fourth.'\n\n'Two days wrong!' sighed the Hatter. 'I told you butter wouldn't suit\nthe works!' he added looking angrily at the March Hare.\n\n'It was the BEST butter,' the March Hare meekly replied.\n\n'Yes, but some crumbs must have got in as well,' the Hatter grumbled:\n'you shouldn't have put it in with the bread-knife.'\n\nThe March Hare took the watch and looked at it gloomily: then he dipped\nit into his cup of tea, and looked at it again: but he could think of\nnothing better to say than his first remark, 'It was the BEST butter,\nyou know.'\n\nAlice had been looking over his shoulder with some curiosity. 'What a\nfunny watch!' she remarked. 'It tells the day of the month, and doesn't\ntell what o'clock it is!'\n\n'Why should it?' muttered the Hatter. 'Does YOUR watch tell you what\nyear it is?'\n\n'Of course not,' Alice replied very readily: 'but that's because it\nstays the same year for such a long time together.'\n\n'Which is just the case with MINE,' said the Hatter.\n\nAlice felt dreadfully puzzled. The Hatter's remark seemed to have no\nsort of meaning in it, and yet it was certainly English. 'I don't quite\nunderstand you,' she said, as politely as she could.\n\n'The Dormouse is asleep again,' said the Hatter, and he poured a little\nhot tea upon its nose.\n\nThe Dormouse shook its head impatiently, and said, without opening its\neyes, 'Of course, of course; just what I was going to remark myself.'\n\n'Have you guessed the riddle yet?' the Hatter said, turning to Alice\nagain.\n\n'No, I give it up,' Alice replied: 'what's the answer?'\n\n'I haven't the slightest idea,' said the Hatter.\n\n'Nor I,' said the March Hare.\n\nAlice sighed wearily. 'I think you might do something better with the\ntime,' she said, 'than waste it in asking riddles that have no answers.'\n\n'If you knew Time as well as I do,' said the Hatter, 'you wouldn't talk\nabout wasting IT. It's HIM.'\n\n'I don't know what you mean,' said Alice.\n\n'Of course you don't!' the Hatter said, tossing his head contemptuously.\n'I dare say you never even spoke to Time!'\n\n'Perhaps not,' Alice cautiously replied: 'but I know I have to beat time\nwhen I learn music.'\n\n'Ah! that accounts for it,' said the Hatter. 'He won't stand beating.\nNow, if you only kept on good terms with him, he'd do almost anything\nyou liked with the clock. For instance, suppose it were nine o'clock in\nthe morning, just time to begin lessons: you'd only have to whisper a\nhint to Time, and round goes the clock in a twinkling! Half-past one,\ntime for dinner!'\n\n('I only wish it was,' the March Hare said to itself in a whisper.)\n\n'That would be grand, certainly,' said Alice thoughtfully: 'but then--I\nshouldn't be hungry for it, you know.'\n\n'Not at first, perhaps,' said the Hatter: 'but you could keep it to\nhalf-past one as long as you liked.'\n\n'Is that the way YOU manage?' Alice asked.\n\nThe Hatter shook his head mournfully. 'Not I!' he replied. 'We\nquarrelled last March--just before HE went mad, you know--' (pointing\nwith his tea spoon at the March Hare,) '--it was at the great concert\ngiven by the Queen of Hearts, and I had to sing\n\n \"Twinkle, twinkle, little bat!\n How I wonder what you're at!\"\n\nYou know the song, perhaps?'\n\n'I've heard something like it,' said Alice.\n\n'It goes on, you know,' the Hatter continued, 'in this way:--\n\n \"Up above the world you fly,\n Like a tea-tray in the sky.\n Twinkle, twinkle--\"'\n\nHere the Dormouse shook itself, and began singing in its sleep 'Twinkle,\ntwinkle, twinkle, twinkle--' and went on so long that they had to pinch\nit to make it stop.\n\n'Well, I'd hardly finished the first verse,' said the Hatter, 'when the\nQueen jumped up and bawled out, \"He's murdering the time! Off with his\nhead!\"'\n\n'How dreadfully savage!' exclaimed Alice.\n\n'And ever since that,' the Hatter went on in a mournful tone, 'he won't\ndo a thing I ask! It's always six o'clock now.'\n\nA bright idea came into Alice's head. 'Is that the reason so many\ntea-things are put out here?' she asked.\n\n'Yes, that's it,' said the Hatter with a sigh: 'it's always tea-time,\nand we've no time to wash the things between whiles.'\n\n'Then you keep moving round, I suppose?' said Alice.\n\n'Exactly so,' said the Hatter: 'as the things get used up.'\n\n'But what happens when you come to the beginning again?' Alice ventured\nto ask.\n\n'Suppose we change the subject,' the March Hare interrupted, yawning.\n'I'm getting tired of this. I vote the young lady tells us a story.'\n\n'I'm afraid I don't know one,' said Alice, rather alarmed at the\nproposal.\n\n'Then the Dormouse shall!' they both cried. 'Wake up, Dormouse!' And\nthey pinched it on both sides at once.\n\nThe Dormouse slowly opened his eyes. 'I wasn't asleep,' he said in a\nhoarse, feeble voice: 'I heard every word you fellows were saying.'\n\n'Tell us a story!' said the March Hare.\n\n'Yes, please do!' pleaded Alice.\n\n'And be quick about it,' added the Hatter, 'or you'll be asleep again\nbefore it's done.'\n\n'Once upon a time there were three little sisters,' the Dormouse began\nin a great hurry; 'and their names were Elsie, Lacie, and Tillie; and\nthey lived at the bottom of a well--'\n\n'What did they live on?' said Alice, who always took a great interest in\nquestions of eating and drinking.\n\n'They lived on treacle,' said the Dormouse, after thinking a minute or\ntwo.\n\n'They couldn't have done that, you know,' Alice gently remarked; 'they'd\nhave been ill.'\n\n'So they were,' said the Dormouse; 'VERY ill.'\n\nAlice tried to fancy to herself what such an extraordinary ways of\nliving would be like, but it puzzled her too much, so she went on: 'But\nwhy did they live at the bottom of a well?'\n\n'Take some more tea,' the March Hare said to Alice, very earnestly.\n\n'I've had nothing yet,' Alice replied in an offended tone, 'so I can't\ntake more.'\n\n'You mean you can't take LESS,' said the Hatter: 'it's very easy to take\nMORE than nothing.'\n\n'Nobody asked YOUR opinion,' said Alice.\n\n'Who's making personal remarks now?' the Hatter asked triumphantly.\n\nAlice did not quite know what to say to this: so she helped herself\nto some tea and bread-and-butter, and then turned to the Dormouse, and\nrepeated her question. 'Why did they live at the bottom of a well?'\n\nThe Dormouse again took a minute or two to think about it, and then\nsaid, 'It was a treacle-well.'\n\n'There's no such thing!' Alice was beginning very angrily, but the\nHatter and the March Hare went 'Sh! sh!' and the Dormouse sulkily\nremarked, 'If you can't be civil, you'd better finish the story for\nyourself.'\n\n'No, please go on!' Alice said very humbly; 'I won't interrupt again. I\ndare say there may be ONE.'\n\n'One, indeed!' said the Dormouse indignantly. However, he consented to\ngo on. 'And so these three little sisters--they were learning to draw,\nyou know--'\n\n'What did they draw?' said Alice, quite forgetting her promise.\n\n'Treacle,' said the Dormouse, without considering at all this time.\n\n'I want a clean cup,' interrupted the Hatter: 'let's all move one place\non.'\n\nHe moved on as he spoke, and the Dormouse followed him: the March Hare\nmoved into the Dormouse's place, and Alice rather unwillingly took\nthe place of the March Hare. The Hatter was the only one who got any\nadvantage from the change: and Alice was a good deal worse off than\nbefore, as the March Hare had just upset the milk-jug into his plate.\n\nAlice did not wish to offend the Dormouse again, so she began very\ncautiously: 'But I don't understand. Where did they draw the treacle\nfrom?'\n\n'You can draw water out of a water-well,' said the Hatter; 'so I should\nthink you could draw treacle out of a treacle-well--eh, stupid?'\n\n'But they were IN the well,' Alice said to the Dormouse, not choosing to\nnotice this last remark.\n\n'Of course they were', said the Dormouse; '--well in.'\n\nThis answer so confused poor Alice, that she let the Dormouse go on for\nsome time without interrupting it.\n\n'They were learning to draw,' the Dormouse went on, yawning and rubbing\nits eyes, for it was getting very sleepy; 'and they drew all manner of\nthings--everything that begins with an M--'\n\n'Why with an M?' said Alice.\n\n'Why not?' said the March Hare.\n\nAlice was silent.\n\nThe Dormouse had closed its eyes by this time, and was going off into\na doze; but, on being pinched by the Hatter, it woke up again with\na little shriek, and went on: '--that begins with an M, such as\nmouse-traps, and the moon, and memory, and muchness--you know you say\nthings are \"much of a muchness\"--did you ever see such a thing as a\ndrawing of a muchness?'\n\n'Really, now you ask me,' said Alice, very much confused, 'I don't\nthink--'\n\n'Then you shouldn't talk,' said the Hatter.\n\nThis piece of rudeness was more than Alice could bear: she got up in\ngreat disgust, and walked off; the Dormouse fell asleep instantly, and\nneither of the others took the least notice of her going, though she\nlooked back once or twice, half hoping that they would call after her:\nthe last time she saw them, they were trying to put the Dormouse into\nthe teapot.\n\n'At any rate I'll never go THERE again!' said Alice as she picked her\nway through the wood. 'It's the stupidest tea-party I ever was at in all\nmy life!'\n\nJust as she said this, she noticed that one of the trees had a door\nleading right into it. 'That's very curious!' she thought. 'But\neverything's curious today. I think I may as well go in at once.' And in\nshe went.\n\nOnce more she found herself in the long hall, and close to the little\nglass table. 'Now, I'll manage better this time,' she said to herself,\nand began by taking the little golden key, and unlocking the door that\nled into the garden. Then she went to work nibbling at the mushroom (she\nhad kept a piece of it in her pocket) till she was about a foot high:\nthen she walked down the little passage: and THEN--she found herself at\nlast in the beautiful garden, among the bright flower-beds and the cool\nfountains.\n\n\n\n\n!!! CHAPTER VIII. The Queen's Croquet-Ground\n\nA large rose-tree stood near the entrance of the garden: the roses\ngrowing on it were white, but there were three gardeners at it, busily\npainting them red. Alice thought this a very curious thing, and she went\nnearer to watch them, and just as she came up to them she heard one of\nthem say, 'Look out now, Five! Don't go splashing paint over me like\nthat!'\n\n'I couldn't help it,' said Five, in a sulky tone; 'Seven jogged my\nelbow.'\n\nOn which Seven looked up and said, 'That's right, Five! Always lay the\nblame on others!'\n\n'YOU'D better not talk!' said Five. 'I heard the Queen say only\nyesterday you deserved to be beheaded!'\n\n'What for?' said the one who had spoken first.\n\n'That's none of YOUR business, Two!' said Seven.\n\n'Yes, it IS his business!' said Five, 'and I'll tell him--it was for\nbringing the cook tulip-roots instead of onions.'\n\nSeven flung down his brush, and had just begun 'Well, of all the unjust\nthings--' when his eye chanced to fall upon Alice, as she stood watching\nthem, and he checked himself suddenly: the others looked round also, and\nall of them bowed low.\n\n'Would you tell me,' said Alice, a little timidly, 'why you are painting\nthose roses?'\n\nFive and Seven said nothing, but looked at Two. Two began in a low\nvoice, 'Why the fact is, you see, Miss, this here ought to have been a\nRED rose-tree, and we put a white one in by mistake; and if the Queen\nwas to find it out, we should all have our heads cut off, you know.\nSo you see, Miss, we're doing our best, afore she comes, to--' At this\nmoment Five, who had been anxiously looking across the garden, called\nout 'The Queen! The Queen!' and the three gardeners instantly threw\nthemselves flat upon their faces. There was a sound of many footsteps,\nand Alice looked round, eager to see the Queen.\n\nFirst came ten soldiers carrying clubs; these were all shaped like\nthe three gardeners, oblong and flat, with their hands and feet at the\ncorners: next the ten courtiers; these were ornamented all over with\ndiamonds, and walked two and two, as the soldiers did. After these came\nthe royal children; there were ten of them, and the little dears came\njumping merrily along hand in hand, in couples: they were all ornamented\nwith hearts. Next came the guests, mostly Kings and Queens, and among\nthem Alice recognised the White Rabbit: it was talking in a hurried\nnervous manner, smiling at everything that was said, and went by without\nnoticing her. Then followed the Knave of Hearts, carrying the King's\ncrown on a crimson velvet cushion; and, last of all this grand\nprocession, came THE KING AND QUEEN OF HEARTS.\n\nAlice was rather doubtful whether she ought not to lie down on her face\nlike the three gardeners, but she could not remember ever having heard\nof such a rule at processions; 'and besides, what would be the use of\na procession,' thought she, 'if people had all to lie down upon their\nfaces, so that they couldn't see it?' So she stood still where she was,\nand waited.\n\nWhen the procession came opposite to Alice, they all stopped and looked\nat her, and the Queen said severely 'Who is this?' She said it to the\nKnave of Hearts, who only bowed and smiled in reply.\n\n'Idiot!' said the Queen, tossing her head impatiently; and, turning to\nAlice, she went on, 'What's your name, child?'\n\n'My name is Alice, so please your Majesty,' said Alice very politely;\nbut she added, to herself, 'Why, they're only a pack of cards, after\nall. I needn't be afraid of them!'\n\n'And who are THESE?' said the Queen, pointing to the three gardeners who\nwere lying round the rosetree; for, you see, as they were lying on their\nfaces, and the pattern on their backs was the same as the rest of the\npack, she could not tell whether they were gardeners, or soldiers, or\ncourtiers, or three of her own children.\n\n'How should I know?' said Alice, surprised at her own courage. 'It's no\nbusiness of MINE.'\n\nThe Queen turned crimson with fury, and, after glaring at her for a\nmoment like a wild beast, screamed 'Off with her head! Off--'\n\n'Nonsense!' said Alice, very loudly and decidedly, and the Queen was\nsilent.\n\nThe King laid his hand upon her arm, and timidly said 'Consider, my\ndear: she is only a child!'\n\nThe Queen turned angrily away from him, and said to the Knave 'Turn them\nover!'\n\nThe Knave did so, very carefully, with one foot.\n\n'Get up!' said the Queen, in a shrill, loud voice, and the three\ngardeners instantly jumped up, and began bowing to the King, the Queen,\nthe royal children, and everybody else.\n\n'Leave off that!' screamed the Queen. 'You make me giddy.' And then,\nturning to the rose-tree, she went on, 'What HAVE you been doing here?'\n\n'May it please your Majesty,' said Two, in a very humble tone, going\ndown on one knee as he spoke, 'we were trying--'\n\n'I see!' said the Queen, who had meanwhile been examining the roses.\n'Off with their heads!' and the procession moved on, three of the\nsoldiers remaining behind to execute the unfortunate gardeners, who ran\nto Alice for protection.\n\n'You shan't be beheaded!' said Alice, and she put them into a large\nflower-pot that stood near. The three soldiers wandered about for a\nminute or two, looking for them, and then quietly marched off after the\nothers.\n\n'Are their heads off?' shouted the Queen.\n\n'Their heads are gone, if it please your Majesty!' the soldiers shouted\nin reply.\n\n'That's right!' shouted the Queen. 'Can you play croquet?'\n\nThe soldiers were silent, and looked at Alice, as the question was\nevidently meant for her.\n\n'Yes!' shouted Alice.\n\n'Come on, then!' roared the Queen, and Alice joined the procession,\nwondering very much what would happen next.\n\n'It's--it's a very fine day!' said a timid voice at her side. She was\nwalking by the White Rabbit, who was peeping anxiously into her face.\n\n'Very,' said Alice: '--where's the Duchess?'\n\n'Hush! Hush!' said the Rabbit in a low, hurried tone. He looked\nanxiously over his shoulder as he spoke, and then raised himself upon\ntiptoe, put his mouth close to her ear, and whispered 'She's under\nsentence of execution.'\n\n'What for?' said Alice.\n\n'Did you say \"What a pity!\"?' the Rabbit asked.\n\n'No, I didn't,' said Alice: 'I don't think it's at all a pity. I said\n\"What for?\"'\n\n'She boxed the Queen's ears--' the Rabbit began. Alice gave a little\nscream of laughter. 'Oh, hush!' the Rabbit whispered in a frightened\ntone. 'The Queen will hear you! You see, she came rather late, and the\nQueen said--'\n\n'Get to your places!' shouted the Queen in a voice of thunder, and\npeople began running about in all directions, tumbling up against each\nother; however, they got settled down in a minute or two, and the game\nbegan. Alice thought she had never seen such a curious croquet-ground in\nher life; it was all ridges and furrows; the balls were live hedgehogs,\nthe mallets live flamingoes, and the soldiers had to double themselves\nup and to stand on their hands and feet, to make the arches.\n\nThe chief difficulty Alice found at first was in managing her flamingo:\nshe succeeded in getting its body tucked away, comfortably enough, under\nher arm, with its legs hanging down, but generally, just as she had got\nits neck nicely straightened out, and was going to give the hedgehog a\nblow with its head, it WOULD twist itself round and look up in her face,\nwith such a puzzled expression that she could not help bursting out\nlaughing: and when she had got its head down, and was going to begin\nagain, it was very provoking to find that the hedgehog had unrolled\nitself, and was in the act of crawling away: besides all this, there was\ngenerally a ridge or furrow in the way wherever she wanted to send the\nhedgehog to, and, as the doubled-up soldiers were always getting up\nand walking off to other parts of the ground, Alice soon came to the\nconclusion that it was a very difficult game indeed.\n\nThe players all played at once without waiting for turns, quarrelling\nall the while, and fighting for the hedgehogs; and in a very short\ntime the Queen was in a furious passion, and went stamping about, and\nshouting 'Off with his head!' or 'Off with her head!' about once in a\nminute.\n\nAlice began to feel very uneasy: to be sure, she had not as yet had any\ndispute with the Queen, but she knew that it might happen any minute,\n'and then,' thought she, 'what would become of me? They're dreadfully\nfond of beheading people here; the great wonder is, that there's any one\nleft alive!'\n\nShe was looking about for some way of escape, and wondering whether she\ncould get away without being seen, when she noticed a curious appearance\nin the air: it puzzled her very much at first, but, after watching it\na minute or two, she made it out to be a grin, and she said to herself\n'It's the Cheshire Cat: now I shall have somebody to talk to.'\n\n'How are you getting on?' said the Cat, as soon as there was mouth\nenough for it to speak with.\n\nAlice waited till the eyes appeared, and then nodded. 'It's no use\nspeaking to it,' she thought, 'till its ears have come, or at least one\nof them.' In another minute the whole head appeared, and then Alice put\ndown her flamingo, and began an account of the game, feeling very glad\nshe had someone to listen to her. The Cat seemed to think that there was\nenough of it now in sight, and no more of it appeared.\n\n'I don't think they play at all fairly,' Alice began, in rather a\ncomplaining tone, 'and they all quarrel so dreadfully one can't hear\noneself speak--and they don't seem to have any rules in particular;\nat least, if there are, nobody attends to them--and you've no idea how\nconfusing it is all the things being alive; for instance, there's the\narch I've got to go through next walking about at the other end of the\nground--and I should have croqueted the Queen's hedgehog just now, only\nit ran away when it saw mine coming!'\n\n'How do you like the Queen?' said the Cat in a low voice.\n\n'Not at all,' said Alice: 'she's so extremely--' Just then she noticed\nthat the Queen was close behind her, listening: so she went on,\n'--likely to win, that it's hardly worth while finishing the game.'\n\nThe Queen smiled and passed on.\n\n'Who ARE you talking to?' said the King, going up to Alice, and looking\nat the Cat's head with great curiosity.\n\n'It's a friend of mine--a Cheshire Cat,' said Alice: 'allow me to\nintroduce it.'\n\n'I don't like the look of it at all,' said the King: 'however, it may\nkiss my hand if it likes.'\n\n'I'd rather not,' the Cat remarked.\n\n'Don't be impertinent,' said the King, 'and don't look at me like that!'\nHe got behind Alice as he spoke.\n\n'A cat may look at a king,' said Alice. 'I've read that in some book,\nbut I don't remember where.'\n\n'Well, it must be removed,' said the King very decidedly, and he called\nthe Queen, who was passing at the moment, 'My dear! I wish you would\nhave this cat removed!'\n\nThe Queen had only one way of settling all difficulties, great or small.\n'Off with his head!' she said, without even looking round.\n\n'I'll fetch the executioner myself,' said the King eagerly, and he\nhurried off.\n\nAlice thought she might as well go back, and see how the game was going\non, as she heard the Queen's voice in the distance, screaming with\npassion. She had already heard her sentence three of the players to be\nexecuted for having missed their turns, and she did not like the look\nof things at all, as the game was in such confusion that she never knew\nwhether it was her turn or not. So she went in search of her hedgehog.\n\nThe hedgehog was engaged in a fight with another hedgehog, which seemed\nto Alice an excellent opportunity for croqueting one of them with the\nother: the only difficulty was, that her flamingo was gone across to the\nother side of the garden, where Alice could see it trying in a helpless\nsort of way to fly up into a tree.\n\nBy the time she had caught the flamingo and brought it back, the fight\nwas over, and both the hedgehogs were out of sight: 'but it doesn't\nmatter much,' thought Alice, 'as all the arches are gone from this side\nof the ground.' So she tucked it away under her arm, that it might not\nescape again, and went back for a little more conversation with her\nfriend.\n\nWhen she got back to the Cheshire Cat, she was surprised to find quite a\nlarge crowd collected round it: there was a dispute going on between\nthe executioner, the King, and the Queen, who were all talking at once,\nwhile all the rest were quite silent, and looked very uncomfortable.\n\nThe moment Alice appeared, she was appealed to by all three to settle\nthe question, and they repeated their arguments to her, though, as they\nall spoke at once, she found it very hard indeed to make out exactly\nwhat they said.\n\nThe executioner's argument was, that you couldn't cut off a head unless\nthere was a body to cut it off from: that he had never had to do such a\nthing before, and he wasn't going to begin at HIS time of life.\n\nThe King's argument was, that anything that had a head could be\nbeheaded, and that you weren't to talk nonsense.\n\nThe Queen's argument was, that if something wasn't done about it in less\nthan no time she'd have everybody executed, all round. (It was this last\nremark that had made the whole party look so grave and anxious.)\n\nAlice could think of nothing else to say but 'It belongs to the Duchess:\nyou'd better ask HER about it.'\n\n'She's in prison,' the Queen said to the executioner: 'fetch her here.'\nAnd the executioner went off like an arrow.\n\n The Cat's head began fading away the moment he was gone, and,\nby the time he had come back with the Duchess, it had entirely\ndisappeared; so the King and the executioner ran wildly up and down\nlooking for it, while the rest of the party went back to the game.\n\n\n\n\n!!! CHAPTER IX. The Mock Turtle's Story\n\n'You can't think how glad I am to see you again, you dear old thing!'\nsaid the Duchess, as she tucked her arm affectionately into Alice's, and\nthey walked off together.\n\nAlice was very glad to find her in such a pleasant temper, and thought\nto herself that perhaps it was only the pepper that had made her so\nsavage when they met in the kitchen.\n\n'When I'M a Duchess,' she said to herself, (not in a very hopeful tone\nthough), 'I won't have any pepper in my kitchen AT ALL. Soup does very\nwell without--Maybe it's always pepper that makes people hot-tempered,'\nshe went on, very much pleased at having found out a new kind of\nrule, 'and vinegar that makes them sour--and camomile that makes\nthem bitter--and--and barley-sugar and such things that make children\nsweet-tempered. I only wish people knew that: then they wouldn't be so\nstingy about it, you know--'\n\nShe had quite forgotten the Duchess by this time, and was a little\nstartled when she heard her voice close to her ear. 'You're thinking\nabout something, my dear, and that makes you forget to talk. I can't\ntell you just now what the moral of that is, but I shall remember it in\na bit.'\n\n'Perhaps it hasn't one,' Alice ventured to remark.\n\n'Tut, tut, child!' said the Duchess. 'Everything's got a moral, if only\nyou can find it.' And she squeezed herself up closer to Alice's side as\nshe spoke.\n\nAlice did not much like keeping so close to her: first, because the\nDuchess was VERY ugly; and secondly, because she was exactly the\nright height to rest her chin upon Alice's shoulder, and it was an\nuncomfortably sharp chin. However, she did not like to be rude, so she\nbore it as well as she could.\n\n'The game's going on rather better now,' she said, by way of keeping up\nthe conversation a little.\n\n''Tis so,' said the Duchess: 'and the moral of that is--\"Oh, 'tis love,\n'tis love, that makes the world go round!\"'\n\n'Somebody said,' Alice whispered, 'that it's done by everybody minding\ntheir own business!'\n\n'Ah, well! It means much the same thing,' said the Duchess, digging her\nsharp little chin into Alice's shoulder as she added, 'and the moral\nof THAT is--\"Take care of the sense, and the sounds will take care of\nthemselves.\"'\n\n'How fond she is of finding morals in things!' Alice thought to herself.\n\n'I dare say you're wondering why I don't put my arm round your waist,'\nthe Duchess said after a pause: 'the reason is, that I'm doubtful about\nthe temper of your flamingo. Shall I try the experiment?'\n\n'HE might bite,' Alice cautiously replied, not feeling at all anxious to\nhave the experiment tried.\n\n'Very true,' said the Duchess: 'flamingoes and mustard both bite. And\nthe moral of that is--\"Birds of a feather flock together.\"'\n\n'Only mustard isn't a bird,' Alice remarked.\n\n'Right, as usual,' said the Duchess: 'what a clear way you have of\nputting things!'\n\n'It's a mineral, I THINK,' said Alice.\n\n'Of course it is,' said the Duchess, who seemed ready to agree to\neverything that Alice said; 'there's a large mustard-mine near here. And\nthe moral of that is--\"The more there is of mine, the less there is of\nyours.\"'\n\n'Oh, I know!' exclaimed Alice, who had not attended to this last remark,\n'it's a vegetable. It doesn't look like one, but it is.'\n\n'I quite agree with you,' said the Duchess; 'and the moral of that\nis--\"Be what you would seem to be\"--or if you'd like it put more\nsimply--\"Never imagine yourself not to be otherwise than what it might\nappear to others that what you were or might have been was not otherwise\nthan what you had been would have appeared to them to be otherwise.\"'\n\n'I think I should understand that better,' Alice said very politely, 'if\nI had it written down: but I can't quite follow it as you say it.'\n\n'That's nothing to what I could say if I chose,' the Duchess replied, in\na pleased tone.\n\n'Pray don't trouble yourself to say it any longer than that,' said\nAlice.\n\n'Oh, don't talk about trouble!' said the Duchess. 'I make you a present\nof everything I've said as yet.'\n\n'A cheap sort of present!' thought Alice. 'I'm glad they don't give\nbirthday presents like that!' But she did not venture to say it out\nloud.\n\n'Thinking again?' the Duchess asked, with another dig of her sharp\nlittle chin.\n\n'I've a right to think,' said Alice sharply, for she was beginning to\nfeel a little worried.\n\n'Just about as much right,' said the Duchess, 'as pigs have to fly; and\nthe m--'\n\nBut here, to Alice's great surprise, the Duchess's voice died away, even\nin the middle of her favourite word 'moral,' and the arm that was linked\ninto hers began to tremble. Alice looked up, and there stood the Queen\nin front of them, with her arms folded, frowning like a thunderstorm.\n\n'A fine day, your Majesty!' the Duchess began in a low, weak voice.\n\n'Now, I give you fair warning,' shouted the Queen, stamping on the\nground as she spoke; 'either you or your head must be off, and that in\nabout half no time! Take your choice!'\n\nThe Duchess took her choice, and was gone in a moment.\n\n'Let's go on with the game,' the Queen said to Alice; and Alice was\ntoo much frightened to say a word, but slowly followed her back to the\ncroquet-ground.\n\nThe other guests had taken advantage of the Queen's absence, and were\nresting in the shade: however, the moment they saw her, they hurried\nback to the game, the Queen merely remarking that a moment's delay would\ncost them their lives.\n\nAll the time they were playing the Queen never left off quarrelling with\nthe other players, and shouting 'Off with his head!' or 'Off with her\nhead!' Those whom she sentenced were taken into custody by the soldiers,\nwho of course had to leave off being arches to do this, so that by\nthe end of half an hour or so there were no arches left, and all the\nplayers, except the King, the Queen, and Alice, were in custody and\nunder sentence of execution.\n\nThen the Queen left off, quite out of breath, and said to Alice, 'Have\nyou seen the Mock Turtle yet?'\n\n'No,' said Alice. 'I don't even know what a Mock Turtle is.'\n\n'It's the thing Mock Turtle Soup is made from,' said the Queen.\n\n'I never saw one, or heard of one,' said Alice.\n\n'Come on, then,' said the Queen, 'and he shall tell you his history,'\n\nAs they walked off together, Alice heard the King say in a low voice,\nto the company generally, 'You are all pardoned.' 'Come, THAT'S a good\nthing!' she said to herself, for she had felt quite unhappy at the\nnumber of executions the Queen had ordered.\n\nThey very soon came upon a Gryphon, lying fast asleep in the sun.\n(IF you don't know what a Gryphon is, look at the picture.) 'Up, lazy\nthing!' said the Queen, 'and take this young lady to see the Mock\nTurtle, and to hear his history. I must go back and see after some\nexecutions I have ordered'; and she walked off, leaving Alice alone with\nthe Gryphon. Alice did not quite like the look of the creature, but on\nthe whole she thought it would be quite as safe to stay with it as to go\nafter that savage Queen: so she waited.\n\nThe Gryphon sat up and rubbed its eyes: then it watched the Queen till\nshe was out of sight: then it chuckled. 'What fun!' said the Gryphon,\nhalf to itself, half to Alice.\n\n'What IS the fun?' said Alice.\n\n'Why, SHE,' said the Gryphon. 'It's all her fancy, that: they never\nexecutes nobody, you know. Come on!'\n\n'Everybody says \"come on!\" here,' thought Alice, as she went slowly\nafter it: 'I never was so ordered about in all my life, never!'\n\nThey had not gone far before they saw the Mock Turtle in the distance,\nsitting sad and lonely on a little ledge of rock, and, as they came\nnearer, Alice could hear him sighing as if his heart would break. She\npitied him deeply. 'What is his sorrow?' she asked the Gryphon, and the\nGryphon answered, very nearly in the same words as before, 'It's all his\nfancy, that: he hasn't got no sorrow, you know. Come on!'\n\nSo they went up to the Mock Turtle, who looked at them with large eyes\nfull of tears, but said nothing.\n\n'This here young lady,' said the Gryphon, 'she wants for to know your\nhistory, she do.'\n\n'I'll tell it her,' said the Mock Turtle in a deep, hollow tone: 'sit\ndown, both of you, and don't speak a word till I've finished.'\n\nSo they sat down, and nobody spoke for some minutes. Alice thought to\nherself, 'I don't see how he can EVEN finish, if he doesn't begin.' But\nshe waited patiently.\n\n'Once,' said the Mock Turtle at last, with a deep sigh, 'I was a real\nTurtle.'\n\nThese words were followed by a very long silence, broken only by an\noccasional exclamation of 'Hjckrrh!' from the Gryphon, and the constant\nheavy sobbing of the Mock Turtle. Alice was very nearly getting up and\nsaying, 'Thank you, sir, for your interesting story,' but she could\nnot help thinking there MUST be more to come, so she sat still and said\nnothing.\n\n'When we were little,' the Mock Turtle went on at last, more calmly,\nthough still sobbing a little now and then, 'we went to school in the\nsea. The master was an old Turtle--we used to call him Tortoise--'\n\n'Why did you call him Tortoise, if he wasn't one?' Alice asked.\n\n'We called him Tortoise because he taught us,' said the Mock Turtle\nangrily: 'really you are very dull!'\n\n'You ought to be ashamed of yourself for asking such a simple question,'\nadded the Gryphon; and then they both sat silent and looked at poor\nAlice, who felt ready to sink into the earth. At last the Gryphon said\nto the Mock Turtle, 'Drive on, old fellow! Don't be all day about it!'\nand he went on in these words:\n\n'Yes, we went to school in the sea, though you mayn't believe it--'\n\n'I never said I didn't!' interrupted Alice.\n\n'You did,' said the Mock Turtle.\n\n'Hold your tongue!' added the Gryphon, before Alice could speak again.\nThe Mock Turtle went on.\n\n'We had the best of educations--in fact, we went to school every day--'\n\n'I'VE been to a day-school, too,' said Alice; 'you needn't be so proud\nas all that.'\n\n'With extras?' asked the Mock Turtle a little anxiously.\n\n'Yes,' said Alice, 'we learned French and music.'\n\n'And washing?' said the Mock Turtle.\n\n'Certainly not!' said Alice indignantly.\n\n'Ah! then yours wasn't a really good school,' said the Mock Turtle in\na tone of great relief. 'Now at OURS they had at the end of the bill,\n\"French, music, AND WASHING--extra.\"'\n\n'You couldn't have wanted it much,' said Alice; 'living at the bottom of\nthe sea.'\n\n'I couldn't afford to learn it.' said the Mock Turtle with a sigh. 'I\nonly took the regular course.'\n\n'What was that?' inquired Alice.\n\n'Reeling and Writhing, of course, to begin with,' the Mock Turtle\nreplied; 'and then the different branches of Arithmetic--Ambition,\nDistraction, Uglification, and Derision.'\n\n'I never heard of \"Uglification,\"' Alice ventured to say. 'What is it?'\n\nThe Gryphon lifted up both its paws in surprise. 'What! Never heard of\nuglifying!' it exclaimed. 'You know what to beautify is, I suppose?'\n\n'Yes,' said Alice doubtfully: 'it means--to--make--anything--prettier.'\n\n'Well, then,' the Gryphon went on, 'if you don't know what to uglify is,\nyou ARE a simpleton.'\n\nAlice did not feel encouraged to ask any more questions about it, so she\nturned to the Mock Turtle, and said 'What else had you to learn?'\n\n'Well, there was Mystery,' the Mock Turtle replied, counting off\nthe subjects on his flappers, '--Mystery, ancient and modern, with\nSeaography: then Drawling--the Drawling-master was an old conger-eel,\nthat used to come once a week: HE taught us Drawling, Stretching, and\nFainting in Coils.'\n\n'What was THAT like?' said Alice.\n\n'Well, I can't show it you myself,' the Mock Turtle said: 'I'm too\nstiff. And the Gryphon never learnt it.'\n\n'Hadn't time,' said the Gryphon: 'I went to the Classics master, though.\nHe was an old crab, HE was.'\n\n'I never went to him,' the Mock Turtle said with a sigh: 'he taught\nLaughing and Grief, they used to say.'\n\n'So he did, so he did,' said the Gryphon, sighing in his turn; and both\ncreatures hid their faces in their paws.\n\n'And how many hours a day did you do lessons?' said Alice, in a hurry to\nchange the subject.\n\n'Ten hours the first day,' said the Mock Turtle: 'nine the next, and so\non.'\n\n'What a curious plan!' exclaimed Alice.\n\n'That's the reason they're called lessons,' the Gryphon remarked:\n'because they lessen from day to day.'\n\nThis was quite a new idea to Alice, and she thought it over a little\nbefore she made her next remark. 'Then the eleventh day must have been a\nholiday?'\n\n'Of course it was,' said the Mock Turtle.\n\n'And how did you manage on the twelfth?' Alice went on eagerly.\n\n'That's enough about lessons,' the Gryphon interrupted in a very decided\ntone: 'tell her something about the games now.'\n\n\n\n\n!!! CHAPTER X. The Lobster Quadrille\n\nThe Mock Turtle sighed deeply, and drew the back of one flapper across\nhis eyes. He looked at Alice, and tried to speak, but for a minute or\ntwo sobs choked his voice. 'Same as if he had a bone in his throat,'\nsaid the Gryphon: and it set to work shaking him and punching him in\nthe back. At last the Mock Turtle recovered his voice, and, with tears\nrunning down his cheeks, he went on again:--\n\n'You may not have lived much under the sea--' ('I haven't,' said\nAlice)--'and perhaps you were never even introduced to a lobster--'\n(Alice began to say 'I once tasted--' but checked herself hastily, and\nsaid 'No, never') '--so you can have no idea what a delightful thing a\nLobster Quadrille is!'\n\n'No, indeed,' said Alice. 'What sort of a dance is it?'\n\n'Why,' said the Gryphon, 'you first form into a line along the\nsea-shore--'\n\n'Two lines!' cried the Mock Turtle. 'Seals, turtles, salmon, and so on;\nthen, when you've cleared all the jelly-fish out of the way--'\n\n'THAT generally takes some time,' interrupted the Gryphon.\n\n'--you advance twice--'\n\n'Each with a lobster as a partner!' cried the Gryphon.\n\n'Of course,' the Mock Turtle said: 'advance twice, set to partners--'\n\n'--change lobsters, and retire in same order,' continued the Gryphon.\n\n'Then, you know,' the Mock Turtle went on, 'you throw the--'\n\n'The lobsters!' shouted the Gryphon, with a bound into the air.\n\n'--as far out to sea as you can--'\n\n'Swim after them!' screamed the Gryphon.\n\n'Turn a somersault in the sea!' cried the Mock Turtle, capering wildly\nabout.\n\n'Change lobsters again!' yelled the Gryphon at the top of its voice.\n\n'Back to land again, and that's all the first figure,' said the Mock\nTurtle, suddenly dropping his voice; and the two creatures, who had been\njumping about like mad things all this time, sat down again very sadly\nand quietly, and looked at Alice.\n\n'It must be a very pretty dance,' said Alice timidly.\n\n'Would you like to see a little of it?' said the Mock Turtle.\n\n'Very much indeed,' said Alice.\n\n'Come, let's try the first figure!' said the Mock Turtle to the Gryphon.\n'We can do without lobsters, you know. Which shall sing?'\n\n'Oh, YOU sing,' said the Gryphon. 'I've forgotten the words.'\n\nSo they began solemnly dancing round and round Alice, every now and\nthen treading on her toes when they passed too close, and waving their\nforepaws to mark the time, while the Mock Turtle sang this, very slowly\nand sadly:--\n\n '\"Will you walk a little faster?\" said a whiting to a snail.\n \"There's a porpoise close behind us, and he's treading on my tail.\n\n See how eagerly the lobsters and the turtles all advance!\n They are waiting on the shingle--will you come and join the dance?\n\n Will you, won't you, will you, won't you, will you join the dance?\n Will you, won't you, will you, won't you, won't you join the dance?\n\n \"You can really have no notion how delightful it will be\n When they take us up and throw us, with the lobsters, out to sea!\"\n But the snail replied \"Too far, too far!\" and gave a look askance--\n Said he thanked the whiting kindly, but he would not join the dance.\n\n Would not, could not, would not, could not, would not join the dance.\n Would not, could not, would not, could not, could not join the dance.\n\n '\"What matters it how far we go?\" his scaly friend replied.\n \"There is another shore, you know, upon the other side.\n The further off from England the nearer is to France--\n Then turn not pale, beloved snail, but come and join the dance.\n\n Will you, won't you, will you, won't you, will you join the dance?\n Will you, won't you, will you, won't you, won't you join the dance?\"'\n\n'Thank you, it's a very interesting dance to watch,' said Alice, feeling\nvery glad that it was over at last: 'and I do so like that curious song\nabout the whiting!'\n\n'Oh, as to the whiting,' said the Mock Turtle, 'they--you've seen them,\nof course?'\n\n'Yes,' said Alice, 'I've often seen them at dinn--' she checked herself\nhastily.\n\n'I don't know where Dinn may be,' said the Mock Turtle, 'but if you've\nseen them so often, of course you know what they're like.'\n\n'I believe so,' Alice replied thoughtfully. 'They have their tails in\ntheir mouths--and they're all over crumbs.'\n\n'You're wrong about the crumbs,' said the Mock Turtle: 'crumbs would all\nwash off in the sea. But they HAVE their tails in their mouths; and the\nreason is--' here the Mock Turtle yawned and shut his eyes.--'Tell her\nabout the reason and all that,' he said to the Gryphon.\n\n'The reason is,' said the Gryphon, 'that they WOULD go with the lobsters\nto the dance. So they got thrown out to sea. So they had to fall a long\nway. So they got their tails fast in their mouths. So they couldn't get\nthem out again. That's all.'\n\n'Thank you,' said Alice, 'it's very interesting. I never knew so much\nabout a whiting before.'\n\n'I can tell you more than that, if you like,' said the Gryphon. 'Do you\nknow why it's called a whiting?'\n\n'I never thought about it,' said Alice. 'Why?'\n\n'IT DOES THE BOOTS AND SHOES.' the Gryphon replied very solemnly.\n\nAlice was thoroughly puzzled. 'Does the boots and shoes!' she repeated\nin a wondering tone.\n\n'Why, what are YOUR shoes done with?' said the Gryphon. 'I mean, what\nmakes them so shiny?'\n\nAlice looked down at them, and considered a little before she gave her\nanswer. 'They're done with blacking, I believe.'\n\n'Boots and shoes under the sea,' the Gryphon went on in a deep voice,\n'are done with a whiting. Now you know.'\n\n'And what are they made of?' Alice asked in a tone of great curiosity.\n\n'Soles and eels, of course,' the Gryphon replied rather impatiently:\n'any shrimp could have told you that.'\n\n'If I'd been the whiting,' said Alice, whose thoughts were still running\non the song, 'I'd have said to the porpoise, \"Keep back, please: we\ndon't want YOU with us!\"'\n\n'They were obliged to have him with them,' the Mock Turtle said: 'no\nwise fish would go anywhere without a porpoise.'\n\n'Wouldn't it really?' said Alice in a tone of great surprise.\n\n'Of course not,' said the Mock Turtle: 'why, if a fish came to ME, and\ntold me he was going a journey, I should say \"With what porpoise?\"'\n\n'Don't you mean \"purpose\"?' said Alice.\n\n'I mean what I say,' the Mock Turtle replied in an offended tone. And\nthe Gryphon added 'Come, let's hear some of YOUR adventures.'\n\n'I could tell you my adventures--beginning from this morning,' said\nAlice a little timidly: 'but it's no use going back to yesterday,\nbecause I was a different person then.'\n\n'Explain all that,' said the Mock Turtle.\n\n'No, no! The adventures first,' said the Gryphon in an impatient tone:\n'explanations take such a dreadful time.'\n\nSo Alice began telling them her adventures from the time when she first\nsaw the White Rabbit. She was a little nervous about it just at first,\nthe two creatures got so close to her, one on each side, and opened\ntheir eyes and mouths so VERY wide, but she gained courage as she went\non. Her listeners were perfectly quiet till she got to the part about\nher repeating 'YOU ARE OLD, FATHER WILLIAM,' to the Caterpillar, and the\nwords all coming different, and then the Mock Turtle drew a long breath,\nand said 'That's very curious.'\n\n'It's all about as curious as it can be,' said the Gryphon.\n\n'It all came different!' the Mock Turtle repeated thoughtfully. 'I\nshould like to hear her try and repeat something now. Tell her to\nbegin.' He looked at the Gryphon as if he thought it had some kind of\nauthority over Alice.\n\n'Stand up and repeat \"'TIS THE VOICE OF THE SLUGGARD,\"' said the\nGryphon.\n\n'How the creatures order one about, and make one repeat lessons!'\nthought Alice; 'I might as well be at school at once.' However, she\ngot up, and began to repeat it, but her head was so full of the Lobster\nQuadrille, that she hardly knew what she was saying, and the words came\nvery queer indeed:--\n\n ''Tis the voice of the Lobster; I heard him declare,\n \"You have baked me too brown, I must sugar my hair.\"\n As a duck with its eyelids, so he with his nose\n Trims his belt and his buttons, and turns out his toes.'\n\n [later editions continued as follows\n When the sands are all dry, he is gay as a lark,\n And will talk in contemptuous tones of the Shark,\n But, when the tide rises and sharks are around,\n His voice has a timid and tremulous sound.]\n\n'That's different from what I used to say when I was a child,' said the\nGryphon.\n\n'Well, I never heard it before,' said the Mock Turtle; 'but it sounds\nuncommon nonsense.'\n\nAlice said nothing; she had sat down with her face in her hands,\nwondering if anything would EVER happen in a natural way again.\n\n'I should like to have it explained,' said the Mock Turtle.\n\n'She can't explain it,' said the Gryphon hastily. 'Go on with the next\nverse.'\n\n'But about his toes?' the Mock Turtle persisted. 'How COULD he turn them\nout with his nose, you know?'\n\n'It's the first position in dancing.' Alice said; but was dreadfully\npuzzled by the whole thing, and longed to change the subject.\n\n'Go on with the next verse,' the Gryphon repeated impatiently: 'it\nbegins \"I passed by his garden.\"'\n\nAlice did not dare to disobey, though she felt sure it would all come\nwrong, and she went on in a trembling voice:--\n\n 'I passed by his garden, and marked, with one eye,\n How the Owl and the Panther were sharing a pie--'\n\n [later editions continued as follows\n The Panther took pie-crust, and gravy, and meat,\n While the Owl had the dish as its share of the treat.\n When the pie was all finished, the Owl, as a boon,\n Was kindly permitted to pocket the spoon:\n While the Panther received knife and fork with a growl,\n And concluded the banquet--]\n\n'What IS the use of repeating all that stuff,' the Mock Turtle\ninterrupted, 'if you don't explain it as you go on? It's by far the most\nconfusing thing I ever heard!'\n\n'Yes, I think you'd better leave off,' said the Gryphon: and Alice was\nonly too glad to do so.\n\n'Shall we try another figure of the Lobster Quadrille?' the Gryphon went\non. 'Or would you like the Mock Turtle to sing you a song?'\n\n'Oh, a song, please, if the Mock Turtle would be so kind,' Alice\nreplied, so eagerly that the Gryphon said, in a rather offended tone,\n'Hm! No accounting for tastes! Sing her \"Turtle Soup,\" will you, old\nfellow?'\n\nThe Mock Turtle sighed deeply, and began, in a voice sometimes choked\nwith sobs, to sing this:--\n\n 'Beautiful Soup, so rich and green,\n Waiting in a hot tureen!\n Who for such dainties would not stoop?\n Soup of the evening, beautiful Soup!\n Soup of the evening, beautiful Soup!\n Beau--ootiful Soo--oop!\n Beau--ootiful Soo--oop!\n Soo--oop of the e--e--evening,\n Beautiful, beautiful Soup!\n\n 'Beautiful Soup! Who cares for fish,\n Game, or any other dish?\n Who would not give all else for two\n Pennyworth only of beautiful Soup?\n Pennyworth only of beautiful Soup?\n Beau--ootiful Soo--oop!\n Beau--ootiful Soo--oop!\n Soo--oop of the e--e--evening,\n Beautiful, beauti--FUL SOUP!'\n\n'Chorus again!' cried the Gryphon, and the Mock Turtle had just begun\nto repeat it, when a cry of 'The trial's beginning!' was heard in the\ndistance.\n\n'Come on!' cried the Gryphon, and, taking Alice by the hand, it hurried\noff, without waiting for the end of the song.\n\n'What trial is it?' Alice panted as she ran; but the Gryphon only\nanswered 'Come on!' and ran the faster, while more and more faintly\ncame, carried on the breeze that followed them, the melancholy words:--\n\n 'Soo--oop of the e--e--evening,\n Beautiful, beautiful Soup!'\n\n\n\n\n!!! CHAPTER XI. Who Stole the Tarts?\n\nThe King and Queen of Hearts were seated on their throne when they\narrived, with a great crowd assembled about them--all sorts of little\nbirds and beasts, as well as the whole pack of cards: the Knave was\nstanding before them, in chains, with a soldier on each side to guard\nhim; and near the King was the White Rabbit, with a trumpet in one hand,\nand a scroll of parchment in the other. In the very middle of the court\nwas a table, with a large dish of tarts upon it: they looked so good,\nthat it made Alice quite hungry to look at them--'I wish they'd get the\ntrial done,' she thought, 'and hand round the refreshments!' But there\nseemed to be no chance of this, so she began looking at everything about\nher, to pass away the time.\n\nAlice had never been in a court of justice before, but she had read\nabout them in books, and she was quite pleased to find that she knew\nthe name of nearly everything there. 'That's the judge,' she said to\nherself, 'because of his great wig.'\n\nThe judge, by the way, was the King; and as he wore his crown over the\nwig, (look at the frontispiece if you want to see how he did it,) he did\nnot look at all comfortable, and it was certainly not becoming.\n\n'And that's the jury-box,' thought Alice, 'and those twelve creatures,'\n(she was obliged to say 'creatures,' you see, because some of them were\nanimals, and some were birds,) 'I suppose they are the jurors.' She said\nthis last word two or three times over to herself, being rather proud of\nit: for she thought, and rightly too, that very few little girls of her\nage knew the meaning of it at all. However, 'jury-men' would have done\njust as well.\n\nThe twelve jurors were all writing very busily on slates. 'What are they\ndoing?' Alice whispered to the Gryphon. 'They can't have anything to put\ndown yet, before the trial's begun.'\n\n'They're putting down their names,' the Gryphon whispered in reply, 'for\nfear they should forget them before the end of the trial.'\n\n'Stupid things!' Alice began in a loud, indignant voice, but she stopped\nhastily, for the White Rabbit cried out, 'Silence in the court!' and the\nKing put on his spectacles and looked anxiously round, to make out who\nwas talking.\n\nAlice could see, as well as if she were looking over their shoulders,\nthat all the jurors were writing down 'stupid things!' on their slates,\nand she could even make out that one of them didn't know how to spell\n'stupid,' and that he had to ask his neighbour to tell him. 'A nice\nmuddle their slates'll be in before the trial's over!' thought Alice.\n\nOne of the jurors had a pencil that squeaked. This of course, Alice\ncould not stand, and she went round the court and got behind him, and\nvery soon found an opportunity of taking it away. She did it so quickly\nthat the poor little juror (it was Bill, the Lizard) could not make out\nat all what had become of it; so, after hunting all about for it, he was\nobliged to write with one finger for the rest of the day; and this was\nof very little use, as it left no mark on the slate.\n\n'Herald, read the accusation!' said the King.\n\nOn this the White Rabbit blew three blasts on the trumpet, and then\nunrolled the parchment scroll, and read as follows:--\n\n 'The Queen of Hearts, she made some tarts,\n All on a summer day:\n The Knave of Hearts, he stole those tarts,\n And took them quite away!'\n\n'Consider your verdict,' the King said to the jury.\n\n'Not yet, not yet!' the Rabbit hastily interrupted. 'There's a great\ndeal to come before that!'\n\n'Call the first witness,' said the King; and the White Rabbit blew three\nblasts on the trumpet, and called out, 'First witness!'\n\nThe first witness was the Hatter. He came in with a teacup in one\nhand and a piece of bread-and-butter in the other. 'I beg pardon, your\nMajesty,' he began, 'for bringing these in: but I hadn't quite finished\nmy tea when I was sent for.'\n\n'You ought to have finished,' said the King. 'When did you begin?'\n\nThe Hatter looked at the March Hare, who had followed him into the\ncourt, arm-in-arm with the Dormouse. 'Fourteenth of March, I think it\nwas,' he said.\n\n'Fifteenth,' said the March Hare.\n\n'Sixteenth,' added the Dormouse.\n\n'Write that down,' the King said to the jury, and the jury eagerly\nwrote down all three dates on their slates, and then added them up, and\nreduced the answer to shillings and pence.\n\n'Take off your hat,' the King said to the Hatter.\n\n'It isn't mine,' said the Hatter.\n\n'Stolen!' the King exclaimed, turning to the jury, who instantly made a\nmemorandum of the fact.\n\n'I keep them to sell,' the Hatter added as an explanation; 'I've none of\nmy own. I'm a hatter.'\n\nHere the Queen put on her spectacles, and began staring at the Hatter,\nwho turned pale and fidgeted.\n\n'Give your evidence,' said the King; 'and don't be nervous, or I'll have\nyou executed on the spot.'\n\nThis did not seem to encourage the witness at all: he kept shifting\nfrom one foot to the other, looking uneasily at the Queen, and in\nhis confusion he bit a large piece out of his teacup instead of the\nbread-and-butter.\n\nJust at this moment Alice felt a very curious sensation, which puzzled\nher a good deal until she made out what it was: she was beginning to\ngrow larger again, and she thought at first she would get up and leave\nthe court; but on second thoughts she decided to remain where she was as\nlong as there was room for her.\n\n'I wish you wouldn't squeeze so.' said the Dormouse, who was sitting\nnext to her. 'I can hardly breathe.'\n\n'I can't help it,' said Alice very meekly: 'I'm growing.'\n\n'You've no right to grow here,' said the Dormouse.\n\n'Don't talk nonsense,' said Alice more boldly: 'you know you're growing\ntoo.'\n\n'Yes, but I grow at a reasonable pace,' said the Dormouse: 'not in that\nridiculous fashion.' And he got up very sulkily and crossed over to the\nother side of the court.\n\nAll this time the Queen had never left off staring at the Hatter, and,\njust as the Dormouse crossed the court, she said to one of the officers\nof the court, 'Bring me the list of the singers in the last concert!' on\nwhich the wretched Hatter trembled so, that he shook both his shoes off.\n\n'Give your evidence,' the King repeated angrily, 'or I'll have you\nexecuted, whether you're nervous or not.'\n\n'I'm a poor man, your Majesty,' the Hatter began, in a trembling voice,\n'--and I hadn't begun my tea--not above a week or so--and what with the\nbread-and-butter getting so thin--and the twinkling of the tea--'\n\n'The twinkling of the what?' said the King.\n\n'It began with the tea,' the Hatter replied.\n\n'Of course twinkling begins with a T!' said the King sharply. 'Do you\ntake me for a dunce? Go on!'\n\n'I'm a poor man,' the Hatter went on, 'and most things twinkled after\nthat--only the March Hare said--'\n\n'I didn't!' the March Hare interrupted in a great hurry.\n\n'You did!' said the Hatter.\n\n'I deny it!' said the March Hare.\n\n'He denies it,' said the King: 'leave out that part.'\n\n'Well, at any rate, the Dormouse said--' the Hatter went on, looking\nanxiously round to see if he would deny it too: but the Dormouse denied\nnothing, being fast asleep.\n\n'After that,' continued the Hatter, 'I cut some more bread-and-butter--'\n\n'But what did the Dormouse say?' one of the jury asked.\n\n'That I can't remember,' said the Hatter.\n\n'You MUST remember,' remarked the King, 'or I'll have you executed.'\n\nThe miserable Hatter dropped his teacup and bread-and-butter, and went\ndown on one knee. 'I'm a poor man, your Majesty,' he began.\n\n'You're a very poor speaker,' said the King.\n\nHere one of the guinea-pigs cheered, and was immediately suppressed by\nthe officers of the court. (As that is rather a hard word, I will just\nexplain to you how it was done. They had a large canvas bag, which tied\nup at the mouth with strings: into this they slipped the guinea-pig,\nhead first, and then sat upon it.)\n\n'I'm glad I've seen that done,' thought Alice. 'I've so often read\nin the newspapers, at the end of trials, \"There was some attempts\nat applause, which was immediately suppressed by the officers of the\ncourt,\" and I never understood what it meant till now.'\n\n'If that's all you know about it, you may stand down,' continued the\nKing.\n\n'I can't go no lower,' said the Hatter: 'I'm on the floor, as it is.'\n\n'Then you may SIT down,' the King replied.\n\nHere the other guinea-pig cheered, and was suppressed.\n\n'Come, that finished the guinea-pigs!' thought Alice. 'Now we shall get\non better.'\n\n'I'd rather finish my tea,' said the Hatter, with an anxious look at the\nQueen, who was reading the list of singers.\n\n'You may go,' said the King, and the Hatter hurriedly left the court,\nwithout even waiting to put his shoes on.\n\n'--and just take his head off outside,' the Queen added to one of the\nofficers: but the Hatter was out of sight before the officer could get\nto the door.\n\n'Call the next witness!' said the King.\n\nThe next witness was the Duchess's cook. She carried the pepper-box in\nher hand, and Alice guessed who it was, even before she got into the\ncourt, by the way the people near the door began sneezing all at once.\n\n'Give your evidence,' said the King.\n\n'Shan't,' said the cook.\n\nThe King looked anxiously at the White Rabbit, who said in a low voice,\n'Your Majesty must cross-examine THIS witness.'\n\n'Well, if I must, I must,' the King said, with a melancholy air, and,\nafter folding his arms and frowning at the cook till his eyes were\nnearly out of sight, he said in a deep voice, 'What are tarts made of?'\n\n'Pepper, mostly,' said the cook.\n\n'Treacle,' said a sleepy voice behind her.\n\n'Collar that Dormouse,' the Queen shrieked out. 'Behead that Dormouse!\nTurn that Dormouse out of court! Suppress him! Pinch him! Off with his\nwhiskers!'\n\nFor some minutes the whole court was in confusion, getting the Dormouse\nturned out, and, by the time they had settled down again, the cook had\ndisappeared.\n\n'Never mind!' said the King, with an air of great relief. 'Call the next\nwitness.' And he added in an undertone to the Queen, 'Really, my dear,\nYOU must cross-examine the next witness. It quite makes my forehead\nache!'\n\nAlice watched the White Rabbit as he fumbled over the list, feeling very\ncurious to see what the next witness would be like, '--for they haven't\ngot much evidence YET,' she said to herself. Imagine her surprise, when\nthe White Rabbit read out, at the top of his shrill little voice, the\nname 'Alice!'\n\n\n\n\n!!! CHAPTER XII. Alice's Evidence\n\n\n'Here!' cried Alice, quite forgetting in the flurry of the moment how\nlarge she had grown in the last few minutes, and she jumped up in such\na hurry that she tipped over the jury-box with the edge of her skirt,\nupsetting all the jurymen on to the heads of the crowd below, and there\nthey lay sprawling about, reminding her very much of a globe of goldfish\nshe had accidentally upset the week before.\n\n'Oh, I BEG your pardon!' she exclaimed in a tone of great dismay, and\nbegan picking them up again as quickly as she could, for the accident of\nthe goldfish kept running in her head, and she had a vague sort of idea\nthat they must be collected at once and put back into the jury-box, or\nthey would die.\n\n'The trial cannot proceed,' said the King in a very grave voice, 'until\nall the jurymen are back in their proper places--ALL,' he repeated with\ngreat emphasis, looking hard at Alice as he said do.\n\nAlice looked at the jury-box, and saw that, in her haste, she had put\nthe Lizard in head downwards, and the poor little thing was waving its\ntail about in a melancholy way, being quite unable to move. She soon got\nit out again, and put it right; 'not that it signifies much,' she said\nto herself; 'I should think it would be QUITE as much use in the trial\none way up as the other.'\n\nAs soon as the jury had a little recovered from the shock of being\nupset, and their slates and pencils had been found and handed back to\nthem, they set to work very diligently to write out a history of the\naccident, all except the Lizard, who seemed too much overcome to do\nanything but sit with its mouth open, gazing up into the roof of the\ncourt.\n\n'What do you know about this business?' the King said to Alice.\n\n'Nothing,' said Alice.\n\n'Nothing WHATEVER?' persisted the King.\n\n'Nothing whatever,' said Alice.\n\n'That's very important,' the King said, turning to the jury. They were\njust beginning to write this down on their slates, when the White Rabbit\ninterrupted: 'UNimportant, your Majesty means, of course,' he said in a\nvery respectful tone, but frowning and making faces at him as he spoke.\n\n'UNimportant, of course, I meant,' the King hastily said, and went on\nto himself in an undertone,\n\n'important--unimportant--unimportant--important--' as if he were trying\nwhich word sounded best.\n\nSome of the jury wrote it down 'important,' and some 'unimportant.'\nAlice could see this, as she was near enough to look over their slates;\n'but it doesn't matter a bit,' she thought to herself.\n\nAt this moment the King, who had been for some time busily writing in\nhis note-book, cackled out 'Silence!' and read out from his book, 'Rule\nForty-two. ALL PERSONS MORE THAN A MILE HIGH TO LEAVE THE COURT.'\n\nEverybody looked at Alice.\n\n'I'M not a mile high,' said Alice.\n\n'You are,' said the King.\n\n'Nearly two miles high,' added the Queen.\n\n'Well, I shan't go, at any rate,' said Alice: 'besides, that's not a\nregular rule: you invented it just now.'\n\n'It's the oldest rule in the book,' said the King.\n\n'Then it ought to be Number One,' said Alice.\n\nThe King turned pale, and shut his note-book hastily. 'Consider your\nverdict,' he said to the jury, in a low, trembling voice.\n\n'There's more evidence to come yet, please your Majesty,' said the White\nRabbit, jumping up in a great hurry; 'this paper has just been picked\nup.'\n\n'What's in it?' said the Queen.\n\n'I haven't opened it yet,' said the White Rabbit, 'but it seems to be a\nletter, written by the prisoner to--to somebody.'\n\n'It must have been that,' said the King, 'unless it was written to\nnobody, which isn't usual, you know.'\n\n'Who is it directed to?' said one of the jurymen.\n\n'It isn't directed at all,' said the White Rabbit; 'in fact, there's\nnothing written on the OUTSIDE.' He unfolded the paper as he spoke, and\nadded 'It isn't a letter, after all: it's a set of verses.'\n\n'Are they in the prisoner's handwriting?' asked another of the jurymen.\n\n'No, they're not,' said the White Rabbit, 'and that's the queerest thing\nabout it.' (The jury all looked puzzled.)\n\n'He must have imitated somebody else's hand,' said the King. (The jury\nall brightened up again.)\n\n'Please your Majesty,' said the Knave, 'I didn't write it, and they\ncan't prove I did: there's no name signed at the end.'\n\n'If you didn't sign it,' said the King, 'that only makes the matter\nworse. You MUST have meant some mischief, or else you'd have signed your\nname like an honest man.'\n\nThere was a general clapping of hands at this: it was the first really\nclever thing the King had said that day.\n\n'That PROVES his guilt,' said the Queen.\n\n'It proves nothing of the sort!' said Alice. 'Why, you don't even know\nwhat they're about!'\n\n'Read them,' said the King.\n\nThe White Rabbit put on his spectacles. 'Where shall I begin, please\nyour Majesty?' he asked.\n\n'Begin at the beginning,' the King said gravely, 'and go on till you\ncome to the end: then stop.'\n\nThese were the verses the White Rabbit read:--\n\n 'They told me you had been to her,\n And mentioned me to him:\n She gave me a good character,\n But said I could not swim.\n\n He sent them word I had not gone\n (We know it to be true):\n If she should push the matter on,\n What would become of you?\n\n I gave her one, they gave him two,\n You gave us three or more;\n They all returned from him to you,\n Though they were mine before.\n\n If I or she should chance to be\n Involved in this affair,\n He trusts to you to set them free,\n Exactly as we were.\n\n My notion was that you had been\n (Before she had this fit)\n An obstacle that came between\n Him, and ourselves, and it.\n\n Don't let him know she liked them best,\n For this must ever be\n A secret, kept from all the rest,\n Between yourself and me.'\n\n'That's the most important piece of evidence we've heard yet,' said the\nKing, rubbing his hands; 'so now let the jury--'\n\n'If any one of them can explain it,' said Alice, (she had grown so large\nin the last few minutes that she wasn't a bit afraid of interrupting\nhim,) 'I'll give him sixpence. _I_ don't believe there's an atom of\nmeaning in it.'\n\nThe jury all wrote down on their slates, 'SHE doesn't believe there's an\natom of meaning in it,' but none of them attempted to explain the paper.\n\n'If there's no meaning in it,' said the King, 'that saves a world of\ntrouble, you know, as we needn't try to find any. And yet I don't know,'\nhe went on, spreading out the verses on his knee, and looking at them\nwith one eye; 'I seem to see some meaning in them, after all. \"--SAID\nI COULD NOT SWIM--\" you can't swim, can you?' he added, turning to the\nKnave.\n\nThe Knave shook his head sadly. 'Do I look like it?' he said. (Which he\ncertainly did NOT, being made entirely of cardboard.)\n\n'All right, so far,' said the King, and he went on muttering over\nthe verses to himself: '\"WE KNOW IT TO BE TRUE--\" that's the jury, of\ncourse--\"I GAVE HER ONE, THEY GAVE HIM TWO--\" why, that must be what he\ndid with the tarts, you know--'\n\n'But, it goes on \"THEY ALL RETURNED FROM HIM TO YOU,\"' said Alice.\n\n'Why, there they are!' said the King triumphantly, pointing to the tarts\non the table. 'Nothing can be clearer than THAT. Then again--\"BEFORE SHE\nHAD THIS FIT--\" you never had fits, my dear, I think?' he said to the\nQueen.\n\n'Never!' said the Queen furiously, throwing an inkstand at the Lizard\nas she spoke. (The unfortunate little Bill had left off writing on his\nslate with one finger, as he found it made no mark; but he now hastily\nbegan again, using the ink, that was trickling down his face, as long as\nit lasted.)\n\n'Then the words don't FIT you,' said the King, looking round the court\nwith a smile. There was a dead silence.\n\n'It's a pun!' the King added in an offended tone, and everybody laughed,\n'Let the jury consider their verdict,' the King said, for about the\ntwentieth time that day.\n\n'No, no!' said the Queen. 'Sentence first--verdict afterwards.'\n\n'Stuff and nonsense!' said Alice loudly. 'The idea of having the\nsentence first!'\n\n'Hold your tongue!' said the Queen, turning purple.\n\n'I won't!' said Alice.\n\n'Off with her head!' the Queen shouted at the top of her voice. Nobody\nmoved.\n\n'Who cares for you?' said Alice, (she had grown to her full size by this\ntime.) 'You're nothing but a pack of cards!'\n\nAt this the whole pack rose up into the air, and came flying down upon\nher: she gave a little scream, half of fright and half of anger, and\ntried to beat them off, and found herself lying on the bank, with her\nhead in the lap of her sister, who was gently brushing away some dead\nleaves that had fluttered down from the trees upon her face.\n\n'Wake up, Alice dear!' said her sister; 'Why, what a long sleep you've\nhad!'\n\n'Oh, I've had such a curious dream!' said Alice, and she told her\nsister, as well as she could remember them, all these strange Adventures\nof hers that you have just been reading about; and when she had\nfinished, her sister kissed her, and said, 'It WAS a curious dream,\ndear, certainly: but now run in to your tea; it's getting late.' So\nAlice got up and ran off, thinking while she ran, as well she might,\nwhat a wonderful dream it had been.\n\nBut her sister sat still just as she left her, leaning her head on her\nhand, watching the setting sun, and thinking of little Alice and all her\nwonderful Adventures, till she too began dreaming after a fashion, and\nthis was her dream:--\n\nFirst, she dreamed of little Alice herself, and once again the tiny\nhands were clasped upon her knee, and the bright eager eyes were looking\nup into hers--she could hear the very tones of her voice, and see that\nqueer little toss of her head to keep back the wandering hair that\nWOULD always get into her eyes--and still as she listened, or seemed to\nlisten, the whole place around her became alive with the strange creatures\nof her little sister's dream.\n\nThe long grass rustled at her feet as the White Rabbit hurried by--the\nfrightened Mouse splashed his way through the neighbouring pool--she\ncould hear the rattle of the teacups as the March Hare and his friends\nshared their never-ending meal, and the shrill voice of the Queen\nordering off her unfortunate guests to execution--once more the pig-baby\nwas sneezing on the Duchess's knee, while plates and dishes crashed\naround it--once more the shriek of the Gryphon, the squeaking of the\nLizard's slate-pencil, and the choking of the suppressed guinea-pigs,\nfilled the air, mixed up with the distant sobs of the miserable Mock\nTurtle.\n\nSo she sat on, with closed eyes, and half believed herself in\nWonderland, though she knew she had but to open them again, and all\nwould change to dull reality--the grass would be only rustling in the\nwind, and the pool rippling to the waving of the reeds--the rattling\nteacups would change to tinkling sheep-bells, and the Queen's shrill\ncries to the voice of the shepherd boy--and the sneeze of the baby, the\nshriek of the Gryphon, and all the other queer noises, would change (she\nknew) to the confused clamour of the busy farm-yard--while the lowing\nof the cattle in the distance would take the place of the Mock Turtle's\nheavy sobs.\n\nLastly, she pictured to herself how this same little sister of hers\nwould, in the after-time, be herself a grown woman; and how she would\nkeep, through all her riper years, the simple and loving heart of her\nchildhood: and how she would gather about her other little children, and\nmake THEIR eyes bright and eager with many a strange tale, perhaps even\nwith the dream of Wonderland of long ago: and how she would feel with\nall their simple sorrows, and find a pleasure in all their simple joys,\nremembering her own child-life, and the happy summer days.\n\n THE END\n\n\n\n\n\nEnd of Project Gutenberg's Alice's Adventures in Wonderland, by Lewis Carroll\n\n*** END OF THIS PROJECT GUTENBERG EBOOK ALICE'S ADVENTURES IN WONDERLAND ***\n\n***** This file should be named 11.txt or 11.zip *****\nThis and all associated files of various formats will be found in:\n http://www.gutenberg.org/1/11/\n\n\n\nUpdated editions will replace the previous one--the old editions\nwill be renamed.\n\nCreating the works from public domain print editions means that no\none owns a United States copyright in these works, so the Foundation\n(and you!) can copy and distribute it in the United States without\npermission and without paying copyright royalties. Special rules,\nset forth in the General Terms of Use part of this license, apply to\ncopying and distributing Project Gutenberg-tm electronic works to\nprotect the PROJECT GUTENBERG-tm concept and trademark. Project\nGutenberg is a registered trademark, and may not be used if you\ncharge for the eBooks, unless you receive specific permission. If you\ndo not charge anything for copies of this eBook, complying with the\nrules is very easy. You may use this eBook for nearly any purpose\nsuch as creation of derivative works, reports, performances and\nresearch. They may be modified and printed and given away--you may do\npractically ANYTHING with public domain eBooks. Redistribution is\nsubject to the trademark license, especially commercial\nredistribution.\n\n\n\n*** START: FULL LICENSE ***\n\nTHE FULL PROJECT GUTENBERG LICENSE\nPLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK\n\nTo protect the Project Gutenberg-tm mission of promoting the free\ndistribution of electronic works, by using or distributing this work\n(or any other work associated in any way with the phrase \"Project\nGutenberg\"), you agree to comply with all the terms of the Full Project\nGutenberg-tm License (available with this file or online at\nhttp://gutenberg.org/license).\n\n\nSection 1. General Terms of Use and Redistributing Project Gutenberg-tm\nelectronic works\n\n1.A. By reading or using any part of this Project Gutenberg-tm\nelectronic work, you indicate that you have read, understand, agree to\nand accept all the terms of this license and intellectual property\n(trademark/copyright) agreement. If you do not agree to abide by all\nthe terms of this agreement, you must cease using and return or destroy\nall copies of Project Gutenberg-tm electronic works in your possession.\nIf you paid a fee for obtaining a copy of or access to a Project\nGutenberg-tm electronic work and you do not agree to be bound by the\nterms of this agreement, you may obtain a refund from the person or\nentity to whom you paid the fee as set forth in paragraph 1.E.8.\n\n1.B. \"Project Gutenberg\" is a registered trademark. It may only be\nused on or associated in any way with an electronic work by people who\nagree to be bound by the terms of this agreement. There are a few\nthings that you can do with most Project Gutenberg-tm electronic works\neven without complying with the full terms of this agreement. See\nparagraph 1.C below. There are a lot of things you can do with Project\nGutenberg-tm electronic works if you follow the terms of this agreement\nand help preserve free future access to Project Gutenberg-tm electronic\nworks. See paragraph 1.E below.\n\n1.C. The Project Gutenberg Literary Archive Foundation (\"the Foundation\"\nor PGLAF), owns a compilation copyright in the collection of Project\nGutenberg-tm electronic works. Nearly all the individual works in the\ncollection are in the public domain in the United States. If an\nindividual work is in the public domain in the United States and you are\nlocated in the United States, we do not claim a right to prevent you from\ncopying, distributing, performing, displaying or creating derivative\nworks based on the work as long as all references to Project Gutenberg\nare removed. Of course, we hope that you will support the Project\nGutenberg-tm mission of promoting free access to electronic works by\nfreely sharing Project Gutenberg-tm works in compliance with the terms of\nthis agreement for keeping the Project Gutenberg-tm name associated with\nthe work. You can easily comply with the terms of this agreement by\nkeeping this work in the same format with its attached full Project\nGutenberg-tm License when you share it without charge with others.\n\n1.D. The copyright laws of the place where you are located also govern\nwhat you can do with this work. Copyright laws in most countries are in\na constant state of change. If you are outside the United States, check\nthe laws of your country in addition to the terms of this agreement\nbefore downloading, copying, displaying, performing, distributing or\ncreating derivative works based on this work or any other Project\nGutenberg-tm work. The Foundation makes no representations concerning\nthe copyright status of any work in any country outside the United\nStates.\n\n1.E. Unless you have removed all references to Project Gutenberg:\n\n1.E.1. The following sentence, with active links to, or other immediate\naccess to, the full Project Gutenberg-tm License must appear prominently\nwhenever any copy of a Project Gutenberg-tm work (any work on which the\nphrase \"Project Gutenberg\" appears, or with which the phrase \"Project\nGutenberg\" is associated) is accessed, displayed, performed, viewed,\ncopied or distributed:\n\nThis eBook is for the use of anyone anywhere at no cost and with\nalmost no restrictions whatsoever. You may copy it, give it away or\nre-use it under the terms of the Project Gutenberg License included\nwith this eBook or online at www.gutenberg.org\n\n1.E.2. If an individual Project Gutenberg-tm electronic work is derived\nfrom the public domain (does not contain a notice indicating that it is\nposted with permission of the copyright holder), the work can be copied\nand distributed to anyone in the United States without paying any fees\nor charges. If you are redistributing or providing access to a work\nwith the phrase \"Project Gutenberg\" associated with or appearing on the\nwork, you must comply either with the requirements of paragraphs 1.E.1\nthrough 1.E.7 or obtain permission for the use of the work and the\nProject Gutenberg-tm trademark as set forth in paragraphs 1.E.8 or\n1.E.9.\n\n1.E.3. If an individual Project Gutenberg-tm electronic work is posted\nwith the permission of the copyright holder, your use and distribution\nmust comply with both paragraphs 1.E.1 through 1.E.7 and any additional\nterms imposed by the copyright holder. Additional terms will be linked\nto the Project Gutenberg-tm License for all works posted with the\npermission of the copyright holder found at the beginning of this work.\n\n1.E.4. Do not unlink or detach or remove the full Project Gutenberg-tm\nLicense terms from this work, or any files containing a part of this\nwork or any other work associated with Project Gutenberg-tm.\n\n1.E.5. Do not copy, display, perform, distribute or redistribute this\nelectronic work, or any part of this electronic work, without\nprominently displaying the sentence set forth in paragraph 1.E.1 with\nactive links or immediate access to the full terms of the Project\nGutenberg-tm License.\n\n1.E.6. You may convert to and distribute this work in any binary,\ncompressed, marked up, nonproprietary or proprietary form, including any\nword processing or hypertext form. However, if you provide access to or\ndistribute copies of a Project Gutenberg-tm work in a format other than\n\"Plain Vanilla ASCII\" or other format used in the official version\nposted on the official Project Gutenberg-tm web site (www.gutenberg.org),\nyou must, at no additional cost, fee or expense to the user, provide a\ncopy, a means of exporting a copy, or a means of obtaining a copy upon\nrequest, of the work in its original \"Plain Vanilla ASCII\" or other\nform. Any alternate format must include the full Project Gutenberg-tm\nLicense as specified in paragraph 1.E.1.\n\n1.E.7. Do not charge a fee for access to, viewing, displaying,\nperforming, copying or distributing any Project Gutenberg-tm works\nunless you comply with paragraph 1.E.8 or 1.E.9.\n\n1.E.8. You may charge a reasonable fee for copies of or providing\naccess to or distributing Project Gutenberg-tm electronic works provided\nthat\n\n- You pay a royalty fee of 20% of the gross profits you derive from\n the use of Project Gutenberg-tm works calculated using the method\n you already use to calculate your applicable taxes. The fee is\n owed to the owner of the Project Gutenberg-tm trademark, but he\n has agreed to donate royalties under this paragraph to the\n Project Gutenberg Literary Archive Foundation. Royalty payments\n must be paid within 60 days following each date on which you\n prepare (or are legally required to prepare) your periodic tax\n returns. Royalty payments should be clearly marked as such and\n sent to the Project Gutenberg Literary Archive Foundation at the\n address specified in Section 4, \"Information about donations to\n the Project Gutenberg Literary Archive Foundation.\"\n\n- You provide a full refund of any money paid by a user who notifies\n you in writing (or by e-mail) within 30 days of receipt that s/he\n does not agree to the terms of the full Project Gutenberg-tm\n License. You must require such a user to return or\n destroy all copies of the works possessed in a physical medium\n and discontinue all use of and all access to other copies of\n Project Gutenberg-tm works.\n\n- You provide, in accordance with paragraph 1.F.3, a full refund of any\n money paid for a work or a replacement copy, if a defect in the\n electronic work is discovered and reported to you within 90 days\n of receipt of the work.\n\n- You comply with all other terms of this agreement for free\n distribution of Project Gutenberg-tm works.\n\n1.E.9. If you wish to charge a fee or distribute a Project Gutenberg-tm\nelectronic work or group of works on different terms than are set\nforth in this agreement, you must obtain permission in writing from\nboth the Project Gutenberg Literary Archive Foundation and Michael\nHart, the owner of the Project Gutenberg-tm trademark. Contact the\nFoundation as set forth in Section 3 below.\n\n1.F.\n\n1.F.1. Project Gutenberg volunteers and employees expend considerable\neffort to identify, do copyright research on, transcribe and proofread\npublic domain works in creating the Project Gutenberg-tm\ncollection. Despite these efforts, Project Gutenberg-tm electronic\nworks, and the medium on which they may be stored, may contain\n\"Defects,\" such as, but not limited to, incomplete, inaccurate or\ncorrupt data, transcription errors, a copyright or other intellectual\nproperty infringement, a defective or damaged disk or other medium, a\ncomputer virus, or computer codes that damage or cannot be read by\nyour equipment.\n\n1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the \"Right\nof Replacement or Refund\" described in paragraph 1.F.3, the Project\nGutenberg Literary Archive Foundation, the owner of the Project\nGutenberg-tm trademark, and any other party distributing a Project\nGutenberg-tm electronic work under this agreement, disclaim all\nliability to you for damages, costs and expenses, including legal\nfees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT\nLIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE\nPROVIDED IN PARAGRAPH F3. YOU AGREE THAT THE FOUNDATION, THE\nTRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE\nLIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR\nINCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH\nDAMAGE.\n\n1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a\ndefect in this electronic work within 90 days of receiving it, you can\nreceive a refund of the money (if any) you paid for it by sending a\nwritten explanation to the person you received the work from. If you\nreceived the work on a physical medium, you must return the medium with\nyour written explanation. The person or entity that provided you with\nthe defective work may elect to provide a replacement copy in lieu of a\nrefund. If you received the work electronically, the person or entity\nproviding it to you may choose to give you a second opportunity to\nreceive the work electronically in lieu of a refund. If the second copy\nis also defective, you may demand a refund in writing without further\nopportunities to fix the problem.\n\n1.F.4. Except for the limited right of replacement or refund set forth\nin paragraph 1.F.3, this work is provided to you 'AS-IS' WITH NO OTHER\nWARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO\nWARRANTIES OF MERCHANTIBILITY OR FITNESS FOR ANY PURPOSE.\n\n1.F.5. Some states do not allow disclaimers of certain implied\nwarranties or the exclusion or limitation of certain types of damages.\nIf any disclaimer or limitation set forth in this agreement violates the\nlaw of the state applicable to this agreement, the agreement shall be\ninterpreted to make the maximum disclaimer or limitation permitted by\nthe applicable state law. The invalidity or unenforceability of any\nprovision of this agreement shall not void the remaining provisions.\n\n1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the\ntrademark owner, any agent or employee of the Foundation, anyone\nproviding copies of Project Gutenberg-tm electronic works in accordance\nwith this agreement, and any volunteers associated with the production,\npromotion and distribution of Project Gutenberg-tm electronic works,\nharmless from all liability, costs and expenses, including legal fees,\nthat arise directly or indirectly from any of the following which you do\nor cause to occur: (a) distribution of this or any Project Gutenberg-tm\nwork, (b) alteration, modification, or additions or deletions to any\nProject Gutenberg-tm work, and (c) any Defect you cause.\n\n\nSection 2. Information about the Mission of Project Gutenberg-tm\n\nProject Gutenberg-tm is synonymous with the free distribution of\nelectronic works in formats readable by the widest variety of computers\nincluding obsolete, old, middle-aged and new computers. It exists\nbecause of the efforts of hundreds of volunteers and donations from\npeople in all walks of life.\n\nVolunteers and financial support to provide volunteers with the\nassistance they need, is critical to reaching Project Gutenberg-tm's\ngoals and ensuring that the Project Gutenberg-tm collection will\nremain freely available for generations to come. In 2001, the Project\nGutenberg Literary Archive Foundation was created to provide a secure\nand permanent future for Project Gutenberg-tm and future generations.\nTo learn more about the Project Gutenberg Literary Archive Foundation\nand how your efforts and donations can help, see Sections 3 and 4\nand the Foundation web page at http://www.pglaf.org.\n\n\nSection 3. Information about the Project Gutenberg Literary Archive\nFoundation\n\nThe Project Gutenberg Literary Archive Foundation is a non profit\n501(c)(3) educational corporation organized under the laws of the\nstate of Mississippi and granted tax exempt status by the Internal\nRevenue Service. The Foundation's EIN or federal tax identification\nnumber is 64-6221541. Its 501(c)(3) letter is posted at\nhttp://pglaf.org/fundraising. Contributions to the Project Gutenberg\nLiterary Archive Foundation are tax deductible to the full extent\npermitted by U.S. federal laws and your state's laws.\n\nThe Foundation's principal office is located at 4557 Melan Dr. S.\nFairbanks, AK, 99712., but its volunteers and employees are scattered\nthroughout numerous locations. Its business office is located at\n809 North 1500 West, Salt Lake City, UT 84116, (801) 596-1887, email\nbusiness@pglaf.org. Email contact links and up to date contact\ninformation can be found at the Foundation's web site and official\npage at http://pglaf.org\n\nFor additional contact information:\n Dr. Gregory B. Newby\n Chief Executive and Director\n gbnewby@pglaf.org\n\n\nSection 4. Information about Donations to the Project Gutenberg\nLiterary Archive Foundation\n\nProject Gutenberg-tm depends upon and cannot survive without wide\nspread public support and donations to carry out its mission of\nincreasing the number of public domain and licensed works that can be\nfreely distributed in machine readable form accessible by the widest\narray of equipment including outdated equipment. Many small donations\n($1 to $5,000) are particularly important to maintaining tax exempt\nstatus with the IRS.\n\nThe Foundation is committed to complying with the laws regulating\ncharities and charitable donations in all 50 states of the United\nStates. Compliance requirements are not uniform and it takes a\nconsiderable effort, much paperwork and many fees to meet and keep up\nwith these requirements. We do not solicit donations in locations\nwhere we have not received written confirmation of compliance. To\nSEND DONATIONS or determine the status of compliance for any\nparticular state visit http://pglaf.org\n\nWhile we cannot and do not solicit contributions from states where we\nhave not met the solicitation requirements, we know of no prohibition\nagainst accepting unsolicited donations from donors in such states who\napproach us with offers to donate.\n\nInternational donations are gratefully accepted, but we cannot make\nany statements concerning tax treatment of donations received from\noutside the United States. U.S. laws alone swamp our small staff.\n\nPlease check the Project Gutenberg Web pages for current donation\nmethods and addresses. Donations are accepted in a number of other\nways including checks, online payments and credit card donations.\nTo donate, please visit: http://pglaf.org/donate\n\n\nSection 5. General Information About Project Gutenberg-tm electronic\nworks.\n\nProfessor Michael S. Hart is the originator of the Project Gutenberg-tm\nconcept of a library of electronic works that could be freely shared\nwith anyone. For thirty years, he produced and distributed Project\nGutenberg-tm eBooks with only a loose network of volunteer support.\n\n\nProject Gutenberg-tm eBooks are often created from several printed\neditions, all of which are confirmed as Public Domain in the U.S.\nunless a copyright notice is included. Thus, we do not necessarily\nkeep eBooks in compliance with any particular paper edition.\n\n\nMost people start at our Web site which has the main PG search facility:\n\n http://www.gutenberg.org\n\nThis Web site includes information about Project Gutenberg-tm,\nincluding how to make donations to the Project Gutenberg Literary\nArchive Foundation, how to help produce our new eBooks, and how to\nsubscribe to our email newsletter to hear about new eBooks.\n"
},
"Apple": {
"title": "Apple",
"created": "20180222072026299",
"list": "[[Apple 6]] [[Apple 7]] [[Apple 8]] [[Apple 9]] [[Apple 10]] [[Apple 20]] [[Apple 30]] [[Apple 100]]",
"modified": "20180222072215582",
"tags": "",
"text": ""
},
"Caruso - Ave Maria": {
"title": "Caruso - Ave Maria",
"type": "audio/mp3",
"_canonical_uri": "https://archive.org/download/Caruso_part1/Caruso-AveMaria.mp3"
},
"GroupedLists": {
"title": "GroupedLists",
"tags": "ListWidget Lists",
"created": "20150106180000000",
"modified": "20150221230117000",
"text": "The following sidebar tabs give examples of grouped lists created by nesting.\n\n!! Types Tab\n\nFor the [[Types|$:/core/ui/MoreSideBar/Types]] tab, the outer list filter as shown below selects each discrete value found in the `type` field. The inner list filter selects all the (non-system) tiddlers with that type.\n\n<<tw-code \"$:/core/ui/MoreSideBar/Types\">>\n\n!! Recent Tab\n\nThe list in the [[Recent|$:/core/ui/SideBar/Recent]] tab is generated using the <<.mlink timeline>> macro. Here, the outer list filter selects each discrete day found in the `modified` field, while the inner list filter selects all the tiddlers dated the same day in the `modified` field.\n\n<<tw-code-link \"$:/core/macros/timeline\">>\n"
},
"ImageGallery Example": {
"title": "ImageGallery Example",
"created": "20140809113603449",
"modified": "20150520161451179",
"tags": "Learning",
"type": "text/vnd.tiddlywiki",
"text": "Here is an example of using the ListWidget and the TranscludeWidget to show a grid of all system images (ie, tiddlers tagged [[$:/tags/Image]]).\n\n<style>\n.my-gallery svg {\nwidth: 6em;\nheight: 6em;\nmargin: 1em;\n}\n</style>\n<div class=\"my-gallery\">\n<$list filter=\"[all[tiddlers+shadows]tag[$:/tags/Image]]\">\n<span title=<<currentTiddler>>>\n<$transclude/>\n</span>\n</$list>\n</div>\n"
},
"SampleAlert": {
"title": "SampleAlert",
"component": "demo",
"created": "20160107230134172",
"modified": "20160107230134172",
"type": "text/vnd.tiddlywiki",
"text": "This is a demonstration alert.\n\nNote that the trashcan icon deletes the tiddler containing this alert. You can also remove it by opening the tiddler SampleAlert and editing it to remove the tag [[$:/tags/Alert]].\n"
},
"SampleNotification": {
"title": "SampleNotification",
"created": "20140912145543340",
"modified": "20140912145610020",
"type": "text/vnd.tiddlywiki",
"text": "{{$:/core/images/done-button}} This is a notification!"
},
"SampleTabFour": {
"title": "SampleTabFour",
"created": "20150221211420000",
"modified": "20150221211613000",
"tags": "sampletab",
"caption": "Four",
"tooltip": "This tab specifies both a caption and a tooltip",
"order": "4",
"text": "This is the fourth of our sample tabs.\n"
},
"SampleTabOne": {
"title": "SampleTabOne",
"created": "20150221211544000",
"tags": "sampletab",
"order": "1",
"text": "This is the first of our sample tabs.\n"
},
"SampleTabThree": {
"title": "SampleTabThree",
"created": "20150221211557000",
"tags": "sampletab",
"order": "3",
"tooltip": "This tab specifies a tooltip only",
"text": "This is the third of our sample tabs.\n"
},
"SampleTabTwo": {
"title": "SampleTabTwo",
"created": "20150221211552000",
"tags": "sampletab",
"order": "2",
"text": "This is the second of our sample tabs.\n"
},
"SampleTiddlerFirst": {
"title": "SampleTiddlerFirst",
"tags": "sampletag1 sampletag2",
"text": "This is a test tiddler called SampleTiddlerFirst."
},
"SampleTiddlerSecond": {
"title": "SampleTiddlerSecond",
"tags": "sampletag1 sampletag2",
"text": "This test tiddler is called SampleTiddlerSecond."
},
"SampleTiddlerThird": {
"title": "SampleTiddlerThird",
"tags": "sampletag1 sampletag2",
"text": "This tiddler SampleTiddlerThird is the third test tiddler."
},
"SampleWizard": {
"title": "SampleWizard",
"created": "20140912145537860",
"footer": "<$button message=\"tm-close-tiddler\">Close</$button>",
"modified": "20140912145537861",
"subtitle": "I'm a modal wizard",
"type": "text/vnd.tiddlywiki",
"text": "This is a modal wizard dialogue, stored in the tiddler SampleWizard.\n\n{{Motovun Jack.jpg}}\n\nYou can <$button message=\"tm-modal\" param=\"SampleWizard2\">nest wizards</$button>.\n"
},
"SampleWizard2": {
"title": "SampleWizard2",
"created": "20140912145532856",
"footer": "<$button message=\"tm-close-tiddler\">Close</$button>",
"modified": "20140912145532856",
"subtitle": "I'm another modal wizard",
"type": "text/vnd.tiddlywiki",
"text": "This is another modal wizard dialogue, stored in the tiddler SampleWizard2.\n\nYou can <$button message=\"tm-modal\" param=\"SampleWizard\">nest wizards</$button>.\n"
},
"TabbedExampleType": {
"title": "TabbedExampleType",
"text": "toc-tabbed-internal-nav"
},
"Contents": {
"title": "Contents",
"created": "20150221194324000",
"modified": "20150221194606000",
"list": "First Second Third Fourth",
"text": "<<.toc-lorem>>\n"
},
"First": {
"title": "First",
"created": "20150221194349000",
"modified": "20150221194610000",
"tags": "Contents",
"list": "FirstOne FirstTwo FirstThree",
"text": "<<.toc-lorem>>\n"
},
"FirstOne": {
"title": "FirstOne",
"created": "20150221194354000",
"modified": "20150221194613000",
"tags": "First",
"text": "<<.toc-lorem>>\n"
},
"FirstThree": {
"title": "FirstThree",
"created": "20150221194357000",
"modified": "20150221194616000",
"tags": "First",
"text": "<<.toc-lorem>>\n"
},
"FirstTwo": {
"title": "FirstTwo",
"created": "20150221194401000",
"modified": "20150221194619000",
"tags": "First",
"text": "<<.toc-lorem>>\n"
},
"Fourth": {
"title": "Fourth",
"created": "20150221194405000",
"modified": "20150221194622000",
"tags": "Contents",
"text": "<<.toc-lorem>>\n"
},
"Second": {
"title": "Second",
"created": "20150221194408000",
"modified": "20150221194624000",
"tags": "Contents",
"text": "<<.toc-lorem>>\n"
},
"SecondOne": {
"title": "SecondOne",
"created": "20150221194412000",
"modified": "20150221194627000",
"tags": "Second",
"text": "<<.toc-lorem>>\n"
},
"SecondThree": {
"title": "SecondThree",
"created": "20150221194416000",
"modified": "20150221194630000",
"tags": "Second",
"list": "SecondThreeOne SecondThreeTwo SecondThreeThree",
"toc-link": "no",
"text": "<<.toc-lorem>>\n"
},
"SecondThreeOne": {
"title": "SecondThreeOne",
"created": "20150221194420000",
"modified": "20150221194633000",
"tags": "SecondThree",
"text": "<<.toc-lorem>>\n"
},
"SecondThreeThree": {
"title": "SecondThreeThree",
"created": "20150221194423000",
"modified": "20150221194635000",
"tags": "SecondThree",
"text": "<<.toc-lorem>>\n"
},
"SecondThreeTwo": {
"title": "SecondThreeTwo",
"created": "20150221194429000",
"modified": "20150221194638000",
"tags": "SecondThree",
"text": "<<.toc-lorem>>\n"
},
"SecondTwo": {
"title": "SecondTwo",
"created": "20150221194433000",
"modified": "20150221194643000",
"tags": "Second",
"text": "<<.toc-lorem>>\n"
},
"Third": {
"title": "Third",
"created": "20150221194436000",
"modified": "20150221194646000",
"tags": "Contents",
"list": "ThirdOne ThirdTwo ThirdThree",
"text": "<<.toc-lorem>>\n"
},
"ThirdOne": {
"title": "ThirdOne",
"created": "20150221194440000",
"modified": "20150221194649000",
"tags": "Third",
"text": "<<.toc-lorem>>\n"
},
"ThirdThree": {
"title": "ThirdThree",
"created": "20150221194446000",
"modified": "20150221194652000",
"tags": "Third",
"text": "<<.toc-lorem>>\n"
},
"ThirdTwo": {
"title": "ThirdTwo",
"created": "20150221194453000",
"modified": "20150221194655000",
"tags": "Third",
"text": "<<.toc-lorem>>\n"
},
"Example Table of Contents: Expandable": {
"title": "Example Table of Contents: Expandable",
"created": "20150221201816000",
"modified": "20150221203715000",
"caption": "Expandable",
"tags": "table-of-contents-example",
"order": "2",
"text": "<$macrocall $name=\".example\" n=\"1\"\neg=\"\"\"<div class=\"tc-table-of-contents\">\n<<toc-expandable \"Contents\">>\n</div>\"\"\"/>\n"
},
"Example Table of Contents: Selectively Expandable": {
"title": "Example Table of Contents: Selectively Expandable",
"created": "20150221201907000",
"modified": "20150221203950000",
"caption": "Selective",
"tags": "table-of-contents-example",
"order": "4",
"text": "<$macrocall $name=\".example\" n=\"1\"\neg=\"\"\"<div class=\"tc-table-of-contents\">\n<<toc-selective-expandable \"Contents\">>\n</div>\"\"\"/>\n"
},
"Example Table of Contents: Simple": {
"title": "Example Table of Contents: Simple",
"created": "20150221201838000",
"modified": "20150221203742000",
"caption": "Simple",
"tags": "table-of-contents-example",
"order": "1",
"text": "<$macrocall $name=\".example\" n=\"1\"\neg=\"\"\"<div class=\"tc-table-of-contents\">\n<<toc \"Contents\">>\n</div>\"\"\"/>\n"
},
"Example Table of Contents: Sorted Expandable": {
"title": "Example Table of Contents: Sorted Expandable",
"created": "20150221201942000",
"modified": "20150221203958000",
"caption": "Sorted",
"tags": "table-of-contents-example",
"order": "3",
"text": "<$macrocall $name=\".example\" n=\"1\"\neg=\"\"\"<div class=\"tc-table-of-contents\">\n<<toc-expandable \"Contents\" \"sort[title]\">>\n</div>\"\"\"/>\n"
},
"Example Table of Contents: Tabbed Internal": {
"title": "Example Table of Contents: Tabbed Internal",
"created": "20150221203607000",
"modified": "20150221210000000",
"caption": "Tabbed Internal",
"tags": "table-of-contents-example",
"order": "5",
"text": "<$macrocall\n\t$name=\"toc-tabbed-internal-nav\"\n\ttag=\"TableOfContents\"\n\tselectedTiddler=\"$:/temp/toc/selectedTiddler\"\n\tunselectedText=\"<p>Select a topic in the table of contents. Click the arrow to expand a topic.</p>\"\n\tmissingText=\"<p>Missing tiddler.</p>\"\n/>\n\n```\n<$macrocall\n\t$name=\"toc-tabbed-internal-nav\"\n\ttag=\"TableOfContents\"\n\tselectedTiddler=\"$:/temp/toc/selectedTiddler\"\n\tunselectedText=\"<p>Select a topic in the table of contents. Click the arrow to expand a topic.</p>\"\n\tmissingText=\"<p>Missing tiddler.</p>\"\n/>\n```\n"
},
"Example Table of Contents: Tabbed External": {
"title": "Example Table of Contents: Tabbed External",
"created": "20150221205834000",
"modified": "20150221210006000",
"caption": "Tabbed External",
"tags": "table-of-contents-example",
"order": "6",
"text": "<$macrocall\n\t$name=\"toc-tabbed-external-nav\"\n\ttag=\"TableOfContents\"\n\tselectedTiddler=\"$:/temp/toc/selectedTiddler\"\n\tunselectedText=\"<p>Select a topic in the table of contents. Click the arrow to expand a topic.</p>\"\n\tmissingText=\"<p>Missing tiddler.</p>\"\n/>\n\n```\n<$macrocall\n\t$name=\"toc-tabbed-external-nav\"\n\ttag=\"TableOfContents\"\n\tselectedTiddler=\"$:/temp/toc/selectedTiddler\"\n\tunselectedText=\"<p>Select a topic in the table of contents. Click the arrow to expand a topic.</p>\"\n\tmissingText=\"<p>Missing tiddler.</p>\"\n/>\n```\n"
},
"Example for tag Macro": {
"title": "Example for tag Macro",
"created": "20150221230034000",
"tags": "[[tag Macro (Examples)]]",
"text": "This tiddler exists to demonstrate the <<.mlink tag>> macro.\n"
},
"Compose ballad": {
"title": "Compose ballad",
"created": "201308251430",
"modified": "201308251430",
"tags": "task",
"text": "//This is a sample task for the TaskManagementExample//\n"
},
"Get the Ring": {
"title": "Get the Ring",
"created": "201308251431",
"modified": "201308251431",
"tags": "task",
"text": "//This is a sample task for the TaskManagementExample//\n"
},
"Go to Mordor": {
"title": "Go to Mordor",
"created": "201308251431",
"modified": "201308251431",
"tags": "task done",
"text": "//This is a sample task for the TaskManagementExample//\n"
},
"Kill the Dragon": {
"title": "Kill the Dragon",
"created": "201308251431",
"modified": "20150124131347000",
"tags": "task",
"list-before": "Get the Ring",
"text": "//This is a sample task for the TaskManagementExample//\n"
},
"Make the beds": {
"title": "Make the beds",
"created": "201308251431",
"modified": "201308251431",
"tags": "task",
"text": "//This is a sample task for the TaskManagementExample//\n"
},
"TaskManagementExample": {
"title": "TaskManagementExample",
"created": "20130825213300000",
"modified": "20180307153530187",
"tags": "Learning",
"type": "text/vnd.tiddlywiki",
"text": "TiddlyWiki5 can be used as a simple task management system without further customisation. The idea is that tasks be tagged `task`, with those that are completed also tagged `done`. In this way it is straightforward to generate task lists.\n\n<<.tip \"\"\"There is [[an enhanced version of this demo|TaskManagementExample (Draggable)]] that adds the ability to drag and drop the tasks to re-order them.\"\"\">>\n\n! Outstanding tasks\n\n<$list filter=\"[!has[draft.of]tag[task]!tag[done]sort[created]]\">\n\n<$checkbox tag=\"done\"> <$link to={{!!title}}><$view field=\"title\"/></$link></$checkbox>\n\n</$list>\n\n! Completed tasks\n\n<$list filter=\"[!has[draft.of]tag[task]tag[done]sort[created]]\">\n\n<$checkbox tag=\"done\"> ~~<$link to={{!!title}}><$view field=\"title\"/></$link>~~</$checkbox>\n\n</$list>\n"
},
"TaskManagementExample (Draggable)": {
"title": "TaskManagementExample (Draggable)",
"created": "20180307153530187",
"modified": "20180307153530187",
"tags": "Learning",
"type": "text/vnd.tiddlywiki",
"text": "This is a version of the TaskManagementDemo enhanced with the ability to drag and drop the task list to re-order them.\n\n! Outstanding tasks\n\n//Drag the tasks to re-order them//\n\n<<list-tagged-draggable tag:\"task\" subFilter:\"!has[draft.of]!tag[done]\" itemTemplate:\"TaskManagementExampleDraggableTemplate\" emptyMessage:\"You don't have any active tasks\">>\n\n! Completed tasks\n\n//(Listed in reverse order of completion)//\n\n<$list filter=\"[!has[draft.of]tag[task]tag[done]sort[created]]\">\n<div>\n<$checkbox tag=\"done\"> ~~<$link to={{!!title}}><$view field=\"title\"/></$link>~~</$checkbox>\n</div>\n</$list>\n"
},
"TaskManagementExampleDraggableTemplate": {
"title": "TaskManagementExampleDraggableTemplate",
"created": "20180307153530187",
"modified": "20180307153530187",
"tags": "Learning",
"type": "text/vnd.tiddlywiki",
"text": "<$checkbox tag=\"done\"> <$link to={{!!title}}><$view field=\"title\"/></$link></$checkbox>"
},
"done": {
"title": "done",
"color": "#2dbe37",
"icon": "$:/core/images/done-button",
"modified": "201307051027",
"text": ""
},
"task": {
"title": "task",
"color": "#8d9ac3",
"created": "201308252132",
"list": "[[Make the beds]]",
"modified": "201606011653",
"text": "//This tag identifies the tasks for the TaskManagementExample//\n"
},
"TiddlyWiki.mp3": {
"title": "TiddlyWiki.mp3",
"text": "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ZlwI//twZOyABERjU+5hoAAAAA0gwAAADdzlVfmGgAAAADSDAAAAcHkhRoqZyQSEYtJ29+F+vBQzwYyMHwgpiqRUpfCofaufLUlZLbUFbQABRUwIgqDJCIBcl8kBhhJHKq5He0V5H1TOHsYYQkuVXwcChxT5VJsJfawjIckrQUgSIDoGRSTHWcmsBoGq2MygIlSXXzUowI5mNrsnQj3PYS6autVuV2yQCKAAAb2SwHgkIqbmrSSGsZ0XmqhRysec60BYSjrHfazSXChCGicOAaaDghLhB4wBsHNHBtRomEkxV4MgkkqVnRHPfb///+1MQU1FMy45OS41VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVUxBTUUzLjk5LjVVVVVVVf/7UGT7AANkVVNuYaAAAAANIMAAAAegV028kYAAAAA0g4AABFVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVX/+yBk/AHxVBhTaSEysAAADSAAAAEFxHVN5jxgyAAANIAAAARVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV//sQZP6B8Yod0ekhGwIAAA0gAAABBSB3Q6SMTQgAADSAAAAEVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVX/+yBk8wHxERFRaQEbOAAADSAAAAEFHA87JCUgAAAANIAAAARVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV//sQZN2P8AAAf4AAAAgAAA0gAAABAAABpAAAACAAADSAAAAEVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVUQUcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/w==",
"type": "audio/mp3"
},
"Days of the Week": {
"title": "Days of the Week",
"created": "20150117192110000",
"modified": "20150123214636000",
"type": "text/vnd.tiddlywiki",
"list": "Monday Tuesday Wednesday Thursday Friday Saturday Sunday",
"short": "Mon Tue Wed Thu Fri Sat Sun",
"my-special-list": "[[listed Operator (Examples)]]",
"text": "<<.this-is-operator-example>>\n\nIt has a <<.field list>> field containing the following items:\n\n<<list-links \"[list[]]\">>\n"
},
"Friday": {
"title": "Friday",
"created": "20150117192111000",
"modified": "20150118131534000",
"type": "text/vnd.tiddlywiki",
"text": "<<.this-is-operator-example>>\n"
},
"Monday": {
"title": "Monday",
"created": "20150117192113000",
"modified": "20150118131645000",
"type": "text/vnd.tiddlywiki",
"text": "<<.this-is-operator-example>>\n"
},
"Saturday": {
"title": "Saturday",
"created": "20151620490000000",
"modified": "20150118131537000",
"type": "text/vnd.tiddlywiki",
"text": "<<.this-is-operator-example>>\n"
},
"Sunday": {
"title": "Sunday",
"created": "20150117192115000",
"modified": "20150118131539000",
"type": "text/vnd.tiddlywiki",
"text": "<<.this-is-operator-example>>\n"
},
"Thursday": {
"title": "Thursday",
"created": "20150117192116000",
"modified": "20150124204253000",
"type": "text/vnd.tiddlywiki",
"text": "<<.this-is-operator-example>>\n\n! <<.olink before>> and <<.olink after>>\n\n<<.using-days-of-week>>\n\n<<.operator-example 1 \"[list[Days of the Week]before{!!title}]\">>\n<<.operator-example 2 \"[list[Days of the Week]after{!!title}]\">>\n"
},
"Tuesday": {
"title": "Tuesday",
"created": "20150117192118000",
"modified": "20150118131558000",
"type": "text/vnd.tiddlywiki",
"text": "<<.this-is-operator-example>>\n"
},
"Wednesday": {
"title": "Wednesday",
"created": "20150117192119000",
"modified": "20150118131707000",
"type": "text/vnd.tiddlywiki",
"text": "<<.this-is-operator-example>>\n"
},
"sampletag1": {
"title": "sampletag1",
"text": "This is `sampletag1`.\n"
},
"sampletag2": {
"title": "sampletag2",
"text": "This is `sampletag2`.\n"
},
"Blog Edition": {
"title": "Blog Edition",
"created": "20150902123139133",
"modified": "20150902123255662",
"tags": "Editions",
"type": "text/vnd.tiddlywiki",
"text": "The ''Blog'' edition of TiddlyWiki contains tools to help publish static HTML blogs written in TiddlyWiki. It is currently designed for use under Node.js.\n\nWhile documentation is being prepared, see https://github.com/Jermolene-blog/blog for an example of use.\n"
},
"Editions": {
"title": "Editions",
"created": "20140908125500000",
"list": "[[Empty Edition]]",
"modified": "20160107222125923",
"tags": "TableOfContents",
"type": "text/vnd.tiddlywiki",
"text": "TiddlyWiki is distributed in several distinct editions that are tuned for specific purposes.\n\nAn edition consists of the TiddlyWiki core components along with plugins, documentation and sample content to get you up and running as quickly as possible.\n\nYou can mix and match the components of these editions, to make a unique solution for your particular application.\n\n<<list-links \"[tag[Editions]]\">>\n\n<$macrocall $name=\".tip\" _=\"\"\"Note that editions should not be confused with the [[platforms|Platforms]] on which TiddlyWiki runs (eg as a [[single HTML file|Saving]] vs. [[under Node.js|TiddlyWiki on Node.js]])\"\"\"/>\n"
},
"Empty Edition": {
"title": "Empty Edition",
"created": "20140916213421041",
"modified": "20160702084215576",
"tags": "Editions",
"type": "text/vnd.tiddlywiki",
"text": "The \"empty\" edition of TiddlyWiki is a vanilla distribution, with no additional plugins or configuration beyond the core code.\n\nThe empty edition can be downloaded from:\n\n* Link: [ext[empty.html]]\n* Built-in: {{$:/editions/tw5.com/snippets/download-empty-button}}\nYour browser may ask you to accept the download before it begins\n"
},
"Full Edition": {
"title": "Full Edition",
"created": "20150310103210459",
"modified": "20160602051530592",
"tags": "Editions",
"type": "text/vnd.tiddlywiki",
"text": "The \"full\" edition of TiddlyWiki consists of all the available languages, themes and plugins for TiddlyWiki. It is intended for use in testing TiddlyWiki - in particular, for switching between all the available language plugins.\n\nThe full edition can be downloaded from:\n\nhttps://tiddlywiki.com/editions/full/\n"
},
"Résumé Builder Edition": {
"title": "Résumé Builder Edition",
"created": "20150718123139133",
"modified": "20160602051544252",
"tags": "Editions",
"type": "text/vnd.tiddlywiki",
"text": "The ''Résumé Builder'' edition of TiddlyWiki gets you started with a simple way to create a professional resume that you can save to the web or print.\n\nhttps://tiddlywiki.com/editions/resumebuilder/\n"
},
"Text-Slicer Edition": {
"title": "Text-Slicer Edition",
"created": "20150718123139133",
"modified": "20160602051553479",
"tags": "Editions",
"type": "text/vnd.tiddlywiki",
"text": "The ''Text-Slicer'' edition of TiddlyWiki contains tools to help advanced users slice long texts up into individual tiddlers.\n\nhttps://tiddlywiki.com/editions/text-slicer/\n"
},
"XLSX Utilities Edition": {
"title": "XLSX Utilities Edition",
"created": "20161023202301847",
"modified": "20161023202301847",
"tags": "Editions",
"type": "text/vnd.tiddlywiki",
"text": "The ''XLSX Utilities'' edition of TiddlyWiki contains tools to work with `.XLSX` spreadsheets generated by applications like Microsoft Excel and Google Sheets. It can be used in the browser or under Node.js.\n\nhttps://tiddlywiki.com/editions/xlsx-utils/\n"
},
"AutoSave": {
"title": "AutoSave",
"created": "20140206211715540",
"modified": "20160610081543108",
"tags": "Features",
"type": "text/vnd.tiddlywiki",
"text": "If there is a SaverModule available that supports it, TiddlyWiki will automatically trigger a save of the current document on clicking {{$:/core/images/done-button}} ''ok'' or {{$:/core/images/delete-button}} ''delete'' when editing a tiddler.\n\nYou should see a yellow notification at the top right of the window to confirm that an automatic save has taken place.\n\nAutomatic saving can be enabled or disabled through the ''Settings'' tab of the [[control panel|$:/ControlPanel]] {{$:/core/images/options-button}}. Behind the scenes, it is controlled through the configuration tiddler [[$:/config/AutoSave]], which must have the value ''yes'' to enable automatic saving.\n"
},
"DateFormat": {
"title": "DateFormat",
"created": "20140418142957325",
"modified": "20180730201626985",
"tags": "Features",
"type": "text/vnd.tiddlywiki",
"text": "When used to display date values (with the `format` attribute set to ''date''), the ViewWidget accepts a `template` attribute that allows the format of the date values to be specified. The format string is processed with the following substitutions:\n\n|!Token |!Substituted Value |\n|`DDD` |Day of week in full (eg, \"Monday\") |\n|`ddd` |Short day of week (eg, \"Mon\") |\n|`DD` |Day of month |\n|`0DD` |Adds a leading zero |\n|`DDth` |Adds a suffix |\n|`WW` |ISO-8601 week number of year |\n|`0WW` |Adds a leading zero |\n|`MMM` |Month in full (eg, \"July\") |\n|`mmm` |Short month (eg, \"Jul\") |\n|`MM` |Month number |\n|`0MM` |Adds leading zero |\n|`YYYY` |Full year |\n|`YY` |Two digit year |\n|`wYYYY` |Full year with respect to week number |\n|`wYY` |Two digit year with respect to week number |\n|`hh` |Hours |\n|`0hh` |Adds a leading zero |\n|`hh12` |Hours in 12 hour clock |\n|`0hh12` |Hours in 12 hour clock with leading zero |\n|`mm` |Minutes |\n|`0mm` |Minutes with leading zero |\n|`ss` |Seconds |\n|`0ss` |Seconds with leading zero |\n|`XXX` |Milliseconds |\n|`0XXX` |Milliseconds with leading zero |\n|`am` or `pm` |Lower case AM/PM indicator |\n|`AM` or `PM` |Upper case AM/PM indicator |\n|`TZD` |Timezone offset |\n|`\\x` |Used to escape a character that would otherwise have special meaning |\n|`[UTC]`|Time-shift the represented date to UTC. Must be at very start of format string|\n\nNote that other text is passed through unchanged, allowing commas, colons or other separators to be used.\n\n! Examples\n\n|!Template |!Output |\n|`DDth MMM YYYY` |16th February 2011 |\n|`DDth MMM \\M\\M\\M YYYY` |16th February MMM 2011 |\n|`DDth mmm YYYY 0hh:0mm:0ss` |16th Feb 2011 11:38:42 |\n"
},
"Drag and Drop": {
"title": "Drag and Drop",
"created": "20170328143119836",
"modified": "20170328173846754",
"tags": "Features",
"type": "text/vnd.tiddlywiki",
"text": "~TiddlyWiki uses drag and drop to power two separate features:\n\n* [[Importing Tiddlers]] into ~TiddlyWiki \n* Manipulating tiddlers within a ~TiddlyWiki \n\nTiddler manipulation via drag and drop is supported by the core user interface in the following contexts:\n\n* Entries in the \"Open\" tab of the sidebar can be reordered by drag and drop; new tiddlers can be opened by dragging their titles into the list\n* Entries within a tag pill dropdown can be reordered by drag and drop; new tiddlers can be assigned the tag by dragging their titles into the list\n* Entries in the [[control panel|$:/ControlPanel]] \"Appearance\"/\"Toolbars\" tab can be reordered by drag and drop. (Less usefully, new entries can be added to the toolbars by dragging their titles into the list)\n\nAll tiddler links are draggable by default. They can be dragged within a browser window for manipulating tiddlers, or dragged to a different browser window to initiate an [[import operation|Importing Tiddlers]]\n\nIf you want to drag a link, first move it vertically, because horizontal movement is recognized by the browser as text selection.\n\nTag pills are also draggable, and are equivalent to simultaneously dragging all of the individual tiddlers carrying the tag.\n\nSome common scenarios for drag and drop tiddler manipulation are available as reusable macros:\n\n* [[list-links-draggable Macro]] for reordering the entries in a tiddler ListField\n* [[list-tagged-draggable Macro]] for reordering the tiddlers that carry a specified tag\n\nSee DragAndDropMechanism for details of how to use the low level drag and drop primitives to build more complex interactions.\n\nThe standard HTML 5 drag and drop APIs used by ~TiddlyWiki are not generally available on mobile browsers on smartphones or tablets. The [[Mobile Drag And Drop Shim Plugin]] adds an open source library that implements partial support on many mobile browsers, including iOS and Android.\n"
},
"Features": {
"title": "Features",
"created": "20130822172800000",
"modified": "20160107225826644",
"tags": "TableOfContents",
"type": "text/vnd.tiddlywiki",
"text": "Further information about specific TiddlyWiki features:\n\n<<list-links \"[tag[Features]]\">>\n\nLast but not least, TiddlyWiki is a rare example of a practical [[quine|Quine]]\n"
},
"Future Proof": {
"title": "Future Proof",
"created": "20131213101024997",
"modified": "20170329104438386",
"tags": "Features",
"type": "text/vnd.tiddlywiki",
"text": "From [[Network World|http://www.networkworld.com/article/3028098/open-source-tools/tiddlywiki-a-free-open-source-wiki-revisited.html]] magazine in January 2016:\n\n<<<\nWay back in the mists of time (actually, January 2009) I [[wrote|http://www.networkworld.com/article/2272104/applications/an-amazing-free-microwiki.html]] about a really cool tool called TiddlyWiki, a “non-linear personal web notebook”. Fast forward to today and I just had an out of body experience: Completely by accident I found a TiddlyWiki that I started when I wrote that piece and it still works!\n\nFinding code that works flawlessly after just two or three years is magical enough but after seven years?! And given that TiddlyWiki is written as a single page Web application and considering how different browsers are now than they were in 2009, the fact that the old version of TiddlyWiki still works is not short of miraculous.\n<<<\n\nTiddlyWiki is designed with the long term needs of its users in mind. Because it is OpenSource and needs no infrastructure, we can be confident that all we'll need to access a ~TiddlyWiki file even in the far future is an ordinary HTML browser. If you're starting to use ~TiddlyWiki at the beginning of your career you can be confident that it will carry you through to retirement.\n\n"
},
"Importing Tiddlers": {
"title": "Importing Tiddlers",
"created": "20130825162000000",
"modified": "20170328160211362",
"tags": "Features",
"type": "text/vnd.tiddlywiki",
"text": "You can import tiddlers into a ~TiddlyWiki from external files or directly from another ~TiddlyWiki.\n\n!! Importing content from external files\n\nThere are several ways to import content from external files:\n\n* Use the {{$:/core/images/import-button}} ''import'' button (under the ''Tools'' tab in the sidebar) to select a local file\n* Drag and drop files from Windows Explorer or OS X Finder etc. into the TiddlyWiki browser window\n* Paste content directly from the clipboard using the menu or keyboard shortcut (<kbd>ctrl-V</kbd> or <kbd>cmd-V</kbd>)\n** Currently supported in Chrome, Firefox and Edge (but not Internet Explorer)\n\nMost files are imported as individual tiddlers. The exceptions are:\n\n* ''.html'' files that are recognised as a ~TiddlyWiki file are parsed to extract the tiddlers within them\n* ''.json'' files are parsed to extract the tiddlers within them. They can be created by [[exporting them|How to export tiddlers]] from another ~TiddlyWiki. ~TiddlyWiki accepts JSON files that contain either a single tiddler fields object, or an array of tiddler fields objects\n\n!! Importing content from other ~TiddlyWiki browser windows\n\nTiddlers can be imported from other ~TiddlyWiki browser windows via [[Drag and Drop]]. Drag a tiddler link or tag from one ~TiddlyWiki browser window to another. Dragging a link will import a single tiddler while dragging a tag pill will import all of the tiddlers that carry that tag.\n\n"
},
"LazyLoading": {
"title": "LazyLoading",
"created": "20140206214608586",
"modified": "20180701185417525",
"tags": "Features",
"type": "text/vnd.tiddlywiki",
"text": "Ordinarily with TiddlyWiki, the full content of all tiddlers is embedded into the main HTML file. Lazy loading refers to the technique of only embedding metadata about the tiddler (in other words all fields except the ''text'' field), and requesting the body from the server when required.\n\nLazy loading can be used in two configurations:\n\n* When running [[TiddlyWiki on Node.js]], just image tiddlers or all non-system tiddlers can be subject to lazy loading\n* When running [[TiddlyWiki in the Sky for TiddlyWeb]], all tiddlers are subject to lazy loading\n\nSee the LazyLoadingMechanism for details of how lazy loading is implemented.\n\n! Lazy loading under Node.js\n\nTo start TiddlyWiki with lazy loading for image tiddlers use this command:\n\n\n```\ntiddlywiki --listen root-tiddler=$:/core/save/lazy-images\n```\n\nTo apply lazy loading to all non-system tiddlers use this command:\n\n\n```\ntiddlywiki --listen root-tiddler=$:/core/save/lazy-all\n```\n\n"
},
"Modals": {
"title": "Modals",
"created": "20160107225427489",
"modified": "20160107225651558",
"tags": "Features",
"type": "text/vnd.tiddlywiki",
"text": "Modals (or \"wizards\") fade the main TiddlyWiki window to display an isolated tiddler that must be explicitly dismissed by the user.\n\nModals are displayed with the [[WidgetMessage: tm-modal]].\n\n<$button message=\"tm-modal\" param=\"SampleWizard\">Open demo modal</$button>"
},
"Notifications": {
"title": "Notifications",
"created": "20160107225753340",
"modified": "20160107225855353",
"tags": "Features",
"type": "text/vnd.tiddlywiki",
"text": "Notifications are small informational messages that appear at the top right of the TiddlyWiki window, and automatically disappear after a preset time.\n\n<$button message=\"tm-notify\" param=\"SampleNotification\">Display sample notification</$button>"
},
"Performance Instrumentation": {
"title": "Performance Instrumentation",
"created": "20190316163428191",
"modified": "20190510133455372",
"tags": "Features",
"type": "text/vnd.tiddlywiki",
"text": "The core has built-in performance instrumentation for the refresh cycle. See “Performance Instrumentation” on the “Settings” tab of control panel. The wiki will need to be reloaded before it takes effect.\n\nWith performance instrumentation switched on, there is additional timing information displayed the browser developer console each time a refresh cycle is triggered. For example:\n\n```\nperformance: mainRender: 327.83ms \nperformance: styleRefresh: 9.14ms \nperformance: mainRefresh: 68.10ms \n```\n\nThe information above should be interpreted as follows:\n\n* mainRender is the time taken for the initial display of the page template\n* styleRefresh is the time taken to refresh the page stylesheet\n* mainRender is the time taken to refresh the main page template\n\nAs an example, try switching between the sidebar tabs to compare how long they take to render.\n\nMore detailed information on filter execution timings is also available. With performance instrumentation enabled, ype the following JavaScript command in the browser developer console:\n\n```\n$tw.perf.log()\n```\n\nA table is displayed with the following information:\n\n* ''name'' - the string \"Filter: \" plus the text of the filter\n* ''invocations'' - the number of invocations of the filter since startup\n* ''totalTime'' - the total time in milliseconds spent evaluating this filter since startup\n* ''percentTime'' - the percentage of the execution time of this filter against the total execution time of all filters\n"
},
"SafeMode": {
"title": "SafeMode",
"created": "20140419082845576",
"modified": "20160610082458079",
"tags": "Features",
"type": "text/vnd.tiddlywiki",
"text": "! Introduction\n\nSafe mode provides a way to disabling most customisations in TiddlyWiki. This is useful because if TiddlyWiki is customised incorrectly it can be rendered inoperable. A particular issue is that some customisations break when upgrading to a newer core version of TiddlyWiki (especially during the beta).\n\n! Enabling Safe Mode\n\nSafe mode is enabled in the browser by starting TiddlyWiki with the URL hash set to the string `#:safe`. For example:\n\nhttps://tiddlywiki.com/#:safe\n\n! How Safe Mode Works\n\nSafe mode triggers two changes:\n\n* All plugins are temporarily disabled. You can use the [[control panel|$:/ControlPanel]] {{$:/core/images/options-button}} to disable individual plugins\n* Any tiddlers that override shadow tiddlers are renamed to give them the prefix `SAFE: `, thus restoring the underlying shadow tiddler\n* Certain configuration options are ignored, and the default settings used instead:\n** WikiParserRuleConfiguration\n\nA report tiddler is displayed that allows you to inspect the tiddlers that were renamed.\n"
},
"Scalability": {
"title": "Scalability",
"created": "20130822173400000",
"modified": "20140912145800365",
"tags": "Features",
"type": "text/vnd.tiddlywiki",
"text": "You might expect that TiddlyWiki's architecture as a SinglePageApplication would make it unsuitable for large amounts of data. In fact, TiddlyWiki users regularly work with files that are 20 or 30 megabytes without problems - and successful experiments have been done up into the gigabytes."
},
"Searching in TiddlyWiki": {
"title": "Searching in TiddlyWiki",
"created": "20140210160125905",
"modified": "20160607163012344",
"tags": "Features [[Working with TiddlyWiki]]",
"type": "text/vnd.tiddlywiki",
"text": "Searching is fast and flexible in ~TiddlyWiki.\n\n! Standard search\n\nTyping text into the search box in the sidebar will turn up a list of all the tiddlers that contain that text.\n\n://(Note that the sidebar tabs will be hidden by the search results until you click the 'x' to the right of the search box to remove the search results)//\n\n! Advanced searching\n\nClicking on the magnifying glass icon {{$:/core/images/advanced-search-button}} to the right of the search box will open [[$:/AdvancedSearch]]. This tiddler contains four tabs:\n\n* The ''standard'' tab contains another instance of the search box found in the sidebar\n* The ''system'' tab allows you to limit your search to system tiddlers\n* The ''shadows'' tab allows you to limit your search to shadow tiddlers\n* The ''filter'' tab is not a search box, per se, but a way to obtain a list of all tiddlers that meet the specific criteria described by that [[filter|Filters]], for example, \"All tags except system tags\"\n"
},
"StartupActions": {
"title": "StartupActions",
"created": "20180323092308399",
"modified": "20190307183936035",
"tags": "Features",
"type": "text/vnd.tiddlywiki",
"text": "TiddlyWiki executes any ActionWidgets found in tiddlers with the following system tags during startup:\n\n* <<tag \"$:/tags/StartupAction\">> (executed on all platforms)\n* <<tag \"$:/tags/StartupAction/Browser\">> (only executed when running in the browser)\n* <<tag \"$:/tags/StartupAction/Node\">> (only executed when running under Node.js)\n\nStartup actions are useful for customising TiddlyWiki according to environmental factors such as the screen size. For example, the following action widgets when placed in a tiddler tagged `$:/tags/StartupAction/Browser` will cause the sidebar to be hidden by default when the screen width is less than 1000 pixels:\n\n```\n<$reveal type=\"lt\" state=\"$:/info/browser/screen/width\" text=\"3000\">\n<$action-setfield $tiddler=\"$:/state/sidebar\" $value=\"no\"/>\n</$reveal>\n\n<$reveal type=\"gteq\" state=\"$:/info/browser/screen/width\" text=\"3000\">\n<$action-setfield $tiddler=\"$:/state/sidebar\" $value=\"yes\"/>\n</$reveal>\n```\n\n<<.from-version \"5.1.20\">> This example switches to the language plugin matching the language reported by the browser:\n\n```\n<$action-setfield $tiddler=\"$:/language\" text={{{ [[$:/languages/en-GB]] [plugin-type[language]sort[description]removeprefix[$:/languages/]] +[prefix{$:/info/browser/language}] ~[[en-GB]] +[addprefix[$:/languages/]] }}}/>\n```\n\nNote that global macros are not available within startup action tiddlers by default. If you need to access them then you'll need to explicitly include them with an ''import'' [[pragma|Pragma]] at the top of the tiddler:\n\n```\n\\import [[$:/core/ui/PageMacros]] [all[shadows+tiddlers]tag[$:/tags/Macro]!has[draft.of]]\n```\n"
},
"ListField": {
"title": "ListField",
"created": "20130830092500000",
"modified": "20150124202924000",
"tags": "Fields",
"caption": "list",
"type": "text/vnd.tiddlywiki",
"text": "The `list` [[field of a tiddler|TiddlerFields]] is an optional feature that can be used to help structure your content. Its value is a [[title list|Title List]], and it can be used in several ways:\n\n* The `list` field of a tiddler that is being used as a tag determines the ordering of the tiddlers that carry that tag - see [[Tagging]] for details\n* The `list` [[filter|Filters]] selects the entries from a list\n* The `listed` [[filter|Filters]] selects the tiddlers that list the selected tiddler(s)\n* The NavigatorWidget manipulates a StoryList tiddler containing a `list` field of the tiddlers that are displayed in the main story column\n"
},
"MultiTiddlerFileSyntax": {
"title": "MultiTiddlerFileSyntax",
"created": "20150621181334837",
"modified": "20150621181400844",
"tags": "[[TiddlyWiki on Node.js]]",
"type": "text/vnd.tiddlywiki",
"text": "!!! MultiTiddlerFiles\n\n<$railroad text=\"\"\"\n{<\"Header Line\">} \"Blank Line\" {(<\"Tiddler Descriptor Line\"> | <\"Comment Line\">)}\n\"\"\"/>\n\n!!! Header Line\n\n<$railroad text=\"\"\"\n<\"Identifier\"> \":\" {\"Whitespace\"} <\"Value\"> \"New Line\"\n\"\"\"/>\n\n!!! Tiddler Descriptor Line\n\n<$railroad text=\"\"\"\n<\"File Path\"> \":\" {\"Whitespace\"} <\"Tiddler Title\"> \"New Line\"\n\"\"\"/>\n\n!!! Comment Line\n\n<$railroad text=\"\"\"\n\"#\" {(\"Text\" | \"Whitespace\")} \"New Line\"\n\"\"\"/>\n"
},
"MultiTiddlerFiles": {
"title": "MultiTiddlerFiles",
"created": "20140209143652456",
"modified": "20150621182140407",
"tags": "[[TiddlyWiki on Node.js]]",
"type": "text/vnd.tiddlywiki",
"text": "MultiTiddlerFiles allow multiple tiddlers to be concisely represented in a single text file.\n\nThe goals of this format are:\n\n* To be easy to type and easy to read\n* Optimised for single line strings\n* To allow common fields or tags to be shared within groups of tiddlers\n* To be simple to process with external tools\n\nMultiTiddlerFiles have the extension `multids`. The file is structured as a block of shared fields followed by a blank line. The rest of the file is a sequence of comments and tiddlers. Tiddlers are specified by their title, followed by a colon, at least one space character, and then the rest of the line is the text field for the tiddler.\n\nFor example:\n\n```\ntitle: $:/language/ControlPanel/\ntags: strings\nmodifier: JoeBloggs\n\nBasics/Caption: Basics\n# This is a comment\nBasics/Version: ~TiddlyWiki Version\n```\n\nThis example defines two tiddlers, [[$:/language/ControlPanel/Basics/Caption]] and [[$:/language/ControlPanel/Basics/Version]].\n\nIf a `title` field is specified in the header then it is treated as a prefix for the individual tiddlers defined in the title.\n\n!! Syntax Specification\n\n{{MultiTiddlerFileSyntax}}\n"
},
"TiddlerFiles": {
"title": "TiddlerFiles",
"created": "20130825150000000",
"modified": "20190609154450433",
"tags": "[[TiddlyWiki on Node.js]]",
"type": "text/vnd.tiddlywiki",
"text": "Tiddlers can be stored in text files in several different formats. Files containing single tiddlers can also have an auxiliary `.meta` file formatted as a sequence of name:value pairs:\n\n```\ntitle: TheTitle\nmodifier: someone\n```\n\n!! ~TiddlyWeb-style .tid files\n\nThese files consist of a sequence of lines containing name:value pairs, a blank line and then the text of the tiddler. For example:\n\n```\ntitle: MyTiddler\nmodifier: Jeremy\n\nThis is the text of my tiddler.\n```\n\nNote that many text editors require that files include a terminating newline. If you want to avoid including the terminating newline in the text of the tiddler you can use this alternative syntax:\n\n```\ntitle: MyTiddler\nmodifier: Jeremy\ntext: This is the text of my tiddler.\n```\n\n//The ContentType `application/x-tiddler` is used internally for these files//\n\n!! TiddlyWiki `<DIV>` .tiddler files\n\nIn TiddlyWiki 5, `*.tiddler` files look like this:\n\n```\n<div title=\"AnotherExampleStyleSheet\" modifier=\"blaine\" created=\"201102111106\" modified=\"201102111310\" tags=\"examples\" creator=\"psd\">\n<pre>Note that there is an embedded <pre> tag, and line feeds are not escaped.\n\nAnd, weirdly, there is no HTML encoding of the body.</pre>\n</div>\n```\n\nThese `*.tiddler` files are not exactly the same as the tiddlers inside a TiddlyWiki HTML file where they are HTML encoded.\n\nOlder `*.tiddler` files more closely matched the store format used by TiddlyWiki at the time:\n\n```\n<div tiddler=\"AnotherExampleStyleSheet\" modifier=\"JeremyRuston\" modified=\"200508181432\" created=\"200508181432\" tags=\"examples\">This is an old-school .tiddler file, without an embedded <pre> tag.\\nNote how the body is "HTML encoded" and new lines are escaped to \\\\n</div>\n```\n\n//The ContentType `application/x-tiddler-html-div` is used internally for these files//\n\n!! ~TiddlyWeb-style JSON files\n\nThese files are a straightforward array of hashmaps of `name:value` properties. All field values must be specified as strings.\n\nFor example:\n\n```\n[\n\t{\n\t\t\"title\": \"First Tiddler\",\n\t\t\"text\": \"Text of first tiddler\",\n\t\t\"tags\": \"one two [[t h r e e]]\"\n\t},{\n\t\t\"title\": \"Second Tiddler\",\n\t\t\"text\": \"Text of second tiddler\",\n\t\t\"modified\": \"20150216171751154\"\n\t}\n]\n```\n\nThe ContentType `application/json` is used internally for these files.\n\nNote that JSON files that do not conform to the tiddler structure will instead be imported as a single tiddler containing the JSON data.\n\n!! TiddlyWiki HTML files\n\nTiddlyWiki HTML files contain a collection of tiddlers encoded in `<DIV>` format.\n\nFor TiddlyWiki to import an unencrypted HTML file, it requires a `<div id=\"storeArea\">` containing tiddler DIVs as explained above. For example:\n\n```\n<div id=\"storeArea\">\n<div created=\"20130302085406905\" modified=\"20130302084548184\" tags=\"Examples\" title=\"A tiddler title\">\n<pre>HTML encoded text of tiddler\n</pre>\n</div>\n<div created=\"20140315085406905\" modified=\"20140321084548184\" tags=\"One Two [[Three with Space]]\" title=\"Another title\" customfield=\"field value\">\n<pre>Text of this tiddler\n</pre>\n</div>\n</div>\n```\n"
},
"Conditional Operators": {
"title": "Conditional Operators",
"created": "20190802113703788",
"modified": "20190802132727925",
"tags": "Filters",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.20\">>The conditional filter operators allow ''if-then-else'' logic to be expressed within filters.\n\nThe foundation is the convention that an empty list can be used to represent the boolean value ''false'' and a list with at one (or more) entries to represent ''true''.\n\nThe conditional operators are:\n\n* [[then Operator]] replaces any input values with a constant string. For example:\n** <<.inline-operator-example \"[[HelloThere]is[missing]then[FOO]]\">>\n** <<.inline-operator-example \"[[Missing Tiddler]is[missing]then[FOO]]\">>\n* [[else Operator]] if the title list is empty then returns a constant string, otherwise returns the original title list\n** <<.inline-operator-example \"[[HelloThere]is[tiddler]else[BAR]]\">>\n** <<.inline-operator-example \"[[Missing Tiddler]is[tiddler]else[BAR]]\">>\n\nThese operators can be combined. For example:\n\n<<.inline-operator-example \"[[New Tiddler]is[missing]then[I am missing]else[No I am not missing]]\">>\n\nThe [[else Operator]] can be used to apply a defaults for missing values. In this example, we take advantage of the fact that the [[get Operator]] returns an empty list if the field or tiddler does not exist:\n\n<<.inline-operator-example \"[[HelloThere]get[custom-field]else[default-value]]\">>\n\n<<list-links \"[tag[Conditional Operators]]\">>\n"
},
"Filter Operators": {
"title": "Filter Operators",
"created": "20140410103123179",
"modified": "20190206140446821",
"tags": "Filters",
"type": "text/vnd.tiddlywiki",
"text": "\\define .operator-rows(filter)\n<$list filter=\"$filter$\"><tr>\n<td><$link to={{!!title}}>{{!!caption}}</$link></td>\n<td>{{!!op-purpose}}</td>\n<td align=\"center\"><$list filter=\"[all[current]tag[Common Operators]]\">✓</$list></td>\n<td align=\"center\"><$list filter=\"[all[current]tag[Negatable Operators]]\">`!`</$list></td>\n</tr></$list>\n\\end\n\n\\define .group-heading(_)\n<tr class=\"doc-table-subheading\"><th colspan=\"4\" align=\"center\">$_$</th></tr>\n\\end\n\nA <<.def \"filter operator\">> is a predefined keyword attached to an individual [[step|Filter Step]] of a [[filter|Filters]]. It defines the particular action of that step.\n\n''Important:'' Each first [[step|Filter Step]] of a [[filter run|Filter Run]] not given any input titles receives the output of <$link to=\"all Operator\">[all[tiddlers]]</$link> as its input.\n\nThe following table lists all core operators, the most common ones marked ✓. The last column indicates whether an operator allows ''negation'' using the <$link to=\"Filter Step\"><code>!</code> prefix</$link>. For specifics as to each operator's negated output please refer to its documentation.\n\n<table>\n<tr>\n<th align=\"left\">Operator</th>\n<th align=\"left\">Purpose</th>\n<th align=\"center\">✓</th>\n<th align=\"center\">`!`</th>\n</tr>\n<<.operator-rows \"[tag[Filter Operators]!tag[Order Operators]!tag[Mathematics Operators]!tag[String Operators]!tag[Tag Operators]!tag[Special Operators]sort[]]\">>\n<<.group-heading \"Order Operators\">>\n<<.operator-rows \"[tag[Filter Operators]tag[Order Operators]!tag[Listops Operators]!tag[Mathematics Operators]!tag[String Operators]!tag[Tag Operators]!tag[Special Operators]sort[]]\">>\n<<.group-heading \"Listops Operators\">>\n<<.operator-rows \"[tag[Filter Operators]tag[Listops Operators]tag[Order Operators]!tag[Mathematics Operators]!tag[String Operators]!tag[Tag Operators]!tag[Special Operators]sort[]]\">>\n<<.group-heading \"String Operators\">>\n<<.operator-rows \"[tag[Filter Operators]!tag[Order Operators]!tag[Mathematics Operators]tag[String Operators]!tag[Tag Operators]!tag[Special Operators]sort[]]\">>\n<<.group-heading \"Mathematics Operators\">>\n<<.operator-rows \"[tag[Filter Operators]!tag[Order Operators]tag[Mathematics Operators]!tag[String Operators]!tag[Tag Operators]!tag[Special Operators]sort[]]\">>\n<<.group-heading \"Tag Operators\">>\n<<.operator-rows \"[tag[Filter Operators]!tag[Order Operators]!tag[Mathematics Operators]!tag[String Operators]tag[Tag Operators]!tag[Special Operators]sort[]]\">>\n<<.group-heading \"Special Operators\">>\n<<.operator-rows \"[tag[Filter Operators]!tag[Order Operators]!tag[Mathematics Operators]!tag[String Operators]!tag[Tag Operators]tag[Special Operators]sort[]]\">>\n</table>\n\nA typical step is written as `[operator[parameter]]`, although not all of the operators need a [[parameter|Filter Parameter]].\n\nMost steps process the [[selection of titles|Title Selection]] that are supplied as their input, but a few [[construct an entirely new selection|Selection Constructors]] instead. For the exact rules, see [[Filter Syntax]].\n"
},
"Introduction to filter notation": {
"title": "Introduction to filter notation",
"created": "20140410101941871",
"modified": "20150228104558000",
"tags": "Learning Filters",
"type": "text/vnd.tiddlywiki",
"text": "<<.preamble \"\"\"This explains the basics of writing a [[filter|Filters]] to select a set of tiddlers. For a more technical presentation, see [[Filter Syntax]].\"\"\">>\n\n<$macrocall $name=\".tip\" _=\"\"\"Filters do nothing if you just type them into a tiddler on their own. They need a context. An easy way to experiment with filters is to type them into the <<.advancedsearch-tab Filter>> tab of [[Advanced Search|$:/AdvancedSearch]].\"\"\"/>\n\nThe simplest case is where you already know exactly which tiddlers you want. Type each title in double square brackets, with a space between each one and the next:\n\n> `[[Recipe book]] [[ScrambledEggs]] [[Mom's apple pie]]`\n\nYou can omit the square brackets when a title doesn't contain any spaces:\n\n> `[[Recipe book]] ScrambledEggs [[Mom's apple pie]]`\n\nThe double square brackets are actually a shorthand for this:\n\n> `[title[ScrambledEggs]]`\n\n... which gives us the <<.def \"general model\">> for any filter:\n\n> `[operator[parameter]]`\n\nFor instance, here's how to select all the tiddlers that have been tagged <<.tag Recipe>>:\n\n> `[tag[Recipe]]`\n\nWe can reverse the meaning by adding an exclamation mark `!` just before the operator. For example, we can select any tiddlers that do <<.em not>> have the <<.tag Recipe>> tag:\n\n> `[!tag[Recipe]]`\n\nTiddlers can be filtered by other fields than just title and tags:\n\n> `[field:serving[4]]`\n\nThat example will select any tiddlers that have <<.value 4>> in their <<.field serving>> field.\n\nAs the word \"serving\" isn't a standard filter operator (and isn't likely to become one), you can safely omit the `field:` prefix:\n\n> `[serving[4]]`\n\n!Combinations\n\nThe filters we've looked at so far have involved just one step each. But you can <<.def run>> several steps together like this:\n\n> `[tag[Vegetarian]!tag[soup]serving[4]]`\n\nNotice how the entire run is contained in a single pair of square brackets.\n\nA tiddler has to match <<.em all>> of the steps in a run. So the example above retrieves vegetarian recipes (other than soups) for 4 people.\n\nA sequence of separate runs will select the tiddlers that match <<.em any>> of the runs. We can use this to find recipes that serve either 3, 4 or 5 people:\n\n> `[serving[3]] [serving[4]] [serving[5]]`\n\nIf we want to ignore vegetarian recipes that serve 4, we can say this:\n\n> `[serving[3]] [serving[4]!tag[Vegetarian]] [serving[5]]`\n\nBy default, each run considers every tiddler in the wiki. But we can use a `+` sign to force a run to consider only the tiddlers that were selected by the preceding runs:\n\n> `[serving[3]] [serving[4]] [serving[5]] +[tag[Vegetarian]] +[sort[title]]`\n\nThis selects recipes for 3, 4 or 5 people, then filters <<.em those>> to keep only the vegetarian ones, and finally sorts any that are left into alphabetical order of title.\n\nIn a similar way, we can use a `-` sign to <<.em remove>> a run's tiddlers from the result so far. Here we select all vegetarian recipes apart from two:\n\n> `[tag[Vegetarian]] -[title[ScrambledEggs]] -BeansOnToast`\n\n!Special parameters\n\nThe parameter of each step we've seen so far has been in square brackets, meaning that ~TiddlyWiki treats it literally. But two other kinds of bracket are possible:\n\n<<.def \"Curly brackets\">> `{}` mean that the parameter is a TextReference, and that its value is to be looked up in a specified tiddler. For example, if we have a tiddler called <<.tid Preference>> whose text happens to be the word <<.value Vegetarian>>, we can say\n\n> `[tag{Preference}]`\n\nas an alternative to `[tag[Vegetarian]]`. This allows the preference to change over time.\n\n<<.def \"Angle brackets\">> `<>` mean that the parameter is the name of a [[variable|Variables]] whose value is to be used instead. Here we use the built-in <<.vlink currentTiddler>> variable in a filter that selects any tiddlers whose text contains the title of the current one:\n\n> `[search<currentTiddler>]`\n\nNote that these special brackets cannot be nested. It is not possible for example to write `[search{<currentTiddler>}]`.\n"
},
"Mathematics Operators": {
"title": "Mathematics Operators",
"created": "20190206140446821",
"modified": "20190611155838557",
"tags": "Filters",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.20\">>The mathematics filter operators allow numerical calculations to be performed within filters.\n\nThe mathematics operators interpret their arguments as numbers according to the following rules:\n\n* Any non-numeric characters after a valid number are ignored (e.g. `28px` is interpreted as the number 28)\n* If the argument cannot be interpreted as a number, the value 0 is used (e.g. `foo` is interpreted as the number 0)\n* The special values `Infinity` and `-Infinity` can be used to represent positive and negative infinity respectively\n\n<$macrocall $name=\".warning\" _=\"Some filter operators remove duplicate items which can cause unexpected results when using the mathematics operators. See [[Dominant Append]] for details.\"/>\n\nThe mathematics operators take three different forms:\n\n* ''Unary operators'' apply an operation to each number in the input list (e.g. negate, truncate, sign)\n** <<.inline-operator-example \"=1 =2 =3 =4 +[negate[]]\">>\n** <<.inline-operator-example \"=1.2 =2.4 =3.6 =4.8 +[trunc[]]\">>\n** <<.inline-operator-example \"=1.2 =2.4 =3.6 =4.8 +[round[]]\">>\n* ''Binary operators'' apply an operation and operand to each number in the input list (e.g. add, multiply, remainder) \n** <<.inline-operator-example \"=1 =2 =3 =4 +[add[3]]\">>\n** <<.inline-operator-example \"=1 =2 =3 =4 +[multiply[8]]\">>\n* ''Reducing operators'' apply an operation to all of the numbers in the input list, returning a single result (e.g. sum, product)\n** <<.inline-operator-example \"=1 =2 =3 =4 +[sum[]]\">>\n** <<.inline-operator-example \"=1 =2 =3 =4 +[product[]]\">>\n\nOperators can be combined:\n\n* <<.inline-operator-example \"[[355]divide[113]fixed[5]]\">>\n* <<.inline-operator-example \"[range[100]sum[]divide[100]]\">>\n* <<.inline-operator-example \"[tag[HelloThere]get[text]length[]sum[]]\">>\n\nComplex operations will sometimes need to be split up into separate filters. For example, to compute the average length of the text field of tiddlers tagged \"~HelloThere\":\n\n<$macrocall $name='wikitext-example-without-html'\nsrc=\"\"\"<$set name=\"number-of-tiddlers\" value={{{ [tag[HelloThere]count[]] }}}>\nAverage length of <$text text=<<number-of-tiddlers>>/> tiddlers tagged <<tag \"HelloThere\">>: <$text text={{{ [tag[HelloThere]get[text]length[]sum[]divide<number-of-tiddlers>fixed[3]] }}}/>\n</$set>\"\"\" />\n\n<<list-links \"[tag[Mathematics Operators]]\">>\n"
},
"abs Operator": {
"title": "abs Operator",
"caption": "abs",
"created": "20190611174137960",
"modified": "20190611174208327",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "the absolute value of the input numbers",
"op-purpose": "calculate the absolute value of a list of numbers",
"tags": "[[Unary Mathematics Operators]] [[Filter Operators]] [[Mathematics Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.20\">> See [[Mathematics Operators]] for an overview.\n\n<<.operator-examples \"abs\">>\n"
},
"add Operator": {
"title": "add Operator",
"caption": "add",
"created": "20190206140446821",
"modified": "20190611125053329",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "the input as numbers, but with <<.place N>> added to each one",
"op-parameter": "a number",
"op-parameter-name": "N",
"op-purpose": "treating each input title as a number, add to each the numeric value of the operand",
"tags": "[[Filter Operators]] [[Mathematics Operators]] [[Binary Mathematics Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.20\">> See [[Mathematics Operators]] for an overview.\n\n<<.operator-examples \"add\">>\n"
},
"addprefix Operator": {
"title": "addprefix Operator",
"created": "20140410103123179",
"modified": "20150203181822000",
"tags": "[[Filter Operators]] [[String Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "addprefix",
"op-purpose": "extend each input title with a prefix",
"op-input": "a [[selection of titles|Title Selection]]",
"op-parameter": "a string of characters",
"op-parameter-name": "S",
"op-output": "the input, but with <<.place S>> added to the start of each title",
"text": "<<.operator-examples \"addprefix\">>\n"
},
"addsuffix Operator": {
"title": "addsuffix Operator",
"created": "20140828133830424",
"modified": "20150203183207000",
"tags": "[[Filter Operators]] [[String Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "addsuffix",
"op-purpose": "extend each input title with a suffix",
"op-input": "a [[selection of titles|Title Selection]]",
"op-parameter": "a string of characters",
"op-parameter-name": "S",
"op-output": "the input, but with <<.place S>> added to the end of each title",
"text": "<<.operator-examples \"addsuffix\">>\n"
},
"after Operator": {
"title": "after Operator",
"created": "20140512103123179",
"modified": "20150203183205000",
"tags": "[[Filter Operators]] [[Order Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "after",
"op-purpose": "find which input title follows a specified one",
"op-input": "a [[selection of titles|Title Selection]]",
"op-parameter": "one of those titles",
"op-parameter-name": "T",
"op-output": "the title that immediately follows <<.place T>> in the input",
"text": "If <<.place T>> is not present in the input, or is the last title there, then the output is empty.\n\n<<.operator-examples \"after\">>\n"
},
"all Operator": {
"title": "all Operator",
"caption": "all",
"created": "20140410103123179",
"modified": "20161128185445034",
"op-input": "ignored, unless the parameter is empty",
"op-output": "the titles that belong to all the specified categories",
"op-parameter": "zero or more categories",
"op-purpose": "find all titles of a fundamental category",
"tags": "[[Filter Operators]] [[Common Operators]] [[Selection Constructors]]",
"type": "text/vnd.tiddlywiki",
"text": "The parameter specifies zero or more fundamental categories using the following syntax:\n\n<$railroad text=\"\"\"\n[{: (\"current\" | \"missing\" |: \"orphans\" | \"shadows\" | \"tags\" | \"tiddlers\" ) +\"+\" }]\n\"\"\"/>\n\n|!Category |!Members |!Sorted |\n|^`current` |just the [[current tiddler|Current Tiddler]] |^-- |\n|^`missing` |all non-existent tiddlers to which there is at least one [[hard link|Hard and Soft Links]] |^no |\n|^`orphans` |all tiddlers to which there are <<.em no>> hard links |^by title |\n|^`shadows` |all the [[shadow tiddlers|ShadowTiddlers]] that exist, including any that have been overridden with non-shadow tiddlers |^no |\n|^`tags` |all the tags in use on non-shadow tiddlers |no |\n|^`tiddlers` |all the non-shadow tiddlers that exist |no |\n\nIf the parameter specifies more than one category, they are processed from left to right. The overall output is initially empty, and each category's output is [[dominantly appended|Dominant Append]] to it in turn. Unrecognised categories contribute nothing to the output.\n\nAs a special case, if the parameter is empty, the output is simply a copy of the input. This can be useful when the parameter is [[soft|Filter Parameter]].\n\nThe <<.olink is>> operator is similar, but its scope is restricted to its input.\n\n<<.operator-examples \"all\">>\n"
},
"allafter Operator": {
"title": "allafter Operator",
"caption": "allafter",
"created": "20151017145021839",
"modified": "20151108051523860",
"op-input": "a list of items",
"op-output": "all items after the marker",
"op-parameter": "the list item to be used as a marker",
"op-parameter-name": "marker",
"op-purpose": "discard all items except those after the marker",
"op-suffix": "specifying a suffix ('include') will include the marker in the output",
"tags": "[[Filter Operators]] [[Order Operators]] [[Listops Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-examples \"allafter\">>\n"
},
"allbefore Operator": {
"title": "allbefore Operator",
"caption": "allbefore",
"created": "20151017145131857",
"modified": "20151108051507578",
"op-input": "a list of items",
"op-output": "all items before the marker",
"op-parameter": "the list item to be used as a marker",
"op-parameter-name": "marker",
"op-purpose": "discard all items except those before the marker",
"op-suffix": "specifying a suffix ('include') will include the marker in the output",
"tags": "[[Filter Operators]] [[Order Operators]] [[Listops Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-examples \"allbefore\">>\n"
},
"append Operator": {
"title": "append Operator",
"caption": "append",
"created": "20151017145358368",
"modified": "20151108051540981",
"op-input": "a list of items",
"op-neg-output": "a list with items appended from the tail of the operand array",
"op-output": "a list with items appended from the head of the operand array",
"op-parameter": "the array of items to be appended to the tail of the list",
"op-parameter-name": "list",
"op-purpose": "append a range of items from an array to the list",
"op-suffix": "an integer N, defaulting to all",
"tags": "[[Filter Operators]] [[Order Operators]] [[Listops Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-examples \"append\">>\n"
},
"backlinks Operator": {
"title": "backlinks Operator",
"created": "20140410103123179",
"modified": "20150203183356000",
"tags": "[[Filter Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "backlinks",
"op-purpose": "find the titles that link to each input title",
"op-input": "a [[selection of titles|Title Selection]]",
"op-parameter": "none",
"op-output": "any non-[[system|SystemTiddlers]] titles that contain [[hard links|Hard and Soft Links]] to the input titles",
"text": "Each input title is processed in turn. The corresponding tiddler's list of backlinks is generated, sorted alphabetically by title, and then [[dominantly appended|Dominant Append]] to the operator's overall output.\n\n<<.operator-examples \"backlinks\">>\n"
},
"before Operator": {
"title": "before Operator",
"created": "20140512103123179",
"modified": "20150203191918000",
"tags": "[[Filter Operators]] [[Order Operators]]",
"caption": "before",
"type": "text/vnd.tiddlywiki",
"op-purpose": "find which input title precedes a specified one",
"op-input": "a [[selection of titles|Title Selection]]",
"op-parameter": "one of those titles",
"op-parameter-name": "T",
"op-output": "the title that immediately precedes <<.place T>> in the input",
"text": "If <<.place T>> is not present in the input, or is the first title there, then the output is empty.\n\n<<.operator-examples \"before\">>\n"
},
"bf Operator": {
"title": "bf Operator",
"created": "20140410103123179",
"modified": "20150203183738000",
"tags": "[[Filter Operators]] [[Order Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "bf",
"op-purpose": "same as <<.olink rest>>"
},
"butfirst Operator": {
"title": "butfirst Operator",
"created": "20140410103123179",
"modified": "20150203183733000",
"tags": "[[Filter Operators]] [[Order Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "butfirst",
"op-purpose": "same as <<.olink rest>>"
},
"butlast Operator": {
"title": "butlast Operator",
"created": "20140410103123179",
"modified": "20150203191930000",
"tags": "[[Filter Operators]] [[Order Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "butlast",
"op-purpose": "discard the last <<.place N>> input titles",
"op-input": "a [[selection of titles|Title Selection]]",
"op-parameter": "an integer, defaulting to 1",
"op-parameter-name": "N",
"op-output": "all but the last <<.place N>> input titles",
"text": "<<.operator-examples \"butlast\">>\n"
},
"ceil Operator": {
"title": "ceil Operator",
"caption": "ceil",
"created": "20190611174247845",
"modified": "20190611174443899",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "rounds each of the input numbers up to the next largest integer",
"op-purpose": "rounds a list of numbers up to the next largest integer",
"tags": "[[Unary Mathematics Operators]] [[Filter Operators]] [[Mathematics Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.20\">> See [[Mathematics Operators]] for an overview.\n\n<<.operator-examples \"ceil\">>\n"
},
"commands Operator": {
"title": "commands Operator",
"created": "20140410103123179",
"modified": "20150203184154000",
"tags": "[[Filter Operators]] [[Special Operators]] [[Selection Constructors]]",
"type": "text/vnd.tiddlywiki",
"caption": "commands",
"op-purpose": "select the titles of all the Node.js commands",
"op-input": "ignored",
"op-parameter": "none",
"op-output": "the [[command words|Commands]] that can be given to [[TiddlyWiki on Node.js]]",
"text": "<<.operator-examples \"commands\">>\n"
},
"contains Operator": {
"title": "contains Operator",
"caption": "contains",
"created": "20180815124349784",
"modified": "20180815124607101",
"op-input": "a [[selection of titles|Title Selection]]",
"op-neg-output": "those input tiddlers in which the list field <<.place F>> does <<.em not>> contain the value <<.place S>>",
"op-output": "those input tiddlers in which the list field <<.place F>> contains the value <<.place S>>",
"op-parameter": "a possible value to be found in list field <<.place F>>",
"op-parameter-name": "S",
"op-purpose": "filter the input by searching list fields for a value",
"op-suffix": "the name of a [[field|TiddlerFields]]",
"op-suffix-name": "F",
"tags": "[[Filter Operators]] [[Field Operators]] [[Negatable Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-examples \"contains\">>\n"
},
"count Operator": {
"title": "count Operator",
"caption": "count",
"created": "20170208200553517",
"modified": "20170208200900081",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "a new list containing the number of items in the input list as a decimal string",
"op-purpose": "count the number of entries in a list",
"tags": "[[Filter Operators]] [[Group Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "The number of the entries in the input list is counted and a decimal representation returned as a single string.\n\n<<.operator-examples \"count\">>\n"
},
"days Operator": {
"title": "days Operator",
"tags": "[[Filter Operators]] [[Date Operators]] [[Negatable Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "days",
"op-input": "a [[selection of titles|Title Selection]]",
"op-neg-output": "those input tiddlers in which field <<.place F>> is at least <<.place D>> days in the { future | past }",
"op-output": "those input tiddlers in which field <<.place F>> is <<.place D>> days in the { future | past } or any time { before | after } that, including { past | future }",
"op-parameter": "a { positive | negative } number of days, defaulting to 0",
"op-parameter-name": "D",
"op-purpose": "filter the input by date",
"op-suffix": "the name of a [[date field|Date Fields]], defaulting to <<.field modified>>",
"op-suffix-name": "F",
"text": "Select tiddlers where a specified date field (default \"modified\") is within a specified date range. Time portion is ignored.\n\n<<.operator-examples \"days\">>\n"
},
"decodehtml Operator": {
"title": "decodehtml Operator",
"caption": "decodehtml",
"created": "20161017152925704",
"modified": "20161017152951209",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "the input with HTML decoding applied",
"op-parameter": "",
"op-parameter-name": "",
"op-purpose": "apply HTML decoding to a string",
"tags": "[[Filter Operators]] [[String Operators]]",
"type": "text/vnd.tiddlywiki",
"from-version": "5.1.14",
"text": "\"HTML decoding\" means replacing HTML entities that represent special characters with that character:\n\n* `&` replaced with `&`\n* ` ` replaced with ` ` (non breaking space)\n* `<` replaced with `<`\n* `>` replaced with `>`\n* `"` replaced with `\"`\n\n<<.operator-examples \"decodehtml\">>\n"
},
"decodeuri Operator": {
"title": "decodeuri Operator",
"caption": "decodeuri",
"created": "20161017152854460",
"modified": "20161017152914038",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "the input with URI decoding applied",
"op-parameter": "",
"op-parameter-name": "",
"op-purpose": "apply URI decoding to a string",
"tags": "[[Filter Operators]] [[String Operators]]",
"type": "text/vnd.tiddlywiki",
"from-version": "5.1.14",
"text": "See Mozilla Developer Network for details of the [[decodeURI|https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/decodeURI]] operation.\n\n<<.operator-examples \"decodeuri\">>\n"
},
"decodeuricomponent Operator": {
"title": "decodeuricomponent Operator",
"caption": "decodeuricomponent",
"created": "20161017152454726",
"modified": "20161017152630625",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "the input with URI component decoding applied",
"op-parameter": "",
"op-parameter-name": "",
"op-purpose": "apply URI component decoding to a string",
"tags": "[[Filter Operators]] [[String Operators]]",
"type": "text/vnd.tiddlywiki",
"from-version": "5.1.14",
"text": "See Mozilla Developer Network for details of the [[decodeURIComponent|https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/decodeURIComponent]] operation.\n\n<<.operator-examples \"decodeuricomponent\">>\n"
},
"divide Operator": {
"title": "divide Operator",
"caption": "divide",
"created": "20190611125839100",
"modified": "20190611125922960",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "the input as numbers, but with each one divided by <<.place N>>",
"op-parameter": "a number",
"op-parameter-name": "N",
"op-purpose": "treating each input title as a number, divide them by the numeric value of the operand",
"tags": "[[Filter Operators]] [[Mathematics Operators]] [[Binary Mathematics Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.20\">> See [[Mathematics Operators]] for an overview.\n\n<<.operator-examples \"divide\">>\n"
},
"each Operator": {
"title": "each Operator",
"created": "20140410103123179",
"modified": "20170103175939836",
"tags": "[[Filter Operators]] [[Group Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "each",
"op-purpose": "select one of each group of input titles by field",
"op-input": "a [[selection of titles|Title Selection]]",
"op-suffix": "optionally, `list-item` or `value`",
"op-parameter": "the name of a [[field|TiddlerFields]], defaulting to <<.field title>>",
"op-parameter-name": "F",
"op-output": "a selection containing the first input title encountered for each distinct value of field <<.place F>>",
"text": "Each input title is processed in turn. The value of field <<.place F>> in the corresponding tiddler is examined.\n\n;each\n:As long as the value of the field is unique (i.e. has not been encountered before), the title is appended to the output.\n;each:list-item\n:The value is treated as a [[title list|Title List]]. Each title in the list considered in turn. If it has not been encountered before, it is appended to the output.\n;each:value\n:As long as the title is unique it is appended to the output whether or not the corresponding tiddler exists.\n\nIf a tiddler does not contain field <<.place F>>, it is treated as if the value of the field were empty.\n\n<<.operator-examples \"each\">>\n"
},
"eachday Operator": {
"title": "eachday Operator",
"created": "20140410103123179",
"modified": "20150210161620000",
"tags": "[[Filter Operators]] [[Group Operators]] [[Date Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "eachday",
"op-purpose": "select one of each group of input titles by date",
"op-input": "a [[selection of titles|Title Selection]]",
"op-parameter": "the name of a [[date field|Date Fields]], defaulting to <<.field modified>>",
"op-parameter-name": "F",
"op-output": "a selection containing the first input title encountered for each distinct value (ignoring times of day) of field <<.place F>>",
"text": "Each input title is processed in turn. The value of field <<.place F>> in the corresponding tiddler is examined, and as long as this indicates a date that has not been encountered before, the title is appended to the output.\n\nIf a tiddler doesn't contain field <<.place F>>, it contributes nothing to the output.\n\n<<.operator-examples \"eachday\">>\n"
},
"editiondescription Operator": {
"title": "editiondescription Operator",
"created": "20150111145738451",
"modified": "20150203184528000",
"tags": "[[Filter Operators]] [[Special Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "editiondescription",
"op-purpose": "select the descriptions of the input editions",
"op-input": "a [[selection|Title Selection]] of edition names",
"op-parameter": "none",
"op-output": "the description string of each edition in the input",
"text": "Each input title is processed in turn, ignoring any that is not the name of a ~TiddlyWiki edition.\n\n<<.node-only-operator>>\n"
},
"editions Operator": {
"title": "editions Operator",
"created": "20150111145738451",
"modified": "20150203184604000",
"tags": "[[Filter Operators]] [[Special Operators]] [[Selection Constructors]]",
"type": "text/vnd.tiddlywiki",
"caption": "editions",
"op-purpose": "select the names of all the ~TiddlyWiki editions",
"op-input": "ignored",
"op-parameter": "none",
"op-output": "the name of each ~TiddlyWiki edition, in alphabetical order",
"text": "<<.node-only-operator>>\n"
},
"else Operator": {
"title": "else Operator",
"caption": "else",
"created": "20190802113024942",
"modified": "20190802113919945",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "the original input titles unless empty, in which case return a list with the single entry <<.place E>>",
"op-parameter": "a string",
"op-parameter-name": "E",
"op-purpose": "if the list of input titles is empty then return a list consisting of a single constant string, otherwise return the original titles",
"tags": "[[Conditional Operators]] [[Filter Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.20\">> See [[Conditional Operators]] for an overview.\n\n<<.operator-examples \"else\">>\n"
},
"encodehtml Operator": {
"title": "encodehtml Operator",
"caption": "encodehtml",
"created": "20161017152953211",
"modified": "20161017153015687",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "the input with HTML encoding applied",
"op-parameter": "",
"op-parameter-name": "",
"op-purpose": "apply HTML encoding to a string",
"tags": "[[Filter Operators]] [[String Operators]]",
"type": "text/vnd.tiddlywiki",
"from-version": "5.1.14",
"text": "\"HTML encoding\" means replacing special HTML characters with the corresponding HTML entity:\n\n* `&` replaced with `&`\n* `<` replaced with `<`\n* `>` replaced with `>`\n* `\"` replaced with `"`\n\n<<.operator-examples \"encodehtml\">>\n"
},
"encodeuri Operator": {
"title": "encodeuri Operator",
"caption": "encodeuri",
"created": "20161017152827112",
"modified": "20161017152845585",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "the input with URI encoding applied",
"op-parameter": "",
"op-parameter-name": "",
"op-purpose": "apply URI encoding to a string",
"tags": "[[Filter Operators]] [[String Operators]]",
"type": "text/vnd.tiddlywiki",
"from-version": "5.1.14",
"text": "See Mozilla Developer Network for details of the [[encodeURI|https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURI]] operation.\n\n<<.operator-examples \"encodeuri\">>\n"
},
"encodeuricomponent Operator": {
"title": "encodeuricomponent Operator",
"caption": "encodeuricomponent",
"created": "20161017152747386",
"modified": "20161017152809900",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "the input with URI component encoding applied",
"op-parameter": "",
"op-parameter-name": "",
"op-purpose": "apply URI component encoding to a string",
"tags": "[[Filter Operators]] [[String Operators]]",
"type": "text/vnd.tiddlywiki",
"from-version": "5.1.14",
"text": "See Mozilla Developer Network for details of the [[encodeURIComponent|https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURIComponent]] operation.\n\n<<.operator-examples \"encodeuricomponent\">>\n"
},
"enlist Operator": {
"title": "enlist Operator",
"caption": "enlist",
"created": "20170221144241063",
"modified": "20190610165246154",
"op-input": "ignored",
"op-neg-input": "a [[selection of titles|Title Selection]]",
"op-neg-output": "those input titles that are <<.em not>> listed in <<.place L>>",
"op-output": "the titles stored as a [[title list|Title List]] at <<.place L>>",
"op-parameter": "a [[title list|Title List]]",
"op-parameter-name": "L",
"op-purpose": "select titles from the operand interpreted as a [[title list|Title List]]",
"op-suffix": "<<.from-version \"5.1.20\">> `dedupe` (the default) to remove duplicates, `raw` to leave duplicates untouched",
"op-suffix-name": "D",
"tags": "[[Filter Operators]] [[Field Operators]] [[Selection Constructors]] [[Negatable Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.tip \" Literal filter operands cannot contain square brackets but you can work around the issue by using a variable:\">>\n\n```\n<$set name=\"myList\" value=\"first [[second with a space]] third\">\n<$list filter=\"[enlist<myList>]\">\n...\n```\n\n\n<<.operator-examples \"enlist\">>\n"
},
"escapecss Operator": {
"title": "escapecss Operator",
"caption": "escapecss",
"created": "20190629072855199",
"modified": "20190629072855199",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "the input with CSS escaping applied through the CSS.escape() method",
"op-parameter": "",
"op-parameter-name": "",
"op-purpose": "apply CSS escaping to a selection of titles through the CSS.escape() method / operation",
"tags": "[[Filter Operators]] [[String Operators]]",
"type": "text/vnd.tiddlywiki",
"from-version": "5.1.20",
"text": "See Mozilla Developer Network for details of the [[CSS.escape()|https://developer.mozilla.org/docs/Web/API/CSS/escape]] operation.\n\n<<.operator-examples \"escapecss\">>\n"
},
"escaperegexp Operator": {
"title": "escaperegexp Operator",
"caption": "escaperegexp",
"created": "20161017153116372",
"modified": "20161017153230962",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "the input with escaping applied to special regular expression characters",
"op-parameter": "",
"op-parameter-name": "",
"op-purpose": "escape special characters used in regular expressions",
"tags": "[[Filter Operators]] [[String Operators]]",
"type": "text/vnd.tiddlywiki",
"from-version": "5.1.14",
"text": "See Mozilla Developer Network for details of the [[regular expression syntax|https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/RegExp]].\n\n<<.operator-examples \"escaperegexp\">>\n"
},
"abs Operator (Examples)": {
"title": "abs Operator (Examples)",
"created": "20190611174214039",
"modified": "20190611174245197",
"tags": "[[abs Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[[-2000]abs[]]\">>\n<<.operator-example 2 \"=-1 =-2 =3 =4 =5 +[abs[]]\">>\n"
},
"add Operator (Examples)": {
"title": "add Operator (Examples)",
"created": "20190611125225770",
"modified": "20190611125525466",
"tags": "[[add Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[[23]add[19]]\">>\n<<.operator-example 2 \"=1 =2 =3 =4 +[add[4]]\">>\n"
},
"addprefix Operator (Examples)": {
"title": "addprefix Operator (Examples)",
"created": "20150118132851000",
"modified": "20150118183116000",
"tags": "[[addprefix Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"Cat Garden [[Favourite Armchair]] +[addprefix[My ]]\">>\n"
},
"addsuffix Operator (Examples)": {
"title": "addsuffix Operator (Examples)",
"created": "20150118134542000",
"modified": "20150118183121000",
"tags": "[[addsuffix Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[[London]addsuffix[ Underground]]\">>\n"
},
"after Operator (Examples)": {
"title": "after Operator (Examples)",
"created": "20150118134611000",
"modified": "20150118183126000",
"tags": "[[after Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.using-days-of-week>> The [[Thursday]] tiddler shows a further example.\n\n<<.operator-example 1 \"[list[Days of the Week]after[Monday]]\">>\n<<.operator-example 2 \"[list[Days of the Week]after[Sunday]]\">>\n"
},
"all Operator (Examples)": {
"title": "all Operator (Examples)",
"created": "20150118134646000",
"modified": "20150118183130000",
"tags": "[[all Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[all[shadows]]\">>\n<<.operator-example 2 \"[all[shadows+tiddlers]]\">>\n<<.operator-example 3 \"[all[tiddlers+shadows]]\">>\n<<.operator-example 4 \"[all[orphans+missing+current]]\">>\n<<.operator-example 5 \"[all[current]]\">>\n<<.operator-example 6 \"[all[current]tag[Operator Examples]]\">>\n<<.operator-example 7 \"[all[current]tag[Recipes]]\">>\n<<.operator-example 8 \"Monday Thursday +[all[]]\">>\n"
},
"allafter Operator (Examples)": {
"title": "allafter Operator (Examples)",
"created": "20151022123929297",
"modified": "20151108080543606",
"tags": "[[Operator Examples]] [[allafter Operator]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.using-days-of-week>>\n\n<<.operator-example 1 \"[list[Days of the Week]] +[allafter[Wednesday]]\">>\n<<.operator-example 2 \"[list[Days of the Week]] +[allafter:include[Wednesday]]\">>\n"
},
"allbefore Operator (Examples)": {
"title": "allbefore Operator (Examples)",
"created": "20151017150902487",
"modified": "20151108051438263",
"tags": "[[Operator Examples]] [[allbefore Operator]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.using-days-of-week>>\n\n<<.operator-example 1 \"[list[Days of the Week]allbefore[Wednesday]]\">>\n<<.operator-example 2 \"[list[Days of the Week]allbefore:include[Wednesday]]\">>\n"
},
"append Operator (Examples)": {
"title": "append Operator (Examples)",
"created": "20151017150942725",
"modified": "20151108051557748",
"tags": "[[Operator Examples]] [[append Operator]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.using-days-of-week>>\n\n<<.operator-example 1 \"[list[Days of the Week]append[Tomorrow]]\">>\n<<.operator-example 2 \"[list[Days of the Week]append[Yesterday Today Tomorrow]]\">>\n\n;Append the first 4 short days of the week to our list\n\n<<.operator-example 3 \"[list[Days of the Week]append:4{Days of the Week!!short}]\">>\n"
},
"backlinks Operator (Examples)": {
"title": "backlinks Operator (Examples)",
"created": "20150118134611000",
"modified": "20150118183135000",
"tags": "[[backlinks Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[[HelloThere]backlinks[]]\">>\n<<.operator-example 2 \"[tag[TableOfContents]backlinks[]]\" \"tiddlers that link to tiddlers tagged [[TableOfContents]]\">>\n<<.operator-example 3 \"[all[current]backlinks[]]\" \"tiddlers that link to this one\">>\n"
},
"before Operator (Examples)": {
"title": "before Operator (Examples)",
"created": "20150118134611000",
"modified": "20150118183139000",
"tags": "[[before Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.using-days-of-week>> The [[Thursday]] tiddler shows a further example.\n\n<<.operator-example 1 \"[list[Days of the Week]before[Saturday]]\">>\n<<.operator-example 2 \"[list[Days of the Week]before[Monday]]\">>\n"
},
"butlast Operator (Examples)": {
"title": "butlast Operator (Examples)",
"created": "20150118134611000",
"modified": "20150118183143000",
"tags": "[[butlast Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.using-days-of-week>>\n\n<<.operator-example 1 \"[list[Days of the Week]butlast[]]\">>\n<<.operator-example 2 \"[list[Days of the Week]butlast[2]]\">>\n<<.operator-example 3 \"A B C D E F G H I J K L M +[butlast[7]]\">>\n"
},
"ceil Operator (Examples)": {
"title": "ceil Operator (Examples)",
"created": "20190611174446781",
"modified": "20190611174554787",
"tags": "[[ceil Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[[1.6]ceil[]]\">>\n<<.operator-example 2 \"[[-1.6]ceil[]]\">>\n<<.operator-example 3 \"=-1.2 =-2.4 =3.6 =4.8 =5.1 +[ceil[]]\">>\n"
},
"commands Operator (Examples)": {
"title": "commands Operator (Examples)",
"created": "20150118134611000",
"modified": "20150118183148000",
"tags": "[[commands Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[commands[]]\">>\n"
},
"contains Operator (Examples)": {
"title": "contains Operator (Examples)",
"created": "20180815124630157",
"modified": "20180815124919662",
"tags": "[[contains Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[contains:tags[HelloThere]]\" \"equivalent to [tag[HelloThere]]\">>\n<<.operator-example 2 \"[[$:/StoryList]contains[HelloThere]]\" \"checks whether the tiddler 'HelloThere' is currently displayed in the story river\">>\n"
},
"count Operator (Examples)": {
"title": "count Operator (Examples)",
"created": "20170208200912602",
"modified": "20170208201020488",
"tags": "[[each Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[tag[HelloThere]count[]]\">>\n"
},
"days Operator (Examples)": {
"title": "days Operator (Examples)",
"tags": "[[Operator Examples]] [[days Operator]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[days[-14]]\" \"tiddlers modified within the last 14 days\">>\n<<.operator-example 2 \"[!days:created[-800]]\" \"tiddlers created more than 800 days ago\">>\nThe filter can be used to highlight new items in a list. For example:\n<$macrocall\n $name=\"wikitext-example-without-html\" src=\n\"\"\"\n<ul>\n <$list filter=\"[tag[ReleaseNotes]!<currentTiddler>!sort[modified]]\">\n <li>\n <$link><$view field=\"title\"/></$link>\n <$list filter=\"[<currentTiddler>days[-180]]\"> @@color:red;^^new^^@@</$list>\n <$list filter=\"[<currentTiddler>days[-500]!days[-180]]\"> @@color:black;^^recent^^@@</$list>\n </li>\n </$list>\n</ul>\n\"\"\"/>\n"
},
"decodehtml Operator (Examples)": {
"title": "decodehtml Operator (Examples)",
"created": "20161017154848886",
"modified": "20161017155350389",
"tags": "[[Operator Examples]] [[decodehtml Operator]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[[Title with < angle brackets >]] +[decodehtml[]]\">>\n<<.operator-example 2 \"[[Title with an & ampersand]] +[decodehtml[]]\">>\n"
},
"decodeuri Operator (Examples)": {
"title": "decodeuri Operator (Examples)",
"created": "20161017154558573",
"modified": "20161017155350399",
"tags": "[[Operator Examples]] [[decodeuri Operator]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[[Title%20with%20Space]] +[decodeuri[]]\">>\n<<.operator-example 2 \"[[Title%20with%20Space]] [[Another%20title%20with%20Space]] +[decodeuri[]]\">>\n"
},
"decodeuricomponent Operator (Examples)": {
"title": "decodeuricomponent Operator (Examples)",
"created": "20161017153616709",
"modified": "20161017155350393",
"tags": "[[Operator Examples]] [[decodeuricomponent Operator]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[[Title%20with%20Space]] +[decodeuricomponent[]]\">>\n<<.operator-example 2 \"[[Title%20with%20Space]] [[Another%20title%20with%20Space]] +[decodeuricomponent[]]\">>\n"
},
"divide Operator (Examples)": {
"title": "divide Operator (Examples)",
"created": "20190611125929173",
"modified": "20190611130146154",
"tags": "[[divide Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[[355]divide[113]]\">>\n<<.operator-example 2 \"=1 =2 =3 =4 +[divide[2]]\">>\n"
},
"each Operator (Examples)": {
"title": "each Operator (Examples)",
"created": "20150118134611000",
"modified": "20150118183152000",
"tags": "[[each Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[each[color]]\">>\n<<.operator-example 2 \"[sort[title]each[type]]\" \"the alphabetically first tiddler of each type\">>\n<<.operator-example 3 \"[each:list-item[list]]\" \"all tiddlers listed anywhere in the core list field\">>\n<<.operator-example 4 \"[[Non existing]] [[GettingStarted]] +[each:value[]]\" \"Compare this to `+[each[]]` below\">>\n<<.operator-example 5 \"[[Non existing]] [[GettingStarted]] +[each[]]\" \"Compare this to `+[each:value[]]` above\">>\n\nFor an example of using the <<.op each>> operator to generate a two-tier list of groups and members, see [[GroupedLists]].\n"
},
"eachday Operator (Examples)": {
"title": "eachday Operator (Examples)",
"created": "20150118134611000",
"modified": "20150118183156000",
"tags": "[[eachday Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[eachday[created]]\" \"the first tiddler created on each day\">>\n\nFor an example of using the <<.op eachday>> operator to generate a two-tier list of groups and members, see [[GroupedLists]].\n"
},
"else Operator (Examples)": {
"title": "else Operator (Examples)",
"created": "20190802113334259",
"modified": "20190802113551566",
"tags": "[[else Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[[HelloThereMissing]is[missing]else[yes]]\">>\n<<.operator-example 2 \"[[HelloThere]is[missing]else[yes]]\">>\n\n"
},
"encodehtml Operator (Examples)": {
"title": "encodehtml Operator (Examples)",
"created": "20161017154758523",
"modified": "20161017155350391",
"tags": "[[Operator Examples]] [[encodehtml Operator]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[[Title with <angle brackets>]] +[encodehtml[]]\">>\n<<.operator-example 2 \"[[Title with an & ampersand]] +[encodehtml[]]\">>\n"
},
"encodeuri Operator (Examples)": {
"title": "encodeuri Operator (Examples)",
"created": "20161017154702282",
"modified": "20161017155350397",
"tags": "[[Operator Examples]] [[encodeuri Operator]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[[Title with Space]] +[encodeuri[]]\">>\n<<.operator-example 2 \"[[Title with Space]] [[Another title with Space]] +[encodeuri[]]\">>\n"
},
"encodeuricomponent Operator (Examples)": {
"title": "encodeuricomponent Operator (Examples)",
"created": "20161017154451373",
"modified": "20161017155350395",
"tags": "[[Operator Examples]] [[encodeuricomponent Operator]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[[Title with Space]] +[encodeuricomponent[]]\">>\n<<.operator-example 2 \"[[Title with Space]] [[Another title with Space]] +[encodeuricomponent[]]\">>\n"
},
"enlist Operator (Examples)": {
"title": "enlist Operator (Examples)",
"created": "20170221144328467",
"modified": "20190610165309565",
"tags": "[[enlist Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[enlist[one two three]addsuffix[!]]\">>\n<<.operator-example 2 \"[enlist[one one one]]\">>\n<<.operator-example 3 \"[enlist:raw[one one one]]\">>\n<<.operator-example 4 \"[enlist{$:/StoryList!!list}]\">>\n"
},
"escapecss Operator (Examples)": {
"title": "escapecss Operator (Examples)",
"tags": "[[escapecss Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"created": "20190629072855199",
"modified": "20190629072855199",
"text": "<<.operator-example 1 \"[all[tiddlers]tag[Resources]escapecss[]]\">>\n"
},
"escaperegexp Operator (Examples)": {
"title": "escaperegexp Operator (Examples)",
"created": "20161017155417183",
"modified": "20161017155520892",
"tags": "[[Operator Examples]] [[escaperegexp Operator]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"\"\"[[Title with dots . and dollars $]] +[escaperegexp[]]\"\"\">>\n"
},
"exponential Operator (Examples)": {
"title": "exponential Operator (Examples)",
"created": "20190611154509136",
"modified": "20190611154545304",
"tags": "[[exponential Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"123456789 +[exponential[4]]\">>\n<<.operator-example 2 \"123456789 +[exponential[13]]\">>\n<<.operator-example 3 \"1.23E23 +[exponential[90]]\">>\n"
},
"field Operator (Examples)": {
"title": "field Operator (Examples)",
"created": "20150118134611000",
"modified": "20150118183202000",
"tags": "[[field Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[field:author[JeremyRuston]]\" \"plugins authored by JeremyRuston\">>\n<<.operator-example 2 \"[plugin-type[theme]author[JeremyRuston]]\" \"themes authored by JeremyRuston\">>\n"
},
"fields Operator (Examples)": {
"title": "fields Operator (Examples)",
"created": "20150118134611000",
"modified": "20150118183206000",
"tags": "[[fields Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[[HelloThere]fields[]]\" \"fields of HelloThere\">>\n<<.operator-example 2 \"[tag[Common Operators]fields[]]\" \"fields of all tiddlers tagged as [[Common Operators]]\">>\n"
},
"first Operator (Examples)": {
"title": "first Operator (Examples)",
"created": "20150118134611000",
"modified": "20150118183210000",
"tags": "[[first Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.using-days-of-week>>\n\n<<.operator-example 1 \"[list[Days of the Week]first[]]\">>\n<<.operator-example 2 \"[list[Days of the Week]first[5]]\">>\n<<.operator-example 3 \"[tag[Filter Operators]!sort[title]first[]]\">>\n"
},
"fixed Operator (Examples)": {
"title": "fixed Operator (Examples)",
"created": "20190611150610846",
"modified": "20190611150743047",
"tags": "[[fixed Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"10.123456789 +[fixed[5]]\">>\n<<.operator-example 2 \"[[355]divide[113]fixed[7]]\">>\n"
},
"floor Operator (Examples)": {
"title": "floor Operator (Examples)",
"created": "20190613084453154",
"modified": "20190613084521199",
"tags": "[[floor Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[[1.6]floor[]]\">>\n<<.operator-example 2 \"[[-1.6]floor[]]\">>\n<<.operator-example 3 \"=-1.2 =-2.4 =3.6 =4.8 =5.1 +[floor[]]\">>\n"
},
"get Operator (Examples)": {
"title": "get Operator (Examples)",
"created": "20150118134611000",
"modified": "20150124201839000",
"tags": "[[get Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[all[current]get[draft.of]]\" \"the title of the tiddler of which the current tiddler is a draft\">>\n<<.operator-example 2 \"[get[tags]]\">>\n<<.operator-example 3 \"[each[tags]get[tags]]\">>\n"
},
"getindex Operator (Examples)": {
"title": "getindex Operator (Examples)",
"created": "20150203140000000",
"modified": "20170608150301791",
"tags": "[[getindex Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[[$:/palettes/Vanilla]getindex[background]]\" \"returns the value at index ''background'' of the [[DataTiddler|DataTiddlers]] [[$:/palettes/Vanilla]]\">>\n<<.operator-example 2 \"[all[shadows+tiddlers]tag[$:/tags/Palette]getindex[background]]\" \"returns all background colors defined in any of the ColourPalettes\">>"
},
"getvariable Operator (Examples)": {
"title": "getvariable Operator (Examples)",
"created": "20190330100101453",
"modified": "20190330100101453",
"tags": "[[getvariable Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[[currentTiddler]getvariable[]]\" \"returns the value of the variable ''currentTiddler''\">>\n"
},
"has Operator (Examples)": {
"title": "has Operator (Examples)",
"created": "20151111150157416",
"emptyfield": "",
"modified": "20151111150201093",
"tags": "[[has Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[has[color]]\">>\n<<.operator-example 2 \"[tag[Concepts]!has[modified]]\">>\n<<.operator-example 3 \"[has:field[emptyfield]]\">>\n<<.operator-example 4 \"[all[current]!has:field[doesntexist]]\">>"
},
"indexes Operator (Examples)": {
"title": "indexes Operator (Examples)",
"created": "20150119125815000",
"modified": "20150119191028000",
"tags": "[[indexes Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[{$:/palette}indexes[]sort[title]]\" \"all the colours defined in the current [[colour palette|ColourPalettes]]\">>\n<<.operator-example 2 \"[[$:/HistoryList]indexes[]]\" \"integer output because the [[history list|$:/HistoryList]] is an array\">>\n"
},
"is Operator (Examples)": {
"title": "is Operator (Examples)",
"created": "20150119133413000",
"modified": "20150119134652000",
"tags": "[[is Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[is[tag]]\">>\n<<.operator-example 2 \"[!is[tag]]\">>\n<<.operator-example 3 \"[all[shadows]!is[system]]\" \"shadow tiddlers that don't start with `$:/`\">>\n<<.operator-example 4 \"[is[system]tag[$:/tags/Stylesheet]]\" \"system stylesheets\">>\n<<.operator-example 5 \"[all[shadows]is[system]tag[$:/tags/Stylesheet]]\" \"shadow system stylesheets\">>\n<<.operator-example 6 \"[is[shadow]]\" \"overridden shadow tiddlers\">>\n<<.operator-example 7 \"[is[missing]]\" \"empty because its input contains only tiddlers that exist\">>\n"
},
"join Operator (Examples)": {
"title": "join Operator (Examples)",
"created": "20190613154634914",
"modified": "20190613154711864",
"tags": "[[join Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"a b c d e +[join[,]]\">>\n"
},
"jsonstringify Operator (Examples)": {
"title": "jsonstringify Operator (Examples)",
"created": "20171029155046637",
"modified": "20171029155227382",
"tags": "[[Operator Examples]] [[stringify Operator]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"\"\"[[Title with \"double quotes\" and single ' and \\backslash]] +[jsonstringify[]]\"\"\">>\n"
},
"last Operator (Examples)": {
"title": "last Operator (Examples)",
"created": "20150118134611000",
"modified": "20150119182151000",
"tags": "[[last Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.using-days-of-week>>\n\n<<.operator-example 1 \"[list[Days of the Week]last[]]\">>\n<<.operator-example 2 \"[list[Days of the Week]last[5]]\">>\n<<.operator-example 3 \"[tag[Concepts]!sort[title]last[3]]\">>\n"
},
"length Operator (Examples)": {
"title": "length Operator (Examples)",
"created": "20190613153325774",
"modified": "20190613153409962",
"tags": "[[length Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[[abc]length[]]\">>\n<<.operator-example 2 \"[tag[HelloThere]length[]]\">>\n"
},
"limit Operator (Examples)": {
"title": "limit Operator (Examples)",
"created": "20150118134611000",
"modified": "20150123214304000",
"tags": "[[limit Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[sort[modified]!limit[20]]\" \"the 20 most recently modified tiddlers\">>\n<<.operator-example 2 \"[has[created]sort[created]limit[10]]\" \"the oldest 10 tiddlers in the wiki\">>\n"
},
"links Operator (Examples)": {
"title": "links Operator (Examples)",
"created": "20150118134611000",
"modified": "20150124202748000",
"tags": "[[links Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[[HelloThere]links[]]\">>\n<<.operator-example 2 \"[all[current]links[]]\" \"tiddlers [[hard-linked|Hard and Soft Links]] from the current one\">>\n\nHere are some hard links:\n\n* HelloThere\n* [[Filter Operators]]\n* [[links Operator]]\n"
},
"list Operator (Examples)": {
"title": "list Operator (Examples)",
"created": "20150118134611000",
"modified": "20150123214445000",
"tags": "[[list Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.using-days-of-week>>\n\n<<.operator-example 1 \"[list[HelloThere]]\">>\n<<.operator-example 2 \"[list[Days of the Week!!short]]\">>\n"
},
"listed Operator (Examples)": {
"title": "listed Operator (Examples)",
"created": "20150118134611000",
"modified": "20150123214616000",
"tags": "[[listed Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[[HelloThere]listed[]]\">>\n<<.operator-example 2 \"[all[current]listed[my-special-list]]\">>\n"
},
"lookup Operator (Examples)": {
"title": "lookup Operator (Examples)",
"created": "20170907144257037",
"modified": "20170907144559822",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[all[shadows+tiddlers]tag[$:/tags/PageControls]lookup[$:/config/PageControlButtons/Visibility/]]\" \"Retrieve the visibility status of each page control button\">>\n<<.operator-example 2 \"[all[shadows+tiddlers]tag[$:/tags/PageControls]lookup:show[$:/config/PageControlButtons/Visibility/]]\" \"Retrieve the visibility status of each page control button, this time with a default value\">>\n"
},
"lowercase Operator (Examples)": {
"title": "lowercase Operator (Examples)",
"created": "20190613153824151",
"modified": "20190613153842330",
"tags": "[[lowercase Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[[Abc]lowercase[]]\">>\n<<.operator-example 2 \"[tag[HelloThere]lowercase[]]\">>\n"
},
"match Operator (Examples)": {
"title": "match Operator (Examples)",
"created": "20190731080350471",
"modified": "20190731080435966",
"tags": "[[match Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"a b c +[match[b]]\">>\n<<.operator-example 1 \"[match[HelloThere]]\">>\n"
},
"max Operator (Examples)": {
"title": "max Operator (Examples)",
"created": "20190611130905752",
"modified": "20190611130938471",
"tags": "[[max Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[[23]max[32]]\">>\n<<.operator-example 2 \"=1 =2 =3 =4 +[max[3]]\">>\n"
},
"maxall Operator (Examples)": {
"title": "maxall Operator (Examples)",
"created": "20190611160949615",
"modified": "20190611161010568",
"tags": "[[maxall Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"=1 =2 =3 =4 =5 +[maxall[]]\">>\n<<.operator-example 2 \"[tag[HelloThere]get[text]length[]maxall[]]\">>\n"
},
"min Operator (Examples)": {
"title": "min Operator (Examples)",
"created": "20190611131138259",
"modified": "20190611131149542",
"tags": "[[min Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[[23]min[32]]\">>\n<<.operator-example 2 \"=1 =2 =3 =4 +[min[3]]\">>\n"
},
"minall Operator (Examples)": {
"title": "minall Operator (Examples)",
"created": "20190611161051108",
"modified": "20190611161107239",
"tags": "[[minall Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"=1 =2 =3 =4 =5 +[minall[]]\">>\n<<.operator-example 2 \"[tag[HelloThere]get[text]length[]minall[]]\">>\n"
},
"minlength Operator (Examples)": {
"title": "minlength Operator (Examples)",
"created": "20161011074235805",
"modified": "20161011074235805",
"tags": "[[Operator Examples]] [[minlength Operator]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.using-days-of-week>>\n\n<<.operator-example 1 \"[list[Days of the Week]minlength[7]]\">>\n<<.operator-example 2 \"[list[Days of the Week]minlength[1]]\">>\n\n"
},
"modules Operator (Examples)": {
"title": "modules Operator (Examples)",
"created": "20150123221510000",
"modified": "20150123221534000",
"tags": "[[modules Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[[filteroperator]modules[]]\">>\n"
},
"moduletypes Operator (Examples)": {
"title": "moduletypes Operator (Examples)",
"created": "20150123221601000",
"modified": "20150123221623000",
"tags": "[[moduletypes Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[moduletypes[]]\">>\n"
},
"move Operator (Examples)": {
"title": "move Operator (Examples)",
"created": "20151022123633433",
"modified": "20151108051643871",
"tags": "[[Operator Examples]] [[move Operator]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.using-days-of-week>>\n\n<<.operator-example 1 \"[list[Days of the Week]] +[move[Wednesday]]\">>\n<<.operator-example 2 \"[list[Days of the Week]] +[move:-2[Wednesday]]\">>\n"
},
"multiply Operator (Examples)": {
"title": "multiply Operator (Examples)",
"created": "20190611125743568",
"modified": "20190611125757767",
"tags": "[[multiply Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[[23]multiply[19]]\">>\n<<.operator-example 2 \"=1 =2 =3 =4 +[multiply[4]]\">>\n"
},
"negate Operator (Examples)": {
"title": "negate Operator (Examples)",
"created": "20190611174040931",
"modified": "20190611174121059",
"tags": "[[negate Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[[-2000]negate[]]\">>\n<<.operator-example 2 \"=1 =2 =3 =4 =5 +[negate[]]\">>\n"
},
"next Operator (Examples)": {
"title": "next Operator (Examples)",
"created": "20150123221711000",
"modified": "20150123221834000",
"tags": "[[next Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.using-days-of-week>>\n\n<<.operator-example 1 \"[[Monday]next[Days of the Week]]\">>\n<<.operator-example 2 \"[[Sunday]next[Days of the Week]]\">>\n<<.operator-example 3 \"Tuesday Wednesday Thursday +[next[Days of the Week]]\">>\n"
},
"nsort Operator (Examples)": {
"title": "nsort Operator (Examples)",
"created": "20150123221921000",
"modified": "20150123222142000",
"tags": "[[nsort Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"10 010 1000 100 +[nsort[]]\">>\n<<.operator-example 2 \"10 010 ALPHA beta alpha 1000 100 +[nsort[]]\">>\n"
},
"nsortcs Operator (Examples)": {
"title": "nsortcs Operator (Examples)",
"created": "20150123222108000",
"modified": "20150123222139000",
"tags": "[[nsortcs Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"10 010 1000 100 +[nsortcs[]]\">>\n<<.operator-example 2 \"10 010 ALPHA beta alpha 1000 100 +[nsortcs[]]\">>\n"
},
"nth Operator (Examples)": {
"title": "nth Operator (Examples)",
"created": "20150118134611000",
"modified": "20150123222912000",
"tags": "[[nth Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.using-days-of-week>>\n\n<<.operator-example 1 \"[list[Days of the Week]nth[]]\">>\n<<.operator-example 2 \"[list[Days of the Week]nth[5]]\">>\n"
},
"plugintiddlers Operator (Examples)": {
"title": "plugintiddlers Operator (Examples)",
"created": "20150123223006000",
"modified": "20150123223023000",
"tags": "[[plugintiddlers Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[[$:/core]plugintiddlers[]]\">>\n\n"
},
"precision Operator (Examples)": {
"title": "precision Operator (Examples)",
"created": "20190611151444751",
"modified": "20190611154248537",
"tags": "[[precision Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"123456789 +[precision[3]]\">>\n<<.operator-example 2 \"123456789 +[precision[13]]\">>\n<<.operator-example 3 \"1.23E23 +[precision[90]]\">>\n"
},
"prefix Operator (Examples)": {
"title": "prefix Operator (Examples)",
"created": "20150123223129000",
"modified": "20150123223321000",
"tags": "[[prefix Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[tag[task]!prefix[Go]]\">>\n<<.operator-example 2 \"[prefix[$:/languages/]]\">>\n<<.operator-example 3 \"[prefix[$:/]]\" \"same as `[is[system]]`\">>\n"
},
"prepend Operator (Examples)": {
"title": "prepend Operator (Examples)",
"created": "20151017151508135",
"modified": "20151108051743531",
"tags": "[[Operator Examples]] [[prepend Operator]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.using-days-of-week>>\n\nThe operator may be used to prepend a number of items to the list.\n\n<<.operator-example 1 \"[list[Days of the Week]prepend[Yesterday Today Tomorrow]]\">>\n\nThe operand may list only items without spaces -- to include items with spaces, use a reference to an array e.g. prepend the last three short days of the week to the list\n\n<<.operator-example 2 \"[list[Days of the Week]!prepend:3{Days of the Week!!short}]\">>\n"
},
"previous Operator (Examples)": {
"title": "previous Operator (Examples)",
"created": "20150123221711000",
"modified": "20150123223422000",
"tags": "[[previous Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.using-days-of-week>>\n\n<<.operator-example 1 \"[[Wednesday]previous[Days of the Week]]\">>\n<<.operator-example 2 \"[[Monday]previous[Days of the Week]]\">>\n<<.operator-example 3 \"Tuesday Wednesday Thursday +[previous[Days of the Week]]\">>\n"
},
"product Operator (Examples)": {
"title": "product Operator (Examples)",
"created": "20190611160221390",
"modified": "20190611160243829",
"tags": "[[product Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"=1 =2 =3 =4 =5 +[product[]]\">>\n<<.operator-example 2 \"[tag[HelloThere]get[text]length[]product[]]\">>\n"
},
"putafter Operator (Examples)": {
"title": "putafter Operator (Examples)",
"created": "20151017151905558",
"modified": "20151108051825288",
"tags": "[[Operator Examples]] [[putafter Operator]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.using-days-of-week>>\n\n<<.operator-example 1 \"[list[Days of the Week]] +[putafter[Wednesday]]\">>\n<<.operator-example 2 \"[list[Days of the Week]] +[putafter:2[Tuesday]]\">>\n<<.operator-example 3 \"[list[Days of the Week]] [[Yesterday]] [[Today]] [[Tomorrow]] +[putafter:3[Tuesday]]\">>\n"
},
"putbefore Operator (Examples)": {
"title": "putbefore Operator (Examples)",
"created": "20151022142602628",
"modified": "20151108051906935",
"tags": "[[Operator Examples]] [[putbefore Operator]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.using-days-of-week>>\n\n<<.operator-example 1 \"[list[Days of the Week]] +[putbefore[Wednesday]]\">>\n<<.operator-example 2 \"[list[Days of the Week]] +[putbefore:2[Tuesday]]\">>\n<<.operator-example 3 \"[list[Days of the Week]] [[Yesterday]] [[Today]] [[Tomorrow]] +[putbefore:3[Tuesday]]\">>\n"
},
"putfirst Operator (Examples)": {
"title": "putfirst Operator (Examples)",
"created": "20151017152847899",
"modified": "20151108051943204",
"tags": "[[Operator Examples]] [[putfirst Operator]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.using-days-of-week>>\n\n<<.operator-example 1 \"[list[Days of the Week]] +[putfirst[]]\">>\n<<.operator-example 2 \"[list[Days of the Week]] +[putfirst:2[]]\">>\n<<.operator-example 3 \"[list[Days of the Week]] [[Yesterday]] [[Today]] [[Tomorrow]] +[putfirst:-2[]]\">>\n"
},
"putlast Operator (Examples)": {
"title": "putlast Operator (Examples)",
"created": "20151017153037776",
"modified": "20151108052020761",
"tags": "[[Operator Examples]] [[putlast Operator]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.using-days-of-week>>\n\n<<.operator-example 1 \"[list[Days of the Week]] +[putlast[]]\">>\n<<.operator-example 2 \"[list[Days of the Week]] +[putlast:2[]]\">>\n<<.operator-example 3 \"one two three [list[Days of the Week]] +[putlast:-3[]]\">>\n"
},
"regexp Operator (Examples)": {
"title": "regexp Operator (Examples)",
"created": "20150123221711000",
"modified": "20150123225347000",
"tags": "[[regexp Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.using-days-of-week>>\n\n<<.operator-example 1 \"[!is[system]regexp[Wiki]]\" \"non-system tiddlers with `Wiki` in their title\">>\n<<.operator-example 2 \"[!is[system]regexp[(?i)Wiki]]\" \"non-system tiddlers with `Wiki` in their title, ignoring case\">>\n<<.operator-example 3 \"[!is[system]regexp[Wiki(?i)]]\" \"same again\">>\n<<.operator-example 4 \"[regexp[(?i)\\.jpe?g$]]\" \"tiddlers with titles ending in `.jpg` or `.jpeg`, ignoring case\">>\n<<.operator-example 5 \"[regexp:created[^201408]]\" \"tiddlers created in August 2014\">>\n\nThe regular expression `[0-9]{2}` matches two consecutive digits. Because it contains square brackets, the way to use it with the <<.op regexp>> operator is via a [[variable|Variables]], as follows:\n\n<$macrocall\n$name=\"wikitext-example-without-html\"\nsrc=\"\"\"<$set name=\"digit-pattern\" value=\"[0-9]{2}\">\n<<list-links \"[regexp:title<digit-pattern>]\">>\n</$set>\"\"\"/>\n"
},
"remainder Operator (Examples)": {
"title": "remainder Operator (Examples)",
"created": "20190611130110805",
"modified": "20190611130121033",
"tags": "[[remainder Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[[23]remainder[3]]\">>\n<<.operator-example 2 \"=1 =2 =3 =4 +[remainder[2]]\">>\n"
},
"remove Operator (Examples)": {
"title": "remove Operator (Examples)",
"created": "20151018054129966",
"modified": "20151108052052606",
"tags": "[[Operator Examples]] [[remove Operator]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.using-days-of-week>>\n\n<<.operator-example 1 \"[list[Days of the Week]] +[remove[Tuesday Wednesday Thursday]]\">>\n<<.operator-example 2 \"[list[Days of the Week]] +[remove:3[Monday Wednesday Friday Saturday]]\">>\n<<.operator-example 3 \"[list[Days of the Week]] +[!remove:2{Days of the Week!!list}]\">>\n"
},
"removeprefix Operator (Examples)": {
"title": "removeprefix Operator (Examples)",
"created": "20150118132851000",
"modified": "20150123210429000",
"tags": "[[removeprefix Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[[My Cat]] [[Your Garden]] [[My Favourite Armchair]] +[removeprefix[My ]]\">>\n"
},
"removesuffix Operator (Examples)": {
"title": "removesuffix Operator (Examples)",
"created": "20150118132851000",
"modified": "20150123211000000",
"tags": "[[removesuffix Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"SIMPLEX Googolplex Complex +[removesuffix[plex]]\">>\n\n\n"
},
"replace Operator (Examples)": {
"title": "replace Operator (Examples)",
"created": "20151017153634099",
"modified": "20151108052127454",
"tags": "[[Operator Examples]] [[replace Operator]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.using-days-of-week>>\n\n<<.operator-example 1 \"[list[Days of the Week]] Last +[replace[Wednesday]]\">>\n<<.operator-example 2 \"[list[Days of the Week]] Last +[replace:2[Tuesday]]\">>\n<<.operator-example 3 \"[list[Days of the Week]] [[Yesterday]] [[Today]] [[Tomorrow]] +[replace:3[Tuesday]]\">>\n"
},
"rest Operator (Examples)": {
"title": "rest Operator (Examples)",
"created": "20150118134611000",
"modified": "20150123211722000",
"tags": "[[rest Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.using-days-of-week>>\n\n<<.operator-example 1 \"[list[Days of the Week]rest[]]\">>\n<<.operator-example 2 \"[list[Days of the Week]rest[3]]\">>\n<<.operator-example 3 \"Z Y X W V U T S R Q P O +[rest[5]]\">>\n"
},
"reverse Operator (Examples)": {
"title": "reverse Operator (Examples)",
"created": "20150118134611000",
"modified": "20150123212752000",
"tags": "[[reverse Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.using-days-of-week>>\n\n<<.operator-example 1 \"[list[Days of the Week]reverse[]]\">>\n"
},
"round Operator (Examples)": {
"title": "round Operator (Examples)",
"created": "20190613084626721",
"modified": "20190613084651519",
"tags": "[[round Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[[1.6]round[]]\">>\n<<.operator-example 2 \"[[-1.6]round[]]\">>\n<<.operator-example 3 \"=-1.2 =-2.4 =3.6 =4.8 =5.1 +[round[]]\">>\n"
},
"sameday Operator (Examples)": {
"title": "sameday Operator (Examples)",
"created": "20150124101702000",
"modified": "20150124101739000",
"tags": "[[sameday Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[sameday[20140410]]\" \"tiddlers modified on 10 April 2014\">>\n<<.operator-example 2 \"[sameday:created[20140410]]\" \"tiddlers created on 10 April 2014\">>\n"
},
"search Operator (Examples)": {
"title": "search Operator (Examples)",
"created": "20150124104508000",
"modified": "20181025082022690",
"tags": "[[search Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<$macrocall $name=\".operator-example\" n=\"1\" eg=\"[!is[system]search[table]]\" ie=\"non-system tiddlers containing the word <<.word table>>\"/>\n<$macrocall $name=\".operator-example\" n=\"2\" eg=\"[all[shadows]search[table]]\" ie=\"shadow tiddlers containing the word <<.word table>>\"/>\n<$macrocall $name=\".operator-example\" n=\"3\" eg=\"[search:caption[arch]]\" ie=\"tiddlers containing `arch` in their <<.field caption>> field\"/>\n<$macrocall $name=\".operator-example\" n=\"4\" eg=\"[search:*[arch]]\" ie=\"tiddlers containing `arch` in any field\"/>\n<$macrocall $name=\".operator-example\" n=\"5\" eg=\"[search:-title,caption[arch]]\" ie=\"tiddlers containing `arch` in any field except <<.field title>> and <<.field caption>>\"/>\n<$macrocall $name=\".operator-example\" n=\"6\" eg=\"[!is[system]search[the first]]\" ie=\"non-system tiddlers containing a case-insensitive match for both the <<.word 'the'>> and <<.word 'first'>>\"/>\n<$macrocall $name=\".operator-example\" n=\"7\" eg=\"[!is[system]search::literal[the first]]\" ie=\"non-system tiddlers containing a case-insensitive match for the literal phrase <<.word 'the first'>>\"/>\n<$macrocall $name=\".operator-example\" n=\"8\" eg=\"[!is[system]search::literal,casesensitive[The first]]\" ie=\"non-system tiddlers containing a case-sensitive match for the literal phrase <<.word 'The first'>>\"/>\n<$macrocall $name=\".operator-example\" n=\"9\" eg=\"[search:caption,description:casesensitive,words[arch]]\" ie=\"any tiddlers containing a case-sensitive match for the word `arch` in their <<.field caption>> or <<.field description>> fields\"/>\n"
},
"sentencecase Operator (Examples)": {
"title": "sentencecase Operator (Examples)",
"created": "20190619110741485",
"modified": "20190620140353983",
"tags": "[[sentencecase Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[[abc def ghi jkl]sentencecase[]]\">>\n<<.operator-example 2 \"[[abc deF gHi jKL]sentencecase[]]\">>\n<<.operator-example 3 \"[[abc deF gHi jKL]lowercase[]sentencecase[]]\">>\n<<.operator-example 4 \"[tag[HelloThere]sentencecase[]]\">>\n"
},
"shadowsource Operator (Examples)": {
"title": "shadowsource Operator (Examples)",
"created": "20150124111726000",
"modified": "20150124210736000",
"tags": "[[shadowsource Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[[$:/core/copyright.txt]shadowsource[]]\">>\n<<.operator-example 2 \"$:/core/copyright.txt $:/plugins/tiddlywiki/railroad/parser.js +[shadowsource[]]\">>\n"
},
"sign Operator (Examples)": {
"title": "sign Operator (Examples)",
"created": "20190613085050151",
"modified": "20190613085120851",
"tags": "[[sign Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[[1.6]sign[]]\">>\n<<.operator-example 2 \"[[-1.6]sign[]]\">>\n<<.operator-example 3 \"[[0]sign[]]\">>\n"
},
"sort Operator (Examples)": {
"title": "sort Operator (Examples)",
"created": "20150124112340000",
"modified": "20150124113250000",
"tags": "[[sort Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.using-days-of-week>>\n\n<<.operator-example 1 \"[list[Days of the Week]sort[]]\">>\n<<.operator-example 2 \"[list[Days of the Week]!sort[]]\">>\n<<.operator-example 3 \"one two Three four +[sort[]]\">>\n<<.operator-example 4 \"[prefix[Tiddl]sort[text]]\">>\n<<.operator-example 5 \"[has[created]sort[created]limit[10]]\" \"the oldest 10 tiddlers in the wiki\">>\n"
},
"sortan Operator (Examples)": {
"title": "sortan Operator (Examples)",
"created": "20180222071947788",
"modified": "20180222072601161",
"tags": "[[sortan Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "These examples make use of the [[Apple]] tiddler.\n\n<<.operator-example 1 \"[list[Apple]sortan[]]\">>\n<<.operator-example 2 \"[list[Apple]!sortan[]]\">>\n<<.operator-example 3 \"App-10-A App-9-B App-10-B App-9-A +[sortan[]]\">>\n\n"
},
"sortby Operator (Examples)": {
"title": "sortby Operator (Examples)",
"created": "20151018123433917",
"modified": "20151108052158811",
"tags": "[[Operator Examples]] [[sortby Operator]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.using-days-of-week>>\n\n<<.operator-example 1 \"10 6 4 9 3 2 8 +[sortby[1 2 3 4 5 6 7 8 9 10]]\">>\n<<.operator-example 2 \"Friday Tuesday Monday Thursday Sunday +[sortby{Days of the Week!!list}]\">>\n<<.operator-example 3 \"1 Mon 5 Fri 4 Tue Sun 2 +[sortby{Days of the Week!!short}]\">>\n"
},
"sortcs Operator (Examples)": {
"title": "sortcs Operator (Examples)",
"created": "20150124113044000",
"modified": "20150124113344000",
"tags": "[[sortcs Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.using-days-of-week>>\n\n<<.operator-example 1 \"one two Three four +[sortcs[]]\">>\n<<.operator-example 2 \"one two Three four +[!sortcs[]]\">>\n"
},
"split Operator (Examples)": {
"title": "split Operator (Examples)",
"created": "20190613154338930",
"modified": "20190613154445868",
"tags": "[[split Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[[a b c d e]split[ ]]\">>\n<<.operator-example 2 \"[[Mississippi]split[i]]\">>\n"
},
"splitbefore Operator (Examples)": {
"title": "splitbefore Operator (Examples)",
"created": "20150126143216000",
"modified": "20150126143901000",
"tags": "[[splitbefore Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<$macrocall $name=\".operator-example\" n=\"1\" eg=\"2015-01-26 2014-07-19 2013 +[splitbefore[-]]\"/>\n<$macrocall $name=\".operator-example\" n=\"2\" eg=\"[[green trees]splitbefore[ee]]\"/>\n"
},
"splitregexp Operator (Examples)": {
"title": "splitregexp Operator (Examples)",
"created": "20190613154934814",
"modified": "20190613155013565",
"tags": "[[splitregexp Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"a=b-c=d-e +[splitregexp[=|-]]\">>\n"
},
"storyviews Operator (Examples)": {
"title": "storyviews Operator (Examples)",
"created": "20150126142047000",
"modified": "20150126142124000",
"tags": "[[storyviews Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[storyviews[]]\">>\n"
},
"stringify Operator (Examples)": {
"title": "stringify Operator (Examples)",
"created": "20161017154944352",
"modified": "20171029155233487",
"tags": "[[Operator Examples]] [[stringify Operator]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"\"\"[[Title with \"double quotes\" and single ' and \\backslash]] +[stringify[]]\"\"\">>\n"
},
"subfilter Operator (Examples)": {
"title": "subfilter Operator (Examples)",
"created": "20181031175129475",
"modified": "20181031175129475",
"tags": "[[subfilter Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[subfilter[one two three]addsuffix[!]]\">>\n<<.operator-example 2 \"[subfilter{$:/StoryList!!list}]\">>\n"
},
"subtiddlerfields Operator (Examples)": {
"title": "subtiddlerfields Operator (Examples)",
"created": "20180403164143915",
"modified": "20180403164257147",
"tags": "[[plugintiddlers Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[[$:/core/copyright.txt]subtiddlerfields[$:/core]]\">>\n\n"
},
"subtract Operator (Examples)": {
"title": "subtract Operator (Examples)",
"created": "20190611125619962",
"modified": "20190611125638512",
"tags": "[[subtract Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[[23]subtract[19]]\">>\n<<.operator-example 2 \"=1 =2 =3 =4 +[subtract[4]]\">>\n"
},
"suffix Operator (Examples)": {
"title": "suffix Operator (Examples)",
"created": "20150124113652000",
"modified": "20150124113925000",
"tags": "[[suffix Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[suffix[.jpg]]\">>\n<<.operator-example 2 \"[tag[task]!suffix[ing]]\">>\n"
},
"sum Operator (Examples)": {
"title": "sum Operator (Examples)",
"created": "20190611160000682",
"modified": "20190611160139594",
"tags": "[[sum Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"=1 =2 =3 =4 =5 +[sum[]]\">>\n<<.operator-example 2 \"[tag[HelloThere]get[text]length[]sum[]]\">>\n"
},
"tag Operator (Examples)": {
"title": "tag Operator (Examples)",
"created": "20150124122400000",
"modified": "20150124122939000",
"tags": "[[tag Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[tag[task]]\">>\n<<.operator-example 2 \"[tag[task]!tag[done]]\">>\n<<.operator-example 3 \"[!tag[task]]\">>\n<<.operator-example 4 \"[all[shadows]tag[$:/tags/Stylesheet]]\">>\n"
},
"tagging Operator (Examples)": {
"title": "tagging Operator (Examples)",
"created": "20150124133043000",
"modified": "20150124133617000",
"tags": "[[tagging Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[[task]tagging[]]\" \"same as `[tag[task]]`\">>\n<<.operator-example 2 \"Concepts task +[tagging[]]\" \"tiddlers that are tagged ''Concepts'' or ''task''\">>\n<<.operator-example 3 \"[all[current]tagging[]]\" \"tiddlers tagged with the current one\">>\n"
},
"tags Operator (Examples)": {
"title": "tags Operator (Examples)",
"created": "20150124134009000",
"modified": "20150124134203000",
"tags": "[[tags Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[[Filter Operators]tags[]]\">>\n<<.operator-example 2 \"[all[shadows]tags[]]\">>\n<<.operator-example 3 \"[all[shadows+tiddlers]tags[]sort[]]\">>\n"
},
"then Operator (Examples)": {
"title": "then Operator (Examples)",
"created": "20190802113310992",
"modified": "20190802113555129",
"tags": "[[then Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[[HelloThereMissing]is[missing]then[yes]]\">>\n<<.operator-example 2 \"[[HelloThere]is[missing]then[yes]]\">>\n\n"
},
"title Operator (Examples)": {
"title": "title Operator (Examples)",
"created": "20150124140124000",
"modified": "20150124140355000",
"tags": "[[title Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[title[HelloThere]]\">>\n<<.operator-example 2 \"[[HelloThere]]\">>\n<<.operator-example 3 \"HelloThere\">>\n<<.operator-example 4 \"[title[HelloThere]] [title[Filter Operators]]\">>\n<<.operator-example 5 \"[[HelloThere]] [[Filter Operators]]\">>\n<<.operator-example 6 \"HelloThere [[Filter Operators]]\">>\n<<.operator-example 7 \"[tag[Filters]] +[!title[Filter Operators]]\">>\n<<.operator-example 8 \"[tag[Filters]] +[![Filter Operators]]\">>\n<<.operator-example 9 \"[tag[Filters]] -[[Filter Operators]]\">>\n"
},
"titlecase Operator (Examples)": {
"title": "titlecase Operator (Examples)",
"created": "20190620140005348",
"modified": "20190620140412655",
"tags": "[[titlecase Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[[abc def ghi jkl]titlecase[]]\">>\n<<.operator-example 2 \"[[abc deF gHi jKL]titlecase[]]\">>\n<<.operator-example 3 \"[[abc deF gHi jKL]lowercase[]titlecase[]]\">>\n<<.operator-example 4 \"[tag[HelloThere]titlecase[]]\">>\n"
},
"trim Operator (Examples)": {
"title": "trim Operator (Examples)",
"created": "20190613153847475",
"modified": "20190613153924808",
"tags": "[[trim Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[[ a b ]trim[]addprefix[-]addsuffix[-]]\">>\n"
},
"trunc Operator (Examples)": {
"title": "trunc Operator (Examples)",
"created": "20190613084830686",
"modified": "20190613084854081",
"tags": "[[trunc Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[[1.6]trunc[]]\">>\n<<.operator-example 2 \"[[-1.6]trunc[]]\">>\n<<.operator-example 3 \"=-1.2 =-2.4 =3.6 =4.8 =5.1 +[trunc[]]\">>\n"
},
"untagged Operator (Examples)": {
"title": "untagged Operator (Examples)",
"created": "20150124142346000",
"modified": "20150124142713000",
"tags": "[[untagged Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[untagged[]]\">>\n<<.operator-example 2 \"[all[shadows]untagged[]]\">>\n<<.operator-example 3 \"[list[HelloThere]!untagged[]]\">>\n"
},
"untrunc Operator (Examples)": {
"title": "untrunc Operator (Examples)",
"created": "20190617162921280",
"modified": "20190617162921280",
"tags": "[[untrunc Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[[1.6]untrunc[]]\">>\n<<.operator-example 2 \"[[-1.6]untrunc[]]\">>\n<<.operator-example 3 \"=-1.2 =-2.4 =3.6 =4.8 =5.1 +[untrunc[]]\">>\n"
},
"uppercase Operator (Examples)": {
"title": "uppercase Operator (Examples)",
"created": "20190613153541799",
"modified": "20190613153642345",
"tags": "[[uppercase Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[[Abc]uppercase[]]\">>\n<<.operator-example 2 \"[tag[HelloThere]uppercase[]]\">>\n"
},
"variables Operator (Examples)": {
"title": "variables Operator (Examples)",
"created": "20190330100101453",
"modified": "20190330100101453",
"tags": "[[variables Operator]] [[Operator Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-example 1 \"[variables[]prefix[colour]]\" \"returns the names of any variables whose names start with ''colour''\">>\n"
},
"exponential Operator": {
"title": "exponential Operator",
"caption": "exponential",
"created": "20190611154259136",
"modified": "20190611154505880",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "the input as numbers converted to exponential notation with <<.place N>> digits",
"op-parameter": "a number",
"op-parameter-name": "N",
"op-purpose": "convert each number to exponential notation with <<.place N>> digits",
"tags": "[[Filter Operators]] [[Mathematics Operators]] [[Binary Mathematics Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.20\">> See [[Mathematics Operators]] for an overview.\n\nThe ''exponential'' operator returns a string representation of the input number in exponential notation with the specified number of digits. If a number has more digits than requested, the number is rounded to the nearest number represented by the specified number of digits\n\n<<.operator-examples \"exponential\">>\n"
},
"field Operator": {
"title": "field Operator",
"created": "20140410103123179",
"modified": "20150203184718000",
"tags": "[[Filter Operators]] [[Common Operators]] [[Field Operators]] [[Negatable Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "field",
"op-purpose": "filter the input by field",
"op-input": "a [[selection of titles|Title Selection]]",
"op-suffix": "the name of a [[field|TiddlerFields]]",
"op-suffix-name": "F",
"op-parameter": "a possible value of field <<.place F>>",
"op-parameter-name": "S",
"op-output": "those input tiddlers in which field <<.place F>> has the value <<.place S>>",
"op-neg-output": "those input tiddlers in which field <<.place F>> does <<.em not>> have the value <<.place S>>",
"text": "If <<.place S>> is empty, <<.op field>> will match both of the following:\n\n* tiddlers that don't contain field <<.place F>>\n* tiddlers in which field <<.place F>> exists but has an empty value\n\nThe syntax of a [[filter step|Filter Step]] treats any unrecognised [[filter operator|Filter Operators]] as if it was the suffix to the <<.op field>> operator. See the <<.operator-examples \"field\" \"examples\">>.\n\n<<.operator-examples \"field\">>\n"
},
"fields Operator": {
"title": "fields Operator",
"created": "20140924115616653",
"modified": "20150203184828000",
"tags": "[[Filter Operators]] [[Field Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "fields",
"op-purpose": "select all field names of the input titles",
"op-input": "a [[selection of titles|Title Selection]]",
"op-parameter": "none",
"op-output": "all the field names contained in the input tiddlers",
"text": "Each input title is processed in turn. Its list of field names is retrieved (in no particular order) and then [[dominantly appended|Dominant Append]] to the operator's output.\n\n<<.operator-examples \"fields\">>\n"
},
"first Operator": {
"title": "first Operator",
"created": "20140410103123179",
"modified": "20150203191946000",
"tags": "[[Filter Operators]] [[Order Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "first",
"op-purpose": "select the first <<.place N>> input titles",
"op-input": "a [[selection of titles|Title Selection]]",
"op-parameter": "an integer, defaulting to 1",
"op-parameter-name": "N",
"op-output": "the first <<.place N>> input titles",
"text": "<<.operator-examples \"first\">>\n"
},
"fixed Operator": {
"title": "fixed Operator",
"caption": "fixed",
"created": "20190611150505495",
"modified": "20190611150931872",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "the input as numbers converted to fixed point notation with <<.place N>> digits after the decimal point",
"op-parameter": "a number",
"op-parameter-name": "N",
"op-purpose": "convert each number to fixed point notation with <<.place N>> digits after the decimal point",
"tags": "[[Filter Operators]] [[Mathematics Operators]] [[Binary Mathematics Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.20\">> See [[Mathematics Operators]] for an overview.\n\nThe ''fixed'' operator returns a string representation of the input number that does not use exponential notation and has exactly the specified number of digits after the decimal place. The number is rounded if necessary, and the fractional part is padded with zeros if necessary so that it has the specified length.\n\n<<.operator-examples \"fixed\">>\n"
},
"floor Operator": {
"title": "floor Operator",
"caption": "floor",
"created": "20190613084227037",
"modified": "20190613084450121",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "rounds each of the input numbers to the largest integer less than or equal to the given number",
"op-purpose": "rounds a list of numbers to the largest integer less than or equal to each number",
"tags": "[[Unary Mathematics Operators]] [[Filter Operators]] [[Mathematics Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.20\">> See [[Mathematics Operators]] for an overview.\n\n<<.operator-examples \"floor\">>\n"
},
"get Operator": {
"title": "get Operator",
"created": "20140426183123179",
"modified": "20150203185001000",
"tags": "[[Filter Operators]] [[Field Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "get",
"op-purpose": "select all values of a field in the input titles",
"op-input": "a [[selection of titles|Title Selection]]",
"op-parameter": "the name of a [[field|TiddlerFields]]",
"op-parameter-name": "F",
"op-output": "the values of field <<.place F>> in each of the input titles",
"text": "Each input title is processed in turn. If the corresponding tiddler contains field <<.place F>>, and the value of this field is not empty, then its value is appended to the output.\n\nUnlike most other [[Filter Operators]], the [[selection|Title Selection]] output by <<.op get>> can contain duplicates. To avoid duplicates, use `each[F]get[F]`.\n\n<<.operator-examples \"get\">>\n"
},
"getindex Operator": {
"title": "getindex Operator",
"created": "20150203140000000",
"modified": "20150203140000000",
"tags": "[[Filter Operators]] [[Field Operators]]",
"caption": "getindex",
"op-purpose": "select all values of a data property in the input titles",
"text": "<$macrocall $name=\".operator-def\"\ninput=\"a [[selection of titles|Title Selection]]\"\nparameter=\"the name of a [[property|DataTiddlers]]\"\nparamName=\"P\"\noutput=\"the values of property <<.place P>> in each of the input titles\"\n/>\n\nEach input title is processed in turn, and is ignored if it does not denote a [[data tiddler|DataTiddlers]]. If the tiddler contains property <<.place P>>, the value of that property is [[dominantly appended|Dominant Append]] to the output.\n\n<<.operator-examples \"getindex\">>\n"
},
"getvariable Operator": {
"title": "getvariable Operator",
"created": "20190330100101453",
"modified": "20190330100101453",
"tags": "[[Filter Operators]] [[Special Operators]]",
"caption": "getvariable",
"op-purpose": "select all values of variables named in the input titles",
"op-input": "a selection of varible names",
"op-parameter": "ignored",
"op-output": "the values of each of the variables named in the input titles (or blank if the variable is not defined)",
"text": "<<.from-version \"5.1.20\">> The usual way to retrieve a variable value within a filter is with the angle brackets notation. For example, `[<currentTiddler>]` will retrieve the value of the variable called `currentTiddler`. \n\nThe `getvariable` filter operator provides an alternative way to retrieve a variable. For example, `[[currentTiddler]getvariable[]]` is another way to retrieve the value of the variable `currentTiddler`.\n\nThe advantage of `getvariable` is that it makes it possible to work with variables whose name is computed, and not known in advance. For example, `[<myvariable>getvariable[]]` gets the value of the variable whose name is given in the variable `myvariable`.\n\n<<.operator-examples \"getvariable\">>\n"
},
"has Operator": {
"title": "has Operator",
"caption": "has",
"created": "20140410103123179",
"modified": "20190518145446047",
"op-input": "a [[selection of titles|Title Selection]]",
"op-neg-output": "''without suffix''<br>» those input tiddlers in which field <<.place F>> does <<.em not>> exist or has an empty value<br>''suffix `field`''<br>» those input tiddlers in which field <<.place F>> does <<.em not>> exist",
"op-output": "''without suffix''<br>» those input tiddlers in which field <<.place F>> has a non-empty value<br>''suffix `field`''<br>» those input tiddlers in which field <<.place F>> exists",
"op-parameter": "the name of a [[field|TiddlerFields]]",
"op-parameter-name": "F",
"op-purpose": "filter the input by field existence",
"op-suffix": "<<.from-version \"5.1.14\">> optionally, the keyword `field`",
"op-suffix-name": "S",
"tags": "[[Filter Operators]] [[Common Operators]] [[Field Operators]] [[Negatable Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-examples \"has\">>"
},
"haschanged Operator": {
"title": "haschanged Operator",
"created": "20150208191821000",
"modified": "20150208191821000",
"tags": "[[Filter Operators]] [[Negatable Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "haschanged",
"op-purpose": "filter the input by tiddler modification status",
"op-input": "a [[selection of titles|Title Selection]]",
"op-parameter": "none",
"op-output": "those input tiddlers that have been modified during this session",
"op-neg-output": "those input tiddlers that have <<.em not>> been modified during this session",
"text": "A tiddler is deemed to have been modified if it has been written back to the wiki since the start of the current ~TiddlyWiki session. If you edit a tiddler and immediately store it again without making any changes, that is enough to mark it as modified.\n\n<<.operator-examples \"haschanged\">>"
},
"indexes Operator": {
"title": "indexes Operator",
"created": "20140410103123179",
"modified": "20150203185150000",
"tags": "[[Filter Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "indexes",
"op-purpose": "select all data properties of the input titles",
"op-input": "a [[selection of titles|Title Selection]]",
"op-parameter": "none",
"op-output": "all the property names or indices contained in the input data tiddlers",
"text": "Each input title is processed in turn, and is ignored if it does not denote a [[data tiddler|DataTiddlers]]. The list of property names is retrieved from the data tiddler (in no particular order) and then [[dominantly appended|Dominant Append]] to the operator's output.\n\nWhere a tiddler's [[content is JSON|JSONTiddlers]] with an array as its root, the <<.op indexes>> operator retrieves a selection of integer indices instead.\n\n<<.operator-examples \"indexes\">>\n"
},
"insertbefore Operator": {
"title": "insertbefore Operator",
"caption": "insertbefore",
"created": "20170406090122441",
"modified": "20170406091248994",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "the input tiddler list with the new entry inserted",
"op-parameter": "the title of the tiddler to insert",
"op-parameter-name": "T",
"op-purpose": "insert an item <<.place T>> into a list immediately before an item <<.place B>>",
"op-suffix": "the name of a variable containing the title of the tiddler before which this one should be inserted",
"op-suffix-name": "B",
"tags": "[[Filter Operators]] [[Order Operators]] [[Listops Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "If the item <<.place B>> isn't present in the input list then the new item is inserted at the end of the list.\n"
},
"is Operator": {
"title": "is Operator",
"created": "20140410103123179",
"modified": "20190225130632157",
"tags": "[[Filter Operators]] [[Common Operators]] [[Negatable Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "is",
"op-purpose": "filter the input by fundamental category",
"op-input": "a [[selection of titles|Title Selection]]",
"op-parameter": "a category",
"op-parameter-name": "C",
"op-output": "those input tiddlers that belong to category <<.place C>>",
"op-neg-output": "those input tiddlers that do <<.em not>> belong to category <<.place C>>",
"text": "The parameter <<.place C>> is one of the following fundamental categories:\n\n|!Category |!Matches any tiddler title that... |\n|^`current` |is the [[current tiddler|Current Tiddler]] |\n|^`image` |has an image ContentType |\n|^`missing` |does not exist (other than possibly as a shadow tiddler), regardless of whether there are any links to it |\n|^`orphan` |has no [[hard links|Hard and Soft Links]] to it |\n|^`shadow` |is a [[shadow tiddler|ShadowTiddlers]], regardless of whether it has been overridden with a non-shadow tiddler |\n|^`system` |is a [[system tiddler|SystemTiddlers]], i.e. its title starts with `$:/` |\n|^`tag` |is in use as a tag |\n|^`tiddler` |exists as a non-shadow tiddler |\n|^`variable` |<<.from-version \"5.1.20\">> exists as a variable (whether or not that variable has a non-blank value) |\n|^`blank` |<<.from-version \"5.1.20\">> is blank (i.e. is a zero length string) |\n\nIf <<.place C>> is anything else an error message is returned. <<.from-version \"5.1.14\">> if <<.place C>> is blank, the output is passed through unchanged (in earlier versions an error message was returned).\n\n`!is[tiddler]` is a synonym for `is[missing]`, and vice versa.\n\nWhen <<.op is[missing]>> is the first operator in a [[run|Filter Run]], its output is always empty. And when <<.op is[shadow]>> comes first, it outputs only those shadow tiddlers that have been overridden. This is because the [[initial input to a run|Filter Expression]] contains only <<.em non>>-shadow tiddlers.\n\nThe <<.olink all>> operator is similar, but its scope is the whole wiki.\n\n<<.operator-examples \"is\">>"
},
"join Operator": {
"title": "join Operator",
"caption": "join",
"created": "20190613154502541",
"modified": "20190613154632657",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "the input titles joined together with the separator <<.place S>>",
"op-parameter": "the separator to insert between each of the items",
"op-parameter-name": "S",
"op-purpose": "join a list of strings together with the separator <<.place S>>",
"tags": "[[Filter Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.20\">>\n\n<<.operator-examples \"join\">>\n"
},
"jsonstringify Operator": {
"title": "jsonstringify Operator",
"caption": "jsonstringify",
"created": "20171029155051467",
"from-version": "5.1.14",
"modified": "20171029155143797",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "the input with JSON string encodings applied",
"op-parameter": "",
"op-parameter-name": "",
"op-purpose": "apply JSON string encoding to a string",
"tags": "[[Filter Operators]] [[String Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "The following substitutions are made:\n\n|!Character |!Replacement |\n|`\\` |`\\\\` |\n|`\"` |`\\\\` |\n|`'` |`\\\\` |\n|`\\r` (carriage return) |`\\\\r` |\n|`\\n` (line feed) |`\\\\n` |\n|Characters from 0x00 to 0x1f |`\\\\x##` where ## is two hex digits |\n|Characters from 0x80 to 0xffff |`\\\\u####` where #### is four hex digits |\n\nAlso see the [[stringify Operator]].\n\n<<.operator-examples \"jsonstringify\">>\n"
},
"last Operator": {
"title": "last Operator",
"created": "20140410103123179",
"modified": "20150203192036000",
"tags": "[[Filter Operators]] [[Order Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "last",
"op-purpose": "select the last <<.place N>> input titles",
"op-input": "a [[selection of titles|Title Selection]]",
"op-parameter": "an integer, defaulting to 1",
"op-parameter-name": "N",
"op-output": "the last <<.place N>> input titles",
"text": "<<.operator-examples \"last\">>\n"
},
"length Operator": {
"title": "length Operator",
"caption": "length",
"created": "20190613153225735",
"modified": "20190613153321546",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "replaces each input title with its length as an integer",
"op-purpose": "returns the lengths of each item in the list",
"tags": "[[Filter Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.20\">>\n\n<<.operator-examples \"length\">>\n"
},
"limit Operator": {
"title": "limit Operator",
"created": "20140410103123179",
"modified": "20150203185456000",
"tags": "[[Filter Operators]] [[Common Operators]] [[Order Operators]] [[Negatable Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "limit",
"op-purpose": "select the first or last <<.place N>> input titles",
"op-input": "a [[selection of titles|Title Selection]]",
"op-parameter": "an integer, defaulting to 0",
"op-parameter-name": "N",
"op-output": "the first <<.place N>> input titles",
"op-neg-output": "the last <<.place N>> input titles",
"text": "`limit[N]` and `!limit[N]` are synonyms for `first[N]` and `last[N]` respectively.\n\n<<.operator-examples \"limit\">>\n"
},
"links Operator": {
"title": "links Operator",
"created": "20140410103123179",
"modified": "20150203185545000",
"tags": "[[Filter Operators]] [[Common Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "links",
"op-purpose": "find the titles linked to by each input title",
"op-input": "a [[selection of titles|Title Selection]]",
"op-parameter": "none",
"op-output": "the titles to which the input tiddlers contain [[hard links|Hard and Soft Links]]",
"text": "Each input title is processed in turn. The corresponding tiddler's list of links is generated, in the order in which they appear in the tiddler's text, and [[dominantly appended|Dominant Append]] to the operator's overall output.\n\n<<.operator-examples \"links\">>\n"
},
"list Operator": {
"title": "list Operator",
"created": "20140410103123179",
"modified": "20150220161020000",
"tags": "[[Filter Operators]] [[Field Operators]] [[Selection Constructors]] [[Negatable Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "list",
"op-purpose": "select titles via a list field",
"op-input": "ignored",
"op-neg-input": "a [[selection of titles|Title Selection]]",
"op-parameter": "a [[reference|TextReference]] to a [[field|TiddlerFields]] or [[property|DataTiddlers]] of a particular tiddler",
"op-parameter-name": "R",
"op-output": "the titles stored as a [[title list|Title List]] at <<.place R>>",
"op-neg-output": "those input titles that are <<.em not>> mentioned at <<.place R>>",
"text": "<<.place R>> can reference either a field or a property. See [[TextReference]] for the syntax.\n\n* If neither is specified, the <<.field list>> field is used by default. So `[list[T]]` outputs the titles listed in the <<.field list>> of tiddler T.\n* If <<.place R>> consists of <<.em only>> a field or a property, the tiddler part of the reference defaults to the [[current tiddler|Current Tiddler]]. So `[list[!!tags]]` outputs the titles listed in the <<.field tags>> field of the current tiddler.\n\n<<.operator-examples \"list\">>\n"
},
"listed Operator": {
"title": "listed Operator",
"created": "20140410103123179",
"modified": "20150203185745000",
"tags": "[[Filter Operators]] [[Field Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "listed",
"op-purpose": "find the titles that list the input titles",
"op-input": "a [[selection of titles|Title Selection]]",
"op-parameter": "the name of a [[field|TiddlerFields]], defaulting to <<.field list>>",
"op-parameter-name": "F",
"op-output": "the titles in which field <<.place F>> mentions any of the input titles",
"text": "<<.field F>> is assumed to be a [[title list|Title List]].\n\nEach input title is processed in turn. A list of tiddlers whose <<.place F>> field mentions it is generated (in no particular order) and [[dominantly appended|Dominant Append]] to the operator's overall output.\n\n<<.operator-examples \"listed\">>\n"
},
"lookup Operator": {
"title": "lookup Operator",
"caption": "lookup",
"created": "20170907103639431",
"modified": "20170907144703051",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "the lookup values corresponding to each input title",
"op-parameter": "prefix applied to input titles to yield title of lookup tiddler from which value is retrieved",
"op-parameter-name": "P",
"op-purpose": "applies a prefix to each input title to yield the title of a tiddler from which the final value is retrieved",
"op-suffix": "the default value to be used for missing lookups",
"op-suffix-name": "D",
"tags": "[[Filter Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.15\">>\n\nThe action of this operator is as follows:\n\n* Apply the specified prefix to each input tiddler title, yielding a new list of tiddler titles\n* Transclude the value of each of those tiddlers\n** Substitute the default value for missing or empty tiddlers\n* Return the list of values\n\n<<.operator-examples \"lookup\">>\n"
},
"lowercase Operator": {
"title": "lowercase Operator",
"caption": "lowercase",
"created": "20190613153650010",
"modified": "20190619110848522",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "the input titles with each uppercase letter replaced by the equivalent lowercase letter",
"op-purpose": "returns each item in the list as lowercase",
"tags": "[[Filter Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.20\">>\n\nSee also [[uppercase Operator]] and [[sentencecase Operator]].\n\n<<.operator-examples \"lowercase\">>\n"
},
"match Operator": {
"title": "match Operator",
"caption": "match",
"created": "20190731080209404",
"modified": "20190731081047732",
"op-input": "a [[selection of titles|Title Selection]]",
"op-neg-output": "each item in the input list that does not match the operand string",
"op-output": "each item in the input list that matches the operand string (potentially including duplicates)",
"op-parameter": "the string to be matched",
"op-purpose": "returns each item in the list that matches the operand string",
"op-suffix": "the <<.op match>> operator uses a rich suffix, see below for details",
"tags": "[[Filter Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.20\">>\n\nThe <<.op match>> operator uses an extended syntax that permits multiple flags to be passed:\n\n```\n[match:<flag list>[<operand>]]\n```\n\n* ''flag list'': a comma delimited list of flags\n* ''operand'': filter operand\n\nThe available flags are:\n\n* ''casesensitive'': (default), this flag forces a case-sensitive match, where upper and lower case letters are considered different\n* ''caseinsensitive'': overrides the default so that upper and lower case letters are considered identical for matching purposes\n\n<<.operator-examples \"match\">>\n"
},
"max Operator": {
"title": "max Operator",
"caption": "max",
"created": "20190611130631390",
"modified": "20190611131047026",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "the input as numbers, with any that are less than <<.place N>> being replaced by <<.place N>>",
"op-parameter": "a number",
"op-parameter-name": "N",
"op-purpose": "treating each input title as a number, take the maximum of its value and the numeric value of the operand",
"tags": "[[Filter Operators]] [[Mathematics Operators]] [[Binary Mathematics Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.20\">> See [[Mathematics Operators]] for an overview.\n\nSee also the [[min Operator]], and compare with the [[maxall Operator]] and the [[minall Operator]].\n\n<<.operator-examples \"max\">>\n"
},
"maxall Operator": {
"title": "maxall Operator",
"caption": "maxall",
"created": "20190611160656499",
"modified": "20190611160942704",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "the largest of the input numbers",
"op-purpose": "find the largest of a list of numbers",
"tags": "[[Reducing Mathematics Operators]] [[Filter Operators]] [[Mathematics Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.20\">> See [[Mathematics Operators]] for an overview.\n\nSee also the [[minall Operator]], and compare with the [[max Operator]] and the [[min Operator]].\n\n<<.operator-examples \"maxall\">>\n"
},
"min Operator": {
"title": "min Operator",
"caption": "min",
"created": "20190611131102707",
"modified": "20190611131135931",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "the input as numbers, with any that are greater than <<.place N>> being replaced by <<.place N>>",
"op-parameter": "a number",
"op-parameter-name": "N",
"op-purpose": "treating each input title as a number, take the minimum of its value and the numeric value of the operand",
"tags": "[[Filter Operators]] [[Mathematics Operators]] [[Binary Mathematics Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.20\">> See [[Mathematics Operators]] for an overview.\n\nSee also the [[max Operator]], and compare with the [[maxall Operator]] and the [[minall Operator]].\n\n<<.operator-examples \"min\">>\n"
},
"minall Operator": {
"title": "minall Operator",
"caption": "minall",
"created": "20190611161015153",
"modified": "20190611161043817",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "the smallest of the input numbers",
"op-purpose": "find the smallest of a list of numbers",
"tags": "[[Reducing Mathematics Operators]] [[Filter Operators]] [[Mathematics Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.20\">> See [[Mathematics Operators]] for an overview.\n\nSee also the [[maxall Operator]], and compare with the [[max Operator]] and the [[min Operator]].\n\n<<.operator-examples \"minall\">>\n"
},
"minlength Operator": {
"title": "minlength Operator",
"caption": "minlength",
"created": "20161011074235805",
"modified": "20161011074235805",
"op-input": "a list of items",
"op-output": "those items at least as long as the specified minimum length",
"op-parameter": "the minimum length for items",
"op-parameter-name": "minlength",
"op-purpose": "filter items shorter than the specified minimum length",
"from-version": "5.1.14",
"tags": "[[Filter Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-examples \"minlength\">>\n"
},
"modules Operator": {
"title": "modules Operator",
"created": "20140410103123179",
"modified": "20150203185838000",
"tags": "[[Filter Operators]] [[Special Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "modules",
"op-purpose": "select the names of all modules of the input module types",
"op-input": "a [[selection|Title Selection]] of module types",
"op-parameter": "none",
"op-output": "the title of each module with any of the input types",
"text": "<<.operator-examples \"modules\">>\n"
},
"moduletypes Operator": {
"title": "moduletypes Operator",
"created": "20140410103123179",
"modified": "20150203185903000",
"tags": "[[Filter Operators]] [[Special Operators]] [[Selection Constructors]]",
"type": "text/vnd.tiddlywiki",
"caption": "moduletypes",
"op-purpose": "select the names of all ~TiddlyWiki module types",
"op-input": "ignored",
"op-parameter": "none",
"op-output": "the name of each known ~TiddlyWiki [[module type|ModuleType]], in alphabetical order",
"text": "<<.operator-examples \"moduletypes\">>\n"
},
"move Operator": {
"title": "move Operator",
"caption": "move",
"created": "20151022123413501",
"modified": "20151108082424017",
"op-input": "a list of items",
"op-output": "re-ordered list of items",
"op-parameter": "the list item to be used as a marker",
"op-parameter-name": "marker",
"op-purpose": "move marker N places in the list",
"op-suffix": "an integer N, defaulting to 1",
"tags": "[[Filter Operators]] [[Order Operators]] [[Listops Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-examples \"move\">>\n"
},
"multiply Operator": {
"title": "multiply Operator",
"caption": "multiply",
"created": "20190611125657820",
"modified": "20190611125816555",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "the input as numbers, but with each one multiplied by <<.place N>>",
"op-parameter": "a number",
"op-parameter-name": "N",
"op-purpose": "treating each input title as a number, multiply it by the numeric value of the operand",
"tags": "[[Filter Operators]] [[Mathematics Operators]] [[Binary Mathematics Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.20\">> See [[Mathematics Operators]] for an overview.\n\nCompare with the [[product Operator]].\n\n<<.operator-examples \"multiply\">>\n"
},
"negate Operator": {
"title": "negate Operator",
"caption": "negate",
"created": "20190611173918279",
"modified": "20190611174037439",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "the negation of the input numbers",
"op-purpose": "calculate the negation of a list of numbers",
"tags": "[[Unary Mathematics Operators]] [[Filter Operators]] [[Mathematics Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.20\">> See [[Mathematics Operators]] for an overview.\n\n<<.operator-examples \"negate\">>\n"
},
"next Operator": {
"title": "next Operator",
"created": "20140410103123179",
"modified": "20150203185954000",
"tags": "[[Filter Operators]] [[Field Operators]] [[Order Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "next",
"op-purpose": "find which titles in a <<.field list>> field follow the input ones",
"op-input": "a [[selection of titles|Title Selection]]",
"op-parameter": "a tiddler title",
"op-parameter-name": "T",
"op-output": "a selection containing each title that immediately follows each of the input titles in the <<.field list>> field of <<.place T>>",
"text": "Each input title is processed in turn, and its successor is located in the <<.field list>> field and appended to the output. If a title is not listed in the field, or is the last title there, then it contributes nothing to the output.\n\n<<.operator-examples \"next\">>\n"
},
"nsort Operator": {
"title": "nsort Operator",
"created": "20140410103123179",
"modified": "20150203190051000",
"tags": "[[Filter Operators]] [[Field Operators]] [[Order Operators]] [[Negatable Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "nsort",
"op-purpose": "sort the input by number field",
"op-input": "a [[selection of titles|Title Selection]]",
"op-parameter": "the name of a [[field|TiddlerFields]], defaulting to <<.field title>>",
"op-parameter-name": "F",
"op-output": "the input, sorted into ascending order by field <<.field F>>, treating field values as numbers",
"op-neg-output": "the input, likewise sorted into descending order",
"text": "Non-numeric values are treated as having a higher value than any number, and the difference between capital and lowercase letters is ignored. Compare <<.olink nsortcs>>.\n\n<<.operator-examples \"nsort\">>\n"
},
"nsortcs Operator": {
"title": "nsortcs Operator",
"caption": "nsortcs",
"created": "20140410103123179",
"modified": "20150417125717078",
"op-input": "a [[selection of titles|Title Selection]]",
"op-neg-output": "the input, likewise sorted into descending order",
"op-output": "the input, sorted into ascending order by field <<.place F>>, treating field values as numbers",
"op-parameter": "the name of a [[field|TiddlerFields]], defaulting to <<.field title>>",
"op-parameter-name": "F",
"op-purpose": "sort the input titles by number field, treating upper and lower case as different",
"tags": "[[Filter Operators]] [[Field Operators]] [[Order Operators]] [[Negatable Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "Non-numeric values are treated as having a higher value than any number, and capital and lowercase letters are treated as different. Compare <<.olink nsort>>.\n\n<<.operator-examples \"nsortcs\">>\n"
},
"nth Operator": {
"title": "nth Operator",
"created": "20150122204111000",
"modified": "20150203192048000",
"tags": "[[Filter Operators]] [[Order Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "nth",
"op-purpose": "select the <<.place N>>th input title",
"op-input": "a [[selection of titles|Title Selection]]",
"op-parameter": "an integer, defaulting to 1",
"op-parameter-name": "N",
"op-output": "the <<.place N>>th input title",
"text": "<<.place N>> is one-based. In other words, `nth[1]` has the same effect as the <<.olink first>> operator.\n\n<<.operator-examples \"nth\">>\n"
},
"order Operator": {
"title": "order Operator",
"caption": "order",
"created": "20161128185907280",
"modified": "20161128191251557",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "the input, with the order reversed if <<.field F>> is the special value `reverse`",
"op-parameter": "Either the string `reverse` or another value",
"op-parameter-name": "F",
"op-purpose": "selectively reverse the input list",
"tags": "[[Filter Operators]] [[Common Operators]] [[Field Operators]] [[Order Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "Either reverses or preserves the order of the input list according to whether the parameter is the special value `reverse`.\n\n<<.operator-examples \"order\">>\n"
},
"plugintiddlers Operator": {
"title": "plugintiddlers Operator",
"created": "20140410103123179",
"modified": "20150203190350000",
"tags": "[[Filter Operators]] [[Special Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "plugintiddlers",
"op-purpose": "select all shadow titles in the input plugins",
"op-input": "a [[selection|Title Selection]] of plugin tiddler titles",
"op-parameter": "none",
"op-output": "all shadow titles contained in the input plugins",
"text": "<<.operator-examples \"plugintiddlers\">>\n"
},
"precision Operator": {
"title": "precision Operator",
"caption": "precision",
"created": "20190611150935800",
"modified": "20190611151434569",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "the input as numbers with <<.place N>> significant digits",
"op-parameter": "a number",
"op-parameter-name": "N",
"op-purpose": "convert each number to a string with <<.place N>> significant digits",
"tags": "[[Filter Operators]] [[Mathematics Operators]] [[Binary Mathematics Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.20\">> See [[Mathematics Operators]] for an overview.\n\nThe ''precision'' operator returns a string representation of the input number that has exactly the specified number of significant digits, using whichever is shorter of [[exponential|exponential Operator]] or [[fixed|fixed Operator]] notation.\n\n<<.operator-examples \"precision\">>\n"
},
"prefix Operator": {
"title": "prefix Operator",
"created": "20140410103123179",
"modified": "20150203192735000",
"tags": "[[Filter Operators]] [[String Operators]] [[Negatable Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "prefix",
"op-purpose": "filter the input titles by how they start",
"op-input": "a [[selection of titles|Title Selection]]",
"op-parameter": "a string of characters",
"op-parameter-name": "S",
"op-output": "those input titles that start with <<.place S>>",
"op-neg-output": "those input tiddlers that do <<.em not>> start with <<.place S>>",
"text": "<<.s-matching-is-case-sensitive>>\n\n<<.operator-examples \"prefix\">>\n"
},
"prepend Operator": {
"title": "prepend Operator",
"caption": "prepend",
"created": "20151017145439292",
"modified": "20151108051701587",
"op-input": "a list of items",
"op-neg-output": "a list with items prepended from the tail of the operand array",
"op-output": "a list with items prepended from the head of the operand array",
"op-parameter": "the array of items to be prepended to the head of the list",
"op-parameter-name": "list",
"op-purpose": "prepend a range of items from an array to the list",
"op-suffix": "an integer N, defaulting to all",
"tags": "[[Filter Operators]] [[Order Operators]] [[Listops Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-examples \"prepend\">>\n"
},
"previous Operator": {
"title": "previous Operator",
"created": "20140410103123179",
"modified": "20150203190515000",
"tags": "[[Filter Operators]] [[Field Operators]] [[Order Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "previous",
"op-purpose": "find which titles in a <<.field list>> field precede the input ones",
"op-input": "a [[selection of titles|Title Selection]]",
"op-parameter": "a tiddler title",
"op-parameter-name": "T",
"op-output": "a selection containing each title that immediately precedes each of the input titles in the <<.field list>> field of <<.place T>>",
"text": "Each input title is processed in turn, and its predecessor is located in the <<.field list>> field and appended to the output. If a title is not listed in the field, or is the first item there, then it contributes nothing to the output.\n\n<<.operator-examples \"previous\">>\n"
},
"product Operator": {
"title": "product Operator",
"caption": "product",
"created": "20190611160145434",
"modified": "20190611160215653",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "the result of multiplying together the input as numbers",
"op-purpose": "produce the product of the input numbers",
"tags": "[[Reducing Mathematics Operators]] [[Filter Operators]] [[Mathematics Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.20\">> See [[Mathematics Operators]] for an overview.\n\nCompare with the [[multiply Operator]].\n\n<<.operator-examples \"product\">>\n"
},
"putafter Operator": {
"title": "putafter Operator",
"caption": "putafter",
"created": "20151017144307862",
"modified": "20151108051805137",
"op-input": "a list of items",
"op-output": "re-ordered list of items",
"op-parameter": "the list item to be used as a marker",
"op-parameter-name": "marker",
"op-purpose": "move N trailing items after the marker",
"op-suffix": "an integer N, defaulting to 1",
"tags": "[[Filter Operators]] [[Order Operators]] [[Listops Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-examples \"putafter\">>\n"
},
"putbefore Operator": {
"title": "putbefore Operator",
"caption": "putbefore",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "the first <<.place N>> input titles",
"op-parameter": "an integer, defaulting to 1",
"op-parameter-name": "marker",
"op-purpose": "move N trailing items before the marker",
"op-suffix": "an integer N, defaulting to 1",
"tags": "[[Filter Operators]] [[Order Operators]] [[Listops Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-examples \"putbefore\">>\n"
},
"putfirst Operator": {
"title": "putfirst Operator",
"caption": "putfirst",
"created": "20151017144802884",
"modified": "20151108051922934",
"op-input": "a list of items",
"op-output": "re-ordered list of items",
"op-parameter": "ignored",
"op-purpose": "move N trailing items to the head of the list",
"op-suffix": "an integer N, defaulting to 1",
"tags": "[[Filter Operators]] [[Order Operators]] [[Listops Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-examples \"putfirst\">>\n"
},
"putlast Operator": {
"title": "putlast Operator",
"caption": "putlast",
"created": "20151017144822139",
"modified": "20151108052000425",
"op-input": "a list of items",
"op-output": "re-ordered list of items",
"op-parameter": "ignored",
"op-purpose": "move N leading items to the tail of the list",
"op-suffix": "an integer N, defaulting to 1",
"tags": "[[Filter Operators]] [[Order Operators]] [[Listops Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-examples \"putlast\">>\n"
},
"range Operator": {
"title": "range Operator",
"created": "20171221184734665",
"modified": "20171229211834620",
"tags": "[[Filter Operators]] [[Negatable Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "range",
"op-purpose": "generate a range of numbers",
"op-input": "ignored",
"op-parameter": "a range specification, like `[1,5]`",
"op-parameter-name": "N",
"op-output": "a series of evenly spaced numbers ranging from `<begin>` to `<end>`",
"text": "\\define range_example(range)\n```\n[range[$range$]]\n```\n\n<$list variable=n filter=\"[range[$range$]]\"><<n>> </$list>\n\\end\n\nThe `range` operator produces a list of numbers counting up or down. It's useful for counting and numbering, or in combination with the [[Formula Plugin]].\n\n|!Purpose|produce a range of numbers|\n|!Input|ignored.|\n|!Parameter|1-3 numbers separated by `,` or `;`.|\n|!Output|A series of evenly spaced numbers ranging from `<begin>` to `<end>`|\n|!`!` Output|As ''Output'', but with order reversed.|\n\nThe parameter has three forms:\n\n|Parameter|Output|h\n|`<end>`|Whole numbers up to `<end>`.|\n|`<begin>,<end>`|Numbers from `<begin>` to `<end>`, spaced by whole numbers.|\n|`<begin>,<end>,<step>`|Numbers from `<begin>` to `<end>` spaced out by `<step>`.|\n\nEach part must be a number, and works as follows:\n\n* `<begin>`: start counting at this number.\n** Defaults to 1 if `<end>` is at least 1 (or -1 if `<end>` is at most -1).\n* `<end>`: stop counting at this number.\n** This number will appear in the list unless it falls between two steps.\n* `<step>`: count up (or down) by this amount.\n** Defaults to 1.\n** Cannot be zero.\n** We always count from `<begin>` toward `<end>`, whether `<step>` is positive or negative.\n\nThe number of decimal points in the output is fixed, and based on the parameter with the //most// decimal points.\n\nTo prevent the browser from freezing, `range` is currently limited to 10,000 values.\n\n\n!!Examples\n\n<<range_example \"7\">>\n\n<<range_example \"1, 10\">>\n\n<<range_example \"17,13\">>\n\n<<range_example \"1.001, 5, 1\">>\n\n<<range_example \".5,1.4,.004\">>"
},
"regexp Operator": {
"title": "regexp Operator",
"created": "20140909134102102",
"modified": "20150203190626000",
"tags": "[[Filter Operators]] [[Field Operators]] [[Negatable Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "regexp",
"op-purpose": "filter the input by pattern-matched field",
"op-input": "a [[selection of titles|Title Selection]]",
"op-suffix": "the name of a [[field|TiddlerFields]], defaulting to <<.field title>>",
"op-suffix-name": "F",
"op-parameter": "a regular expression",
"op-parameter-name": "X",
"op-output": "those input tiddlers in which field <<.place F>> matches <<.place X>>",
"op-neg-output": "those input tiddlers in which field <<.place F>> does <<.em not>> match <<.place X>>",
"text": "<<.def \"Regular expressions\">> are concise strings of characters that denote patterns of text to search for. The format used in ~TiddlyWiki is fully defined in [[this Mozilla reference|https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions]].\n\nThe [[filter syntax|Filter Run]] makes it impossible to directly specify a regular expression that contains square brackets. The solution is to store the expression in a [[variable|Variables]]. See the <<.operator-examples \"regexp\" \"examples\">>.\n\nThe parameter <<.place X>> can optionally start or end with a string of flags:\n\n<$railroad text=\"\"\" \"(?\" { (\"i\"|\"m\"|:\"g\") } \")\" \"\"\"/>\n\nOnly the `i` flag is generally useful: it forces the different between capital and lowercase letters to be ignored.\n\nIf <<.place X>> is empty, <<.op regexp>> will match all of the input tiddlers.\n\n<<.operator-examples \"regexp\">>\n"
},
"remainder Operator": {
"title": "remainder Operator",
"caption": "remainder",
"created": "20190611130006275",
"modified": "20190611130107195",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "the input as numbers, but with each replaced by the remainder when dividing it by <<.place N>>",
"op-parameter": "a number",
"op-parameter-name": "N",
"op-purpose": "treating each input title as a number, return the remainder when divided by the numeric value of the operand",
"tags": "[[Filter Operators]] [[Mathematics Operators]] [[Binary Mathematics Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.20\">> See [[Mathematics Operators]] for an overview.\n\n<<.operator-examples \"remainder\">>\n"
},
"remove Operator": {
"title": "remove Operator",
"caption": "remove",
"created": "20151017144531676",
"modified": "20170125200005000",
"op-input": "a list of items",
"op-neg-output": "items removed from current list that appear at the tail of the operand array",
"op-output": "items removed from current list that appear at the head of the operand array",
"op-parameter": "an array of items to remove",
"op-parameter-name": "array",
"op-prefix": "causes N items from the end of the array to be removed",
"op-purpose": "remove a list of titles specified in the operand from the input",
"op-suffix": "an integer N, defaulting to all",
"tags": "[[Filter Operators]] [[Order Operators]] [[Listops Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-examples \"remove\">>\n"
},
"removeprefix Operator": {
"title": "removeprefix Operator",
"created": "20140410103123179",
"modified": "20150203190709000",
"tags": "[[Filter Operators]] [[String Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "removeprefix",
"op-purpose": "filter the input titles by how they start, deleting that prefix",
"op-input": "a [[selection of titles|Title Selection]]",
"op-parameter": "a string of characters",
"op-parameter-name": "S",
"op-output": "those input titles that start with <<.place S>>, but with those characters discarded",
"text": "<<.s-matching-is-case-sensitive>>\n\n<<.operator-examples \"removeprefix\">>\n"
},
"removesuffix Operator": {
"title": "removesuffix Operator",
"created": "20140828133830424",
"modified": "20150203190744000",
"tags": "[[Filter Operators]] [[String Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "removesuffix",
"op-purpose": "filter the input titles by how they end, deleting that suffix",
"op-input": "a [[selection of titles|Title Selection]]",
"op-parameter": "a string of characters",
"op-parameter-name": "S",
"op-output": "those input titles that end with <<.place S>>, but with those characters discarded",
"text": "<<.s-matching-is-case-sensitive>>\n\n<<.operator-examples \"removesuffix\">>\n"
},
"replace Operator": {
"title": "replace Operator",
"caption": "replace",
"created": "20151017144531676",
"modified": "20151108052110493",
"op-input": "a list of items",
"op-output": "re-ordered list of items",
"op-parameter": "the item to be used as a marker",
"op-parameter-name": "marker",
"op-purpose": "replace marker with N trailing items",
"op-suffix": "an integer N, defaulting to 1",
"tags": "[[Filter Operators]] [[Order Operators]] [[Listops Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-examples \"replace\">>\n"
},
"rest Operator": {
"title": "rest Operator",
"created": "20140410103123179",
"modified": "20150203190822000",
"tags": "[[Filter Operators]] [[Order Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "rest",
"op-purpose": "discard the first <<.place N>> input titles",
"op-input": "a [[selection of titles|Title Selection]]",
"op-parameter": "an integer, defaulting to 1",
"op-parameter-name": "N",
"op-output": "all but the first <<.place N>> input titles",
"text": "<<.olink butfirst>> and <<.olink bf>> are synonyms for <<.op rest>>.\n\n<<.operator-examples \"rest\">>\n"
},
"reverse Operator": {
"title": "reverse Operator",
"created": "20140410103123179",
"modified": "20150203190852000",
"tags": "[[Filter Operators]] [[Order Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "reverse",
"op-purpose": "reverse the order of the input titles",
"op-input": "a [[selection of titles|Title Selection]]",
"op-parameter": "none",
"op-output": "the input, in reverse order",
"text": "<<.operator-examples \"reverse\">>\n"
},
"round Operator": {
"title": "round Operator",
"caption": "round",
"created": "20190613084541416",
"modified": "20190613084623913",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "rounds each of the input numbers to the nearest integer",
"op-purpose": "rounds a list of numbers to the nearest integer",
"tags": "[[Unary Mathematics Operators]] [[Filter Operators]] [[Mathematics Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.20\">> See [[Mathematics Operators]] for an overview.\n\n<<.operator-examples \"round\">>\n"
},
"sameday Operator": {
"title": "sameday Operator",
"created": "20140410103123179",
"modified": "20150203190959000",
"tags": "[[Filter Operators]] [[Date Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "sameday",
"op-purpose": "filter the input by date",
"op-input": "a [[selection of titles|Title Selection]]",
"op-suffix": "the name of a [[date field|Date Fields]], defaulting to <<.field modified>>",
"op-suffix-name": "F",
"op-parameter": "a date, in the [[format|DateFormat]] `YYYYMMDD`",
"op-parameter-name": "D",
"op-output": "those input tiddlers in which field <<.place F>> has the value <<.place D>>, ignoring time",
"text": "If <<.place D>> is not a valid date, the output is empty.\n\n<<.place D>> may include a time of day, but this is ignored.\n\n<<.operator-examples \"sameday\">>\n"
},
"search Operator": {
"title": "search Operator",
"created": "20140410103123179",
"modified": "20190731212738712",
"tags": "[[Filter Operators]] [[Common Operators]] [[Field Operators]] [[Negatable Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "search",
"op-purpose": "filter the input by searching tiddler content",
"op-input": "a [[selection of titles|Title Selection]]",
"op-suffix": "the <<.op search>> operator uses a rich suffix, see below for details",
"op-parameter": "one or more search terms, separated by spaces, or a literal search string",
"op-output": "those input tiddlers in which <<.em all>> of the search terms can be found in the value of field <<.place F>>",
"op-neg-output": "those input tiddlers in which <<.em not>> all of the search terms can be found",
"text": "<<.from-version \"5.1.18\">> The search filter operator was significantly enhanced in 5.1.18. Earlier versions do not support the extended syntax and therefore do not permit searching multiple fields, or the ''literal'' or ''casesensitive'' options.\n\nThe <<.op search>> operator uses an extended syntax that permits multiple fields and flags to be passed:\n\n```\n[search:<field list>:<flag list>[<operand>]]\n```\n\n* ''field list'': a comma delimited list of field names to restrict the search\n** defaults to <<.field tags>>, <<.field text>> and <<.field title>> if blank\n** an asterisk `*` instead of the field list causes the search to be performed across all fields available on each tiddler\n** preceding the list with a minus sign `-` reverses the order so that the search is performed on all fields except the listed fields\n* ''flag list'': a comma delimited list of flags (defaults to `words` if blank)\n* ''operand'': filter operand\n\nThis example searches the fields <<.field title>> and <<.field caption>> for a case-sensitive match for the literal string <<.op-word \"The first\">>:\n\n```\n[search:title,caption:literal,casesensitive[The first]]\n```\n\nThe available flags are:\n\n* Search mode - the first to be set of the following flags determines the type of search that is performed:\n** ''literal'': considers the search string to be a literal string, and requires an exact match\n** ''whitespace'': considers the search string to be a literal string, but will consider all runs of whitespace to be equivalent to a single space. Thus `A B` matches `A B`\n** ''regexp'': treats the search string as a regular expression. Note that the ''regexp'' option obviates the need for the older <<.olink regexp>> operator.\n** ''words'': (the default) treats the search string as a list of tokens separated by whitespace, and matches if all of the tokens appear in the string (regardless of ordering and whether there is other text in between)\n* ''casesensitive'': if present, this flag forces a case-sensitive match, where upper and lower case letters are considered different. By default, upper and lower case letters are considered identical for matching purposes.\n* ''anchored'': <<.from-version \"5.1.20\">> anchors the search to the start of the string (applies to ''whitespace'', ''literal'' and ''words'' modes)\n\n<<.operator-examples \"search\">>\n"
},
"sentencecase Operator": {
"title": "sentencecase Operator",
"caption": "sentencecase",
"created": "20190619110607457",
"modified": "20190619110736016",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "the input titles with each first letter capitalised",
"op-purpose": "returns each item in the list with the first letter capitalised",
"tags": "[[Filter Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.20\">>\n\nSee also [[lowercase Operator]], [[uppercase Operator]], [[titlecase Operator]].\n\n<<.tip \" This operator does not change anything except the first letter of each title, so `[[aBcD eFgH]]` would become `[[ABcD eFgH]]`. If you want `[[Abcd efgh]]`, then use a filter like `[lowercase[]sentencecase[]]`.\">>\n\n<<.operator-examples \"sentencecase\">>\n"
},
"shadowsource Operator": {
"title": "shadowsource Operator",
"created": "20140410103123179",
"modified": "20150203191120000",
"tags": "[[Filter Operators]] [[Special Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "shadowsource",
"op-purpose": "select the plugin titles that contain the input shadows",
"op-input": "a [[selection|Title Selection]] of [[shadow titles|ShadowTiddlers]]",
"op-parameter": "none",
"op-output": "the [[plugins|Plugins]] that contain the input tiddlers",
"text": "Each input title is processed in turn. If it denotes a shadow tiddler, the title of its plugin tiddler is [[dominantly appended|Dominant Append]] to the output. Non-shadow tiddlers contribute nothing to the output.\n\n<<.operator-examples \"shadowsource\">>\n"
},
"sign Operator": {
"title": "sign Operator",
"caption": "sign",
"created": "20190613084919354",
"modified": "20190613085044655",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "replaces each input number with -1, 0 or +1 according to whether the number is negative, zero, or positive",
"op-purpose": "return -1, 0 or +1 for a list of numbers according to whether each number is negative, zero, or positive",
"tags": "[[Unary Mathematics Operators]] [[Filter Operators]] [[Mathematics Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.20\">> See [[Mathematics Operators]] for an overview.\n\n<<.operator-examples \"sign\">>\n"
},
"sort Operator": {
"title": "sort Operator",
"created": "20140410103123179",
"modified": "20150203191228000",
"tags": "[[Filter Operators]] [[Common Operators]] [[Field Operators]] [[Order Operators]] [[Negatable Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "sort",
"op-purpose": "sort the input by text field",
"op-input": "a [[selection of titles|Title Selection]]",
"op-parameter": "the name of a [[field|TiddlerFields]], defaulting to <<.field title>>",
"op-parameter-name": "F",
"op-output": "the input, sorted into ascending order by field <<.field F>>, treating field values as text",
"op-neg-output": "the input, likewise sorted into descending order",
"text": "The difference between capital and lowercase letters is ignored. Compare <<.olink sortcs>>.\n\n<<.operator-examples \"sort\">>\n"
},
"sortan Operator": {
"title": "sortan Operator",
"caption": "sortan",
"created": "20180222071605739",
"modified": "20180223012553446",
"op-input": "a [[selection of titles|Title Selection]]",
"op-neg-output": "the input, likewise sorted into descending order",
"op-output": "the input, sorted into ascending order by field <<.field F>>, treating field values as alphanumerics",
"op-parameter": "the name of a [[field|TiddlerFields]], defaulting to <<.field title>>",
"op-parameter-name": "F",
"op-purpose": "sort the input by text field considering them as alphanumerics",
"tags": "[[Filter Operators]] [[Common Operators]] [[Field Operators]] [[Order Operators]] [[Negatable Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "The difference between uppercase and lowercase letters is ignored.\n\n<<.operator-examples \"sortan\">>\n"
},
"sortby Operator": {
"title": "sortby Operator",
"caption": "sortby",
"created": "20151017145021839",
"modified": "20151108052142057",
"op-input": "a list of items",
"op-output": "all items sorted by lookup list",
"op-parameter": "a list specifying the order in which to sort the current list",
"op-parameter-name": "order",
"op-purpose": "sort the current list in the order of the list referenced in the operand",
"tags": "[[Filter Operators]] [[Order Operators]] [[Listops Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-examples \"sortby\">>\n"
},
"sortcs Operator": {
"title": "sortcs Operator",
"caption": "sortcs",
"created": "20140410103123179",
"modified": "20150417125704503",
"op-input": "a [[selection of titles|Title Selection]]",
"op-neg-output": "the input, likewise sorted into descending order",
"op-output": "the input, sorted into ascending order by field <<.field F>>, treating field values as text",
"op-parameter": "the name of a [[field|TiddlerFields]], defaulting to <<.field title>>",
"op-parameter-name": "F",
"op-purpose": "sort the input by text field, treating upper and lower case as different",
"tags": "[[Filter Operators]] [[Field Operators]] [[Order Operators]] [[Negatable Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "Capital and lowercase letters are treated as different. Compare <<.olink sort>>.\n\n<<.operator-examples \"sortcs\">>\n"
},
"split Operator": {
"title": "split Operator",
"caption": "split",
"created": "20190613153944647",
"modified": "20190613154541225",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "the input titles split into separate items according to the specified separator <<.place S>>",
"op-parameter": "The substring at which to split each title",
"op-parameter-name": "S",
"op-purpose": "returns each item in the list split into separate strings according to the specified separator <<.place S>>; duplicates are <<.em not>> removed",
"tags": "[[Filter Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.20\">>\n\nNote that in some circumstances the <<.op split>> operator will include blank items in the list of results. For example, \n\n```\n[[the band thethe are the best the]split[the]]\n```\n\nThe following results are returned:\n\n```\n[\"\", \" band \", \"\", \" are \", \" best \", \"\"]\n```\n\nWhere it might be expected that the results would be:\n\n```\n[\" band \", \" are \", \" best \"]\n```\n\nThe blank items mark the boundaries between matches. If they are not required they can be removed with the ''blank'' category of the [[is Operator]]: `[[the band thethe are the best the]split[the]!is[blank]]`.\n\nThe reason that the blank items can be useful is that they allow search and replace operations to be constructed from a combination of the [[split Operator]] or [[splitregexp Operator]] and the [[join Operator]]. For example:\n\n<<.operator-example 1 \"[[the band thethe are the best the]split[the]join[every]]\">>\n\n<<.operator-examples \"split\">>\n"
},
"splitbefore Operator": {
"title": "splitbefore Operator",
"created": "20150126142522000",
"modified": "20150221193759000",
"tags": "[[Filter Operators]] [[String Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "splitbefore",
"op-purpose": "select a delimited prefix from each input title",
"op-input": "a [[selection of titles|Title Selection]]",
"op-parameter": "a string of characters marking the end of the prefix",
"op-parameter-name": "S",
"op-output": "the prefix, up to and including <<.place S>>, of each input title",
"text": "Each input title is processed in turn.\n\n* A title that contains <<.place S>> contributes everything up to and including <<.place S>>.\n* A title that doesn't contain <<.place S>> simply contributes itself to the output.\n\nContributions are [[dominantly appended|Dominant Append]] to the output.\n\nThe [[table-of-contents macros|Table-of-Contents Macros]] use this operator with `/` as the parameter.\n\n<<.operator-examples \"splitbefore\">>\n"
},
"splitregexp Operator": {
"title": "splitregexp Operator",
"caption": "splitregexp",
"created": "20190613154722705",
"modified": "20190613154924724",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "the input titles split into separate items according to the specified regular expression <<.place R>>",
"op-parameter": "The regular expression at which to split each title",
"op-parameter-name": "R",
"op-purpose": "returns each item in the list split into separate strings according to the specified regular expression <<.place R>>",
"op-suffix": "flags: ''m'' for multiline mode, ''i'' for case-insensitive mode",
"tags": "[[Filter Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.20\">>\n\nNote that in some circumstances the <<.op splitregexp>> operator will include blank items in the list of results. For example, \n\n```\n[[the band thethe are the best the]splitregexp[the]]\n```\n\nThe following results are returned:\n\n```\n[\"\", \" band \", \"\", \" are \", \" best \", \"\"]\n```\n\nWhere it might be expected that the results would be:\n\n```\n[\" band \", \" are \", \" best \"]\n```\n\nThe blank items mark the boundaries between matches. If they are not required they can be removed with the ''blank'' category of the [[is Operator]]: `[[the band thethe are the best the]splitregexp[the]!is[blank]]`.\n\nThe reason that the blank items can be useful is that they allow search and replace operations to be constructed from a combination of the [[split Operator]] or [[splitregexp Operator]] and the [[join Operator]]. For example:\n\n<<.operator-example 1 \"[[nobody, really; wants; to see -- all this \\punctuation]splitregexp[,|;|-|\\\\]join[...]]\">>\n\nSyntax errors in the regular expression will cause the filter to return an error message. For example:\n\n<<.operator-example 2 \"[[the cat sat on the mat]splitregexp[\\]]\">>\n\n<<.operator-examples \"splitregexp\">>\n"
},
"storyviews Operator": {
"title": "storyviews Operator",
"created": "20150126141718000",
"modified": "20150203191420000",
"tags": "[[Filter Operators]] [[Special Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "storyviews",
"op-purpose": "select the names of all the story views",
"op-input": "ignored",
"op-parameter": "none",
"op-output": "the name of each story view",
"text": "The names are those exported by [[modules|Modules]] whose <<.field module-type>> is <<.value storyview>>.\n\n<<.operator-examples \"storyviews\">>\n"
},
"stringify Operator": {
"title": "stringify Operator",
"caption": "stringify",
"created": "20161017153038029",
"modified": "20171029155143797",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "the input with ~JavaScript string encodings applied",
"op-parameter": "",
"op-parameter-name": "",
"op-purpose": "apply ~JavaScript string encoding to a string",
"tags": "[[Filter Operators]] [[String Operators]]",
"type": "text/vnd.tiddlywiki",
"from-version": "5.1.14",
"text": "The following substitutions are made:\n\n|!Character |!Replacement |\n|`\\` |`\\\\` |\n|`\"` |`\\\"` |\n|`\\r` (carriage return) |`\\\\r` |\n|`\\n` (line feed) |`\\\\n` |\n|`\\x08` (backspace) |`\\\\b` |\n|`\\x0c` (form feed) |`\\\\f` |\n|`\\t` (tab) |`\\\\t` |\n|Characters from 0x00 to 0x1f and characters from 0x80 to 0xffff |`\\\\u####` where #### is four hex digits |\n\nAlso see the [[jsonstringify Operator]].\n\n<<.operator-examples \"stringify\">>\n"
},
"subfilter Operator": {
"title": "subfilter Operator",
"caption": "subfilter",
"created": "20181031175129475",
"modified": "20181031175129475",
"op-input": "a [[selection of titles|Title Selection]] passed as input to the subfilter",
"op-neg-input": "a [[selection of titles|Title Selection]] passed as input to the subfilter",
"op-neg-output": "those input titles that are <<.em not>> returned from the subfilter <<.place S>>",
"op-output": "the [[selection of titles|Title Selection]] returned from the subfilter <<.place S>>",
"op-parameter": "a [[filter expression|Filter Expression]]",
"op-parameter-name": "S",
"op-purpose": "select titles from the operand interpreted as a [[filter expression|Filter Expression]]",
"tags": "[[Filter Operators]] [[Field Operators]] [[Selection Constructors]] [[Negatable Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.18\">> Note that the subfilter operator was introduced in version 5.1.18 and is not available in earlier versions.\n\n<<.tip \" Literal filter operands cannot contain square brackets but you can work around the issue by using a variable:\">>\n\n```\n<$set name=\"myFilter\" value=\"[tag[one]]\">\n<$list filter=\"[all[tiddlers]subfilter<myFilter>]\">\n...\n```\n\n<<.operator-examples \"subfilter\">>\n"
},
"subtiddlerfields Operator": {
"title": "subtiddlerfields Operator",
"caption": "subtiddlerfields",
"created": "20180403164138703",
"modified": "20180403164644231",
"op-input": "a [[selection|Title Selection]] of tiddler titles",
"op-output": "all field names present in the selected tiddlers within the plugin named <<.place P>>",
"op-parameter": "the title of a plugin",
"op-parameter-name": "P",
"op-purpose": "select all fields present in the selected tiddlers within a plugin",
"tags": "[[Filter Operators]] [[Special Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.operator-examples \"subtiddlerfields\">>\n"
},
"subtract Operator": {
"title": "subtract Operator",
"caption": "subtract",
"created": "20190611125542096",
"modified": "20190611125616692",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "the input as numbers, but with <<.place N>> subtracted from each one",
"op-parameter": "a number",
"op-parameter-name": "N",
"op-purpose": "treating each input title as a number, subtract from each the numeric value of the operand",
"tags": "[[Filter Operators]] [[Mathematics Operators]] [[Binary Mathematics Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.20\">> See [[Mathematics Operators]] for an overview.\n\n<<.operator-examples \"subtract\">>\n"
},
"suffix Operator": {
"title": "suffix Operator",
"created": "20140828133830424",
"modified": "20150203192738000",
"tags": "[[Filter Operators]] [[String Operators]] [[Negatable Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "suffix",
"op-purpose": "filter the input titles by how they end",
"op-input": "a [[selection of titles|Title Selection]]",
"op-parameter": "a string of characters",
"op-parameter-name": "S",
"op-output": "those input titles that end with <<.place S>>",
"op-neg-output": "those input tiddlers that do <<.em not>> end with <<.place S>>",
"text": "<<.s-matching-is-case-sensitive>>\n\n<<.operator-examples \"suffix\">>\n"
},
"sum Operator": {
"title": "sum Operator",
"caption": "sum",
"created": "20190611155400623",
"modified": "20190611155953322",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "the result of adding together the input as numbers",
"op-purpose": "produce the sum of the input numbers",
"tags": "[[Reducing Mathematics Operators]] [[Filter Operators]] [[Mathematics Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.20\">> See [[Mathematics Operators]] for an overview.\n\n<<.operator-examples \"sum\">>\n"
},
"Filter Expression": {
"title": "Filter Expression",
"created": "20150124182421000",
"modified": "20190610165329062",
"tags": "[[Filter Syntax]]",
"type": "text/vnd.tiddlywiki",
"text": "<$railroad text=\"\"\"\n[{:\n [: [[whitespace|\"Filter Whitespace\"]] ]\n (\"+\"|\"~\"|:-|\"-\"|\"=\")\n [[run|\"Filter Run\"]]\n}]\n\"\"\"/>\n\nA <<.def \"filter expression\">> is the outermost level of the [[filter syntax|Filter Syntax]]. It consists of one or more [[runs|Filter Run]].\n\nIf a run has:\n\n* no prefix, its output titles are [[dominantly appended|Dominant Append]] to the filter's output\n* <<.from-version \"5.1.20\">> the prefix `=`, output titles are appended to the filter's output without de-duplication\n* the prefix `-`, output titles are <<.em removed>> from the filter's output (if such tiddlers exist)\n* the prefix `+`, it receives the filter output so far as its input; its output then <<.em \"replaces\">> all filter ouput so far and forms the input for the next run\n* <<.from-version \"5.1.18\">> the prefix `~`, if the filter output so far is an empty list then the output titles of the run are [[dominantly appended|Dominant Append]] to the filter's output. If the filter output so far is not an empty list then the run is ignored\n\nIn technical / logical terms:\n\n|!Run |!Interpretation |!Output |\n|`run` |de-duplicated union of sets |... OR run |\n|`=run` |union of sets without de-duplication |... OR run |\n|`+run` |intersection of sets |... AND run |\n|`-run` |difference of sets |... AND NOT run |\n|`~run` |else |... ELSE run |\n\nThe input of a run is normally a list of all the non-[[shadow|ShadowTiddlers]] tiddler titles in the wiki (in no particular order). But the `+` prefix can change this:\n\n|Prefix|Input|h\n|`-`, `~`, `=` or none| <$link to=\"all Operator\">`[all[]]`</$link> tiddler titles, unless otherwise determined by the first [[filter operator|Filter Operators]]|\n|`+`|the filter output of all previous runs so far|\n\nPrecisely because of varying inputs, be aware that both prefixes `-` and `+` do not behave inverse to one another!\n\nFor example, in both of the following, `$:/baz` will only be removed if it actually exists:\n\n* <$link to=\"is Operator\"> `foo bar $:/baz -[is[system]]`</$link>\n* <$link to=\"prefix Operator\">`foo bar $:/baz -[prefix[$:/]]`</$link>\n\nTo understand why, consider the input for both final runs with their `-` prefix.\n\nIn order to remove `$:/baz` in any case, existing or not, simply use the `+` prefix with [[negated filter operators|Filter Operators]]:\n\n* <$link to=\"is Operator\">`foo bar $:/baz +[!is[system]]`</$link>\n* <$link to=\"prefix Operator\">`foo bar $:/baz +[!prefix[$:/]]`</$link>\n"
},
"Filter Parameter": {
"title": "Filter Parameter",
"created": "20150220152540000",
"modified": "20150220152540000",
"tags": "[[Filter Syntax]]",
"type": "text/vnd.tiddlywiki",
"text": "<$railroad text=\"\"\"\n( \"[\" [:{/\"anything but ]\"/}] \"]\"\n |\n \"{\" [:{/\"anything but }\"/}] \"}\"\n |\n \"<\" [:{/\"anything but >\"/}] \">\"\n)\n\"\"\"/>\n\nThe parameter to a [[filter operator|Filter Operators]] can be:\n\n;<<.def hard>>\n: `[like this]`\n: The parameter is the exact text that appears between the square brackets.\n;<<.def soft>>\n: <<.def indirect>>\n:: `{like this}`\n:: The parameter is the text indicated by the [[text reference|TextReference]] whose name appears between the curly brackets, i.e. a [[field|TiddlerFields]] of a specified tiddler, or the value of a property of a specified [[data tiddler|DataTiddlers]].\n: <<.def variable>>\n:: `<like this>`\n:: The parameter is the current value of the [[variable|Variables]] whose name appears between the angle brackets. Macro parameters are <<.em not>> supported.\n"
},
"Filter Run": {
"title": "Filter Run",
"created": "20150124182117000",
"modified": "20150129133716000",
"tags": "[[Filter Syntax]]",
"type": "text/vnd.tiddlywiki",
"text": "<$railroad text=\"\"\"\n( \"[\" { [[step|\"Filter Step\"]] } \"]\"\n |\n [:{/\"anything but [ ] or whitespace\"/}]\n |\n '\"' [:{/'anything but \"'/}] '\"'\n |\n \"'\" [:{/\"anything but '\"/}] \"'\"\n)\n\"\"\"/>\n\nA <<.def run>> consists of [[steps|Filter Step]], and it outputs a [[selection|Title Selection]] that contributes to a larger [[filter expression|Filter Expression]].\n\nThe steps are processed from left to right. The input to the first step is same as the input to the run. For each subsequent step, the input is the output of the previous step.\n\n{{Selection Constructors}}\n\nThe lower three options in the diagram match syntax like `HelloThere`, `\"HelloThere\"`, `'HelloThere'` and `\"Filter Operators\"`. They are short for `[title[...]]`.\n\nThe quoted options exist to support titles that contain square brackets, as in `\"An [[[[Unusual]]]] Tiddler\"`.\n"
},
"Filter Step": {
"title": "Filter Step",
"created": "20150124182127000",
"modified": "20150124191051000",
"tags": "[[Filter Syntax]]",
"type": "text/vnd.tiddlywiki",
"text": "<$railroad text=\"\"\"\n[:\"!\"]\n[: [[operator|\"Filter Operators\"]] [:\":\" suffix] ]\n[[parameter|\"Filter Parameter\"]]\n\"\"\"/>\n\nA <<.def step>> represents a single operation within a [[filter|Filter Syntax]].\n\nIn programming terms, it is akin to a function call to which [[the step's input|Filter Run]] is passed as an implicit parameter. A step's output is a [[selection|Title Selection]] that contributes to a [[run|Filter Run]] and hence to the entire [[filter expression|Filter Expression]] that contains it.\n\nThe step's <<.def operator>> is drawn from a list of [[predefined keywords|Filter Operators]], which can be extended by plugins. Any unrecognised operator is treated as if it was the suffix to the <<.olink field>> operator. If a step's operator is omitted altogether, it defaults to `title`.\n\nThe <<.def suffix>> is additional text, often the name of a [[field|TiddlerFields]], that extends the meaning of certain operators.\n\nMany steps require an explicit <<.def parameter>> value, also known as an <<.def operand>>, that further defines what the step is to do.\n"
},
"Filter Syntax": {
"title": "Filter Syntax",
"created": "20140210141217955",
"modified": "20150124184229000",
"tags": "Filters",
"type": "text/vnd.tiddlywiki",
"list": "[[Filter Expression]] [[Filter Run]] [[Filter Step]] [[Filter Parameter]] [[Filter Whitespace]]",
"text": "<<.preamble \"\"\"[[Filters]] follow a grammar that is presented here, using [[railroad diagrams|Railroad Diagrams]], for those who find formal syntax descriptions helpful. However, you can [[learn to write filters|Introduction to filter notation]] without needing to understand this group of tiddlers.\"\"\">>\n\nA <<.def filter>> is a pipeline for transforming an <<.def input>> into an <<.def output>>. Both the input and the output are [[ordered sets of titles|Title Selection]] of things like tiddlers and fields.\n\nFilters are [[expressions|Filter Expression]] constructed from smaller building blocks, called [[runs|Filter Run]] and [[steps|Filter Step]], each of which also transforms an input to an output.\n\nA filter starts with an empty output. Its runs are processed from left to right, progressively modifying the output.\n\nHere are details of the various building blocks involved:\n\n<<list-links \"[tag[Filter Syntax]]\">>\n"
},
"Filter Whitespace": {
"title": "Filter Whitespace",
"created": "20150124182304000",
"modified": "20150125105243000",
"tags": "[[Filter Syntax]]",
"type": "text/vnd.tiddlywiki",
"text": "<$railroad text=\"\"\"\n{( \"space\" | \"tab\" | \"linefeed\" | \"return\" | \"vertical tab\" | \"formfeed\" )}\n\"\"\"/>\n\nWhitespace characters can appear between each [[run|Filter Run]] of a [[filter expression|Filter Expression]].\n"
},
"tag Operator": {
"title": "tag Operator",
"caption": "tag",
"created": "20140410103123179",
"modified": "20161126122900712",
"op-input": "a [[selection of titles|Title Selection]]",
"op-neg-output": "those input tiddlers that do <<.em not>> have tag <<.place T>>",
"op-output": "those input tiddlers that have tag <<.place T>>",
"op-parameter": "the title of a [[tag|Tagging]]",
"op-parameter-name": "T",
"op-purpose": "filter the input by tag",
"op-suffix": "<<.from-version \"5.1.14\">> optional `strict` flag",
"op-suffix-name": "S",
"tags": "[[Filter Operators]] [[Common Operators]] [[Tag Operators]] [[Negatable Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "The output is [[sorted|Order of Tagged Tiddlers]] using the tag's <<.field list>> field and the tiddlers' <<.field list-before>> and <<.field list-after>> fields.\n\nThe behaviour when <<.place T>> is empty depends on the settings of the <<.place S>> optional suffix:\n\n* if <<.place T>> is missing and <<.place S>> is either missing or set to \"loose\", then the output of `tag` is empty, and the output of `!tag` is a copy of the input.\n* <<.from-version \"5.1.14\">> if <<.place T>> is missing and <<.place S>> is set to \"strict\", then the output of both `tag` and `!tag` is a copy of the input\n\n<<.operator-examples \"tag\">>\n"
},
"tagging Operator": {
"title": "tagging Operator",
"created": "20140410103123179",
"modified": "20150203191620000",
"tags": "[[Filter Operators]] [[Tag Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "tagging",
"op-purpose": "find the tiddlers that have the input tags",
"op-input": "a [[selection|Title Selection]] of [[tags|Tagging]]",
"op-parameter": "none",
"op-output": "the titles of any tiddlers that carry the input tags",
"text": "Each input tag is processed in turn. The list of tiddlers carrying that tag is generated, [[sorted|Order of Tagged Tiddlers]], and then [[dominantly appended|Dominant Append]] to the operator's overall output.\n\n<<.operator-examples \"tagging\">>\n"
},
"tags Operator": {
"title": "tags Operator",
"created": "20140410103123179",
"modified": "20150203191657000",
"tags": "[[Filter Operators]] [[Tag Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "tags",
"op-purpose": "select all tags of the input tiddlers",
"op-input": "a [[selection of titles|Title Selection]]",
"op-parameter": "none",
"op-output": "all the tags carried by the input tiddlers",
"text": "Each input title is processed in turn. The corresponding tiddler's tags are retrieved (in order of appearance in the <<.field tags>> field) and then [[dominantly appended|Dominant Append]] to the operator's output.\n\n<<.operator-examples \"tags\">>\n"
},
"then Operator": {
"title": "then Operator",
"caption": "then",
"created": "20190802112756430",
"modified": "20190802113849579",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "the input titles with each one replaced by the string <<.place T>>",
"op-parameter": "a string",
"op-parameter-name": "T",
"op-purpose": "replace input titles by a constant string",
"tags": "[[Conditional Operators]] [[Filter Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.20\">> See [[Conditional Operators]] for an overview.\n\n<<.operator-examples \"then\">>\n"
},
"title Operator": {
"title": "title Operator",
"created": "20140410103123179",
"modified": "20150203191749000",
"tags": "[[Filter Operators]] [[Common Operators]] [[Selection Constructors]] [[Negatable Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "title",
"op-purpose": "select a single title",
"op-input": "ignored",
"op-neg-input": "a [[selection of titles|Title Selection]]",
"op-parameter": "a tiddler title",
"op-parameter-name": "T",
"op-output": "a selection containing only <<.place T>>",
"op-neg-output": "the input, but with tiddler <<.place T>> filtered out if it exists in the wiki",
"text": "`[title[An Example]]` can be shortened to `[[An Example]]`, because <<.op title>> is the default filter operator.\n\n<<.op title>> is a [[constructor|Selection Constructors]] (except in the form `!title`), but <<.olink2 \"field:title\" field>> is a [[modifier|Selection Constructors]].\n\n<<.operator-examples \"title\">>\n"
},
"titlecase Operator": {
"title": "titlecase Operator",
"caption": "titlecase",
"created": "20190620135008529",
"modified": "20190620135008529",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "the input titles with each word capitalised",
"op-purpose": "returns each item in the list with each word capitalised",
"tags": "[[Filter Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.20\">>\n\nSee also [[lowercase Operator]], [[uppercase Operator]], [[sentencecase Operator]].\n\n<<.tip \" This operator does not change anything except the first letter of each word, so `[[aBcD eFgH]]` would become `[[ABcD EFgH]]`. If you want `[[Abcd Efgh]]`, then use a filter like `[lowercase[]titlecase[]]`.\">>\n\n<<.operator-examples \"titlecase\">>\n"
},
"trim Operator": {
"title": "trim Operator",
"caption": "trim",
"created": "20190613153740241",
"modified": "20190613153820282",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "the input titles with whitespace trimmed from the start and end",
"op-purpose": "returns each item in the list with whitespace trimmed from the start and end",
"tags": "[[Filter Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.20\">>\n\n<<.operator-examples \"trim\">>\n"
},
"trunc Operator": {
"title": "trunc Operator",
"caption": "trunc",
"created": "20190613084703801",
"modified": "20190613084829253",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "truncates each of the input numbers to their integer part, removing any fractional part",
"op-purpose": "truncates a list of numbers to their integer part, removing any fractional part",
"tags": "[[Unary Mathematics Operators]] [[Filter Operators]] [[Mathematics Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.20\">> See [[Mathematics Operators]] for an overview.\n\n<<.tip \" The trunc operator rounds towards zero. To round away from zero, use [[untrunc|untrunc Operator]].\">>\n\n<<.operator-examples \"trunc\">>\n"
},
"untagged Operator": {
"title": "untagged Operator",
"created": "20140410103123179",
"modified": "20150203191821000",
"tags": "[[Filter Operators]] [[Tag Operators]] [[Negatable Operators]]",
"type": "text/vnd.tiddlywiki",
"caption": "untagged",
"op-purpose": "discard any input titles that have tags",
"op-input": "a [[selection of titles|Title Selection]]",
"op-parameter": "none",
"op-output": "those input tiddlers that have no tags",
"op-neg-output": "those input tiddlers that have at least one tag",
"text": "A tiddler is deemed to have no tags if it:\n\n* doesn't exist\n* doesn't have a <<.field tags>> field\n* has an empty <<.field tags>> field\n\n<<.operator-examples \"untagged\">>\n"
},
"untrunc Operator": {
"title": "untrunc Operator",
"caption": "untrunc",
"created": "20190617163327756",
"modified": "20190617163327756",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "rounds each of the input numbers to the next integer with largest absolute value, that is, away from zero",
"op-purpose": "rounds a list of numbers to the next integer with largest absolute value, that is, away from zero",
"tags": "[[Unary Mathematics Operators]] [[Filter Operators]] [[Mathematics Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.20\">> See [[Mathematics Operators]] for an overview.\n\n<<.tip \" This is the inverse operation of [[trunc|trunc Operator]]: trunc rounds to zero, but untrunc rounds away from zero.\">>\n\n<<.operator-examples \"untrunc\">>\n"
},
"uppercase Operator": {
"title": "uppercase Operator",
"caption": "uppercase",
"created": "20190613153420821",
"modified": "20190619110837473",
"op-input": "a [[selection of titles|Title Selection]]",
"op-output": "the input titles with each lowercase letter replaced by the equivalent uppercase letter",
"op-purpose": "returns each item in the list as uppercase",
"tags": "[[Filter Operators]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.20\">>\n\nSee also [[lowercase Operator]] and [[sentencecase Operator]].\n\n<<.operator-examples \"uppercase\">>\n"
},
"variables Operator": {
"title": "variables Operator",
"created": "20190330100101453",
"modified": "20190330100101453",
"tags": "[[Filter Operators]] [[Special Operators]] [[Selection Constructors]]",
"type": "text/vnd.tiddlywiki",
"caption": "variables",
"op-purpose": "select the names of all the actively defined variables",
"op-input": "ignored",
"op-parameter": "none",
"op-output": "the names of all the actively defined variables",
"text": "<<.from-version \"5.1.20\">> The primary purpose of the `variables` operator is to implement the [[dumpvariables Macro]]:\n\n<$codeblock code={{$:/core/macros/dumpvariables}}/>\n\n<<.operator-examples \"variables\">>\n"
},
"GettingStarted - Android": {
"title": "GettingStarted - Android",
"caption": "Android",
"created": "20140811171036268",
"modified": "20160430121735629",
"type": "text/vnd.tiddlywiki",
"text": "There are three options for using TiddlyWiki on Android:\n\n! Using Firefox and TiddlyFox\n\n{{Saving with TiddlyFox on Android}}\n\n! Using the AndTidWiki App\n\n{{Saving on Android}}\n\n! Using Node.js in Termux\n\n{{Serving TW5 from Android}}\n"
},
"GettingStarted - Chrome": {
"title": "GettingStarted - Chrome",
"caption": "Chrome",
"created": "20140811165935523",
"modified": "20140811170107969",
"type": "text/vnd.tiddlywiki",
"text": "TiddlyWiki on Google Chrome can only save changes using the HTML5-compatible fallback saver module.\n\n{{Saving with the HTML5 fallback saver}}\n"
},
"GettingStarted - Firefox": {
"title": "GettingStarted - Firefox",
"caption": "Firefox",
"created": "20140811170425199",
"modified": "20140811170527083",
"type": "text/vnd.tiddlywiki",
"text": "Firefox provides the best user experience for using TiddlyWiki with the TiddlyFox browser extension.\n\n{{Saving with TiddlyFox}}\n"
},
"GettingStarted - Internet Explorer": {
"title": "GettingStarted - Internet Explorer",
"caption": "Internet Explorer",
"created": "20140811172058274",
"modified": "20140811172247864",
"type": "text/vnd.tiddlywiki",
"text": "{{Saving with TiddlyIE}}\n\nThe [[Windows HTA Hack]] describes an alternative method of using TiddlyWiki with Internet Explorer."
},
"GettingStarted - Node.js": {
"title": "GettingStarted - Node.js",
"caption": "Node.js",
"created": "20140811172010003",
"modified": "20140811172012677",
"type": "text/vnd.tiddlywiki",
"text": "{{Installing TiddlyWiki on Node.js}}\n"
},
"GettingStarted - Online": {
"title": "GettingStarted - Online",
"caption": "Online",
"created": "20160216191710789",
"modified": "20170222152427476",
"tags": "",
"type": "text/vnd.tiddlywiki",
"text": "TiddlyWiki can also be hosted on online services such as Dropbox and Cloudant.\n\n;Dropbox (syncs the entire HTML file)\n:To edit files stored in your Dropbox, go to http://tiny.cc/tw5inthesky/. This will allow you to open any HTML files found. \n;Cloudant (or another CouchDB-type server) (syncs individual tiddlers)\n:http://noteself.github.io/"
},
"GettingStarted - Safari": {
"title": "GettingStarted - Safari",
"caption": "Safari",
"created": "20140811171121022",
"modified": "20150325173956502",
"type": "text/vnd.tiddlywiki",
"text": "TiddlyWiki on Safari can only save changes using the manual HTML5-compatible fallback saver module.\n\n{{Saving on Safari}}\n\n"
},
"GettingStarted - iOS": {
"title": "GettingStarted - iOS",
"caption": "iPad/iPhone",
"created": "20140811170918707",
"modified": "20140811170921731",
"type": "text/vnd.tiddlywiki",
"text": "{{Saving on iPad/iPhone}}\n"
},
"GettingStarted": {
"title": "GettingStarted",
"created": "20131129090249275",
"modified": "20171113162547685",
"tags": "[[Working with TiddlyWiki]]",
"type": "text/vnd.tiddlywiki",
"text": "Click here to download an empty copy of TiddlyWiki: {{$:/editions/tw5.com/snippets/download-empty-button}}\n\nThe next step is to choose a method for saving changes. There's a wide variety of methods available, with different features and limitations. Click on the badge for a method to see more information about it. You can also click on one of the platform filters to restrict the listing to methods that work with that platform.\n\n<<.warning \"Don't attempt to use the browser ''File''/''Save'' menu option to save changes (it doesn't work)\">>\n\n{{Saving}}\n"
},
"A Gentle Guide to TiddlyWiki": {
"title": "A Gentle Guide to TiddlyWiki",
"created": "20150325170720682",
"modified": "20150926171049725",
"tags": "HelloThere",
"type": "text/vnd.tiddlywiki",
"text": "TiddlyWiki is an incredibly flexible and versatile tool that is conceived and constructed differently than most software. This can make it hard to understand until the moment when it clicks, and becomes a seamless extension of your brain.\n\nStarting with the basics, TiddlyWiki is a note-taking web application you can download for free, store wherever you like and customise however you wish. Use it to capture, organise and share your notes in ways that word processors and other note-taking tools cannot.\n\n~TiddlyWiki is designed to be non-linear, structuring content with stories, tags, hyperlinks, and other features. You can organise and retrieve your notes in ways that conform to your personal thought patterns, rather than feel chained to one preset organisational structure.\n\nYou can use ~TiddlyWiki as a single file that you view and edit through any web browser, whether you are online or offline. Or you can use it as a powerful [[Node.js application|TiddlyWiki on Node.js]] that stores each of your notes as a separate file.\n\nHow can you make ~TiddlyWiki work for you? We recommend you start with our introductory documentation listed below, and then browse the TableOfContents, available in the Contents tab in the sidebar. Or just [[follow our simple instructions|GettingStarted]] and try it out for yourself!\n\n<<list-links \"[tag[HelloThere]]\">>\n\nAlso see [[TiddlyWiki Video Tutorials by Francis Meetze]]"
},
"Discover TiddlyWiki": {
"title": "Discover TiddlyWiki",
"created": "20140904121000000",
"modified": "20151023165341339",
"tags": "HelloThere",
"type": "text/vnd.tiddlywiki",
"text": "You've never seen //anything// like ~TiddlyWiki. ~TiddlyWiki is:\n\n:: a tool, \n:: a toolbox, \n:: a community, \n:: and a philosophy. \n\n! ~TiddlyWiki is a Tool\n\n''~TiddlyWiki is first and foremost a tool:'' it is a free downloadable tool for capturing and organising content from the web, from your documents or from your brain. It is a tool for note-taking, bookmarking, pinning, writing, managing to-do lists and projects, collaborating, blogging, and publishing.\n\nIn ~TiddlyWiki you create or paste content into notes called tiddlers, then connect your tiddlers with hyperlinks and tags. You can then quickly retrieve your notes through features such as tag pills, sidebar tabs, and ~TiddlyWiki's lightning fast search window. You can even dynamically include one tiddler's content inside another - similar to using building blocks - to create articles, lists, presentations and more.\n\n! ~TiddlyWiki is a Toolbox\n\nIn addition to being a versatile tool, ''~TiddlyWiki is also a toolbox.''\n\nWhere other note-taking products hook you with the basic program then charge you for the really helpful features, ~TiddlyWiki has an ever-expanding collection of completely free visual themes, colour palettes, plugins, widgets and macros, which you can then mix and match so that you can tweak and tailor your ~TiddlyWiki to get it just the way you want it. \n\n! ~TiddlyWiki is also a Community\n\nWe are a [[community|Community]] of users and developers who help each other imagine new ways of thinking and organising and create new solutions, so that ~TiddlyWiki is continually adapting to better serve your needs. ~TiddlyWiki users and developers share questions and advice at a ~TiddlyWiki Google group. They also create tutorials, adaptations, and plugins to enhance your ~TiddlyWiki experience. See the section ''Community'' of the TableOfContents for more details.\n\n! Finally, ~TiddlyWiki is a philosophy\n\nThe purpose of taking and organising a note (or recording any kind of content) is to be able to retrieve it later. If you can't find your notes in your note-taking system, your note-taking becomes a colossal waste of time.\n\nThe [[TiddlyWiki philosophy|Philosophy of Tiddlers]] is that the best way to take notes is to separate them into tiddlers, the smallest semantic units possible. A tiddler might be an image, a webpage link, a concept, the definition of a term, or a specific customisation such as a macro.\n\nThese tiddlers can then be woven together to create longer units: stories, articles, lists, image galleries, and much more. ~TiddlyWiki's features such as tagging, hyperlinking, and filters are specially designed to help you relate and connect tiddlers together in multiple ways, facilitating your future retrieval of your notes and even helping you see unexpected relationships among your tiddlers and the information they contain.\n"
},
"HelloThere": {
"title": "HelloThere",
"created": "20130822170200000",
"list": "[[A Gentle Guide to TiddlyWiki]] [[Discover TiddlyWiki]] [[Some of the things you can do with TiddlyWiki]] [[Ten reasons to switch to TiddlyWiki]] Examples [[What happened to the original TiddlyWiki?]] [[HelloThumbnail - TWEUM2017]]",
"modified": "20190809141328809",
"tags": "TableOfContents",
"type": "text/vnd.tiddlywiki",
"text": "''Have you ever had the feeling that your head is not quite big enough to hold everything you need to remember?''\n\nWelcome to TiddlyWiki, a unique [[non-linear|Philosophy of Tiddlers]] notebook for [[capturing|Creating and editing tiddlers]], [[organising|Structuring TiddlyWiki]] and [[sharing|Sharing your tiddlers with others]] complex information.\n\nUse it to keep your [[to-do list|TaskManagementExample]], to plan an [[essay or novel|\"TiddlyWiki for Scholars\" by Alberto Molina]], or to organise your wedding. Record every thought that crosses your brain, or build a flexible and responsive website.\n\n<div style=\"font-size:0.7em;text-align:center;margin-top:2em;margin-bottom:2em;\">\n<<list-thumbnails filter:\"[tag[HelloThumbnail]]\" width:\"168\" height:\"95\">>\n</div>\n\nUnlike conventional online services, TiddlyWiki lets you choose where to keep your data, guaranteeing that in the decades to come you will [[still be able to use|Future Proof]] the notes you take today.\n\n<div style=\"font-size:0.7em;text-align:center;margin:3em auto;\">\n<a href=\"http://groups.google.com/group/TiddlyWiki\" class=\"tc-btn-big-green\" style=\"border-radius:4px;background-color:#FF8C19;\" target=\"_blank\" rel=\"noopener noreferrer\">\n{{$:/core/images/help}} Forum\n</a>\n<a href=\"https://www.youtube.com/c/JeremyRuston\" class=\"tc-btn-big-green\" style=\"border-radius:4px;background-color:#e52d27;\" target=\"_blank\" rel=\"noopener noreferrer\">\n{{$:/core/images/video}} ~YouTube\n</a>\n<a href=\"https://twitter.com/TiddlyWiki\" class=\"tc-btn-big-green\" style=\"border-radius:4px;background-color:#5E9FCA;\" target=\"_blank\" rel=\"noopener noreferrer\">\n{{$:/core/images/twitter}} Twitter\n</a>\n<a href=\"https://github.com/Jermolene/TiddlyWiki5\" class=\"tc-btn-big-green\" style=\"border-radius:4px;background-color:#444;\" target=\"_blank\" rel=\"noopener noreferrer\">\n{{$:/core/images/github}} ~GitHub\n</a>\n<a href=\"https://gitter.im/TiddlyWiki/public\" class=\"tc-btn-big-green\" style=\"border-radius:4px;background-color:#753a88;background-image:linear-gradient(to left,#cc2b5e,#753a88);\" target=\"_blank\" rel=\"noopener noreferrer\">\n{{$:/core/images/gitter}} Gitter\n</a>\n</div>\n\n<<<.tc-big-quote\n''The ~TiddlyWiki is the best software I've ever found for organising my ideas.''\n\nIt's well worth spending an hour or so playing with it to see how it can help you. This will be time well-spent and will change how you think and how you organise your ideas.\n<<< [[Joe Armstrong, Co-inventor of Erlang|https://joearms.github.io/]]\n\n<<<.tc-big-quote\n''~TiddlyWiki gets a Gearhead rating of 6 out of 5 (it's that good).''\n\nFinding code that works flawlessly after just two or three years is magical enough but after seven years?!\n<<< [[Mark Gibbs, Network World|http://www.networkworld.com/article/3028098/open-source-tools/tiddlywiki-a-free-open-source-wiki-revisited.html]]\n"
},
"HelloThumbnail": {
"title": "HelloThumbnail",
"created": "20150414070451144",
"list": "[[HelloThumbnail - Introduction Video]] [[HelloThumbnail - Gentle Guide]] [[HelloThumbnail - Firefox Apocalypse]] [[HelloThumbnail - Latest Version]] [[HelloThumbnail - TiddlyMap]] [[HelloThumbnail - HelpingTiddlyWiki]] [[HelloThumbnail - Developers]] [[HelloThumbnail - Classic]]",
"modified": "20150414070948246",
"type": "text/vnd.tiddlywiki",
"text": ""
},
"Some of the things you can do with TiddlyWiki": {
"title": "Some of the things you can do with TiddlyWiki",
"created": "20140904090300000",
"modified": "20160602051709631",
"tags": "HelloThere",
"type": "text/vnd.tiddlywiki",
"text": "* Take notes, and use tags and hyperlinking to form relationships between your notes\n* Use tabs, tables, tag-based lists, and tables of contents to get organised\n* Bookmark your favorite websites (see an example at http://giffmex.org/experiments/tidmarks.html)\n* Keep track of tasks and appointments, and organise them by multiple tags (see our TaskManagementExample)\n* Inventory just about anything: your recipes, personal library, contacts, music collection, and more\n* Create a blog or website\n* Write a book\n* Organise your images into galleries (see our [[ImageGallery Example]])\n* Share the information in your ~TiddlyWiki with others, as an online file, as a file attachment, as a tiddler file, or as a link to a specific online tiddler (try clicking and dragging a tiddler from one ~TiddlyWiki file to another to see what happens)\n* Draw a sketch (Edit [[Motovun Jack.jpg]] and start drawing over the image to see what happens)\n* Use familiar web user interface elements such as lightboxes - see SampleWizard\n* Create a slideshow presentation\n* Set up an entire local or online knowledgebase, with a central ~TiddlyWiki file linking to other ~TiddlyWiki files (http://recursos.giffmex.org is a Spanish online example of this)\n* Set up a data visualisation using tiddlers as data (see the visualisations at https://tiddlywiki.com/plugins/tiddlywiki/d3/)\n"
},
"Ten reasons to switch to TiddlyWiki": {
"title": "Ten reasons to switch to TiddlyWiki",
"created": "20140904085700000",
"modified": "20150414071655191",
"tags": "HelloThere",
"type": "text/vnd.tiddlywiki",
"text": "@@.tc-double-spaced-list\n# With ~TiddlyWiki you can organise your notes your way, not their way. Your notes conform to your way of thinking rather than being forced into a hierarchical straightjacket of notebooks and tabs\n# ~TiddlyWiki's nonlinear approach will actually make you think about your information in new and helpful ways\n# Finding your notes in ~TiddlyWiki is lightning fast\n# There are many ways to customise and adapt every aspect of ~TiddlyWiki\n# ~TiddlyWiki is free and is compatible with all platforms. Any web browser will open it. You don't need to purchase an expensive program or pay a subscription fee to use it\n# ~TiddlyWiki files promote the free sharing of information. There are many ways you can share your information from ~TiddlyWiki\n# With ~TiddlyWiki, your information is yours, and you store it where you want to - on your device, on a USB stick, in Dropbox, on your server\n# ~TiddlyWiki features an ever-growing number of plugins, themes, widgets, and languages\n# The online ~TiddlyWiki community is friendly and will do their best to give you the help you need\n# If you are a programmer, you have even more ways to play with ~TiddlyWiki. With ~TiddlyWiki, the more you know, the more fun you can have with it\n@@\n"
},
"What happened to the original TiddlyWiki?": {
"title": "What happened to the original TiddlyWiki?",
"tags": "HelloThere",
"created": "201409040851",
"modified": "201409040851",
"text": "<a class=\"tc-float-right tc-bordered-image\" href=\"https://classic.tiddlywiki.com/\" target=\"_blank\" rel=\"noopener noreferrer\">[img width=\"200\" [TiddlyWiki Classic.png]]</a>\n\nThe original [[Classic|TiddlyWikiClassic]] version of TiddlyWiki is still available at:\n\nhttps://classic.tiddlywiki.com.\n\nNote that the [[current version|TiddlyWiki5]] of TiddlyWiki is not fully backwards compatible with TiddlyWikiClassic. Content can be imported but will need massaging to adapt to the new WikiText format. A ''tw2parser'' plugin is under development that will allow faithful display of most content created for TiddlyWikiClassic:\n\nhttps://tiddlywiki.com/plugins/tiddlywiki/tw2parser/\n"
},
"HelloThumbnail - Classic": {
"title": "HelloThumbnail - Classic",
"tags": "HelloThumbnail",
"color": "#D5B7EA",
"image": "TiddlyWiki Classic.png",
"caption": "~TiddlyWiki Classic",
"link": "TiddlyWikiClassic"
},
"HelloThumbnail - Developers": {
"title": "HelloThumbnail - Developers",
"tags": "HelloThumbnail",
"color": "#6B6E98",
"background-color": "#EAE57D",
"image": "Dev Thumbnail.jpg",
"caption": "Developers",
"link": "Developers"
},
"HelloThumbnail - Gentle Guide": {
"title": "HelloThumbnail - Gentle Guide",
"background-color": "#EDB431",
"caption": "A Gentle Guide",
"color": "#fff",
"created": "20150325172634195",
"image": "Motovun Jack.jpg",
"link": "A Gentle Guide to TiddlyWiki",
"modified": "20150414071032492",
"tags": "HelloThumbnail",
"type": "text/vnd.tiddlywiki",
"text": ""
},
"HelloThumbnail - HelpingTiddlyWiki": {
"title": "HelloThumbnail - HelpingTiddlyWiki",
"tags": "HelloThumbnail",
"color": "#B7D5EA",
"background-color": "#fff",
"caption": "Helping ~TiddlyWiki",
"link": "HelpingTiddlyWiki",
"image": "Tiddler Poster.png"
},
"HelloThumbnail - Introduction Video": {
"title": "HelloThumbnail - Introduction Video",
"tags": "HelloThumbnail",
"color": "red",
"background-color": "#fff",
"icon": "{{$:/core/images/video}}",
"caption": "Introduction to ~TiddlyWiki",
"link": "Introduction Video",
"image": "Introduction Video Thumbnail.jpg"
},
"HelloThumbnail - Latest Version": {
"title": "HelloThumbnail - Latest Version",
"tags": "HelloThumbnail",
"caption": "What's New in <<version>>",
"link": "Releases",
"image": "New Release Banner",
"color": "#fff"
},
"HelloThumbnail - TWEUM2017": {
"title": "HelloThumbnail - TWEUM2017",
"tags": "HelloThumbnail-disabled",
"color": "#fff",
"background-color": "#000",
"icon": "<span style=\"font-size:3.5em;font-weight:bold;text-shadow:1px 1px 3px rgba(0,0,0,1);\">2017</span>",
"image": "TWEUM Thumbnail.jpg",
"caption": "European Meetup 2017",
"link": "TiddlyWiki European Meetup 2017"
},
"HelloThumbnail - TiddlyMap": {
"title": "HelloThumbnail - TiddlyMap",
"tags": "HelloThumbnail",
"color": "#D5B7EA",
"image": "TiddlyMap.png",
"caption": "~TiddlyMap Plugin",
"link": "TiddlyMap Plugin by Felix Küppers"
},
"Hidden Setting: Tab Index for Edit-Inputs": {
"title": "Hidden Setting: Tab Index for Edit-Inputs",
"tags": "[[Hidden Settings]]",
"created": "20190702074846206",
"modified": "20190702074846206",
"text": "The input fields of Tiddlers that are being edited can be assigned a ''tabindex'' value (preferably 1) so that the <kbd>Tab</kbd> key can be used to directly move the focus from one input to the next or backwards using <kbd>shift-Tab</kbd>\n\n$:/config/EditTabIndex\n"
},
"Hidden Setting: New-Image Type": {
"title": "Hidden Setting: New-Image Type",
"tags": "[[Hidden Setting]]",
"type": "text/vnd.tiddlywiki",
"text": "By default new images are created with the image-type `jpeg`\n\nThe hidden setting in $:/config/NewImageType can be set to another Image-Type which is used for new Image Tiddlers, like `png`\n"
},
"Hidden Setting: Filename for Save Wiki Button": {
"title": "Hidden Setting: Filename for Save Wiki Button",
"created": "20181215154811835",
"modified": "20190122000000000",
"tags": "[[Hidden Settings]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.19\">> When saving a ~TiddlyWiki using the <<.button save-wiki>> button, the default file name used for saving is constructed using the Title of the ~TiddlyWiki as entered in the [[Control Panel|$:/ControlPanel]], which is stored in the tiddler [[$:/SiteTitle]].\n\nThe value used is in the form `{{$:/SiteTitle}}.html`. This causes the filename to be constructed from the site Title with a `.html` extension.\n\nIf a tiddler named [[$:/config/SaveWikiButton/Filename]] is created, the text in that tiddler will be used as the default file name used for saving the ~TiddlyWiki.\n"
},
"Hidden Setting: Template for Save Wiki Button": {
"title": "Hidden Setting: Template for Save Wiki Button",
"created": "20181215154811835",
"modified": "20181215154811835",
"tags": "[[Hidden Settings]]",
"type": "text/vnd.tiddlywiki",
"text": "Determines the template used when saving via the \"save wiki\" page control button.\n\nDefaults to `$:/core/save/all`.\n\nYou can change this setting to choose what is saved when the \"save wiki\" button is clicked.\n\n$:/config/SaveWikiButton/Template\n"
},
"Hidden Setting: Search Minimum Length": {
"title": "Hidden Setting: Search Minimum Length",
"created": "20161011074235805",
"modified": "20161011074235805",
"tags": "[[Hidden Settings]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.14\">> Controls the minimum length of a search string before results are displayed.\n\nDefaults to \"3\".\n\n$:/config/Search/MinLength\n"
},
"Hidden Setting: Tags Minimum Length": {
"title": "Hidden Setting: Tags Minimum Length",
"created": "201712032331",
"modified": "201712032331",
"tags": "[[Hidden Settings]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.16\">> Tag Dropdown: Controls the minimum length of an input string before results are displayed.\n\nDefaults to \"0\".\n\n$:/config/Tags/MinLength\n"
},
"Hidden Setting: ViewTemplate and EditTemplate": {
"title": "Hidden Setting: ViewTemplate and EditTemplate",
"tags": "[[Hidden Settings]]",
"created": "20190704053532718",
"modified": "20190704053532718",
"text": "The configuration Tiddlers $:/config/ui/ViewTemplate and $:/config/ui/EditTemplate can be used to change the ''~ViewTemplate'' respectively the ''~EditTemplate'' used in the [[Story PageTemplate|$:/core/ui/PageTemplate/story]]\n"
},
"Hidden Setting: Scroll Top Adjustment": {
"title": "Hidden Setting: Scroll Top Adjustment",
"created": "20180816105911495",
"modified": "20180816110627713",
"tags": "[[Hidden Settings]]",
"type": "text/vnd.tiddlywiki",
"text": "As part of navigating to a tiddler, TiddlyWiki scrolls the page so that the top of the tiddler lines up with the top of the browser window. This means that the upper part of tiddlers can be obscured when using custom `position:fixed` toolbars at the top of the window.\n\nTo adjust the scroll position to allow for the toolbar, add the CSS class `tc-adjust-top-of-scroll` to the toolbar. TiddlyWiki's scrolling mechanism will then dynamically adjust the scroll position by the height of that element.\n\n"
},
"Hidden Setting: Search AutoFocus": {
"title": "Hidden Setting: Search AutoFocus",
"created": "20150619162518761",
"modified": "20150619162605652",
"tags": "[[Hidden Settings]]",
"type": "text/vnd.tiddlywiki",
"text": "When TiddlyWiki first opens in the browser the search box is automatically given the focus by default. If this causes problems, you can change the default by changing this value from ''true'' to ''false'':\n\n$:/config/Search/AutoFocus\n"
},
"Hidden Setting: Typing Refresh Delay": {
"title": "Hidden Setting: Typing Refresh Delay",
"created": "20150619162409306",
"modified": "20150619162511957",
"tags": "[[Hidden Settings]]",
"type": "text/vnd.tiddlywiki",
"text": "TiddlyWiki defers processing changes to draft tiddlers until a timeout has elapsed. The default value of 400ms gives a good balance of responsiveness in most cases but isn't always optimal on lower powered mobile devices.\n\nThe timeout can now be changed by changing this value (in milliseconds):\n\n$:/config/Drafts/TypingTimeout"
},
"Hidden Settings": {
"title": "Hidden Settings",
"created": "20150619162223882",
"modified": "20150619162405141",
"tags": "[[Customise TiddlyWiki]]",
"type": "text/vnd.tiddlywiki",
"text": "The most useful configuration settings for TiddlyWiki are exposed in the [[control panel|$:/ControlPanel]] but some more advanced settings do not have a full user interface. Instead, the underlying configuration tiddlers are edited directly.\n\nTo change these settings on an empty TiddlyWiki, you can drag the links to the individual configuration tiddlers directly from this wiki into yours.\n\n<<list-links \"[tag[Hidden Settings]]\">>\n"
},
"Adding a Twitter Follow button": {
"title": "Adding a Twitter Follow button",
"created": "20140103091348509",
"modified": "20140919161534259",
"tags": "Learning",
"type": "text/vnd.tiddlywiki",
"text": "Here's a macro that provides a Twitter Follow button for a particular username:\n\n```\n\\define twitterFollowButton(username)\n<iframe allowtransparency=\"true\" frameborder=\"0\" scrolling=\"no\" src=\"//platform.twitter.com/widgets/follow_button.html?screen_name=$username$\" style=\"width:300px; height:20px;\"></iframe>\n\\end\n```\n\nThe only change from the version published at https://dev.twitter.com/docs/follow-button is that new lines have been removed.\n\nNote that the src URL is given without a protocol (ie \"http\" or \"https\"). It's done this way so that it works on sites whether they are hosted on a HTTP or HTTPS domain. If you want the Twitter button to work while using a TiddlyWiki offline on a \"file://\" URL, then you'll need to manually add the protocol. For example:\n\n```\n<iframe allowtransparency=\"true\" frameborder=\"0\" scrolling=\"no\" src=\"https://platform.twitter.com/widgets/follow_button.html?screen_name=jermolene\" style=\"width:300px; height:20px;\"></iframe>\n```\n"
},
"Adding a table of contents to the sidebar": {
"title": "Adding a table of contents to the sidebar",
"created": "20160424150551727",
"modified": "20181106224128548",
"tags": "[[Customise TiddlyWiki]]",
"type": "text/vnd.tiddlywiki",
"text": "The standard mechanisms in ~TiddlyWiki for creating Table-of-Contents are macros known collectively as \"toc\" [[macros|Macros]] (click on link to learn more about macros). They use `Tagging` as their means of creating relationships, so be sure to review the [[Tagging]] topic tiddler if tagging is a new concept for you.\n\nA customisable [[table of contents|Table-of-Contents Macros]] can be added to the sidebar with the following steps:\n\n# Create a tiddler called [[TableOfContents]]\n# Give it the tag ''~$:/tags/SideBar''\n# Set the text to <div><pre><code><$text text=\"\"\"\n<div class=\"tc-table-of-contents\">\n\n<<toc-selective-expandable 'TableOfContents'>>\n\n</div>\"\"\"/></code></pre></div>\n# Add a ''caption'' field with the text ''Contents''\n# Add a ''list-after'' field with the text ''~$:/core/ui/SideBar/Open''\n\nAdd entries to the table of contents by creating tiddlers tagged ''~TableOfContents''. An easy way is to choose {{$:/core/images/new-here-button}} ''new here'' from the tiddler toolbar of the ''~TableOfContents'' tiddler. \n(if you don't see the \"new here\" button, click on the down arrow {{$:/core/images/down-arrow}} to see more menu options.)\n\nTo create child tiddlers (tiddlers that come below other tiddlers), tag them with the name of the parent tiddler.\n"
},
"Adopt a Titles Policy": {
"title": "Adopt a Titles Policy",
"created": "20130825103300000",
"modified": "20140912150136251",
"tags": "Learning",
"type": "text/vnd.tiddlywiki",
"text": "As the structures within your TiddlyWiki documents get more complex it can be hard to keep the titles of tiddlers consistent. For example, should terms be defined in the plural or the singular? Camel case or separate words?\n\nRecording a formal titling policy can help to reduce confusion. For example, the titling policies for this wiki are recorded in the [[Documentation Style Guide]].\n\n! SystemTiddler Titles\n\nA useful convention is to use the prefix `$:/_` for any system tiddlers that you create to ensure that they are near the top of the system tiddler listing in the sidebar\n"
},
"Concatenating text and variables using macro substitution": {
"title": "Concatenating text and variables using macro substitution",
"created": "20160424150551727",
"modified": "20190115162340362",
"tags": "Learning",
"type": "text/vnd.tiddlywiki",
"text": "\nIt's a frequent use case in ~TiddlyWiki that you will want to put the results of variables together with various bits of strings of text. This process in some programming languages is often referred to as \"concatenating\" text.\n\nYou might, for instance want to set up a template for your customer database, where links will automatically refer to additional contact information about your customer. Inside your tiddler, you might try something like this:\n\n\n|warning|k\n|@@font-size:1.5em;⚠@@ Warning:<br/> Don't do it this way!| `[[Additional Info|<<currentTiddler>>-Contact]]` |\n\nBut that won't work. If you try this, the link will be interpreted very literally, and will attempt to take you to:\n\n```\n<<currentTiddler>>-Contact\n```\n\nThe solution is to use a macro to put the rendered value of `<<currentTiddler>>` together with the bit of additional text, `-Contact`.\n\nCreate a macro at the top of the tiddler like this:\n\n```\n\\define linkup(link) [[Additional Info|$link$-Contact]]\n```\n\nYou might be tempted to invoke the new macro like this:\n\n|warning|k\n|@@font-size:1.5em;⚠@@ Warning:<br/> Don't do it this way!| `<<linkup <<currentTiddler>> >>` |\n\n\nBut if you do, you will find that `<<currentTiddler>>` doesn't get rendered, but instead gets passed literally.\n\nInstead, you could use the [[MacroCallWidget]] widget, like this:\n\n```\n<$macrocall $name=\"linkup\" link=<<currentTiddler>> />\n```\n\nIn this case, we passed the value of a variable directly to our macro. This is often a general way to go about this task. If you wanted to create more links based on other variables you could re-use the macro for each situation.\n\nIf, as in this case, the only variable you are using is `currentTiddler` then you could write a simple macro, like this:\n\n```\n\\define linkup() [[Additional Info|$(currentTiddler)$-Contact]]\n```\n\nNotice that in this case we don't pass an argument. Instead, we reference the variable using the special syntax `$(variable)$`. Since we don't pass an argument, we can invoke it without the `<$macrocall>` widget more simply, like this:\n\n```\n<<linkup>>\n```\n\n<style>\n.warning code {background-color:#ffff80}\ntable.warning {background-color:#ffff80;}\n\n</style>\n"
},
"Configuring the default TiddlerInfo tab": {
"title": "Configuring the default TiddlerInfo tab",
"created": "20140828080837703",
"modified": "20140912145908651",
"tags": "[[Customise TiddlyWiki]]",
"type": "text/vnd.tiddlywiki",
"text": "The configuration tiddler [[$:/config/TiddlerInfo/Default]] contains the title of the tiddler containing the default tiddler info tab.\n\nThe default value is `$:/core/ui/TiddlerInfo/Tools` corresponding to the ''Tools'' tab. Other possible values are:\n\n<ul>\n<$list filter=\"[all[shadows+tiddlers]tag[$:/tags/TiddlerInfo]!has[draft.of]]\">\n<li>\n<$view field=\"title\"/>\n</li>\n</$list>\n</ul>\n"
},
"Creating SubStories": {
"title": "Creating SubStories",
"created": "20140214215718317",
"modified": "20140919161514318",
"tags": "Learning",
"type": "text/vnd.tiddlywiki",
"text": "This example shows how to create a sub-story within a tiddler that is independent of the main story.\n\nHere's the code:\n\n```\n<$navigator story=\"MySubStoryList\" history=\"MySubHistoryList\">\n\nClick this link to get started: HelloThere\n\n<$list filter=\"[list[MySubStoryList]]\" history=\"MySubHistoryList\">\n<div>\n\n! <$button message=\"tm-close-tiddler\" class=\"tc-btn-invisible\">{{$:/core/images/close-button}}</$button> <$view field=\"title\"/>\n\n<$transclude/>\n</div>\n</$list>\n\n</$navigator>\n```\n\nNote how you can open the HelloThere tiddler in the substory by clicking on the link below. Links within the substory open within the substory, and not in the main story.\n\n<$navigator story=\"MySubStoryList\" history=\"MySubHistoryList\">\n\nClick this link to get started: HelloThere\n\n<$list filter=\"[list[MySubStoryList]]\" history=\"MySubHistoryList\">\n<div>\n\n! <$button message=\"tm-close-tiddler\" class=\"tc-btn-invisible\">{{$:/core/images/close-button}}</$button> <$view field=\"title\"/>\n\n<$transclude/>\n\n</div>\n</$list>\n\n</$navigator>\n"
},
"Creating a custom export format": {
"title": "Creating a custom export format",
"modified": "20141124173526227",
"created": "20141124173526227",
"tags": "[[Customise TiddlyWiki]]",
"text": "To create a custom export format that exports tiddlers as their raw body text:\n\n# Create a tiddler with the following fields:\n#* ''tags'': [[$:/tags/Exporter]]\n#* ''description'': Description of this exporter\n#* ''extension'': Default file extension for this export format (including the dot; for example `.tid`)\n# Set the following content:\n\n```\n\\define renderContent()\n{{{ $(exportFilter)$ ||$:/core/templates/plain-text-tiddler}}}\n\\end\n<<renderContent>>\n```\n\nThe variable `exportFilter` contains a filter defining which tiddlers should be exported.\n"
},
"Creating a splash screen": {
"title": "Creating a splash screen",
"created": "20180927081216605",
"modified": "20180927084436111",
"tags": "[[Customise TiddlyWiki]]",
"type": "text/vnd.tiddlywiki",
"text": "By default, TiddlyWiki displays a blank screen while it is loading. You can add a special \"splash screen\" that is displayed while the wiki loads.\n\nLarger TiddlyWiki files and those loaded over a slow network connection may take a little time to load. Once fully loaded, performance improves, because everything is now running entirely within the browser. Using a splash screen ensures people know the loading process is taking place, reducing the chance they will leave the page.\n\nIn order for the splash screen to be displayed before TiddlyWiki is initialised it is embedded as static HTML/CSS within the TiddlyWiki HTML file. This is done with the [[SystemTag: $:/tags/RawMarkupWikified/TopBody]].\n\nIn order to remove the splash screen when the wiki has finished loading, the HTML should be wrapped in a container with the special class `tc-remove-when-wiki-loaded`. Any DOM elements with this class are automatically deleted by the core once the wiki has loaded.\n\nHere's an example of a simple splash screen that just displays the text //Loading//. To use it, copy the text into a new tiddler, give it the type \"text/plain\" and the tag \"$:/tags/RawMarkupWikified/TopBody\":\n\n```\n<div class=\"tc-remove-when-wiki-loaded\">\nLoading...\n</div>\n```\n\nIf the tiddler is given the WikiText type `text/vnd.tiddlywiki` then the contents are wikified as the file is saved, allowing transclusion etc. For example, here's an example that quotes the site title in the loading message. To use it, copy the text into a new tiddler, give it the type \"text/vnd.tiddlywiki\" and the tag \"$:/tags/RawMarkupWikified/TopBody\":\n\n```\n\\rules only filteredtranscludeinline transcludeinline\n<div class=\"tc-remove-when-wiki-loaded\">\nPlease wait while {{$:/SiteTitle}} is loading\n</div>\n```\n\nThe `\\rules` directive is used to limit the wikitext syntax that is recognised to the two forms of inline transclusion. This avoids accidental wikification of tiddler content.\n\nThere is a more complex example splash screen using CSS animations and images configured in this wiki: see $:/SplashScreen\n"
},
"$:/CurvedText": {
"title": "$:/CurvedText",
"text": "Everything in federation"
},
"Custom styles by data-tiddler-title": {
"title": "Custom styles by data-tiddler-title",
"created": "201804111739",
"modified": "201804111739",
"tags": "[[How to apply custom styles]]",
"type": "text/vnd.tiddlywiki",
"text": "! Attribute: data-tiddler-title\n\n<<.from-version \"5.1.16\">>\n\nThe ~TiddlyWiki core adds several `attributes` to the rendered content. With those attributes it's possible to apply custom styles to the tiddler content. \n\nFor example this tiddler is named: \"{{!!title}}\" so the attribute looks like this: \n\n```\ndata-tiddler-title=\"Custom styles by data-tiddler-title\"\n```\n\n!! Examples\n\nThe following CSS is defined in [[Custom data-styles]] and creates a blue border for exactly this tiddler.\n\n```\n[data-tiddler-title=\"Custom styles by data-tiddler-title\"] {\n border: 1px solid blue;\n}\n```\n\nTo create a green border for every tiddler that starts with `$:/` aka system tiddlers, you'd need to use CSS like so: (not applied here but you can experiment with it! )\n\n```\n[data-tiddler-title^=\"$:/\"] {\n border: 1px solid green;\n}\n```\n\n!! More Possibilities\n\n{{Attribute Selectors}}\n"
},
"Custom styles by user-class": {
"title": "Custom styles by user-class",
"created": "201804111739",
"modified": "201804111739",
"tags": "[[How to apply custom styles]]",
"type": "text/vnd.tiddlywiki",
"text": "''Tiddler Field: `class`'' <<.from-version \"5.1.16\">>\n\nThe [[tag manager|$:/TagManager]] allows us to set a tiddler `color` field, that is used to define the \"tag-pill\" colour. Since: <<.from-version \"5.1.16\">> we can define a `class` field, that is directly inserted into the [[ViewTemplate|$:/core/ui/ViewTemplate]] and it can be used for styling: \n\n\"\"\"\ntitle: `anyName`\ntags: `$:/tags/Stylesheet`\nclass: `myClass`\n\"\"\"\n\nEvery tiddler, that has a `class` field can be styled that way!\n\n```\n.myClass {\n border: 2px solid blue;\n}\n\n```\n\nLearn more at: [[How to apply custom styles]]"
},
"Attribute Selectors": {
"title": "Attribute Selectors",
"created": "20170126152839462",
"modified": "201804111739",
"tags": "[[Custom data-styles]]",
"type": "text/vnd.tiddlywiki",
"text": ";[attr]\n:Represents an element with an attribute name of attr.\n\n;[attr=\"value\"]\n:Represents an element with an attribute name of attr and whose value is exactly \"value\".\n\n;[attr~=\"value\"]\n:Represents an element with an attribute name of attr whose value is a whitespace-separated list of words, one of which is exactly \"value\".\n\n;[attr|=\"value\"]\n:Represents an element with an attribute name of attr. Its value can be exactly “value” or can begin with “value” immediately followed by “-” (U+002D). It can be used for language subcode matches.\n\n;[attr^=\"value\"]\n:Represents an element with an attribute name of attr and whose first value is prefixed by \"value\".\n\n;[attr$=\"value\"]\n:Represents an element with an attribute name of attr and whose last value is suffixed by \"value\".\n\n;[attr*=\"value\"]\n:Represents an element with an attribute name of attr and whose value contains at least one occurrence of string \"value\" as substring.\n\n;[attr \"operator value\" i]\n:Adding an i (or I) before the closing bracket causes the value to be compared case-insensitively (for characters within the ASCII range). \n\nLearn more at: [[Attribute selectors - CSS|https://developer.mozilla.org/en-US/docs/Web/CSS/Attribute_selectors]] or [[CSS-Specification|https://www.w3.org/TR/CSS22/selector.html#attribute-selectors]]"
},
"Custom Styles FAQ": {
"title": "Custom Styles FAQ",
"modified": "201804111739",
"created": "201804111739",
"tags": "[[How to apply custom styles]] FAQ-group",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.16\">>\n\n<<list-links \"[tag[Custom Styles FAQ]]\">>\n"
},
"Custom data-styles": {
"title": "Custom data-styles",
"created": "201804111739",
"modified": "201804111739",
"tags": "data-tags-styles [[How to apply custom styles]] $:/tags/Stylesheet",
"type": "text/vnd.tiddlywiki",
"text": "[data-tiddler-title=\"Custom styles by data-tiddler-title\"] {\n border: 1px solid blue;\n}\n\n[data-tags*=\"example-test\"] {\n border: 2px solid pink;\n}\n\n[data-tags*=\"example-hardlinebreaks\"] .tc-tiddler-body {\n word-break: normal;\n word-wrap: break-word;\n white-space: pre-wrap;\n}\n\n[data-tags*=\"data-tags-styles\"] .tc-tiddler-body {\n display: block;\n padding: 14px;\n margin-top: 1em;\n margin-bottom: 1em;\n word-break: normal;\n word-wrap: break-word;\n white-space: pre-wrap;\n background-color: #f5f5f5;\n border: 1px solid #cccccc;\n padding: 0 3px 2px;\n border-radius: 3px;\n font-family: Monaco, Consolas, \"Lucida Console\", \"DejaVu Sans Mono\", monospace;\n}\n\n"
},
"Custom styles by data-tags": {
"title": "Custom styles by data-tags",
"created": "20170124132500000",
"modified": "201804111739",
"tags": "example-test [[How to apply custom styles]]",
"type": "text/vnd.tiddlywiki",
"text": "! Attribute: data-tags\n\n<<.from-version \"5.1.16\">>\n\nThe ~TiddlyWiki core adds several `attributes` to the rendered content. These make it possible to apply custom styles to tiddlers. \n\nFor example this tiddler is tagged: <<tag \"How to apply custom styles\">> and <<tag \"example-test\">> so the attribute looks like this: \n\n```\ndata-tags=\"[[How to apply custom styles]] example-test\"\n```\n\n''Important:'' Tiddler tags are ''not'' sorted so the order in the rendered output may be different!\n\n!! Examples\n\nThe following CSS is defined in [[Custom data-styles]] and creates a pink border for all tiddlers (including this one) tagged with `example-test`.\n\n```\n[data-tags*=\"example-test\"] {\n border: 2px solid pink;\n}\n```\n\n!!! Styling Stylesheets\n\nSo to display tiddlers tagged: `data-tags-styles` in a decent way we can use the following code. (I could have used: `$:/tags/Stylesheet`, but that would affect all stylesheets in this wiki, which is not intended. amt ;)\n\n''Important:'' Don't forget to also specify `.tc-tiddler-body` or the whole tiddler, including the title, will be changed! see: [[Custom data-styles]]\n\n```\n[data-tags*=\"data-tags-styles\"] .tc-tiddler-body {\n display: block;\n padding: 14px;\n margin-top: 1em;\n margin-bottom: 1em;\n word-break: normal;\n word-wrap: break-word;\n white-space: pre-wrap;\n background-color: #f5f5f5;\n border: 1px solid #cccccc;\n padding: 0 3px 2px;\n border-radius: 3px;\n font-family: Monaco, Consolas, \"Lucida Console\", \"DejaVu Sans Mono\", monospace;\n}\n```\n\n!! Hard Linebreaks\n\nThis mechanism may be handy for users who want to write prose text! See: [[Hard Linebreaks with CSS]]\n\n!! More Possibilities\n\n{{Attribute Selectors}}\n"
},
"Editing Tiddlers with Emacs": {
"title": "Editing Tiddlers with Emacs",
"created": "20140406210404245",
"modified": "20140919161501896",
"tags": "Learning",
"type": "text/vnd.tiddlywiki",
"text": "Michael Fogleman has written an [[Emacs|http://www.gnu.org/software/emacs/]] major mode called [[tid-mode|https://github.com/mwfogleman/tid-mode]], which is for editing TiddlyWiki .tid files. It is derived from text-mode, uses the useful minor modes org-struct and subword, and updates the modified times when you save a .tid file.\n\nHe also wrote two helper functions for using TiddlyWiki in Emacs. The first opens a tiddlers directory in Dired; the second opens TiddlyWiki in the browser.\n\n```\n(defun open-wiki ()\n \"Opens a TiddlyWiki directory in Dired.\"\n (interactive)\n (dired \"~/Dropbox/wiki/tiddlers/\"))\n```\n \n```\n(defun browse-wiki ()\n \"Opens TiddlyWiki in the browser.\"\n (interactive)\n (browse-url \"127.0.0.1:8080/\"))\n```\n\nThis latter function may require specifying a browser:\n\n```\n(setq browse-url-browser-function 'browse-url-generic\n browse-url-generic-program \"chromium\")\n```\n\nYou can bind either of these functions with the global-set-key function:\n\n```\n(global-set-key (kbd \"C-c w\") 'open-wiki)\n```\n\nAt the moment, these are not integrated into tid-mode.\n"
},
"Editing Tiddlers with Vim": {
"title": "Editing Tiddlers with Vim",
"modified": "20160111190002",
"created": "20140406210404245",
"tags": "Learning",
"type": "text/vnd.tiddlywiki",
"text": "Devin Weaver has written a [[Vim|http://www.vim.org/]] plugin at https://github.com/sukima/vim-tiddlywiki\n\nIt supports most of the TiddlyWiki syntax and includes a filetype plugin which will auto update the `modified` field.\n"
},
"Editor toolbar": {
"title": "Editor toolbar",
"created": "20160817093933820",
"modified": "20190118161349442",
"tags": "Features [[Formatting text in TiddlyWiki]]",
"type": "text/vnd.tiddlywiki",
"text": "!! How it Works\n\nThe editor toolbar is a toolbar that helps you format text easily. It appears above the text input field in a tiddler when in edit mode. It has a similar appearance to desktop text editors like Microsoft Word or Libre Office Write. \n\n!! What the Editor toolbar does\nWhen you press the button for a function, it will insert the WikiText in the text field. As an example, if you press the bold button it will insert `'' ''`. \n\nIf you ''highlight'' a piece of text the markup code will automatically go around the highlighted text.\n\nIf you are in another mode, like [[MarkDown|Markdown Plugin]], the toolbar will change to that syntax and insert appropriate code. However It will not change previously typed text or markup.\n\nBesides the standard WikiText formatting, the Editor toolbar has the following buttons:\n\n<<list-links \"[tag[Editor toolbar]sort[title]]\">>\n"
},
"Formatting List Results as Tables with CSS - Specified Columns Methods": {
"title": "Formatting List Results as Tables with CSS - Specified Columns Methods",
"created": "20161209172820513",
"modified": "20161220161653258",
"tags": "Learning",
"type": "text/vnd.tiddlywiki",
"text": "Sometimes you want the results of a ``<$list>`` widget to be formatted in the form of multiple columns, instead of just one straight listing. This method uses ~CSS to set up listing as columns and assumes that you know how many columns you want. The method here is to create a style that reflects the number of columns you want your table to be in, and then apply that style to the resulting list output.\n\nFor other table-making techniques see also:\n\n* [[Formatting List Results as Tables with CSS - Variable Column Method]]\n* [[Formatting List Results as Tables (no CSS)]]\n\n\n!!! 1) Create a tiddler for the columns tagged with `$:/tags/Stylesheet`, containing:\n\n```\n/* FOUR COLUMN MODE */\n.fourcolumns {\n display:block;\n -moz-column-count:4;\n -moz-column-gap:1em;\n -webkit-column-count: 4;\n -webkit-column-gap:1em;\n}\n```\n\nNote the various places you need to indicate the number of columns\n\n!!! 2) Then format your output like this:\n\n```\n@@.fourcolumns\n<$list filter=\"[tag[Filter Operators]]\" variable=\"foo\"><br>\n<<foo>>\n</$list>\n@@\n```\n\n!! Example showing partial list of filter operators\n\n<style>\n.fourcolumns {\n display:block;\n -moz-column-count:4;\n -moz-column-gap:1em;\n -webkit-column-count: 4;\n -webkit-column-gap:1em;\n}\n</style>\n\n\n@@.fourcolumns\n<$list filter=\"[tag[Filter Operators]limit[24]]\" variable=\"foo\"><br>\n<<foo>>\n</$list>\n@@\n"
},
"Formatting List Results as Tables with CSS - Variable Column Method": {
"title": "Formatting List Results as Tables with CSS - Variable Column Method",
"created": "20161209172820513",
"modified": "20161220162845058",
"tags": "Learning",
"type": "text/vnd.tiddlywiki",
"text": "Sometimes you want the results of a ``<$list>`` widget to be formatted in the form of multiple columns, instead of just one straight listing. This method uses CSS to set up listing as columns. It is responsive, that is, re-positioning to display fewer columns if the window is too small.\n\nYou don't directly specify a fixed number of columns but instead specify the max-width for the list (which could be a transclusion of the tiddler width) and the width for each item. It lists from left to right, then wraps to a new row.\n\nFor other table-making techniques see also:\n\n* [[Formatting List Results as Tables with CSS - Specified Columns Methods]]\n* [[Formatting List Results as Tables (no CSS)]]\n\n\n!! Example listing using 50 existing ~TiddlyWiki tags\n\n```\n<div class=\"dynamic-table\">\n <$list filter=\"[has[tags]tags[]sort[title]first[50]]\">\n <span class=\"item\">\n <$transclude tiddler=\"$:/core/ui/TagTemplate\"/>\n </span>\n </$list>\n</div>\n```\n\n!! Example stylesheet to use with listing\n\n```\n<style>\n.dynamic-table {\n max-width:700px; /* could transclude tiddler width instead */\n -ms-box-orient: vertical; /* might be unnecessary */\n display: -webkit-box;\n display: -moz-box;\n display: -ms-flexbox;\n display: -moz-flex;\n display: -webkit-flex;\n display: inline-flex;\n -webkit-flex-wrap: wrap;\n flex-wrap: wrap;\n flex-direction: row;\n}\n\n.item {\n max-width:160px; min-width:160px;\n flex: 0 0 2em; /* -grow, -shrink, -basis */\n}\n</style>\n```\n\n!! Results\n\n<div class=\"dynamic-table\">\n <$list filter=\"[has[tags]tags[]sort[title]first[50]]\">\n <span class=\"item\">\n <$transclude tiddler=\"$:/core/ui/TagTemplate\"/>\n </span>\n </$list>\n</div>\n\n<style>\n.dynamic-table {\n max-width:700px; /* could transclude tiddler width instead */\n -ms-box-orient: vertical;\n display: -webkit-box;\n display: -moz-box;\n display: -ms-flexbox;\n display: -moz-flex;\n display: -webkit-flex;\n display: inline-flex;\n -webkit-flex-wrap: wrap;\n flex-wrap: wrap;\n flex-direction: row;\n}\n\n.item {\n max-width:160px; min-width:160px;\n flex: 0 0 2em; /* -grow, -shrink, -basis */\n}\n</style>\n\n"
},
"Formatting List Results as Tables (no CSS)": {
"title": "Formatting List Results as Tables (no CSS)",
"created": "20161220154952676",
"modified": "20161220161706470",
"tags": "Learning",
"type": "text/vnd.tiddlywiki",
"text": "Sometimes you want the results of a ``<$list>`` widget to be formatted in the form of multiple columns instead of just one straight listing. The following method creates an actual table structure and uses the [[nth operator|nth Operator]] to provide break points for the rows. It is not responsive, that is, it doesn't re-position to display fewer columns if the window is too small.\n\nIn the first, outer list structure you must provide a count to indicate at item number rows should occur. So, in the following example, each row breaks after 4 items, so the sequence is 1,5,9, etc. Note that this requires you to know in advance the maximum number of items there will be. There is also an internal limit that is set to n-1 items, where n is the number of columns you want. \n\nNote also that you need to repeat the driving filter operator inside of the internal `<$list>` widget. Obviously this technique lends itself to a macro implementation.\n\nFor other table-making techniques see also:\n\n* [[Formatting List Results as Tables with CSS - Variable Column Method]]\n* [[Formatting List Results as Tables with CSS - Specified Columns Methods]]\n\n\n!! Example code for a four-column table with fewer than 70 items\n\n```\n<table>\n<$list filter=\"1 5 9 13 17 21 25 29 33 37 41 45 49 53 57 61 65\" variable =\"rows\">\n <$list filter=\"[tag[Filter Operators]limit[50]] +[nth<rows>]\" variable=\"cell\">\n <tr>\n <td> <<cell>> </td>\n <$list filter=\"[tag[Filter Operators]limit[50]] +[allafter<cell>limit[3]]\" variable=\"this\">\n <td> <<this>> </td>\n </$list>\n </tr>\n </$list>\n</$list>\n</table>\n```\n\n!! Result\n\n<table>\n<$list filter=\"1 5 9 13 17 21 25 29 33 37 41 45 49 53 57 61 65\" variable =\"rows\">\n <$list filter=\"[tag[Filter Operators]limit[50]] +[nth<rows>]\" variable=\"cell\">\n <tr>\n <td> <<cell>> </td>\n <$list filter=\"[tag[Filter Operators]limit[50]] +[allafter<cell>limit[3]]\" variable=\"this\">\n <td> <<this>> </td>\n </$list>\n </tr>\n </$list>\n</$list>\n</table>\n\n"
},
"Generating Static Sites with TiddlyWiki": {
"title": "Generating Static Sites with TiddlyWiki",
"created": "20130828190200000",
"modified": "20160622111343603",
"tags": "[[TiddlyWiki on Node.js]]",
"type": "text/vnd.tiddlywiki",
"text": "TiddlyWiki5 can be used to generate static HTML representations of a TiddlyWiki that doesn't need JavaScript.\n\nThere is much flexibility in how the static HTML is generated. The following scenarios are all illustrated on https://tiddlywiki.com.\n\n! Wiki Snapshots and Tiddler Snapshots\n\nYou can explore a static representation of this TiddlyWiki at [ext[static.html]]. That file is a static snapshot of the current DefaultTiddlers. Any tiddlers that it links to are referred to via URLs of the form `/static/HelloThere.html` that point to static snapshots of individual tiddlers. The tiddler HTML files reference a `static.css` stylesheet file.\n\nThe following commands are used to generate the sample static version of the TiddlyWiki5 site:\n\n```\n--rendertiddlers [!is[system]] $:/core/templates/static.tiddler.html static text/plain\n--rendertiddler $:/core/templates/static.template.html static.html text/plain\n--rendertiddler $:/core/templates/static.template.css static/static.css text/plain\n```\n\nThe first RenderTiddlersCommand generates the HTML representations of individual tiddlers, the second RenderTiddlerCommand saves the static version of the DefaultTiddlers, and the final RenderTiddlerCommand saves the stylesheet. (All the files are placed in the `output` folder of the wiki folder).\n\n! Wiki Snapshot with Internal Links\n\nIt is also possible to produce a single HTML file that contains static representations of tiddlers, and uses standard HTML anchor links to jump between them.\n\nFor example: [ext[alltiddlers.html]]\n\nThe example is built by the following commands:\n\n```\n--rendertiddler $:/core/templates/alltiddlers.template.html alltiddlers.html text/plain\n```\n"
},
"Hard Linebreaks with CSS": {
"title": "Hard Linebreaks with CSS",
"created": "20170126174506507",
"modified": "20170126211042714",
"tags": "[[Hard Linebreaks in WikiText]]",
"type": "text/vnd.tiddlywiki",
"text": "Since TiddlyWiki Version 5.1.16, it's possible to apply customs styles with `data-` attributes. see: [[How to apply custom styles]]\n\nThe [[Custom data-styles]] stylesheet tiddler contains the following definition:\n\n```\n[data-tags*=\"example-hardlinebreaks\"] .tc-tiddler-body {\n word-break: normal; \n word-wrap: break-word;\n white-space: pre-wrap;\n}\n```\n\nIf rendered without the tag, the content of \"Hard Linebreaks with CSS - Example\" will be shown like this: \n\n>{{Hard Linebreaks with CSS - Example}}\n\n----\n\nOpen the tiddler to see the custom CSS rules applied: [[Hard Linebreaks with CSS - Example]]\n\n"
},
"Hard Linebreaks with CSS - Example": {
"title": "Hard Linebreaks with CSS - Example",
"created": "20170126161803543",
"modified": "20170126211025840",
"tags": "example-hardlinebreaks [[Hard Linebreaks in WikiText]]",
"type": "text/vnd.tiddlywiki",
"text": "The following text is rendered without any special WikiText syntax. So most of the ~WikiText functionality will be accessible. \n\nThis is a line\nand this is a new line\nwhile this is yet another line\nand this is the final one\napart from this one\n\n"
},
"Height of text editor": {
"title": "Height of text editor",
"created": "20160817103854725",
"modified": "20160817105415313",
"tags": "[[Editor toolbar]]",
"text": "The button {{ $:/core/ui/EditorToolbar/editor-height}} let you adjust the height of the text input field."
},
"How to add a banner for GitHub contributions": {
"title": "How to add a banner for GitHub contributions",
"modified": "20141123094403948",
"created": "20141123094403948",
"tags": "Learning",
"text": "When you edit a tiddler on https://tiddlywiki.com you will see a small ribbon inviting you to edit the source of the tiddler on GitHub.\n\nIf you are using Node.js, you can replicate this feature for your own TiddlyWiki-based site as follows:\n\n# Make sure the following setting is included in the `tiddlywiki.info` file in your WikiFolder:\n#> <pre><code>\t\"config\": {\n\t\t\"retain-original-tiddler-path\": true\n\t}</code></pre>\n# Copy the tiddler [[$:/ContributionBanner]] to your wiki\n# Make the following changes:\n## Adjust the GitHub link URL from https://github.com/Jermolene/TiddlyWiki5/edit/master/editions/tw5.com/tiddlers/ to point to your own GitHub repo\n## Make sure the wording of the text starting \"Can you help us improve this documentation?\" is appropriate for your visitors\n## Adjust the link to [[Improving TiddlyWiki Documentation]] to point to your own tiddler with instructions for the contribution procedure\n\n\n"
},
"How to apply custom styles by tag": {
"title": "How to apply custom styles by tag",
"caption": "{{!!title}} - ^^deprecated^^",
"created": "20141001132300000",
"modified": "201804111739",
"tags": "[[How to apply custom styles]] $:/deprecated",
"type": "text/vnd.tiddlywiki",
"text": "<<.deprecated-since \"5.1.16 <- click\" \"Custom styles by data-tags\">>. Also see: [[How to apply custom styles]]\n\n----\n\nYou can apply custom styles to tiddlers that have a particular tag by defining a CSS class with the name `tc-tagged-<Tag Name>`.\n\nFor example, to make tiddlers tagged \"NightReader\" appear in a special colour scheme suitable for night-time reading, [[create a stylesheet|Using Stylesheets]] defining the class `tc-tagged-NightReader` like this:\n\n```\n.tc-tagged-NightReader {\n\tbackground-color:black;\n\tcolor: orange;\n\tpadding: 35px 35px;\n}\n\n.tc-tagged-NightReader .tc-tiddler-body {\n\tfont-size: 1.5em;\n}\n```\n\nThe `tc-tagged-NightReader` class is applied to the entire tiddler and not just the tiddler text. If you want to target a smaller portion of the tiddler you can qualify the CSS selector, as is done here with `.tc-tagged-NightReader .tc-tiddler-body`.\n\nNote that tags containing spaces or non-alphanumeric characters will be converted using URI encoding, making the generated CSS classname hard to predict. For example:\n\n|!Tag |!Generated Class Name |\n|`$:/mytag` |`tc-tagged-%24%3A%2Fmytag` |\n|`Doctor Who` |`tc-tagged-Doctor%20Who` |\n|`£35.23` |`tc-tagged-%C2%A335.23` |\n\nAlthough ~TiddlyWiki will generate these tags, to actually use them in your css, you will need to escape the percent character in your stylesheet, like:\n\n```\n.tc-tagged-Doctor\\%20Who {\n background-image: url(./tardis_back.svg);\n background-repeat: no-repeat;\n background-position: right;\n color:#FBFBFB;\n}\n```\n\nA utility function is available in JavaScript to perform the conversion:\n\n```\n$tw.utils.tagToCssSelector(\"$:/tags/Stylesheet\")\n```\n\nGenerates the following output:\n\n```\ntc-tagged-\\%24\\%3A\\%2Ftags\\%2FStylesheet\n```\n\n"
},
"How to apply custom styles": {
"title": "How to apply custom styles",
"created": "20141001132300000",
"list": "[[Custom styles by data-tags]] [[Custom styles by data-tiddler-title]]",
"modified": "201804111740",
"tags": "[[Customise TiddlyWiki]]",
"type": "text/vnd.tiddlywiki",
"text": "At the moment there are several ways to apply custom styles.\n\n<<list-links filter:\"[tag[How to apply custom styles]]\">>\n"
},
"How to build a TiddlyWiki5 from individual tiddlers": {
"title": "How to build a TiddlyWiki5 from individual tiddlers",
"created": "20131124220600000",
"modified": "20140912141637389",
"tags": "[[TiddlyWiki on Node.js]]",
"type": "text/vnd.tiddlywiki",
"text": "First install TiddlyWiki as described in [[Installing TiddlyWiki on Node.js]].\n\n# Create an empty [[TiddlyWikiFolder|TiddlyWikiFolders]]\n## Create a new folder in a convenient place (for example `~/MyWiki`)\n## Create a file called `tiddlywiki.info` containing the following text:\n##* `{\"themes\": [\"tiddlywiki/vanilla\",\"tiddlywiki/snowwhite\"]}`\n## Create a subfolder called `tiddlers`\n##* Alternatively, just copy the `editions/empty` folder from the TiddlyWiki5 repo\n# Create individual TiddlerFiles in the `~/MyWiki/tiddlers` directory\n# Execute the following command from the TiddlyWiki5 root directory to build a TiddlyWiki5 file from the tiddlers:\n## `tiddlywiki ~/MyWiki --rendertiddler $:/core/save/all index.html text/plain`\n"
},
"How to change the sort order of sub-branches in a TOC macro": {
"title": "How to change the sort order of sub-branches in a TOC macro",
"created": "20161209172820513",
"modified": "20190220000000000",
"tags": "Learning",
"type": "text/vnd.tiddlywiki",
"text": "Imagine that you are using a [[Table of Contents|Table-of-Contents Macros]] macro similar to this:\n\n```\n<<toc-selective-expandable \"TableOfContents\" \"sort[title]\">>\n```\n\nThe sorting is fine for most cases, but you would like all your items tagged `Journal` to be sorted by the `created` field. How can you apply a separate sort order to just those sub-items tagged `Journal`?\n\nThe trick is to add a field to the parent tagging tiddler (i.e. `Journal`) that points to a different sort criteria. Let's call the field `fuzzy`, and populate it with the value `created` (`created `is the name of the field that contains a tiddler's creation date).\n\nNow change your [[Table of Contents|Table-of-Contents Macros]] to look like this:\n\n```\n<<toc-selective-expandable \"TableOfContents\" \"sort{!!fuzzy}\">>\n```\n\nNow your Table of Contents will sort by title everywhere, except for the children of the `Journal` tiddler, which will sort by the `created `date.\n\nThe downside to this trick is that you can't apply a reverse sort based on just one special field. If you reverse the sort order, it will be reversed everywhere.\n\n\n"
},
"How to create keyboard shortcuts": {
"title": "How to create keyboard shortcuts",
"tags": "[[Customise TiddlyWiki]] Learning",
"type": "text/vnd.tiddlywiki",
"text": "<br>\n<<.tip \"\"\"[[TiddlyWiki]] distinguishes two types of keyboard shortcuts. Those that are limited to work within <$macrocall $name=\".tag\" _=\"input\"/> fields or <$macrocall $name=\".tag\" _=\"textareas\"/> which are handled by the <$macrocall $name=\".wlink\" to=\"KeyboardWidget\"/> widget and keyboard shortcuts that work globally - which means that only the page needs to have focus in order for them to be accessible. The latter are handled by a mechanism that starts to work when a wiki is loaded\"\"\">>\n\n\n!! The configuration mechanism is the same for both shortcut-types\n\n<$vars tv-show-missing-links=\"no\">\n\nA tiddler with the <<.def prefix>> `$:/config/ShortcutInfo/` and a ''unique suffix'' appended, like `my-shortcut`, makes the new shortcut appear in the $:/ControlPanel within the [[Keyboard Shortcuts Tab|$:/core/ui/ControlPanel/KeyboardShortcuts]]. An optional description can be added within its text field\n\nIn the [[Keyboard Shortcuts Tab|$:/core/ui/ControlPanel/KeyboardShortcuts]] the ''key combination'' that should trigger the shortcut can be configured:\n\n> Look for the ''unique suffix'' defined for the new shortcut and click the <$button class=\"tc-btn-invisible\">{{$:/core/images/edit-button}}<$action-sendmessage $message=\"tm-notify\" $param=\"$:/core/images/edit-button\"/></$button> button to open a popup that detects ''key combinations'' and shows the detected combination in its input field\n\n>The ''add shortcut'' assigns the key-combination to the shortcut\n\n!!! Depending on the chosen platform the configuration mechanism creates a tiddler with a specific nomenclature\n\n> $:/config/shortcuts/ + the ''shortcut suffix'' for shortcuts that will work on all platforms (operating systems)\n\n> $:/config/shortcuts-(mac/not-mac/windows/not-windows/linux/not-linux)/ + the ''shortcut suffix'' for shortcuts that will work on the chosen platform only or that will not work on the excluded platform\n\n!!! Examples\n\n* $:/config/shortcuts/`my-shortcut`\n* $:/config/shortcuts-mac/`my-shortcut`\n* $:/config/shortcuts-windows/`my-shortcut`\n* $:/config/shortcuts-linux/`my-shortcut`\n* $:/config/shortcuts-not-mac/`my-shortcut`\n* $:/config/shortcuts-not-windows/`my-shortcut`\n* $:/config/shortcuts-not-linux/`my-shortcut`\n\n<<.tip \"\"\"Note that those platform-specific tiddlers don't have to be created manually if the ''ShortcutInfo'' tiddler as mentioned above is created first and and the shortcut is configured in the ~ControlPanel\"\"\">>\n\n<br>\n\n!! At this point the shortcut is defined and its ''actions'' can be configured\n\n!! Using the [[Keyboard Widget|KeyboardWidget]]\n\n> A <<.wlink \"KeyboardWidget\">> widget detects the key combinations pressed within an <<.tag input>> or <<.tag textarea>> field within its scope. The <<.wlink \"KeyboardWidget\">> widget needs to \"embrace\" the <<.tag input>> or <<.tag textarea>> field and its <<.attr key>> attribute either points to a configuration tiddler using the [[Key Descriptor]] Syntax or explicitely contains the key\n\n```\n<$keyboard key=\"((my-shortcut))\" actions='<$action-setfield $tiddler=\"my-tiddler\" $field=\"my-field\" $value=\"my-value\"/>'>\n\n<$edit-text tag=\"input\" tiddler=\"my-tiddler\"/>\n\n</$keyboard>\n```\n\n```\n<$keyboard key=\"alt-shift-M\" actions='<$action-setfield $tiddler=\"my-tiddler\" $field=\"my-field\" $value=\"my-value\"/>'>\n\n<$edit-text tag=\"input\" tiddler=\"my-tiddler\"/>\n\n</$keyboard>\n```\n\n> If actions are defined , the <<.wlink KeyboardWidget>> widget will invoke the actions defined in its <<.attr actions>> attribute when it detects the key-combination defined in its <<.attr key>> attribute being pressed in any <<.tag input>> or <<.tag textarea>> field within its scope\n\n<br>\n\n!! Using global Keyboard Shortcuts\n\n> The actions for ''global'' keyboard shortcuts are stored in the ''text'' field of tiddlers tagged with <<tag $:/tags/KeyboardShortcut>>\n\n> The ''key field'' connects an action-tiddler with the corresponding shortcut through the `((my-shortcut))` syntax, called [[Keyboard Shortcut Descriptor]]\n\n:<h3> Syntax: `((` + `a chosen suffix` + `))` </h3>\n\n> If the tiddler has the tag <<tag $:/tags/KeyboardShortcut>>, the field ''key'' with the [[Keyboard Shortcut Descriptor]] as its value and some actions in its text field, the actions will be triggered when the mechanism detects the configured key-combination\n\n<br>\n<$macrocall $name=\".tip\" _=\"\"\"''Macros'' defined ''outside'' a global keyboard-shortcut (through a tiddler tagged `$:/tags/Macro`) need to be ''imported'' in order to be accessible.\nThe [[import pragma|Pragma]] can be used for that\"\"\"/>\n\n<pre>\n\\import [[$:/core/ui/PageMacros]] [all[shadows+tiddlers]tag[$:/tags/Macro]!has[draft.of]]\n</pre>\n\nIf the tiddler that contains the macro definition is known and - for example - titled `my-macro-tiddler`\n\n<pre>\n\\import [[my-macro-tiddler]]\n</pre>\n\n<br>\n<$macrocall $name=\".tip\" _=\"\"\"Some actions require to be wrapped within a <<.wlink NavigatorWidget>> widget. That is necessary for the following list of widgets and messages in order to work if used within global keyboard shortcuts\"\"\"/>\n\n!!! Widgets\n\n<<.wlink ActionNavigateWidget>> (ActionNavigateWidget)\n\n!!! Messages\n\n<$list filter=\"[tag[navigator-message]]\">\n<$link to={{!!title}}><$view field=\"title\"/></$link><br>\n</$list>\n\n</$vars>\n"
},
"How to Customize TiddlyDesktop": {
"title": "How to Customize TiddlyDesktop",
"created": "20171118194518819",
"modified": "20171118194518819",
"tags": "Learning",
"type": "text/vnd.tiddlywiki",
"text": "!! Prelude/caution:\n\nBefore experimenting with TiddlyDesktop internals you should find the location of the “user configuration folder” - click the “Settings” button on the main TiddlyDesktop window, and then click the button “Open user config folder”. Then move up to locate the parent folder, which should be called “TiddlyDesktop”. If things go wrong, you can reset TiddlyDesktop to its factory state by deleting this entire folder.\n\nClick the `Backstage` button on the main TiddlyDesktop window to open the backstage wiki. This is is a Node.js-like instance of TiddlyWiki that runs the UI and logic of TiddlyDesktop.\n\n!! How do I get rid of the \"Add a ~TiddlyWiki Folder\" button.\n\nWithin the backstage wiki, locate the tiddler `WikiListToolbar` (there’s a link in HelloThere). Click it into edit mode and you’ll see the wikitext for all the toolbar buttons. If you make modifications and click “done” then the changes will immediately be reflected in the main TiddlyDesktop window.\n\n!! How would I change the \"advanced\" button to the \"reveal backups\" button.\n\nYou can copy the code for the “reveal backups” button from the tiddler `$:/TiddlyDesktop/Settings` and paste it into `WikiListToolbar`.\n\n!! How do I change the colors?\n\nJust as usual in TiddlyWiki: you can use the palette, or define your own custom CSS.\n\n!! How do I change the order in which the tiddlers are listed (which appears to be alphabetical)?\n\nOpen the `WikiList` tiddler, edit it, and scroll to the end. Then change the `<$list>` widget inside the ''wikilist'' macro:\n\n```\n<$list filter=\"[tag[wikilist]sort[title]!has[draft.of]]\" emptyMessage=\"Add a ~TiddlyWiki file or folder to get started. Click the buttons above to browse, or drag and drop from your file Explorer/Finder\" storyview=\"pop\">\n```\n\n"
},
"How to embed PDF and other documents": {
"title": "How to embed PDF and other documents",
"created": "20141117000000000",
"modified": "20161229175752081",
"tags": "Learning",
"type": "text/vnd.tiddlywiki",
"text": "!!! Note about embedding versus external linking\n\n''Note:'' Before we dive into how you can embed files of a certain type, you may want to consider not embedding and instead simply linking to external resources like this:\n\n```\n[ext[title|path/to/that.file]] \n```\n\nThen let your browser decide how to handle the resource. The advantage to this approach is that it is simple and quick. The disadvantage is that the file doesn't actually travel with the TW5 file and that you can't use `node.js` with method #2 below to quickly file paths.\n\n!! Two ways to embed a PDF in your TW5 file.\n\n!!! 1. Embedding with Drag and Drop \n\nOne is to drag and drop the file onto your TW5 file. Wait for the green bar to appear at the top, drop, and then import from the import tiddler. This actually embeds the contents of your imported PDF (or other file) into your TW5 file.\n\nThis method be OK as long as your PDF is not too big. There can be concerns if your TW5 file becomes too big.\n\n!!! 2. Embedding with '_canonical_uri'\n\nThe other way is to create a tiddler link to the external file. In this method the file is not actually incorporated into your TW5 file, but can be accessed with the `{{My Image File.jpg}}` transclusion syntax just like an embedded file. The location address of the file can also be changed under [[node.js]]. See [[ExternalImages]] for details of using external images with node.js.\n\nCreate a tiddler with a field `_canonical_uri`. Put in the local address to the external file. Set the `type` field to `application/pdf`.\n\nWith either way, with an appropriately configured browser, you should see your embedded PDF file. \n\n!!! Other File Types\n\nThere's only so many file formats that TW5 knows about. There is a list at [[ContentType]]. If your browser and/or TW5 doesn't know what to do with a particular file format, then you can only the use the second method to embed and then download a file. When you edit the tiddler a link is presented. You can right click on the link in order to download the file.\n"
},
"How to export tiddlers": {
"title": "How to export tiddlers",
"created": "20151006145934884",
"modified": "20160610084018658",
"tags": "Learning",
"type": "text/vnd.tiddlywiki",
"text": "! Selecting All tiddlers for export\n\nTo export ''all'' tiddlers click on the \"Tools\" tab of the Sidebar. Find and click the {{$:/core/images/export-button}} ''export all'' button. A pop-up menu will offer you the chance to export tiddlers in multiple formats.\n\n! Exporting a tiddler\n\nIf you want to export a particular tiddler, first navigate to that tiddler. Then click on the {{$:/core/images/down-arrow}} ''more'' button that appears above the tiddler. From the list that appears select {{$:/core/images/export-button}} ''export tiddler''. A pop-up menu will offer you the chance to export the tiddler in multiple formats.\n\n! Exporting tiddlers matching a criteria (filter)\n\nTo export a selection of tiddlers, click the little magnifying glass {{$:/core/images/advanced-search-button}} next to the search area on the sidebar. This will open the [[Advanced Search|$:/AdvancedSearch]] tiddler. Click on the \"Filter\" tab of the Advanced Search tiddler. Only the [[Filter|Filters]] tab will allow you to export a selection of tiddlers. [[Filters]] follow a particular syntax. Click on this [[Filters|Filters]] link to learn about how to make filters.\n\nOnce you have written a filter, a list of tiddlers matching the filter will appear. Now you can click on the {{$:/core/images/export-button}} ''export tiddler'' button to the right of the filter input field. A pop-up menu will offer you the chance to export tiddlers in multiple formats.\n\n! Export formats\n\nCurrently, the export formats available are:\n\n* CSV file format\n* JSON file format\n* Static HTML file\n* \".tid\" file format\n\nThe ``\".tid\"`` format is unique from the other formats in that only one tiddler will be exported, even if you are attempting to export all tiddlers or a selection of tiddlers.\n"
},
"How to hide the author's and other fields with CSS": {
"title": "How to hide the author's and other fields with CSS",
"created": "20180309232911422",
"modified": "20180310201216266",
"tags": "Learning",
"type": "text/vnd.tiddlywiki",
"text": "Sometimes you might want to save some screen space by hiding away the author's name in all tiddlers. Here's a quick way to do it:\n\n* Create a new tiddler with any title you want.\n* Give the tiddler the tag `$:/tags/Stylesheet`\n* In the text field of the tiddler put:\n\n```\n.tc-subtitle .tc-tiddlylink {display:none;}\n```\n\n* Save the tiddler. The author's name field should no longer appear.\n\nSimilarly, the entire subtitle field including author and date can be removed with:\n\n```\n.tc-subtitle {display:none;}\n```\n\nUnfortunately, you can't hide just the date without also hiding the author using CSS.\n\nAnd finally, for a truly minimalist look, you can remove the title with:\n\n```\nh2.tc-title {display:none;)\n```\n"
},
"How to put the last modification date in a banner": {
"title": "How to put the last modification date in a banner",
"created": "20141020111002211",
"modified": "20160617125921235",
"tags": "Learning",
"type": "text/vnd.tiddlywiki",
"text": "Here's how to display the last modification date of a wiki in a banner in the corner of the window:\n\n# [[Install the plugin|Installing a plugin from the plugin library]] <<.def \"Corner ribbon\">> in your ~TiddlyWiki\n# Save ({{$:/core/images/save-button}}) and reload ({{$:/core/images/refresh-button}}) your wiki\n# Create a new tiddler called [[$:/_MyRibbon]] tagged [[$:/tags/PageControls]] and containing:<div>\n\n```\n<div class=\"github-fork-ribbon-wrapper right\">\n<div class=\"github-fork-ribbon\" style=\"background-color:#DF4848;\">\n<$list filter=\"[!is[system]!has[draft.of]!sort[modified]limit[1]]\">\n<$link>\n<$view field=\"modified\" format=\"date\" template=\"DD mmm YYYY at 0hh:0mm\"/>\n</$link>\n</$list>\n</div>\n</div>\n```\n</div>\n# If required, change the background-color value to your preference\n# You can also try changing the positioning class from `right` to `right-bottom`\n## To make the banner appear at the top left you'll need to tag the tiddler [[$:/tags/PageTemplate]] instead of [[$:/tags/PageControls]] and then change the position class to `left`\n"
},
"How to widen tiddlers (aka storyriver)": {
"title": "How to widen tiddlers (aka storyriver)",
"created": "20161208000000000",
"modified": "20161208000000000",
"tags": "Learning [[Customise TiddlyWiki]]",
"type": "text/vnd.tiddlywiki",
"text": "You can change the width of the main column of tiddlers (also known as the story river) by:\n\n* Clicking on the settings cog to open the control panel\n* In the control panel select \"Appearance\" and then \"Theme Tweaks\". \n* Under Theme tweaks, scroll down. \n\nThere you will see settings for `story right`, `story width`, and `tiddler width`. By setting these numbers to something larger, you can widen the tiddlers. In general, `story right` and `story width` should be the same size, and `tiddler width` a little bit smaller. You could even use percentages for tiddler width. You will also probably want to change the sidebar breakpoint to something larger than the story river, unless you don't mind the sidebar floating to the top of the page.\n\n\n"
},
"How to add a new tab to the sidebar": {
"title": "How to add a new tab to the sidebar",
"created": "20141117000000000",
"modified": "20170204191253218",
"tags": "Learning [[Customise TiddlyWiki]]",
"type": "text/vnd.tiddlywiki",
"text": "To create a new tab in the sidebar menu:\n\n# Create a tiddler and tag it with the [[SystemTag|SystemTags]] tag [[$:/tags/SideBar]]\n#* To create a table of contents you can populate the new tab tiddler using the [[table-of-contents macros|Table-of-Contents Macros]]. For example, see the [[TableOfContents]] used here\n# By default, the tiddler title is used as the tab title but you can override it using the `caption` field\n# To define the tab ordering, use the `list-after` or `list-before` fields as discussed in [[Tagging]]\n#* For example: set `list-after` to [[$:/core/ui/SideBar/Open]] to place a sidebar tab immediately after the \"Open\" tab\n\nNote that you can create new tabs under the \"More\" tab in the same way by using the tag `$:/tags/MoreSideBar`.\n"
},
"How to turn off camel case linking": {
"title": "How to turn off camel case linking",
"created": "20161209172820513",
"modified": "20170204191306382",
"tags": "[[Customise TiddlyWiki]] Learning",
"type": "text/vnd.tiddlywiki",
"text": "CamelCase is used in most Wikis, but it can interfere with text presentation in some situations.\n\n!! Turning off Camel Case locally\n\nTo turn off a particular instance of a CamelCase text, simply put a tilde (~) in front of the word, like this:\n\n```\n~CamelCase\n```\n\n!! Turning off Camel Case globally\n\nTo turn off CamelCase in all tiddlers, navigate to the [[Control Panel|$:/ControlPanel]]. Select the `Settings` tab and then scroll or read down to the ``Camel Case Wiki Links`` section and unselect ``Enable automatic CamelCase linking``."
},
"Insert link": {
"title": "Insert link",
"created": "20160817095829521",
"modified": "20160817105713406",
"tags": "[[Editor toolbar]]",
"text": "This will give you a dialog to search for and pick existing tiddlers in the wiki. When you pick a tiddler it will be inserted as a WikiText link where the cursor is in the text field.\n\nPressing {{$:/core/images/link}} will give you `[[Some link]]`\n\nIt wil ''not'' insert: external web links or [[picture|Insert picture]] links."
},
"Insert picture": {
"title": "Insert picture",
"created": "20160817100415079",
"modified": "20160817110210268",
"tags": "[[Editor toolbar]]",
"text": "This will give you a dialog to search for and pick existing image tiddlers in the wiki. When you pick a tiddler it will be inserted as a WikiText image link where the cursor is in the text field.\n\n\nPressing {{$:/core/images/picture}} will give you `[img[$:/favicon.ico]]`"
},
"KeyboardShortcuts": {
"title": "KeyboardShortcuts",
"created": "20140526204527418",
"modified": "20160610082117953",
"tags": "Features [[Working with TiddlyWiki]]",
"type": "text/vnd.tiddlywiki",
"text": "Keyboard shortcuts can either be used with the <<.wlink KeyboardWidget>> Widget or with [[Keyboard Shortcut Tiddlers|Keyboard Shortcut Tiddler]]\n\n<<.tip \"\"\"The <$macrocall $name=\".wlink\" to=\"KeyboardWidget\"/> Widget makes the shortcuts accessible within an `input` or `textarea` field.\n<br>\nA shortcut defined through a [[Keyboard Shortcut Tiddler]] makes the shortcut accessible globally\"\"\">>\n\n!!!See [[How to create keyboard shortcuts]] with a detailed explanation for creating your own shortcuts\n\nKeyboard shortcuts are available for common editing operations within the Text Editor:\n\n* Confirming changes to the draft tiddler containing the keyboard focus (defaults to <kbd>ctrl-Enter</kbd>)\n* Abandoning changes to the draft tiddler containing the keyboard focus (defaults to <kbd>escape</kbd>)\n* Formatting operations from the tiddler editing toolbar (see the tooltips)\n\n<<.from-version 5.1.18>> : New ''global'' Keyboard shortcuts:\n\n* Creating a new tiddler (defaults to <kbd>alt-N</kbd> )\n* Creating a new journal (defaults to <kbd>alt-J</kbd> )\n* Creating a new image (defaults to <kbd>alt-I</kbd> )\n\nThe current shortcuts can be inspected and customised in the \"Keyboard Shortcuts\" tab of the [[Control Panel|$:/ControlPanel]] {{$:/core/images/options-button}}.\n\n!! Special Keys\n\n; adding tags in the editor\n: <<.from-version 5.1.14>> : if you hit <kbd>Enter</kbd> in the new tag input, the tag will be added\n"
},
"Making a custom journal button": {
"title": "Making a custom journal button",
"created": "20160424150551727",
"modified": "20171114215846324",
"tags": "[[Customise TiddlyWiki]]",
"type": "text/vnd.tiddlywiki",
"text": "To get your own ''//custom//'' Journal button, start by cloning the [[New Journal|$:/core/ui/Buttons/new-journal]] button.\n\nThen create your own config tiddlers, eg: \n\n* ``$:/config/myNewTiddler/Tags`` and ... \n* ``$:/config/myNewTiddler/Title`` and ... \n* ``$:/config/myNewTiddler/Text``\n\n\nEdit your custom button and \"search and replace\" the config tiddler names.\n\nChange the following lines, near the end of the tiddler \nfrom\n\n```\n<$set name=\"journalTitleTemplate\" value={{$:/config/NewJournal/Title}}>\n<$set name=\"journalTags\" value={{$:/config/NewJournal/Tags}}>\n<$set name=\"journalText\" value={{$:/config/NewJournal/Text}}>\n```\n\nto\n\n```\n<$set name=\"journalTitleTemplate\" value={{$:/config/myNewTiddler/Title}}>\n<$set name=\"journalTags\" value={{$:/config/myNewTiddler/Tags}}>\n<$set name=\"journalText\" value={{$:/config/myNewTiddler/Text}}>\n```\n\nif you want to see your config tiddlers in the sidebar use:\n\n```\n<$set name=\"journalTitleTemplate\" value={{config/myNewTiddler/Title}}>\n<$set name=\"journalTags\" value={{config/myNewTiddler/Tags}}>\n<$set name=\"journalText\" value={{config/myNewTiddler/Text}}>\n```\n"
},
"Making curved text with SVG": {
"title": "Making curved text with SVG",
"created": "20140324223413403",
"modified": "20150505063713581",
"tags": "Learning",
"type": "text/vnd.tiddlywiki",
"text": "\\define textOnPath(text)\n$$$.svg\n<svg width=\"100%\" height=\"100%\" viewBox=\"0 0 1000 300\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" style=\"background:white;\">\n<defs>\n<path id=\"MyPath\" d=\"M 100 200 C 200 100 300 0 400 100 C 500 200 600 300 700 200 C 800 100 900 100 900 100\"/>\n</defs>\n<use xlink:href=\"#MyPath\" fill=\"none\" stroke=\"#ddd\"/>\n<text font-family=\"'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif\" font-size=\"42.5\">\n<textPath xlink:href=\"#MyPath\">\n$text$\n</textPath>\n</text>\n</svg>\n$$$\n\\end\nThis demo shows how to use SVG to render transcluded text along a path. Enter some text in the textbox below to try it out; [[view the source|Making curved text with SVG]] to see how it is done.\n\n<$edit-text tiddler=\"$:/CurvedText\" tag=\"input\" placeholder=\"Type text here\" default=\"\"/>\n\n<$macrocall $name=\"textOnPath\" text={{$:/CurvedText}}/>\n"
},
"More actions": {
"title": "More actions",
"created": "20160817104039668",
"modified": "20160817110101356",
"tags": "[[Editor toolbar]]",
"text": "Pressing {{$:/core/images/down-arrow}} Gives you a dropdown menu with more editing options."
},
"Preserving open tiddlers at startup": {
"title": "Preserving open tiddlers at startup",
"created": "20140101192052333",
"modified": "20140912142248706",
"tags": "[[Customise TiddlyWiki]]",
"type": "text/vnd.tiddlywiki",
"text": "Ordinarily, at startup TiddlyWiki displays the tiddlers specified as a filter in the tiddler [[$:/DefaultTiddlers]].\n\nSometimes it's useful to re-open the same tiddlers that were open when the file was saved. To do so, set [[$:/DefaultTiddlers]] to this filter:\n\n```\n[list[$:/StoryList]]\n```\n\nThis filter returns the tiddlers specified in the [[$:/StoryList]] tiddler, which is the system tiddler that TiddlyWiki uses to store the sequence of tiddlers in the current story.\n"
},
"$:/SVGExampleRadius": {
"title": "$:/SVGExampleRadius",
"text": "50"
},
"Setting a favicon": {
"title": "Setting a favicon",
"created": "20131224074240979",
"modified": "20140912142228347",
"tags": "[[Customise TiddlyWiki]]",
"type": "text/vnd.tiddlywiki",
"text": "\"favicons\" are small icons that most browsers display to help users identify websites.\n\n! favicons in the Browser\n\nWhen TiddlyWiki starts up in the browser it looks for a tiddler called [[$:/favicon.ico]] and dynamically uses it as the favicon for the page. If you modify the image then the favicon changes instantly to reflect it.\n\n! favicons on the Server\n\nOn the server, the ServerCommand will serve the tiddler [[$:/favicon.ico]] at the path `/favicon.ico`.\n\n\n"
},
"Setting a page background image": {
"title": "Setting a page background image",
"created": "20150417155912612",
"modified": "20160610082700598",
"tags": "[[Customise TiddlyWiki]]",
"type": "text/vnd.tiddlywiki",
"text": "# Import your image as a tiddler (see [[Images in WikiText]])\n#* You can also use an [[external image|ExternalImages]]\n# Open the [[control panel|$:/ControlPanel]] {{$:/core/images/options-button}} and switch to the ''Appearance''/''Theme Tweaks'' tab\n# Select your image from the dropdown labelled \"Page background image\"\n# Set \"Page background image attachment\" to \"Fixed to window\" to have the background stay stationary and the content to scroll over the top of it, or \"Scroll with tiddlers\" to have it move (note that the iPhone/iPad [[doesn't support the fixed setting|http://stackoverflow.com/a/20444219]] for performance reasons)\n# Set \"Page background image size\" as follows:\n#* ''Auto'' causes the background image to be tiled over the page background\n#* ''Cover'' causes the background image to be sized so that it completely covers the page. Some of the image may be clipped\n#* ''Contain'' causes the background image to be sized so that it fits within the page\n\nNote that the palette ''DarkPhotos'' is provided to make the sidebar more readable on dark background images.\n\n"
},
"Sharing a TiddlyWiki on Dropbox": {
"title": "Sharing a TiddlyWiki on Dropbox",
"created": "20140122085818089",
"modified": "20150608032039504",
"tags": "Learning",
"type": "text/vnd.tiddlywiki",
"text": "You can work on a TiddlyWiki file in Dropbox and publish a URL that anyone can use to see a read-only view of the file.\n\n# Save your TiddlyWiki file within your Dropbox folder\n# Select Dropbox's \"Share Link\" option to obtain a public URL for the file\n#* In the Dropbox web interface, this is done by clicking the link icon that appears when you hover over a file. Dropbox also adds a \"Share Link\" item to the file context menu in Finder on OS X and Explorer on Windows\n# The URL generated by Dropbox will have this form:\n#> `https://www.dropbox.com/s/<gobbledegook>/mywiki.html`\n# Modify the URL like this, carefully preserving the gobbledegook:\n#> `https://dl.dropboxusercontent.com/s/<gobbledegook>/mywiki.html`\n\nThe result is a \"secret\" URL that you can send to other people to enable them to see the wiki.\n\n----\n\nEnter a generated URL here and you can copy and paste the secret URL:\n\n<$edit-text tiddler=\"$:/temp/dropboxurl\" default=\"https://www.dropbox.com/s/<gobbledegook>/mywiki.html\" tag=\"input\" type=\"text\" size=\"60\"/>\n\n<$macrocall $name=\"dropbox-url\" url={{$:/temp/dropboxurl}}/>\n"
},
"Simple ways to write protect tiddlers": {
"title": "Simple ways to write protect tiddlers",
"created": "20180310002601813",
"modified": "20180310003428093",
"tags": "Learning",
"type": "text/vnd.tiddlywiki",
"text": "Sometimes you want to protect individual tiddlers from accidental changes, either from yourself or guests to your ~TiddlyWiki file. Here's a couple simple approaches. Note that these do not provide hardened protection against a wilful attack.\n\n!! Using a stylesheet to lock tiddlers by tag name\n\nCreate a tiddler with the following contents and tag it as `$:/tags/Stylesheet` :\n\n```\n.tc-tagged-Locked button[title=\"Edit this tiddler\"] {display: none;}\n\n```\n\nIf your TW language isn't English, then you'll need to change the text in 'title=\"....\"' to whatever the text is when you hover over the edit button.\n\nNow any tiddler you tag as \"Locked\" will have the edit button hidden. To get it back you will need to open the stylesheet tiddler and change \"none\" to \"inline\".\n\n!! Using transclusion to hide your tiddler in a system tiddler\n\n* Open your tiddler for editing.\n* Select the title and copy.\n* Select all the tiddler text.\n* Click on the excise tool.\n* In the title box, type `$:/` and then paste the original title.\n* Use the defaults to excise and and leave a transclusion\n\nNow you can view the contents of your original tiddler, but to edit them your will have to find the the tiddler with the `$:/` prefix.\n"
},
"Structuring TiddlyWiki": {
"title": "Structuring TiddlyWiki",
"created": "20131128090536894",
"modified": "20150124211518000",
"tags": "[[Working with TiddlyWiki]]",
"type": "text/vnd.tiddlywiki",
"text": "TiddlyWiki5 provides several features to help you structure information as [[tiddlers|Tiddlers]], and model the relationships between them:\n\n* TiddlerLinks\n* [[Tagging]]\n* [[Title Lists|Title List]]\n* DataTiddlers\n"
},
"Tagging": {
"title": "Tagging",
"created": "20140904075400000",
"modified": "20160612132049797",
"tags": "[[Working with TiddlyWiki]] Concepts",
"type": "text/vnd.tiddlywiki",
"text": "Tagging is a way of organising tiddlers into categories. For example, if you had tiddlers representing various individuals, you could tag them as ''friend'', ''family'', ''colleague'' etc to indicate these people's relationships to you.\n\nA tag is in fact just a tiddler (or a potential tiddler), and it can have tags of its own. You can add any number of tags to the same tiddler.\n\nSee [[Creating and editing tiddlers]] for instructions on how to tag.\n\nBy tagging your tiddlers, you can view, navigate and organise your information in numerous additional ways:\n\n* The coloured tag pills on a tiddler give you quick access to all the other tiddlers with the same tag, as well as to the tiddler that represents the tag itself.\n\n* If a tiddler is serving as a tag, then the ''Tagging'' tab in its InfoPanel will show you which tiddlers are currently tagged with it.\n\n* The ''More'' tab of the sidebar has a ''Tags'' tab that presents an overview of all your tags and lets you access all your tagged tiddlers.\n\n* You can use [[filters|Filters]] to create lists of tiddlers based on their tags. You can then display any combination of the [[fields|TiddlerFields]] of those tiddlers. For example, you could build a glossary by listing the title and text of all tiddlers tagged ''Glossary''. Such lists can be formatted in any way you wish: e.g. bulleted, numbered or comma-separated.\n\n* There are a number of special ''system tags'' that control the layout of tiddlers and the entire ~TiddlyWiki page. See [[Page and tiddler layout customisation]] for instructions.\n\nThere are two more things you can do with tags:\n\n! Set a tag's colour and icon\n\nYou can use the {{$:/core/images/tag-button}} [[tag manager|$:/TagManager]], found on the ''Tags'' tab under ''More'' in the sidebar, to change the colour of a tag's pill or add an icon to the pill.\n\n* To change the colour, click the button in the ''Colour'' column to select from a colour picker. Alternatively, click the icon in the ''Info'' column, then type a [[CSS]] colour value in the ''Colour'' field\n* To change the icon, click the {{$:/core/images/down-arrow}} button in the ''Icon'' column and choose from the list of available icons\n\n! Change the order in which tags are listed\n\nBy default, tagged tiddlers are listed in alphabetical order.\n\nIf you want any other order, add a <<.flink ListField>> field to the tag tiddler, and set its value to be a [[list of the tiddlers|Title List]] in that order.\n\nThe ''list'' field doesn't have to mention all of the tiddlers. See the [[precise rules|Order of Tagged Tiddlers]] ~TiddlyWiki uses to order tagged tiddlers.\n"
},
"Text preview": {
"title": "Text preview",
"created": "20160817104110857",
"modified": "20160817104802841",
"tags": "[[Editor toolbar]]",
"text": "Pressing the eye icon {{$:/core/ui/EditorToolbar/preview}} will open or close a preview window (and the eye) of the text you are editing."
},
"The First Rule of Using TiddlyWiki": {
"title": "The First Rule of Using TiddlyWiki",
"created": "20140419132828051",
"modified": "20140919154434409",
"tags": "[[Working with TiddlyWiki]]",
"type": "text/vnd.tiddlywiki",
"text": "! Horror Stories\n\nEvery so often, TiddlyWiki users report heart-rending tales of personal data loss on the discussion groups:\n\n> My entire TiddlyWiki has just been wiped out when Firefox crashed during saving a tiddly.\n\nhttps://groups.google.com/d/topic/tiddlywiki/oG2L7OXhUoI/discussion\n\n> Last time I used it was last night at home on my Windows 7 desktop, hit the check mark to stop editing my last entry, it then saves via TiddlyFox and I eject my USB drive. I came to work this morning, plugged in my USB, enter my TW5 password and it doesn't want to open after several attempts. I browse to my TW5 html file and notice that my file size is no longer 3MB.. instead it is 80KB. This leads me to believe I lost everything.\n\nhttps://groups.google.com/d/topic/tiddlywiki/SXStDJ0ntGI/discussion\n\nDon't let it happen to you!\n\n!! The first rule of using TiddlyWiki is:\n\n<p style=\"font-size:40pt;line-height:48pt;font-weight:700;color:red;\">\nBackup your data!\n</p>\n\nTiddlyWiki is a very flexible, customisable system that puts you firmly in charge of your own data. Every care is taken in TiddlyWiki's development to ensure that it is a safe place to preserve your most valuable data but the ultimate responsibility to reduce the risk of data loss falls to users.\n\nThe best way to make sure that your data is safe is to practise a rigorous system of backups:\n\n* Consider using services like Dropbox to continuously back up your personal data to the cloud. (Dropbox [[has a neat feature|https://www.dropbox.com/help/11]] whereby they keep track of previous versions of files)\n* Retain backups before upgrading to a new version of TiddlyWiki\n* Figure out and protect yourself from the worst case scenarios: what if your USB stick or hard drive fails? What if your computer is hit by a ransomeware virus?\n* Be defensive and redundant: for example, take multiple backups and keep them in separate physical locations\n"
},
"Upgrading": {
"title": "Upgrading",
"created": "20131202102427114",
"modified": "20160617105124677",
"tags": "Features [[Working with TiddlyWiki]]",
"type": "text/vnd.tiddlywiki",
"text": "There are regular releases of TiddlyWiki with bug fixes and improvements. It's a good idea to keep up to date by regularly upgrading to the latest version.\n\n! Introduction\n\nThe process described here is for upgrading standalone TiddlyWiki files. There is a [[different procedure|Upgrading TiddlyWiki on Node.js]] for upgrading [[TiddlyWiki on Node.js]].\n\n<<<\nWhen upgrading, please remember the [[The First Rule of Using TiddlyWiki]]:\n\n//You are responsible for looking after your own data; take care to make backups, especially when upgrading the ~TiddlyWiki core//\n<<<\n\n! Online upgrading\n\nThis process will work on most desktop browsers. Note that none of your personal data leaves your browser with this process.\n\n# Locate your TiddlyWiki file in the file system (i.e. using Windows Explorer, the Finder on Mac OS X, or your file manager on Linux)\n# Visit https://tiddlywiki.com/upgrade.html in your browser\n\n# Drag your old TiddlyWiki HTML file into the browser window\n#* If the file is encrypted you will be prompted for the password\n# Review the list of tiddlers that will be upgraded\n# Click ''Upgrade''\n# Save changes to save the new version ({{$:/core/images/save-button}})\n\nThis will download a file called ''upgrade.html'' to your computer. This file is the upgrade of your old file. You may need to open the location where ''upgrade.html'' was downloaded, rename ''upgrade.html'' with the name of the old file you are upgrading, and replace the old file by moving the new file in its place.\n\n! Offline upgrading\n\nYou can also download https://tiddlywiki.com/upgrade.html locally and perform the same drag-and-drop procedure to upgrade your files.\n\n! Problems with Upgrades\n\n!! Firefox Security Restrictions\n\nThe following error occurs when trying to perform the online upgrade procedure using Firefox:\n\n<<<\nError while saving:\n\nError:NS_ERROR_DOM_BAD_URI: Access to restricted URI denied\n<<<\n\nThe upgrade operation falls foul of a security restriction in Firefox. Until this can be resolved, we suggest either using the offline upgrader, or using Chrome to perform the upgrade:\n\n# Use Chrome to open https://tiddlywiki.com/upgrade.html, then drag the TiddlyWiki HTML file to be upgraded into the upgrader window, as described above in ''Online upgrading''\n# After you've saved your upgraded file, you should be able to open it in Firefox and [[save using TiddlyFox|Saving with TiddlyFox]] again\n\n!! Incompatible Customisations\n\nIt is possible for a customisation applied in a previous version to break when upgraded to the latest version. There are two techniques you can use to help track down issues:\n\n* Try repeating the upgrade having selectively unchecked any tiddlers that may be applying customisations to TiddlyWiki\n* Use SafeMode to disable all customisations of shadow tiddlers\n\nYou can see which shadow tiddlers have been overridden in the ''Filter'' tab of [[advanced search|$:/AdvancedSearch]]. Select \"Overridden shadow tiddlers\" from the dropdown.\n"
},
"Using Excise": {
"title": "Using Excise",
"created": "20160810122928198",
"modified": "20160810122934291",
"tags": "[[Editor toolbar]]",
"type": "text/vnd.tiddlywiki",
"text": "\n! Excise text\nFrom the EditorToolbar you can export selected text to a new tiddler and insert a [[link|Linking in WikiText]] [[Transclusion]] or [[macro|Macros]] in its place. Click ''Excise text'' ({{$:/core/images/excise}}), input name of the new tiddler, and choose excise method.\n\n!! How to excise text\n# Highlight the relevant piece of text \n#Click ''Excise text'' ({{$:/core/images/excise}})\n# Give the new tiddler a title.\n# Chosse if the new tiddler will be tagged with the title of the current tiddler''*''.\n# Choose replacing method. [[link|Linking in WikiText]] [[Transclusion]] or [[macro|Macros]].\n\n# Click the ''{{$:/language/Buttons/Excise/Caption/Excise}}'' button\n\n\n\n''*NOTE:'' If you choose tic the option to `Tag new tiddler with the title of this tiddler`. The tag will be the'' draft title''. If you create a new tiddler (or clone an existing one), the draft title and the tag, will be `New Tiddler`. __You have to save the tiddler and re-edit it to get the new title as tag.__\n"
},
"Using SVG": {
"title": "Using SVG",
"created": "20131028132700000",
"modified": "20160618085859219",
"tags": "Features",
"type": "text/vnd.tiddlywiki",
"text": "TiddlyWiki5 allows you to use SVG to display vector graphics in two ways:\n\n* Tiddlers with the type `image/svg+xml` are interpreted as SVG images, and displayed and transcluded as self-contained `<img>` elements with the SVG embedded as a data URI in the `src` attribute.\n** For examples of SVG images see [[Motovun Jack.svg]] and [[Tiddler Fishes.svg]]\n* WikiText can also include inline SVG elements directly. See below for an example.\n\n! Embedding SVG tiddlers\n\nYou can embed an SVG image tiddler using the ordinary transclusion syntax:\n\n```\n{{Motovun Jack.jpg}}\n```\n\nYou can also use [[Typed Blocks in WikiText]] to embed an inline SVG tiddler.\n\nThe implications of the image being rendered within an `<img>` element are that it is sandboxed; it can't use CSS styles from the parent document, for example. Neither can the image use WikiText features like transclusion.\n\n! Embedding SVG elements\n\nThe other way to use SVG is to embed the `<svg>` element directly. For example:\n\n<svg width=\"150\" height=\"100\">\n <circle cx=\"100\" cy=\"50\" r=\"40\" stroke=\"black\" stroke-width=\"2\" fill=\"red\" />\n</svg>\n\nNote that inline SVG elements don't need an `<?xml version=\"1.0\"?>` directive.\n\n! Including HTML or WikiText content in SVG images\n\nYou can include simple text strings in SVG images using the `<text>` element:\n\n<svg width=\"100px\" height=\"30px\" viewBox=\"0 0 1000 300\"><text x=\"250\" y=\"150\" font-family=\"Verdana\" font-size=\"55\">Hello, out there</text><rect x=\"1\" y=\"1\" width=\"998\" height=\"298\" fill=\"none\" stroke-width=\"2\" /></svg>\n\nHTML or WikiText content can be included within inline SVG images using the `<foreignObject>` element. For example:\n\n<svg width=\"260px\" height=\"260px\"><circle cx=\"150\" cy=\"150\" r=\"100\" fill=\"blue\" stoke=\"red\"/><foreignObject x=\"70\" y=\"110\" width=\"150\" height=\"180\"><body>Here is some text that requires a word wrap, and includes a [[link to a tiddler|HelloThere]].</body></foreignObject></svg>\n\n! Transcluding SVG elements\n\nWhen embedding SVG elements you can also use WikiText features like transclusion. For example, here is an SVG circle with the radius set to the value in the tiddler [[$:/SVGExampleRadius]]:\n\n<svg width=\"150\" height=\"150\"><circle cx=\"75\" cy=\"75\" r={{$:/SVGExampleRadius}} stroke=\"black\" stroke-width=\"2\" fill=\"green\"/></svg>\n\nYou can edit the value of the radius here: <$edit-text tiddler=\"$:/SVGExampleRadius\" tag=\"input\"/>\n\n! Making curved text with SVG\n\n{{Making curved text with SVG}}"
},
"Using Stamp": {
"title": "Using Stamp",
"created": "20160618090057124",
"modified": "20190704054958185",
"tags": "[[Editor toolbar]]",
"type": "text/vnd.tiddlywiki",
"text": "! Insert snippets\nYou can insert preconfigured snippets of text to use stamp from toolbar. Click ''stamp'' ({{$:/core/images/stamp}}) and just select a snippet.\n\n! Create a snippet\n# Click ''stamp'' ({{$:/core/images/stamp}})\n# Create a snippet tiddler through the \"//Add your own//\" menu entry\n# Type some text as snippet for the tiddler, add a caption for the name as shown in the menu\n# Click the {{$:/core/images/done-button}} ''ok'' button\n\n<<.tip \"\"\"''Tip:'' You can also create a snippet tiddler using the ''new tiddler'' {{$:/core/images/new-button}} button in the sidebar, and add tag ''~$:/tags/TextEditor/Snippet''\"\"\">>\n\n\n!!<<.from-version \"5.1.20\">> Adding a prefix and/or suffix to a selection\n\n# Click ''stamp'' ({{$:/core/images/stamp}})\n# Create a snippet tiddler through the \"//Add your own//\" menu entry\n# Add a caption for the name as shown in the menu\n# Create a tiddler with the same title but add the suffix `/prefix`\n# Insert the prefix in its text field\n# Create a tiddler with the same title but add the suffix `/suffix`\n# Insert the suffix in its text field\n# Click the {{$:/core/images/done-button}} ''ok'' button\n"
},
"Using Stylesheets": {
"title": "Using Stylesheets",
"created": "20140305091244145",
"modified": "201804111739",
"tags": "[[Customise TiddlyWiki]]",
"type": "text/vnd.tiddlywiki",
"text": "\\define tv-config-toolbar-text() yes\n\n\\define openCpTheme()\n<$action-setfield $tiddler=\"$:/state/tab-1749438307\" $value=\"$:/core/ui/ControlPanel/Appearance\"/>\n<$action-setfield $tiddler=\"$:/state/tab--1963855381\" $value=\"$:/core/ui/ControlPanel/Theme\"/>\n<$action-navigate $to=\"$:/ControlPanel\"/>\n\\end\n\n! Theme and Colorpalette\n\nThe first steps to changing the appearance of ~TiddlyWiki are to choose and apply:\n\n* One of the available themes: <span class=\"tc-btn-standard\"> {{$:/core/ui/Buttons/theme}} </span>\n* Modify the colour palette: <span class=\"tc-btn-standard\"> {{$:/core/ui/Buttons/palette}} </span>\n* Experiment with the <$button actions=<<openCpTheme>> >{{$:/core/images/options-button}} ControlPanel</$button>\n\n! Work with Stylesheets\n\nIn addition to the control panel, custom styles can be defined by tagging a tiddler `$:/tags/Stylesheet`. Try creating a custom stylesheet now with the following content in order to change the page background colour to red:\n\n```\nbody.tc-body {\n\tbackground: red;\n}\n```\n\n!! Additional Resrouces\n\n* [[Cascading Style Sheets (CSS) at mozilla|https://developer.mozilla.org/en-US/docs/Web/CSS]]\n* [[Cascading Style Sheets (CSS) at w3scools|http://www.w3schools.com/css]]\n\n! Overriding Theme Settings\n\nCustom stylesheets are applied independently from theme stylesheets. Therefore, it is often necessary for the css rules in your custom stylesheet to be more specific than those of the theme you want to override. For example, `html body.tc-body` is more specific than `body.tc-body`. \n\n<<.tip \"''You should always start with the least specific value that works!''<br><br>\">>\n\n! Stylesheet Types\n\nUsually it is best to use the type `text/css` for stylesheets. This treats them as plain stylesheets, and ensures that ~TiddlyWiki doesn't apply any wiki processing to them.\n\nIf you wish to use macros and transclusions in your stylesheets you should instead use the default WikiText type `text/vnd.tiddlywiki`. This allows full ~WikiText processing to be performed. Here is an example:\n\n```\n\\rules only filteredtranscludeinline transcludeinline macrodef macrocallinline html\n\nbody.tc-body pre {\n\t<<box-shadow \"inset 0 1px 0 #fff\">>\n}\n```\n\nThe `\\rules` pragma at the top of the tiddler restricts the ~WikiText to just allow macros and transclusion. This avoids mistakenly triggering unwanted ~WikiText processing.\n\nA stylesheet tiddler is processed such that it is first wikified and then the text portion of the ouput is extracted to apply as the CSS. Any HTML tags you will use in your stylesheet are thus ignored. For example, HTML elements generated by the RevealWidget will not affect the output. As in the following example, you can wrap CSS rules in `<pre>` tags to display them as a codeblock without affecting processing, including handling the inner macro.\n\n```\n\\rules only filteredtranscludeinline transcludeinline macrodef macrocallinline html\n\n<pre>body.tc-body pre {\n\t<<box-shadow \"inset 0 1px 0 #fff\">>\n}\n</pre>\n```\n\n!! Stylesheet Macros\n\nThe ~TiddlyWiki core provides several [[global macros that are helpful in constructing stylesheets|Stylesheet Macros]].\n"
},
"Using TiddlyWiki for GitHub project documentation": {
"title": "Using TiddlyWiki for GitHub project documentation",
"created": "20130825150100000",
"modified": "20140912141559011",
"tags": "[[TiddlyWiki on Node.js]]",
"type": "text/vnd.tiddlywiki",
"text": "TiddlyWiki5 can be used to produce documentation for GitHub projects. It lets you maintain a single set of documentation as a [[TiddlyWikiFolder|TiddlyWikiFolders]] containing separate tiddler files under source code control, and then use it to produce `readme.md` files for inclusion in project folders, or HTML files for storage in [[GitHub Pages|http://pages.github.com/]]. Both features are demonstrated by TiddlyWiki5 itself.\n\n! Generating `readme.md` files\n\nWhen displaying the contents of a folder GitHub will look for a `readme.md` file and display it. Note that it will not display full HTML files in this way, just static MarkDown files (this is a security measure). Happily MarkDown permits a safe subset of HTML, and thus to generate a `readme.md` file that is suitable for GitHub it is just necessary for TiddlyWiki5 to generate the content of the `<body>` element of an HTML document, and give it the appropriate filename.\n\nThis is done with this command:\n\n```\n--rendertiddler ReadMe ./readme.md text/html\n```\n\nIt saves the tiddler ReadMe to the file `./readme.md` in the `text/html` format.\n\nBy default, tiddler links will be rendered as `<a>` links to a relative URI consisting of the title of the tiddler. This behaviour can be overridden by defining the macro `tv-wikilink-template`, as is done at the top of the tiddler ReadMe:\n\n```\n\\define tv-wikilink-template() https://tiddlywiki.com/static/$uri_doubleencoded$.html\n```\n\nSee the LinkWidget for more details.\n\nIn this example, tiddler links are rendered as links to the static rendering of tw5.com.\n"
},
"Using a custom path prefix with the client-server edition": {
"title": "Using a custom path prefix with the client-server edition",
"created": "20140613133627669",
"modified": "20140912141613393",
"tags": "[[TiddlyWiki on Node.js]]",
"type": "text/vnd.tiddlywiki",
"text": "By default, when running [[TiddlyWiki on Node.js]], the server exposes the wiki at the URI formed from the protocol, host and port - for example, `http://127.0.0.1:8080/`.\n\nThere are two steps to running the wiki at a custom path like `http://127.0.0.1:8080/path/to/my/wiki/`:\n\n# Configure the server by passing `/path/to/my/wiki` as the ''pathprefix'' argument of the ServerCommand\n# Configure the client by creating a tiddler called `$:/config/tiddlyweb/host` that contains `$protocol$//$host$/path/to/my/wiki/`\n\n\n"
},
"Windows HTA Hack": {
"title": "Windows HTA Hack",
"caption": "HTA Hack",
"created": "20131212223146250",
"delivery": "DIY",
"description": "Manual method to let Internet Explorer save changes directly",
"method": "save",
"modified": "20171113160539299",
"tags": "Saving Windows",
"type": "text/vnd.tiddlywiki",
"text": "Under Windows it is possible to convert TiddlyWiki into a true local application by renaming the HTML file to have the extension `*.hta`. The ''fsosaver'' module can then use the ~ActiveX ~FileSystemObject to save changes.\n\nNote that one disadvantage of this approach is that the TiddlyWiki file is saved in UTF-16 format, making it up to twice as large as it would be with the usual UTF-8 encoding. However, opening and saving the file via another saving method will re-encode the file to UTF-8.\n\nSee Wikipedia for more details: http://en.wikipedia.org/wiki/HTML_Application\n"
},
"Q: Is there a way to create dynamic stylesheets?": {
"title": "Q: Is there a way to create dynamic stylesheets?",
"created": "201804111739",
"modified": "201804111739",
"tags": "[[Custom Styles FAQ]]",
"text": "''Answer:'' <<.from-version \"5.1.16\">>\n\nYes, see: [[Q: How can I use a custom field to style a tiddler?]]\n"
},
"Q: How can I use a custom field to style a tiddler?": {
"title": "Q: How can I use a custom field to style a tiddler?",
"created": "201804111739",
"modified": "201804111739",
"tags": "[[Custom Styles FAQ]]",
"text": "\n''Consider the following usecase:'' <<.from-version \"5.1.16\">>\n\nThere is a field named: `rank`, which can hold different values eg: `species`.\n\n''Answer:''\n\nThe idea is now: We dynamically create the stylesheet. The style-sheet can look like this: \n\n\"\"\"\ntitle: `myStyles`\ntags: `$:/tags/Stylesheet`\n\"\"\"\n\n```\n<$list filter=\"[rank[species]]\"> \n[data-tiddler-title^=\"<$view field=title/>\"] .tc-tiddler-body {\n column-count: 2;\n}\n</$list> \n```\n\nThis creates a CSS rule for every tiddler-title, that has a field `rank` and value `species`.\n\n[[Learn more about possible attributes!|Attribute Selectors]]"
},
"Q: What if a tiddler has no tags?": {
"title": "Q: What if a tiddler has no tags?",
"created": "201804111739",
"modified": "201804111739",
"tags": "[[Custom Styles FAQ]]",
"text": "''Answer:'' <<.from-version \"5.1.16\">>\n\n* If a tiddler has no tags, but needs styling use: `data-tiddler-title` as CSS selector\n** There is only one tiddler \n\n* If a user wants to style system tiddlers in a custom way: use: `[data-tiddler-title^=\"$:\"/]` as a selector\n** using the TW namespace functionality\n\n* If the user wants special behaviour for tagged tiddlers. eg: Learning\n** use: `[data-tags*=\"Learning\"]` as CSS selector. \n\nThe names I'm using are only used for documentation purpose, without changing the existing wiki. I don't want, that the docs has side effects. \n\n[[Learn more about possible attributes!|Attribute Selectors]]"
},
"Q: How can I style a tiddler if it has \"this\" AND \"that\" tag?": {
"title": "Q: How can I style a tiddler if it has \"this\" AND \"that\" tag?",
"created": "201804111739",
"modified": "201804111739",
"tags": "[[Custom Styles FAQ]]",
"text": "''Answer:'' <<.from-version \"5.1.16\">>\n\nIf tiddler has both: `this` AND tag `that` create an orange border.\n\n```\n[data-tags*=\"bar\"][data-tags*=\"froz\"] {\n border: 2px solid orange;\n}\n```\n\n''If your CSS looks like this: ''\n\n```\n[data-tags~=\"this\"] {\n border: 2px solid blue;\n}\n\n[data-tags~=\"that\"] {\n border: 2px solid red;\n}\n```\n\n`this` creates a blue border\n`that` creates a red border\nIf you swap positions, you get it the other way around.\n\n\n[[Learn more about possible attributes!|Attribute Selectors]]"
},
"Q: How can I style a tiddler if it has \"this\" OR \"that\" tag?": {
"title": "Q: How can I style a tiddler if it has \"this\" OR \"that\" tag?",
"created": "201804111739",
"modified": "201804111739",
"tags": "[[Custom Styles FAQ]]",
"text": "''Answer:'' <<.from-version \"5.1.16\">>\n\nEither tag `this` or tag `that` create a red border.\n\n```\n[data-tags~=\"this\"],\n[data-tags~=\"that\"] {\n border: 2px solid red;\n}\n```\n\n[[Learn more about possible attributes!|Attribute Selectors]]"
},
"Blurry Lawn.jpg": {
"title": "Blurry Lawn.jpg",
"text": "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",
"type": "image/jpeg",
"tags": "picture external-image",
"source": "https://www.flickr.com/photos/jermy/16386332964/in/photostream"
},
"Dev Thumbnail.jpg": {
"title": "Dev Thumbnail.jpg",
"text": "/9j/4AAQSkZJRgABAQEASABIAAD/4QCMRXhpZgAATU0AKgAAAAgABQESAAMAAAABAAEAAAEaAAUAAAABAAAASgEbAAUAAAABAAAAUgEoAAMAAAABAAIAAIdpAAQAAAABAAAAWgAAAAAAAACQAAAAAQAAAJAAAAABAAOgAQADAAAAAQABAACgAgAEAAAAAQAAAXWgAwAEAAAAAQAAANQAAAAA/+EJIWh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8APD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iWE1QIENvcmUgNS40LjAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIi8+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPD94cGFja2V0IGVuZD0idyI/PgD/7QA4UGhvdG9zaG9wIDMuMAA4QklNBAQAAAAAAAA4QklNBCUAAAAAABDUHYzZjwCyBOmACZjs+EJ+/+IMWElDQ19QUk9GSUxFAAEBAAAMSExpbm8CEAAAbW50clJHQiBYWVogB84AAgAJAAYAMQAAYWNzcE1TRlQAAAAASUVDIHNSR0IAAAAAAAAAAAAAAAAAAPbWAAEAAAAA0y1IUCAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA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",
"type": "image/jpeg",
"tags": "picture"
},
"Introduction Video Thumbnail.jpg": {
"title": "Introduction Video Thumbnail.jpg",
"text": "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bkopIXOBXrtJu4MKKQgooAKKACigAooAKKACigAooAKKACigAooAKKAP/9f9sKKACigAooAKKACigAooAKKACigAooAKKACigAooAKKAMjXNI0zWtPktNWtY7uFQZAkoyA6qcN25Ga1yAeDXRh8RKlLmg7eg2k1ZnzVo13b+DvBPhjXdGsLZry48N3d9NIyszzTQ20LB2YNkjLFn6kgcEV9Gra2qLGqQxqIVKRgIoCKQAVXjgEDBAwMV7lTO4Vas6laHMnJOzfbocscO4xSi7NHgV54j1fSPE+oFNesNSlbTdFhF2I1WKzW/vpY2mljjkKFQOYySMjAckc17jb6JotrDJbWun2sMUylJI44I1V1bqGAXDA9wcij+18L7ONOVO9m3slutNEtbA6E+ZvmPAzq9/aeJ76c38eszaf4gCj7PiPzDDoU0oiZEZlD5xkLweDgGvoG20vS7JUSzs7e3WNgyLFEkYVgCoI2gYO0kZ644q3nVFU1BU72Vnsr636LTt+pKw87uXN+fax4PZ+PfHF3DaQwy2ay6mdLaKadLd1h+2zeW+2K3uJC8W05jLlW3KQScnHu1vpGk2m82llbQeZIJn8uFE3SjkOcKMsD0PUVnPNcHduNBdbaLTt62GsPU6zPL9O8W63beKU03XdRt3spLu6s45IYoWhc20LSfO6Sia3nXYzSCSPygOFYcE+oHSNKN3JfmytjczIY5JjChkdCMFWbG4qRwQTgjiuerj8POhyez97vZI0hTmp35tC3b3Fvd28V3aSpPBMiyRSxsHR0cZVlYZBBByCOCKWCGG2hS3t40iiiUJHHGoVEVRgKqjAAA6AcCvEN27ktFAgooAKKACigAooAKKACigAooAKKACigAooAKKACigAooAKKACigAooAKKACigAooAKKACigAooAKKACigAooAKKACigAooAKKACigAooAKKACigAooAKKACigAooAKKACigAooAKKACigAooAKKACigAooAKKACigAooA//Q/bCigAooAKKACigAooAKKACigAooAKKACsqXXNHg1e38PzXsEep3cE11b2byBZ5oLYxrNIiE5ZIzLGHIzt3rnGRTsx2Zq0UhBRQAUUAFFABRQAUUAFFABRQAUUAFFABRQAUUAFFABRQAUUAFFABRQAUUAFFABRQAUUAFFABRQAUUAFFABRQAUUAFFABRQAUUAFFABRQAUUAFFABRQAUUAFFABRQAUUAFFABRQAUUAFFABRQAUUAFFABRQAUUAFFABRQAUUAFFABRQAUUAFFABRQAUUAFFABRQAUUAf/R/bCigAooAKKACigAooAKKACigAooAKKAPkL9pL4I6h8RfFngH4j6RqWqWOo/D3UjeW0Wlzx2ks63klvHcZuJA2NlukhEeNk3McmUYg/XhAYYIBHvVcxVyG1MjQIZSrMRyVztPuMgHnrU9JskKKQBRQAUUAFFABRQAUUAFFABRQAUUAFFABRQAUUAFFABRQAUUAFFABRQAUUAFFABRQAUUAFFABRQAUUAFFABRQAUUAFFABRQAUUAFFABRQAUUAFFABRQAUUAFFABRQAUUAFFABRQAUUAFFABRQAUUAFFABRQAUUAFFABRQAUUAFFABRQAUUAFFABRQAUUAFFABRQB//S/bCigAooAKKACigAooAKKACigAooAKKACigAooAKKACigAooAKKACigAooAKKACigAooAKKACigAooAKKACigAooAKKACigAooAKKACigAooAKKACigAooAKKACigAooAKKACigAooAKKACigAooAKKACigAooAKKACigAooAKKACigAooAKKACigAooAKKACigAooAKKACigAooAKKACigAooAKKACigAooAKKACigD/9k=",
"type": "image/jpeg",
"tags": "picture"
},
"Motovun Jack.ascii": {
"title": "Motovun Jack.ascii",
"tags": "picture",
"text": "\\rules only html\n<pre style=\"font-size:10px; font-family: monospace; line-height:13px\">\n ';. .;c'\n :XNo ,kjack' .:dd\n,K0X: '0l Tiddly:',..,Wiki.\njacK' .dk. '';jack .xk;\nJack; ..',','... '0c .0c\n:0:c0l. .:dTidllyc::cjoWikioc:,,,,;;:cJACKc:;;d0. 'K:\n l0:'jack,... ...',:lkxc. ..';:ccc:;;,'...',:loc .Kc\n ,xk:..,jackjackjack;'. :K,\n .lxxl;.. . .Ox.\n .':lTiddlyWikI. .xk.\n `` ;0; . ;Od.\n .dO' .0Ojackx,\n cOo' .kk'.'..\n .k0' .cOo.\n lO; ... .jack.\n .xk' .jackTiddlyWikijackO, .lkd;.\n ;Oo. .dO. .ok. ,Oo.\n l0; .c, ,0: .kd l0.\n .xk. .xNx lO. lO. ;0,\n .Od. ,XW0, :0; dk. .kx.\n .kx. jACKx' cOl. .Ol ;0:\n .oO: .JACKx. .jack;'. .0: c0;\n 'dkc ,lXKd' .'jack. .Ol cOc.\n .;ljack,.;xkc,...,oK, 'xxjack. .oko.\n `` 'cljack' .okdlcJack.\n 'JacK,'\n</pre>"
},
"Motovun Jack.jpg": {
"title": "Motovun Jack.jpg",
"text": "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",
"type": "image/jpeg",
"source": "https://www.flickr.com/photos/jermy/6292279493/in/photostream",
"tags": "picture"
},
"Motovun Jack.pdf": {
"title": "Motovun Jack.pdf",
"text": "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G6vFGxvrJbDYGAPgfthf/7tsMuPgWX1h6SbqNEo9tPn+9/U/2yfKfAplbmRzdHJlYW0KZW5kb2JqCjkgMCBvYmoKNjE2NQplbmRvYmoKNyAwIG9iagpbIC9JQ0NCYXNlZCA4IDAgUiBdCmVuZG9iagozIDAgb2JqCjw8IC9UeXBlIC9QYWdlcyAvTWVkaWFCb3ggWzAgMCA1MjEgMzMyXSAvQ291bnQgMSAvS2lkcyBbIDIgMCBSIF0gPj4KZW5kb2JqCjEwIDAgb2JqCjw8IC9UeXBlIC9DYXRhbG9nIC9QYWdlcyAzIDAgUiA+PgplbmRvYmoKMTEgMCBvYmoKKE1hYyBPUyBYIDEwLjguNSBRdWFydHogUERGQ29udGV4dCkKZW5kb2JqCjEyIDAgb2JqCihEOjIwMTMxMDEzMTE1MzIwWjAwJzAwJykKZW5kb2JqCjEgMCBvYmoKPDwgL1Byb2R1Y2VyIDExIDAgUiAvQ3JlYXRpb25EYXRlIDEyIDAgUiAvTW9kRGF0ZSAxMiAwIFIgPj4KZW5kb2JqCnhyZWYKMCAxMwowMDAwMDAwMDAwIDY1NTM1IGYgCjAwMDAwMDg0NDAgMDAwMDAgbiAKMDAwMDAwMTcyMCAwMDAwMCBuIAowMDAwMDA4MjEzIDAwMDAwIG4gCjAwMDAwMDAwMjIgMDAwMDAgbiAKMDAwMDAwMTcwMCAwMDAwMCBuIAowMDAwMDAxODI0IDAwMDAwIG4gCjAwMDAwMDgxNzggMDAwMDAgbiAKMDAwMDAwMTg5MiAwMDAwMCBuIAowMDAwMDA4MTU4IDAwMDAwIG4gCjAwMDAwMDgyOTYgMDAwMDAgbiAKMDAwMDAwODM0NiAwMDAwMCBuIAowMDAwMDA4Mzk4IDAwMDAwIG4gCnRyYWlsZXIKPDwgL1NpemUgMTMgL1Jvb3QgMTAgMCBSIC9JbmZvIDEgMCBSIC9JRCBbIDwzZjUwZDNjOGIwZjhhN2UwYzM4M2YwNzAzYTZjZDFiYT4KPDNmNTBkM2M4YjBmOGE3ZTBjMzgzZjA3MDNhNmNkMWJhPiBdID4+CnN0YXJ0eHJlZgo4NTE1CiUlRU9GCg==",
"type": "application/pdf",
"tags": "picture"
},
"Motovun Jack.svg": {
"title": "Motovun Jack.svg",
"text": "<?xml version=\"1.0\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xl=\"http://www.w3.org/1999/xlink\" version=\"1.1\" viewBox=\"34 107 510 317\" width=\"510pt\" height=\"317pt\"><metadata xmlns:dc=\"http://purl.org/dc/elements/1.1/\"><dc:date>2012-05-10 07:32Z</dc:date><!-- Produced by OmniGraffle Professional 5.3.6 --></metadata><defs></defs><g stroke=\"none\" stroke-opacity=\"1\" stroke-dasharray=\"none\" fill=\"none\" fill-opacity=\"1\"><title>Canvas 1</title><g><title>Layer 1</title><path d=\"M 204.10294 372.67294 L 206.91333 373.50204 C 210.44484 371.92197 217.54364 374.36401 221.30923 375.55795 C 214.37523 367.871 203.92865 356.58286 196.40225 349.4665 C 193.93185 340.85104 194.98593 332.1817 195.51744 323.3866 L 195.62405 322.659 C 192.65733 329.6997 188.89246 336.5437 186.86893 343.95477 C 184.50095 353.95294 197.39323 364.74045 202.39233 370.92294 Z M 419.00293 414.95798 C 399.65295 414.411 391.14194 414.45804 381.28735 398.25296 L 373.60684 398.473 C 364.66696 398.076 368.39264 398.25595 362.42844 397.95901 C 352.45654 397.57098 354.05396 388.09604 352.29965 383.09003 C 349.49335 366.09698 356.01324 349.01611 355.80756 332.01971 C 355.73474 325.98639 347.19724 304.63062 344.14716 296.99548 C 334.58554 298.79572 324.97205 299.13895 315.27176 299.62231 C 292.91254 299.56754 270.70496 296.8295 248.65794 293.35248 C 244.36153 311.10052 231.59093 335.94183 242.14684 353.9793 C 254.95975 372.63696 263.95123 377.80597 277.88824 378.93094 C 291.8251 380.055 294.97214 395.78998 291.60031 401.40997 C 288.61584 405.294 283.37045 405.99902 278.91385 406.94 L 269.99945 407.35898 C 262.98456 407.12299 256.71454 405.229 250.46393 402.30798 C 240.02545 396.48102 229.24443 384.36703 221.23434 375.67001 C 223.09915 379.143 224.21146 385.92294 222.52005 389.07803 C 217.78415 395.78699 197.30133 395.746 187.92093 391.577 C 177.26495 386.84198 151.51596 353.59503 147.53493 328.69455 C 158.12593 308.66583 173.55493 291.2196 181.36093 269.41132 C 164.34593 258.55438 155.23293 240.88019 156.41594 220.8598 L 156.84294 218.5423 C 140.10095 221.67648 148.78296 220.51039 130.772964 221.87279 C 73.41696 221.6973 22.976959 182.80795 51.378967 122.367004 C 53.225952 118.787964 54.982956 115.534 58.113968 117.08801 C 60.626953 118.33496 60.265976 123.33699 59.001953 128.88399 C 42.766968 201.10277 122.11395 201.65552 170.88995 188.29181 C 175.73093 186.96521 185.35893 178.03061 192.02843 175.0687 C 202.93033 170.22757 214.76323 168.2634 226.50644 166.84811 C 255.71411 163.51997 290.81815 178.90649 308.65442 179.4089 C 326.4909 179.91129 351.86395 175.13808 367.43942 176.14308 C 378.74075 176.66016 389.83795 178.70007 400.74194 181.6059 C 407.79996 147.215 408.29895 121.867996 425.03094 116 C 434.85095 117.550995 442.4179 130.93298 448.01895 138.08301 L 448.04193 138.07898 C 459.4489 137.62897 470.30396 140.52301 481.09692 143.73497 C 500.63696 140.962006 517.03394 129.989 534.28992 121.45299 C 534.23596 121.721985 533.95398 121.81297 533.78595 121.99397 C 516.80396 135.72798 514.4319 158.952 516.42993 180.42822 C 517.17297 191.57237 514.02393 203.67166 510.13098 215.08179 C 502.84595 233.67169 488.77692 253.26677 472.44794 252.26176 C 466.27496 252.0665 462.68893 248.57117 458.10095 244.83946 C 457.21094 252.39809 453.71295 259.14267 450.34094 265.82758 C 442.55396 280.64941 422.20496 287.18097 403.36292 303.00763 C 384.52216 318.83453 409.39194 375.35904 415.42194 385.65802 C 421.45096 395.95798 438.28192 399.72598 431.75095 409.02194 C 429.75296 412.09198 426.69794 413.19 423.43292 414.38098 Z\" fill=\"black\"/></g></g></svg>\n",
"type": "image/svg+xml",
"tags": "picture"
},
"New Release Banner": {
"title": "New Release Banner",
"text": "/9j/4AAQSkZJRgABAQAASABIAAD/4QCsRXhpZgAATU0AKgAAAAgABQEaAAUAAAABAAAASgEbAAUAAAABAAAAUgExAAIAAAAYAAAAWgEyAAIAAAAUAAAAcodpAAQAAAABAAAAhgAAAAAAAABIAAAAAQAAAEgAAAABRmx5aW5nIE1lYXQgQWNvcm4gNS42LjUAMjAxOTowMzoxNiAxMjo1NjoyNAAAAqACAAQAAAABAAACMKADAAQAAAABAAABOwAAAAD/4QmZaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/PiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJYTVAgQ29yZSA1LjQuMCI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1wOkNyZWF0b3JUb29sPSJGbHlpbmcgTWVhdCBBY29ybiA1LjYuNSIgeG1wOk1vZGlmeURhdGU9IjIwMTktMDMtMTZUMTI6NTY6MjQiLz4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8P3hwYWNrZXQgZW5kPSJ3Ij8+AP/tADhQaG90b3Nob3AgMy4wADhCSU0EBAAAAAAAADhCSU0EJQAAAAAAENQdjNmP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1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9sAQwABAQEBAQECAQECAwICAgMEAwMDAwQFBAQEBAQFBgUFBQUFBQYGBgYGBgYGBwcHBwcHCAgICAgJCQkJCQkJCQkJ/9sAQwEBAQECAgIEAgIECQYFBgkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJ/90ABAAj/9oADAMBAAIRAxEAPwD+/iiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooA/9D+/iiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooA/9H+/iiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooA/9L+/iiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooA/9P+/iiiigAooooAKKKKACiiigAooooAKKKKACiiigAoor5u/aZ/ai+H/wCyz4Ni8W+OLTUtSkvHeKzsdKtmubm4lUA7FGVjTqMtI6qOpOAca0aMqklCCu2YYrFU6NN1artFbs+kaK/APxZ/wcI/s/8Age3SbxT8K/iJYBkcb7nTrOOMypGsmxSt65PBySAd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mynzBVViAGKhRkL0OMgkjnrmt+z8Mqm17pU3IhRQD5mNxyeZBu6/NySckjJGK/T8j8PqmHfv+X5tvy1/4Fu3xuZcVQrL3f60sv6/Hv5db6K3mQQXERkUSZPlqCkTENuQPk7tmBwRkYyOCVPpun2caMtnb5iVUSRUJw4ByuTgbevpnkdcEAdLFaMMm4IY54+nP64OM/p2q2Ex3P1r9Fy/Io0dUfJ4vM3U0ZBbwpbxpHboI0A5GMH8hx9f/r1aoor34xsrI8lu+rCiiiqEFFFFABRRRQB//9X+/iiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAImhidxI6gkdM84x6en+fSpAAOg60tFJJDuFFFFMQUUUUAFFFFABRRRQAUUUUAFFFFABRRRQB//W/v4ooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP/X/v4ooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP/Q/v4ooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP/R/v4ooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP/S/v4ooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP/Z",
"type": "image/jpeg",
"tags": "picture"
},
"Newnham Horizon.jpg": {
"title": "Newnham Horizon.jpg",
"text": "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tAgwKQjmlNIKAEPvRSkc0fjTENxSEZ9qfRjmi4Eff1oIqTFJincVi5SUtFc5AUUUUAFFFFABRRRQAYoNFFAwzRmiigAooxRQAZpe3NJRjNABRRRQAtJRmg0Aw7UUUUAGaKSloEFFFFABRRRQAUUUUAFFFHWgYUUUUAFHSjoaKBBRR1ooAKKKSgBTiiiigYdBRRSYoELRRRmgdgoozRQAUUUUAFFBooCwUUUlMQUtFJQAtFHSkpAL9KSlNFAxKKX6UlMQUtJS0AJRS0lABRRRQAUUUUAFFFFAwooooEH4UUc0UAFFFLQAn4UUUUAFFLSUALSUUUAFHeilNACUUUdqACiilNACYoooxQAUUtJigAoxxRS4oASiiigAo70UAUAGKKKKACiiigAopaTpQAUUUtACd+tFLik7UAFFFFABRRjFFA7CUfjS0UCCiiigQlGKWigYlLSYpaAA0mKWigBDR+dLRj2oASilxiigBOlFLR3oASjrS45oxQAnFA46UtGMnpQCExxRS0YNACUUtGD2oASilpMYoAKMUfpRigAooooAPxopeneigYlFLSdutAhaSlxSUAFHeiigA6CigcCigAoox70dqYBS4FJRikAYoxRSmgBv5UtFKRQOwg47UUuaSgBKOadj3pO9MVhKXmjrR9aACj2oo70gaDHvSUUuKYBRijHNLjtSHYbS49sUoH4Uu2i4WGgUUpHtRQITvRSig0FCdzRzn0pRRigQmKKCOeKMHigLB+NFLikHWgApfoKTFAFAw5o60ooxQAUg4pcUYzQAUnJ9MU4Ckx6UAkJS9u1A+lHegAowOtLiigA7UmDS0lA7BS4oopAJQad0ooATFIadik4oEJ0FHvSnFBFMdgxxR0o/GjHvSEB570mKdRigbG9KX+dGKAKYWCiikpCFxznFAooFAw6/Wiig0AFFHNB96ADOR6UdqPejBoAD16UnNKQfSkwT2pgHSigKT2p2CO1A7DaX8aUA0uCeopXHYbilxS7aXFK47Dcc0Yp2KMUXFYbg0YNPApcUXKsM20bafg0YpXCw3FLgUuKMUXHYTbS4pcUYpXGkJtoxTqKB2G4pcUtFAWEwKMUtFAwooooAKKKKACiiigApKWigAooooAKKKKACiiigAoopKAFooooASlopKAFopKKAFpKM0UALSUUUCCijpSUALRmiigAzRRQaACii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p232o20DsJR3pcUYoCwlJxxxTsZpCBQFgpPwpfwooAMn2pDS9+tIeetMQZo70Ud+aADjnGKM+tH8qPwoAKT2pcDtQevJoATNFL7UUDEpPoBS0UCQmPelwMY/nRS4oGJz/wDWooPsM0c46UAJjjrR1Heg9e9HWmAvfvxR064pO1FAgP40vFJijFAxetHTv+VJ+lGO1AXF96Bik6dhRnn/AOtQAuKSjNHFAmHftRiig0DDv/jRijJxig+1ABSUtJQAtIM0tHegA7UfSigZoACcmikxjtS0AH0o4ooxQAUn50e+aXFAwooooEKMelFIetL70AGM0UlHHf8AWgYfSl70UlAg47jFL07UUnYUAFKfpSZo696BhmkHSl/CjFAFzrRSmkrAzFpKWigYUYpKUUCCiiigYlLRRmgQUmKWigAooooGFFFFABRRSUCFoxRRmgYUUd6KAAmjFGKKACijFAoASlopMUALRiiigA+tFFFABiilopAJRS0hpgGM0Y5opaAEopaTFABRRRQAUYpaKAsJSU6koCwCiiigAooooAOtAoooAMUUUUAFFAoxQAYo5ozRQAc0UUCgAoooNIAooopgBooxQKBBRRRQMKKKXFACUUYoxQAUYpcCkoAMUYoooAKKMUUAFFLSUAFFLSUAFFFGKADFGKKWgBtLRRQAUUtJSAKOaKKYABRRRQAUUtFIYlFFLTEIKKTGKWgAxR0oooAOKKKKACilpKACjFFFABRiiloASilxSYoCwlFLiigLBRS0UgsJRilxQRTCwmKSlxRQFhBRSmigQhFFLRQMSilooCwYooooAT6UtGKKACkpaKACigUGgBKKXFGKAsFHSloxSHYKSlxRQAlGKXFFAWG4pcU6jFAWExSUtAoATFLjilpKB2ExRinUUBYbijFOxRRcVhuKMHFLRimFhMUhp1JigVhKKXFFAhMUUuKKBpCUd6X0ooCwlFLilAoBIbiilxRigBMe1LijFLQMaaB7U6kxQKwUUYooAKMUUUAJ3ox7UtFACYopaMfhQFg60UUUAJxRiloxQFhKMUtGKAsNwaWlooCwmKSnUdaAsJRilxRigLCUYpfxpKAsFJinUmKBiUuKXHtQAaBWGkc0UtGPamAY5owaMetGO1IAAoNLiigLCYpD707FJz60BYQCilophYQ0mKd+FGPagLCUdqXAoHWgBMUhp1BF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4oH40AGTikpRxRmmAD60UZxR6c0AHWik6euKKAFo96SigGLRyPpSd+aM0CDtS59KT6migA96O1GeKTNAGrS0mKK5CwopaTFAWCilxSUALSCiigBaSiloAKKKKQxKWiigAxRRRQAUUUUAFJS0UAFFJS0AFJS0UAFFFFABRRRQAUUZooAKKKKACiiigAooooAKKKKACiiigBKWiigAooooAKDSUCgApaKKAQUUUUAFFFFABRRmigAoxRmigAooooAKKKKACiiigAooooAKKKKBhRRmjNAgooooAKKKKBhS0lFABRRRQK4UtJRQMKKKKBBRRRQAUUUUAFH40UUDFpKKKAuFFGKKBBRRRQAUUUUAGKMUUUAFFFFAwooooELSUUUDCiiigQUUUUAFFGKKACig0UAFFGKKACiiigBaKSigYUtJRQAtFJRQFxaKSigLhRRRQAUUUUCCikpaACjNFFAwooooEFFJS0AGaKSloAKKM0mc0ALmikpaACikozQAtGaKKACkzRRQAUUUUxBS0lFIYUUZpc0wEpaSikAUUUUwClpMUtIAooooGHNFFFAWCiiigLBRRRQAUUUUAFFGKKACiiigApRRRQMKM0UUBcKSiigQtFJRQAUtJRQAUUUUAFFFFABSUtFABSUtFABRSUUAFLmkopiFopDR+NAXFpOlFH0xQAUtJRQAtFNoxQFx1JkUfhSUAxaPwpKWgApabiloC4UYoooAKPxoo/CgAoo70Z5oGFJmlzSfjQFgxRiiigQUdKKOaACiiigBKWjFJ+X40wF+lFFFILgKO9FFAXDigUGlzQAlHWijtQMKWkooEFHeiigAxRRzR3oGLiik/GjNAB9aM0UZFAg6UUUfjQMKSl/GkzTAWikzS0CD60UmaPwoAPxxQTRmigAzjvS02igB386KQmigLhn3FH40lB9qAFzj3ozmkFHNAC5pCaTPpS8HoaYwz2o/CkpaBBRRjmikAZo/AGik4piF/GkB5FBo6mgAzRQetJmgBcj1opP880Y9KACgfSj86BTAXNJn3ozR170AGfaj8aSj9aAF/CkHvR70E+1AC59qM0nfpS0Awz+dJmlP0pPagBc8Uc0EUdutACd6DR/Kg0AFFApeaAEoPrR07mjrQIKPpRjjrSUAL360YopKB3DPv+lL+FFJ3pgAyaKPwooDcP0o79KKM/X8KBB+tHf2o7e9H8qBgaSl4NH40CE6UfjS5FJk0DCjtS5pPpQITvRS8CjNACUenpSnHaigBMUUuKO/SmAhz0zQR+lBFHbsaADNGKO/SjFACDBo/lS0dqAD8KQUfhQRQAUUfSigA6UDjoaKM4oAKXrSUUAFFHUGigQCjNA5PrRQMM0HvzR1oxQFw+tGaMUfWgAxzQaDR9etACUY9qB0opgBpO1Ln2oxQAlLRiigBMj1paMd6TFABR/nmj2ooAKKPSigLhikxS4o9aYg4zR9KM0UAHbpRmiigYhPHNFHaigAo70fjS/hQAn4YooooAMCkx60uKO9ACYope9BzQAneil/CkoEwGPWlpKOMdKYbBnFHage1HvmgYcd6TFL+BoxQITHvR36UYFL25oAT8eaAPalz749qSgBfxpKMHpRQAdaOCOaKQ+1AC9ueKPrSAetGPypgBOaWkooAOpxR2oozx70DDjNLikHrSY9qBC9elHXtRR/KgA70YoooAB6UhozyaO1AAM/SiijPvzQAlH+eaXPrRQAdBR3peKQHPegA/Ck+hpT0o7UAJ3oopfoaYCUUUYoADj0pKD1paAG0tLSdqADv3o7YopaAG/5xS8GigelMQmKPrS5FJ75oAKOemDS0mKBB078UZoo+lAwpM0uPSkoAKDRx6GloEJ070UcgUdO1MZrUhNLRiuI0EpaKSgBaSlpKAFopKU0AFFGKDQAUUUUAFFFFABmiiigAooooAKDRRQAUUUUAFFFGKACiiigAooooABRRRQMKKKKACiiigAzRiiigAooooAKWkooAKDS0mKACiigUAFFFGKACiiigQUUlLQAYooooAKKKKACiijNABRRRQAUUUUAFFFFABRRRQAZpOtLRQAUUUUAFFFFABRRiigAooooAMUUUUAFFHNFABRRRQAUUUUAFFFFABRRRQAUUUUDCiiigQUGiigAxRRRQAUUUUAFFGaKACiiigYtJRRQAUUUUCCikpaACiiigAooooAKSlpKYhaD0oopDDNFFFABRSUtABRiiigAopMUuaACgiiigApOlLRQAlLRRQAUlLRQAUlFLQAlFLRQAlFHaigAooooEFFLxRQOwlGKWjNACUUtJQAUUtFACUUUtACUUv1pKADFFLRQAlHelpKACiiigQtJmilpjCiiikMKWkooAWikooAWjikooC4tFJRQAUUUUAFFGaM0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0UgsJRS0UDsJRilooAKKSloASjFLRQFgpKKKACijFFMQYooxRQFgoooxQFgooooAOKMZoxRQAlLiiigBKKWjFArCUtGKKBhRRiigLCYoxS0UCsJRilooCwmKWiigdgpKWigBKKWjigApMUuKSgQUtJS0AFFJS0AJmloooAKKKDQMKKSigQtFJRQAUUUUAGaM0UUCDNFFFABzRRRQMKKKOKBBRRRQMKKSigQUUtJ2oAKKKKACilooASiijFMAo+tH60UAFFFFAgooooAOaKWigdhKKKKADvRmijpQAUUUUCCgnmiigYUUUUAFFBooEFHSj86KAD8KKKKACiiigAooooASloooASloPNGKAEpaO3FJQAUd6Wk70ALSZoo69KACilpMUAH0ooo/GgA7UdKKM0AGKDRQaBAKKKPxoGJ9aWij8DQFwPSikoH5UwuFLQPrRQAlFKKT8KAD2opcflSUAFH50fjRz3xQIDRxR3pe9AxBzRS0YzQITFHSlxij60DE54opaSgQfWg0tFAxBRRmloEN796WjFHSgGFFHNHQUAGKKM0Ee1ACYx3pe1H60UDEpe9J+dL0oFcQj3oxmjNGfwoAM0UH6UfhQMM0c0tJ7UAGKD60d8Up9aAEpcUlLQAnal/Cj8aM+1AxeetJ9KM0UAFFGaKBB+FGeKPxooATPFH4UUg47UAKDR+NB696OaAuH60dBSUuaYw6+tFIaPwoFcXtSd+tHFHSgAo/zxRijP60CEx6ijj8O9LSd+aAA0UH86MfhxQAUfjRjFFMLCH6Uv4Zo78daDigdg+gooo70CE680o60fzo98UAFB69KOtGKAEPXtS0flRzQAnWgjHelzzR+FACYo4o+tHWgEFFH1o70DDtScUtHWgQlLRR75oASil/Gk/GmAtGKKKQCfnR/nmlooASlooPWgBKKKXmgAzRmkxRQAUUUUxhRR3oNAgoooFAWEx2o60fhS0BoJjA60fpSnmgUDQHHak6UfhS4oEJ1o/DmjvS80CDmkz2FLSflQMKOppaTHagYdKOKP0oHFAgxR060fyo4oAKSl6UUAJ9aOtLz60DrQAh4oxS9+ho4pjExiijjHWigQdqMUds0flQAUY9BRzS596AEweopKUDNHfFAwpKWigQc0n5ClxRigBKKWigBKKXtSUAHNLR9KO/NAxOppSKTHqKXHpQITjNBFO7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KAsFFFFABRRRQAUUUUgCjFFFAwooopiCiiigAoozRQAUUUUgCiiimAUYpaMUhiYoxS0uKAsNFLilxRigqwmKMUuKWgLDcUYp1IaAaEopaKBWExRRRQFgxRSmkoASloooEJRS0UBYSilpKACiiimIOtFFFABRRRQAlLRRQIKKKKBhRRRQAUUUUAFFFFABRmiigAooooASilxRQKwUUUlAxaKKKACiiigAooooAKM0UUABpKWigAzSUtFACUtFFABRmiigAopDRQAtFFFACUZpaDQIKKSl7UDCiiigAopKWgAooooAKKSigQtFFFAwooooAKKSigQuaOtJRQO4tJiiloEJRRiloASiiigAoopaAEoxS0UAJRS0UBYSilooASiilxQFhtLS4oxQFhKKWjFAWEopaMUBYSilxRigdhCKKWigVhMUUtFAWEopaMUBYSilpKAsFFFFABSUuKXFAWEopaSgAooooAKKMUUCCiiigYUUUUAFFFFABRiiloASijFFABRRRQAUUUUAFFFFABRRiigQlFLRQFgpKWigYUYoooASlpKU0CEpaQfSimFwooooAKSloNAMKKKM0AFGKOvaigA96KKP1oAKKPpRzQAYoooBoAKKKKBi4opKOtIQtJS0lAxaSij60xBRRmigdxaSijNAB0ooz6UUAFGKP0ooEFJ3pc0gI/GgBcUlLSUDCiigUCDFJkd6X3o60xBRRjijjpSAQUtFJ3pjDFLRSc9qBC0cUUlAWD69KM0YpeKBiUUtJigQUc0d6KBB+VFLSZ9KCgx60UcelLmgWgmKMYpfpSUAH0owfSlo570DCj6UdKKQCUYpcfWimAnPrRS4o7UAN6ClwaMUvegLDfwowfWlI59KKAG4NL36ij86PpTAOeaKKOlABx3pOKWigBOtH5UfoKM0CYdexopeSKKBjQKXtS9smk49KBWDFJ+NLil+lAhpFHbrS0mKADB9qCBil+lJ26GgYYo/lQOKBTEH4UUUfiDQMM8daAO9FH4A0AB4o6e1GfekFAC8elFB5xRQAYoxRRQCE7UUZ5pcUAJ1oxgUUufSgEJ+FB47UZNGec0AFBooNAB+lH5mijigAooo4/GgAwKMnvRR+FAg47miiloGJzRj2paOKBiY9KB9aWjNAgpPxpaKAEo/Ol60UDENGKMUUCCj8KKKB2DtRR+NFAhMZoxzS0nF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UCDvRRRQFg70UUUDDNGKKSgA5HeiloxQAUmRS/hRQAlGPajrS4oATtRRikoEL3pOtLR0pjAUGiikAn6UooophcM80fhR9aMd6QB06Gkpce1JxTELRjNJz60UALj86SlOMc0n0oGFHUUtJmgAo9s5penak4BoAT8KMCnU00AL0pPwpc8UY7UCDHNJSkDt1FA54oCwlBNGD6UUwFPtSGilPSkCEFHUZFFHSmAUUfpR/KgA/CjpR1oHFAB/OkpecUlABRS4ooAKSjiloATFH0o/GloAOfU0lFFABRR+FFABR0oo6UAFFHb1o5/CgA+tHtRRj60AFGaBRQAv4fjSA+1H50nSgB1J0oooDcM0Z5pKXrQFxD/WlzSYopiD0paKSgdwzijmiigA70UUc9qADj3ozR2o6D/GgLhig/WjqeDQaAD8KKSloASjPNL9KTNAxc0lHB7fhRQIXvR2pKM0DCiiloEID+dHail7cCgYlFFFAg9qOcCg0YoGHOelFFL70CsJmj3oNH40AGe9B96KSgBaT8RS849aSmAv4UdeKKOPWkMKBRRTAQil7elFFIBKUil6Un4UAIOKU9OuKKMUwE60Y7Uv86OtIBMmg0e1H40wAetH0oozQAh575o5paTigLATjtRnk9qPwooAM8UYxzRzjmj8KYgxz1o+lFAxSBAc5oyaQD3paYxPelzSZ9aPegAzzQRz0ozQTQAUY+lGPag0AxelJ3o7UUAFFJ2pe9Ag4z1pMUuPzpAKACjrR2o6dKAD6/yoIooIPemAUfhRRk5oAT9aX6Uc96T8aBAaO1FFAxaTHPFLScmgAooxijtQAE85pPwpe9JQCCjH0pT15ooC4lLiiigBKKKDTHYPyoo70cUCCiiigAoPp0o/CkoGLij8KO9FAhOpopeTSEnHagdkHaj86Xjr3pO9Ag7Uc0elAoAKPxoIxRQAlLiik79KYWFx60n60vWkpALxSUfnRTAPbijvR/niigQD6UUUYoAPaikpT70AJQaP1ooA16KKK4jrClpKKACiiigApaSigAooooAKKKKAClpKKACiiigAooopgFFGaTNAri0UmaWgLhRSZozQFxaKTNGaAuLRSZozQK4tFJn3ozQFxCq9cc0ooooAKM0UGgLhmlptLQFwzRmjpRQAtJmiigBaSijNAxaKSigBaKSloAKKKKACiiigAooooAKK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iiigAoopaAEopaKBiUUUtAhKKWigYlFFFAgopaKBiUUUtACUUUUCClpKWgYUlLRQAlFLRQAlFLRQIKSlooGJRS0UAJRS0UAJRS0UCsJRS0UBYTFGKWigLCYoxS0UBYSilooGJijFLRQKwlJinUUBYTFJinUUBYbilopaAsJikxTqKAsNxRilooFYTFGKWimFhMUYpaKAsJijFLRigLCYpaWikOwlFLRQFhKKWigLCUUtFAWEopaKAsJiilooCwlFLRQMSilooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACkoooAKWkooAWikooAWiikoAWiikoAWikooELRSUUDFopKKAClpKKBC0UlFAxaKSigQtFJRQMWikooAWikooAWikooAWiikoAWikooELRSUUALSUUUAFGaKKYXCiiigAooooEFFFFABSUtFABRRRQAZopKWgAzRSUtAXCiikoAXNFFFAXCikooC4tFJRQFxaKSloC4UUlFABS0lLQAUUUUAFFFJQAtFFFABRRRQAlFFFAgozRiloGJRRiigQUUUUALRSdqKBi5opKKAFpOaKKAFoozSUAFLSUZoAWikzS0AFFJS5oAKKTNGaAFoozSZoAWg0UUDuFJRRQSFFJRQAtFFFABSZFFGPrQIM0ZoxRimAdaKKKADApMUuOaMUBYTFLiiigLARRxQc0hoAKPxpKMH1oELgUhAowaXFADcZpcfjTsUmKLhYTafpRtGPWnUUXCwwr+FJgCnc0mDTJa7DcccCj60/FJincOUbRxin4HpSfhRcOUbg5oIp3ejHrRcLDenaingD1zSEUXCwzFGB1p+38KMUXCw08Umfan7fel2Ci4cpGf1o71JtFJgelFw5Rn0o7U7ik4oFYSkp3SjHtTCw3n0opx4NFADcGjqKUil/CgBtL/nil4pcUDG5pPwqTAowMelK4rEfajtTiPek20xWsJiijFL+tACfXmjIpaQ0AHvRR+tAoAMUUuKPwoEJ1+tHPNH6Uc5oGJj60vTvS0mM0BYPrmkAxS4pe3WgLDc8elA607HQ0bc5OKBiUmKdtox70BYaQaXHfNLjijFFwsNxnqKMe9OxRj9KLhYZSke3NO9f8KOvWncLDfxo6UtL06UBYbRinduDScUBYTHFGOaWg+9AWE9sUUpoxmgBvvS0HFGKADFJil9qKAAeuKKOa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gAooooAKKKKACiiigAooooAKKKKACiiigAooooASloooAKKKKACiiigApKWigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAEpaKKAEpaKKAEopaKAEopaKACkpaKACiiigAooooAKSlooASloooAKKKKAsFFFFABRRRQFgooooCwUUUUDCiiigQUUUUAFFFFIYUUUUwCiiikAUUUtACUUUUAFFFFABRRRQAUUUUAFFFFMApaSikAUUUUAFFFFABRRRTEFFFFAwooooEFFFFABRRRQAUUUUAFFFFIYUUUUwCiiigAooopAFFJRTELRRRQAUlLSUAFFLSUAFFFLigQlH0paMUDsJzRS4pKACilxRQFhKWiigAooopDCiiigBKKWkpiCiiigAopaSgAooooAPxo/GiigANJRmigkKM0UlMAoo/CigQZpM0tGPagQmTQKKMUAL1pKWigYUlLSCgAzRmijmmAZpDj1NLRigQlLR0o+tAB0pKXFHpQMTmjPvS0Y9qBCUDpSkUAUAGaQ5pcUEUAJzR+HagjmlAoCwmKOlOxRj2ouFhuKKdijFFwsNopTzSY96ADpSUpHSjBoASjml6+9GKYrCUcdKWkIoAKKMc0YxQFg6UUYPeigANJjjpSke1H0oEFJS0c0DDFJS0cdhQAgH1pf8AOaT8OKWgBKWkooEFHTtQfeigA69cUfTrRzQeaAAUdKPcUUAGPSj60dOlFACZpfak/ClpgJ0o6Uo46UhoAXvRSUtAxKM0vNJQIOM0celHUUf56UAH0oz+NAz+VLQIT2paTFHNABzRRRQMQ0UveigA7UCkODQRQAvejtRSCgBcUmBS/Wj9aACk70uM9s0lAC0n9aKPxoAWik7daPxxQIMUYoxRg0DFHtScUUUAGKXPFJ05xR2z1oDcWkNFHegBKKXmk6UwDJ9aXNJRj3oCwv6UmaKWgBKO9FHWgAHvR05oooADnNFBooAKKMUYPIoABScGjvR9TQApxR3oooATNLRRQIOoo5oxjrSdKB2FpKKKYB2pcUlLSCwnejFLSAUwDmg0Yo60BYKMUUfhQAY6UopOKDQAUhpRRyKACjnNA+lLkUAJ1ox+FB4o680hsODRRRTAKOnelptAhaMUd6KB6AcUcUUZ96ADHWge1GKKADtSGj+VAHegGL1FIaX60lAB7UfpS5zxSCgA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",
"type": "image/jpeg",
"tags": "picture external-image",
"source": "https://www.flickr.com/photos/jermy/289999155/in/photostream"
},
"PerlinLight.jpg": {
"title": "PerlinLight.jpg",
"text": "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PSIxLjAiIGVuY29kaW5nPSJVVEYtOCI/Pgo8IURPQ1RZUEUgcGxpc3QgUFVCTElDICItLy9BcHBsZS8vRFREIFBMSVNUIDEuMC8vRU4iICJodHRwOi8vd3d3LmFwcGxlLmNvbS9EVERzL1Byb3BlcnR5TGlzdC0xLjAuZHRkIj4KPHBsaXN0IHZlcnNpb249IjEuMCI+CjxkaWN0PgoJPGtleT5jb20uYXBwbGUucHJpbnQuUGFnZUZvcm1hdC5QTUhvcml6b250YWxSZXM8L2tleT4KCTxkaWN0PgoJCTxrZXk+Y29tLmFwcGxlLnByaW50LnRpY2tldC5jcmVhdG9yPC9rZXk+CgkJPHN0cmluZz5jb20uYXBwbGUuam9idGlja2V0PC9zdHJpbmc+CgkJPGtleT5jb20uYXBwbGUucHJpbnQudGlja2V0Lml0ZW1BcnJheTwva2V5PgoJCTxhcnJheT4KCQkJPGRpY3Q+CgkJCQk8a2V5PmNvbS5hcHBsZS5wcmludC5QYWdlRm9ybWF0LlBNSG9yaXpvbnRhbFJlczwva2V5PgoJCQkJPHJlYWw+NzI8L3JlYWw+CgkJCQk8a2V5PmNvbS5hcHBsZS5wcmludC50aWNrZXQuc3RhdGVGbGFnPC9rZXk+CgkJCQk8aW50ZWdlcj4wPC9pbnRlZ2VyPgoJCQk8L2RpY3Q+CgkJPC9hcnJheT4KCTwvZGljdD4KCTxrZXk+Y29tLmFwcGxlLnByaW50LlBhZ2VGb3JtYXQuUE1PcmllbnRhdGlvbjwva2V5PgoJPGRpY3Q+CgkJPGtleT5jb20uYXBwbGUucHJpbnQudGlja2V0LmNyZWF0b3I8L2tleT4KCQk8c3RyaW5nPmNvbS5hcHBsZS5qb2J0aWNrZXQ8L3N0cmluZz4KCQk8a2V5PmNvbS5hcHBsZS5wcmludC50aWNrZXQuaXRlbUFycmF5PC9rZXk+CgkJPGFycmF5PgoJCQk8ZGljdD4KCQkJCTxrZXk+Y29tLmFwcGxlLnByaW50LlBhZ2VGb3JtYXQuUE1PcmllbnRhdGlvbjwva2V5PgoJCQkJPGludGVnZXI+MTwvaW50ZWdlcj4KCQkJCTxrZXk+Y29tLmFwcGxlLnByaW50LnRpY2tldC5zdGF0ZUZsYWc8L2tleT4KCQkJCTxpbnRlZ2VyPjA8L2ludGVnZXI+CgkJCTwvZGljdD4KCQk8L2FycmF5PgoJPC9kaWN0PgoJPGtleT5jb20uYXBwbGUucHJpbnQuUGFnZUZvcm1hdC5QTVNjYWxpbmc8L2tleT4KCTxkaWN0PgoJCTxrZXk+Y29tLmFwcGxlLnByaW50LnRpY2tldC5jcmVhdG9yPC9rZXk+CgkJPHN0cmluZz5jb20uYXBwbGUuam9idGlja2V0PC9zdHJpbmc+CgkJPGtleT5jb20uYXBwbGUucHJpbnQudGlja2V0Lml0ZW1BcnJheTwva2V5PgoJCTxhcnJheT4KCQkJPGRpY3Q+CgkJCQk8a2V5PmNvbS5hcHBsZS5wcmludC5QYWdlRm9ybWF0LlBNU2NhbGluZzwva2V5PgoJCQkJPHJlYWw+MTwvcmVhbD4KCQkJCTxrZXk+Y29tLmFwcGxlLnByaW50LnRpY2tldC5zdGF0ZUZsYWc8L2tleT4KCQkJCTxpbnRlZ2VyPjA8L2ludGVnZXI+CgkJCTwvZGljdD4KCQk8L2FycmF5PgoJPC9kaWN0PgoJPGtleT5jb20uYXBwbGUucHJpbnQuUGFnZUZvcm1hdC5QTVZlcnRpY2FsUmVzPC9rZXk+Cgk8ZGljdD4KCQk8a2V5PmNvbS5hcHBsZS5wcmludC50aWNrZXQuY3JlYXRvcjwva2V5PgoJCTxzdHJpbmc+Y29tLmFwcGxlLmpvYnRpY2tldDwvc3RyaW5nPgoJCTxrZXk+Y29tLmFwcGxlLnByaW50LnRpY2tldC5pdGVtQXJyYXk8L2tleT4KCQk8YXJyYXk+CgkJCTxkaWN0PgoJCQkJPGtleT5jb20uYXBwbGUucHJpbnQuUGFnZUZvcm1hdC5QTVZlcnRpY2FsUmVzPC9rZXk+CgkJCQk8cmVhbD43MjwvcmVhbD4KCQkJCTxrZXk+Y29tLmFwcGxlLnByaW50LnRpY2tldC5zdGF0ZUZsYWc8L2tleT4KCQkJCTxpbnRlZ2VyPjA8L2ludGVnZXI+CgkJCTwvZGljdD4KCQk8L2FycmF5PgoJPC9kaWN0PgoJPGtleT5jb20uYXBwbGUucHJpbnQuUGFnZUZvcm1hdC5QTVZlcnRpY2FsU2NhbGluZzwva2V5PgoJPGRpY3Q+CgkJPGtleT5jb20uYXBwbGUucHJpbnQudGlja2V0LmNyZWF0b3I8L2tleT4KCQk8c3RyaW5nPmNvbS5hcHBsZS5qb2J0aWNrZXQ8L3N0cmluZz4KCQk8a2V5PmNvbS5hcHBsZS5wcmludC50aWNrZXQuaXRlbUFycmF5PC9rZXk+CgkJPGFycmF5PgoJCQk8ZGljdD4KCQkJCTxrZXk+Y29tLmFwcGxlLnByaW50LlBhZ2VGb3JtYXQuUE1WZXJ0aWNhbFNjYWxpbmc8L2tleT4KCQkJCTxyZWFsPjE8L3JlYWw+CgkJCQk8a2V5PmNvbS5hcHBsZS5wcmludC50aWNrZXQuc3RhdGVGbGFnPC9rZXk+CgkJCQk8aW50ZWdlcj4wPC9pbnRlZ2VyPgoJCQk8L2RpY3Q+CgkJPC9hcnJheT4KCTwvZGljdD4KCTxrZXk+Y29tLmFwcGxlLnByaW50LnN1YlRpY2tldC5wYXBlcl9pbmZvX3RpY2tldDwva2V5PgoJPGRpY3Q+CgkJPGtleT5QTVBQRFBhcGVyQ29kZU5hbWU8L2tleT4KCQk8ZGljdD4KCQkJPGtleT5jb20uYXBwbGUucHJpbnQudGlja2V0LmNyZWF0b3I8L2tleT4KCQkJPHN0cmluZz5jb20uYXBwbGUuam9idGlja2V0PC9zdHJpbmc+CgkJCTxrZXk+Y29tLmFwcGxlLnByaW50LnRpY2tldC5pdGVtQXJyYXk8L2tleT4KCQkJPGFycmF5PgoJCQkJPGRpY3Q+CgkJCQkJPGtleT5QTVBQRFBhcGVyQ29kZU5hbWU8L2tleT4KCQkJCQk8c3RyaW5nPkxldHRlcjwvc3RyaW5nPgoJCQkJCTxrZXk+Y29tLmFwcGxlLnByaW50LnRpY2tldC5zdGF0ZUZsYWc8L2tleT4KCQkJCQk8aW50ZWdlcj4wPC9pbnRlZ2VyPgoJCQkJPC9kaWN0PgoJCQk8L2FycmF5PgoJCTwvZGljdD4KCQk8a2V5PlBNVGlvZ2FQYXBlck5hbWU8L2tleT4KCQk8ZGljdD4KCQkJPGtleT5jb20uYXBwbGUucHJpbnQudGlja2V0LmNyZWF0b3I8L2tleT4KCQkJPHN0cmluZz5jb20uYXBwbGUuam9idGlja2V0PC9zdHJpbmc+CgkJCTxrZXk+Y29tLmFwcGxlLnByaW50LnRpY2tldC5pdGVtQXJyYXk8L2tleT4KCQkJPGFycmF5PgoJCQkJPGRpY3Q+CgkJCQkJPGtleT5QTVRpb2dhUGFwZXJOYW1lPC9rZXk+CgkJCQkJPHN0cmluZz5uYS1sZXR0ZXI8L3N0cmluZz4KCQkJCQk8a2V5PmNvbS5hcHBsZS5wcmludC50aWNrZXQuc3RhdGVGbGFnPC9rZXk+CgkJCQkJPGludGVnZXI+MDwvaW50ZWdlcj4KCQkJCTwvZGljdD4KCQkJPC9hcnJheT4KCQk8L2RpY3Q+CgkJPGtleT5jb20uYXBwbGUucHJpbnQuUGFnZUZvcm1hdC5QTUFkanVzdGVkUGFnZVJlY3Q8L2tleT4KCQk8ZGljdD4KCQkJPGtleT5jb20uYXBwbGUucHJpbnQudGlja2V0LmNyZWF0b3I8L2tleT4KCQkJPHN0cmluZz5jb20uYXBwbGUuam9idGlja2V0PC9zdHJpbmc+CgkJCTxrZXk+Y29tLmFwcGxlLnByaW50LnRpY2tldC5pdGVtQXJyYXk8L2tleT4KCQkJPGFycmF5PgoJCQkJPGRpY3Q+CgkJCQkJPGtleT5jb20uYXBwbGUucHJpbnQuUGFnZUZvcm1hdC5QTUFkanVzdGVkUGFnZVJlY3Q8L2tleT4KCQkJCQk8YXJyYXk+CgkJCQkJCTxyZWFsPjAuMDwvcmVhbD4KCQkJCQkJPHJlYWw+MC4wPC9yZWFsPgoJCQkJCQk8cmVhbD43MzQ8L3JlYWw+CgkJCQkJCTxyZWFsPjU3NjwvcmVhbD4KCQkJCQk8L2FycmF5PgoJCQkJCTxrZXk+Y29tLmFwcGxlLnByaW50LnRpY2tldC5zdGF0ZUZsYWc8L2tleT4KCQkJCQk8aW50ZWdlcj4wPC9pbnRlZ2VyPgoJCQkJPC9kaWN0PgoJCQk8L2FycmF5PgoJCTwvZGljdD4KCQk8a2V5PmNvbS5hcHBsZS5wcmludC5QYWdlRm9ybWF0LlBNQWRqdXN0ZWRQYXBlclJlY3Q8L2tleT4KCQk8ZGljdD4KCQkJPGtleT5jb20uYXBwbGUucHJpbnQudGlja2V0LmNyZWF0b3I8L2tleT4KCQkJPHN0cmluZz5jb20uYXBwbGUuam9idGlja2V0PC9zdHJpbmc+CgkJCTxrZXk+Y29tLmFwcGxlLnByaW50LnRpY2tldC5pdGVtQXJyYXk8L2tleT4KCQkJPGFycmF5PgoJCQkJPGRpY3Q+CgkJCQkJPGtleT5jb20uYXBwbGUucHJpbnQuUGFnZUZvcm1hdC5QTUFkanVzdGVkUGFwZXJSZWN0PC9rZXk+CgkJCQkJPGFycmF5PgoJCQkJCQk8cmVhbD4tMTg8L3JlYWw+CgkJCQkJCTxyZWFsPi0xODwvcmVhbD4KCQkJCQkJPHJlYWw+Nzc0PC9yZWFsPgoJCQkJCQk8cmVhbD41OTQ8L3JlYWw+CgkJCQkJPC9hcnJheT4KCQkJCQk8a2V5PmNvbS5hcHBsZS5wcmludC50aWNrZXQuc3RhdGVGbGFnPC9rZXk+CgkJCQkJPGludGVnZXI+MDwvaW50ZWdlcj4KCQkJCTwvZGljdD4KCQkJPC9hcnJheT4KCQk8L2RpY3Q+CgkJPGtleT5jb20uYXBwbGUucHJpbnQuUGFwZXJJbmZvLlBNUGFwZXJOYW1lPC9rZXk+CgkJPGRpY3Q+CgkJCTxrZXk+Y29tLmFwcGxlLnByaW50LnRpY2tldC5jcmVhdG9yPC9rZXk+CgkJCTxzdHJpbmc+Y29tLmFwcGxlLmpvYnRpY2tldDwvc3RyaW5nPgoJCQk8a2V5PmNvbS5hcHBsZS5wcmludC50aWNrZXQuaXRlbUFycmF5PC9rZXk+CgkJCTxhcnJheT4KCQkJCTxkaWN0PgoJCQkJCTxrZXk+Y29tLmFwcGxlLnByaW50LlBhcGVySW5mby5QTVBhcGVyTmFtZTwva2V5PgoJCQkJCTxzdHJpbmc+bmEtbGV0dGVyPC9zdHJpbmc+CgkJCQkJPGtleT5jb20uYXBwbGUucHJpbnQudGlja2V0LnN0YXRlRmxhZzwva2V5PgoJCQkJCTxpbnRlZ2VyPjA8L2ludGVnZXI+CgkJCQk8L2RpY3Q+CgkJCTwvYXJyYXk+CgkJPC9kaWN0PgoJCTxrZXk+Y29tLmFwcGxlLnByaW50LlBhcGVySW5mby5QTVVuYWRqdXN0ZWRQYWdlUmVjdDwva2V5PgoJCTxkaWN0PgoJCQk8a2V5PmNvbS5hcHBsZS5wcmludC50aWNrZXQuY3JlYXRvcjwva2V5PgoJCQk8c3RyaW5nPmNvbS5hcHBsZS5qb2J0aWNrZXQ8L3N0cmluZz4KCQkJPGtleT5jb20uYXBwbGUucHJpbnQudGlja2V0Lml0ZW1BcnJheTwva2V5PgoJCQk8YXJyYXk+CgkJCQk8ZGljdD4KCQkJCQk8a2V5PmNvbS5hcHBsZS5wcmludC5QYXBlckluZm8uUE1VbmFkanVzdGVkUGFnZVJlY3Q8L2tleT4KCQkJCQk8YXJyYXk+CgkJCQkJCTxyZWFsPjAuMDwvcmVhbD4KCQkJCQkJPHJlYWw+MC4wPC9yZWFsPgoJCQkJCQk8cmVhbD43MzQ8L3JlYWw+CgkJCQkJCTxyZWFsPjU3NjwvcmVhbD4KCQkJCQk8L2FycmF5PgoJCQkJCTxrZXk+Y29tLmFwcGxlLnByaW50LnRpY2tldC5zdGF0ZUZsYWc8L2tleT4KCQkJCQk8aW50ZWdlcj4wPC9pbnRlZ2VyPgoJCQkJPC9kaWN0PgoJCQk8L2FycmF5PgoJCTwvZGljdD4KCQk8a2V5PmNvbS5hcHBsZS5wcmludC5QYXBlckluZm8uUE1VbmFkanVzdGVkUGFwZXJSZWN0PC9rZXk+CgkJPGRpY3Q+CgkJCTxrZXk+Y29tLmFwcGxlLnByaW50LnRpY2tldC5jcmVhdG9yPC9rZXk+CgkJCTxzdHJpbmc+Y29tLmFwcGxlLmpvYnRpY2tldDwvc3RyaW5nPgoJCQk8a2V5PmNvbS5hcHBsZS5wcmludC50aWNrZXQuaXRlbUFycmF5PC9rZXk+CgkJCTxhcnJheT4KCQkJCTxkaWN0PgoJCQkJCTxrZXk+Y29tLmFwcGxlLnByaW50LlBhcGVySW5mby5QTVVuYWRqdXN0ZWRQYXBlclJlY3Q8L2tleT4KCQkJCQk8YXJyYXk+CgkJCQkJCTxyZWFsPi0xODwvcmVhbD4KCQkJCQkJPHJlYWw+LTE4PC9yZWFsPgoJCQkJCQk8cmVhbD43NzQ8L3JlYWw+CgkJCQkJCTxyZWFsPjU5NDwvcmVhbD4KCQkJCQk8L2FycmF5PgoJCQkJCTxrZXk+Y29tLmFwcGxlLnByaW50LnRpY2tldC5zdGF0ZUZsYWc8L2tleT4KCQkJCQk8aW50ZWdlcj4wPC9pbnRlZ2VyPgoJCQkJPC9kaWN0PgoJCQk8L2FycmF5PgoJCTwvZGljdD4KCQk8a2V5PmNvbS5hcHBsZS5wcmludC5QYXBlckluZm8ucHBkLlBNUGFwZXJOYW1lPC9rZXk+CgkJPGRpY3Q+CgkJCTxrZXk+Y29tLmFwcGxlLnByaW50LnRpY2tldC5jcmVhdG9yPC9rZXk+CgkJCTxzdHJpbmc+Y29tLmFwcGxlLmpvYnRpY2tldDwvc3RyaW5nPgoJCQk8a2V5PmNvbS5hcHBsZS5wcmludC50aWNrZXQuaXRlbUFycmF5PC9rZXk+CgkJCTxhcnJheT4KCQkJCTxkaWN0PgoJCQkJCTxrZXk+Y29tLmFwcGxlLnByaW50LlBhcGVySW5mby5wcGQuUE1QYXBlck5hbWU8L2tleT4KCQkJCQk8c3RyaW5nPlVTIExldHRlcjwvc3RyaW5nPgoJCQkJCTxrZXk+Y29tLmFwcGxlLnByaW50LnRpY2tldC5zdGF0ZUZsYWc8L2tleT4KCQkJCQk8aW50ZWdlcj4wPC9pbnRlZ2VyPgoJCQkJPC9kaWN0PgoJCQk8L2FycmF5PgoJCTwvZGljdD4KCQk8a2V5PmNvbS5hcHBsZS5wcmludC50aWNrZXQuQVBJVmVyc2lvbjwva2V5PgoJCTxzdHJpbmc+MDAuMjA8L3N0cmluZz4KCQk8a2V5PmNvbS5hcHBsZS5wcmludC50aWNrZXQudHlwZTwva2V5PgoJCTxzdHJpbmc+Y29tLmFwcGxlLnByaW50LlBhcGVySW5mb1RpY2tldDwvc3RyaW5nPgoJPC9kaWN0PgoJPGtleT5jb20uYXBwbGUucHJpbnQudGlja2V0LkFQSVZlcnNpb248L2tleT4KCTxzdHJpbmc+MDAuMjA8L3N0cmluZz4KCTxrZXk+Y29tLmFwcGxlLnByaW50LnRpY2tldC50eXBlPC9rZXk+Cgk8c3RyaW5nPmNvbS5hcHBsZS5wcmludC5QYWdlRm9ybWF0VGlja2V0PC9zdHJpbmc+CjwvZGljdD4KPC9wbGlzdD4KOEJJTQPtAAAAAAAQAEgCTgABAAEASAJOAAEAAThCSU0EJgAAAAAADgAAAAAAAAAAAAA/gAAAOEJJTQQNAAAAAAAEAAAAHjhCSU0EGQAAAAAABAAAAB44QklNA/MAAAAAAAkAAAAAAAAAAAEAOEJJTQQKAAAAAAABAAA4QklNJxAAAAAAAAoAAQAAAAAAAAABOEJJTQP1AAAAAABIAC9mZgABAGxmZgAGAAAAAAABAC9mZgABAKGZmgAGAAAAAAABADIAAAABAFoAAAAGAAAAAAABADUAAAABAC0AAAAGAAAAAAABOEJJTQP4AAAAAABwAAD/////////////////////////////A+gAAAAA/////////////////////////////wPoAAAAAP////////////////////////////8D6AAAAAD/////////////////////////////A+gAADhCSU0ECAAAAAAAEAAAAAEAAAJAAAACQAAAAAA4QklNBB4AAAAAAAQAAAAAOEJJTQQaAAAAAANHAAAABgAAAAAAAAAAAAABVAAAAVQAAAAJAFAAaQBjAHQAdQByAGUAIAAyAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAFUAAABVAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAABAAAAABAAAAAAAAbnVsbAAAAAIAAAAGYm91bmRzT2JqYwAAAAEAAAAAAABSY3QxAAAABAAAAABUb3AgbG9uZwAAAAAAAAAATGVmdGxvbmcAAAAAAAAAAEJ0b21sb25nAAABVAAAAABSZ2h0bG9uZwAAAVQAAAAGc2xpY2VzVmxMcwAAAAFPYmpjAAAAAQAAAAAABXNsaWNlAAAAEgAAAAdzbGljZUlEbG9uZwAAAAAAAAAHZ3JvdXBJRGxvbmcAAAAAAAAABm9yaWdpbmVudW0AAAAMRVNsaWNlT3JpZ2luAAAADWF1dG9HZW5lcmF0ZWQAAAAAVHlwZWVudW0AAAAKRVNsaWNlVHlwZQAAAABJbWcgAAAABmJvdW5kc09iamMAAAABAAAAAAAAUmN0MQAAAAQAAAAAVG9wIGxvbmcAAAAAAAAAAExlZnRsb25nAAAAAAAAAABCdG9tbG9uZwAAAVQAAAAAUmdodGxvbmcAAAFUAAAAA3VybFRFWFQAAAABAAAAAAAAbnVsbFRFWFQAAAABAAAAAAAATXNnZVRFWFQAAAABAAAAAAAGYWx0VGFnVEVYVAAAAAEAAAAAAA5jZWxsVGV4dElzSFRNTGJvb2wBAAAACGNlbGxUZXh0VEVYVAAAAAEAAAAAAAlob3J6QWxpZ25lbnVtAAAAD0VTbGljZUhvcnpBbGlnbgAA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Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8APD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNC4xLWMwMzYgNDYuMjc2NzIwLCBNb24gRmViIDE5IDIwMDcgMjI6MTM6NDMgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhhcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIiB4bWxuczpwaG90b3Nob3A9Imh0dHA6Ly9ucy5hZG9iZS5jb20vcGhvdG9zaG9wLzEuMC8iIHhtbG5zOnhhcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczp0aWZmPSJodHRwOi8vbnMuYWRvYmUuY29tL3RpZmYvMS4wLyIgeG1sbnM6ZXhpZj0iaHR0cDovL25zLmFkb2JlLmNvbS9leGlmLzEuMC8iIHhhcDpDcmVhdGVEYXRlPSIyMDEwLTA4LTMwVDIzOjQ5OjE0LTA1OjAwIiB4YXA6TW9kaWZ5RGF0ZT0iMjAxMC0wOC0zMFQyMzo0OToxNC0wNTowMCIgeGFwOk1ldGFkYXRhRGF0ZT0iMjAxMC0wOC0zMFQyMzo0OToxNC0wNTowMCIgeGFwOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1MzIE1hY2ludG9zaCIgZGM6Zm9ybWF0PSJpbWFnZS9qcGVnIiBwaG90b3Nob3A6Q29sb3JNb2RlPSIzIiBwaG90b3Nob3A6SUNDUHJvZmlsZT0iaU1hYyIgcGhvdG9zaG9wOkhpc3Rvcnk9IiIgeGFwTU06SW5zdGFuY2VJRD0idXVpZDpFQjAwQjU5NDA4QjVERjExODdBNTlCQzExMkI0QjA2RSIgeGFwTU06RG9jdW1lbnRJRD0idXVpZDpFQTAwQjU5NDA4QjVERjExODdBNTlCQzExMkI0QjA2RSIgdGlmZjpPcmllbnRhdGlvbj0iMSIgdGlmZjpYUmVzb2x1dGlvbj0iNzIwMDkwLzEwMDAwIiB0aWZmOllSZXNvbHV0aW9uPSI3MjAwOTAvMTAwMDAiIHRpZmY6UmVzb2x1dGlvblVuaXQ9IjIiIHRpZmY6TmF0aXZlRGlnZXN0PSIyNTYsMjU3LDI1OCwyNTksMjYyLDI3NCwyNzcsMjg0LDUzMCw1MzEsMjgyLDI4MywyOTYsMzAxLDMxOCwzMTksNTI5LDUzMiwzMDYsMjcwLDI3MSwyNzIsMzA1LDMxNSwzMzQzMjs3RUY4RDFBOTcwMjlCOUNFOTAwNkUzRDcxRjgwNDdFNSIgZXhpZjpQaXhlbFhEaW1lbnNpb249IjM0MCIgZXhpZjpQaXhlbFlEaW1lbnNpb249IjM0MCIgZXhpZjpDb2xvclNwYWNlPSItMSIgZXhpZjpOYXRpdmVEaWdlc3Q9IjM2ODY0LDQwOTYwLDQwOTYxLDM3MTIxLDM3MTIyLDQwOTYyLDQwOTYzLDM3NTEwLDQwOTY0LDM2ODY3LDM2ODY4LDMzNDM0LDMzNDM3LDM0ODUwLDM0ODUyLDM0ODU1LDM0ODU2LDM3Mzc3LDM3Mzc4LDM3Mzc5LDM3MzgwLDM3MzgxLDM3MzgyLDM3MzgzLDM3Mzg0LDM3Mzg1LDM3Mzg2LDM3Mzk2LDQxNDgzLDQxNDg0LDQxNDg2LDQxNDg3LDQxNDg4LDQxNDkyLDQxNDkzLDQxNDk1LDQxNzI4LDQxNzI5LDQxNzMwLDQxOTg1LDQxOTg2LDQxOTg3LDQxOTg4LDQxOTg5LDQxOTkwLDQxOTkxLDQxOTkyLDQxOTkzLDQxOTk0LDQxOTk1LDQxOTk2LDQyMDE2LDAsMiw0LDUsNiw3LDgsOSwxMCwxMSwxMiwxMywxNCwxNSwxNiwxNywxOCwyMCwyMiwyMywyNCwyNSwyNiwyNywyOCwzMDtGRTM2RkQ0MzU0NEI0ODUyODY3OEVERkZGOTk0MkMwRiI+IDx4YXBNTTpEZXJpdmVkRnJvbSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8P3hwYWNrZXQgZW5kPSJ3Ij8+/+IPJElDQ19QUk9GSUxFAAEBAAAPFGFwcGwCAAAAbW50clJHQiBYWVogB9oAAQAEAA8AMwADYWNzcEFQUEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPbWAAEAAAAA0y1hcHBsWM2pk1LRLUWykThyCK1QdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOclhZWgAAASwAAAAUZ1hZWgAAAUAAAAAUYlhZWgAAAVQAAAAUd3RwdAAAAWgAAAAUY2hhZAAAAXwAAAAsclRSQwAAAagAAAAOZ1RSQwAAAbgAAAAOYlRSQwAAAcgAAAAOdmNndAAAAdgAAAYSbmRpbgAAB+wAAAY+ZGVzYwAADiwAAABfZHNjbQAADowAAAA8bW1vZAAADsgAAAAoY3BydAAADvAAAAAkWFlaIAAAAAAAAHeaAABAmQAAAxlYWVogAAAAAAAAWO0AAKuMAAAXrVhZWiAAAAAAAAAmTgAAE/UAALheWFlaIAAAAAAAAPNSAAEAAAABFs9zZjMyAAAAAAABDEIAAAXe///zJgAAB5IAAP2R///7ov///aMAAAPcAADAbGN1cnYAAAAAAAAAAQHNAABjdXJ2AAAAAAAAAAEBzQAAY3VydgAAAAAAAAABAc0AAHZjZ3QAAAAAAAAAAAADAQAAAgAAAUUCyAQ5BZsHIQi8ClsL+w2ZDzsQ6hKXFEYWAhe5GVYa4xxxHfkfdSDyImcj0iU1JpAn5ikyKnkrvi0BLkEvgTC9MfkzNTRrNaE21DgHOTg6ZjuTPLw95D8MQDNBV0J5Q5pEuEXWRvJIDEklSjpL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",
"type": "image/jpeg"
},
"Pinstripe.gif": {
"title": "Pinstripe.gif",
"text": "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",
"type": "image/gif"
},
"TWEUM Thumbnail.jpg": {
"title": "TWEUM Thumbnail.jpg",
"text": "/9j/4AAQSkZJRgABAQAASABIAAD/4QC4RXhpZgAATU0AKgAAAAgABQEaAAUAAAABAAAASgEbAAUAAAABAAAAUgExAAIAAAAYAAAAWgEyAAIAAAAUAAAAcodpAAQAAAABAAAAhgAAAAAAAABIAAAAAQAAAEgAAAABRmx5aW5nIE1lYXQgQWNvcm4gNS40LjEAMjAxNjowNzoxNCAxNjoxODo1NgAAA6ABAAMAAAABAAEAAKACAAQAAAABAAACdqADAAQAAAABAAABOwAAAAD/4QmZaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/PiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJYTVAgQ29yZSA1LjQuMCI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1wOkNyZWF0b3JUb29sPSJGbHlpbmcgTWVhdCBBY29ybiA1LjQuMSIgeG1wOk1vZGlmeURhdGU9IjIwMTYtMDctMTRUMTY6MTg6NTYiLz4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8P3hwYWNrZXQgZW5kPSJ3Ij8+AP/tADhQaG90b3Nob3AgMy4wADhCSU0EBAAAAAAAADhCSU0E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",
"type": "image/jpeg",
"tags": "picture"
},
"Tiddler Fishes.svg": {
"title": "Tiddler Fishes.svg",
"text": "<?xml version=\"1.0\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xl=\"http://www.w3.org/1999/xlink\" version=\"1.1\" viewBox=\"216 290 330 333\" width=\"330pt\" height=\"333pt\"><metadata xmlns:dc=\"http://purl.org/dc/elements/1.1/\"><dc:date>2011-10-18 15:32Z</dc:date><!-- Produced by OmniGraffle Professional 5.3.6 --></metadata><defs></defs><g stroke=\"none\" stroke-opacity=\"1\" stroke-dasharray=\"none\" fill=\"none\" fill-opacity=\"1\"><title>Canvas 1</title><g><title>Layer 1</title><path d=\"M 442.7708 401.63043 L 413.54462 406.727 C 416.80856 405.83435 422.99722 391.7118 411.13663 390.20697 C 413.2671 386.8555 417.85052 387.3249 420.58444 389.66956 C 422.604 384.71863 427.60233 383.09958 430.95114 388.68173 C 432.43198 385.7193 440.88962 387.0678 441.26031 391.8762 C 445.71463 389.20319 453.64325 389.1528 456.18387 393.38382 C 450.81464 394.85754 442.05713 398.04846 442.7708 401.63043 Z\" fill=\"#9c2aad\"/><path d=\"M 442.7708 401.63043 L 413.54462 406.727 C 416.80856 405.83435 422.99722 391.7118 411.13663 390.20697 C 413.2671 386.8555 417.85052 387.3249 420.58444 389.66956 C 422.604 384.71863 427.60233 383.09958 430.95114 388.68173 C 432.43198 385.7193 440.88962 387.0678 441.26031 391.8762 C 445.71463 389.20319 453.64325 389.1528 456.18387 393.38382 C 450.81464 394.85754 442.05713 398.04846 442.7708 401.63043 Z\" stroke=\"black\" stroke-linecap=\"butt\" stroke-linejoin=\"bevel\" stroke-width=\".5\"/><path d=\"M 518.7041 423.77078 C 498.43768 432.6787 479.68716 431.40332 463.93137 410.0036 C 431.99905 397.3547 406.8626 398.1261 390.50183 421.21622 L 383.61246 433.08511 L 377.323 440.90723 C 382.73856 444.03094 386.49606 445.22226 391.41977 443.53967 C 423.91724 433.9902 468.78778 433.28616 488.58038 444.35022 C 498.06448 456.83328 499.6226 467.8483 494.2746 477.36945 C 503.37277 477.36603 508.15073 471.44598 508.42218 459.3521 C 511.04926 454.77158 507.64413 451.99799 504.38187 449.18118 C 525.81378 439.93906 522.27124 431.85516 518.7041 423.77078 Z\" fill=\"#9c2aad\"/><path d=\"M 515.3888 443.43765 C 518.471 441.0784 520.69507 437.9082 521.4945 433.98132 C 521.8189 432.39774 521.86353 430.78894 521.6565 429.21866 C 521.47424 427.81204 521.1269 426.37628 520.3556 424.99728 C 519.9676 424.2983 519.48785 423.667 518.76715 423.40582 C 517.23035 422.84723 515.48798 423.0885 513.87372 423.29428 C 512.92957 423.41565 511.97925 423.59198 511.03885 423.78204 C 509.69052 424.05847 508.33154 424.3406 506.97083 424.63992 C 501.95206 425.7452 496.81345 426.90594 491.79453 426.75775 C 489.50748 426.69043 486.84143 426.41138 484.73837 425.243 C 483.0166 424.28519 481.77847 422.83649 480.28064 421.51758 C 479.0265 420.41171 477.68494 419.33054 476.3757 418.2948 C 470.253 413.4426 463.67755 409.29327 456.5536 405.84085 C 452.94205 404.09052 448.98795 402.59589 444.95294 401.59827 C 442.72797 401.04944 440.53168 400.70273 438.31406 400.40283 C 438.84006 400.52283 437.87433 400.25607 437.6907 400.21228 C 437.0046 400.04684 436.324 399.92752 435.6323 399.83856 C 433.8083 399.604 431.9927 399.62048 430.16275 399.66626 C 427.07178 399.74374 423.94662 400.258 420.86484 400.83344 C 418.08362 401.35522 415.37164 401.987 412.6056 402.98746 C 409.47873 404.12247 406.22034 406.00198 403.52374 407.88974 C 400.1043 410.2897 397.14514 413.01318 394.44595 415.91388 C 392.05963 418.4824 389.84894 421.16675 387.91028 424.07095 C 386.33606 426.4332 384.94672 428.80597 383.60333 431.29565 L 382.36902 434.195 L 380.1762 436.21744 C 379.40842 436.9466 378.68204 437.70258 378.08286 438.5649 C 377.73996 439.06534 377.31543 439.69885 377.28165 440.32037 C 377.27112 440.54614 377.24213 440.75742 377.2924 440.9646 C 377.59445 442.17694 378.6471 442.7401 379.72815 443.11148 C 380.39005 443.33875 381.09271 443.51974 381.75955 443.64914 C 382.01099 443.6976 382.24841 443.74545 382.4934 443.79187 C 382.91095 443.87158 383.38864 443.6911 383.79892 443.56262 C 384.48843 443.35104 385.2013 443.12683 385.89847 442.83243 C 387.85168 442.01126 389.57306 440.80511 390.46994 439.13742 C 389.34836 441.00623 386.56912 442.12503 384.4688 442.65445 L 382.76828 443.01486 L 382.5994 442.96335 C 382.42746 442.92148 382.18582 442.87595 382.1112 442.85315 C 381.66962 442.7182 381.19077 442.5948 380.7475 442.43622 C 380.14288 442.2194 379.52637 442.00076 379.0413 441.62515 C 378.83868 441.46918 378.53766 441.2458 378.47046 440.96082 C 378.4148 440.713 378.45386 440.5563 378.50443 440.30374 C 378.5401 440.14069 378.65427 439.94131 378.7529 439.80457 C 378.95038 439.54196 379.12921 439.2646 379.34521 439.0111 C 380.17285 438.0572 381.18527 437.18457 382.1972 436.34192 C 382.71277 435.91553 383.5754 435.41068 383.80746 434.77335 C 384.20676 433.6937 384.76538 432.6681 385.3097 431.67719 C 387.2236 428.2099 389.51834 424.98318 392.04352 421.95483 C 395.70743 417.57056 399.7919 413.42477 404.79626 410.03256 C 406.996 408.5448 409.45505 407.0796 411.98254 406.07022 L 416.27902 404.59872 L 416.93347 404.44382 C 417.4599 404.32422 417.97787 404.2092 418.49374 404.0953 C 420.24756 403.7121 421.9883 403.41174 423.74585 403.1325 C 425.6948 402.82495 427.66772 402.61334 429.61868 402.51404 C 431.9859 402.39453 434.38297 402.3978 436.73083 402.9222 C 437.1294 403.01212 437.55258 403.18408 437.96002 403.24472 C 438.9809 403.40063 439.99966 403.51163 441.03732 403.69385 C 442.98865 404.03482 444.93814 404.56696 446.90097 405.1547 C 449.65054 405.97928 452.27057 407.07675 454.80118 408.21075 C 459.75378 410.42792 464.3754 413.22897 468.7734 416.19778 C 471.06628 417.74371 473.26392 419.38657 475.43463 421.07083 C 476.3458 421.7772 477.2645 422.52313 478.13348 423.26279 C 478.51422 423.58502 478.90454 423.90503 479.2866 424.2348 C 479.43698 424.3642 480.07416 424.93887 479.85065 424.71786 C 480.93756 425.92355 482.08554 426.77869 483.47226 427.56122 C 484.7882 428.3025 486.45273 428.72794 487.93158 428.9884 C 490.94772 429.5218 494.0755 429.32962 497.0675 428.9024 C 499.36826 428.5763 501.6564 428.12918 503.95248 427.61517 C 505.93896 427.1734 507.889 426.6939 509.84332 426.21216 C 511.5575 425.79016 513.31824 425.3433 515.0404 425.15628 C 515.78577 425.07538 516.4734 425.00342 517.1902 425.02194 L 518.11017 425.17706 L 518.92975 426.12527 C 519.1574 426.55344 519.33264 427.03125 519.47327 427.41867 C 520.10858 429.1554 520.25812 430.92477 520.14325 432.68228 C 519.83954 437.44958 516.8954 441.41855 513.12177 444.083 C 510.91116 445.64725 508.19293 447.18768 505.6106 448.06317 C 507.07513 447.70865 508.48352 447.17181 509.94543 446.58221 C 511.87827 445.8046 513.80725 444.65112 515.3888 443.43765 Z\" fill=\"black\"/><path d=\"M 506.25293 473.5787 C 508.8535 469.61313 510.30685 464.44116 510.56366 459.72882 C 510.596 459.17596 510.5855 458.62955 510.5608 458.07169 C 510.4873 456.25116 510.11853 453.92136 508.72733 452.35818 C 508.02225 451.564 507.27094 451.2403 506.2353 450.92358 C 506.79074 451.2318 507.3497 451.3832 507.80432 451.82394 C 509.62582 453.58792 509.81293 456.42484 509.6522 458.62836 C 509.58957 459.51257 509.48672 460.4237 509.31723 461.33218 C 509.0737 462.66888 508.7298 464.0318 508.2878 465.38416 C 507.59198 467.52698 506.70285 469.54672 505.5674 471.37933 C 504.67062 472.83228 503.65628 474.22263 502.39746 475.3786 C 502.02905 475.71854 501.5988 476.07523 501.15814 476.36108 C 499.44434 477.48447 497.79596 477.78995 495.9889 477.20374 L 495.7976 477.11505 L 496.89807 472.3837 C 497.53995 469.11148 497.89682 465.73798 497.67563 462.484 C 497.45987 459.27084 496.88168 456.25583 495.5612 453.051 C 494.27228 449.91623 492.14496 447.35236 489.9294 445.29233 C 485.5158 441.1844 479.30838 438.8215 473.134 437.48242 C 464.10144 435.52316 455.09164 435.53955 446.16891 435.30548 C 444.54523 435.26352 442.94772 435.19934 441.34015 435.07529 C 440.62357 435.02124 439.92178 434.91318 439.21246 434.76566 C 438.90372 434.70132 438.5926 434.71454 438.27774 434.7053 C 437.53952 434.68723 436.79572 434.66397 436.0514 434.66006 C 431.8829 434.6388 427.6738 434.75076 423.50912 435.18152 C 421.5639 435.3838 419.58755 435.4559 417.6453 435.90402 C 411.68729 437.28296 405.68307 439.26007 399.69882 441.04993 C 397.65652 441.6628 395.6023 442.22754 393.54587 442.74728 L 387.39691 444.17609 L 383.2949 444.10587 C 384.62155 444.42276 386.14203 444.79712 387.45505 444.65363 C 390.11862 444.3656 392.7835 443.952 395.43896 443.42368 C 399.01031 442.71564 402.52585 441.79523 406.09457 440.89825 C 408.91104 440.19199 411.72403 439.4331 414.5386 438.7848 C 415.4239 438.5833 416.28992 438.38654 417.16599 438.2035 C 417.51431 438.13248 417.8583 438.06375 418.20563 437.9959 C 418.33392 437.97134 419.11847 437.82065 418.83377 437.86316 C 423.5798 437.48758 428.30453 437.21027 433.05765 437.20618 C 434.21005 437.20526 435.34433 437.2165 436.4891 437.2577 C 437.02441 437.2776 437.54593 437.30206 438.07693 437.32416 C 438.15222 437.3277 438.60287 437.35187 438.72525 437.352 L 441.34653 437.77182 C 442.2693 437.87103 443.19757 437.92935 444.13913 437.96167 C 446.635 438.0484 449.1145 438.12488 451.6349 438.20676 C 454.74002 438.30942 457.86343 438.45126 461.00851 438.69037 C 463.8684 438.9098 466.73285 439.2193 469.55716 439.72952 C 477.4651 441.16385 485.82462 443.7799 490.719 450.23404 C 495.4524 456.47205 495.66928 463.79837 494.7607 470.57288 C 494.5611 472.07922 494.2965 473.60657 493.94647 475.1114 C 493.7948 475.78207 493.63583 476.47006 493.45648 477.15546 C 493.44382 477.2085 493.36987 477.38632 493.38507 477.43542 C 493.52347 477.85938 493.75534 478.32605 493.96497 478.72028 C 493.98975 478.76694 494.1584 478.81323 494.20306 478.8357 C 494.51508 478.98798 494.83426 479.12817 495.15173 479.2394 C 496.98486 479.87967 498.9265 479.79352 500.71664 478.9314 C 503.2868 477.6953 504.8504 475.72202 506.25293 473.5787 Z\" fill=\"black\"/><path d=\"M 399.94818 426.6227 C 400.62823 429.20563 399.14575 431.92978 396.63513 432.71 C 394.12769 433.4914 391.54263 432.03006 390.86255 429.44708 C 390.1858 426.86517 391.66837 424.141 394.17566 423.35974 C 396.68634 422.57947 399.27136 424.04083 399.94818 426.6227 Z\" fill=\"#9c2aad\"/><path d=\"M 399.94818 426.6227 C 400.62823 429.20563 399.14575 431.92978 396.63513 432.71 C 394.12769 433.4914 391.54263 432.03006 390.86255 429.44708 C 390.1858 426.86517 391.66837 424.141 394.17566 423.35974 C 396.68634 422.57947 399.27136 424.04083 399.94818 426.6227 Z\" stroke=\"black\" stroke-linecap=\"butt\" stroke-linejoin=\"bevel\" stroke-width=\".5\"/><path d=\"M 397.46832 427.46823 C 397.72217 428.42627 397.16968 429.43768 396.23828 429.7264 C 395.31018 430.01593 394.35257 429.47287 394.09875 428.51492 C 393.8482 427.55786 394.40063 426.54633 395.32877 426.25665 C 396.26013 425.96808 397.21774 426.51117 397.46832 427.46823 Z\" fill=\"#9c2aad\"/><path d=\"M 397.46832 427.46823 C 397.72217 428.42627 397.16968 429.43768 396.23828 429.7264 C 395.31018 430.01593 394.35257 429.47287 394.09875 428.51492 C 393.8482 427.55786 394.40063 426.54633 395.32877 426.25665 C 396.26013 425.96808 397.21774 426.51117 397.46832 427.46823 Z\" stroke=\"black\" stroke-linecap=\"butt\" stroke-linejoin=\"bevel\" stroke-width=\".5\"/><path d=\"M 407.91653 422.46954 C 407.6739 422.04391 407.41565 421.6348 407.13733 421.24442 C 406.39813 420.202 405.5715 419.27103 404.67755 418.4387 C 403.31064 417.16165 401.80392 416.13297 400.23566 415.13693 C 401.7886 416.63596 403.23334 418.19241 404.55823 420.01926 C 405.25668 420.9801 405.8856 421.9943 406.47278 423.09863 C 408.72794 427.33997 409.38931 431.70285 409.33594 436.00528 C 410.3346 431.45578 410.47205 426.91284 407.91653 422.46954 Z\" fill=\"black\"/><path d=\"M 429.245 431.7911 C 434.51141 436.45966 436.38766 440.96506 445.60196 444.56488 C 442.3126 447.7821 439.15152 451.66516 434.06223 445.58105 C 433.6495 451.0534 429.1236 451.0809 425.35397 445.63272 C 424.17923 452.2389 420.70947 450.8728 417.9744 445.86697 C 415.5275 451.84998 411.04724 450.3985 407.56708 446.68616 C 410.60016 444.04022 422.76404 440.6748 422.24445 432.0223 L 429.245 431.7911 Z\" fill=\"#9c2aad\"/><path d=\"M 429.245 431.7911 C 434.51141 436.45966 436.38766 440.96506 445.60196 444.56488 C 442.3126 447.7821 439.15152 451.66516 434.06223 445.58105 C 433.6495 451.0534 429.1236 451.0809 425.35397 445.63272 C 424.17923 452.2389 420.70947 450.8728 417.9744 445.86697 C 415.5275 451.84998 411.04724 450.3985 407.56708 446.68616 C 410.60016 444.04022 422.76404 440.6748 422.24445 432.0223 L 429.245 431.7911 Z\" stroke=\"black\" stroke-linecap=\"butt\" stroke-linejoin=\"bevel\" stroke-width=\".5\"/><path d=\"M 399.72672 426.68732 C 400.40674 429.27036 398.92422 431.99442 396.41364 432.77472 C 393.90622 433.55594 391.32117 432.09467 390.64108 429.51166 C 389.9643 426.92975 391.4468 424.2056 393.95413 423.42438 C 396.4649 422.6441 399.04987 424.10544 399.72672 426.68732 Z\" fill=\"black\"/><path d=\"M 399.72672 426.68732 C 400.40674 429.27036 398.92422 431.99442 396.41364 432.77472 C 393.90622 433.55594 391.32117 432.09467 390.64108 429.51166 C 389.9643 426.92975 391.4468 424.2056 393.95413 423.42438 C 396.4649 422.6441 399.04987 424.10544 399.72672 426.68732 Z\" stroke=\"black\" stroke-linecap=\"butt\" stroke-linejoin=\"bevel\" stroke-width=\".5\"/><path d=\"M 397.25024 427.5312 C 397.5041 428.48923 396.9517 429.50082 396.02017 429.78937 C 395.09204 430.07904 394.13455 429.53592 393.88074 428.5779 C 393.63013 427.62085 394.18253 426.60925 395.11066 426.3197 C 396.04205 426.0311 396.99966 426.57416 397.25024 427.5312 Z\" fill=\"white\"/><path d=\"M 251.8898 438.27612 L 282.95639 426.48663 C 279.3002 427.49243 265.26852 417.42426 275.83609 409.19485 C 271.87027 407.18549 267.71954 410.2559 266.42801 414.08014 C 261.65314 410.45996 255.91321 411.75629 255.87485 419.04947 C 252.75641 417.04248 245.38171 423.17139 247.77272 428.01343 C 241.95113 427.987 234.28354 432.46906 234.25476 437.9977 C 240.26834 436.34848 250.5286 434.41833 251.8898 438.27612 Z\" fill=\"#48adb1\"/><path d=\"M 251.8898 438.27612 L 282.95639 426.48663 C 279.3002 427.49243 265.26852 417.42426 275.83609 409.19485 C 271.87027 407.18549 267.71954 410.2559 266.42801 414.08014 C 261.65314 410.45996 255.91321 411.75629 255.87485 419.04947 C 252.75641 417.04248 245.38171 423.17139 247.77272 428.01343 C 241.95113 427.987 234.28354 432.46906 234.25476 437.9977 C 240.26834 436.34848 250.5286 434.41833 251.8898 438.27612 Z\" stroke=\"black\" stroke-linecap=\"butt\" stroke-linejoin=\"bevel\" stroke-width=\".5\"/><path d=\"M 270.55344 522.20868 C 272.5795 533.8709 274.71136 544.597 274.11359 545.96283 C 260.84763 528.81763 252.09015 516.536 242.58121 513.91443 C 226.57626 500.25726 223.72905 482.91275 231.30061 462.6899 C 236.59644 451.19806 245.95657 443.02869 258.61746 433.81989 C 264.33817 429.93335 274.21683 426.0442 280.9577 425.7634 C 301.5384 425.25201 322.14069 443.29749 326.18811 449.07104 C 334.11728 452.648 336.82773 454.40765 329.2634 458.4359 C 328.81677 459.92676 322.44073 462.19534 321.67493 461.7008 C 308.66354 462.86984 300.02835 461.66235 288.49582 462.625 C 280.8977 464.01498 273.5686 465.80347 266.63562 468.1752 C 255.25656 474.78903 242.97258 483.12402 242.43475 494.39017 C 245.35158 511.8668 257.78445 517.0666 284.64758 499.57794 C 282.12442 506.53497 265.10397 515.9646 270.55344 522.20868 Z\" fill=\"#48adb1\"/><path d=\"M 272.18036 546.97192 C 271.37378 545.98297 270.57672 544.9748 269.77014 544.00244 C 264.85846 538.11133 260.02121 532.0666 254.45407 526.57153 C 251.74619 523.90198 248.9903 521.3166 246.13115 518.96387 C 245.12761 518.14044 244.13623 517.33636 243.11826 516.5705 C 242.34773 515.9944 241.5795 515.44934 240.8497 514.81097 C 239.53658 513.67053 238.1898 512.44617 236.95107 511.13773 C 229.99643 503.80392 225.66574 494.97446 225.37277 484.3157 C 225.32239 482.52957 225.3656 480.73627 225.5072 479.0006 C 225.6969 476.63846 226.07619 474.38419 226.52757 472.14438 C 226.99808 469.799 227.67737 467.49207 228.40479 465.25946 C 228.93295 463.62933 229.51865 462.05698 230.2821 460.5638 C 233.26602 454.72537 237.436 449.4465 242.56848 444.67642 C 244.81314 442.59277 247.08887 440.63144 249.42714 438.7685 C 250.91312 437.58505 252.4256 436.43259 253.94035 435.2947 C 255.856 433.8568 257.75732 432.44275 259.79309 431.2738 C 262.42899 429.76135 265.2497 428.5202 268.11838 427.42078 C 270.71124 426.42932 273.46951 425.58902 276.29749 425.08252 C 277.15689 424.92877 278.02353 424.80399 278.92136 424.69836 C 280.25607 424.54474 281.72519 424.55197 283.09366 424.6312 C 286.48093 424.8352 289.69775 425.38968 292.77301 426.29715 C 299.10815 428.17215 304.91528 431.00485 310.38644 434.5938 C 314.7435 437.45538 319.0263 440.73462 322.82645 444.63797 C 324.09637 445.94397 325.17667 447.21866 326.23297 448.53424 L 326.35785 448.70715 L 331.18304 451.23502 C 332.10254 451.84222 333.29807 452.59125 333.73727 453.64746 C 333.82373 453.85883 333.90048 454.07974 333.9271 454.32944 C 334.05423 455.6665 332.986 456.66043 332.00894 457.35406 C 331.36319 457.81265 330.69092 458.19916 329.99957 458.57608 C 329.75711 458.7081 329.50497 458.83777 329.25772 458.95776 C 328.85693 459.15463 328.30716 459.121 327.8053 459.121 C 326.94116 459.121 326.12732 459.09705 325.32303 459.00333 C 323.03049 458.74173 320.83871 458.11035 319.23752 456.50677 C 321.61182 458.5665 325.50555 458.64325 328.8641 458.27838 C 328.62878 458.34555 329.565 457.80786 329.83398 457.64453 C 330.14343 457.45737 330.44357 457.25803 330.73413 457.042 C 331.46396 456.49954 332.4914 455.79865 332.73624 454.88626 C 332.96188 454.03653 331.9465 453.33072 331.34634 452.9274 C 331.13028 452.7858 330.9094 452.64172 330.68378 452.5145 C 329.66101 451.94794 328.58548 451.4029 327.4765 450.9253 C 326.99872 450.72116 326.5306 450.50516 326.06262 450.3083 C 325.84653 450.21948 325.60645 450.14273 325.41925 450.00113 C 325.10455 449.7658 324.89587 449.4417 324.6558 449.1536 C 323.29944 447.54276 321.71008 445.99188 320.06342 444.5563 C 316.59924 441.54358 312.9143 438.83813 309.09015 436.4687 C 303.87592 433.24213 298.33276 430.6616 292.33606 428.9643 C 289.71939 428.22498 286.89856 427.668 283.98901 427.51682 L 280.6593 427.45197 L 276.5423 428.05203 C 272.5021 428.85388 268.7547 430.23184 265.1753 431.95789 C 263.95578 432.54614 262.76266 433.1726 261.58875 433.82806 C 261.0343 434.1377 260.4916 434.4641 259.96118 434.80984 L 259.12811 435.35477 L 252.99208 440.01688 C 250.9635 441.62045 248.96141 443.27206 246.97855 445.003 C 244.07619 447.53796 241.19781 450.43317 238.83078 453.3931 C 237.04956 455.61847 235.44348 457.89435 234.07509 460.33575 C 233.72946 460.9503 233.41739 461.56253 233.09326 462.18185 C 232.92517 462.5012 232.77164 462.8324 232.6131 463.16132 C 232.59877 463.1876 232.52678 463.3437 232.47151 463.46133 L 232.43784 463.5214 L 230.77911 468.61545 C 229.26424 473.81284 228.28958 479.25266 228.55844 485.26862 C 228.60883 486.4162 228.73131 487.50848 228.88257 488.6056 C 229.40105 492.38412 230.51253 495.86273 232.06572 499.12756 C 233.78702 502.75473 236.15894 506.03888 238.96042 509.11893 C 239.719 509.95676 240.54001 510.74655 241.34897 511.52435 C 241.78592 511.9468 242.2373 512.34534 242.68619 512.74622 C 242.77979 512.83264 242.87589 512.91913 242.97427 513.0031 L 243.04626 513.068 C 243.18307 513.19043 243.0846 513.10406 243.04626 513.0703 C 246.70251 515.96075 250.32503 518.9568 253.73155 522.36078 C 257.60367 526.2354 261.0343 530.23248 264.42868 534.35205 C 266.57245 536.95654 268.64905 539.65735 270.67996 542.32678 C 271.40256 543.2823 272.12756 544.2473 272.84052 545.19324 L 273.13098 545.58698 L 273.39505 545.3684 C 274.5617 543.9881 274.0552 541.35693 273.67114 539.70764 C 273.5679 539.27325 273.4719 538.82672 273.35178 538.39465 C 271.92831 533.30774 269.8422 528.2951 270.16861 522.4593 C 270.28625 523.89966 270.37262 525.19824 270.66309 526.51874 C 271.53699 530.5157 273.22461 534.22943 274.47046 538.073 C 274.66495 538.68036 274.8594 539.302 275.00595 539.9311 C 275.55325 542.30762 276.03818 545.4524 273.82718 547.09686 C 273.33023 547.46655 272.64606 547.5481 272.18036 546.97192 Z\" fill=\"black\"/><path d=\"M 271.09467 519.16718 C 270.49698 518.14697 270.3938 516.81476 270.77063 515.59747 C 271.30359 513.87146 272.44147 512.3111 273.69467 510.93552 C 275.27179 509.20227 277.00027 507.48343 278.69513 505.7405 L 281.0621 503.07828 L 277.98694 505.0323 C 275.65112 506.38153 273.26004 507.61542 270.80664 508.69818 C 267.34973 510.2249 263.72485 511.4877 259.7518 511.94608 C 256.26117 512.35193 252.78033 511.93176 249.9667 510.52258 C 249.31621 510.19858 248.70163 509.84558 248.10147 509.40393 C 244.76459 506.96014 242.76727 503.43588 241.59094 499.6334 C 241.2044 498.38742 240.88513 497.08386 240.63306 495.75867 C 240.5347 495.24976 240.43152 494.7433 240.48187 494.18872 C 240.63077 492.4554 240.94272 490.90936 241.47568 489.3826 C 242.44801 486.5907 244.05641 484.0772 246.00565 481.76068 C 248.51672 478.77905 251.54404 476.21274 254.624 473.99216 C 257.61273 471.8364 260.7095 469.87262 263.86642 468.04816 C 264.33212 467.77927 264.8003 467.50803 265.27081 467.23444 C 265.97662 466.82385 266.84082 466.63419 267.63062 466.3821 C 269.23419 465.87317 270.84021 465.40262 272.475 464.95615 C 275.38943 464.1615 278.33743 463.46777 281.34305 462.8388 C 284.3534 462.20978 287.27261 461.59518 290.53738 461.4512 C 297.12958 461.1656 303.92575 461.41998 310.60428 461.41998 C 312.90887 461.41998 315.18707 461.38647 317.44131 461.30716 L 324.14627 460.93024 L 326.3645 460.36133 C 327.09662 460.13327 327.81448 459.87405 328.51791 459.58832 C 327.4711 460.18372 326.42691 460.77667 325.29608 461.17273 C 324.9505 461.29517 324.5711 461.45847 324.22311 461.5232 C 321.3064 462.07538 318.3079 462.45465 315.25433 462.73798 C 311.24283 463.11005 307.1282 463.24203 303.00397 463.39563 C 299.75345 463.52048 296.479 463.61182 293.267 463.78943 C 292.24911 463.8471 291.2576 463.9071 290.25894 463.98874 C 289.7909 464.0295 289.32275 464.07272 288.85696 464.11356 C 288.80179 464.1184 288.6289 464.13513 288.4849 464.1472 L 288.30966 464.1592 L 282.62494 465.37384 C 279.3313 466.13486 276.08087 466.97992 272.87836 467.91125 C 271.63239 468.2739 270.41534 468.65082 269.203 469.0516 C 268.63889 469.23886 268.07712 469.42853 267.51773 469.61823 C 267.46985 469.635 267.22726 469.72385 267.03525 469.78864 L 266.88644 469.83667 L 262.28683 472.66223 C 257.55753 475.64142 252.9603 478.89185 249.00653 483.23456 C 246.93 485.51517 245.27835 488.09583 244.35638 490.94312 C 243.99635 492.05457 243.77316 493.22842 243.68193 494.4743 L 243.6771 494.52713 L 244.42613 498.0129 C 245.41756 501.62827 247.10283 504.9868 250.23325 507.15686 C 250.74939 507.51706 251.28947 507.81467 251.83926 508.05475 C 253.83656 508.93326 256.02353 509.2359 258.48416 509.15182 C 260.25104 509.09415 261.90988 508.74612 263.55191 508.36926 C 266.41104 507.7163 269.13098 506.59515 271.7597 505.45007 C 274.98608 504.04568 278.06854 502.34363 281.10535 500.5576 C 281.78708 500.15668 282.46893 499.75095 283.15549 499.32608 C 283.22995 499.2804 283.58044 498.99237 283.66208 499.014 L 283.7269 498.9731 C 284.03891 499.15558 284.33902 499.4894 284.6175 499.72217 C 284.71347 499.8062 284.8191 499.8878 284.91516 499.97183 C 285.00879 500.05832 285.12164 500.1326 285.21283 500.2215 L 285.15286 500.36307 C 285.09283 500.50238 285.02802 500.63678 284.96555 500.77362 C 284.00534 502.87653 282.1857 504.67944 280.43314 506.30954 C 278.01096 508.56137 275.28616 510.6258 273.13052 513.1344 C 272.35025 514.04193 271.56042 515.04053 271.21475 516.1521 C 270.76825 517.57806 270.98187 519.16003 271.9277 520.18756 C 271.59161 520.0099 271.2843 519.49854 271.09467 519.16718 Z\" fill=\"black\"/><path d=\"M 305.11136 446.0443 C 305.19293 449.03317 307.64642 451.49377 310.5896 451.53934 C 313.5304 451.5874 315.84698 449.2011 315.76541 446.21237 C 315.6813 443.226 313.2279 440.76538 310.28711 440.71735 C 307.34393 440.67175 305.02728 443.05795 305.11136 446.0443 Z\" fill=\"#48adb1\"/><path d=\"M 305.11136 446.0443 C 305.19293 449.03317 307.64642 451.49377 310.5896 451.53934 C 313.5304 451.5874 315.84698 449.2011 315.76541 446.21237 C 315.6813 443.226 313.2279 440.76538 310.28711 440.71735 C 307.34393 440.67175 305.02728 443.05795 305.11136 446.0443 Z\" stroke=\"black\" stroke-linecap=\"butt\" stroke-linejoin=\"bevel\" stroke-width=\".5\"/><path d=\"M 308.04364 446.1677 C 308.0748 447.27676 308.98462 448.1891 310.07693 448.20587 C 311.1668 448.2251 312.02625 447.33926 311.99506 446.23007 C 311.9614 445.12344 311.05157 444.21124 309.96164 444.19202 C 308.86942 444.17523 308.00998 445.06097 308.04364 446.1677 Z\" fill=\"#48adb1\"/><path d=\"M 308.04364 446.1677 C 308.0748 447.27676 308.98462 448.1891 310.07693 448.20587 C 311.1668 448.2251 312.02625 447.33926 311.99506 446.23007 C 311.9614 445.12344 311.05157 444.21124 309.96164 444.19202 C 308.86942 444.17523 308.00998 445.06097 308.04364 446.1677 Z\" stroke=\"black\" stroke-linecap=\"butt\" stroke-linejoin=\"bevel\" stroke-width=\".5\"/><path d=\"M 270.20065 460.71268 C 266.0115 467.39117 265.41376 472.82623 256.64435 479.596 C 261.19107 482.01584 265.81238 485.19434 269.36765 477.05383 C 271.53543 482.80566 276.4111 481.40613 278.74213 474.365 C 282.09097 481.09402 285.38702 478.53253 286.75061 472.2909 C 291.26617 477.9516 295.62091 474.982 298.19196 469.8927 C 294.10138 468.00336 279.96884 468.2194 277.79861 458.7586 L 270.20065 460.71268 Z\" fill=\"#48adb1\"/><path d=\"M 270.20065 460.71268 C 266.0115 467.39117 265.41376 472.82623 256.64435 479.596 C 261.19107 482.01584 265.81238 485.19434 269.36765 477.05383 C 271.53543 482.80566 276.4111 481.40613 278.74213 474.365 C 282.09097 481.09402 285.38702 478.53253 286.75061 472.2909 C 291.26617 477.9516 295.62091 474.982 298.19196 469.8927 C 294.10138 468.00336 279.96884 468.2194 277.79861 458.7586 L 270.20065 460.71268 Z\" stroke=\"black\" stroke-linecap=\"butt\" stroke-linejoin=\"bevel\" stroke-width=\".5\"/><path d=\"M 295.8769 454.5162 C 295.4591 453.3303 295.13983 452.08435 294.95502 450.78806 C 294.8182 449.85178 294.75092 448.87949 294.76297 447.8664 C 294.8229 442.12411 297.65088 437.82712 301.17978 433.79395 C 298.4047 438.69122 296.34256 443.83823 296.46017 450.15912 C 296.47458 451.0185 296.52982 451.8539 296.61865 452.67975 C 296.71707 453.60397 296.85144 454.50174 297.02673 455.38525 C 297.27637 456.65994 297.59808 457.87952 297.97495 459.08939 C 297.16354 457.60577 296.43854 456.12216 295.8769 454.5162 Z\" fill=\"black\"/><path d=\"M 305.51346 446.6091 C 306.12561 449.20892 308.7135 450.9182 311.29654 450.4285 C 313.8772 449.94122 315.4737 447.43732 314.86148 444.8374 C 314.24689 442.24 311.65903 440.5307 309.0784 441.018 C 306.4953 441.50778 304.89886 444.0117 305.51346 446.6091 Z\" fill=\"black\"/><path d=\"M 305.51346 446.6091 C 306.12561 449.20892 308.7135 450.9182 311.29654 450.4285 C 313.8772 449.94122 315.4737 447.43732 314.86148 444.8374 C 314.24689 442.24 311.65903 440.5307 309.0784 441.018 C 306.4953 441.50778 304.89886 444.0117 305.51346 446.6091 Z\" stroke=\"black\" stroke-linecap=\"butt\" stroke-linejoin=\"bevel\" stroke-width=\".5\"/><path d=\"M 308.09927 446.19534 C 308.32495 447.1604 309.2876 447.79407 310.24557 447.61172 C 311.20093 447.43167 311.79144 446.5026 311.56592 445.53763 C 311.33774 444.57495 310.3751 443.9412 309.41974 444.12115 C 308.46185 444.3036 307.87125 445.23267 308.09927 446.19534 Z\" fill=\"white\"/><path d=\"M 355.5029 321.3985 L 330.32993 349.86526 C 332.88419 346.36276 327.78528 327.2825 314.7091 335.2598 C 314.15936 330.20407 319.12628 327.00885 323.74023 327.16959 C 321.79816 320.59912 325.50473 314.98163 333.3211 317.89114 C 332.4353 313.74286 341.97537 308.32944 346.19086 312.84262 C 348.50748 306.60815 356.4079 300.21768 362.33261 302.42145 C 358.1388 308.19028 351.92352 318.38812 355.5029 321.3985 Z\" fill=\"#ea761a\"/><path d=\"M 355.5029 321.3985 L 330.32993 349.86526 C 332.88419 346.36276 327.78528 327.2825 314.7091 335.2598 C 314.15936 330.20407 319.12628 327.00885 323.74023 327.16959 C 321.79816 320.59912 325.50473 314.98163 333.3211 317.89114 C 332.4353 313.74286 341.97537 308.32944 346.19086 312.84262 C 348.50748 306.60815 356.4079 300.21768 362.33261 302.42145 C 358.1388 308.19028 351.92352 318.38812 355.5029 321.3985 Z\" stroke=\"black\" stroke-linecap=\"butt\" stroke-linejoin=\"bevel\" stroke-width=\".5\"/><path d=\"M 276.05157 355.58249 C 284.67935 370.4688 303.28906 367.37674 332.82648 341.54602 C 346.51248 320.00754 362.45505 311.3797 380.3614 313.93152 C 393.45197 315.7969 404.05078 320.41089 401.1245 339.90872 C 395.35818 339.98798 390.87848 341.72845 385.34027 340.40326 C 370.8381 339.35419 360.75537 345.13007 353.4263 359.12823 C 339.53867 366.64215 322.6958 370.0943 308.36407 371.9859 C 301.10214 380.85867 296.3729 394.40305 309.35309 403.54697 C 288.87808 403.38382 278.97552 396.96695 287.74268 379.51675 C 270.77014 376.54718 267.99988 368.13535 276.05157 355.58249 Z\" fill=\"#ea761a\"/><path d=\"M 281.59845 363.09628 C 279.56516 361.93195 277.99994 360.07388 277.30371 357.87726 C 276.93402 356.71777 276.83322 355.48865 276.81876 354.14188 C 276.9028 355.6639 277.12604 356.99146 277.67578 358.26135 C 278.46564 360.10028 279.96844 361.57904 281.72806 362.51764 C 285.43457 364.50064 290.70401 364.30377 295.0155 363.50916 C 301.18515 362.37363 306.82178 359.96103 312.08405 356.9722 C 317.31976 353.99783 322.26746 350.28406 326.68704 345.69885 C 329.28934 342.99817 331.55551 340.13425 333.47842 337.09262 C 334.165 336.00513 334.80353 334.9032 335.39655 333.76532 C 335.5958 333.38123 335.76862 332.96832 336.00153 332.5986 C 336.5296 331.75836 337.22104 330.97339 337.85959 330.19318 C 342.33673 324.72455 347.91583 320.32175 353.87659 317.27298 C 359.74133 314.27466 366.25186 312.3301 373.47055 312.04205 C 375.63345 311.958 377.83728 312.03479 379.89941 312.27487 C 381.4285 312.45496 382.92892 312.73099 384.37183 313.09103 C 390.11163 314.52661 395.72195 317.5274 399.22925 322.66483 C 399.88712 323.63223 400.47046 324.66931 400.9432 325.73044 C 402.53497 329.31693 403.00546 333.73169 402.38852 337.9952 C 402.33087 338.38171 402.26367 338.75143 402.1941 339.12833 C 402.10513 339.61087 402.0548 339.95898 401.64435 340.19424 C 400.53036 340.83276 398.84747 340.77753 397.45755 340.67917 C 395.2034 340.52307 393.06201 340.0694 391.0263 339.4692 C 388.43369 338.7106 385.86255 337.71915 383.79327 335.9163 C 385.76654 337.47433 388.1455 338.28815 390.58463 338.9147 C 392.16418 339.32281 393.8014 339.6181 395.501 339.7741 C 396.82864 339.8989 398.31232 339.97821 399.6397 339.79092 C 399.94223 339.7501 400.23993 339.6997 400.52078 339.61087 L 401.13058 339.26755 C 401.2627 337.7864 401.43787 336.28119 401.40665 334.70636 C 401.34186 331.75598 400.67206 329.0505 399.50293 326.64746 C 398.88123 325.37512 398.12256 324.19641 397.20074 323.0777 C 395.67163 321.22925 393.7654 319.69519 391.78973 318.55734 C 387.97516 316.3656 383.6132 315.18445 378.8623 314.86993 C 375.10773 314.6251 371.3363 314.94922 367.92026 315.63577 C 360.76636 317.07614 354.25116 320.06491 348.54718 324.36923 C 346.18979 326.14813 343.89954 328.19351 341.83261 330.43808 C 341.14368 331.1847 340.48343 331.95044 339.84976 332.72821 C 339.55444 333.09073 339.27597 333.44849 338.99265 333.81094 C 338.92065 333.90216 338.84863 333.99579 338.77905 334.08456 L 338.62537 334.27667 L 336.45526 338.05289 C 335.651 339.3348 334.78922 340.58795 333.85294 341.80984 C 330.94098 345.6124 327.292 349.21338 323.52777 352.159 C 316.82285 357.40674 309.33536 361.31976 301.1323 363.56201 C 295.2532 365.17038 287.05023 366.2291 281.59845 363.09628 Z\" fill=\"black\"/><path d=\"M 308.19708 404.67249 C 306.3366 404.06992 304.85056 402.43265 303.69598 400.81458 C 302.67322 399.38617 301.90024 397.737 301.28088 396.06616 C 300.4838 393.9248 299.9509 391.66098 299.63406 389.27237 C 299.37955 387.36627 299.35797 385.2537 299.53076 383.28043 C 299.95575 378.4143 301.8955 373.81946 306.02936 371.14032 C 306.69672 370.70825 307.3905 370.37451 308.12741 370.06967 C 308.61957 369.86801 309.19098 369.84637 309.76709 369.8056 C 310.80414 369.736 311.8172 369.66156 312.83752 369.5535 C 314.29462 369.40231 315.7615 369.21988 317.19461 369.0494 C 321.33328 368.56451 325.44565 367.67139 329.32501 366.62482 C 339.01392 364.01285 348.09549 359.88864 355.95758 353.63007 C 357.51324 352.39142 358.9751 351.12625 360.44913 349.70032 C 361.49579 348.68723 362.51126 347.55649 363.44748 346.53629 C 364.43176 345.4632 365.68732 344.56296 366.88034 343.76828 C 369.29059 342.1623 372.16425 341.01953 375.0857 340.4555 C 376.39886 340.20337 377.71445 339.9441 379.10687 339.85764 C 381.27454 339.72562 383.62231 339.67285 385.77576 339.96576 C 387.46817 340.19855 389.10303 340.4458 390.66583 340.95715 C 391.28278 341.16116 391.86853 341.39886 392.47104 341.59811 C 385.8382 340.65231 378.33621 341.17084 372.72116 343.66507 C 371.55203 344.18607 370.44296 344.73099 369.37228 345.42953 C 368.72894 345.84967 368.10474 346.30579 367.50214 346.80511 L 365.80243 348.37756 L 364.89026 349.4794 C 364.2373 350.20435 363.61069 350.98703 362.90973 351.70963 C 360.64603 354.04544 358.24054 356.25885 355.7391 358.1337 C 347.044 364.65622 337.12704 368.87897 326.2378 371.21234 C 322.39679 372.0358 318.44531 372.62158 314.36908 372.95285 L 309.3422 373.24808 L 308.00745 373.84589 C 307.50089 374.11713 307.016 374.4316 306.56943 374.8157 C 303.75589 377.22836 302.72366 380.59409 302.2171 384.21423 C 301.67935 388.0312 302.19067 392.1316 303.1077 395.54523 C 303.49182 396.98322 303.99838 398.3588 304.62018 399.62875 C 305.45319 401.33792 306.66312 403.24167 308.38666 404.18512 C 309.04211 404.5452 309.8631 404.89325 310.71054 404.8021 C 309.97357 405.1141 308.88123 404.89566 308.19708 404.67249 Z\" fill=\"black\"/><path d=\"M 376.59866 333.49438 C 376.04178 332.6518 375.59525 331.72034 375.30475 330.73608 C 375.0863 330.00623 374.95905 329.23563 374.92062 328.41461 C 374.68057 323.45728 378.2623 320.03406 381.85364 317.33093 C 380.96783 318.78815 380.13724 320.26453 379.42426 321.8081 C 378.20947 324.43445 377.21088 327.3872 377.53015 330.66406 C 377.73657 332.8006 378.40637 334.6995 379.28741 336.50003 C 378.2695 335.58057 377.31885 334.5915 376.59866 333.49438 Z\" fill=\"black\"/><path d=\"M 296.16653 403.1927 C 294.33487 402.90704 292.67358 402.42926 291.06763 401.73785 C 289.84567 401.2146 288.70538 400.4704 287.6803 399.56775 C 284.14423 396.46371 282.9559 391.78491 283.51044 386.75803 C 283.67365 385.26248 283.94977 383.8244 284.30026 382.42493 L 284.83557 380.50201 L 282.81421 380.19714 C 281.80118 380.01944 280.80011 379.8106 279.80865 379.5657 C 276.50299 378.75192 273.06528 377.5156 270.67426 374.8917 C 268.88574 372.93277 268.09363 370.35938 268.5281 367.46658 C 268.83298 365.4212 269.642 363.60635 270.58548 361.8756 C 271.74738 359.73895 273.21655 357.80167 274.94745 355.91956 C 273.99435 358.57706 272.79636 361.06897 271.9418 363.77444 C 271.49527 365.18835 271.09436 366.72476 271.15198 368.36197 C 271.18082 369.2743 271.37527 370.09769 271.68497 370.8515 C 272.09543 371.85974 272.98605 372.70001 273.8407 373.33856 C 275.12744 374.30594 276.69507 374.87256 278.29144 375.3934 C 279.29251 375.72232 280.34882 375.9696 281.3931 376.17126 C 282.73505 376.43295 284.07938 376.64178 285.47894 376.83136 C 285.95428 376.89868 286.44394 376.94904 286.93613 376.99945 C 287.01532 377.00906 287.46667 376.99945 287.51224 377.05942 C 287.85553 377.52524 288.14362 378.0557 288.4581 378.5431 C 288.69095 378.9103 288.89264 379.14325 289.09192 379.52975 L 288.98868 379.82257 C 288.92142 380.0147 288.8566 380.21393 288.79184 380.4035 C 288.26126 381.94232 287.79071 383.52435 287.46667 385.16885 C 286.93613 387.84067 286.71521 390.94705 287.47147 393.57098 C 287.67548 394.28638 287.97797 394.97778 288.35248 395.60184 C 288.66934 396.13733 289.00546 396.61737 289.41837 397.10468 C 290.14575 397.9737 291.02197 398.63153 291.91019 399.21243 C 294.15244 400.68643 296.7883 401.44504 299.4194 402.13165 C 300.8189 402.49893 302.24011 402.82538 303.66846 403.1015 C 301.36145 403.6152 298.51434 403.5624 296.16653 403.1927 Z\" fill=\"black\"/><path d=\"M 364.04654 347.15765 C 361.01459 355.64142 361.67963 361.86145 353.55582 371.58398 C 359.2309 373.16605 365.1749 375.57861 367.1386 365.60889 C 370.97964 371.50235 376.07858 368.74405 376.95001 360.30106 C 382.34427 366.9916 385.39789 363.31863 385.38104 356.01114 C 391.82196 361.2205 395.95584 356.82974 397.57147 350.52094 C 392.53741 349.41669 376.80356 353.1376 372.05267 343.0982 L 364.04654 347.15765 Z\" fill=\"#ea761a\"/><path d=\"M 364.04654 347.15765 C 361.01459 355.64142 361.67963 361.86145 353.55582 371.58398 C 359.2309 373.16605 365.1749 375.57861 367.1386 365.60889 C 370.97964 371.50235 376.07858 368.74405 376.95001 360.30106 C 382.34427 366.9916 385.39789 363.31863 385.38104 356.01114 C 391.82196 361.2205 395.95584 356.82974 397.57147 350.52094 C 392.53741 349.41669 376.80356 353.1376 372.05267 343.0982 L 364.04654 347.15765 Z\" stroke=\"black\" stroke-linecap=\"butt\" stroke-linejoin=\"bevel\" stroke-width=\".5\"/><path d=\"M 394.11249 324.513 C 395.06555 326.76483 394.0813 329.4295 391.91113 330.46414 C 389.73862 331.50128 387.20596 330.5194 386.2529 328.26758 C 385.29742 326.01825 386.28165 323.35349 388.45425 322.3165 C 390.62436 321.28186 393.15707 322.26367 394.11249 324.513 Z\" fill=\"#ea761a\"/><path d=\"M 394.11249 324.513 C 395.06555 326.76483 394.0813 329.4295 391.91113 330.46414 C 389.73862 331.50128 387.20596 330.5194 386.2529 328.26758 C 385.29742 326.01825 386.28165 323.35349 388.45425 322.3165 C 390.62436 321.28186 393.15707 322.26367 394.11249 324.513 Z\" stroke=\"black\" stroke-linecap=\"butt\" stroke-linejoin=\"bevel\" stroke-width=\".5\"/><path d=\"M 391.97302 325.60217 C 392.32593 326.43756 391.961 327.42422 391.15683 327.80835 C 390.3502 328.1948 389.4116 327.82993 389.05865 326.99448 C 388.70337 326.1615 389.0683 325.1748 389.8749 324.7884 C 390.6791 324.40424 391.6177 324.7691 391.97302 325.60217 Z\" fill=\"#ea761a\"/><path d=\"M 391.97302 325.60217 C 392.32593 326.43756 391.961 327.42422 391.15683 327.80835 C 390.3502 328.1948 389.4116 327.82993 389.05865 326.99448 C 388.70337 326.1615 389.0683 325.1748 389.8749 324.7884 C 390.6791 324.40424 391.6177 324.7691 391.97302 325.60217 Z\" stroke=\"black\" stroke-linecap=\"butt\" stroke-linejoin=\"bevel\" stroke-width=\".5\"/><path d=\"M 393.34122 324.13898 C 394.29422 326.39087 393.31003 329.05548 391.13983 330.09021 C 388.96722 331.12726 386.43457 330.14545 385.4815 327.89365 C 384.5261 325.64423 385.51035 322.97961 387.6829 321.94247 C 389.85312 320.90784 392.3858 321.88965 393.34122 324.13898 Z\" fill=\"black\"/><path d=\"M 393.34122 324.13898 C 394.29422 326.39087 393.31003 329.05548 391.13983 330.09021 C 388.96722 331.12726 386.43457 330.14545 385.4815 327.89365 C 384.5261 325.64423 385.51035 322.97961 387.6829 321.94247 C 389.85312 320.90784 392.3858 321.88965 393.34122 324.13898 Z\" stroke=\"black\" stroke-linecap=\"butt\" stroke-linejoin=\"bevel\" stroke-width=\".5\"/><path d=\"M 391.20554 325.22821 C 391.55844 326.06363 391.19351 327.0503 390.38934 327.43442 C 389.58276 327.82095 388.6441 327.45602 388.29123 326.6206 C 387.93588 325.78757 388.30081 324.8009 389.10742 324.41446 C 389.91162 324.03033 390.85028 324.39526 391.20554 325.22821 Z\" fill=\"white\"/><path d=\"M 415.78287 475.16425 L 440.7731 497.8411 C 438.176 494.99905 440.82077 477.66315 453.13977 483.4333 C 453.13208 478.91492 448.43716 476.57825 444.37906 477.16916 C 445.45706 471.17984 441.6387 466.58194 435.02066 469.9125 C 435.3988 466.16418 426.45163 462.31226 423.1708 466.70657 C 420.51797 461.42932 412.92596 456.55597 407.908 459.07904 C 412.17471 463.76093 418.65076 472.15732 415.78287 475.16425 Z\" fill=\"#6974fb\"/><path d=\"M 415.78287 475.16425 L 440.7731 497.8411 C 438.176 494.99905 440.82077 477.66315 453.13977 483.4333 C 453.13208 478.91492 448.43716 476.57825 444.37906 477.16916 C 445.45706 471.17984 441.6387 466.58194 435.02066 469.9125 C 435.3988 466.16418 426.45163 462.31226 423.1708 466.70657 C 420.51797 461.42932 412.92596 456.55597 407.908 459.07904 C 412.17471 463.76093 418.65076 472.15732 415.78287 475.16425 Z\" stroke=\"black\" stroke-linecap=\"butt\" stroke-linejoin=\"bevel\" stroke-width=\".5\"/><path d=\"M 473.63034 555.8343 C 456.48483 558.63464 445.9123 542.2688 443.53629 527.59686 C 450.29694 501.11655 428.4753 478.4842 402.54788 467.91095 C 393.61075 464.26544 376.06073 464.88104 374.12738 466.12704 C 373.32419 471.47015 375.04141 478.32056 377.64706 485.6908 C 379.33337 490.83664 386.08997 502.12006 392.73682 506.96313 C 408.96988 518.779 428.28653 506.80334 431.53174 532.0155 C 428.25201 536.16876 427.0004 548.42395 429.39157 559.3739 C 432.32513 572.8059 444.49048 585.72302 448.221 584.2527 C 443.6488 580.1703 438.66772 560.8755 446.1792 558.0218 C 454.73883 566.8781 463.14941 567.08142 471.44174 560.726 L 473.63034 555.8343 Z\" fill=\"#6974fb\"/><path d=\"M 469.6531 556.2727 C 471.20618 556.27112 472.69104 556.0893 474.1527 555.81805 C 472.43112 556.0288 470.63184 556.11377 468.78348 555.90973 C 456.94958 554.6178 449.8204 543.99524 446.79868 533.87024 C 446.4818 532.80518 446.21326 531.72913 445.98074 530.64233 L 445.42453 527.63123 L 445.74564 526.39105 C 446.01886 525.24237 446.25464 524.04315 446.42645 522.8473 C 446.92361 519.4198 446.95572 516.12732 446.60382 512.95233 C 445.66104 504.44687 441.9677 496.4851 436.3218 489.50513 C 435.5755 488.58133 434.81662 487.68695 434.02524 486.81116 C 428.8343 481.0669 422.73212 476.43927 416.10278 472.60349 C 413.50339 471.1018 410.81223 469.73267 408.0185 468.4892 C 405.71292 467.4635 403.44147 466.46576 400.8982 465.79315 C 398.0655 465.0474 394.97052 464.65527 392.122 464.45526 C 387.31326 464.11923 382.51056 464.10852 377.98874 464.72992 C 376.87433 464.88443 375.65875 465.00403 374.64487 465.45908 C 374.39557 465.5736 374.09338 465.93228 374.0754 466.21426 C 374.05469 466.56653 374.25159 467.0815 374.323 467.42316 C 374.45483 468.04364 374.59195 468.66254 374.73935 469.27844 C 375.23987 471.36075 375.78036 473.49393 376.77704 475.4175 C 377.32443 476.47443 378.05942 477.5182 378.98508 478.21277 C 380.29562 479.19958 381.98141 479.60648 383.80893 479.9287 C 382.35858 479.5829 381.0357 479.19116 379.8743 478.4647 C 378.39612 477.54343 377.48318 475.86383 376.92633 474.26645 C 376.4687 472.9498 376.14355 471.5859 375.88116 470.19888 L 375.31451 466.48642 C 376.52585 466.14178 377.8891 466.09692 379.18335 466.04236 C 380.8823 465.97388 382.6016 465.9699 384.33206 466.02628 C 388.76886 466.1773 393.73175 466.621 398.25336 467.76923 L 402.55655 469.1619 L 409.08871 472.332 C 411.2194 473.45123 413.29694 474.63657 415.32504 475.90833 C 418.61078 477.96985 421.7566 480.25766 424.69705 482.7701 C 427.80234 485.4263 430.727 488.31866 433.3735 491.5716 C 436.64285 495.59253 439.38742 500.12784 441.16052 504.74048 C 443.10312 509.78775 444.04688 515.122 443.6999 520.85022 C 443.61188 522.3169 443.43527 523.81653 443.15543 525.3346 C 443.0126 526.11633 442.637 527.07153 442.73938 527.81842 C 442.90894 529.05493 443.2659 530.29285 443.589 531.48816 C 444.02676 533.11084 444.55652 534.71075 445.1832 536.2716 C 448.22144 543.84247 453.60507 551.2174 461.10214 554.48706 C 462.81793 555.23572 464.69373 555.79553 466.7094 556.073 C 467.71106 556.21307 468.6896 556.27588 469.6531 556.2727 Z\" fill=\"black\"/><path d=\"M 449.03986 585.63812 L 449.21088 585.58044 C 449.3168 585.2702 449.35364 584.96454 449.4273 584.64355 C 449.50287 584.32544 449.5918 584.029 449.64413 583.7043 C 449.67163 583.54834 449.74487 583.3955 449.7516 583.23328 C 449.75555 583.1828 449.4816 582.98096 449.43817 582.93677 C 449.19537 582.69653 448.98444 582.42773 448.7644 582.14026 C 447.70364 580.74658 446.99261 579.16595 446.37009 577.62274 C 445.00162 574.22717 444.1253 570.62573 443.92807 566.87848 C 443.79932 564.401 444.07846 561.0351 445.98846 559.40955 L 446.61328 559.03223 L 448.8427 561.0146 C 451.7127 563.33197 455.0685 565.20337 459.18286 565.30237 C 459.7145 565.31567 460.2312 565.30194 460.74237 565.25067 C 461.26544 565.20154 461.77917 565.12146 462.2854 565.0158 C 464.71704 564.51093 467.00192 563.40002 469.14352 561.92743 C 469.61188 561.6078 470.06958 561.27887 470.51526 560.9358 C 470.76013 560.74982 471.10025 560.549 471.2931 560.3125 C 471.39127 560.19812 472.18796 558.7492 472.2658 558.6118 C 472.74533 557.77252 473.2237 556.92572 473.70163 556.08118 C 473.18213 556.8988 472.6598 557.7184 472.13583 558.53284 C 471.96356 558.80475 471.78818 559.081 471.6139 559.35004 C 471.41443 559.6659 471.27063 559.88678 471.17056 560.0398 L 471.0973 560.15125 L 468.02908 562.1234 C 464.84924 563.91254 461.38763 564.96472 457.49377 564.11237 C 456.72852 563.94574 456.01166 563.7121 455.32666 563.4353 C 454.5596 563.12695 453.8349 562.7578 453.14258 562.34326 C 451.44894 561.3304 449.93524 560.08594 448.52783 558.69458 C 447.97144 558.14545 447.16812 556.9361 446.15744 557.34528 C 445.97876 557.41864 445.79327 557.503 445.62344 557.5949 C 442.29892 559.4171 441.68338 564.11078 441.8148 567.77588 C 441.843 568.5146 441.89255 569.24243 441.97104 569.9583 C 442.05219 570.70148 442.15771 571.44397 442.28314 572.1706 C 442.4107 572.9123 442.55978 573.64307 442.72739 574.36493 C 442.99655 575.5069 443.30914 576.63696 443.68246 577.74127 L 444.95712 580.9912 L 442.68457 578.97662 C 436.90985 572.9759 432.38889 565.14612 430.5736 557.38623 C 430.61148 557.5587 430.5416 557.2221 430.50604 557.05017 C 430.45294 556.78473 430.40173 556.52222 430.3522 556.25018 C 430.18933 555.3488 430.04797 554.4366 429.93976 553.51562 C 429.6009 550.59888 429.55154 547.5749 429.87494 544.48236 C 430.18616 541.51453 430.81598 538.4956 431.87335 535.9275 C 432.0902 535.40265 432.33289 534.89697 432.59769 534.4049 C 432.83908 533.96234 433.21265 533.5578 433.42245 533.11456 C 433.74207 532.44934 433.7927 531.71973 433.69476 531.0589 C 433.27927 528.23102 432.58432 525.4807 431.39594 522.87494 C 429.74503 519.25647 427.02478 516.49036 423.5601 514.83606 C 418.26035 512.30725 411.43134 512.25867 405.39847 510.9292 C 402.43225 510.27692 399.6731 509.39056 397.1702 508.1157 C 396.3379 507.69342 395.53809 507.23798 394.75781 506.74207 C 394.55188 506.61066 394.35098 506.47766 394.14862 506.33963 C 394.1009 506.30682 394.04584 506.27283 393.9961 506.23718 L 393.86313 506.14792 L 391.03207 503.84482 C 388.32416 501.35394 385.97891 498.34177 383.79999 495.17374 C 381.87881 492.38272 380.12344 489.46729 378.86688 486.47415 C 378.40524 485.3738 377.98422 484.1808 377.56345 483.08264 C 376.29727 479.7709 375.03018 476.46387 373.75964 473.14886 C 374.03278 473.99164 374.30737 474.83966 374.57855 475.67972 C 374.85165 476.5225 375.12665 477.3682 375.39783 478.20825 C 375.67096 479.05103 375.94608 479.89667 376.21716 480.7367 C 377.07556 483.3891 377.81879 486.11383 378.93652 488.67795 C 380.72113 492.7685 383.07547 496.76697 385.87494 500.5076 C 387.28748 502.39478 388.77716 504.19077 390.4054 505.76743 C 391.1238 506.462 391.87164 507.19843 392.68655 507.74677 C 393.42273 508.24463 394.12372 508.79 394.88525 509.26797 C 396.57248 510.33093 398.39105 511.21463 400.3259 511.9653 C 403.17062 513.07147 406.28125 513.80273 409.49496 514.40607 C 414.18262 515.29108 419.03696 515.89355 422.82892 517.97357 C 426.0137 519.72223 428.06952 522.96613 429.134 526.37152 C 429.4911 527.5119 429.7647 528.6839 429.9801 529.8676 C 430.07095 530.36145 430.14813 530.85034 430.2169 531.3451 L 430.25638 531.63245 L 429.23679 533.29553 C 426.2642 539.03864 425.66467 546.90405 426.29648 553.09503 C 426.44522 554.5326 426.65387 555.9345 426.93246 557.3269 C 427.28275 559.073 427.7577 560.77533 428.3661 562.4403 C 429.1668 564.6316 430.15198 566.77252 431.29755 568.86115 C 432.76 571.53003 434.52414 574.1884 436.44653 576.62616 C 437.99667 578.5913 439.6505 580.4236 441.45236 582.05267 C 442.6881 583.17255 443.9773 584.2116 445.46347 584.99048 C 446.47635 585.52252 447.89767 586.01935 449.03986 585.63812 Z\" fill=\"black\"/><path d=\"M 392.6246 495.00363 C 394.31863 494.53448 395.97913 493.81314 397.49097 492.77322 C 402.0798 489.62842 404.42114 484.6589 405.02148 478.6828 C 405.27298 476.19196 405.20782 473.79645 405.05414 471.41946 C 403.62012 479.55222 401.1415 487.29108 394.854 491.81586 C 393.69217 492.65424 392.49405 493.35226 391.25534 493.92126 C 389.41928 494.7675 387.52792 495.36035 385.578 495.84293 C 388.0449 495.82935 390.34567 495.63782 392.6246 495.00363 Z\" fill=\"black\"/><path d=\"M 399.80746 503.36148 C 401.47964 511.1862 400.16489 516.5829 406.17386 526.0938 C 400.99237 526.82074 395.47833 528.24463 394.92065 519.24152 C 390.8458 523.97852 386.68231 520.9505 386.90894 513.4167 C 381.3727 518.67114 379.11728 515.08014 379.99026 508.65002 C 373.70853 512.47864 370.58478 508.12988 369.90576 502.38657 C 374.46548 502.00583 387.87646 507.12753 393.23611 498.85095 L 399.80746 503.36148 Z\" fill=\"#6974fb\"/><path d=\"M 399.80746 503.36148 C 401.47964 511.1862 400.16489 516.5829 406.17386 526.0938 C 400.99237 526.82074 395.47833 528.24463 394.92065 519.24152 C 390.8458 523.97852 386.68231 520.9505 386.90894 513.4167 C 381.3727 518.67114 379.11728 515.08014 379.99026 508.65002 C 373.70853 512.47864 370.58478 508.12988 369.90576 502.38657 C 374.46548 502.00583 387.87646 507.12753 393.23611 498.85095 L 399.80746 503.36148 Z\" stroke=\"black\" stroke-linecap=\"butt\" stroke-linejoin=\"bevel\" stroke-width=\".5\"/><path d=\"M 392.67337 475.86877 C 391.72366 478.3657 388.93045 479.71848 386.434 478.89066 C 383.93942 478.06573 382.69073 475.37375 383.64044 472.87686 C 384.5921 470.3827 387.38531 469.02997 389.87985 469.8549 C 392.37628 470.6827 393.62506 473.3747 392.67337 475.86877 Z\" fill=\"black\"/><path d=\"M 392.67337 475.86877 C 391.72366 478.3657 388.93045 479.71848 386.434 478.89066 C 383.93942 478.06573 382.69073 475.37375 383.64044 472.87686 C 384.5921 470.3827 387.38531 469.02997 389.87985 469.8549 C 392.37628 470.6827 393.62506 473.3747 392.67337 475.86877 Z\" stroke=\"black\" stroke-linecap=\"butt\" stroke-linejoin=\"bevel\" stroke-width=\".5\"/><path d=\"M 390.16306 475.1172 C 389.81216 476.0426 388.77536 476.54477 387.84995 476.23535 C 386.92651 475.9287 386.46387 474.93057 386.81473 474.0052 C 387.16757 473.08252 388.20438 472.58044 389.12778 472.88705 C 390.0532 473.19647 390.51584 474.19464 390.16306 475.1172 Z\" fill=\"white\"/><path d=\"M 315.19626 503.27756 L 309.10336 543.39062 C 309.36359 538.7683 293.7388 524.60535 286.63428 539.33624 C 283.21231 535.11743 285.81378 529.37714 290.04251 526.84814 C 284.49673 522.0802 284.57062 514.89417 293.26587 512.97363 C 290.06964 509.76993 295.49216 499.38736 301.88528 500.9948 C 300.35547 494.05533 303.73672 483.75122 310.32684 482.29865 C 309.90863 489.89957 310.23828 502.64322 315.19626 503.27756 Z\" fill=\"#6d6912\"/><path d=\"M 315.19626 503.27756 L 309.10336 543.39062 C 309.36359 538.7683 293.7388 524.60535 286.63428 539.33624 C 283.21231 535.11743 285.81378 529.37714 290.04251 526.84814 C 284.49673 522.0802 284.57062 514.89417 293.26587 512.97363 C 290.06964 509.76993 295.49216 499.38736 301.88528 500.9948 C 300.35547 494.05533 303.73672 483.75122 310.32684 482.29865 C 309.90863 489.89957 310.23828 502.64322 315.19626 503.27756 Z\" stroke=\"black\" stroke-linecap=\"butt\" stroke-linejoin=\"bevel\" stroke-width=\".5\"/><path d=\"M 360.37427 479.71823 C 343.81323 474.76978 328.20563 475.10336 315.90976 493.7116 L 299.2395 556.60596 C 289.51816 578.36505 262.26764 581.97516 253.65353 558.0036 C 247.702 561.5014 248.24934 572.40942 257.32928 587.1947 C 256.08243 596.01654 257.38123 604.59955 261.2955 612.9362 C 264.78311 602.8109 265.9404 592.95496 289.10031 580.53998 L 329.06287 558.5717 C 340.225 549.12097 348.64478 538.2262 349.14392 523.15076 C 349.89691 514.51135 349.68915 506.07697 357.03525 496.04617 C 359.5827 490.26727 362.22562 484.4647 360.37427 479.71823 Z\" fill=\"#6d6912\"/><path d=\"M 264.74863 603.53894 C 267.90518 596.68042 272.48422 590.6053 277.87115 585.87512 C 282.77338 581.57263 288.44537 578.1642 294.47803 575.17065 C 303.0502 570.92053 312.27103 567.35724 320.41092 562.58392 C 326.32797 559.11694 331.56653 555.0027 336.03229 549.82184 C 337.11298 548.57025 338.12402 547.24677 339.09143 545.86743 L 341.85574 541.60315 L 343.79614 537.24976 C 344.32233 535.7578 344.74841 534.24133 345.1592 532.7138 C 345.81445 530.26178 346.37958 527.8051 346.92917 525.3252 C 348.25467 519.3191 349.46603 513.25226 351.2624 507.34894 C 353.1424 501.16495 355.88617 493.26636 362.11932 490.06445 C 357.55408 492.86035 355.35837 498.3932 353.96542 503.30518 C 353.43857 505.16113 352.9949 507.0332 352.60638 508.919 C 351.9484 512.1137 351.42038 515.3454 350.91702 518.576 C 350.29507 522.57098 349.7394 526.57404 349.00381 530.54047 C 348.3905 533.8355 347.7154 537.12128 346.57327 540.29077 C 345.90771 542.13672 345.00989 543.88464 343.96613 545.65167 C 342.2543 548.55005 340.36264 551.2237 338.26434 553.65442 C 333.06882 559.67792 326.7667 564.25037 319.64127 568.021 C 309.15628 573.56958 297.02652 577.2248 286.77081 583.01794 C 280.47733 586.5738 274.90253 590.9872 270.42511 596.65582 C 266.35959 601.80383 263.22208 607.85596 261.01459 613.8369 C 262.01123 610.3623 263.19699 606.9121 264.74863 603.53894 Z\" fill=\"black\"/><path d=\"M 281.21643 574.5774 C 279.94254 574.76642 278.68079 574.8459 277.44586 574.84454 C 274.63553 574.8451 271.89279 574.4428 269.22467 573.8042 C 268.13379 573.54675 267.06271 573.24963 265.99216 572.91534 C 265.58224 572.78986 265.1824 572.6645 264.77655 572.52563 C 264.46634 572.42236 264.1597 572.3134 263.8505 572.2049 C 263.16074 571.96857 263.4815 572.09393 263.57352 572.1056 C 262.42712 571.80518 261.37042 570.9701 260.47653 570.2132 C 259.62747 569.4972 258.86655 568.70703 258.1514 567.87347 C 256.15585 565.55548 254.29405 562.45453 254.31589 559.01984 C 254.50966 562.99194 257.15399 566.1949 259.76492 568.50043 C 260.62277 569.26135 261.5834 570.0288 262.66086 570.57904 C 263.54095 571.0327 264.48523 571.21777 265.4259 571.45825 C 266.31259 571.68994 267.20096 571.88904 268.09741 572.07123 C 272.86539 573.04486 278.10236 573.47845 283.353 571.69434 C 285.08197 571.10742 286.63245 570.31012 288.0328 569.32758 C 290.18503 567.81866 291.9761 565.94196 293.54068 563.73352 C 296.53018 559.5193 298.3173 554.7193 299.76535 550.05823 C 301.18472 545.4909 302.24924 540.8291 303.23145 536.15558 C 305.40442 525.81866 307.13626 515.35925 310.26169 505.2401 C 312.37616 498.38922 315.35254 490.99667 320.22534 485.2466 C 323.2764 481.64563 327.00262 478.76947 331.64536 477.03793 C 334.2421 476.07126 337.1199 475.51706 339.7605 475.32132 C 345.96103 474.86646 351.94858 476.06796 357.64648 477.88345 C 358.11954 478.03516 358.59225 478.18454 359.06671 478.34082 C 359.7718 478.57822 360.50992 478.6812 360.9618 479.31317 C 361.25275 479.72562 361.2843 480.4773 361.33972 480.9781 C 361.5823 483.2705 361.0814 485.3895 360.16614 487.414 C 358.37604 491.3685 355.0484 494.45465 351.38367 496.37778 C 350.04068 497.0838 348.49158 497.658 346.87271 497.89343 C 348.1527 497.6287 349.2772 497.16766 350.33203 496.60547 C 351.27792 496.1023 352.15811 495.51422 352.98645 494.8673 C 356.71582 491.95328 360.1796 487.22006 359.89462 482.2265 L 359.53827 480.30148 L 357.85358 479.8457 C 356.4924 479.49731 355.13077 479.19601 353.7506 478.9191 C 349.9414 478.1593 346.06686 477.78183 342.04172 478.00116 C 340.39447 478.09268 338.72504 478.32324 337.01422 478.71527 C 329.86334 480.3596 324.8556 484.6761 321.2106 490.42914 C 317.49814 496.28824 315.42664 502.6461 313.694 508.97394 C 311.01355 518.76434 309.31992 528.79108 306.94626 538.65088 C 305.84592 543.21802 304.61566 547.7307 303.02557 552.1798 C 301.78964 555.6375 300.31287 559.03143 298.31534 562.31287 C 294.5047 568.5724 289.14108 573.40564 281.21643 574.5774 Z\" fill=\"black\"/><path d=\"M 340.41873 522.22308 C 344.22507 531.05927 349.27368 535.43164 349.99646 548.93817 C 355.58438 546.0456 361.97998 543.60486 356.26254 534.38678 C 363.5516 536.19403 365.52551 530.32812 360.0624 523.10254 C 369.14691 524.40027 368.86005 519.3108 363.53033 513.61298 C 372.34882 513.00024 372.3837 506.5613 369.0537 500.44928 C 364.31708 503.25323 354.7337 517.60754 343.71988 513.2256 L 340.41873 522.22308 Z\" fill=\"#6d6912\"/><path d=\"M 340.41873 522.22308 C 344.22507 531.05927 349.27368 535.43164 349.99646 548.93817 C 355.58438 546.0456 361.97998 543.60486 356.26254 534.38678 C 363.5516 536.19403 365.52551 530.32812 360.0624 523.10254 C 369.14691 524.40027 368.86005 519.3108 363.53033 513.61298 C 372.34882 513.00024 372.3837 506.5613 369.0537 500.44928 C 364.31708 503.25323 354.7337 517.60754 343.71988 513.2256 L 340.41873 522.22308 Z\" stroke=\"black\" stroke-linecap=\"butt\" stroke-linejoin=\"bevel\" stroke-width=\".5\"/><path d=\"M 332.6806 501.97403 C 332.14227 501.57135 331.63303 501.14667 331.14832 500.70087 C 330.46872 500.07855 329.82281 499.42325 329.22415 498.7288 C 326.88055 496.01758 325.28027 492.79456 323.83792 489.28214 C 327.39096 494.5518 331.56271 499.21704 337.45297 502.40964 C 338.2712 502.85388 339.0867 503.25674 339.9238 503.62698 C 343.11462 505.04324 346.41837 505.90933 349.80307 506.46585 C 343.66498 506.73444 337.7768 505.8125 332.6806 501.97403 Z\" fill=\"black\"/><path d=\"M 347.56516 482.4999 C 349.35895 484.3957 349.36755 487.42676 347.5859 489.27133 C 345.8025 491.11877 342.90125 491.0827 341.10742 489.18692 C 339.31186 487.29413 339.30331 484.2629 341.08667 482.4154 C 342.86835 480.57086 345.76965 480.6071 347.56516 482.4999 Z\" fill=\"#6d6912\"/><path d=\"M 347.56516 482.4999 C 349.35895 484.3957 349.36755 487.42676 347.5859 489.27133 C 345.8025 491.11877 342.90125 491.0827 341.10742 489.18692 C 339.31186 487.29413 339.30331 484.2629 341.08667 482.4154 C 342.86835 480.57086 345.76965 480.6071 347.56516 482.4999 Z\" stroke=\"black\" stroke-linecap=\"butt\" stroke-linejoin=\"bevel\" stroke-width=\".5\"/><path d=\"M 345.8332 484.38425 C 346.4988 485.08923 346.50214 486.21408 345.8415 486.8984 C 345.17914 487.58563 344.10419 487.57156 343.4386 486.8667 C 342.77124 486.16464 342.76788 485.03967 343.43024 484.35245 C 344.09094 483.66833 345.16586 483.6823 345.8332 484.38425 Z\" fill=\"#6d6912\"/><path d=\"M 345.8332 484.38425 C 346.4988 485.08923 346.50214 486.21408 345.8415 486.8984 C 345.17914 487.58563 344.10419 487.57156 343.4386 486.8667 C 342.77124 486.16464 342.76788 485.03967 343.43024 484.35245 C 344.09094 483.66833 345.16586 483.6823 345.8332 484.38425 Z\" stroke=\"black\" stroke-linecap=\"butt\" stroke-linejoin=\"bevel\" stroke-width=\".5\"/><path d=\"M 339.10947 488.19864 C 340.3324 490.57306 343.25693 491.6055 345.64474 490.50537 C 348.03091 489.40823 348.97427 486.5925 347.75131 484.218 C 346.52655 481.8464 343.60202 480.8139 341.216 481.91107 C 338.828 483.01123 337.8848 485.82687 339.10947 488.19864 Z\" fill=\"black\"/><path d=\"M 339.10947 488.19864 C 340.3324 490.57306 343.25693 491.6055 345.64474 490.50537 C 348.03091 489.40823 348.97427 486.5925 347.75131 484.218 C 346.52655 481.8464 343.60202 480.8139 341.216 481.91107 C 338.828 483.01123 337.8848 485.82687 339.10947 488.19864 Z\" stroke=\"black\" stroke-linecap=\"butt\" stroke-linejoin=\"bevel\" stroke-width=\".5\"/><path d=\"M 341.5216 487.16687 C 341.9739 488.0486 343.06128 488.43066 343.94672 488.02197 C 344.83005 487.61615 345.17838 486.57178 344.72607 485.68994 C 344.27179 484.81107 343.18439 484.42902 342.30093 484.83487 C 341.41565 485.24362 341.06741 486.28796 341.5216 487.16687 Z\" fill=\"white\"/></g></g></svg>\n",
"type": "image/svg+xml",
"tags": "picture"
},
"Tiddler Poster.png": {
"title": "Tiddler Poster.png",
"text": "iVBORw0KGgoAAAANSUhEUgAAAdEAAAFeCAYAAADaJSWWAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAACXBIWXMAABOIAAATiAGjigkoAAAEqWlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iWE1QIENvcmUgNS40LjAiPgogICA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgogICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgICAgICAgICB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iCiAgICAgICAgICAgIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iPgogICAgICAgICA8ZGM6Y3JlYXRvcj4KICAgICAgICAgICAgPHJkZjpTZXE+CiAgICAgICAgICAgICAgIDxyZGY6bGk+RHVhcnRlIE51bm8gRmFycmFqb3RhIFJhbW9zPC9yZGY6bGk+CiAgICAgICAgICAgIDwvcmRmOlNlcT4KICAgICAgICAgPC9kYzpjcmVhdG9yPgogICAgICAgICA8ZGM6ZGVzY3JpcHRpb24+CiAgICAgICAgICAgIDxyZGY6QWx0PgogICAgICAgICAgICAgICA8cmRmOmxpIHhtbDpsYW5nPSJ4LWRlZmF1bHQiPlRpZGRseVdpa2kgY29tbXVuaXR5IHBvc3RlciYjeEE7WW91ciBtZXNzeSB0aG91Z2h0cy4gT3JnYW5pemVkLiYjeEE7eW91ciBwZXJzb25hbCB3aWtpIC0gYSBzaW5nbGUgSFRNTCBmaWxlJiN4QTtsYXB0b3AsIG1vYmlsZSwgdGFibGV0IC0gb2ZmbGluZSBvciBpbiB0aGUgY2xvdWQmI3hBO293biB5b3VyIGRhdGEgMTAwJSAtIG9wZW4gc291cmNlIGFuZCBmcmVlJiN4QTs8L3JkZjpsaT4KICAgICAgICAgICAgPC9yZGY6QWx0PgogICAgICAgICA8L2RjOmRlc2NyaXB0aW9uPgogICAgICAgICA8ZGM6dGl0bGU+CiAgICAgICAgICAgIDxyZGY6QWx0PgogICAgICAgICAgICAgICA8cmRmOmxpIHhtbDpsYW5nPSJ4LWRlZmF1bHQiPlRpZGRseVdpa2kgVGlkZGxlciBQb3N0ZXI8L3JkZjpsaT4KICAgICAgICAgICAgPC9yZGY6QWx0PgogICAgICAgICA8L2RjOnRpdGxlPgogICAgICAgICA8eG1wOkNyZWF0b3JUb29sPnd3dy5pbmtzY2FwZS5vcmc8L3htcDpDcmVhdG9yVG9vbD4KICAgICAgICAgPHRpZmY6T3JpZW50YXRpb24+MTwvdGlmZjpPcmllbnRhdGlvbj4KICAgICAgPC9yZGY6RGVzY3JpcHRpb24+CiAgIDwvcmRmOlJERj4KPC94OnhtcG1ldGE+Cg6gNqEAAEAASURBVHgB7L1nkGXXVf69buicu6cnSZqkLI2yLMtywhGwsQGDTTA5m2RXYcJbUAUFfyj4AgUUsQwU0QaTTDJg42xLspIlK0/UpJ7QOd/bN7zPb99ZM2euuie00sxo7ZnT59xzdnz2PuvZa+1wcrVarW7hAoFAIBAIBAKBQOCcEcifc4gIEAgEAoFAIBAIBAIJgSDRaAiBQCAQCAQCgcAqEQgSXSVwESwQCAQCgUAgEAgSjTYQCAQCgUAgEAisEoEg0VUCF8ECgUAgEAgEAoEg0WgDgUAgEAgEAoHAKhEIEl0lcBEsEAgEAoFAIBAIEo02EAgEAoFAIBAIrBKBINFVAhfBAoFAIBAIBAKBINFoA4FAIBAIBAKBwCoRCBJdJXARLBAIBAKBQCAQCBKNNhAIBAKBQCAQCKwSgSDRVQIXwQKBQCAQCAQCgSDRaAOBQCAQCAQCgcAqEQgSXSVwESwQCAQCgUAgEAgSjTYQCAQCgUAgEAisEoEg0VUCF8ECgUAgEAgEAoEg0WgDgUAgEAgEAoHAKhEIEl0lcBEsEAgEAoFAIBAIEo02EAgEAoFAIBAIrBKBINFVAhfBAoFAIBAIBAKBINFoA4FAIBAIBAKBwCoRCBJdJXARLBAIBAKBQCAQCBKNNhAIBAKBQCAQCKwSgSDRVQIXwQKBQCAQCAQCgSDRaAOBQCAQCAQCgcAqEQgSXSVwESwQCAQCgUAgEAgSjTYQCAQCgUAgEAisEoEg0VUCF8ECgUAgEAgEAoEg0WgDgUAgEAgEAoHAKhEIEl0lcBEsEAgEAoFAIBAIEo02EAgEAoFAIBAIrBKBINFVAhfBAoFAIBAIBAKBINFoA4FAIBAIBAKBwCoRCBJdJXARLBAIBAKBQCAQCBKNNhAIBAKBQCAQCKwSgSDRVQIXwQKBQCAQCAQCgSDRaAOBQCAQCAQCgcAqEQgSXSVwESwQCAQCgUAgEAgSjTYQCAQCgUAgEAisEoEg0VUCF8ECgUAgEAgEAoEg0WgDgUAgEAgEAoHAKhEIEl0lcBEsEAgEAoFAIBAIEo02EAgEAoFAIBAIrBKBINFVAhfBAoFAIBAIBAKBINFoA4FAIBAIBAKBwCoRCBJdJXARLBAIBAKBQCAQCBKNNhAIBAKBQCAQCKwSgSDRVQIXwQKBQCAQCAQCgSDRaAOBQCAQCAQCgcAqEQgSXSVwESwQCAQCgUAgEAgSjTYQCAQCgUAgEAisEoEg0VUCF8ECgUAgEAgEAoEg0WgDgUAgEAgEAoHAKhEIEl0lcBEsEAgEAoFAIBAIEo02EAgEAoFAIBAIrBKBINFVAhfBAoFAIBAIBAKBINFoA4FAIBAIBAKBwCoRKOZyuVUGjWCBQCAQCAQCgcDLG4FivV5/eSMQpQ8EAoHzGgE6+iGnzusqellnLsy551D9Z/sin62/c0g6vAYCFz0C/t5Amn5Q6FqtdtGXPQp44SKQU8MNVfQM9QdEWbN3828P3nzff/vZ/cX5/EGAusGdrn69/vx8/uR+5Zxk87pcGZcL2Rwmi8ly/p+ve9l0iRPS5Mjn8+nwdJr9+f0L5ZzNv1/7+cUuQ3O6zb9f7PxcyOkVL+TMv9B5p2HhECaPPfaY7d271970pjdZe3t7Mi9lhYw3Ql7+T3/60zYwMGC33nrrOZuhsmkuVz5Px5+dyb/7az57PH5ufn4uv5vjaP59LnGdzu9q4j1dmOyzarV6QmBTr9PT03b33XfbnXfeaX19fc+q79Pls/lZNh1/xj1ctg35M87Lhck+P921h3366aft2LFj9upXvzp59/vLhc0+A4tCoXBKHrLPlwu/2ntOlsT/1FNP2aOPPmpHjx61SqViLS0ttn79ervxxhvt8ssvT1h5PprP2fT9WfbeStcr+V3u/kr3iHu5enT/nN3P/fffn+TH9u3bT8E3eTiHPx73OQQ54dXDLi0t2Wc/+1m76aabbHh4+Dnl50TkL8OLPIDGsTwGtAewwdHI/v3f/92+9KUvpd/8cdz8mvMjjzxi//AP/2Br167l54nwfp0N03yPZ7yMHO6v+dz8bDn/y8WbjYfnHo+feZ4Nl37oj4fLPvN7fs7Gwb3m3+6Pc3M8zb/db/KoP9nfzfE2+3G/2XNzmOwzD//EE0/YvffeeyLf3F9YWLD//d//TWd+E675nI3Lr91P9vdyeeDecvc93ErPlovfw2SfcX3gwAFDaGdds1+ecY/05ubm7L/+67/S2cO4/+b8eDh/fq5nwjuBku7f/M3f2F/8xV9Ya2urvf71r7e3v/3tifyJ94/+6I/sox/9qJXL5ZRPwnl+ODfnxZ95npIH/cn+9utmv6e7v5xf7vn9bD64zt7nN+7BBx9MnQWuSetsnOfJz4TxuLP3/Lr57Gn4ff9NZ+lTn/pU6jByz5/HeXk+WAmX0ES9Ra1wprHS2CDFH/mRH7E/+7M/s2uvvdY2bNiQ7mNy8p77xMSEffjDH7Yf/MEftEsvvTQJCcLj8IPz3y4I/Hd6qD/cp7KIt9lxvzkcv93xnPia/fhzP3saWb88y4bL+vF4m/NKmGye+I3LxtO40/jb7JffOOJtjjubPn6Wi9MxXQ4rwmTTa47fn3Mfounu7ubWiTrl/uDg4Il8kb675fKSfUa6nt5KfrmPv+Xyfrp8e7jm+Enf0/K8oMlRLuLzg3Bc40jb00LzHBkZsc997nMnNFfi8/w51s3p+m9P82zPHjfE+Jd/+Zc2OztrP//zP58wz8aBFvqqV73K/viP/zh1aL7zO7/TisXiibISjzvKQn4cB8/bSnknXLNf7jkmXHscHrf/5hkum77H5ffx6/49/Dve8Y6U/xRYfzxv/nu5czYenpOOx8dvv/a0uJd1noY/JzwY4rCYeR17PNmwcX1mBIJEz4zRiUZ28803Gwca6Q/90A8lkxcN0hvhf//3f9vmzZvt9ttvT7F6o6VxIqSWc9kXj+ceF2GanT/jvj/P3mv2736a73sYnvt11k+2TNn7y8VHGZeLg3DN/lfy2+xvpXwRZxYvx7Q5PP5w2Xw1+8mmAdF0dHSkMBCPO4SPh3Oh48/8vv/mnI0ze5/rbL757XlbLh5/hr/s89PFn31GWu78Ohtn9hl14u20q6vLent7T2DhJl38O9Ye1s/N5fL7Z3vGZL5r1y77xV/8xUSgnl/K4/miw/pjP/Zj9v/+3/+za665xu64444T0S9XLn9IHBwr5T2LGde47D2PJ3tuLq+nv1I4909Z8ENZcH7fw2fTWO76bPLncWbDE665/J4mz5xgCeN4Z8PH9ZkRiHWiZ8Yo+aCB0vi+8Ru/0X7t137NHnjgAXvFK15x4qXDJPjlL3/ZfuEXfiH5c/80VMJNTk7aV7/6VZuamkqNet26dXb99ddbW1tbioNEaMSY4Bir2Lp1a7rvLx9nxul4ftVVV53oSR46dCjlj/gwNRM/gmbbtm0pXdL3l8Ov0TgwV+KHcV7yzhgUv9GyyS/xPPzwwynfPT09adwEzczj8DOJ796923bu3JnyDQkxfpUdw8KP52HPnj3GWB1lZGyZsmzatAkvJ3AgfTQUxqHJK2n19/cb40jZ8UnigQA3btx4Il8eD+lRRvJGXrLj2MRHGuDJ8yNHjqR6eOihhxKJ4B9HHVI/5PW+++6zsbGxNE539dVXp/rJpuVxzszMpHoeHx9PaTAMQD13dnaeKB95O3z4cNK+rrjiipRWNi60sn379qV8Z9uH55l2RPwIR8YMb7jhhnT9+OOPp06ca9XESVqeHuHAxLGkPj1dcHjyySdTmSkrcVx55ZUp3/hhbJX6IG90KKgz2hl5yraFFOEZ/jhWmHE/8YlPpHeKvDgJkF93+OU+5IOJ95Of/GTqyGL2xe3fvz+ZgAn/xS9+MZmir7vuOtuyZUt6Tv5oy4y1Oma0F9oS6VBm3jWvHy8P7RRMSqVS8gdmxMuZPOEITz0RBsuTt23CrFmzJo3lgmMWH+LkHbnssstSHLw3WLDA1OPlAdfUPY780cFxmQJu1AV1Qh7IE20s+24Qjji8/Pin/fIbLNHwwZA4sy6LffZ+XK+MQOGXf/mXf2Xlx/HEEaBx0Sh5KdBa/u3f/i2RKC8fguVDH/qQff3Xf31qzC4MvBEzYeJP/uRPUoPnBeYlgoTvueceQ4hmX5DPfOYzacwEjdedvzy8sJi+XvOa16Q4eA5xPvPMM+llxiy5uLiYiBHButyLSTkY/8Pv/Py8ff7zn0+makj0n/7pn1LZeNH+/u//Pl3zgiKcmYBAnJSX3it+OP/nf/5nGjtEiAwNDSWh8/GPfzwJLAgSfzjSZYwRoQkGmJEQNoR3oeJ4QW6MkR08eNAuueQSg8S5RtNHoCAscOCH4EQzIX4XCI4X49P/8z//Y3fddVciGeLHccY/9YYQhUT9HoIFIQMZInjIJ+OE/MakT2eI8TnaQZb8KededUgwO9IBIN8QN8QFdnRQ0PI8b9QB+acjRl5I359BsH/6p39qr3zlK1Md+H0E8B/+4R8m3MAQIUv+6eyACXUG5tQZjnZBfsnPf/zHf6SygCXloi4gQX4TPwSAf7CnjmlHpOFloD5Ig04B7QrcaY/EAZkTx9k6Lw940X6/6Zu+KeHpddAcD/fBl3YCiTIRxtsA7Ze2sWPHjoQ1dUrHElIhn2i5f/AHf3CiTsCM8tM2qA8wo+PINY42/a//+q/2f//3f4no6JzyvhMP7YB6BF8vA/lx3GifdGrwT4eazgjEy29/Z7BiQep0xIgD2UC9km/I1A86O+SBeJgYRhy0E8rqpm2ImPuEJ29YwWivxOuYZcvvbYbOJ+2PskHi5IVwhAl37giEOffcMUuNGhJEQH/bt31berF5sXwWJFHSkBEu9BYRiO9617tOef66170uTUCCFH/qp34q9QoJhxBHcOGahQrx+cuePOgPvxEkxPezP/uz6Tbk5BoML547f0kQnPTMOf/wD//wiR4vGhhjvvTq3/ve99qW4715SJvJHQj9t73tbR6dQfjg8IEPfOCE4OYhpPbbv/3bSeASljzwMn/hC1+w97///YlsPRKEzK//+q8n4oIgcZAOOHzf931f+s0fZskisP78z//cfu7nfi5hBAEhhBEskLiXD4HLNR0FcEH4uhAjLvJD/UD6lAeBBXHQCXJHHJAPAhUsIAt3CFJIBeFLHMSHYKSe3/jGN9qb3/xm95o6PHQU6GT9zM/8TOow8ZA8kSaOvHre+U3a2Xqm3tGiiP9rv/Zr7Q1veAPekqN8CGvIAMwgDne0ga985StJk2b4wcmViTt/9Vd/ZXR2fuAHfiB5ZwiCzgP4gglhcXQe/uVf/iW1X7Q3dxD8b/zGb6S2R37If7atub/TnbEygJ8T4kp+PV7aJW2W2buuyYETHTPyAL7UK+0fLEZHRxNm3/AN32Cvfe1rT0QPZpDTRz7ykVRO8MWRDjPraTeMzzpePKOt0cmkDYKZ5wnyAR86aj/90z994t2l3f/+7/9+ast0Etw/7zZ5w4EZ4TiaHRYn8sj7SRo4b2PUH+3MHWPGvFtMzPrgBz94ou14m3nrW9+aVhW4f8pPx4s2DFZe/tXUocf5cj7H7NzjAowGdKaDFwFhzEvwzd/8zYb5jx4+gorfNEae489fGgQc2qYTLM/R+nAIKzQFeqPu3/PgjZLf7rhGSGQdvyEBiAvhi6N36vFkzx6OPOAQ9ghLzJW4LSJNtGJMPVx7XokXLRSyIj3KicaCwKETgbChTO4foYjZG20FjQaHtocWg9DEuX96xz/5kz+Z8sx98ks6Tqik5/mDSIkXPzg0Q7ClQ+COZ2CJgKYDQy876zws9xxLzzf3vG6IA60AgQWB4tefoeVQDtJwRxvgnhMcft0/OINhcz6zefF4OHPf8+b30RzAxOMnzxz4RcBDcGhg3gY8HjoCmEG9jsgTZaM9IqgxDboQxS/PEKzuqGfu00nBebl4B77/+7//BJkRjryczYFfHJYQ2qqnn27qTzYOv8eZtkrHA63NHfmhfUDqxMvhnRPGW+kYOoFmMeN9oROE1u+Y8ZyyepsmXo+f9G655ZZEzPjxMDwnX3TAIMgsPmCMlkg87p96pXzu+O0HYXF0En73d3/Xvu7rvi61X/KFQ95Qj94GPC2eQaR0KLAauaPTS8fICRf/3mbQ5sGMNux583BZ/OP6zG26IXUdvTifFgEaFC8pjZ6Xk8b8t3/7t/aWt7wlmfZooDzHHw2TRgtB0mBx/OY5z/CLSRByQktbrSNOTIeQnzd48nc6RxjyT8/e84p/hBlCDWJzR35xaE6E8xcagY1fJzvC+oF/TJ0QKL1h/43JEBMVwhONCf/EjzaKGczxQ7ihvYEd90gbB15gibDyfEAgCBc6EsTnjp42pk03b3m98JwyZx3PvJx+Hz8QhY9Zgin1xn3SoaMAAeHIi9czz/iNX69nhCzmecxoWUdczXlpfs5vSA0C9glr3o7Is+NAxwecsnWPP7RmOhukky0ndcdv7+SQznIY0EYoKxq5jym6tov5EHyyaRLPmVy2zMulmQ2f9ct9/GfvUUYInjbBfc8LRAehNGPmdUJc1An1lY2Pjq0PpYAnZeUgHTqCxO9pEAfp0F4hN+4Tv5cJ3Hie9U+Y5Rx5IB3aFBYHNFlI2OPkOW0MIncMPG88oxzkY69M5DiIm/LzfuCf/GfbJH58jkE2f1ks8BPuzAjExKIzY/QsH97o0FAgC4S1O2/g/OYF4qVw7YtnHFnHMzQCGm/zM/xl48uG82vCQaC8RB7/cvHg318QzhASYXBZ/7xo3pNPD4//afaLNsCBcMV53FwTB4IfoQNh4hB03/u932v/+I//mEyAYIYARhAj5LN5oFdN3Iz90EHwiTz4xZyXdZAE9QFBQ8bkkzQZ8/qWb/mW5JW8kadml82zP8vmI2t68/ucOYjPwyOgMLVBODj343Fy5hljiPhF+LnzeP33cmc6CLSj5eL3clGfYON5Ih6uuY+f5jydLl1/Bq6QLctKWPv8m7/5m6mtM+FoiywVdLa8g+Nhlsv/SvfAFxL39wl/y8XjZYIY3PTucfKMclPvXHt42gB+l8PM/RCuGTOekR80VLQ0tELMwuQT0zYdK88PeeA6a3onvD/3d8bz2nzGr/vHLx0ilsgxVokJGkdc1B/vE/KEziEWFtpR1lEPTBD08oIVbQbrD87T4jrbZryTyX0c/sKdGwKxAf254XWKbxo4jS4rBLjnLxH3ObIvkz/zMw2al6fZnyfUHJ+Hyz5H0/GXkfvNftyvn3nuL1LWv4fLCvlsmKxfXlKEB71Z4iL//gJ6/JjMEAg4Xnq0SDRgNG8O1iQirNAW0ACIDywQCJgguc/EB/yibSJIMJsxhuS4Qfj0zlnEDonimGSCsIN0cVls0o3T/HEMvAxZnAjG/awfv0f53a8/92ecPb/4yzr8Om5+Hz/ZOMCE3x4//vy5n2lj1Jv/dj/cz5Y/+9zTaz5n/ZA2HZmf+ImfSBNoqA+0Yiay0DFivI/xSfw1l6M5Xv/t8dM2mDGKyRhh7/fdn5/9Ppowwx9ODDznGe3fr9OF/jhm2Tx5PO4HPLOYgRX5+ed//ufULukgk0esRVvUaaBTyPhnc5z+vnj8zWdPr/mMPw6v14997GOJtJljQF6aMYVE6VDSAeU6mw/ipv17B9jbGfG4a84X6fLc7+Mve+3h4nx6BE52iU/vL55mEPCGxtkPHnOdbdi8XAhzhMRyz7lHb5GGv1Jjz8bHi+Mvh6fF2V9Cz0s2TEr4+B+eNzsP03yf383+s79dS2N8cKX0PE6EgQsaN8lCqBAxSxSYzEL5v/VbvzWVhfhICwHGgVkLzQIi/eu//utkOoO8wYJwCDkm7iBk6Ykz2QmTHGQMeTs+np/msp0OAw/jZV+urMQPHj5Wh1/35+GoZ7Q6r2e/nz37NXhlNQ1IgrIQh+e9OX7aRtY06/nO+iN+T6P57PH6ff/t9Ub6aKAc5A+sIRQmpzChBmsI9z0c6XIQn+chPdQfTwNNlvghZifR5fy6f2YiYzbN+s3Gz7X7pT7A2i0hzf7ISzNm/MZSAt5MgENLzeYHzdTj9/j8N/H5Pa6zjvvLPfN7pMHEIMZwmRiEPPB262Gd8BjjzFq+sun4NWGoL8pxOtlDe6FNeRk9Py5jlntvPI04n0QgJhYdb+DeWM90Pgnd8leExyFQeJHppSMk3NFAOWi4vChoWfT03SFUaNyeD/x6nJhxvIG7f87+3O952OazP/dzc7gz3ee5h4HcMHMhWHBoiZAiZxx5ZVwTYkGY7dVYja9pRVi5kMAc++53vzuN33Af3BCWmM5Iy/1CQJApY0VomjgwBA+EMfnBpItZlSUHkGzWnQ4LFyL4d3y9nH7OxsU19z0cHaUt0lS8nj1fxOV+mGCC5uYkipADq2y+PG20IbD0sAhVypgdU8WvhyU/aEkIzOcq+EjT4yUu6pFykR554uA5RMaMc/DGD477lI82TFh++32PkzNpUM8QIhO3mJxH3gnHfdLKHtwnDWYT45+OGP6Wc8RNWDBjnN3bCn657/ngN1YQ7/jwG9xpp0zowSpCG6W8tEGcD7ukH2f5xzHIevd7nMGLoQdmS7MjGu3Y0/P8UlbaC7IEky3O68LP3IOE6WiCAQSKf94ld9n4uOem6uY2A94cWaz8Os4nFSfH4tkDRY54nJdFAOCyjpeARtvs3B8mTRo3M069cXKm4fJCoIkxIcAd44MQKz1E988LRM+fpR8IEI+bMKTd/BJ4XCudCdOcZ49zpfJ4Opzxy8sOAWKSxbm2xBnn6+foSOBYL8kkLF5kSIeykRYOEx2aDPeIm3EhpveTlvv1dJkxmx2DIj7iwfSLMGJGIj11FrsjfDxcSmiFP/hxR3rulsOC/HGAeTYcJmUEGHVHOK87riEhTKBZYoeEfH2h+ydtOg+f0dIh8HBHWsykpP7piGTjpm0QhmUedDSyjvwRlvwu50g36/DveHpYOkq/8zu/k2YqkxYH6eMgIOKGsHCkRTuFiOgI8nsl53li5ixtmrZBm/f4vYz8ps4hGczzzNDGeXjyyZF1lIF7+GUGOR0Mj48yE6dj5u2T8OSXsK7x44+DeoFAmRSHf0/bw2TLmX3G8+Uwdv/ETbysO2aZG1o+ztu859nxpo1hZUFmeN78TIcADP39Ix5kD0vA6Fx6XOSH+KkfyoN/x48z5SdP3jnmXnOZiDvcSQTSZgsAFcfZY0Cj4kVAYPCSsu4K0w8NkPtg6Q5hjsP0BfHQ6JnwgFCl0aOFMc7hmhnxMHkAwQuh0ivlGiFJeAQKLwcvAunQ06YHzRdj3K1Ul55v4qMXysw9HPd5ucgDG1Ij7Mk35cFRJgQ+LyOCifjxT0+XtbJoCWgVhEczQWNAa2I9HWRA/JihIEY0MuLmHkKYsjIWhFaDH+KlnKx75AUnPPFSbuKlM/LOd74zEQZxkBfyB24sqWFslGUwnn+vj+UwITzPERjkbcuWLUmAQtLkDdKCvLxuPS3CYX5DO2TcjPwxQQMyId+kTd4RVMyohACYKIIJ24mdOCFclsZQbjSKvSIfygiWdCzoGBAnYbwtMJELAqb+0WSpF9oWWi5x0CFjViiO+CFd2kvWUWY0P9YXM4nLCZtyfEYETnjqAYeVBL8IXOqF+7Rf8kpnB3xoe+SRZ3SqfuVXfiUtqyCe7DvRXAeEgfiZoEe9kTbvB2EgMt4v2gf4ge93f/d3n9AQKQMHHVH8gi31giMdnGNG+6JOHDPaMfeoOzBjSII6hyBpZ7wDlJX80YmgE8w9rCCEpZPmGNM5BDfi8LJ6u+K9oFx0FCgXjt8QGmUmLTaCoBNBnLRDyBDS5+AdhdBw+GGogjJAukxIJE7aGO8U681ZD8r7Sb7JA2UmLeqJsJSPuqPNYCXi/aWdMZbKc3ADj9/6rd9K9Uu7AWPiaq67+H2SL2JiUWqi5/bHX1YEAEKIhu3On/HbSYh1gjRoCBdBgx/OkAxCj0aP42VEoDGLFU3OF9AjkFlkz0uAkMo2bOKlQROnHymy0/whDGl6/vDq14wvNms0PEewQ/ZePl42hNSP//iPp3IxlgQO3Idc3ve+96UXkzLhEFIs+IeYEAKUhWec2bCfuP3lBxP2SsUv2iXCgs4EAv1Hf/RHT8Tr5SYe4me2L8SCcPB8+jllYpk/PL/tttuSQANv8s46QTBnXLW5bsGJMOQXTHD8Ju8IS+5B5mgA5A/3Hd/xHWnc1svHmfi5Tz2DB+kg8GgrCDRIi9840qTOmVQFgdKOeMZB2iy1goiZzexpEg5BCyb4wfmZa9KD/Fy4gyHpvuc970kdBDR6NksHVzol/GYyEeGIhzyRV4ieaw7aNG2CDhHlw+E3m266efwPeSVdykS9oslT3+DHM3ACT9JnCQ/tEv888zhJjw4Jzu/x3PPDhDV/9xwz/IIZYVlOArY4zkxoo+PCzkKUlbhod9/1Xd+VzMNosHQq3IG7p8s9rv038ZBvHPkhLtqmv1+0VdoRuLGenHD4cUd+6CAwkY52CR5f8zVfkzCB2MHJ805doamSjqfPNZ9uBEP8U4dgQPq0VSxJkDDvIM7zCHl6xyobn+crzqcikJPQW97Wc6q/+LUCAt7oveFmvfHMXwxeFAiGniD3ecG4h1DAuV+uXTgyKYJGfDq/p0ufuJZzpwuTzUc27HJhKJsLYfJKWcg7+cVRXsJ5nDzD4RcBwm9eVgSB45A86A/PKDt+iQeh7PFmBanjSxrs2IJ2QY/c0/b4TnemHogHgUJeSNvLSzieNTt/7un72euUfOMHgUV8TqDZcNwnHG2C5+7XscCvx8s9sCZ/YMfBc3BB2GPio/xsXAEZUn4XsMTR7Dwf3Pfn3CP/xA32jgPxeLpghKMuyA/+OLJ5TR70x+P13yud8edpgQNpUF7uIeDJE2nwjHxk4/VyZO+RDvfPhBkaGVouE6PQLMHM80Ee/LeTHvERr5fX02lOO1tOx8XvZfPbfN3sNxu/p4Efb2O0G5y3m+XamPunLC57mt+55nT5jfM004/4syICDam24uN4sBICNLDmxtfs1xuhCwAav/eaafBoV8TRHA8Nnnu8HJzd73JC0dNoTvt0v08Xxp9xJm13ft9/c+a5lwFhx2/8kX/OzfnlPg6/LpgomwsnT4+wxEt47xE3x+uCDEzxh5kX07Zv3Yd/jy8lepo/nj75IpwfpwmS/Phz/OOWq2fuOUaOj4fzenbslvNL3Ah2NFvIDe0P0uTAeRkxe6JZoTlSHpznK/1o+pN9xjXxkD6HEwnXOOqIg/vEj1sur9zPxsvvs3GkTZ4JS116u+f3Sul4vMulxz3yismdeNHGlsMMUzpmW0yljpmf8U8Hhbi8PTvWfiYPnj7n5vv89ufN+V3ufvO95eIHD+qCdk++cafDKOs/K3soJ/nzPGbzv1w+UkLxZ1kEVh75X9Z73HQEsi+M31vpjF+EAw2axusvKveWi8fvOcEQL35fTOd5OFOaXgbPK2cvb3NY7nO435VwyIZ3vJrjdTwZ08G8xpgxpmjMa4Q5F7xID0ca1NFqnecbIeT55toxao43my7+T+eXMU9MjJg8EerklTNjt5h32VAegoU8iMfjbk5zud/ulzOHC173m73v5cLPSuXycOdyJg2vM28fnHGrTQczLB+KwETsmJF/TLKMcYIbBAshOWZe1mwePG+cV3LNz5p/N4c70/OV/BMOPMiv18Xp2o37P5PsOdf8NOfv5fw7zLkv59q/QMvuQgPByCbiTO6APL/ne74nja8hXC4moUB5IUfKyUQutEG0EDRTJt8gVFmWwVjyxVb21TbRLGZ8XQVzbTNmjJcyJhmYrRblCAcCOZmanj1gEtgEAhcAAhAlMyDRRFkTmDVlXgDZP+csMgbJRBNmbTJmR/kZm8SMi0mYTkW4UxEAM7R12gljgnQ4GCJgMlNgdipW8Wt1CASJrg63CHWeIICGBplgfuO4mDTQZojRrjA9cmQdmhTmuou57Nnynst1YHYuaIXf1SCQk0koNNHVIBdhzgsEEJLuXg4kki2vl5vzy6Hs2fKey3Vgdi5ohd9zRSBm554rYuH/vELg5UYeL7fyPh+NLTB7PlCMOFZC4MWd8rlSLuJ+IBAIBAKBQCBwASIQOxZdgJUWWQ4EAoFAIBA4PxAITfT8qIfIRSAQCAQCgcAFiEBoohdgpUWWA4FAIBAIBM4PBEITPT/qIXIRCAQCgUAgcAEiECR6AVZaZDkQCAQCgUDg/EAgzLnnRz1ELgKBQCAQCAQuQASCRC/ASossBwKBQCAQCJwfCIQ59/yoh8hFIBAIBAKBwAWIQJDoBVhpkeVAIBAIBAKB8wOBMOeeH/UQuQgEAoFAIBC4ABEIEr0AKy2yHAgEAoFAIHB+IBDm3POjHiIXgUAgEAgEAhcgAqGJXoCVFlkOBAKBQCAQOD8QCE30/KiHyEUgEAgEAoHABYhAaKIXYKVFlgOBQCAQCATODwSCRM+PeohcBAKBQCAQCFyACIQ59wKstMhyIBAIBAKBwPmBQGii50c9RC4CgUAgEAgELkAEQhO9ACstshwIBAKBQCBwfiAQmuj5UQ+Ri0AgEAgEAoELEIEg0Quw0iLLgUAgEAgEAucHAkGi50c9RC5ehgjU6/VTSp3L5U75fbY/muNpDrfaeJvjid+BQCDwbASCRJ+NSdwJBF4wBLKEl72G6Pz32ZCe++WcvW7OuMe10rnZf/wOBAKBc0OgeG7ew3cgEAisBoEs0fl1Nh7uOdH5/ebf3PewnDlqtVo6+28/45fwHkc+nz/x2+/7Mz8TJlwgEAicGwKhiZ4bXuE7EDhnBCA2HISHc6Ljdi7HswbZObklTyv88bDE5Ue1WrVqld/VE6RKcI+vUCgYJJo9eNZMrCskGbcDgUDgNAgEiZ4GnHgUCDxXBJz0OLvW2CA/yLOhfeZykFxdR+EE8S2nHXpckCZxVCqVdJTLZVta4qgcJ9IGaRMHBOpHsVg0P/yeE6sTLuVdLu3nikOEDwQuVgSCRC/Wmo1yveQIOOm5xujEx7leRytlIlHBii1HLV8fsEK9XUTa0BCbM5+NCxJdWloyyHNxcdEWFhZ0LlmpXLKKiBStlKgLWgVeFIkWW1qspaijtdVajx8t3NMBmUKszWQaRNpcA/E7EFgegSDR5XGJu4HAc0LANU8nUCe+hukVjRFtscU6up4S6XVbrbrGci0V3SukdF0zdDLz+DweyHN+ft5mZ2dtRsfs7IwtLsyLWEtScCsi6ZyVK9JwCy2JODva26y7q806Otqtvb3d2toaZ0g1S6hBps+p2iPwyxCBmFj0Mqz0KPILh4BrjJwhPEgUrdGPSmXJqpWaVWsF6x98zHL5RSvNXyGig1jRCE/NG/HgnIwx4aKBzs8v2MzMtI1PzNrS7E7bMvQVy/ehgC7Jb1Ua6ZDS6LKZ+YJNL7TZwkyHHZzstta2buvr7bKurg7r7OwUoXYmYnUNFa0U7bSZTMmDEzrX4QKBQKCBQGii0RICgecBASc7zk54rjWWSqVEfGiJS0siuErd1m7YY22d+23i2BusmK9avYUlLoUTk44gLI+T7BEnBAoZY75F85yamrKjR47ZcPEeG+oZtXquQybcuh0dz1l3x4D1dCyISBtm44nZqu0f7bCJuV47cKDP2jt7bKCvx3p6ukSmXSLSjnS0tbUlzXQ5MiU/Lwciddz97M0jW/bstT+P88sTgVWRaLZxZV/2aFgvz0b0cil1tt1nr7383OPIEh5mV0i0VFrUuOWSNMQlu2Tzfusf2GtHD99qi/Ot1tWN9niSQD0Of5+ID0KGRIkrmXFnZmxsfMpKk09Zy7p9VrONMglL661U7eCRml15aUHm3LzV6lraoglMRyfmrKerxQZ6xm1qbtqOTXXZwYP91tbeb2uGuq1X2mmDTNFMO2TubZBpdgIS+fHDy3yxnL0+vQ4pV/bay+110ny+WHCIcpw7AmdNojQoGo6berj2hsc1Lzq9ZG9c556VCBEInD8IeNv2MznLXmdz6vc5O9nxLkCgjWPe5mbL0goXbduVh2zN2iM2Ob7Rxo8NikAZB23JRpfS8feLOJ2UMeM2tNBZm5iatrmpI1YsP2D5oiYk5Woa/6zbkXGNlS62WntbIYVrKRbs2Pis7i/Y1ssGlL+a9XVXrbdz2ubLkzZdbpdmut46Ovtt7Zoe6+7pfpZm6lpp9t0nwxfLuw7G2QO8HXfKyTXmbcrbfObZxYIDZQ137gickUS9ATFmQuOam5tLkxmmp6dT4+IF4+UeHBy0devWJSI992xEiEDg/ECA9o7j7Ef2d3p4/I/79ecQqJtwIc/GrNl5m55eVFwLds31Iza4ZsZKix126MA6JQIRcZzcCIE4nUCJl3fOifmEFipT7tjEjPVUd9pUZa+1d1yjMOQ3Z/tG5jQjt0tm3ZzCKW7FsevAMc3A7RMB5JIpGX+lslmXtNLrNi/a4aOj9tSuDbZ771obGOi34aEekXt3eq/RSpmIxPvvZOpEQj4vZALx+uMMzn6g8Xtden1QTi+/dyYuFhxoZ+FWj8CKE4u88WDW4eXdu3evHTlyJDWunp6eNG7CM14wGtWuXbvS8+3btyc/q89ShAwEXjwEsoI0e41A5bcf/pucuT/PJb95niU7CHRhYU7jlovSEGfthpuOWl9/yeq1nB0+tMZmpzttcAjLzsnlJcSXJSVPO0vM8/NzNjk1a5W5I9bd+ojtKckM2w4Jm80tVGz3yKzdesVm5VHzfLXGZWp20XYePGo3X7tBaTc6CAj/Y+OTtmVwTuE6bf3wrIhzhx08fMye2r3Rdu1Za2uH+6y/f1ETkFwzbczmhUicTJxE/ex4nO9nrz/HN1t3WBBQCjiDe9rAQrC1qNzMYs5OwAIHsHSXrTu/F+eLH4FnaaI0LBoDDYYeGeR46NAhTUDosW3btmnspDe9RDQeb4T437Jliz388MP26KOP2g033JAaYjSqi78BXWgldAFKvr39Zq8RqNmjIUhPNe81ytwgJK7df0XjkaXSko6FdIzLhNrWNmM33TImMymzb3OaUdtuB/cPiJzyIrmWE4TkWk0j7kbeiNcnE7kWOqflLGMT07a+ZafNlw5bLT9sXe0NjfDI2KJNzFStT0tZRP9J89x76JgtLtWtq6MtTTIqFHIaU63YscmjdutAu8ZR61apMhvXbNMl09bRdsAOjay3HfuvsqnpYVu3dlHvMhOjulNeLnSt1OsfbLnOYgx5ugl+SdfzC1p3W61Ye6tM41p61NXZ0Mp9zJjwTqTIOj+8DuP88kCg6I2JBsCLDHlyD+KEQLtl1rnxxhsTiXqDo7FlHY2JsPi75557NGHhoG3cuDGINAtSXL/oCLjAJGG/5tx87e8AhJk93KzXeI7Q9W37iJE5ASLQqkykIqIG2Zb17swnQTw+vqQlLDN2y21TGmPkuSb5aOnJnp1DErZYcBrrM7HicGQ7nJ5H4iQPvG9otnNzszY+OWu2OGJDA4/ZfYc7rac7b60tBU0oqtuugzMS+Gyo0KIxUpGlJjI9susZG+pbkzZdYKYuY6Q7nzlqPX3SMjt7pXHVlHY95WH33lnrbBuzG645ZOuGD9jjO2+w3Xs2SStdtMEByLRHZelMh088chLh/U+oHCeT9OM8++O4cqZOs/hCnkzYAme0/dHx6TRr+vbremxoqM++/MikHZyYStfUB3KRONBMkZneCQoiPc8q/UXITpFGgKNh0dvFZLtv377UKK677ro01smLTONaqYFwnwaFv2uvvdYeeeQRW7NmzYl400X8CQReYARow+78mvPpDhemLlBpw5jy0jmt6Wys9SyXJXg1xsggI+OMTOIpFKqa3VrSsSBBOieSWdL4Z9HGx1ttYLBkN4tA8/mKTU1qaYu0uYMHN9nMtJaWDCB4G8IXEnICJZ/kB+fvk09Q8o0VxiTIN7fvEGlO2yFptbdvKIhE8zY6UbJ9R+e01EXLV1oxM+bswJEJOzh6yO7cvg07cbo3O1+2x3Ydsm95Ry+3lE5dk5DyNnJ00fYfOGR33NJii6UeG+ybsDtv/rztH7ncvrrjWpuUVrpxPRopxLuUiBSNDAKhDD5O6DLCy5QK8xL/ybYFcHVsqWPX8MEX8pwQvoePjtvWja32qlvWaxlQi9W1HeMdN623//rUE3ZQVoZ1a9ekODxeitfcmXiJixzJv4gIFJ944omUXKOnO5emt2O2hQRpJM3k6S95cx55aeihYfbt6+uz/fv329atW1MjpZeWbXDNYeN3IPBcEMi2La6bD9os91yAcm5ojif3n3XypA2zD2253JhcssS5VtJ4ZsU6NJO2rW1RuwwxVjiv6wXFK5Kc6rDRoz2NY1Tm1P59avsauxwra0kLS1yKmgF7pYh5nTqlbdJeTi4f4b3x/IKBv1/kD7JyIT/LkhZNJiqUD9ravsdtx7FOK1eXrLcbLUgTig5rBrA0z83D7dYizbakfD++56CEe5uWtnQleNFOn9x1VBsulGz9unblp6bnaKxV+9yXDtmt2+vSVJl0pI5EpV3PFm3j8IhdOnSdPbpz0nbsnrMN64ZsaLAvvevkz02bkEgzkTihUr6X0jm+nB3XbOcEE/mstPxDI6O2VJq11946bNddNazyFISRrAFlNPE+e8trr7B//vjD6kxVRaSNzo6Xi7jpUHD2cvuzOF/cCBRpVFT++vXrEwFirqEhIExwNAgc907n/DmN87LLLrPHHnvMLrnkkhTen50ufDwLBE6HQLYN+fVyZ+5lSZP23XxAmNzjnCVP2nyZMU3OZZn1FsdETIds85Z91jfUoXdkSGObMstKI52ebrd9z/Rqlm2PNjxo1YxbWWPqkzY296DduWnUqkvX6J2pyATba888c4Xeg0FN1GFiyrMJ1PPrhOokT35cA53RjNzxiQm7im0C62U7ONVqbdKG+3tabEEkuHdkXiZb09IV1ngWbc+BMdt7ZETjowP63ZZm645PztkDjx+yu27XZKEOzMtoUDm79/5jIvsZaZrSMmUWRtduba1JIxPJ1u+wa7cN2vBAydbuXLQHnj6iscKyrVvTmHzjWJIG2Lt52s273HMZcrr6faGekb63Ceoc+QSuKAdsmTgv8hybmLQDGjvevK5gr3nDVk206hYOLNmrpg4KHwdY0A5Rl2wcsq9/w7Ui0kfS/Zw6L1nC5JqOhLuXstyehzi/8AgUMdl6I+PlpYFlGz7X5+J4qRgv4Dh8+LBdeumlKc5oUOeCYvh1BLz9cW6+9nucnYg4OwllSRLhyZZ7fOmkcb9xjdaZJgMtalKJTHWL5Qkdh2yuvMtKS/fZ9mtzMs0OprHIicmrrK3lVmmcwyLQVpufRYiWtHXftNVyIzZb+ZLGOndonPKNMvfKnHpgjQj0Ut3rknWmMZEIksGRR/LB2QmH+14W15TS3rjTU3ZkdMo6KvtsXfcO2zeh7fykLbbLjNsnTfTI2IKNTpekReY1U1cTiDRG++QzI7ZULWvSUbcmC7E8Tfd2H9Y2gCXbunnwODnkbOfuSfv8PYftXW/rSoRaKtVFunk7OjqveRHX22tv22BlYVfTspjbru8Vmc7YZ+57xvbsX2cb1opIJS/IK51vtNLzaSmMtw9vD+TzhGavTsmMlukdOjwmgpyy1902ZDdduz6NGZfKVdWrTPYiSRybVWj6VWonV2xdZ2974zX27594PHUYkGvZ8VD8Z4mU3+EubgSK9MjcZYmOBrga50KAiUU7d+60DRs2pGhWG99q8hBhLmwEvK1wbj4QiNzj3Hy4xnmSPNEoG5pH0jLTtX6LMBu/mY2p3YSWpq2aG7VybZ9Vak/aUm1Ey0E67bYbt9rGDUVpLEUbPbbdDjyzXhsktErAzoloZkSeCFeZdFt2S3J+XtrLoG1bt9UKxYo98USP7d49JPJEO6EcJ+cNIMjJK3lIApjqkjD2svozJrsg6MfGJ7Q5w6jdvObJVLGHphpjmX2djEXmbe+h6XSfvYmG+rptTBrnzkMjIlnthtTRpTHPFhs5NmVP7Dlml21ot+E1jGPm7fCRefvkZw9pVm5RWmhRpF4XCZo03prd/8igvekVV6WZqSV1PJiwdPDIlM1M7rbXXrNoTx6Ysx0HLrE1GvsdTuZvkak6BZ3HidTHSimfk0yjmA1iShl+Af84lpy9PYAn69xnZBqfnJy0/Vr6s7a/Zm977VaZqXvSnsZltE8YFNdQyhOhVjVLF4ep+7qrL1OHa8n+93O7EmGyTKl5TNjLnJWpKYL4c9EhcNL2oKLR4J4Ph3BgXJSGdPSoGuratam3Gg3q+UD34ovD2132zHUzYUIu3EMoOmFmzy4s0TicJEsizAUJz9Ki1m2WpmyxMmq1rkktDZFmWpCmNrhoS1N7bWp8tz4Zpkk++bUin822/ZpW6+nM2aNfabenHx+20ZEeTSASmfSO6WsrOZtdyllb66R19j5uueIh5Wu9yKqoWa01e+zRtZqF22rr1mtMtNoiDaaseBvb+i1JG/axQ96HxjuB0Na7p/81zQCuahwO7S+ZctGWjk5Yd+VJG2Sv3fkuG5uXPVn+Bno7JMyrmlC0YK0yy7LzUavMiU/vO2wLGsdrE1H2doscpJk+tlPatcy+11/daQMyK8/NVdI46Oh42b7uDdo3V2tNlbqWtRTsM/fm7MbLr7ONa/tEjFURaIvtkGb72BMP2k1bWeLWats3H9Ekpnl77OBGe2ZhUbsdafauOgdlWaAaG9trbDYz6QiS8ff/ZLlfmLZM2/GD9uEa6CwEKq1+bGxCE4gm7K6b+mz71UOamKUNY0SeIJi0z6wY1HXKt8afaXt0WrBm3HrjNrWpit37lRGVs0GiXkb8U8eckYHhLm4EnrVO9PkorgtAxkSfeeYZGx4eft4I+vnIX8Tx0iNAG8Flz95u/IzQQgg6aSIMuW6cZY7VtRNnOku4LUnbLHFIw1xYnBPJTGqd5BFpmQc1lrhLgnC/tfZ1Wb5Hi+etzdav7TQt7LLp0Sts7IDIVoSwXpNzRka67Z++0mtP68snHSKdjTeKuLvNZjXwWBdh1bUsZOjoMWs3mVFza6XN1m3TxiVprNvsgS93qc3P2sKsyigFpi4iWhLBLIhUGhqL1mWmXYowFTYINKFxvONAWcrS7iDRiel5s4V9IvSHrFTpsqMyIZfZqF6E19VetJFRjd3K/Fgs1Gywu0/5qNjT+w9Zh8Ze0Z4GenukQU5q4tGYtUpj2nIZS2DydveXR2znnmmZZFvtUmnbaMtj43n70oMtGlddY9dfcWlSxPge6f2P7rDP3/d5e9sdV8g03ZYIp1Va7obBWZm+d9nu0ZK0ukVt2FC2/rSmtHyKeRcypdyNsp/cnYn6TwTFxfPkaDt+0H68QwWWaPWTk1OaQHTEXn19xW68+hLtSFFUO9IyH6Wf6qLRLJ+VG9kR1HaEM/WvNJhwdMdtl9vo5LTtOzSqDtXJsW7XQp1An+8yPitzceMlReAFIVFKhCYwNDSUlsugjUKkNOhoUC9pfb+kiSN8cNkz1wg7P2eJ0wmTdsPBR6dpVxAlB5OAGhonz2Wirei5ZsOWl6asUj+qY7/GKvdKOh6VJihtIbfGCrVNVtcylJwm1qzXjkGtGrssaaP2Qp9Ip9Rv+w4O2P2HBuwe+bGNRdu0LafxRo1H9nba0BotuueD14hbjTEu5rtsYnGjdVTnrLd93MoLQ3bPp9tFmtM2JU13jh2K6rPWok+RtUhYt0kbbZV2yIQUpHZNSoqURPnRcfwfmwrVUTSlvS7OL2pNqLbmG/iitWvcdVJLZY5NSgPWvyW0HB2HxkqNNaCKpLOtU2Q5YeOaLNMh4mrv6FFe89JC96dzhzZl2Lq503bsmrJ7Hzwsk3SLTLl5bUCflwnX7MsPd9n0XM3eftdVmrCkcde5RZHqV+0T937c3v3aV2n8tVOatZb1aCz2mPJyz+NTtvXStXbr5ZO2V7ODnzmyYNOzA7Z2SJ0RzdJngwbGSZs3aMhqbN4Wni+5QHzelrz9JAKd0XdXVY8HRsbssp6DduXmy9TJ0Q5spi/YaPIV5EjbwzU6NukydST4ncsxQQ2Tri8JxGPVbr11je3et1P4Teqj5yc/dA6B+tiok2kjxvh7sSHwgpGoN+bNmzenTRti3ejF1nTOvjwuKL1N+Bmh5YebZV3wNTQIjVeKNDGHYiosaQcZNMz5kj5GXRJRLenzXy2S/jlpqPWSSGnWpsf0ZZOZ3dbari3trEPCr08zUy+TQJM3fXIsp5mtdc207O7ptzF9Luypw212aLbNRrRpO/PRxyo9NiJy3LpGpmMR0JI+dJ3XxJPRcX3pRJsmtLQgpEVyIrCcNjmQImozVQ1dLLXYnq9qN6Jpxb3Z7ICOBZk7ZxXvnLTZouRz25LZtt6adQ40BP2cZvQ+IwKXUpqENUSaq7bKBNhjrRpDtXq7rREpTS68xXpr2v1oVtpsq8Yta6PWntO4nsb2FmSublW4mja3r2l9577RMetUtqrVkvX0r9X6z2k7oh2OKvpA9zXXtCft/VOfPyjNqailO2bXXsmYr9l9D/fY2NSSbd+6xS7ftFHjqjP2v1+4x77w1f+zt9/+artkuJdURKIyV2upyxceH7f1Wuoy3N+ltKSFr1sUPiO2R6blPfvmRcwsCyk1tg3UEhvGSpnBi1ZK/WeJ9Oxb0ul9ejujTXk78nHQ2Vl9Nm5s2grzu+3mW6R5t5DvimYfT+tbq7ImdAzJXN8hzBsduiyRkiokX5VJl7qnA8TzRc3gHpYl4/pr++wrj4xrdUOXtHyWMLWeonWTn+erk3B6BOLpS4HAC0aiFAYtYWBgIL04rBvdtGlT2s0lemYvRVW/eGm6MMueueZw0uTsxAlhIvSSlonGCWEeP5j4s6BF8CyEnyppLKtyzMZqB2yyvkdTerQWWdpVV6vMq/lWq8x32LQ0pOpSh4hWWliSeFLrchqTTMJRRjn5qxV6NDa6XsSoJR0iyk5NEGoX8XRKL1kSoRVktiuLGGpSCesi0JxMpXP6pNjkbN6GB1ETkaLaqUhbwbUqDUyh49UuO6ZZsO3rajbTr6+pDGvrTMXRonl7XdI8Fdy0Db3N6ePb7DCU0xaAssImMk4TdolTJJUTKdY7pB1Lk8GEuKOl0+6WhswzqZ5av91rncrXgMY8h/KTVhwqSC+tiaAX7Jn5ScU3mrTQlsqMJlBp287DWhcK/Yn81vTn7IGHjmhNpNg8V7QrtzRm4t79YLe2CzQbFAm8Yvu12kN31P71k5+03Yeftldccatt3zYs/3Vt3jBv9z01ZXuPaYMJmbS3bx1SB0XvuUzZRcW3pg8z54hNaux1XHsGT8/MaeJRn8ZgNbZ6fKx0pRm8tI3nQjTevjj7OKgTaPp4uXYgmh7X8p7Ne21o7evVDmFDFUvWgRZ1rCrzh9VuBqy9q1dlYvkPWulJKlV1qwoqqQ2Tz9SO1e3i+sbt6+yxx59MGzXQUeBw0zVpIO9C5oHExeleUBKlQSMcr7jiCnvwwQeTeZdeGo38ubwwF2dVXNiloq5x2TPXHAgcztQ717QJ1xQaGmdjtuyivrlZxowJcWpsck7aw+z8hM2I6Ea1QcDR8iesVN8pIdchod0nAttk1bJ25+GD1pJ5C8e07Z42NihKW0uDkSKPhmYhzSzfbtVWDWrKFDmb0/plsdrQ0rzVZKJkY3aJ8LSMY0n3K7ouIDUXZmValUlVly2i29H5bq27LEtInog9lZl1o629OetRHmamFVa7G7WJWMQ7Mteq7CJnqylf0oQr2uUoJ60Q7bNclpAWgecZYyUmEV1NZup8myaw5MTqwqyrpg1M9DC9LwXoUHgWtaxF46J75aW9v0OziRVWEU5OHrZ+LTXpUoYHK+rAzmonJW0SUSi1yxxds13H5q0sIAd8AABAAElEQVSkzevbZMKuSasaHuy2R5/q1Sb1TIxZtNuvu0Wa65j90yf+Q+OsC7ZpeLO96jqWuNTsoacn7KE9c6m87fpy22ZNOurXxCY00zbtLVvSxJy7H8IC0Geve+VmEbV2P9Ms38OT7EFb1taBvqF7oy2kiI7/oWzPRR54O/O25m0qTczSUpZpfTbu8OiEXdv7oF22aavaS5fqtTG0JIiVNqZX1VJlzOb1xZ32rqGGxqyKTfWiDg75q4tEacNMJKrWFF51WakI68FOu+XmIbv7nklNqOyR+frkUh/Ik7C0++dSxixecX1+IZD2zn0hs0SDZkxk69ataYP6V7ziFUmg0uDDXfgIZOvRhZmTJmcOBA9HM3GibbK5eVpmcpw45/Xlk+mZUZteOGpS/KzcqZnd3b020yWTm11txZK+iVk7JMmX6EQapeyp0iaWFqXlaZJNLi0nEa5okSLEakH6pcYK6y1t0ga0DrrWZYuFfutrGRdJVm2+KILTrNqc2iNNEtNkDlKTqa+2qKUjjF/qQU6kVNI3Osc1VrphjcbGJHjrMk1KMiZBm9czGQNthnypzOROA7INIcxSGCWDTbdMvvgn4iuJROto0fwjntTJEIWj9ZCsCKqqtCWuUx4KLR1WkEDPK3CHNnLokiAvavavgic3MK/PE6o8NZX1aKHDxkXkre16KHWxJCIs5bSpyhaZMWeXrK86b3uPqsNQFoFo/HbdwEYbOTJqn33g01orqV2OOnrtlVdvkIZasU8/fMTGZjV6qPWjwLGkfYC3bpSFSeOI7MfLxKUvPPi0PbF3l73/e74nbUbR1dlma6vjVqgctun65bbvQEkTmKgTGP+ko808V9OutztvY1g0GuOgEKgmEh2btPXFp+yKSzS2PXC56vo4OSobCWudWYKUtMe6JqPNSDNtH9KYcqeQV93QMHTFN1trIlLZGFTukshY99XG0Gq3X79OH99g1u90mlRVKjVM106iEGiQ6Ml6v5iuTlni8kIUjIZDo2bdKN8gZV/dm2++OU0Ueb56Z41GfubcRyM+M0Zn4yOLtwswzk6apyNO2kLWVLuIxilT7azMplNzh2xmYb8tigTqvZdbvnu9DKZav9gu86MIK5fvtpx20qlXRIxLeyXXZq1U7Uga5II2fK9puUdBgq1ak3CXybbW1iFS0UQQSX54CZKaLWwQmSISISuZYzV5pyzNBM0QWZnkpZ7WFjVQKEHJ7E0VLBGdlFgbW2yxAZlJW7WTXi2N7ylilEYRVatYVN/H1gQn4hce2pw+sY40UNOYaV4kWpHWjCVRUWlNqnxpZii+cZAmWitEk2MGLpmR1pgEvS5VMJGvQuoehahASLqX04AvZVsS0aOVk3a7fndq7DenyUOEzytRBHpdk1/qQ+12bEHLXGZ3WmdR3xqtyvQ9WbVHRw9Iq2THspxtlAn2mZGqfWXvpMhFOyFpIhba+qy0yqsuHbINwz2qs7J99an9dvfDT+uj3/vtrXe9RebbXhUnl5aQPHLPv9jA0Ba7843b7eGnZXw/NGab1OHxdZVOnm7qPNf3s7nteSfNzbizM9NpHLRFm2dcd+mnrXPwHdryUO0FIkygJtjTH34CN22iRR2RyuIRm6v0a9JRv/Lb2LaUjfprdK7kT90hGTWEta7ZPrFPWvlttw3bF780qXW4jQ0oIHXeBfLZnN7JlOPqQkfgBTXnZsGhYV911VVpO0BMu3wujdlraKq4c2lkSbgcj5xw/jJ6HM3P8co9b9T8dr9chzs7BBzX7Pl0xLncGGdaeiLiROOcmdPi/QW0zn22sLRbpLfRCoPbrdC9UUShTQ1kTtP8W02mEVHk9XWhopajVCb0iDXI14joDlhFM29L823JlMtG4WV9kLqqSSyaOaI6Vj0jGRGOGveay623clFfIqmPp/qHFFowLWvCUr1bs2r5h4aptZz1pIXCrMIGAYv5TqSlubDSzrQetEsCVQnUpbmaCAaylAJr7bK9zkkrRrjWIVGcZnHi8i1acnG8HdYlrMsi+6QVkYYcS2Hq2IZ1Jv8QJObnFJloN69JKwhypH3yJ80oFZIMEi6lI5JsRCdzo/KnfPGbfC7B9ioHGlViAvwVyzZbH9Ns4Elbt7FLSWsIRq/kyOKUTUzNiFQ1OasuzUtmS+lh1q2vz1y9eU3SPj9592Pa6OGAZvL2W7+sBddeuUWm7lbt5rTPdj/6catradHEMW3Mv/h2e9VNg/bwU9O2X2bVosqGSTS7XpZ3mLZ0tu8lbdAP3msO2htyZkYzcadZD6pvpk6MH7PXXna/dlDboDXBW4QUtby8axCpnuqC7RBr1Qmbk3m3TeZdlrDkMceLgCsyBashKi7hKeiZJc2s5auuXGM7dsiSMjufPmoOqTORinLhKNvZlm/5HMbd8xGBF9ycmy00Gghfedm5c6fde++96bq/vz81MhoczgV0NpxfeyOk5+q9V14etkbjBeLMS5TMMqgbcsTLy8p3UNmKENMy9wgXDdqRPfPZ68UFV5Y8wZODDhFHw0z7bI2TyUGzC5rgMX/UZkpHRZz7xRO7pV2KONe8yYo9l0qrkhYKIUjYo2gtdOoPs1cQf1L/6pqoA/HkJIjbOrdqTLTLxg/vlIlRmwpoYowqHxmYiKYhLdHMRMY1TTZqW6trxhsb+0IjTvNokNKuStLY1Kh0SAOc0ywbmUuVyHFgFKE0EMZOWRKDNtqnMF2QFFJU6y5Tmrrs6FF6GkZVMvKva7QV7XHLGsO8xmrh1Zruya4rgazQ3KCgigltknMKrGdSCPVTZ4Vl3A6tuC7zNeSoCPVbfjkrm3XhXl9SZ4BJS2ij0o6KioMJUpin4d5FmY+ruqciou9Ke0bLlvaek7ZeFLZ10aye0SEoVxdszYZFFVujwYsaT9ZRkfa6oXfAnnjqkH3uoUdVtrqtHVyjSUSH7borbtauR2tsz66dtvORv9OyG2220H6Zzc/st7Fjx7R14pDdcGWnNn+o6JNis3oPT66r5D2kXfFO+zvpZ+XmFJdth94Gve35RzQgUHYkOnhkzG7ULk/D3fdbS+/3J/MsmuRKcZOQP1N2hBMTx7RcZ1aTjtow73aoK6OOUGVRFgdhqmrAnF3VTk91zbJuk0G/r0u7Q40v6n1oTJZDziCPcJTP859uxJ+LAoEXTRN1tBCwTDSCPB9//PFEbJh6ITnXKJsbmjc+XhonTbbumtJ4By8O/pn1x0EcEKWv0eI5gp3vozJOQjrMEmZXFYjXXxrPX5xPRcDrgjOHCy7qwckTHDmoWyYHYaJtaJx8m1GL3GWqnVk4ZjOL2kmnelTjfBprlPaTL15lxYFv18YHl0jjkvYogc6ED8gjr7GmksbqyggriApW0kxVMW7jWgSV1/N68UqZaK+0QueD+i1/cFAiJcI0HGOUc4WNmpWr5SNa+lHAvHo8VryzdUFxTvvm9valPFh5VgJUhMVDuTReKS1PCMivCEbkOjatzQ56FVIaFSZU4iNAW7fWcY7LhFdWfhOzEoOuRTiQaVX30FoKdc0SFjEWyasKnMYKlc8UhOiOp52Kzg//rfWuUGAat4Vo2aaujbRVpnQ0vBaIF02WMWL9K6qzgJk7kb5iYELQkkzG+FY0aQMHJssUlM9aGktmCYh+y7RZ6J6Rpj5tbeVWOzA7IdPtuHZqUl0sFmxhTh2SWpttv2qbHXxmhwj0H7VUZEBlV1rqiFCU8WOHrHL5lbrO2SZtLziij5XPatITWmtejM476B1f7xz7e8nZ26CiSs7bobdB2h6d57TPcJILItDD47Ymv8OuHH5UnZZbrXd4i4rqIB6PaMVTw1/Du9YSC4Nq+ZisEH3CfUDxafGT8F1ckD+RZ1Hzn4tqL5SVbSYruseuU+TP3xfKwbWXa8Wk48EFh8CLTqIgRINn6cttt92Wvl/KrkY0ODRFzB+QINPEaXC8ILwcvDgQIr950SBMiJgvxuDfX0Liz7503mhpwAh5vpf60EMPJSKNzfFBa3nnGHLmcGHggouOiRNnCeJUnc5rfHFBC/Tn5vVpKU1ymZ4fFXGO2Lwml1Q1xxZtik0PinWNm3XfZbm+TdKaJIwhGUxkONV54hAJqYUOEUPSlngggaXxzbomzORq0hSlmNWqmiW5dLUIVObIwhVWm30mEWtSzfCP2JYZd97WatyzNwm+vIgGs5yTCTGjebVKk17QOszJGY0jVmZTPkmTnYWYzJNm61YWRILKvwhiXLOA15Rb0nISxviYxITQLUgrbWtXZ09rQHOabJSsr9Ic0xpVKbs4xjJr2uhdpU5Fr/PlFEyxRJD4EHOhpgDL5dDOxJtMZsmpg4i2ythpIlI6DToIVteSlzTQmjoSInv5KShdTI1YnPP6XRFpKrgEvupUQRmTTWArOpbrVHWzqAyjWWnKkjQrjV+KCGt1vk9KZrQJuz6Ptvk6LVlZ1KjgXF3rcss2XN+oSV177cjI52X27FeZhYViVOapMpHoHr17r9T73WmP75i0Zw7W7dKNsgzMsw9xQzvzXY14t3ln/UgY6Lc7b4u0Q2+DroEyBjqh9a0TE6NWmHlCskFWDtM+x/1vkBbJR7SX10K9rXsanMmH54VORk2zpBdnDmtjjlHrXLNZxocua9H4NDs6JQwVhniq4CwrQJZAeXeIK9zFicBLQqJAiQDmRUEL5TNsjenoEr4iTK45aJT4QeOBKAf1NQ2WyLjGSTzeWPGz3MuAH3dop1u2bEnpPfzwwymNK6+88kRe3N/L+ewYcvYDjP1wcy0dEoQXx7y0uDmNA83JVLtoR7VOcK82QzggktBO6Zpo05aTlpk0EymTtXmb7ui3aueQNgVomBAbfHdSUCbTo8aclrSfqxSj4w5NDs1Py1QYr9TmCtXK7ZLTgyKQfZaX9lNTYrXZpySwIGSRjgR5pd5mcy0y40I2IouCNmbIK4FTSFQ+1cysXesbr+jdqNmql8qPJphoa7uCzMYQEdbdI1pSM6vwVtYXUkTkR7Tv7GBhVEQhE7RIpzHDM6eNHEQ8mkiU6zw+cxZi04QnCCMvotLwYuJMSqyUUzgV5qQwVlvOMfMTh6dEtxLCCp8cmZWfhhlX5w6Vh/CwKeOqmjyUY1yVKDjLxMvEoiWZjis6Ej2DAZ0S+UHAV0R8SyIFISjC0DPuaeYvS3uIiCSlZGnDC93XTN+CitY5qLj61eGtatOHjqNW7LxM+Ms6IO0UmHIyaRZyAzY1er8sE+8QaRfsE1/Yq00g1hifdsNcCsHQpiBR3k86w94hdiLl7A7/tEXed9pgQ1Y0NpUf1VrQ+ekj1rP0iOI6JK0aM/Wl0kK3gnKCw9u3x8eZ+J0wAbyRJ3W+tPPTvPI5r7F7zQzTF3KK2jRC+R1VJ279HZpIxnI9FVR1ShzA3ZBHioOOkvLq79By6ZJ2uAsfgZeMRIGOhsWLgIMkMbGuW7fuRMPjvr9IXOM/+xJxD5d9yRp3lv9LWIQ+L+vtt99u999/f9rbF/Ouk/ryIS/+u/6Sc/bDsUYwNJNnQ3jJLDcnc+2CPh+WH7Faz15b0GL7eYSnWKco0ytkhVmvIC2gQ1rhbNt6m+3SxKD6YxK0ZWsvahIRE12SCGoIy5rywFhozrVQbiOhEFQtmkmqOqwuXaGfm3TzeOcJDVOf/arlrrbazNMiPm1aoH9zecy40qn0XDEqT5DCqQ4ZvVTSkhFtkze8brNYhUFGJZjS1R+WxmgtZXt9jVU1WzNX3ap1oBp/1zKcydplVpX2XVPZchK0eZF/XV9x6ah0aMN7NEGZO6Wd5GWWXtIkniUR6oK00MKSTJmUh3JpfLSBAQnilHO1VcqbfinvDRENmakjIbOr2Ck9U8LiWPmXmTrho3BMphKlp/wfj0KEotE8kTDaKOFTnYo4a4yZStWF4Esi0Z6EGoQN2av+1OlJGq5SY9JRSTOgVQkp33QsyH+rTMbFrh4rak+Imoi3tqQx1AWRCIQ6L01YewoeOXTYHnvmqN39lWN25y1a5ysWpn0taRz35LrKU4nUyTSrxWUJdEG7SS2os83Hyse0tKRl6YBmJD+sepyWxqh2Uh3Rvsd3NLTQ1ElpkJ2TJgDR1iHkRe2zvKCx8NlprUuePGqLc9Jm1Qy6NGGqr38gyabGEBGYHbbJkbutd/0rraOzS79pU6qPVBXUHZrrqQTq71ej0uLvxYTAS0qiWSBpyGfrmknzXBooYUmLF/Omm26y++67L31xBlMy95vjPts8XUj+mvHy35w5Gr3pRo/fTWaueUKefE5qTuQ5OT2uJSYymbV/WuOCE6YJnjLrSeZK1am3bZVslzlUmlCbBHS7yGUh329H24clkxFmRRHvDo3pac1jy6WSQRI6+oemtliQBnmKFioBlf6LjDo0U3RKHa3atdKGJNBkOms4eWDyTpuEWk4fxBaRlrVt3qLMi/KlmJWmpBuaqAs84sRVlQe2COxSG6hp4k5N+9smSahnkFBV45vlpV5rzanTUNXaQc0ULnZoH9427bU7ssly09K0RbTEj8bLuGv+sMZMpcelLQklUNcUD2o3o3GbGdCGB518TYa4IUokLwIXEiTdk2mnxMmD4mTCFb8FaSLlnGb6pudqx8nEq+UttF38Qqpooum3vGP+JSnGdrWXhUwDRCK0lR64wC/qXagLAMEqWszPulVTOasa30vTYlQvJZG9+lN6TzTBSuOw8qr60jiw8ALDAvnUPUzaRZmy69q4n1nBhUsusx2jX1IHq8Xe/MpeaaQjMrmWNIt1UZqdZrJ2deis3Z60i0OrtGjIqqGVNjRT1xK9bTaGEdiMY07WAG3vWB6zOzcfsM1rDmsfW7On9jCjeM46NCO3f+2ViotyKWf6z1hlGn7QJLcFDTnMTevD61MjMuVrprcsDG0d6613YLNdqu1Ku/UFHDRk0oUUG7scUceae1E7ZtMiUktEqq4HPQqhmbR4wevvUpZM5SHcRYjAizo797nih1Dwxvlc4iIeCBPT8OWXX55mC0Ooz0fczyVfL3RYyufOr73MnBuC4qS5zLXPRX1GbF5rDlnPOacJIVNT43ZU6wLL8x+2zg0izo3vtpErbtd+qcPWe1Sm3F0ix0futp4W7e7SJUGI+U2mvMPt6zV2KdMikloSLafF/4v5nSJSbZ4usxsEwCzWBS0fYewUUpJn+RXJSHhXpQFVFrWms3yjtbCBAjeT2D5eLtUrRFrQs1J5m01rX7002UgCUBEqKv0WQUMcKRgxS/bVtHlAR2evxjK1VAatosieu3qY8qgxrrLMtTJJK/WkUddEXI3Zw5oBi5YtTUxqpfIjutGzqtZP5uZlllQ8srWKVNWRWOqy/nnNEt8lja9z3nau1e4/WroDydZbNJ4p7dUKmnqcF4lryz7N5BH5Y5KWl7RpvdLkGtKUxph23NGEprq+2sKMXKHDUz1TR0MHiirVnaPsSVtNBRKGIhRdMrNWuVfZGxN7SEh6dBo/BSscS4a0SEO+lCfMvSJENNeG9kpa4mOVu0UEzExjjXA2wuk+HSJ+pZnAqufOnim75hKlXZ3SeOIR5bFTGnm/dkvqF5n2aSlKjzRdLWHSrF7eS76B2qZNMFq1G1Jj3BF8Gx08NuiY1NKTyekZu3LoiD4WfsAGurWpotrH9qv7baCvZPc9tMd6175a7aRD32Idk9VgRoQ5LrLUR7i18fzSoiY7lfem/LZ2XGN9Q5s1g/gOmeJFnCJywON9YJZtwzU6CFyndbyJSMdt+vA9Vl9/Z9JY2a84kaZwBPssgXJNZ8Dfu+ORxukiQOC80UTPhKULe/xBgt475bcTAOfU+25IQB4t67who13xpZkDBw7Y6OhoGnO92LRRL2v2zDVH80uOBprMfBqjAhsmC6UxT2mfsxrzZPu0iakD0sZ2Wk/+bpvb/n77n6+9w/atl5bUu9Ve19Vm3XabXT//lLXv2m1P/91hy09ojE5bzh0tbraStkNjNioakLuCdico1/fAkNad32TzrTI1apedvNitqu3xqpU2CbsO5YtDJtD9IiR1gOqXaN2mNKUkqRuyO5WJdsHnzEY18SdtpgCJqD1IpknZkgUimY4b6deY0COSQNC3d/Y02pVMnXAOYXAQRkWfIINYCnpWFMmWpBUSQ5rgI7MkS19SAgTA9FpSmozfals4CKug5SJ0HqrtmGUlSLXUpKKZrnltRagExJ262325Ji1piYo2kCjkF7UcRpPq8lIbRVB1TTpKSqtCCxkloXbuLIlglllc6nIicEg0p90eGAOlDBSDjgS4AEVJHYYKm/YqJiYSVUTIfCJNj5S+SFO/6WYkolWZK2kEFXJgHgPvF6ZvWQ+6lK7SaJdGSnXyHOLgOQfXgFTSDNa6JiF1duvLM3RY9GBJm1i0FUvWPzBmG9fhUdsGlro0GU07U833a7y0T+dum5rUutVau+JTHakMaeaw2sWUthQcap+2r73msG1eN6E6zWv5jtqC8s1Y5IZ1Lfba12zVcqpj9tAXP2aV0iFpykeV+IR8kL9+acqXWO/gW623f9i6NWM/zRRWvnknqsKz4U83Tji6BScdHbicTC7Fusy/h79k+Q13aXeo7tSJoXPh7xZnDuRSuIsTgfOaRF3wAz3jI40xiUZFYNKB8HA0UGbzIii4BxGcTaN1MmFyE0tgmLiUTbOR0oX918tIKfyFbj5nyfNZ2qcmDc2oxz+3eExk96R1DI/Yxs4dNtf7bvuvy3/Y9mv7uJ68TJUyx31OptVrNRv3zrZ77NB1623s/a0283fH7MiuTpta2yPTrurGJRFnCVQIATKaqz6iMbkFq6zRRK+ZbnECpKkNEKRdIGSxcrYcnbPWOQkjCdXKlHSkwUZkLp8QtCV9Hm1UH5xGi4INmS1ZlKaGkNf2BmoXiFo9SgSqiScyp7KmsU2zvcEqJ80yaRowg7S7ioRzXWZhTK+0qVaRFRvJExGExYQe8siYIo4NE9Iu9ikhEqtprE7jsQpCWZVFK0sDXdKm9q2KsyozcKc6B9WctF0J5Zr1WofGEwf0+bRS26zNdU1odrFmNmtMtcb4KkonPQe033SlawhUecIyzOYK8Ct0qzu6p7PGe6X2pmDMyGWtaCJbeWSGMzsrMZGJ5TdMLoLomLREEarqqDBhiu0QlxROtzSxCLJqZIWN6HEQR8IPXPRMr6I+V6cwKku3NqNgb1rqgPKTkQV91Hy+rMlb8tirsvV0lG1d5xFbWz+YVuZU1HlaLHVrzL1XM6Z1yGQ+OtGq2bdmr7h8zm69ckKfZtPkokqauqyIMbM24q8KiOHhNuuaO2b7dh+mEGoDa9VZ0mYQnYOJOHv6tBtRh2b1K33q298T6hHNv+EaZTv+I+X75LUKSTuoq2Mo7Xr2yN3WPnhbwpwn6Vk6n/rnbOTSqSHi1/mOwHlJot5z85l6NHDG4vguKV+DOXjwYJoQtGvXrqQp8a3SW265JR2YZ30NKOCfqdFCGiyVIV62JezSZ5vOloTPtnLJP87PXJOvM+UNf8/FuWDg7MRJ2TBRLUktoMPhh499Yipj8/f540tVpme1LVz7Htu8bb+0EwSwFqtUb7OPr/uA7a8P2dDeHpvX/rT5nCZyaLJMpXVEY1v7NUNSk2vW99i6712yA780aofunrWeNnV8NKkm4YDElwDOS3jWZVqcnh2yvVNP2tV3vMI6+jaIcNA0wUn+JSCLYyLQMYXBdKlTbVLrLLukcWF5k6wDy9IiBCrzqAgUMYjZlfIW2JRALo2Hym8VjQpTqcbKmBSCKZf1imgXBbQ+nUkc0luSGTYxArqa0miVNoqJFM1S05QaTNKIXs+VCOOrmFspn24QV4v8M6knUZDqoizy5HdyYqMukeiscMUarExoFyVpvZo527k0bJ3jA/paTdmm9Xm0WkGaqrTZ1K8QMdX0RRgmNNU0KxpVVQbkhE1BpJk0XoARQWiZo2Ycq+4ouxKpqkcCmamk2lRBRKZr/U/OP/idftBuZFavavP8isZc6R8IUmGCyV8meJEwy2jkLUUgqNNzwST/DQKF0Du1526zQ6sks3wpZ0yTj6a15rRbJtxudYY1JKqjpuGAGevtGdcmDsJbwwEz+krPoHaEumQNc8t6ZA7WN2BTPGipDU2VfTnI24w2w2Cv4TWXXWpjI9p0v33QegaG0/vNmk42sGBJTPadJI8JB/1J5xOUqDoVjowC8x6xwQKdiJqwzGv2tmmWeaE4ZkuTT6f6Q0P3983fPX/X/dyMR/y+cBE4b8ZEvTGjTTKYT2NjQwVMrSxH+djHPpbGLoF6+/btaVLQG9/4Rr20+USwn/vc5+z3fu/37DWveY29733vSxs6uIZ1uoZLuozBsG4Vkt62bVt6AU4X5myr28vknQHyiksvoiQO+cM9H2mliJr+kD5HeqGV1pJIEw2eBeHpzFdT+Ji17vHNznltf8daz8VFTX4pj2ox/h4Jot22+bIW6+qU2bXapuUKT9o9w/9qj7bcahtmpNt1FG1BWsbCYl6bus/Yn/XeqAL+rN1Z/lsbWvhdu2rQbPpNZv/27l67/Z2akcn8GH13LI/JVh/YLJU12WhsvR2Z10YHWp9Z0Z61+QGElbARCbAnbX5qwVqPSGqJ9BoSW3GwRlRfCcmtkelTsJY0U2dUH5SuS+iD8nG5riggUoKKTLQ+tCbNJafZunmEv3aeYdpMRzfmWrQzkR5kyUCpCLK6JJKVppG22jsuVovKF59Kq4lET7DKcdJNqabJ5uTguCk3zVRW3GmTCIVR/GVNiILEdFcKpdq7SAqhrik44kLdUx6rWqbD+tC8SCK30GXF6XXKa8qd6kSfN9vQo+14tYF/y7Q6AvNpiUpZZSxrjLVdadbSWlClozCLMtMuSmPuSDN7hZXMudqeWBlQedULaRFmieD1zrEOlrHjgnBTt0IEIU1VJtUlda5Y9lOgc5DYWFOx0ob0ypNuQTrillQuKd4aL8fwLGJTGVo10SgRrfzgqJvGH4VTmlQrZDqpDwJorpGIVISqNsL2gFXN9sU/y5I62yv6qPgRTfjhwwUy82sG9OJit8rTpfxpcU5NnTg6EpAwxC3i6+1W+TTZrKoZvAVtojG/gOWg8d6lXCdyxFKgjod2bGLXprrWhCpjOphdLk2zVd9SzXfqrO/Ctutauzu1d2qplcz67MUL6ddyXdp842YbHfu4/d6H/tNe/8pr1cYY0z3126IUPdzFhcBLroki4HmR3FyLRrRv3760IcKHPvShtDnC9ddfb+9617v0UeFr0hIY35TBzbvE8Z73vCcR7kc/+lF773vfa7/6q79qb37zm1PcnsZyVQfJoI0xNvrkk0+msUDy4wS4XJgz3fOw3hlAix4b04QGLc3Asc6V9NCY8UuZcc83mVJu4m9on411dXwxZX5O6+lY38lXTJhpq+uyPn1V1ML01oK+Q1nZZ9XiDgmGkl2yfkhkV7VRLSeYGn/UDk+83T597V3Kf7t2noExxm2LPmrctn/Mjm1XuXKD9mfVG2xH/cft+tyddl910EavfdRu/L7fkBapreAgEI31MSY4NnaZPiKtNaMiDS3JtCURwMLMuJYObAMNCXCJYUnVtkNopZJUiNOkdupSP6vaM7euz6VV9YHqMX1thG3s0Pwky084MGVCjOYCC4sZCVrFWRm3qrS12bkuG1naKDP1km3cIGGuSSzwZ05/MHcuLUm7FnFAfOQHYS4f+k6oTLpkOHWCEtXoqZ7zW+OdSQDjWdgX1bYSNSvfzNysiRQXRXYQjGrH2qVhFZnsgxlZQTUXS5ojvxskhFZTUhlqLcKAQkOy8ptXb6Sj2mst+qrNwIw2fbB12je4qrjnle+Ghl7V583KGn+8XOXqEpEd09jsjMqmD7IIJ415qzQldSwgD8ibMvLptqLMxmzGw8zbxrKYijQ7mSylIWMIqGpv4PZSh63t1VIW7OwKx/+aOiE1FWJpnjiYpCRTtSYHNXZLahChPONVP3Qofnd0hNAiycaU6mZORN8jIu3WLO1WWSzKMv92daqDIPKv6HuxBawTbTPW0a5xToXB9F8WmS4uqnOhMexqpTEUgHm2o7ct7aerjImMqVtZP4QhmWCmrUZ4RYaDqht1VhJRslRK+GrZjmap6Zk6XSJ0JnUhp7y81KsGuJVeiz7IfYsmJa0R0Wvz/cM7tIduzian5tXeGZtvjEl7WeN8cSGAZHrRnZMMjct3JmKTBfbU/dSnPmUf+chHUp4+8IEPpF2N2FkIwsE/xOCHrzHlPoTFxgkf/OAH0xrQX/qlX0obN7zzne9MDR8iwV+z4x7PiB9yg+zY/AFiW85/c/jm35TNOwTHtGcoa1E//OEPJ4LO+qVD8O3f/u0pr2vXrk1EvlIes+HO9tox5sxB3EvSOBc1Zjg//rgtTfyfxtruknZZs6HWSesflLm1U7u7SFjvPTZmE/NatytyW9RMxmMiqamJKxXG7OimH9Q+ooM2JoF91/C8ffPBe+2e3/mQlZ963Orvfq89/fP/nw11FOz1uSl7NHeV/YsEr11zg91wx1ut8NkPW027vcyMDujzVMM2taAxKY3FtYg5GjNbW7RWT0KRNRcSVnWZldsPSgOS6RVZjbaUZLbKk1O+ZR02G2mxqf4hfegaYQU6kqicMZmqzOxSgysyQUWTV/KarFQQqY6OHbVH61rYqAX5R3eUbNPokl2zrU3LnUTomqc6r69zV7XfLrNYsy61tePjomliEyqlBHpKV0thciLFZMolMyL0Ymp3mFDRdEVK0tpL0oJzuo9JuE1aKDofWUYzTaZckWUag9U9Jv+w9ITN+NGM8to8WJTSGNMVQamhKgxb03Vqn1ctJZroklaufLcqDtHDtCwNr9PM1Vuu1XdB9XteBFur71dcB21SY9hlLdtp69Q6SeE0L8KvaSkS62SryWoClsqZsJxu67ZBkSvjzsq6DYvc+lpF2oq/qnJCmOp2WHXmuIVFmmNBdueibMmyssupzCI0zoyxchA3/1K9pnvpFp7VseHbrOowzOgLKSLTdtmct16q7f9FqGyGn7ozYK3NNMifekYiuyOSJ/tVbwovK0KptEZY9Kk+tF1fl8z/MyLfjgFNANIWo3yGB4Js51Ps0hjZIU3lhihZEoOjrlO9qO5S7ejM3rsNxxON8asz09l7q4YEtH5YQwFXXXWN/dT7P2jXXb3Nevv60i5s2Y90r0amHE8wTucpAsUXq1JdqGPShGQ4Q1QjIyP2wAP/P3vvAeTncd737/V+hzscGlEIgE0yi1hEipIsiWJsyWq2FFtR7PGMFVm2NXY8k/wndTLJpHgSzyRjTzxxSWzHcpotWbJkySpUsSiJpBopUWJvAEiC6IfruH73/3z2hwd8+fMdCJCAeDjuAu/t+3vfrc+7u999nn322XuSXKf3b3vb29J/+2//LZ/44lql5Yt1u0gjN24bOFc43ymWNO23vvWtKBZsSL/yK7+SAfenf/qn8/OIH3HCNx3fbd26NbnOumXLlly+eH+mvmnYYQT3O++8M/3Tf/pPc1QnA//sn/2z3KF8oJjaI+H+7b/9t/n9b/zGb6Q3vOENGcStQ7VeOcCL+BNpCaLzDABywzMnDjDL/l7a0oVBvG2sFwGcbOxkGwAisbnOtHkTE4pnRtO69Ex67BDi1qMXsRUFsRxj9vF5xFjH0HRsnky/hNLLay7dlOZvuCn9JadztP2bf5MaNl6UfvznbkntGFvfcWIuvaNpf3q4vScdue76tPETf5b2T+/kZA+0Uh2nULARJMQ9sUjzebPjQ3wzNltAy9YDGFtnIEZym0GzCTlhK6NrKyI/i9wC1zfTBQfSvyvNdclRkYjJkZ7KIq5C1vYd0lZYo2uC+21iq4qiu+bph9P66eNphHu3UjzFgP3U96bSDTuaOM0EjqhpK1jCAC1nK0ZaSNsc/1oFZkSmyFB5jiiUNDKX6MhPrg6uuibo3QRwWiyfuw7LFwC4gI1cRtoL9fMbuYZpwVsVNyt2NQqwJKeniFUO2Mqhh0odbK+1gV6a5DVagNz16lk0fZdYT+QgT8CBulCGbowezI/Mpf7NfWmAui5gMKGDbSuNrLsutsxikABAJ4o0m2Thc6m1J/VjECMUrObZOzsy8DTcnx+CUgGii2hRtyJWdX10HgKZt/LnTiZF83C/0+Qx2zDJoeHWRJObrMNLM7jeFo1RtMMN8p0z7QDAlmY5baVSkllYhV5KAXgg/X22uDSBYhGiav5lcThJL8C1z2LcITFJWlzsIx8Ma6D13AQnOcuB7c1Mklr5jraFB59m72hva+rjEO2B9X1wyYhoWaboYAImt2ze9uHaXk/kBEy2nPyEi75UmwxAUzTGuwDQTgxwZMtFfN+ODoCZLTKKcR0LNCITZkkdm0xjpXEo8in+hUUBesX5dYJlAKcNSED0hIW9e/emr3zlK+kjH/lILsA//sf/OL32ta/NQGbjk9s0rA0uDzLENZ3nc4YXnLVI9Pu///t5fVSt2x//8R/Pz40fnSEas7/NT9CWI3Ud1rXREL/W51mN773peNlZXFf9H//jf6RPfvKT6Z//83+ebrnlliy6rS+7R8E5YRBs5ZpvvfXWJNgK5FUOuz7vM/1teaxTlNV4aqra2Yc5e3O+ewcTjR6OeXqE2bcvW1mL2sgePmbldPZDHQPpxP6jqZXjpCYZLFoYHB0n+0bvI+ymtP3AcLr70GfS9BU78wkdS2yHGdl1Sbr8Qx9MM299KO3ZdmO6CStG2zoOpRuBjn09Lemr+xPnS06kdW0YbIADm3FdkzW5SYHC0RlOa2wabdSJsdSPqLUFLoTD8gBNNFmx/tOCSK9RcawF9pvBDc9jhrcThZOxFsS6brcA2ORWWjmyqw3tSzkn6eBeVE83WWJtbx77uC2A43bNDk5zXBYDeweDKHiQ7nl8Jm06MpvWb5xI3evYr4hxhyYXvXB5cMXP4lToqEF3B3NPlMkG5yuiXIfeZkBDeGRo5gIGGfDVyp0nUhPfR5u8LYCoH6AJwFCM3JpnDMSQ48Fm7RxX3hKUkxE8mFiYlguPgF4zYk8BR25sgXXIBpS72JjKO4F4MW2ePZFaMT94YghRJnt2NSgx445OiqSiFbwoHCyllJ6UsoW1Pu0SWC/N8rkOOstaopaLWlr7c21cEl3kuRtj2sCvHJfG0cZJJx18k2bATjWniZlDqaEbYO0lTdse34GCAXJqKdu/XYsE6pkAtGI8QiWvBSceTXxzwL0BLnl+wXVr1vDB39GJTo6zYx8p26Lcu8ssDPGyW6CYiFCaFiZhHlzQQAXsb076pHwr33ZkFv2KfY8B1g/wHdmjC+C3tm1i/yrKRr0DSGJQPIJz7O3rgavUelrtEItW5dfSHpfbEVVYyiJctH97rwNA+3hO4QjkvzYAtNbPnHxRp5OX5fG+2h9zouXPBU+BZkWY58M5iNtgBEL3Gx7n5AcNzct1/q//9b9ylu9617sy1+nxaH004Agfa4T1wHMm5TQN85aju+mmm9Jv//ZvJwFaxaHXvOY1GaCiIYcf6drIFQlroN53GrfXee9lunJ00Rnimb4A+tBDD+X1WNNwcuBpNcaxPjEhqKY3ODiY3vOe92St4v/8n/9zUvT84Q9/OJ+1ahzzOZ0z39O5v/2+BvbaPt37zac4touZ+LbrETkiMKWT8x9Hng7mnWxB2Pra1NvVlLaPHoGeCDlZ0u2cfhIkTWl/78b00IOT6b4P/1GawDbPsaOHGPAxvMDgOs/WhVsAsvXM0O8HqFo5l3Fh7+fSZg73aO38ATShbkudXIjm4KymGEwZ9jEzx6kuzZvSugefSuvmMK3HSSeNlDVzeYzqBBeLaoM8HN4c2qnonTD/ZzP/OJx020zq7KdOrFfWtG35XogbXc+CP8qKHtqZPXFwJB19Zj/VzOYFUuOmfsrONyaPdsR+h6fm0uE9BzAgP5s2Ajzr+ztSd18nyiRwOXndlUGfwX4KbsdR2n2cyh8bLEz+JPwBHLIolwcO5F62nVmN39uWCNLOhAAeKAOa+zqzvQVB09BysLYdAc/v7MSBtbwmT64RNHnv1SyYUu5FAWlSrpZ30HeeOP1zHPQgl8wWnibyOsHZngKEW3oW5ziKDED2KDiTzyAHOLV3wqOydjgLoMFTZe1XFXEQQsNJUifCu5bbhkLNnKYG3csKaClC7WMfsEA4MztK2QVNAHByIbeJdvYQO6Ehgi2Md9I7F93a0gZq9bXuHit2Yg6InqfuKLM1Q2eVn9pOYG8XTl4D/iqK8ZLyA+Rw3jXlLwAahSrrY/46yWT6Ks01c/h6OzabFas7wbCsEyP7UZa7Pz31CJrPBOTzMvnaCvBvTD2967FetA5w5WIi0IUCWgeiZQ69Td39rIF2c4wjov0sOYBG5tSB1SXz1/ndqpfj2d/uk7Ww5e+FS4FmAeNcOzkpRZZe7r/83Oc+l0W15vOWt7wl/cf/+B/Tj/zIj+S1R7nOLGo8yXXa0F4IeFbrYEN1ABK43vjGN6Z/+S//ZeZIVToS2AR1RSuGCRdxfK71okcfffSUAYYIJ9B7lJplNm3LbXgVnDQfqPj4537u59Iv/dIvZa5WOgiE1scwXuYTQOw7L7fl/Jf/8l/y2un73//+9Hu/93vp5ptvzkUzvFe9izLV+xHO55G3zwRltR0FgS42yu94bUrrPTVn5srU1z/IAMnZkScnCA4GDkZLPetTX+9I6mfQUUtV5Y3LGHSeeaI/3X2cbRnNF6emp38vTXReitl5Bud9D2OgvTF9CBDeQp4eYO0Yu3fP7enY+G2pfXBrmh07mLdoLMLZWKv2xk1poPOVqbN1G2K1DQyI3Wny4cfTGObcFlEwamQNK4OObDAOatREoZRpHkBUA3KBbzE/CdBRv0YUl9yz4brkIhOpRmnO4C1XxYiHuBgxHxv6x4YOMvYr+oMbHMAUHcbFHUW1vKMZu9QyxTC7kA5PNqbDbIVoQuFqE9x0/7pObKnCmbOuObWkgQbSdU1UjlARK1yWANnIAO1xZJa9NoyTPRAwy+TCWoggbYuUl38O6XKercT3tyDl2pzAhOA5l5+KIKGFm6RogpYTiwbq3aRIGeaTVyCTIM5v/iuG3MypM63k38T2HY9Om0f5aoKzPHsG4J7chwtHhiQzl2AWDq4NKYw4J/e1SHvJCZsdnFer+0j5rvBaud80AaYav3BC5DShBetMcmEauJ9FbL60RFlpQy0kOItkYaapH64VYKRSkkRt2yirMyNXok1bE/iezNmIVKIJhai8RxU62FVdS2ZOlHo7WWOm38xiVMI9xrMnnCDRl/JEickEUw/3pS7B7eZ8+PYjI2OIup9EvGtc2gPpJzRutVHZ0r4ttXejZcuWGMXkbl2ZA8TH0T6fxPrUwYPH0fCdBkQnkVBsTJs3wGcv7UWTfB3PUe7i4PJGjG549fSgwQtt/Ka66L9VP78of9YMBZp/8Rd/8bxVZufOnen6669PH/zgB9PF2KJUQUiOUBBykBeI5Bh1Zwucxl8OXKIyvgsgkcNzvfW9731vuu2225KKPAJp5GlY7yM9we7aa6/N55VaPsFQ32PUFEOrWauBBrl46/DZz342i2QVy8pdG19RsMpOcqiCmfZmVVoaHsbCCZOL4LYtr+8VI8vB3nLLLelXf/VX07/6V/8qb+UR2LyibFFWwTsA3Pxcg6nWx3Stf9DA/Lx3c3n3xh9JG3rfgvh2fxo5+hCz7xvQLOzjnUDF8MzAN8PMusGtFjOAHQOUg1QD+0Kv2nZPuvXpg+nuoZvSwdf+WprrvzoNfuUfpf7vPZwO/r2fTZf94vvT5h0XpyG2zLiF5NC+e9ORvb8HB4pSUtMz7IkEnzpuSF1tOwHOzazHMhBxvJliQwGnYXYyrUPDdAxQmTl0L2udG1JL38VoYiK3dWCSwwClFhw04ZbdGjKKcQZBonkBMeIzPGMrxAKGGJY4IFmxKQQWs9L0EILBcbitrv40sHE7FpiOASasQ2KDdQ61T8b2nP6CgRmQGzj3tK2JTYnuJyWZA6OcS8tu/9amkTQwiLiY7TWLTawRK0IEUJrhnBvgJMWHVjjoJsS9MIAZZKzfPKLbadb/XK+T228jLB+W+LRlytiKkorwqBNMBTbFpjmI8eDaox0ozm1C09rvqd3aRkwKOllwP6Pl74VD6gfIFQXnY9wok1zn1NETnHmKFirlXlo8QpsBXCFpUwcSAxB1mrYOXhOYdkeZBJ1ZjlkTjFBN4xngxiSjGUDzfl4D9YBVG9tILKcSABJjyXiUdkOm5N+C2HgOG7ULzQP0B9ZhUQxaUJSP6HkRTnMRfxbpxTxKX3SnNIlFpCkAcoo+N8q2pQnE+Sc4YWeEtV3FvW99dVu6cififkTJ00xemlh/l2pUL7dxt2vNuyaLpKG7k2+OZtMsItdNl7yX/AFoJl6OQUossg40NGxhAmZ/zZWgIvalPPmAPjpt7ra0tqf1G5geYv1oZvhONJuR4iFebmhGUamlP3X1baYunDjFfldF/36r5a6cYPmzZijQ/JnPfOacV8bBXfBwYI8B3sYkWAgIAZw+i4G/vhAO+FVnWF343keY8Ovfx2+3xPz8z/98FpX+p//0n9Iv//IvnwJA87c8pisoWt7Q1HUtVWf6ll1f8HXN1O0wAqn7U+Ws5SRvvfXWXD/DmadbWwzr5b1crJMI40mbarkDKJ10qNGrCPpnfuZn0vve975MI8E66q5veSxLgKy/g77VdA0rgHoZXuPbGv7+3vCGdOPl0+kSFIuGj3yfse66vBHdfBaltSI81vAaseUqACjKwwQ7A+K2dN0rPpHSM5elp1Hk2PzKt6anWz+aOn/qyyn95BvTFX2DmY6zDOaNHE493P629Fc3vy29e8/30jWLH08TgxzIjok92VHLBmWhg6I/jS7AkbDVpgMOqQ3R4DTivDR+GEWo46x9bk2tvdvgNNE8hfta7GKgZPCeHEeZZKGb7RBDjKIM4gza8yjXjGI2bq6d02Km4UYB3JZpRIGjgJScKlxISyflZD10Cro1sUbatI56y63a7PLA6ZqiW2IoK9wKqAfgA5YAzhwGDw6j2bSZA8abEkAM9zWBmLUZcW/bArZXUb5qYm1Qgahna5II8RDNyr3KJcO5Ol9B/YR73pN2I2m0YIkpTyT8vohKZzBiQUK2QIJMUSzKaCV9D7fUpPwc2uWDVvhWPMr5abFnM6ypZ3UjpCSMlTrZd5g0TA7BjQ7CdZGO65ELgJ4KMbYbrRk5CZCLnAcQmgB6J1fa621wDZV2kbWlSbcZtNVYQyNcXxsAY/zM2bNNZBqlsiYmQwuAJNOUDNrjw23pfvb7jo2hfMea5jQi5QXSn0Z8O0P9Xd3V7CD8K+3OtqcSomBGReCEO/tYGgIg/+ruqbTn0In0o1e1p00DSIVUAOK7UJ3s2vLE1bmP3PxSuuOex9MJpCiXX76NfDqZBGipyKC1SWbtzp81OuXf3Oe9ysQXQDu7+9LgIBM62sDsEkpX8wO0B8JA/6XFY6xHH8IC08NpfMiJUW1pqtpfvY/L9ItbOxRoljs8187OVL2qXJd5nQ44jWdjE8wEY8P6LEAigMJ0ghvT1wkAgorh451bZ/bt25fTceuM20oEMrVlnY1aNtPUN74cpOu3AqtlEPgU4wp6OuNcc801ac+ePUmtXznMD3/4w3krjmkYzjwfeOCBzP2alyJkuVfjWjfzC/rkRPkT5bUMN954YxZBC/hyxO539bnpG19XjR/3+uGqz6yL3LRAbtm6xkaz6O3uvX3M9PemV2z/Xho9wqC85QaULRjIGRhaqHsDHM48ewvlcNoAg14MJMyiVPTqK76WPjGwI73n3g+kEURYG3ZekU5cuoNC7U+XMrC0Wc5h9t429KadG+EgexrTe79+MG145RvTXx+ZScOY5etg64MDnCyE3Jf/MoDA+bay1tWJ9ucJ1mGb1Kz0+x/fm7fbNK27OAPgCdbBRiddk0IEybYMjcALcLOsAU6wLjqLWI1WlOZpG+5/nWMrQyOHfLeyB9E10hYUp+TCugg3jnSgmTWzWdaIpe4pKrrWuYg1oMYNeYTOEmW43Kb1cP2E5DPCndQUSWaZaEy1YJC8YQiulPbX0AkUMCkTlPjtqTW9M42p8xDfGsBVXN6B9Z2lBs7N5Z8iZJLgTu5R3AWEAV1mDPl9I0ipJVsVZxqZcLTAgbUxKWrC73Ldl1DzgBFQDhfKFhS2o2SFJAvJO535aNJubph1aDiyJtZ7MbWRJ0+53tD5ZPPKtEFIXmt3ALLKZoLpLMDaicKW7SuDHOb5WmAJu3imuUD73xxln0JbtqftciY9mHsEpD2Q+8Djo+nf/88D6VVX2Ke6sUbEGiPxXIfugQt2a4nG5gVO0/aouNze8d23O2/aaBhNcSDCU0wE/u9XJ9LNl82lV13Cnk4MNMy5rmpd+d9MPWdoh9+497F03+NPIoJF039xJLU3cOYtW4DmGpjo2LYEU8p96ptnSvm5oYj14fv1YemoNqGu1U+t7Tn2qrbQNpb4rg1MyhpRcKLL5D7qMrV1MI3lrpNZFG+NUKA5uMJzUZ8YxHMDJMFoQCuBpnlW4yhOEUx85oDvPkvFn2rzjo6O5ncCSZRZztE8BDrPIXV/p2b7dIKhpvxMR/GtQCiH+fGPfzyDn1qw73//+zPXZJpyzlFO8/eZAKkpwH2AsGUzHTV4Bcjf+I3fyOD467/+6xk4Y/1T60qKjlVKcj1WjlQnCFpu07aOeZDIM+2a2nuU17x8J/AKor/7u7+bt//IScvBBseaE+VPldbxTN/nQVt/xyTEes0hv/PkjR6sDd39+KZ0bPR16eYrD2Na76HUv/GqLKpzzQ/hGtwZa2NwCb2IwFoYmAYHWbFq35Vec/Hvpo8u9qa/99jPpKf7W9LlpDs0v50jwIZYn5zJijjTlKGJA5r/xbe+mXZ9F24XQH0r61mff3Q4DbMPs8t1uhi9CMsonJpnONqK+y5A9NjJATHXR9kdg/P8/h+kxW2708y6VzKo1rRvqSnKJ7QL4k329rA0CE1tRwy8LWiKtnP0l5q0s+wBbRqa5hmcKAeDQyUGUjVWsXiDSNftMg01FsUscaSBQfgGOO68PgiApvVMMuCSXNtza4d8lvduEWpGi5l9LbynUoCk3PgMPgwmoj+2krA1p/1YJyJifjeb7hin12CwgDTyUXFitmuDsIIq82xYgLtuGM506WyfYDKiqF2xLZMwxJoLMyRMGeG3alrVpDMLwHbCzbdoJQiuXNqcct6StozdiaO0+U60j3sQz1LnbEuX8LXBH87Y76FIl3zcs+p8R8BRM1Wwa6M/ZG1l2N8ZgPUIymdjJ0YQu2IVaHYEunZyisqrWCPshKNFgYu4k4hlr33F+nTZTpR2WD5QU7iNA82bAVDX6qNP6NsGwrf8MXm2H9nXejltZWRsIt35xGjac3gyve6VTRijV7pDuamHYP+1ux9JT+w/mAZoExMTs2mcyZtKYo2NWHhC63d2vjODaTNbfWp1c3JLdOJnZSomLOsHHTuwUsQLL1LP7+cbe6HJSKZlrZ/5Hrqia+U6uWL2an2iLtFfrVNxa4MC50Q7NxqGfjQ2B/sYuHPj412Ek3S1hsdMns4ox2d4wVK7uF4CmFydM0CBS45ZgIyGGWkoopRzdK1SJSkP2BYgfW54f5u+nU+g0shBcKQC9Ic+9KHMmdoxDRNlNB+BV07SepieeXzqU59KatLecsst6d/9u3+X01cJSY1j96ZeccUVmXM07wB862oZBH3TNa/gDi2D9f3oRz+atXsV4QrA0sPwinfN88EHH8zrytLEcuqkXZTX3wHO3punefksBiB9n3d0TEELrLSQVgv7AA4cakqf+OosA9FD6QrW6zZsuZwUVOJAHAc4MdShpducNmxsYt1Mjhid2sWb0nXrv5A+Dgr+FrrxewAAQABJREFU7vQ70t8sMnmBo/itY4g/vyEaNKUPDB5Lv3DRg2nzI99KRxgwZ1jrGkD78+1XNKTbHhvmpBWiCKSM0FmrlHXC5hm2UzAIdaCq2gIgLbrGKBA4QlkqtELX7Xw9YMekavowHA/cKMCg5Hd6HVwvAIeysQJSFHUm4KyJCvBoGL4BIJ5bh0CULT4t7Yh6W9AQZt2wBdFxH+t+04h+F1wbVUSXM3NAti6jFHR9SgOwGtBTo+6Opq4l5qI56JJvA2uES42AHb810qDdAgMqHjVoB5yoSk8L7IlcANjHsUfbwWIxIXhM3VFmmpipTeayopGKM9aDQX+A9dBJLOPMATiNANcSdMvnnpKHIuwadRS0wuWy1jcKLfsB8Jy/xdCJAP4BHBbhvE2jhTZQo22t7wqwtX4sKdHJ5bDqFupS00C1TWHrdhTDKE+PpoPHhrAUNcJE6ATbgQD9DR2AG8b8kbgsopH9+JPfS5fsuDr10BdsezPs21wnB9rXz8T3WUMEMXm2vZp3/WWpbbemYdu370xPoy3Nd+uFwz18bDT9xTdH0rXbT6TXvAKrWLSd27/zaNp34BBrou4LdhK1wIR8Mg2gFObEw+0vLex1nkP5aoa90QuNiuAVIzNndOLA1quNmzan7i7e0Rd1NbpIC+jKmvI836PNCU2NsDkM0ubc72paz89OBKp1ygHLnzVDgQY0V2v97wVWyYZvJ7DjKLLsYYYo9yX4yfmFCNPG7xWDu3F0Ktlo5k+AEuTk9gQRt38IRIJANF47UTjTiYbpM8MJSF/+8pez5SP3nGrAwHACoO91/rZMAp/bS1Tm+c3f/M3M+Vkm33vpTF9nuTTC4L7T22+/Pf2H//AfkqYIBXc5ZNc8BVzDKX6VBk4CzFOg0pcjljN+7LHH8l5SffeSvu51r8t7UuWi5ah1gmx03FinVfvX8DrLbZ2+8Y1v5A7roOJleY37fM5v1kpd5cIaGPx7uxoAUr4HYql/8SspvfXH35D6N+xK9x9hn9/Sk+mSgXYGSEYdtrLMzQ7wbCP37DFt7mGddDztO7KQbl+6JT3MgcbtiHMnD06nN2DA/h1X7EmDrcfTHNzCDKbg9o81oemqFiMib8r5hceOo4DEWjSDuSttCS6076l7EYEyMEH6fSM9aXza9Su+OwPcwvCR1Hv9O9O6Xa9N+4e+BTAxYsElT7M+OYMt2SWs6mgEYQqRdAvP1CgV0HQLrB/Ou4dSDnsETm0MW7tPfh3N0QMkzUCJGHnIcnUwmJ7MP8e1CahUtXUbVeb7OKBCZ1tIK9ziAFuApqex88yG/0ZEyUtYaqICyJUJhmm8PCoT1rWzSw4i4J1CiYZ9sosejE0724whCvc9NiB+bWdLzTint0wvAPBQpFkQJVh/xwiKWIgK4XjHmcw4MxDoZ6Fp42xj6sGEn+vWAgU7KPO3ZSEvYXcL0Xhj2glwadg9m+VjwpI6x1Jr37G0ZUcPWqnQBGDMGrkUe4ZtMWBwBmYnfkPHjrNvdw/rz0tpYm6SrSeTKHntgItcn44z6Z3icPbhYUSkHlowBdffwQk0A00YM+Cg7U4U5ji8/Iqd1wGknenzd51I+44PpF3b3T7yLIiaTz2AQrLsog9Gv6wCqW3dfqXpyjHHkYNDqb+VNtR8IB0f3ovBD8AbOolxC8x4urvb0zVXbssSlTyU8NxJg1z4LEpNs4soW2GMQ7u4G5kQ23drY47ATrgoE75kTFN70ShHpIsI3Q/F/CZ9477FdN8zG9LluzgQvJ8tMnDBjjfVOp5MpnhrhALNoTzzQutjI4vGrOhTEeyhQ4cyEAmibt+QO9u5c2cGWYFKAHBN8ZFHHsncpwCi8QF9QcMOI+CadoDJSuUzjI3dvAXjW265Jb3zne88ZW7v1ltvzWJQAU5nZxVwLJOAq6Uk1zZ/9md/NnOQgnh0HgH+8ccfTx/72MfSd7/73bwH9K//+q+T+1rV1PXe9AT9Xbt25fQV57p9R65UTlTjC9/+9rfT7YCvoOv2GeNYHo0y+FtRsp0sXEwOrJv3lsc9r9LOPL/1rW/lOlhnJwG+t6OabjhpGLSLSUEW5VImaavmpYOHIttWOL7ByzmdBePzv/kHY+m+hz9CXd+X5rFVumOgFRHYDvZ+DjJw1zRpFefNwUX1dyLibdyY+sf2pZ+c/WR685CWYuB+2UJzyRV9iPz60ywgOA8np0HxVzDAbu1FMWuE/Y5oNd66eyB9Ze9wOo6Yr83tDIghGwHBRQDT01S6Wzm9ZBrAAOgXGaBbtl2R1u24KQ9YrtvmNT+q3LaOiRx7EqcAsynWO5uxGavRc752beR7liyZZ1jAlqpKOa0YD5hteIYBFlHw5AhncbNuhogblpK4jJqsZbIhNEtyl44eyOk1wPnEaKq1JUEO7MKpAQzHi5Yu9gprozPAQyriPEbh4XwQYS8CWIusB9e0dQWmaRhcRNUmChB2std1nraxgHhYcWlH8zTcqhw564XQtpM9rJNMyhRX5+8NkFsIuXGNQGTjAP6GZsMA/mYmAE7iNPSwgKJPy/ohtEjh9im77akTRa3JGc+Jqe0BdQ2wA9Gqs5hnjhxND+/fwxryUSZciGjZX+p2npZ0KG3s35ReedlVuX2q7OOhBhMc2D7B5Gno+FhetzzG+nszRjAmJ+9JV152DWXshVPtxkBB1ynlPduu5bMuAZjhS9Wqsx3bJ+wrlt24cclRqxV76OhIevQYEo9m1pqXjkNVpDXEU0w9yTLDBNcA25T8Xn5jkiNflijQ8G2Be56BM13Xu5l0VbQyjO+zd+qP5cjfT5EubdtuJ6bK8dKF8rqunGjUyfpU708lVG7WBAUa0DL1+79oFwN1cJzOEOUM3SeqKPLzn/98Fk1efvnlGWh37dqVASRAy/gBnBbGhrdSZ/J95GcnErjlBk1Tbi6AVVD90pe+lK0XqQwk2BvPdCOMgHrvvfemT3ziE/mkGNOud245efOb35zB0Q5seDlnj19z647pCpY6wVEuc/fu3dm0nxaJ5Ipf//rXZ271vvvuy1zqDTfckIE2AxqDXdQn8o7yCXxONszD+vn7/vvvz9tlnIxYfn0Vhqr0Mx3TjMv0oiN7mssC8RYw53ZkbC7dvR+2CZNoyAVS39aUXrO9Pb3r1sH06je9Co5iK+twitEZ6BhMGMZIk8EFZNiBtMD0n2LdaZIjyBZQtvDVwGAbM/me1MQRVyp4zO85lppZk4KlrA1IBBrlnMlD463piaHF9FcPs6cYOB8cfQrFm8cBGSYE5DPOtoe9x9eRL7/gUje84RdT98BuuGH2H4/cCzizDxdN2cb1rgsyHZibSWMAZCOz/9q4Z9Pmjv8efyYnqpKUXG4jIDqHvd8R9rDOyl1C1zlEq8PrNtfiWJE2LjfX5wRAQbVlUTJpgKORS9XgPFUlfluaxFZrNsenKbtGuFGAuAED+UyBUBBaSgNs1bjoAHsz4ZAXOtxbWRPBNpLPZsBbrrkV4xGWm+U81hc5ng1g2tiNWUZw2cFeJyBMoEQ1B5i7PacRa/JdTDjc6gNTnNficjhSmiXSIEeCXbeplz26aDyvO05aTp4AVUizaet6pD0oBDFZmEE5qQEOepF9n1MYW3hk/1OsNT4O9zubtm3cmTahTDU6dj/cFmJMROBdbf0cTnB56oFenYhMbRN+p1wBCqA1IvdxTnG6zizLArNwgvc9vRWx70W0DawDwdU7YRYMBdHo6+Fbh/o+Ec98bnuOscY+YL9z0jsxMc64M8Ie76Opfe4hJiEjtCSkH0wyZmcX0sU7BtMlOweZYELQCjpK93merevbSH26Mf6ALeLOfgCRtpeJ73hk+88F4/PTrlkCaJ3XClKtnVmuL3wLA/QcarBrB0ZDBpDMIZVzjCqcqIRbm+6cHYVmA/KyE+jbaOwkcrq7du1Kb3/727OI1sFeILHh+04OSjFwzEaN+3wu8jEPRaSKVOUOTUuQ0dmp5BDVxtXYgyB3yy235HeGEVD0zVfDBgLiP/yH/zBzxgKWXLRiWcXK+uYlWMtVKrq1PnYO85HjE7xd25Rj/fCHP5xBXcMS/+Af/IMsKpZz1RC95gi1nGS+gp9OmtUPHtLOfaUqMbke7CTAMjtwWB65UGkZwCg962lnmg4AXr4zzAxm7+bY5jLOYdsH2Hj/GozL/yoGFTazxWMza37rUb4ZXIfZM06jmGCt6DDnhFJ14ssN1crqeY0D7Ct0ts2LzAFMjCOi9JwzXC9A1oaB8hm2ObRgxxRJGVwScXknNglAfXCrfR3zaRs6OxsZyP/s+yiSHcGoAf+U3mbNWQzTdyL2nMAub98Nb09d/Rcz4NcsxLhGtwh4NKBsowrUIoA6i9LTYh/7FTnuqnbqizni6pqUezIzMm3ZmGYftr2i3cog2wQX0kIllwD+BcHGhbOIL0AscRLMCADJYNvQUxPVag82D8iI9IhJ3YiDEQUWdwFTwpEeKaV2xK5kwQThpIY196SIHACFG7jRNs4mq5XW5RHK14xWMPZmJdgcAC09+Px58O4GkMZpo9Nwvk1youTQCVCrdKSGKvhFfeSMAYXLOKNz0xCiZzSQmZx4gLjfsglpQiv1k9t1C0lPR2c6NoY5zuNPp/v33QNtWcNFHKrY/+jxw5zpeV3atPHmdOjw3ZSvOYt1x9h+pLGFublNiEpR6FKcLQmIa9trgzPs4LD2JiZh37hf4XsPoOJavBq9NfC0/Xrpqn1gud8+sx1H/ze8ce1LcWWw4lvJXR47RtsASNubONSAyUwj9HBddG7rALSocaES3RbkQQWtLVgl4uQWWgTc+HjeprPIYQu1dWP7UC5krYL8UEt3nu1MLSgYuYZqO5ihsTtxzPWifJaxelmH4tYWBRr+63/9rzaNF+Vs1AKJDVnfAV4QENTkNNWcVbzpM8M6+CsmveOOOzK35vmgcmpyqbEuKMCFODI6l76AYD42Ujk+nZqsUYYI63PD2ll99vWvfz2DkuBnuQRKnxtPZzjFqlGH4KSti2Am56lmr8CpQQWVoHwuEAqkOteCFRMrmla5SYC3DHfddVeul/VTZJ3BjPwj7xyZP/62TOahSNz4imulnxy966yW/dixY5mWiodDFCw9qnWPtM1fOkpP6zxNWY+yL3ISKzI/tu5Quv66Laln2wDGAZ5hcKAegFO2EEBZPBj7wMyGNNM2mMWrDje5jIyw25gAKSLjQ2CLdyQ9vf8w3F4X5WtOl3GIaAsD6NQIR6QxeE09NZQ6h6E3g8upxpYHpNp4RKLpaY5Tu+Ou+9KhBw6kI1iSGYNzU4x7cAhuZt21accNP83gBAcIqLjOdXDkvjTRcoz9nSjzKO7sRVGnh+Os2K/I4pwYlkWembYMlHlNFEs6cqLhWiYOpr3f+i7relj24UybpvnJdIgBHjk1Z4yqkEK8k+3DNUYqTP7UATF1A0YDUi/rfgzMS3Cic+wlpXWSNDQB0JdQfOJsMsTTmNFDMWc3W4i6x1hK6LHd1UDDcgi86v9shbPMxgP4Xu20gY1MDPpYq26AniOcpzrNCTGeAyrZsvEEijKOIlcjVoi6UPTKWrsAZ0/3UtqADtQ6ts9s2dKcduzEog7rwONHRtLMkeMYs3CxFvDh++zYidiSGdLo5ER64tDT6ft776H9Xo4Itjv94P6v0caQAvANPCavs6Mvve6GGyHtWHrmwD2UYhwObBAuFUkF4veWDjXX3VddA7loK60oUj361Hz61qPdaeeOLXnibB93kmo7t7/Zbqttl0Se19kO47J9O7m0X9kXHV+cWA8dH2ZNl5NdZh+AI8W2shMI6Puqq7bDcWqBi+9l3uTmXtNBpC4aY7DP1MoDzRHBLzVzSlC7CmAn62Yc2wV9ZX6GvpieyjTQ8MOn7kRZr3tb2naR9OjPY0LU0z5a3NqjQPPOnTufU6tqY67ePydQ5YcN2cYRnKcNRkASMPV9F43cQVznO7VOVcIJbktx75/8yZ9kRRvX/9SqtaNFXBu2l/nYYTR2IEcotylARDkqRTsFiNbj1ltvzVzi//t//y+9+93vzhym6Ziezo6nbd89e/ZkTlnxsBzy//k//ycrOHnEmgYQzNN6WC8HAONbTp8LaDF5EIQV+7qG6fYUuV07uB3d8kR9orxRfmmm+Nv0PSPVcgngprtr165TXLHxTCMGkkgnfJ/7Pugn2FumoZHxdDXbK27afiBtbXsmzbdtSU0927CL248Zs2OpEaPhmITPANbA2th61rQOzKNxi7aJg4gir/UYS5CTMX33cDrwSIs57rswjafGr8DYxMHIC6x3tsNpJkA0nIOWZvkcvmSkZtBM3bKtNf3EO65PRzoZBEc5HxTR6yFEzY+CVU9uf32a4yDkcQZLtW9b0SBeYk11qQPuu5dJEmAzzfsFxcCGoTzabW1WfRY6ZuQRfXDm7VJnx8I4Ikm4NwZHGFDWPdnGMDma3vSmq9IQ66/3P/wICjic0sH3UCxaM4pAbLlf4i7N9qc0AleDNmqjtKG+OR/ZTRS0Mjea7dyy1gYat6BAtYC4FhaxFs7CEMGtJGzHRXyI6BaufSMc6SATgW72HS65TncRddqN1AKx7AnWHl1znGRddGwMpZpxLCbBdm5ej+b04EJaP9CQ+nqasoJLN3RZP1gTw8tt9l7EGj3m/maY8MzC2fd0YcyCtnj/vsfS/WwbGps+APzzHTng+7pXXUd7Xp+++vWPYGt3EHJ2YaDjWHp07750zSsA2ebXpoOHHqI9P5aOjnSkrRuYGHIy0HGkBH3rNvLePs8EFn8YBa7vPs5e4vXrABT3hdYm1/Yb27h9Qf9snfGi7XsfVzXNnDbvkOwyoakB6TSq28MjJzKImqdt0NONOtg3bP91f24tbV9ihBAx++z80TQ9iblPJhVOHHO/y3Fpw2rpztHmEbUgfc+g20nfcPJRnSBE+cyzuLVFgWYVW6rOhqlbboC2IazkokGHb/wAN+PkBn2ys/jOQd1ninRdb5QTFbg0UP87v/M7GSzcZymXGgpHdhC5MQHUZ3JoglKkn2/q/kSZDacYVQ7x9ttvz6DmjFhu1mPJXHc0jNyi+cpB79vHoIEY1bLJSVtu04s0zcr6ClT6AqB1dquNYl81eNXkNW2N08sxW4cAb9Mxnr5xTcf1Tgca6y0nKvAZT5DWWYYoR36wwp/4DqaZaUQ+03As1w0eTFfNPQDXNcqaGgMIg3CjW0vIv6llKwMCZzBOAaZzh1Ay5Sgr2KReFC5GFzchlgN0mH33YsScgmdA0tdmahsLdzOcItLHQc1UCHAERLHuMs/ao6bvXPtrkQPLWFMDUAf3KYCmbZ0KOWzpWb8xDb7+danxc5+GK+hIl62bTddctC2Nte5DFHiU8y/bMQfYnY5gFeg+lGNGNiE9YN8pNs7TNKLHCp8LwAKkWGZqgnOUOdRRKsSUDG5wnF2NnsvpBv/aN2wESfu6Z9OWXZeki7u606YNm9L3Hrw/a6A2yzURWjAVxBvkNEmDxVdAidXcLuiCMXLrzcfBBxwwNsDIzdIxlnbgZrRx6/otkMHzWh/L9wRfRALwzNxE2oVYtL99I6JEQNhiA7xzh2dS+/YuAKiTyVxHGuzvY4JgOq6fOkk6CsfKmaBwrCarOLe7z61hrN+ebF9NcKKKq5vZF9rUOggNG9L+p/elw088nI6MPwlQ9GLxiTNtKbv9cnz0YLqa5ZGe7g+kL3z5Y2gLswba2ZeefGZP2rh+IG3eOAjdXpUOH+kGkL6fjxQbRCoyC1c2chyhLeueKvloHOG7j9K229elgX65TwzAA1S2dQHGvhCg5/c5Wxf9J/pQNS3vdTFiCaSNc/fDsaPIhnb2tq1MyDMg0v45Ls0tN7W1hlop/JR+JQ9J8FDwJhSItMLU3I7UBnG2fdAQDXwrJTANaGXPYuwCeRyAKoCeFOlW6lgdN2q5lL9rgQLNgogNwoYYXJUNXI4yxBDRWAMsrPjzNQjfx2V409fVdxzzdpA37K5du7JCjkeEyREKRJ/+9KczR+h2FQFQ5YGq9qsdMgDD9E2n6vvOPOQeBWk5O9dHBW73gKqZK+frVhO5WkHdtU+3lPheAJUuDi7hoi761kc6mYfbYJwEOFBor1fglWaKd+UuXS8VpF3TDJob33Qsk9/Cs0wFd8ML5CouWSfBOZy/owzxrOr7Li7zibw0XzbPmk/jZW9I86OskR17AgBkwPe4J0DP/W+tnm3VtYPReDMcGvZO4UwHmo+zL7QTg+tdaQNrZ86yTVNnPtahHTHzVBuDbTfiUJ45wGS7rqxryqG2ESaPSg48Dv8A6DR7Ttt6ADLamwN4E+Cw/pKdafL616QT3/lWaurlRJZW7BRj/LsB0M/2crsmOCC6I21Il6aPYvRc+i6w57OdQUvlFtfyqD2cKnkAGgmFpmatHVgiQRxuqZd1YLkkT/PQQlMD7HAXE4WejYgv5Sop645LrkgbNl+Unnz80fTNRx5iDRAjBkxu0OXJ6TRip3ceMW4/+bUN78HOK5xe76asFGU55EYbmD0swmW3q9AE6KHPk9dFRUgZ1gWM8k03Yhid/YqC7f/F4MPFTGBe0b4pbWG7ziCDdc8IAzMcac9muH/iy+R3clJIG9+plbJOTGh8YIr2Uav3evZqDgxghIR/fhslB2PQYHhsOh08OpGeOTyenjw0xu/D6cptQ0iknRy6jxIumTL5bccxuN87fihdvnsn+zDfnz71uY+hIMS2GLYCPbLncbhdjSS0ILK8grbflQ4PPcj3b8VqEcYL5sawAMUe3/Wb06PPcDTgRF+6ePsA7aInS2xcjrA/BYjalqPP5o90ln+iL1jXSEvfNnnKOSTwbAggbZu9ny0x6BOgCDfA2v8skzzF0Iq18+SEcOHyHX8gT6ZLJ5Od6anDTCrU5VDDV67VfckaYxiF1pLQiZlc9nMnCZbnxdQzylT81UeBZjkcByIHacFMsPDytw3dBuF+TS/Flv52AA1APV3DiIYdncZ4cmGRfgzAdiyBKNIyLzlkuUBFmoKf2rOKewUmOTNFrSrcCHoCqZfxIw/zETBdS9QYwz64Srk666ASkQYM1N51zVMQlav1vdq0hlWj1vSlSYB8fD47hHXy8p3h5WalidyuwGc5QnwtHc1TzlJOUxC1/MZ3UuD6jWW3XnLaajVrFEIw9juY1nMGhSjICr5pSdu48oBFGboYfB8b6kDTspG69aX9aTA9sQerOEefQYmEY8AA1C62eGhCTaWTNraANAFQTXNDqWcGpZ/mvrxZPnNJzLgZmRg1GGEAMBVGFgCNFraqLCpG9S2vG1kTayLNRmbnVCTX04F9to09jb08d7BnlHLmLpAYZvN117APFBHavkOsOw6grIE2aiec/gAiYfR5xk9cmbZju/RKRJy/jUh2I3v7TpBnPwNaJ8NYB/m2kJb0bcDUXzOm/txIv0g6XRhg8GQRlYU9/myOb9m7eBwgn0+9fJMWgMsyzFOvVsTWl15zQxrYsi3d98AP0lMH9kMf9nFSXuA6bVkYQdTNYDpD3eaPpUEMRXSs25KWOtexQ5OtXHCj0+z/bAF5F907Svlky+ltiLA52aQZ27wqH0FL6bAJTn8UjuebJybT5rkNaT1KLT0orPTsn0q7MMy/6yIMFaA52ukZp3I6ELhFO7WcmK4i14aNrElzUsoEVqLGAInjY7NpCHHqKKw6Ntj5VNStCeteGzgLE8Cbxz7v4tIBaiLI+772HU6wRjzPOuj4KApFW7am977759JtX74tHTryEHEW4EgPpst27SA832rjDtpKRzo6/GQGonY4Ys3y3fPQiXRwcmPausW9kr15bVAJi/3c72KbjP4efm40L+BPtb17H5dJxb2+bniIbz7+3TQ+hiY6B3S3Qr9uJA95P6ltkSaYiXHS86fO565lu90oi3cX0KjuYGLjvIzj/hZZb51TrZoJWwuT0tznTgJnfRlqKZa/a4UCDXA/TNqfOxt00PYSIAQCwcjBXWAS4OTQBAIbSuYE6Fi6aKh2Ru+DQ1MJR0UZFWJcF/SdcQ1nPuFUzJH7khuzw/nOcGq9CiY+F2AOHjyYAcn1VH+bdoCNHVRQFlwtp+UVDNWyFYDt0AHY5r937968p9Twgu2uXZi0AwgFreA+gz7hSwfBV27ZS7CT23Qd13gBnoYPZ17mazktv2EM63PrLK3V4LWcArp5WP9qGpHWmfim6xXfx/SnGdzG2csnF9XaMJ0eO8BB2og8Z6c17qAxDKfSirkYTFFSaWOdp4+TUBQVtgIGnQzUfawBtsLFycEKuJ1cbQwaDiCC7+AGDBLURmRGF3lCmEFN7T0yjCEABjDSnwfY2jEaQKvLZbSODsgz2JttBYAE3BPDx9Njn+Fc164tqXlwBnu5CMoQ/T49ck0amdmeetuwaNVzJN3fzokvHPA9hsmiIcTTIwDFEU6fGYElxaYRZ36y5UBFo4mGdDHarn1Nk9h0bUwbAeXtgy1p72MHUDp7MC0dfDpt+okfT1e85rWgK/llnkJzeiyxUl9W4tO37v5++urjR9I66NCLJupTYwvpxzY3pot7FtMdxxbSI6zhJqwypXVo9gxelNYxEenGBN7AMSwwUaZF9mzOoZAz1zTGwKtI1okIDiK57cY5hE1GqmnovRN6DHhQupMZFtwG2CriIeEO/usR124YEACYPDY9wzFmnHxC9kcQp44iVp+HDs2sr3YC+hqXVwSp8zudAKSPYyBhfHgfa6/fIk85dbnRpXTV7ovR1G1NGwHPLZvX8736WFvdTLsZT1/6yu3pkce+DiBelF59zfWpv68nt9Nm9uZOkqZKNmMTremRw5tgmTej0bs+90H7nJNX+2WIcqMvvdD2nStT9yfavL59x75mu3fMqU1WR6j3aDp88Jm0ofWRdN1V65nMbqUtI0kizvOVhSDZ+Y3sV7NLaOa2o2SGVnTbwt6056mR9M0nLkqX7rqI8YdjBE/qSVhn+/rzpV9XnfLzAqFAA+t1uWnY8MJVG7gfX+d7G6Nck5e/bSSCj4Dnbwd+fcFCX85LLVwbsgDmOqagFpyn6ebGyHvDmK6co8B4ySWsTcHRmYbAuHPnztwILZu/TT/yNG6Ase8tsw3XcFEXw5qX4SynTvDz91e/+tXMIVo2RbqCWACw8XXGsXwB4k4qFC+rjSsIGs5ymE/EyRErf3xn2aL8ltF0BWK5YOssLU1npTQqyT3vrflZP+ttPgK3aU9hXWYSLo5FUdYia4YXIpwDaQ6f4yBwZK+f4OpzfW2SqnyxyHuBz7U2hJZZe7eXo8l2bmYtc0dv2rqpizVGNFYB4AU4o4V72SvKmuwc2qOtgG0GDv/gamCK0XLOLO3kIGS1jTyX8uiBY2n40D7aC5wX8PPM6KXp+OxOtuMMs9l/hHU8QAMFooNtiA/h8rQJDM+J7VaOzuITjwOsI9MofKDtO8zZkCcWJtOlrKMOwgF3sZYqF/E33zieHtjHZOLI/nTdNTvSeo5x8xQbtXjlKORaWRLLIDSCubs//cJ389LZYUSWv3xtV/rAjWzbmB9CMQf7sWjKPgmI3c8JI98baUrfadkCqFJHTi5hjwls+XE4QZBOsTK1rrkaDZ79ffJxfu+kxrh96frOzWkn8Xqhv/V0O0krE4v+DXCg1ElIVoTsnk3XTjtQrlLEroH8pibFi7UJm8Bi242J7eLkN5goHOBL1JRqrty9k4kTyoEoE11xxW6+O/Vv38ykWY53Jn3zO3enr33jf6bdO24BSK+msLYxrYA1pSeemk5fva817dh+UdqyaX02LtLNftBu+pVjQn2fPBdtPKhV9aPd26brgXSMPjyEctUxpC+vu3IhXXIxYnhoaj1cYzaOzmEvl0/6n/xUcqLeGjL7tNNZ175bN7KcMJYefezp9ODhHdBGa0WaNqydPWx/l/7nq765wOXPS0aBBszfRS9ethA2SJ0NwIYgZ2hDc9B37VAu1YFf0PGyswiErv95L8gISt4bzysaeaRr2pG+Hc1Z4xe/+MUMbNqSlcuT8zNefUOMxhnPo7zVPHIF+BPvBHHvXYNUg9Y1VvMQaBTxCtyWITqgecQsWsC0PnKMzq4FHMOZXpQh8lvON5w0NE3pZ15OLjQuL21M70zSWS7t+mfm5RXpWj8vyxucp/lVw9Xu4xsR328GWJ76die/oRaPBFKB1WPSTPMEtmc9Zm2Wvag9nPiyfbA57d7amXZsRgzJOZbtiA/b4JyeHZWixAxJpIUl2dTajZaw4lfEng0AwDjShqEDezC8sCGdaNiZLhoYTT2diHUBS83Yyb09DVc9hJgt83X8drtHK0bFOxAztrN22I7fxO/9cFNPcSSaa6PN0H8KGedtXz2Svv7MQvr/XjuY3nzVRhRlRgBErAahKTs6h0F7OLoxzr9ERQmRbEt6aM+B9Oef/kH692/dkN538ybAmx01x/ZjSJ7vT5rSbxYOfJK0j4yeSE9MscZ+YAit12FkzNqUJQJldLMKUu08IOvr6Ab8Vgoghfx2tedTTHSm2Hva0LQRJbBuTPU1pE5OxunEZF8bYKk4tYMJYeY46WeulaooFqBle7NN5bIxiQoQPXz4aBo6/ABHt91OhrV1+ivhRPuZncwy4bmM9ftetvFMs6bb1aMVnxo3+93v35c+/6U/TTe+6sfSJTu30wZsT0vp9ntBHgBlO9s7+tje4SS7yoFWJ7Xnqo3XKPTcv9Ge9W230Y9lAhyvHEuG2e87Pjacdm5pSj9yGRIruG8nmQKqCtSQDPG/e2Dd18unYya1xLqxda39pq6kv4RxjTlsJre2d6O9PJqeHt3EGvBm6q428rOGFqzv+azzcylQfv0wKdAAF5S7agySZr7Sx7ZRhgsgsJEpVg1xr+JRG6mKO3JqDtJyP/pVV59HdHTBSxCWK5RT9GzNbdu25TVS06g16uc2yGq5Io9IPzqUvwVy/TCKYCN3m43gbxl1htGZl4CjbxwHpKiztKq+i7xyxLo/1bIZ38uOLFjr5Lata+R/urTqkn7en1H38K2LZQ/f+3gX5az+9r4axvvn/vaUj9ozQTkrLjHIWJdJDJyPITqexA5aM6buBgHVHvwu1v16OOiyC/TpYR22F4tAHgPWCbY2o0yzgGk4tIzgtNxaQNoMYAcOHcUQQBOGIOCK3JcJsAnsvMrrgrNwxodZG+1m0B7EuHk3WqCdtJ18nBvfrlanjFhwixxTN3KMtUq4aB79wacOpFu29qSffdPFgA8cHXWcmhxH01hDFgykaPfOwWlNA37TAPtR9Mtmh4fSLbvd1tDM+ZRY+xnhBBy2huQ1T0qlKLzB8nWzN3pwRzoxyrLDQ7cLw+yVpX2d7EcCpZx8hk5pze0cFZ5FPD3FodUTWkLCgMXEEkpdcJlzbHtBro1Il4kBkwOVi5zcKY7UIIBtNC4BK9qbbcrLb+e3cQI8OjqCMtuxdPDA02l29IuUGW1tTre5ctf21C9wMpHYzFrwdgDBPpeaUA5ifdoyqwj2yON70hf+5tPppmtfnTYN9mKQfi59/8n+DCDr1w9mALV/2YerfcdGG+Xx/ny5ajuOvmzdXaKx/00woRpWtHv0OBM+jlN75bq04yJsFoOg87Q7v4rt69kRj+9jW492R9tYcHwgrHth3SZzz0NMpluQuG2qLRs5gYi6/zDqfL5oWdI9PQUa2I6xZGeLxu7HFiBshN6fztkpDWNncV3SA74FPDkrwcgO7jsbU3UWGg080reR27DVUHU26NqnYmLLZaO/66678sCvso9rsXZq45xJGeX4bMiW1TVHLQCZh4pLltV0TM9wOtPUWbYoX5Q3/Pr3OcIKf0zXeuicaEgnZ8Rys4q4LZdliLxWSOYFP44yr+SbsO/CxX2Ej/fxu963/HFZD9uOs3UPdNaaj8dgaVtVLnWKdb1pfnvOo4Ar8DYzKKkE1MU67DpEv/OA1gniTjE4qdyDLhDfBs4dYOIR4CpIZdjJI1wuD2Vo4Xu57tdJGp0o13SzdtgD2PRioq+bLTntcLUqBXWgRTpHOZ/CaMDDxzAc8OhU+pmbt/MeQCTf2neoGfKfHMdgAtyHoGFXEBgVjW7idI/J8eE0h4arbWuK+6bpYTDUrTrUGbhsWrcDJSNMJjAoa+h/cvhIGn3kDrSMJxV+57rMoa47BWCeACwnBEtEgxylDcBjCYetE1rEabYfUfaOk7739i25TUW13lsG+1cVOG13ccW39Tv5fWx/TnTVUTh48EgaOvgdtuDcBWD0pSt3b0vrUBKb5Ru1Y5XqsssuIX2PFgMsOtm6wskpivHd0rT3yf3p3u/fk3Zu28xeUM5vZc/xVrjQ/v6BfFRZOxIqy2f7tyzVPhVlOp9+ta1ad/u5l/3ficQkRiYmmFQdwci+pgIv3twEmA7m49JqyxpOcihhHgbzn1yH6C72GrfJyLV/+wfHOSyhk/pj7o/tPjGB8JvUf4fzWeeS9g+fAs2ujdipbOB+cLVGBTAb4OkGdxtldF5Ft+6F1BqQAGp6cpR2VJVodHamaFCCqh3LcF4CpQ0t8va+NhjXjCHceuutOX1FvGqw7t69OzdSy2wZLWvV+dw0dKYtd/zEE0/kDqTWq9yf74P7C5AzvHEjvUhH36veSYPlXIT3vXlIY9dS7bzWcdeuXbn+dmhdlHW5tF7sM8sS9dGPe9Ot3lfzqT6Pe/24j7jxLHzr6/eIK76hfp61y61W3nuvpq4an1qMmYajJJPURpk7Gb3UPpU2eRzL9Pc7PFvSyFe/llZtzXYEuh49Mcv35ig38szcE/G6AVe1Rwd7MI4BuM6xxvmqbV35u1hGQbiZfKVZG/syPXx6gu0e01MYn6CJUVS4YfYTUqZ2rCN5ZNs8RgiygXzAvREAXWrlFCNOwOnohqNmzSybgkOha57DqUd7X5mOPPlEmuRA6AkMzE+jVTznnlDAsgkglBP2nM4ewbGZ9Vju5XY9b9O+owKPfvS72rNnOU5plekVdMOvtlu/j7/1nTR30Q9d6xwf3c6EAFu9GpJA1M2XJh0NPAg0JwDFXsCCtsyWp5aWi2i7cOVwqhdv34qiWWf61vf2sgbdk3Zs4YxQNF2zCJf0q30+yhH+s1/x/N2ZV7QR772CRvb5TF9E7E72+3phBLDo9PmvH0pXX97NKSwaX8CMopYwaF9ExVcyUevzPOJboERI/77z7iMcNN+OXd51ue7BkMTkIb7J+atpSfmlpEADVnpoZzWlILlB1+kc3Hfu3JmBShCwERgmnPc2FAHQLSE2TvdT2mkECsPbwX0eQCKYxQwwGpXvXE8NbtX0HczCGT/ytaELzBotEJhdtJeTE/DNNzqI4R1QBS45T8HL9AVf1x1t2JbDcMaJPMI3b8uuizIH0OeH/LHcdkDFsNZFV41v+sbRl5axZuwM1fytY9SrGi8n9BL/iXJVi1H/LH5Xfe/jkj5x+S2818+X7xSLqZzEfY4TPmk8x538Pj6TTn/LmScPa/nW0lLJxbVa01bEJserwf3MgcAJO+hNwRnLKbeCjAsZ6NCEhROVi+1mbaynky0gmPXrwdKSnCsJYoBigm08aMQiqsyjKX8Fz1n2aJ4YwvLTsT2psYuTbjgBBMYEUfaJdHxiJh3HnOEx9tNMoLW7wDYbz/qUi5SjbKcNCdwZvDNIAoiAZzMcrb5cr+3l2cvfNclGPIu+FL50ikt6Bd3i2/gNon3aR+RGDxw8lIYP3sm67ffTlZdclQ9rV1vVdroeoxM7L94GjWvfbKkRcTnKX/7Wme+n/uZgGp3uTrsuRiMZLlRpkeOD/bK+XJbjpXBR/2pbdGwLWgRnqohXMF3XNZ9uuHI9RvY5Xg+aZhOBTMdshraxDKCs3d9xzxG+c+updVDHJceFmED4neIbvBT1Lnmefwo0PP7446e2uESDF3jk3tRUje0X0RBiJuyanudZavhd6zp2ODtohLPoNlx/R7ree9V3JBt2DKjV+NXqGydm3opFBUgHALldB0jfRbr6NmaVfyy/ndp07TS+Wy4Pn9vgLatbXUzb8IJ3gLS+4czPuhreeguYpulvBw/DGC/WdY2nC/BcLv9qXVfjfdBNv+qqv71f7opvu5JfjVNNO+hU7xtmpXyjLYXvd6rd17hCwTuv3fLc7+g3EWRnAVgvTzNRuUTOWa1j7c52A6hgWlrPWqFiYbnSbBCeAVVx6xLHws2w7jkGdznC/sxRLNvMIpZupE26XlnTlBU4BVC5SfdfA6gCJ23GduN9tL/8m2e2xfpLWkR/Ct9n9TSK31V6SjPpkScUTPDsO/b1Ixx5dmD/I2l+7DPpmksvZwLhmnNtPbwFE4SXX3FpBnqBk+gcGbeFdt6RabJ3/3j67J3sYd25lf62Ia+FVkEkylgtx0txH+0l2pp08PL728+dMAukXq6XHhtCwQxN3t2Yo7z6igE4bixgIS1RzFvjQOfTnfccY5LUnLZv28R405fHHOtu33eS7XesfpuXot4lz/NPgQYMGZwaFaOhOejbsDSvF9qoNjid2zw8M9NZbJjDswHqluu4Po90vV/JrRS3Gj7SsWPaSI1juRwkdfo+870NWGcnMYxxfb6c850g7OCyZ8+enI5iacHX5xEv8o+yxu/wTdt3Xj7zirzj3XL5X8jPqnW3HvG76nsfV4Sp/x3P9XVB4/r7/LLuT6Slr7MdeF/1vY8r2ox+9T5rG+dntW09gqnruoKrImeP9pqDu9U4RORFjXMbURuWLw9QKjJGRKhINgNmTRwrV2lbCoCs+rav6mXd/R2+dfJ+uSve6esMs5ILmgRwCBj2ZxUDD8KNjhz8crpyByfCYE+4ZkPW/rOQdu2+hGUIjbLYv1ybZm2556KssfrFu46lY5M9aScKSFUudDWCSHwz/aBFtAFpIlfqWOYk3b2046yXHj3GOaoNM+lHLsGAPprm7o+enFpId98/xmSpla08A8ltPI4VAaDxneMbnu6brPStyvMLhwLNdqB652BjQxBAtcSza9eu3OjkPhWpup9RALWRyIXpn86dq0YU6dgBbPD61bx97zM7hp1C57O4liuj4e3wdhy2+2SlJgFUV01nubjxrFqueBb+6fKOMBeyH3WPOsRv6Rou7sP3+enuI42If6Z+pKlfvbc96/R9XvW9j+s5gMrz2u/gYI3LBYDmdTGqRy6kKnTWxJqKWhXxBkDGYBq/w7d+ttu4/L3SZbmDHiv5hjlTZxrma9mcLNeWUzCggnGAualXAhjf5UIRj7VRasXF/mis+wwMsMZrjeGwG5Yww7gwxlm0HenwaAtGGdZhqB6tYaQwAZ7mEXU607Kd73BBP/OJsgU9LK/fR7pYB7lJue2ebo3vn0iPYjVqlP3Ou7e1YTYRUXeDmsg91LtmzU06Ss/45qux/uebvi/X9JsFyeWcA4sNwsbwla98Ja8puq4osNpgBDGByob3Urhqh6jmH8/Dr76rv3dAtbM4G1fxyGPH3Ntm3XTRwerjrfT7TPJcKe5ae74SLQLcqvVd7ln1vffLpbdcvOqzuK/69ff+9qoCa/wOcA0/woYfZbRsXvaVuOwXcV/1I2y9X62j76q/6+/zyxfwx3QtezgHfZWA7MeKKhcXruAwcMwSzuzHShOG9TGFqKWJSSbO06z/yWVrX7kZEfcYZ48+sK8JTVSMKtBnVCha7SAa9Q76Sgu/jd/X7xV+gKjj3DQat90cXzeHNEIa7DvKpBtx93aO4HOLkXX2kpbGi28d3zfyLP7apUADeyaf7VV19bRR2TAEGZV5XP9UzOsM3cbyUroYDKJDRFniefzWjzDVdz6z4bv26RFoGoVwQLF+L3XdqmUv92dHgeo3jpjxLHyfx71+/X08W8mvxvc+Bsyqbxuq/q7eR5zlfJ/pDH8+XNTJvu3yhVdtHbBmhOD4yFgaGxnixJOjqaeZq20EHB1PO3dfljZuGMAmL7ZzD8GNHevhDNEBFK2wzAOIxpYO+5SAVF/f81GXc5Fm/beXLo5vXk4ugkbeK+J2DlJT7qpx8o6PXtY5Jk5R93NRvpLG6qdAs43mdE6uTO5MIFXcKTdqwztfnfx0ZfGdeTtA2WDjd3SE+sbr87gMG+/1rbfgqThbi0VypHaYSDcnXv5ccBQ4XbuMdlKtVDwL33dxr1+9j3jxLH7rR75V3/vq72q4iBvv4/cPy7cPOfhH/m5tse23spbrvtrR8X7El1vRuuUg+HQ8tR2bw2Zxe3r0AHtIsZo00N+T+te5Doj93mWMKlTr/sOq0wvJJ+of31q6xPgSot2aWL8m9jePapgAznh2odT7hdCqxFmeAg2YnVuRE61GsbFoqEADBW7VEHCiAVbDna97G7kN1YYtt6hmoVtybOCuywqKil8cGHR2bMM6M9bXWWbjuv6pBq6cp3tGrZszzR9mfXKByp9VR4EqQK50f7pCV9tQ3Id/ung/zHdRL/uMV3BcTphVrPGggprPPUb7tdXrnld6IEpTrdjCrYkwOzgJJq+FMgG139nP7KPWd7XV+UzpG7TR9woaxW/TifpV6+p9vMs35c/LhgLP0c49Xa0FGsFH7VUPm9ZFgztdvHPxznzspHZ2Tfap3OQ6RMyAo8MaTlC1nDZ+fZ/JZeocGARV44VVEdM0jGnoF1cocCYUqLaVaH9nEm+1hInyB0iE+NL+4ETTy0mn1qfc12vPcFuPWsb2RfuR/SrA0/HBKwBmtdTzhZYj6KNfvY/0qvWs3sf74r98KHDaNdEqGWxIdpx9nJ2p27lzZ+5o53sAiXzdUiOAa+dWs4ABjNHAc6H4Ew3a5zFARBjfRUf3mQPG+S5/lKv4hQKrjQL2geplfxFM47J/VPtQ9B/7kFxnAGf0qbXIjcXYEd/O3/VjRv3vCFv8lwcFms+0ARjOTqUBBg+WVpTqvqjzCUQ2WMFSpSY5UE32uR+rNkN+1rLRSp/KMscVYRwUomNEp493xS8UeDlRwL4RfUHf/uAlQEY/CT/oYpwIpx/9y3udv9eSW2v1WUvfZrXU5YxB1ALb0Zx1CqQq5WipKDrRua6QnTcAVMP0Goy3c7tuY57RaZ8v3xgkItz5Km+kX/xCgQuJAvYH+0jVt/w+i6u+PtGHqn6E8dlac0Gf+nqt9Lw+XPm9tilQ07g5wzraQeQ8NaenVqtHlnncmesn57Lz2DgFUMFTLlQA1Zn3mYJnVOlclivSLH6hwFqiQPSR8O1/4ar38SzC+bt6H+/Xmr9SHVd6vtbqX+pzegqcFScaSblmsgsrRop1NQAv4PnsXDQqO61rr4qLPbA6uF3TP1sAjfIWv1CgUODMKXAu+vGZ51ZCFgpc2BQ4axC1gwWn6PYQDNinq6++Oq+hvNjOZ7ohsvVoNY07CNCugRYAvbAbWil9oUChQKHAWqTAWYOoQCegCWyaAHS/pie+aDLPLSRnC3amF8AcWn4PPvhg3r/pVhRFxT4vrlCgUOCHSwH7ZriYIMez+B3vi18o8HKlwFnb7ovOE0CqMXrNhqk9q7GD6GRnStAAUNPzEkDdwqIR+MKBnikVS7hCgXNPAftmXJF6/e94XvxCgZcrBc6aE60SSsBUi1axq4bs5Rg9+FoNWt/Z4U7nDOPlhm19LSJ5DqhWkeRAz5arPV1e5V2hQKFAoUChQKHAuaZAw9GjHEvwIpzgJ3gKpg899FC2BrQTQwwCoNq0PtcFoBo+fhvPS5HwY489ljZt2pS1feVAiysUKBQoFCgUKBRY7RRo4BSTFwWiVjCA1HuPFFO8GzZ2VRTSVcHT34KrZvkOHz6czfippKSm77neLmNexRUKFAoUChQKFAqcDwqcExCVyxQk9RXNDg8P5z2kcpQaeXet1Mv3GotXAUnfbSsCp2ugcqSGN0ykdz4qXNIsFCgUKBQoFCgUOFcUaOA0kxfNiUZhgtsM7lOOVFGtfqxvyoEKqGreajZQ8FTsGyAcaRW/UKBQoFCgUKBQYLVT4JyCaFQ2wDTWPKvP5TJ1gqmcaAHPoE7xCwUKBQoFCgUuNAq8KO3clSpbBUrBsgqU1fsQ3a6UTnleKFAoUChQKFAosJopcFa2c8+2IgGm4Ru/en+26ZXwhQKFAoUChQKFAquJAueFE11NFSxlKRQoFCgUKBQoFDhfFDhri0XnqyAl3UKBQoFCgUKBQoELjQKFE73Qvlgpb6FAoUChQKHAqqFA4URXzacoBSkUKBQoFCgUuNAoUDjRC+2LlfIWChQKFAoUCqwaChQQXTWfohSkUKBQoFCgUOBCo0AR515oX6yUt1CgUKBQoFBg1VCgcKKr5lOUghQKFAoUChQKXGgUKJzohfbFSnlXpECYm1wxQN2LFxv+bOPXZX/WP+vzq/+9UoJnGm6l+OV5oUChwMoUKJzoyrQpb1YpBQSFsHwVAOFvTxDSHrOmJuP9clUwjgcinOnhB4Y3bJyRe7bxlyvD2TxbLv8zqW81XpyQdDb5lrCFAoUCz0+Bwok+P41KiFVGgQA0QUIw8bfn0N5zzz35jNo4RWilYvt+YmIihxdcjL+SMw/B2XNv77vvvhzM+J5OZH6C9unir5TumT6P/I8ePZq+//3vZzvU5me5zd96rFRfy33o0KFc7jhF6UzzLeEKBQoFzowCjQ5C5So0uBDagE1aMJiZmUm33357BjIBxbILop/5zGcyqPgsANZ3Vedz33sg/Je+9KV8DF8ATNCgGt57wwui3/jGN/KrANGIH3lE/Hq/Pr368PE+4vm7em9+R44cSV/5yleeA6Jf/OIX84H2y9U36vnMM8+kO+64I2dRn281j+p9lKe+HPXxq+EibDyLsPXPq++rYSJcPNMvV6HBhdAGzqsB+ugwxS8UOFcUEFCOHTuWvvOd76Rrr732lIjVw98/+MEP5kPePZ82gFEw0Qk0uqq4t7e3Nw/U+cXJPwG+ET/OujVfz78N5/v6+BE3wlT9AIcoT/w2TPW+/rf5yHXu3Lkz/f2///dzvUwj8o96RRpRBn9b9iuuuCLt2LHjVFEi3KkHlfwjbtS9egJTxAs/yhC/lzvWMN4ZVhdgH+n6zDDmZ5gQw0c83xdXKLDaKVDWRFf7FyrlO0WB6mAsoDnYevlckBMsBJwYjH2uSFM3NTWVw7W1taXW1tYcz4E/XAzcvhd8pqenc5j29vacdnWQN47hjR/xBALvI+9I13gBdL4LIKm+D9AyrJfp6Mdz4/X09KR169ZljjviRvmjDD63voa3Drq+vr7U399/Kl41bA5w8o/5SRf9oFXUXS5fF+XSN6y0Nqx16ujoyHHNtxrOeL63LidOnMi+6RrOb2ZZTcNym6bPgwbGLa5QYLVToHCiq/0LlfJlCjiwOtA+9thjWazqwP6FL3whrV+/Pt1yyy1ZxHvbbbelm2++OXOjDvAOyq4lfv3rX0/Dw8P5twP3a1/72iTn6mAfl5n47oknnkh33XVXBgh/C9amL7haBp1xwgkOAoGi1auvvjpt3749xw0gscwHDx5Mjz76aM7TeK9+9aszAJueZXzwwQezuPgNb3hDTjae79u3Lz3yyCPpLW95S3rqqafy/Zve9KZT4Foth3EEsscffzxz6aZlWR566KG0f//+FGlHuau+cS2nol9F1q73Cnw+k9t/5Stfeaq85mmdXR++++67T5XF7/C6173uFGBLL/O1/Ndff30uk3VQFP+qV70qh3W9VlqPjo5mkH/Na16TaVgtW7kvFFjtFCggutq/UClfpoCDt2C1efPmPLC7HnnNNddkwHTAl5tR8cYB27ACgIP0H/3RH6Ubbrghvf71r88gOTQ0lL72ta8luSEvASRA6/77709/9md/lt71rnelSy65JOfrwP+pT30qA5TAa9hwUSbTkXP99re/nblhn4ezbCoAGWZgYCD95V/+ZQYKwTNEoJb73nvvzeAqaAc353PrLJgLNAKSIKqr5mGZBFAB88///M/Tu+47eFYAADV/SURBVN/97rRhw4ZcVuMJrG984xtzvGr5fRB1F7A//OEP5wmDYS239Pv0pz+dQdXJiRMT6eoa61e/+tX0nve8J23atCmX1zr+yZ/8SfqFX/iFDKSWT5rceeedGUwvvfTS9JM/+ZNJ+v/VX/1VXuP1vROPiy66KAP4Rz/60TzReMUrXpHBtlrHXPjyp1BgFVKgiHNX4UcpRXouBRzoHVAFFEWTgo/ckJyWwOTgros1St/5TE7VQVpQNK7xHPS3bt2a/viP/ziHMawgJfclYPzdv/t300033ZSBwTQFba/f+Z3fOQXQPg8XZZOLEoBHRkayCNX8I1252/e9730Z2OTQBKddu3blJMxX7sy6+Pzyyy/PZVX0KSf3tre9LYeznNU1WR8GIJqPgPvJT34y/fzP/3xOw0mFzncCbNUFOBlfsJSr/+xnP5tuvfXW9OY3vznTSXpJK8XBf/iHf5h2sia7bdu2DHZy3R/4wAfS7t27T9FQGlvmL3/5y+m9731vzk7APX78eHrrW9+aOU8nB1u2bMm0/v3f//30r//1v85llVYbN25MTz75ZHr44Ycz5xtl1A8aV+tQ7gsFVgsFyhaX1fIlSjlWpEB1QBUIY43OwdfL917B2Qk4cjyCkCJGAUGg0negFxgEC58Zz/ByYoLNVVddldM0XQd9uSXXWhWHCkyGjfwssL/NV6AV0BU3C1w6QUQAFfjlDOU+5cjkDE3D94p6FYXeeOONOayAEc9NW9DRGd7yV/P2uWV+4IEHsjhZxSpB2DJXw1Xj+bzqzEvwdquMXLx1lr7WSfrIJX7oQx86BeDWTy794osvzvnE97DcTj4EwvHx8UwX0xocHMyg6L3pGc71XensZCa+oc9jzdf7avnry1wtf7kvFHipKVBA9KX+AiX/s6JA/eC60gCrGLO7uzsP2A70ApJOX1AR8BTPeq9zC4mDupyizwwXaTuoB5h5X3WGMX3judbnWqEgJIcnQPzgBz/IYmcB1Lhqy+7du/cU0Anepi1XJ+gLgOYt0PosRMhRlmre5ukapmJQgVpuLiYY1XDLxY33vpN7lotfqe4CqVyw5Xdt2XyCnsb3kgZOTgRluWuddPRZ1D1oanjTizTiub551NM4ylr8QoHVSIEizl2NX6WUaUUKxKBtgLivDro+0/lMIIsBOp77znvfecVzOSVBJAb2eB7hBQefVS/f6YwjiMgFut4qdymnJlemOPOyyy7L7y2TIlHzcpuOoK0yjyJnOTZBR0CzHHv27Ek/8RM/cap8UZ7I3zzl+Ez/13/919PHPvaxLEo1jhxfuGq8eFbvW56gRYSvhrFc8dx6VsPGc305cH3D67yv0j/C+s6wQWt/6+K9ftzX3pS/hQKrlwKFE12936aUbBkKVAGzel8fVCASTOQGdRE2fDm2KtjIiQlggkR1AI/wGmeI+/q8/C0QKY5UXKu2rU4xq7/lxkxXcJEDc/1TrlNu2XhyxYKKa5ByxAKsYeVQfV8tT06YP5bFOH/n7/ydDMBvf/vb0+0YoFDcGhxlhK33jRuX7+R2rZ9l1EU99c1bEbiibO9VkPJ3hMkR+OM7uWjLa/7FFQq8XChQLBadnPU6CJRrddPATuk30gWHEwN99dv53jVIQeHpp5/OYGM4r4gnlyiQBjfkuuc+RKuxFUYQM7xApe8WleDATD9c5Otv79UYlot0TVaxrVxmvVOkK4gKeHKjgphuF8pGPjcvwdfnAWzVNIIGwc1ZVsuv9qvauYpT5ZxXcr5TxGrdjat41jhuB/Kd9fW59/r/+3//77zFxvTMx3ILmPE+6HrgwIH8TNGyLmgTfn5Y+RPPoz4RpxLkb6VRjVPuV3d/fbl8n8KJVntsuV/VFIjBVvCQM3KA997nDuS6uFd55Ud/9EfTJz7xiQxoclBySIKHIKXYVe5TJ1C57ie4uf1CDjXCC5zf/OY3M3epEk/kY7woj/c6uTBB0XRNRw7TdIObNLx5KdK1/HKOrnsKZj4PDtX9l27zqHfV/KKelsd7JwQq9pj/5z73ueeUrRrPvFy3dS3VuOarYpN7V9VOlsu07l46txIZR2UiwyqalpvWBKHPI6xctRq+7sGt1waur4e/q2WK9/Es/Hhe/EKB1UyBsk90NX+dUrbnUMDB1YFckHLN0T2X+g7cckVyRzrDKcZ1b6Prhv/9v//3dN1112XOTm5L8HjHO96R9zsGCBnnne98Z/r4xz+e/uAP/iBdeeWVmfN0zVJO7ad+6qcyB1Yd4EMc7DMBRVAXVOQ+f+u3fiv9k3/yTzJwC3ARzzACvOD6ve99LwOqZfC5HJzxFa363rqars4w1sl0Ii3T1fnb904o3CNq3gJyaCZHPMM6KRCk5ZbVxjV94/7Yj/1YnnC4ncXym5bKTdJUc4MCY0wu3K7zF3/xF+lP//RP8yTA5ypQmZ5axk4a/B66qHu13Oa33HNpUJ1w5ATKn0KBVU6BBhrzc9UNV3mBS/FevhQIsHDgl2NykBcgtKgjl6k4UTGuQOSAbDjjaDBBMamg5HtFpTrDu+4oYPhO30HcbSmuTQo4gtkuxKyCsdyWW1lMV05Ska2/DScwmKflMP5HPvKR9Gu/9msZ8AMYzNNwxo/0TD/qZTqCvGVxfdT0dD5X3GqcyN96axRfhaSob4S17JbPCYZlFpSNF848jG/dq3mbr2JuFaOCVnLKph91sPzSSXCV/io2CZhy116+D1q6bUbxuPlYZ9/V16Wav2kJrtW6R5mLXyiwWinQQGcqILpav04p17IUiMHYgVkn2HgFGPpep+8g7fOqc5D3XYBmvPOZaTrQV50A4nMv76vh/K0zH51xNXqgkysUrOJdfsgf4xsu0qs+Dw6uGm+58KZpGlGXldJYLp+gR5TduNU6RVr60tU8qnWolqcaNmhj2GqY+nyWK5PhLZdxq+Gr6Zf7QoHVSIECoqvxq5QyPS8FHHS9dIKRzt/VwT4/PPk87vUjzHLhI90IE+Ejr+rziO8zB37LITelNR4t+qiEUwXDahmWS8/3Z/M88q+mW5/Gcukt9yzSiHfxW79a53huOK/qu+q94SKtF/s88ix+ocBqpMBzp+irsYSlTIUCy1DAgbl+cBbEYuCuRqk+N06EqT6P8L6vPo/w+nEfYQ0XHLDbUtyrqSjU9UXXJAVW4yznlkvPcGcTvlrOah7VtKv3EWa5Z/GumqbhglbxPnzfVcPG86q/Uj6ne16NX+4LBS4EChRO9EL4SqWMq5ICATL6AqbbaRRVyoHqBCDfxX2+eQF/Ip8XELVEKRQoFDjPFGig85c10fNM5JL82qeAQCdnpnMN8Vy5KhCfqzRLOoUChQLnjgJFnHvuaFlSehlTQLCTG9UF93kuyFFA9FxQsaRRKHD+KFCbOp+/9EvKhQIvGwrIiQY3eq4rfS6B+VyXraRXKPBypkAxQP9y/vql7ueFAucK8ORCvcKdq3QjveIXChQKvHgKFE70xdOwpFAocF4oIGgWce55IW1JtFDgnFGggOg5I2VJqFCgUKBQoFDg5UaBAqIvty9e6ntBUaAqzr2gCl4KWyjwMqFAWRN9mXzoUs0LjwJVAC3roRfe9yslfnlQoHCiL4/vXGp5AVGgCp4r3V9A1SlFLRRY0xQoILqmP2+p3IVIgSrXWQXR6vMLsV6lzIUCa5ECBUTX4lctdVozFKiC6JqpVKlIocAaokAB0TX0MUtV1hYFgvMMf23VrtSmUGBtUKCA6Nr4jqUWa5ACcqFxrcHqlSoVCqwJChQQXROfsVRirVFA7jM40Or9WqtnqU+hwIVOgQKiF/oXLOVfkxSItdDw12QlS6UKBdYABQqIroGPWKqw9igQXGg9iMbztVfjUqNCgQuTAgVEL8zvVkq9xikQ4Bl+VLf+dzwvfqFAocBLQ4ECoi8N3UuuhQKnpcBKHOdKz0+bWHlZKFAocN4oUED0vJG2JFwo8MIpEBxn+JFS/e94XvxCgUKBl4YCBURfGrqXXAsFTkuB4DjrQTOenzZyeVkoUCjwQ6NAAdEfGqlLRoUChQKFAoUCa40CBUTX2hct9VlTFKjnRNdU5UplCgXWAAUKiK6Bj1iqsHYpUEB07X7bUrO1QYEComvjO5ZaFAoUChQKFAq8BBQoIPoSEL1kWShwphQonOiZUqqEKxR4aShQQPSloXvJtVDgjChQQPSMyFQCFQq8ZBQoIPqSkb5kXChQKFAoUChwoVOggOiF/gVL+dc0BQonuqY/b6ncGqBAAdE18BFLFdYGBZYzpFBAdG1821KLtUuB5rVbtVKzQoHnp4DAJVAtB2DGjnf1/vOn/NwQ1fjPfbM6fp0NHSzxmYY3bNTd+3p3unf1Yet/LxfXZ7qVvudKaUS8+vfld6HA81GggOjzUai8X9MUiMEzBuT4XQWJeBZhgiDxPH6HH3H9HfdnOqhHGuGbR32+8e5c+tW6VO+j/OZVfR73+tUwUc/6Z8uFq392uvpEuiuVI/KLcM+XdoSvT+90ZSjvCgWWo0AB0eWoUp49hwIx4MQA9ZyXK/yIQczX1fv64L7TLZf2cu9Ol5bpnGmc5wtXzae+/svFNe9w1bj19xGm3o/6R17176u/I0z41XdxH++qfryrlsln1d/V+/p38VvfdMNV43iv833kHb+XCxfv9E/nIt0IU83fZ9W0/V2ft8+qLtKLdCJ+1a+GL/eFAitRoIDoSpQpz09RoDqwLDc4xYB0KgI39eGWC2P46iBWjR/vjFeNW023PvzZxIl0Vkq7vlwRvj6PxcXF1NjY+LcGcZ/r4l01Xn5R98dyVPOIekc5IniUt/55vA+/ml413XivH2HiPt7V5x15+j7yrT6rxo+8qu/jPt6tlM78/LyvMs2kn+Gbmpqy/3xxjRf5eB/OeNPT06m5uTmnVX1u+IhjOF01nwhb/EKB01GgKBadjjrlXaZA/QDj7xhsHISq76vvlruPZ+HHQBa/q351gIvnkV/8toBxr38mcVYKZ1qHDx9OTz31lLenQCbCRz5RhtnZ2bRv377k4P/QQw+lGPgNNzQ0lA4ePJjTOd0fw+qW8wVg09YPF2Xwd5Qj3lX9anoRbrm4y9HLejzxxBM574gTvuHr0/PdzMxMeuSRR04VIcLrV934+Hh6+OGH86Ogl/FGR0czDe+44470pS99Kd155535O0jHL3/5y5m2RjI9n9122235/vHHH0/Hjx9/Dv0iT/29e/emBx98MD399NM5j2PHjqUDBw6cKpJhvIIOkUfVPxW43BQKLEOBZ3vnMi/Lo0KBKgVi8HRgjwHQAWhubi4PRAsLC+nIkSNpcnIy/zaMYWOQ8t40fO6gGeF8b1zfOcg60EVevjOc4Bb5GF/uYnh4OKc9Njb2t+LUPzN94x89ejQP+KbrNTU1ldM2D52/T5w4caraltm4hjVfr7g30NatW/Oz6kBu2Xp7e9PAwMCpdFa6iXrG+/g9MTGR9uzZk6yHvr/N1/e6CBe/I77+cuGsg/SKdCKMvpfPzUsnaG/atOkUF+1kYWRk5FTdDS9o+kz66PSlgc73fke/cfyOcvoNjKeLyYHxLN8111yTL7nGm2++Oe3evTt/M0FW4DRdncBoezBN62RZdJGHvmHNS5DdsWNHuuiii1JPT0+up3XV+S2N7zc3fMT3Xf1vnxVXKLAcBYo4dzmqlGenKBCDSdUX5ASjq6++Og9+zvR37dqVOQnB47HHHkuXX355am9vzxzNtddem4HJAe3KK69Md911Vx6wLrnkktTV1ZXzcpC8++6788ApCBnWgdTBUi5CQJLru/HGG9P+/fvTfffdl/N0AHYQbGlpSU8++WS64YYbcp6m19nZmQHopptuyuENKzgY941vfGMGfDkuy+4z69PW1nZqULbODvhyLg7w1tOB+brrrst1NM//v737+7XkKO4AfvyDxb8i28EgO8L4OrFlcABbxhgJ8+AQCeU1ynue8ofkz8lTHpAsESSEQBbsgsCA4CF+iRPJiiPFGMIPoxCszGfufu+We2fOvbves3jvVK/mdHd1VXX1t+dWdc8528P5P/roo/NYBYUf/ehHu4985CO7CxcuzMFfIDhrivMXgN58883dxz/+8Vmv8RnzI488MgeC8NGbeUkf6pWuTt+rr7466zOej33sY3M5euBqESGoeHz6qU99asZa/v3vf3+mw8XYzQlsYfHRj350vg/uu+++WUbwk8ydhQg8YEdPEpqAa0yw019yPHffffd8uXck9rtn6NEfOddTTz016zEHGfMsUD6MW5C0OGAP3fgTLGHifsVnDuESTIqaLjYCexHoneheeLqxOpU4q4ceemh2TpyuwCRgCKpW+hzmpz/96TmQ2cFwvBJeOwb6ODTOWJDgQCVtHNwnP/nJnaCr7LGqXdjDDz88B1e8HD69dhdPP/30yW5IQOZYOVhB97nnnpvtYLNAzHGT4ZAffPDB2Snff//9c+C0m5QEB049ThYNjwCjb87YpczxalMXGIzzW9/61rwo4JCNMTskeqSq95hyJQhWnO3mH3vssdnp47MYODo6mjFWNyb8S/qWaGTMi4BuMZLH1ZlPAVoAhI05gZXx0WXXZkFkcWKM6OaEPnPFzuw46cCv3Xw8+eST83y5R2Akyc3Hz372s/mxrtx40w5bl/tF0qfgBktl95n5E9TDMzNe/qjjN9bHpwUS7BK4jZmd7iP9GJuF1Y9//ONZQ7BVCT6XVXfWCCwi0DvRRViaOCLAOcXBcEICqd0SByrI2SnYgUl2l3jsKAVYSXBC4/g4N2WpOirOLolj43w5TruJBC19cKQCmGRX+Nprr+2+/e1vz7sJdtkZRb/diyDIJs5XEpTSr+/n6OJQyWSc+NgqmJPzCJFuSdkORj/4BQB9VAeOZsynpfQXWcGCHXALTa5On3YBRMp8JF/ri6wdt2CJN3MS/i984QtzULMIMAcWAcZt/MaepwUWSRYH0gMPPDDnApx5Cn7alQVqgYuu2p82i5nnn39+lvehH7wS+xJQ1bUZr52pxZFFC3lzkERGkruCGxp5fdb50G6+YOm7bH0fTePGW/uueujq1AgsIdA70SVUmnaCQJxSHFUa7EA80uPUOFqBSSCVOFUOidPN919oLk5KYBwdFP0eAyZxwoIzB26naOeT4Ew2TteOggP88pe/PDtWzpH+fO/FJgEPjTOVImv3wSHTzV5OVQrfXJk+2PG9733v5HvOS5cuzbuX2EGWbV/5yld2b7zxxvz9rECYfqLnLDk5/dNdsVdH115TeEKrdTKS7xTZaMEBi2ATGT+A8rj6pZdemneHFkbRYwxkJYsiwUzdI32JrHsgAR4Oebzr8Xgeoc7M0webzIUU+1IPreKmL08XzJPH/ebIIsyiio0wiX30RefcwfSRucSTCw8c6DH3j0+7VYsG9+YoHz2dNwJrCLz3L3KNq+mbRYBT4axqQuMspewIOTnO1/dMHrd6TMZRCaT5Xs3uki67mFEnJ4wmMHPy9Nrl2MXYLXDenK1+lBNM7FI4V30Jdh5Hcog//elPZ1l92UEK4NnBsZ0OzlPgFhD0T45eQUCKjXTTayzaBXU0Dp1+zldd8tjTLskOGP9Zk77gyg72Ccb6zM5IHV175iR57aPSYj97YfiTn/xk3oFlziIH14sXL85jgK+xCH76NobYABcYCY50WSB5SmCO8JBho/4sOtiqDe6xC37BKv2r45Xk7IvtmXd0ev1ASGILmv6MzSNhQd6cus/SH910sUHfyubNDtmTFAspu+ejaSGWlL5T77wR2IfAbdPq7Hi5uo+r2zaPAMfCMUnKdnw//OEP5x/6cHRJAiBnGqeIjjePUKMDnR67Aw7Yj4I4M9+zyTnHOEK7CbuRBLdRh52L9hq0BAaXfqXIjOMgh2YMbFGWRr6ZOHxEZyVHTptxVZ60VX7l9Ik3ZTs8OAhCFiXG4YdFUuVLeamf9CcXOOiBEV5X7NMuAMErGAaL6MeTuRLQ2SVAKdsVPvPMMyf44YUrfvNYbV7qO32RS7tyrbM1KTxoZI0rNEHepV77jWxo0cd2cx+Z9Jm8ynW5EVhCoIPoEipNuwqBOJXkP/jBD+Yd3tG0go/DIqRdCi310FLXHl1yO0WOPDuNyJOLzJKOpfZKi57oSL9LusKTtuiJTNUVGp6aRnqVwZd6lRn7TV3g8z2mHWl2c+TSvqRrbMc72pS+q3x0alviDy8+uz6P2y1qLJr8wGtpsRJd8tGO9JE8vGt2VD680hKt0tfaK4+yFN7koc2N/dEI7EGgg+gecLrpGIE4QLWU4+w4nUqfK5f5lNMeevKqZ81xjX2QjVzK8trHWWTCX3XRU1PalvThS3uVWaKvyY9ykZVX+/yIyqPh0Gu/tTwzDB/pO7JD8zyG0NKn+pLeSlO2AxTkPXWQIl/55obpI7Tk6CknrzRlaa2t0o853/upPSl2pZ581HEWmch23ghUBPo70YpGl1cRiJPhlGqZQOrJ0eK8Ki300OTRdxb+UX5JZqSpu9JXyku6Ylfaah55tKVyaFV/lVc+SyIv0SdQ5Yc9efxYdYS30mq5ttNXk7a1dvSMZ5QLnT0CaHRUvlqu/VTelOXRGVqtR1f4jCHl5HVcaQ8tuqIn9FFWvVMjcD0IdBC9HtQ2JhOHU/NAECelXstpX3JOlTY6tyW5yq/9tPppPFV+rRw7kq/xhZ58qe/ouNYcNrmuVXbkr/aNbepje+rJ8WR+k6NJqY/5cevVn1Wn1n312rZUrrSre7qie4lvibako2mNwD4EOojuQ6fbThCIw0keh5k6xlo+ETylMMqM9VPEu/kmIpC5kZv/pEpHSz3tnTcC5xmBKz95O8+j7LHdcARutqOsTruWM7BKq+W03+i89lHLN7qfD6o+85/rg2pj29UI3AwEOojeDJQ/IH3E2Y8580baafXI4Bt5b+Rwl/Rz3iO9BvW0x8a1PHbH3ugMPfkoj57+wjPmkUFfakufycOT+iHz9BXb9uXsqPzvx65RT/pNH2vt4at5ZGq+z7aq+3r0vF/5fbZ1262NQD/OvbXn75qsH4NLraecvCrmQJbolRYnQy5l7ael6I7cPpnaX/ginz7TX3iTj/TUk1f5yCTHk7JcCn/olTYzTB+VN/xpG/OqJ21ouU6Tj8xpOT3pq+pWlsZ+Rv7T9O9rr/1Gb/qs/V8P375+tZ2ms9qzpCvyaVuyN22dbwuBDqLbmu95tNUB+I/qkv88n//0nnb0pXIcrbbajn/NGYU+5lW+lkdd2vwi1MELbM4BD2xGd6CD/zAf/Uvj0VYTnaGNfUdv/iO//6cZfMg4TEAfDpUIPbqrTuX0M/ZRxxiZ8OM1LvrlYwrfSE897dGLnv5rW9qTRz55bFevcuq1TV06C+00PdWWqm+tHP7afmzN1fbs63tfW9WnvNSn/jttD4Gr/zq3h8FmRlydRP7gnTjjP/RLnDWe0y5vO/H/F5f44sjGttDHfOSr9fCiJZA4p9VZsOEL3RF0Ap6zco1paTz0JUW3oOyYvuhLHr105Uzg4EOHt484UUgKPbIVnwTY9DcLlI/QY1vqdDl8wok68qS0p76WVz5ll5Qy/Y5pdOyh/0bjHjBO/cHEUYhyfMZQ5VKu+lLGn/bkoY16zBesxj7I1aROVjLP7I0MWvpZKqfv8MjRjL3qSXvlr2XtsUE/VV5bp+0i0EF0Q3O/9MdenYOzRDlVb8tA52Q4La+u8qYUZcn7Qp1Ni8dRcV595VLmeAQ6JxDlzSFk4pBqzknTKVC9Ph0k7z/vO/6PQ6cbr7NZ9e0YvCT9COLsiE2Oq3NqDp1kJYFAwI1s+o4eOSfu7F25ZOwwgEWSIAYDdDtQKQFGmcyIjyCLR4DNWPCyYSnFtrRnMWC3mwCnLXxruiKfPFhENjl5c2iHDWP4O1sWTbAw5gSNukjIWKKn9qO81B5a9GT88AmeaYvearf7yf2lzTm51a7ojpxcCj352O7tPUt9V/5aprPaaL4jr63TdhHoILrduZ9HzlFw1BwpR+WQbwGFU+XkvvrVr85Huzkn1VF/jnlzHmrOmnXQeByUsuQtJ5yxt7sIkBzWUhKkv/a1r83B08r+5ZdfnvXaGTpaDs1Lrr1twzFzAqz/4C94cqwCJ5s4M/2QydmpZAU94xFwjW0peVxqLIJJAiEZ/HSge2E3nPAaIycu4KjjY4vD7zl4Ozn4wDQOvfZLT014RpoADnvv5HRQ+hNPPDHXBfKayI19VFr04iHr5QAWFRKsBH9jgJOFST3zGCbk2GKMcFZGM2+wok+wjw3pGwYwc7lftJsD9ez62SAoWfjQxxbz6jxm8mRiv3l3H+SRvcWZevqGVexxH4z2kNO3Q/Mt7pKMXR/mjb48XYEVGXr8XVioKbsHjZk9bGZ/p0ag74KN3wOcA4cg4HmpNefBKQkMcq8848wFicenN2TY1XkrivNc8XIk6C6BhZPyFg4v5hb8vH6Lw9aHvuIYwU6/N254WbSLXnVvEvGolEMUQNC9MJpzEzC1xyZyHHDe0BH9FgFsExw4SzyS9vCoC8TG5hxYep3dy/Gz1/gETG+kyfi9tYXzFlzt1vQjcBuLnbTdr2P6jEP/5Mdx6zeJLWmX02Ps8JWy6wre2it/9Czl0c0mgcLh/vR5c0nebmP83tGqnkPY8eT1aYIaPLxgWxCCSx6nO3ReQDEvbHJpF3Dh5fIGH8miyuNbc5kxGacAbUzf/OY357mAXX1BNlm2OXzf4sQCjx7zT6f5FUCNlT3mOcE+eLKHXhh6SxAZ94tkTObJHAu0Arh73P0v0aUMQwsAr05jr3l3X3VqBDqI9j0wOwPBz46RE7Q7yCo9b+EAk90JB8IJxUFxvEl2X+TleCXOKsFEnVwSx5c3s9CZsj7IyOmSEiQ54PChC2b4JLqjn+7scgR1zk+iNzzq7I1T54CzUyIbfQJNUvqLfXJj5dgFdM5eoK99kB3r0Tfm7IE9/gTB5Ojaa9I2ppEmKFjk2GkKFoKiMcPF2MyxsnEEC7grWwjltXYCoJ2ZwGK8FhN47NiT7OY8tRC0XPRaRAmE5qBiaYxZgFgsCbqeAqDnHqOX3ZFjK3vUqz34Y08e8ZMVdMnQbSxf+tKXTu4liyQLIfrMtwWjBQEcMl+5f+m2kNNmnvGOc6G/TttDoIPohuY8jqEOOQHIro/z42w4HqtvDsQjNqtwTtOKPzssjpEjw8dpcaQcLMcmINutcOZyDopT5og4nmqH3ZuEN2U2ufTlUaM2OxbOkEO1Y2Ajfvaxmd7IcexkOVaOXG6HIRknvtggMNkRuQRRuxW7cmVy+raT4WyNkzzdAhFb7OIkNDaxA26wkPRDh2spxY60CdJ0wDttcnV2a0+iMzyhreUJjrFD3aUu16d81JcgV/WaS5iba7vbvKIND3l6ktIfTNi/lrRLMDcnNVU59kR/bEWLPZ6mCMRJeKq8wKkPix+JfbFRPfyxAe7ax3Hh7dQIQKCD6IbugzgDQ44DEgTsFjhDDkPA8EjT4zJBSlAREDz2sgIXYDhPjkxg+fznPz/v3gQ5j245J8GOoxXsOGeP2SQ/tiGTxPkdHR3N1ewEVOhnk5dyc4i+h5LYyNl+8YtfnAM7/Y9POyw2GYegrmwxwLGr+9EQx+lRLVvyCJA+eAhK+rC7eu655+bHk+xksx0vO9CNz3dx6HYjMDJGuysLCP3gJSNwS+jBeSYsfMSB40vZuD0mzQ9XBHj16M08rukOPbk5JC/wW9TAB97mAo+5TGCCkSTXj4CThN/Y2WcRRdYix32TxEb22v3CFPahhSc5/Qlw6YfOlMPnPsmiiZ3BiT3mzwKm2pPFGHn3BT4/zrJLzvf2eNyn5ssTGNjAyLzSab4tEN1jbPLdtHvHYiz3QgJt7Ox8mwj0q9A2Nu8cQpxw8jUI7Cg5jOeff/6EpcrU8gnDVLh48eLu2WefnR1u6Jwfp8oBC4RV9izl6FnKq/xSe2gCA2dr1yLYn1Uu8smvRQ5vUrBPPXnoNefUOf0ELoGIw48+vFLq0SWvemKrIORJgOBp4YEHzYJFoDM/9Jtzj17tuuUWAoKuOcOfsvuCnPmEZ+ygV/B/ffrOUPLYU59kLTLq3Au+dFjs6EfAE1Qt2jx6rbtFCxjyAqrgJ2crmy1m2AMzOFlAjfYIkHRbTOnP0xULLn3QzWaLKf3i84RDggF+fVoYmBM8Ai35Oh786Ve50zYQ6CC6jXmeR7nkXMc/ejwcKufCyXFMnMbIR2H0VQjRODeOh6OrctoktCq7Vo7e2h6afI2+j4eMtM+G2j4zDx9L/e6jrfVJbZUb+bR7fJzHk7EZXarYHlOu6Iuu8NV6pY06o2fM9/HFjoxlra/T+h37qHoPZc9Z9Y62Ra7SY2/aOt8GAh1EtzHPq6Osji9OoNIIVnoUVdpYjhMNnUx0pizXPtJHmfBFbpQJvfIpL6WlvpZoZE+jpz15ZOTjGGpd+1qquvCQs/Oxuxp3zmfRSV9S+OXoY1/hW8tH/ugJf9qThy6vtJSTr/GFHr61/sKX9uSRSx4++UiLTG0LLTkZi0u5VOkpyzttD4E+9m97c/6eES/94Y9OIU4nvHEk71F0uRJe1ZSThyaPruSVpizVtlpfo89CKx/VhuhaokW89rFUDi15dEY+eW0PbSlnS02pV8ed9rPozNhqTj51OlKW15S2NZr2PGrFU+05i+z19LvPxmpPdMf2s9gzjoWO9Je89kF3pSunH3mnbSHQQXRb87062vGPP/U4iCqYNrS1cm3bx1P1HrJcbUg/S7S03eycLXHMte8lWm1fK2dsY175z9K2xI8W2bTXei3vaz+Nb0k2NHmVr+XT2k5rH3Xhl06jr7UfS/fneUWgf517Xmf2Bo2rHcMNArLVNAKNwLlEoHei53JatzGouktLsM/OOW3olbbEF56gNtbR99HGNnUpNiiHJ21onf44CKzNyxr9j2Nl93qrINBB9FaZqZtoZ4LOWbs8NH/sSD9xdglIqdf22pYAFj3y0GqOTkf0qCedRlvSg5a0JJ+25JU/tM5vHAJ1DoJ1aMnH3tboI1/Xt4tAP87d7tyf7JQ4Cil5dTCVnnL41KXKr62213rKlf9Yw5W+1at86qHJybtGfaElD2/ySkeL7vx4Z40vdHm9Rn21XstzR3s+6IwtNadDSj5Xpo+RP/TkY3tsXmtHD0/ySktZLi3pP265uu2s/OGrumNLaOFZykMLb/KRrl7nJuXk6TN8kU+e9lF/2muu3On8I9BB9PzP8eoI4zhqjjkOAl1KnnKto438aDWFX+46jT+y+FxL8ugOD3AYQfSFV+5gBf/PVXkpSKYPuv060/+HrQepOwTACTX+0z1d9Djlxuk2DnNPv/5PrEPWI+s/6udVbvqI7elvKQ8mNcfHrlxVbuSrbcq1PZiENrarVx584U0ZDwyTantkl9r20WpbLVfd6T80fCnXHD12oEuZc2U0V2h4HbbgZKTIyc2hA+rNoXqVDV90yStP2pPPwv2xCQQ6iG5impcHGSeQP3y5K0Ej9ZrTVOvKcTrKcTLhibNJXb6kv/KlD3noySOvzQkyORoPPU5Rm0MKBDNJIOJAYycafdHpeLevf/3rJ/z0OGowJ99wrJLXZTkhx0ES3jRC3kk4j08nADlrVx/+Xyeb9Km9JjYupdDlsUlOV65KD390jfVKj1x45K41etrpSFluPLUe+eRLbWu0JZnKO/atrdIin3xsV2dvlVEOTdmLBhxPKOE3dxZIDhbJcX7oucKnnnJytNgyN17+CG+ldfn8IdDfiZ6/Ob3mEcUBCB4ChiDntCFn1XqHoiARJ/OZz3xmdj6cOydhJ2bH5+i1z372sydOR3vO3qWf03LyjqAjaJH1ujR9OYpPH3Z3AqOj2XLwvTNLHR2XZBdo1+gYNkfFOcvVrsKxbw6Edwyb82wFULtJ8sbgGDttnCRaxmxc9BgrmkSfo+ocQ+doN+fiGg8n7BxayS7YUXZo+ARt56qieduHRJ/26E0+Ny58aIeLeYCTgA0L43VG7dHR0XtOgYqTHvWijzT6jMG8woddjubDl6P9vM1E8qIB2JnTp59+eu4fnuwyR+YNPrCjx3zS5T6Aj2MA3RfmXGI3jNjgbFo2WHQ4REI/6PpyeLx5F9zoVxfQjB22eNhIPn2bV3PPDveEV7a5n8whW825+Yge/I4uTNts4PRh/sypPs2he4aM8TsWkJ1s0r++9ElXbJJn/tbmJX11fr4Q6J3o+ZrP6xpNHK6VOKfzuc99bnbmWa1zspyIM3EFPc6YQ+V0OM4XXnhhbnc2bhyI4MbRSJysy+My56I6i1cwExAFWk5PolOZPdo4LE6Zw6SXs+W4HHpvl8hRJghwfgK8PvQlYAu+HCGH6RB5h+oLENkJZ9yCKoeuf8lOkv2SfjlITpzzToKTNoeff/e7352DrbEJFuThxdnqI5gkj46axxY0uDrTVjCy6zVW9qHXVGVC10f6TG5eYOcFAQKzx9Qw/c53vjMHBnRY0i+4sR2NLngJanbhMHaWrLmpyTtH2Su4Grt7wk4d3oKaQ9zR6Q/GgrInA+4x/AK7g//Z7P7D5z4j4/5jj3mgSwqW2i00nNWsbMHhHjIOMmx3T6BZoOETRPVvfpIslsylcbhv2Sv4OrDf/eL+ca+yly62oQmssYku9rs6bQeBK3fRdsbcIy0I+IOPM+GA7AglOQfEkXMYgoidprIgxbFzIByl5CByTkbioDl/7RwgGfz0c3iS4MhRCnB2kBLHyFGS1y+dgmASR5/+OD3voOSI6RIkODM2kBfwjMslAHHqdhTGSyYpzjiBNfQxD1/o6rHTokAfxsJeu3kLEsEI31mdKl4BBb9gJddH6sraY0t0p862pb44fW/gYdvRtCs0VnMoSFhsoAtigo1AJIAInuYLr37xOnTdTlJdSr8WO3aQZOjLbs8YBCwLJnPnfoh95lmi05yyQX/mlF5vy3EPmNfYw+Y6d+Tdp3a9Ajs++NDtyQI9dKDBwCLA4gdNcE9Ap4eMnax2NtHLJvcuu4wt+u1af/e7d+YxGyuMjCt4yDNOujudbwQ6iJ7v+V0dXf7gMeQPHo3jlzgMDktw4EjsZvJoi/PhcOSRxRudoQmYVvICqVU+evRzbJwxp5Xgyxkl8NA1OkyOTjBP4lTJeL0V/XaidpD0ogvOxiGAsp3jZEPspCe2Rqfcbi390EOHQGBRkcROQUFil8d/nLNgkeAkKEnpY+x7bjzlo9q6xhr9a+2CgQAvwdQFd+NKygLAWCxKBEZ45dF3Flp1ntkGa9i8+OKL8y7Ortzc1rlTt6iR0y/Bkt1sS1BWxyOxzRwkcMeeo2kRIKVvr+4z54Kme5IOtgYT86deMSCv/4otG2Jzlf/QhBMM9O+CzW233T7N9SMzPoL+0bzwnLCY+rYHTd/059Jn7U+90/lAoIPo+ZjHax5F/UOPsB2BoOdRl5zz8IfP4XJudpccmyAj0RHHwPGkLNdmJykA5zGooOqRmoDjkWIeU9LpEZrHeZwZ+VyxTW43Rfb16fs3OwM7ELpddgR0CGKcoQCHzy6C4xbQ8n1bnCWd1WZjkCwcOF0Y2N2q512h6uy0w+K0pXwvbOfFobPRzgePVPsI7nPD8KGNrfiNJxikzj7t0SGP7qoqtOQea5tTCyG4e+RsLu2o7JjR7eSOpgAVXmPyXaRgo9+KWQ162ui0yzcP6vCSmyOPPy2SLDBgqh80j1vdV/RmPO43+LpnLl26NPctSLln2KMPCycpMoIkHXbQLnVtacer3bjMP11yY2dPTZH5wx+mgDrdh9Kjn3hsns+33jp+0Tw8nnziL3Y/f+u/d794++e7//j313e//fWvpnmYfrg0fbjg7oo+ea3XPrt86yPQb3G59efwukcw/mGrc1ICke+GEgQ4QY5AgLAD48g5TA5FmTO0kyFv5xCnwbBXXnll3pl5/CrZYXBkghJnLtEp6NjRkKcTn0BYbVSOfAKW3aYdMafMXlds5VTp5Fj1abfKbvbK8Un00oEvj5Y5XoHHmMlJ+Dlf/B5ryiWY0clecmwxBjxS7SfluWH6iI7wxRaPMS1W6ISP62gKcvqhY5SLPrm28CS3ULGQMD6PXC0uLAYsTDwpMN8wlfywRtCCpbGbW9iwB07mIDjHXrhoszAKH5r+4WBeM0/KxkUHXeYCTRJALSDcL2ySfNfsnhT4BWMp43IPwluf9FV8jFU7XgseeunBpz80/JJ5M48weGeSueuuC7vb7zj+Dvw3v/7lLDsvpP7kMkZv/3L35oTnPffcO4/53XePA7e+BNK7P3xHmQc9XAmqap3ODwIdRM/PXF7TSKqjjWAcU60rx2HX9tPK2j1qs9r3Aw/1qkt5iTYzlY+1fgrLYrHKLTHU9rGMP2NW1i5VmvpIr3r2tUcOzzgP0WG3J5AJXhy9xYDdXdqrfuWkUR96lQlfvufz45ik2FXHWWWXypVW9VQd6Et84U+7vMqRGWnq0ZV8Zlr4qO21XFnRpff0O9Xf/p93dm++9avdb38z/fDtV/+3+8U7f5iC6//u3vrl73b/9c67u3fvuLC7ewq0d0wB8/9+P83R7bdN9/rtu9/+/t3dU4/cs/v7v/rE7kNTPf3OvVzua+6wP84NAh1Ez81UXv9AOJCTP/bpDz1lGtN21nLls7K3QxBIo1OecuWtNPSkOLe0j/LhS3vq8kqrZW3Rqyxpl0JXr7TgUGnhr7QluVnx9BG+1GueftHw1Xr4Rvo+fWSqDrzhF4wFaY/o7ciiN/wjb+S0j+XQKv2stIwrttZ+6XBJS3S0pX5mgcsfaVdNOXIjn/q//tt/7r5x6bXdy6++sbv49u93f37f3bvHHrxn98yfTT+Ouv+e3YMP3Lt79E/v3d13z7RLvfOO3YcvTE8fPnzn7t67PrS7cOf0VcBs7vT1xx237e66cGUnOnU+N+m70/lDoIPo+ZvT9zWiOC5K8kcfWnVAa+XIRWapjiaN+o+pV4JI2kOXV73q1Q71pDW69n16a1v6WqNpr/3UcuxY66+2j+XoPSt95FuqZyzaTrNzjbfKKSdV/jX9VTZylRZ9Vdc+WnRU/tCSj/pH3qr/n//l4u7v/uafdv/wjy/s/valv9w9efTw7uGH7p93m3dOO8rrSbP+OYBawFwJ5Nejq2U+uAh0EP3gzs0tZ1l1UnFQBoEeh1bpt9wAb6LBwTK46fr9YhedVdcW52bGYYpqWQaof+OVV92ou79+8dmrZhnuV9YMkTveXc7M0w70eM98RfTypnQiTKXS1xWOLp0XBDqInpeZ/ACOIw76A2hamzQhsNX5mYPo5TsgC5NKO/718XFkrMGx8izfQJfD8pQlQC/zNfU8IdBB9DzNZo+lEWgEzoRAAuK8w7ztOOpl15+2qijBttK63AhAoM/O7fugEWgENodAguJxwJy+bpj++cGVdNKmPFP6oxFYR6B3ouvYdEsj0Ag0Ao1AI7AXgev72dleld3YCDQCjUAj0AhsA4EOotuY5x5lI9AINAKNwAEQ6CB6AFBbZSPQCDQCjcA2EOgguo157lE2Ao1AI9AIHACBDqIHALVVNgKNQCPQCGwDgQ6i25jnHmUj0Ag0Ao3AARDoIHoAUFtlI9AINAKNwDYQ6CC6jXnuUTYCjUAj0AgcAIEOogcAtVU2Ao1AI9AIbAOBDqLbmOceZSPQCDQCjcABEOggegBQW2Uj0Ag0Ao3ANhDoILqNee5RNgKNQCPQCBwAgQ6iBwC1VTYCjUAj0AhsA4EOotuY5x5lI9AINAKNwAEQ6CB6AFBbZSPQCDQCjcA2EOgguo157lE2Ao1AI9AIHACBDqIHALVVNgKNQCPQCGwDgQ6i25jnHmUj0Ag0Ao3AARDoIHoAUFtlI9AINAKNwDYQ6CC6jXnuUTYCjUAj0AgcAIEOogcAtVU2Ao1AI9AIbAOBDqLbmOceZSPQCDQCjcABEOggegBQW2Uj0Ag0Ao3ANhDoILqNee5RNgKNQCPQCBwAgQ6iBwC1VTYCjUAj0AhsA4EOotuY5x5lI9AINAKNwAEQ6CB6AFBbZSPQCDQCjcA2EOgguo157lE2Ao1AI9AIHACBDqIHALVVNgKNQCPQCGwDgQ6i25jnHmUj0Ag0Ao3AARDoIHoAUFtlI9AINAKNwDYQ6CC6jXnuUTYCjUAj0AgcAIEOogcAtVU2Ao1AI9AIbAOBDqLbmOceZSPQCDQCjcABEOggegBQW2Uj0Ag0Ao3ANhDoILqNee5RNgKNQCPQCBwAgQ6iBwC1VTYCjUAj0AhsA4EOotuY5x5lI9AINAKNwAEQ6CB6AFBbZSPQCDQCjcA2EPh/xbtQrXKHkd4AAAAASUVORK5CYII=",
"type": "image/png",
"source": "https://tiddlywiki.com/poster",
"tags": "picture"
},
"TiddlyFox Apocalypse.png": {
"title": "TiddlyFox Apocalypse.png",
"text": "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",
"type": "image/png",
"tags": "picture"
},
"TiddlyMap.png": {
"title": "TiddlyMap.png",
"text": "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",
"type": "image/png",
"tags": "picture"
},
"TiddlyWiki Classic.png": {
"title": "TiddlyWiki Classic.png",
"text": "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",
"type": "image/png",
"tags": "picture"
},
"Language Icon: ca-ES": {
"title": "Language Icon: ca-ES",
"type": "image/svg+xml",
"text": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"810\" height=\"540\">\n<rect width=\"810\" height=\"540\" fill=\"#FCDD09\"/>\n<path stroke=\"#DA121A\" stroke-width=\"60\" d=\"M0,90H810m0,120H0m0,120H810m0,120H0\"/>\n</svg>",
"language": "ca-ES",
"tags": "Language Icon"
},
"Language Icon: cs-CZ": {
"title": "Language Icon: cs-CZ",
"type": "image/svg+xml",
"text": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<svg version=\"1.0\" xmlns=\"http://www.w3.org/2000/svg\" width=\"900\" height=\"600\">\n\t<rect width=\"900\" height=\"600\" fill=\"#d7141a\"/>\n\t<rect width=\"900\" height=\"300\" fill=\"#fff\"/>\n\t<path d=\"M 450,300 0,0 V 600 z\" fill=\"#11457e\"/>\n</svg>\n",
"language": "cs-CZ",
"tags": "Language Icon"
},
"Language Icon: da-DK": {
"title": "Language Icon: da-DK",
"type": "image/svg+xml",
"text": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"370\" height=\"280\">\n<rect width=\"370\" height=\"280\" fill=\"#c60c30\"/>\n<rect width=\"40\" height=\"280\" x=\"120\" fill=\"#fff\"/>\n<rect width=\"370\" height=\"40\" y=\"120\" fill=\"#fff\"/>\n</svg>\n",
"language": "da-DK",
"tags": "Language Icon"
},
"Language Icon: de-AT": {
"title": "Language Icon: de-AT",
"type": "image/svg+xml",
"text": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"900\" height=\"600\" viewBox=\"0 0 9 6\">\n<rect fill=\"#ef3340\" width=\"9\" height=\"6\"/>\n<rect fill=\"#fff\" y=\"2\" width=\"9\" height=\"2\"/>\n</svg>",
"language": "de-AT",
"tags": "Language Icon"
},
"Language Icon: de-DE": {
"title": "Language Icon: de-DE",
"type": "image/svg+xml",
"text": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n\t\"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"1000\" height=\"600\" viewBox=\"0 0 5 3\">\n\t<desc>Flag of Germany</desc>\n\t<rect id=\"black_stripe\" width=\"5\" height=\"3\" y=\"0\" x=\"0\" fill=\"#000\"/>\n\t<rect id=\"red_stripe\" width=\"5\" height=\"2\" y=\"1\" x=\"0\" fill=\"#D00\"/>\n\t<rect id=\"gold_stripe\" width=\"5\" height=\"1\" y=\"2\" x=\"0\" fill=\"#FFCE00\"/>\n</svg>\n",
"language": "de-DE",
"tags": "Language Icon"
},
"Language Icon: el-GR": {
"title": "Language Icon: el-GR",
"type": "image/svg+xml",
"text": "<svg width=\"600\" height=\"400\" viewBox=\"0 0 27 18\" xmlns=\"http://www.w3.org/2000/svg\">\n <desc>Flag of Greece</desc>\n <rect width=\"27\" height=\"18\" fill=\"#0d5eaf\"/>\n <path fill=\"none\" stroke-width=\"2\" stroke=\"white\" d=\"M5,0V11 M0,5H10 M10,3H27 M10,7H27 M0,11H27 M0,15H27\"/>\n</svg>",
"language": "el-GR",
"tags": "Language Icon"
},
"Language Icon: en-US": {
"title": "Language Icon: en-US",
"type": "image/svg+xml",
"text": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"1235\" height=\"650\" viewBox=\"0 0 7410 3900\">\n<rect width=\"7410\" height=\"3900\" fill=\"#b22234\"/>\n<path d=\"M0,450H7410m0,600H0m0,600H7410m0,600H0m0,600H7410m0,600H0\" stroke=\"#fff\" stroke-width=\"300\"/>\n<rect width=\"2964\" height=\"2100\" fill=\"#3c3b6e\"/>\n<g fill=\"#fff\">\n<g id=\"s18\">\n<g id=\"s9\">\n<g id=\"s5\">\n<g id=\"s4\">\n<path id=\"s\" d=\"M247,90 317.534230,307.082039 132.873218,172.917961H361.126782L176.465770,307.082039z\"/>\n<use xlink:href=\"#s\" y=\"420\"/>\n<use xlink:href=\"#s\" y=\"840\"/>\n<use xlink:href=\"#s\" y=\"1260\"/>\n</g>\n<use xlink:href=\"#s\" y=\"1680\"/>\n</g>\n<use xlink:href=\"#s4\" x=\"247\" y=\"210\"/>\n</g>\n<use xlink:href=\"#s9\" x=\"494\"/>\n</g>\n<use xlink:href=\"#s18\" x=\"988\"/>\n<use xlink:href=\"#s9\" x=\"1976\"/>\n<use xlink:href=\"#s5\" x=\"2470\"/>\n</g>\n</svg>\n",
"language": "en-US",
"tags": "Language Icon"
},
"Language Icon: es-ES": {
"title": "Language Icon: es-ES",
"type": "image/svg+xml",
"text": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" height=\"500\" width=\"750\">\n<rect width=\"750\" height=\"500\" fill=\"#c60b1e\"/>\n<rect width=\"750\" height=\"250\" y=\"125\" fill=\"#ffc400\"/>\n<g id=\"coa\" stroke=\"#000\" stroke-width=\"0.39\">\n<g id=\"supporters\">\n<g id=\"crown_left\" stroke-width=\"0.26\">\n<path fill=\"#ad1519\" stroke-linejoin=\"round\" d=\"m167.99 222.24s-0.51 0-0.79-0.16-1.13-0.96-1.13-0.96l-0.68-0.49-0.62-0.85s-0.73-1.18-0.4-2.09c0.34-0.91 0.91-1.23 1.42-1.5 0.51-0.26 1.58-0.59 1.58-0.59s0.85-0.37 1.13-0.42c0.28-0.06 1.3-0.32 1.3-0.32s0.28-0.16 0.56-0.27c0.29-0.11 0.68-0.11 0.91-0.16 0.22-0.06 0.79-0.24 1.13-0.26 0.52-0.02 1.36 0.1 1.64 0.1s1.24 0.05 1.64 0.05c0.39 0 1.8-0.11 2.2-0.11 0.39 0 0.68-0.05 1.13 0 0.45 0.06 1.24 0.32 1.47 0.43s1.58 0.59 2.09 0.75 1.75 0.37 2.32 0.64c0.56 0.27 0.91 0.72 1.19 1.1 0.28 0.37 0.34 0.78 0.45 1.05 0.11 0.26 0.11 0.84 0 1.11-0.11 0.26-0.51 0.81-0.51 0.81l-0.62 1.02-0.79 0.64s-0.57 0.54-1.02 0.48c-0.45-0.04-5.03-0.86-7.97-0.86s-7.64 0.86-7.64 0.86h0.01z\"/>\n<g fill=\"#c8b100\">\n<ellipse cx=\"175.66\" cy=\"215.68\" rx=\"1.38\" ry=\"2.5\"/>\n<ellipse cx=\"175.68\" cy=\"215.68\" rx=\"0.64\" ry=\"2.3\"/>\n<ellipse stroke=\"none\" cx=\"175.68\" cy=\"213.04\" rx=\"0.93\" ry=\"0.87\"/>\n<path stroke-width=\"0.3\" d=\"m176.96 212.74v0.58h-2.53v-0.58h0.94v-1.32h-0.62v-0.57h0.62v-0.57h0.6v0.57h0.62v0.57h-0.62v1.32h0.99\"/>\n<path fill=\"none\" d=\"m175.94,212.2a0.93,0.87 0 1,1 -0.5,0\"/>\n<path d=\"m175.68 222.08h-4.81l-0.11-1.18-0.23-1.23-0.23-1.53c-1.33-1.75-2.55-2.9-2.96-2.65 0.1-0.32 0.22-0.56 0.47-0.71 1.18-0.7 3.61 0.98 5.44 3.74 0.16 0.25 0.32 0.5 0.46 0.75h3.97c0.14-0.25 0.3-0.5 0.46-0.75 1.82-2.76 4.26-4.44 5.43-3.74 0.26 0.15 0.37 0.39 0.47 0.71-0.41-0.24-1.62 0.9-2.96 2.65l-0.23 1.53-0.23 1.23-0.1 1.18h-4.84z\"/>\n<path fill=\"none\" d=\"m167.55 215.44c0.91-0.53 3.02 1.14 4.73 3.74m11.55-3.74c-0.91-0.53-3.01 1.14-4.73 3.74\"/>\n</g>\n<g id=\"crown_pt1\" fill=\"#c8b100\">\n<path d=\"m168.58 224.25c-0.2-0.57-0.58-1.08-0.58-1.08 1.95-0.57 4.66-0.93 7.67-0.94 3.01 0.01 5.75 0.37 7.69 0.94 0 0-0.22 0.38-0.52 0.91-0.17 0.3-0.39 0.81-0.38 0.81-1.75-0.54-4.02-0.81-6.8-0.82-2.79 0.01-5.46 0.35-6.86 0.86 0.02 0-0.1-0.32-0.23-0.68h0.01\"/>\n<path d=\"m175.67 226.73c2.43-0.01 5.11-0.38 6.1-0.63 0.66-0.2 1.05-0.49 0.98-0.84-0.04-0.16-0.18-0.3-0.37-0.38-1.46-0.47-4.07-0.8-6.71-0.8-2.63 0-5.27 0.33-6.72 0.8-0.19 0.08-0.33 0.22-0.37 0.38-0.07 0.35 0.32 0.64 0.98 0.84 0.99 0.25 3.68 0.62 6.11 0.63z\"/>\n<path d=\"m183.48 222.08l-0.59-0.53s-0.57 0.34-1.28 0.24c-0.7-0.11-0.93-0.97-0.93-0.97s-0.79 0.67-1.44 0.62c-0.65-0.06-1.07-0.62-1.07-0.62s-0.71 0.51-1.33 0.46c-0.62-0.06-1.21-0.83-1.21-0.83s-0.63 0.8-1.25 0.86c-0.62 0.05-1.13-0.54-1.13-0.54s-0.28 0.59-1.07 0.72-1.47-0.62-1.47-0.62-0.45 0.73-0.99 0.92c-0.54 0.18-1.24-0.27-1.24-0.27s-0.12 0.27-0.2 0.43-0.31 0.19-0.31 0.19l0.18 0.47c1.93-0.56 4.56-0.91 7.53-0.91s5.67 0.35 7.61 0.92l0.2-0.54h-0.01z\"/>\n<path d=\"m175.69 219.49l0.28 0.05c-0.05 0.12-0.06 0.24-0.06 0.38 0 0.58 0.5 1.05 1.12 1.05 0.49 0 0.91-0.31 1.06-0.73 0.01 0.01 0.11-0.38 0.15-0.38 0.03 0 0.03 0.41 0.05 0.41 0.07 0.53 0.55 0.89 1.1 0.89 0.62 0 1.11-0.47 1.11-1.06 0-0.04 0-0.08-0.01-0.12l0.35-0.35 0.19 0.44c-0.07 0.14-0.1 0.29-0.1 0.46 0 0.56 0.47 1.01 1.06 1.01 0.37 0 0.69-0.18 0.88-0.45l0.23-0.29v0.36c0 0.34 0.14 0.66 0.49 0.71 0 0 0.38 0.03 0.91-0.38 0.52-0.41 0.8-0.75 0.8-0.75l0.03 0.42s-0.51 0.84-0.97 1.1c-0.25 0.15-0.64 0.31-0.95 0.25-0.32-0.05-0.55-0.31-0.67-0.61-0.23 0.14-0.51 0.22-0.8 0.22-0.63 0-1.2-0.35-1.42-0.86-0.29 0.31-0.69 0.5-1.16 0.5-0.51 0-0.97-0.23-1.26-0.58-0.28 0.27-0.67 0.43-1.09 0.43-0.55 0-1.05-0.28-1.33-0.69-0.29 0.41-0.78 0.69-1.34 0.69-0.42 0-0.81-0.16-1.09-0.43-0.29 0.35-0.75 0.58-1.25 0.58-0.48 0-0.88-0.19-1.17-0.5-0.22 0.51-0.79 0.86-1.42 0.86-0.29 0-0.56-0.08-0.79-0.22-0.12 0.3-0.35 0.56-0.68 0.61-0.3 0.06-0.69-0.1-0.94-0.25-0.47-0.26-1.02-1.1-1.02-1.1l0.07-0.42s0.29 0.34 0.81 0.75 0.91 0.38 0.91 0.38c0.34-0.05 0.49-0.37 0.49-0.71v-0.36l0.22 0.29c0.19 0.27 0.51 0.45 0.88 0.45 0.59 0 1.06-0.45 1.06-1.01 0-0.17-0.02-0.32-0.1-0.46l0.19-0.44 0.35 0.35c-0.01 0.04-0.01 0.08-0.01 0.12 0 0.59 0.49 1.06 1.11 1.06 0.55 0 1.03-0.36 1.11-0.89 0.01 0 0.01-0.41 0.04-0.41 0.05 0 0.14 0.39 0.16 0.38 0.14 0.42 0.56 0.73 1.06 0.73 0.61 0 1.11-0.47 1.11-1.05 0-0.14 0-0.26-0.05-0.38l0.29-0.05h0.01z\"/>\n<path stroke-linejoin=\"round\" d=\"m175.67 222.23c-3.01 0.01-5.72 0.37-7.67 0.94-0.13 0.04-0.29-0.06-0.33-0.17-0.04-0.13 0.05-0.28 0.18-0.32 1.95-0.6 4.73-0.98 7.82-0.98s5.88 0.38 7.83 0.98c0.13 0.04 0.22 0.19 0.18 0.32-0.04 0.11-0.2 0.21-0.33 0.17-1.95-0.57-4.67-0.93-7.68-0.94z\"/>\n<path d=\"m165.43 221c-0.01 0.01-0.38-0.48-0.65-0.73-0.2-0.18-0.68-0.33-0.68-0.33 0-0.08 0.28-0.28 0.58-0.28 0.18 0 0.35 0.07 0.45 0.2l0.04-0.2s0.24 0.05 0.35 0.32c0.12 0.29 0.05 0.72 0.05 0.72s-0.05 0.2-0.14 0.3z\"/>\n<path d=\"m167.32 220.22l-0.11 0.66-1.4 0.15-0.21-0.12 0.04-0.23 1.06-0.87 0.62 0.41\"/>\n<path d=\"m165.45 220.75c0.12-0.12 0.36-0.09 0.53 0.06 0.18 0.15 0.24 0.38 0.12 0.5-0.12 0.13-0.36 0.1-0.53-0.06-0.18-0.15-0.24-0.38-0.12-0.5z\"/>\n<path d=\"m168.02 220.88c-0.06-0.18 0-0.37 0.13-0.42 0.14-0.03 0.3 0.09 0.37 0.27 0.06 0.19 0 0.38-0.14 0.42-0.13 0.04-0.29-0.08-0.36-0.27z\"/>\n<path d=\"m168.67 220.04l0.51 0.48 1.22-0.66 0.09-0.21-0.17-0.17-1.4-0.12-0.25 0.68\"/>\n<path d=\"m170.08 217.76l-0.67 0.64 0.86 1.14 0.23 0.09 0.17-0.18 0.3-1.37-0.89-0.32\"/>\n<path d=\"m172.36 219.3l-0.26 0.63-1.4-0.13-0.18-0.16 0.1-0.22 1.22-0.64 0.52 0.52\"/>\n<ellipse cx=\"170.51\" cy=\"219.65\" rx=\"0.49\" ry=\"0.47\"/>\n<path d=\"m172.87 219.95c-0.03-0.2 0.07-0.37 0.21-0.39s0.28 0.13 0.3 0.33c0.03 0.19-0.07 0.37-0.21 0.38-0.14 0.02-0.28-0.13-0.3-0.32z\"/>\n<path d=\"m173.78 219.24l0.4 0.57 1.34-0.42 0.14-0.18-0.15-0.2-1.33-0.39-0.4 0.62\"/>\n<path d=\"m175.66 217.15l-0.86 0.52 0.64 1.38 0.22 0.14 0.22-0.14 0.64-1.38-0.86-0.52\"/>\n<path d=\"m177.55 219.24l-0.39 0.57-1.34-0.42-0.14-0.18 0.14-0.2 1.34-0.39 0.39 0.62\"/>\n<ellipse cx=\"175.67\" cy=\"219.21\" rx=\"0.49\" ry=\"0.47\"/>\n<path d=\"m178.5 219.95c0.02-0.2-0.08-0.37-0.22-0.39s-0.28 0.13-0.3 0.33c-0.02 0.19 0.07 0.37 0.21 0.38 0.14 0.02 0.28-0.13 0.31-0.32z\"/>\n<path d=\"m178.99 219.3l0.26 0.63 1.4-0.13 0.18-0.16-0.1-0.22-1.22-0.64-0.52 0.52\"/>\n<path d=\"m181.27 217.76l0.67 0.64-0.86 1.14-0.23 0.09-0.17-0.18-0.3-1.37 0.89-0.32\"/>\n<path d=\"m182.68 220.04l-0.51 0.48-1.22-0.66-0.1-0.21 0.19-0.17 1.4-0.12 0.24 0.68\"/>\n<ellipse cx=\"180.85\" cy=\"219.65\" rx=\"0.49\" ry=\"0.47\"/>\n<path d=\"m183.34 220.88c0.06-0.18 0-0.37-0.13-0.42-0.14-0.03-0.3 0.09-0.37 0.27-0.06 0.19 0 0.38 0.14 0.42 0.13 0.04 0.29-0.08 0.36-0.27z\"/>\n<path d=\"m185.73 221c0.01 0.01 0.38-0.48 0.66-0.73 0.19-0.18 0.67-0.33 0.67-0.33 0-0.08-0.28-0.28-0.58-0.28-0.18 0-0.35 0.07-0.45 0.2l-0.04-0.2s-0.24 0.05-0.36 0.32c-0.11 0.29-0.03 0.72-0.03 0.72s0.04 0.2 0.13 0.3z\"/>\n<path d=\"m183.84 220.22l0.11 0.66 1.4 0.15 0.21-0.12-0.05-0.23-1.05-0.87-0.62 0.41\"/>\n<path d=\"m185.74 220.75c-0.11-0.12-0.35-0.09-0.53 0.06s-0.24 0.38-0.12 0.5c0.12 0.13 0.36 0.1 0.54-0.06 0.18-0.15 0.23-0.38 0.11-0.5z\"/>\n</g>\n<g id=\"crown_pt2\" fill=\"none\">\n<path fill=\"#ad1519\" d=\"m168.05 224.3l0.31-0.5 0.65 0.13-0.38 0.56-0.58-0.19\"/>\n<path fill=\"#058e6e\" d=\"m170.85 223.81l-0.69 0.11c-0.18 0.02-0.35-0.09-0.38-0.26-0.02-0.17 0.1-0.32 0.27-0.35l0.7-0.1 0.71-0.11c0.18-0.02 0.34 0.09 0.37 0.25 0.02 0.17-0.1 0.33-0.27 0.35l-0.71 0.11\"/>\n<ellipse fill=\"#fff\" cx=\"173.19\" cy=\"223.3\" rx=\"0.44\" ry=\"0.41\"/>\n<path fill=\"#ad1519\" d=\"m175.7 223.48h-0.96c-0.18 0-0.33-0.14-0.33-0.31s0.14-0.31 0.32-0.31h1.96c0.19 0 0.33 0.14 0.33 0.31s-0.15 0.31-0.33 0.31h-0.99\"/>\n<ellipse fill=\"#fff\" cx=\"178.16\" cy=\"223.3\" rx=\"0.44\" ry=\"0.41\"/>\n<path fill=\"#058e6e\" d=\"m180.5 223.81l0.69 0.11c0.18 0.02 0.35-0.09 0.38-0.26 0.02-0.17-0.09-0.32-0.27-0.35l-0.7-0.1-0.71-0.11c-0.18-0.02-0.35 0.09-0.37 0.25-0.03 0.17 0.09 0.33 0.27 0.35l0.71 0.11\"/>\n<path fill=\"#ad1519\" d=\"m183.24 224.33l-0.25-0.53-0.67 0.06 0.32 0.59 0.6-0.12\"/>\n<path fill=\"#ad1519\" stroke-linejoin=\"round\" d=\"m175.66 226.16c-2.43 0-4.63-0.22-6.3-0.65 1.67-0.43 3.87-0.69 6.3-0.7 2.44 0 4.65 0.27 6.33 0.7-1.68 0.43-3.89 0.65-6.33 0.65z\"/>\n<path stroke-width=\"0.01\" d=\"m176.8 226.08v-1.16m-0.58 1.2l0.01-1.23m-0.43 1.25v-1.26\"/>\n<path stroke-width=\"0.02\" d=\"m175.44 226.15v-1.27\"/>\n<path stroke-width=\"0.03\" d=\"m175.09 226.15v-1.27\"/>\n<path stroke-width=\"0.04\" d=\"m174.77 226.15v-1.27\"/>\n<path stroke-width=\"0.04\" d=\"m174.44 226.15v-1.27\"/>\n<path stroke-width=\"0.05\" d=\"m174.16 226.15v-1.27\"/>\n<path stroke-width=\"0.06\" d=\"m173.61 226.08l-0.01-1.15m0.27 1.17v-1.21\"/>\n<path stroke-width=\"0.07\" d=\"m173.1 226.03v-1.06m0.26 1.09l-0.01-1.13\"/>\n<path stroke-width=\"0.08\" d=\"m172.42 225.97v-0.93m0.23 0.94v-0.98m0.23 1.02v-1.02\"/>\n<path stroke-width=\"0.09\" d=\"m172.19 225.96v-0.9\"/>\n<path stroke-width=\"0.1\" d=\"m171.97 225.92v-0.85\"/>\n<path stroke-width=\"0.11\" d=\"m171.73 225.89v-0.78\"/>\n<path stroke-width=\"0.12\" d=\"m171.24 225.82l-0.01-0.62m0.26 0.66v-0.7\"/>\n<path stroke-width=\"0.12\" d=\"m170.99 225.77v-0.55\"/>\n<path stroke-width=\"0.13\" d=\"m170.76 225.73v-0.46\"/>\n<path stroke-width=\"0.14\" d=\"m170.51 225.67v-0.36\"/>\n<path stroke-width=\"0.15\" d=\"m170.26 225.64v-0.27\"/>\n<path stroke-width=\"0.18\" d=\"m169.99 225.58v-0.13\"/>\n</g>\n</g>\n<g id=\"pillar_left\">\n<g fill=\"#005bbf\">\n<path d=\"m191.28 330.68c-1.54 0-2.91-0.33-3.93-0.87-1-0.51-2.36-0.82-3.86-0.82-1.51 0-2.9 0.32-3.91 0.83-1.01 0.53-2.4 0.86-3.92 0.86-1.54 0-2.92-0.36-3.93-0.9-1-0.49-2.33-0.79-3.79-0.79-1.52 0-2.86 0.29-3.86 0.81-1.02 0.54-2.42 0.88-3.95 0.88v2.41c1.53 0 2.93-0.35 3.95-0.88 1-0.52 2.34-0.82 3.86-0.82 1.45 0 2.79 0.31 3.79 0.8 1.01 0.53 2.39 0.9 3.93 0.9 1.52 0 2.91-0.33 3.92-0.86 1.01-0.52 2.4-0.84 3.91-0.84 1.5 0 2.86 0.32 3.86 0.83 1.02 0.54 2.37 0.87 3.91 0.87l0.02-2.41z\"/>\n<path fill=\"#ccc\" d=\"m191.28 333.09c-1.54 0-2.91-0.33-3.93-0.87-1-0.51-2.36-0.83-3.86-0.83-1.51 0-2.9 0.32-3.91 0.84-1.01 0.53-2.4 0.86-3.92 0.86-1.54 0-2.92-0.37-3.93-0.9-1-0.49-2.33-0.8-3.79-0.8-1.52 0-2.86 0.3-3.86 0.82-1.02 0.53-2.42 0.88-3.95 0.88v2.41c1.53 0 2.93-0.35 3.95-0.88 1-0.52 2.34-0.82 3.86-0.82 1.45 0 2.79 0.31 3.79 0.8 1.01 0.54 2.39 0.9 3.93 0.9 1.52 0 2.91-0.34 3.92-0.86s2.4-0.84 3.91-0.84c1.5 0 2.86 0.32 3.86 0.84 1.02 0.53 2.37 0.86 3.91 0.86l0.02-2.41\"/>\n<path d=\"m191.28 335.5c-1.54 0-2.91-0.33-3.93-0.86-1-0.52-2.36-0.84-3.86-0.84-1.51 0-2.9 0.32-3.91 0.84s-2.4 0.86-3.92 0.86c-1.54 0-2.92-0.36-3.93-0.9-1-0.49-2.33-0.8-3.79-0.8-1.52 0-2.86 0.3-3.86 0.82-1.02 0.53-2.42 0.88-3.95 0.88v2.4c1.53 0 2.93-0.34 3.95-0.88 1-0.51 2.34-0.8 3.86-0.8 1.45 0 2.79 0.3 3.79 0.79 1.01 0.54 2.39 0.89 3.93 0.89 1.52 0 2.91-0.32 3.92-0.85 1.01-0.52 2.4-0.83 3.91-0.83 1.5 0 2.86 0.31 3.86 0.82 1.02 0.55 2.37 0.86 3.91 0.86l0.02-2.4\"/>\n<path fill=\"#ccc\" d=\"m191.26 340.32c-1.54 0-2.89-0.33-3.91-0.87-1-0.51-2.36-0.82-3.86-0.82-1.51 0-2.9 0.31-3.91 0.83s-2.4 0.86-3.92 0.86c-1.54 0-2.92-0.37-3.93-0.9-1-0.5-2.33-0.79-3.79-0.79-1.52 0-2.86 0.29-3.86 0.81-1.02 0.53-2.42 0.88-3.95 0.88v-2.4c1.53 0 2.93-0.36 3.95-0.9 1-0.51 2.34-0.8 3.86-0.8 1.45 0 2.79 0.3 3.79 0.79 1.01 0.54 2.39 0.89 3.93 0.89 1.52 0 2.91-0.32 3.92-0.85 1.01-0.52 2.4-0.83 3.91-0.83 1.5 0 2.86 0.31 3.86 0.82 1.02 0.55 2.39 0.86 3.93 0.86l-0.02 2.42\"/>\n<path d=\"m191.26 342.73c-1.54 0-2.89-0.33-3.91-0.86-1-0.52-2.36-0.84-3.86-0.84-1.51 0-2.9 0.32-3.91 0.84s-2.4 0.86-3.92 0.86c-1.54 0-2.92-0.37-3.93-0.9-1-0.5-2.33-0.8-3.79-0.8-1.52 0-2.86 0.3-3.86 0.82-1.02 0.53-2.42 0.88-3.95 0.88v-2.39c1.53 0 2.93-0.37 3.95-0.9 1-0.52 2.34-0.81 3.86-0.81 1.45 0 2.79 0.3 3.79 0.79 1.01 0.53 2.39 0.9 3.93 0.9 1.52 0 2.91-0.34 3.92-0.86s2.4-0.83 3.91-0.83c1.5 0 2.86 0.31 3.86 0.82 1.02 0.54 2.38 0.87 3.93 0.87l-0.02 2.41z\"/>\n</g>\n<g fill=\"#c8b100\">\n<path stroke-linejoin=\"round\" d=\"m166.92 320.78c0.05 0.21 0.13 0.4 0.13 0.62 0 1.46-1.27 2.63-2.81 2.63h22.94c-1.55 0-2.81-1.17-2.81-2.63 0-0.21 0.04-0.41 0.09-0.62-0.13 0.05-0.29 0.06-0.44 0.06h-16.69c-0.13 0-0.29-0.02-0.41-0.06z\"/>\n<path d=\"m167.33 319.27h16.69c0.57 0 1.02 0.35 1.02 0.78s-0.45 0.79-1.02 0.79h-16.69c-0.56 0-1.02-0.36-1.02-0.79s0.46-0.78 1.02-0.78z\"/>\n<path d=\"m164.27 329.86h22.87v-5.83h-22.87v5.83z\"/>\n</g>\n<path fill=\"#ccc\" d=\"m167.55 318.32h16.25v-79.63h-16.25v79.63z\"/>\n<path fill=\"none\" d=\"m179.13 238.8v79.46m1.83-79.46v79.46\"/>\n<g fill=\"#c8b100\">\n<path d=\"m164.58 232.37h22.29v-5.84h-22.29v5.84z\"/>\n<path stroke-linejoin=\"round\" d=\"m166.92 236.26c0.14-0.06 0.24-0.07 0.41-0.07h16.69c0.17 0 0.32 0.03 0.46 0.08-0.58-0.19-0.99-0.71-0.99-1.32s0.45-1.14 1.03-1.33c-0.14 0.04-0.33 0.08-0.49 0.08h-16.7c-0.17 0-0.33-0.01-0.47-0.06l0.09 0.02c0.6 0.18 0.94 0.71 0.94 1.29 0 0.56-0.38 1.13-0.97 1.31z\"/>\n<path d=\"m167.33 236.19h16.69c0.57 0 1.02 0.35 1.02 0.78 0 0.44-0.45 0.79-1.02 0.79h-16.69c-0.56 0-1.02-0.35-1.02-0.79 0-0.43 0.46-0.78 1.02-0.78z\"/>\n<path d=\"m167.33 232.37h16.7c0.57 0 1.03 0.3 1.03 0.66 0 0.37-0.46 0.67-1.03 0.67h-16.7c-0.56 0-1.02-0.3-1.02-0.67 0-0.36 0.46-0.66 1.02-0.66z\"/>\n</g>\n</g>\n<g id=\"ribbon_left\" fill=\"#ad1519\">\n<path d=\"m162.48 298.62c-2.26 1.3-3.8 2.64-3.55 3.31 0.12 0.61 0.84 1.07 1.87 1.75 1.62 1.13 2.6 3.14 1.83 4.07 1.34-1.08 2.19-2.69 2.19-4.49 0-1.87-0.9-3.56-2.34-4.64z\"/>\n<path stroke-linejoin=\"round\" d=\"m200.4 268.47c-3.54-1.46-9.57-2.55-16.49-2.78-2.39 0.02-5.04 0.25-7.79 0.7-9.72 1.63-17.13 5.51-16.54 8.67 0.01 0.06 0.04 0.2 0.05 0.26 0 0-3.64-8.21-3.7-8.52-0.65-3.51 7.56-7.82 18.35-9.62 3.39-0.57 6.69-0.79 9.56-0.76 6.9 0 12.9 0.89 16.52 2.23l0.04 9.82\"/>\n<path d=\"m167.52 278.47c-4.51-0.32-7.58-1.53-7.94-3.41-0.28-1.5 1.25-3.17 3.97-4.68 1.21 0.14 2.58 0.3 4 0.3l-0.03 7.79\"/>\n<path d=\"m183.83 272.38c2.82 0.43 4.93 1.13 5.98 1.99l0.1 0.17c0.5 1.03-1.97 3.22-6.11 5.67l0.03-7.83\"/>\n<path stroke-linejoin=\"round\" d=\"m157.42 293.83c-0.43-1.28 3.97-3.86 10.18-6.14 2.84-1.01 5.18-2.07 8.09-3.35 8.63-3.82 15-8.2 14.22-9.79l-0.09-0.17c0.46 0.38 1.18 8.24 1.18 8.24 0.78 1.46-5.05 5.78-13 9.58-2.54 1.22-7.91 3.2-10.44 4.09-4.54 1.57-9.04 4.54-8.63 5.64l-1.51-8.09v-0.01z\"/>\n</g>\n<g id=\"crown_right\" stroke-width=\"0.26\">\n<path fill=\"#ad1519\" stroke-width=\"0.27\" d=\"m324.85 220.42s-0.74 0.78-1.28 0.89c-0.53 0.1-1.21-0.49-1.21-0.49s-0.48 0.51-1.08 0.64c-0.59 0.14-1.41-0.66-1.41-0.66s-0.57 0.8-1.07 0.99c-0.51 0.18-1.13-0.24-1.13-0.24s-0.23 0.39-0.65 0.61c-0.18 0.09-0.48-0.05-0.48-0.05l-0.6-0.38-0.68-0.72-0.62-0.24s-0.28-0.91-0.31-1.07c-0.02-0.16-0.08-0.57-0.08-0.57-0.13-0.65 0.87-1.4 2.3-1.72 0.82-0.19 1.54-0.18 2.06-0.02 0.57-0.48 1.78-0.82 3.2-0.82 1.29 0 2.42 0.27 3.04 0.7 0.61-0.43 1.74-0.7 3.03-0.7 1.42 0 2.62 0.34 3.19 0.82 0.53-0.16 1.24-0.17 2.07 0.02 1.42 0.32 2.43 1.07 2.3 1.72 0 0-0.06 0.41-0.08 0.57-0.03 0.16-0.32 1.07-0.32 1.07l-0.62 0.24-0.68 0.72-0.58 0.38s-0.3 0.14-0.48 0.05c-0.43-0.21-0.66-0.61-0.66-0.61s-0.62 0.42-1.13 0.24c-0.51-0.19-1.07-0.99-1.07-0.99s-0.82 0.8-1.42 0.66c-0.59-0.13-1.07-0.64-1.07-0.64s-0.68 0.59-1.21 0.49c-0.54-0.11-1.27-0.89-1.27-0.89z\"/>\n<g fill=\"#c8b100\">\n<ellipse cx=\"324.82\" cy=\"216.2\" rx=\"1.38\" ry=\"1.96\"/>\n<ellipse cx=\"324.85\" cy=\"216.2\" rx=\"0.63\" ry=\"1.81\"/>\n<ellipse stroke=\"none\" cx=\"324.84\" cy=\"213.95\" rx=\"0.93\" ry=\"0.88\"/>\n<path stroke-width=\"0.3\" d=\"m326.13 213.64v0.58h-2.53v-0.58h0.94v-1.3h-0.62v-0.58h0.62v-0.58h0.61v0.58h0.61v0.58h-0.61v1.3h0.98\"/>\n<path fill=\"none\" d=\"m325.11,213.12a0.93,0.88 0 1,1 -0.51,-0.01\"/>\n</g>\n<g fill=\"none\" stroke-width=\"0.21\">\n<path stroke-width=\"0.26\" stroke-linecap=\"round\" d=\"m314.41 219.99c-0.13-0.33-0.22-0.7-0.22-1.08 0-1.59 1.26-2.88 2.83-2.88 0.5 0 0.96 0.13 1.37 0.37\"/>\n<path stroke-width=\"0.26\" d=\"m319.48 217.93c-0.15-0.26-0.29-0.54-0.29-0.84 0-1.15 1.19-2.08 2.64-2.08 0.62 0 1.2 0.17 1.65 0.45\"/>\n<path stroke-width=\"0.26\" d=\"m330.17 217.96c0.15-0.26 0.25-0.57 0.25-0.87 0-1.15-1.18-2.08-2.64-2.08-0.62 0-1.19 0.17-1.64 0.45\"/>\n<path stroke-width=\"0.26\" stroke-linecap=\"round\" d=\"m335.21 219.99c0.13-0.33 0.21-0.7 0.21-1.08 0-1.59-1.26-2.88-2.82-2.88-0.5 0-0.97 0.13-1.38 0.37\"/>\n<ellipse cx=\"313.57\" cy=\"218.68\" rx=\"0.45\" ry=\"0.43\"/>\n<ellipse cx=\"313.74\" cy=\"217.1\" rx=\"0.45\" ry=\"0.43\"/>\n<ellipse cx=\"314.76\" cy=\"215.9\" rx=\"0.45\" ry=\"0.43\"/>\n<ellipse cx=\"316.11\" cy=\"215.25\" rx=\"0.45\" ry=\"0.43\"/>\n<ellipse cx=\"317.55\" cy=\"215.31\" rx=\"0.45\" ry=\"0.43\"/>\n<ellipse fill=\"#fff\" cx=\"318.43\" cy=\"217.08\" rx=\"0.45\" ry=\"0.43\"/>\n<ellipse cx=\"318.68\" cy=\"215.58\" rx=\"0.45\" ry=\"0.43\"/>\n<ellipse cx=\"319.81\" cy=\"214.64\" rx=\"0.45\" ry=\"0.43\"/>\n<ellipse cx=\"321.23\" cy=\"214.19\" rx=\"0.45\" ry=\"0.43\"/>\n<ellipse cx=\"322.67\" cy=\"214.24\" rx=\"0.45\" ry=\"0.43\"/>\n<ellipse cx=\"326.94\" cy=\"214.24\" rx=\"0.45\" ry=\"0.43\"/>\n<ellipse cx=\"328.39\" cy=\"214.19\" rx=\"0.45\" ry=\"0.43\"/>\n<ellipse cx=\"329.8\" cy=\"214.64\" rx=\"0.45\" ry=\"0.43\"/>\n<ellipse cx=\"330.93\" cy=\"215.58\" rx=\"0.45\" ry=\"0.43\"/>\n<ellipse fill=\"#fff\" cx=\"331.18\" cy=\"217.08\" rx=\"0.45\" ry=\"0.43\"/>\n<ellipse cx=\"332.06\" cy=\"215.31\" rx=\"0.45\" ry=\"0.43\"/>\n<ellipse cx=\"333.51\" cy=\"215.25\" rx=\"0.45\" ry=\"0.43\"/>\n<ellipse cx=\"334.86\" cy=\"215.9\" rx=\"0.45\" ry=\"0.43\"/>\n<ellipse cx=\"335.88\" cy=\"217.1\" rx=\"0.45\" ry=\"0.43\"/>\n<ellipse cx=\"336.05\" cy=\"218.68\" rx=\"0.45\" ry=\"0.43\"/>\n</g>\n<use xlink:href=\"#crown_pt1\" x=\"149.17\"/>\n<use xlink:href=\"#crown_pt2\" x=\"149.17\"/>\n</g>\n<use id=\"pillar_right\" xlink:href=\"#pillar_left\" x=\"149.17\"/>\n<use id=\"ribbon_right\" xlink:href=\"#ribbon_left\" transform=\"matrix(-1,0,0,1,500.57,0)\"/>\n<g id=\"plus_ultra\" fill=\"#c8b100\" stroke=\"none\">\n<path d=\"m166.42 264.65c1.99-0.72 3.29-1.58 2.66-3.14-0.41-1-1.43-1.19-2.97-0.63l-2.71 0.99 2.44 6.03c0.27-0.12 0.54-0.24 0.81-0.34 0.28-0.1 0.57-0.18 0.85-0.26l-1.08-2.64v-0.01zm-1.18-2.91l0.69-0.25c0.57-0.21 1.21 0.1 1.5 0.8 0.21 0.53 0.16 1.13-0.5 1.55-0.21 0.13-0.46 0.23-0.7 0.33l-0.99-2.43\"/>\n<path d=\"m172.78 259.22c-0.29 0.08-0.57 0.16-0.86 0.22-0.29 0.05-0.59 0.09-0.88 0.12l1.41 6.28 4.38-0.88c-0.05-0.12-0.12-0.26-0.14-0.38-0.03-0.14-0.03-0.28-0.04-0.41-0.77 0.22-1.61 0.46-2.61 0.66l-1.26-5.61\"/>\n<path d=\"m181.56 264.63c0.82-2.28 1.82-4.46 2.81-6.67-0.18 0.03-0.36 0.06-0.54 0.07s-0.37 0.01-0.54 0c-0.53 1.61-1.18 3.21-1.87 4.8-0.82-1.51-1.73-2.99-2.43-4.51-0.34 0.04-0.69 0.09-1.03 0.12-0.34 0.02-0.7 0.01-1.04 0.02 1.26 2.06 2.48 4.11 3.64 6.23 0.16-0.03 0.32-0.06 0.5-0.08 0.16-0.01 0.33 0.01 0.5 0.02\"/>\n<path d=\"m190.72 259.8c0.15-0.31 0.31-0.6 0.48-0.89-0.24-0.22-0.96-0.55-1.81-0.63-1.79-0.18-2.81 0.61-2.93 1.69-0.26 2.26 3.31 2.07 3.14 3.57-0.07 0.64-0.75 0.9-1.48 0.83-0.81-0.08-1.41-0.53-1.51-1.19l-0.22-0.02c-0.12 0.39-0.29 0.77-0.48 1.15 0.53 0.34 1.21 0.53 1.85 0.59 1.83 0.19 3.22-0.54 3.35-1.74 0.23-2.15-3.37-2.27-3.23-3.54 0.06-0.53 0.47-0.88 1.4-0.79 0.67 0.07 1.08 0.43 1.26 0.95l0.18 0.02\"/>\n<path d=\"m310.3 264.98c0.62-2.33 1.41-4.58 2.19-6.87-0.17 0.05-0.35 0.09-0.53 0.11-0.17 0.03-0.36 0.04-0.54 0.05-0.37 1.64-0.88 3.29-1.42 4.94-0.96-1.44-2-2.84-2.83-4.3-0.34 0.07-0.68 0.15-1.02 0.2s-0.69 0.07-1.04 0.11c1.45 1.94 2.85 3.89 4.2 5.91 0.16-0.04 0.32-0.1 0.5-0.12 0.16-0.02 0.33-0.02 0.49-0.03\"/>\n<path d=\"m316.48 258.16c-0.29 0.01-0.59 0.04-0.88 0.03-0.3 0-0.6-0.04-0.89-0.06l-0.12 6.41 4.49 0.08c-0.03-0.13-0.06-0.28-0.06-0.41s0.04-0.27 0.07-0.4c-0.81 0.05-1.68 0.1-2.71 0.08l0.1-5.73\"/>\n<path d=\"m323.52 259.21c0.72 0.06 1.41 0.19 2.1 0.31-0.01-0.13-0.03-0.27-0.02-0.41 0.01-0.13 0.06-0.26 0.1-0.39l-6.07-0.5c0.01 0.14 0.03 0.27 0.02 0.4-0.01 0.14-0.06 0.27-0.1 0.4 0.62-0.02 1.37-0.02 2.21 0.05l-0.53 5.77c0.29 0 0.59 0 0.88 0.03 0.3 0.02 0.59 0.07 0.88 0.11l0.53-5.77\"/>\n<path d=\"m326.01 265.53c0.29 0.05 0.59 0.09 0.88 0.15 0.28 0.06 0.57 0.15 0.85 0.23l0.72-2.94 0.08 0.01c0.16 0.41 0.38 0.9 0.49 1.19l0.9 2.22c0.36 0.06 0.71 0.11 1.05 0.18 0.36 0.08 0.7 0.18 1.04 0.28l-0.31-0.67c-0.48-1-0.99-2.01-1.41-3.02 1.12 0.04 1.98-0.36 2.2-1.26 0.15-0.62-0.1-1.11-0.68-1.53-0.44-0.31-1.28-0.47-1.83-0.6l-2.44-0.53-1.54 6.29m3.14-5.42c0.71 0.16 1.59 0.27 1.59 1.07-0.01 0.21-0.03 0.35-0.06 0.48-0.23 0.94-0.94 1.26-2.13 0.91l0.6-2.46\"/>\n<path d=\"m337.57 267.46c-0.05 0.69-0.18 1.37-0.31 2.1 0.3 0.14 0.61 0.27 0.9 0.44 0.3 0.16 0.57 0.34 0.86 0.52l0.6-7.23c-0.14-0.06-0.27-0.12-0.41-0.19-0.13-0.07-0.25-0.15-0.37-0.24l-6.38 4.05c0.17 0.08 0.35 0.16 0.51 0.25 0.17 0.09 0.31 0.19 0.47 0.28 0.54-0.45 1.1-0.82 1.74-1.3l2.39 1.31v0.01zm-1.81-1.66l2.13-1.37-0.25 2.4-1.88-1.03\"/>\n</g>\n</g>\n<g id=\"crown_crest\">\n<path fill=\"#ad1519\" stroke-width=\"0.26\" d=\"m249.65 182.72c6.64 0 12.56 0.99 16.41 2.51 2.2 1 5.16 1.73 8.4 2.17 2.47 0.33 4.81 0.39 6.85 0.24 2.73-0.06 6.67 0.74 10.62 2.48 3.26 1.45 5.99 3.21 7.8 4.91l-1.57 1.4-0.45 3.96-4.3 4.92-2.15 1.83-5.09 4.07-2.6 0.21-0.79 2.25-32.91-3.86-33.02 3.86-0.79-2.25-2.61-0.21-5.08-4.07-2.15-1.83-4.3-4.92-0.44-3.96-1.58-1.4c1.82-1.7 4.54-3.46 7.8-4.91 3.95-1.74 7.89-2.54 10.62-2.48 2.04 0.15 4.38 0.09 6.85-0.24 3.24-0.44 6.2-1.17 8.4-2.17 3.86-1.52 9.44-2.51 16.08-2.51z\"/>\n<g fill=\"#c8b100\">\n<path d=\"m225.34 191.42l1.38 1.11 2.08-3.4c-2.25-1.38-3.8-3.78-3.8-6.51 0-0.31 0.02-0.61 0.06-0.91 0.21-4.34 5.5-7.92 12.2-7.92 3.48 0 6.63 0.95 8.84 2.48 0.06-0.67 0.12-1.25 0.21-1.86-2.43-1.42-5.6-2.28-9.05-2.28-7.71 0-13.74 4.39-14.03 9.57-0.03 0.31-0.05 0.61-0.05 0.92 0 2.76 1.26 5.26 3.26 6.99l-1.1 1.81\"/>\n<path d=\"m225.43 191.46c-2.63-1.97-4.27-4.64-4.27-7.58 0-3.38 2.22-6.4 5.58-8.41-2.07 1.67-3.33 3.83-3.51 6.23-0.03 0.31-0.05 0.61-0.05 0.92 0 2.76 1.26 5.26 3.26 6.99l-1.01 1.85\"/>\n<path d=\"m202.21 194.89c-1.48-1.65-2.38-3.79-2.38-6.12 0-1.41 0.33-2.75 0.91-3.95 2.13-4.38 8.82-7.57 16.76-7.57 2.16 0 4.23 0.23 6.14 0.67-0.42 0.46-0.75 0.97-1.08 1.48-1.59-0.31-3.29-0.48-5.06-0.48-7.27 0-13.36 2.83-15.12 6.65-0.47 0.97-0.73 2.06-0.73 3.2 0 2.32 1.09 4.4 2.79 5.82l-2.63 4.3-1.41-1.12 1.81-2.88z\"/>\n<path d=\"m204.9 180.48c-1.91 1.21-3.36 2.69-4.16 4.34-0.58 1.2-0.91 2.54-0.91 3.95 0 2.33 0.9 4.47 2.38 6.12l-1.6 2.59c-1.53-1.96-2.42-4.26-2.42-6.7 0-4.2 2.67-7.87 6.71-10.3z\"/>\n<path d=\"m250.04 171.27c1.76 0 3.28 1.16 3.64 2.73 0.23 1.38 0.38 2.95 0.41 4.62 0.01 0.18-0.01 0.35-0.01 0.52 0 0.2 0.04 0.41 0.05 0.61 0.06 3.52 0.56 6.62 1.27 8.52l-5.36 5.14-5.43-5.14c0.72-1.9 1.22-5 1.29-8.52 0-0.2 0.04-0.41 0.04-0.61 0-0.17-0.01-0.34-0.01-0.52 0.03-1.67 0.18-3.24 0.41-4.62 0.36-1.57 1.94-2.73 3.7-2.73z\"/>\n<path d=\"m250.04 172.94c0.91 0 1.68 0.58 1.87 1.39 0.23 1.31 0.37 2.8 0.4 4.38 0 0.16-0.01 0.32-0.01 0.48 0 0.2 0.03 0.39 0.04 0.59 0.05 3.32 0.53 6.25 1.21 8.05l-3.54 3.35-3.54-3.35c0.67-1.8 1.15-4.73 1.21-8.05 0-0.2 0.04-0.39 0.04-0.59 0-0.16-0.01-0.32-0.01-0.48 0.03-1.58 0.17-3.07 0.4-4.38 0.18-0.81 1.02-1.39 1.93-1.39z\"/>\n<path d=\"m274.7 191.42l-1.39 1.11-2.08-3.4c2.26-1.38 3.81-3.78 3.81-6.51 0-0.31-0.02-0.61-0.06-0.91-0.21-4.34-5.5-7.92-12.2-7.92-3.49 0-6.63 0.95-8.84 2.48-0.06-0.67-0.12-1.25-0.22-1.86 2.44-1.42 5.6-2.28 9.06-2.28 7.71 0 13.74 4.39 14.03 9.57 0.03 0.31 0.05 0.61 0.05 0.92 0 2.76-1.27 5.26-3.27 6.99l1.11 1.81\"/>\n<path d=\"m274.61 191.46c2.63-1.97 4.27-4.64 4.27-7.58 0-3.38-2.22-6.4-5.58-8.41 2.07 1.67 3.33 3.83 3.51 6.23 0.03 0.31 0.05 0.61 0.05 0.92 0 2.76-1.27 5.26-3.27 6.99l1.02 1.85\"/>\n<path d=\"m297.83 194.89c1.47-1.65 2.38-3.79 2.38-6.12 0-1.41-0.33-2.75-0.91-3.95-2.14-4.38-8.82-7.57-16.76-7.57-2.16 0-4.23 0.23-6.15 0.67 0.43 0.46 0.76 0.97 1.09 1.48 1.58-0.31 3.29-0.48 5.06-0.48 7.27 0 13.35 2.83 15.11 6.65 0.47 0.97 0.73 2.06 0.73 3.2 0 2.32-1.09 4.4-2.79 5.82l2.63 4.3 1.42-1.12-1.81-2.88z\"/>\n<path d=\"m295.14 180.48c1.91 1.21 3.36 2.69 4.16 4.34 0.58 1.2 0.91 2.54 0.91 3.95 0 2.33-0.91 4.47-2.38 6.12l1.6 2.59c1.53-1.96 2.41-4.26 2.41-6.7 0-4.2-2.67-7.87-6.7-10.3z\"/>\n<ellipse fill=\"#005bbf\" stroke-width=\"0.26\" cx=\"250.05\" cy=\"167.3\" rx=\"4.43\" ry=\"4.2\"/>\n<path stroke-width=\"0.26\" d=\"m248.89 155.54v2.26h-2.42v2.3h2.42v3.15 3.46h-3.05c-0.03 0.21-0.22 0.37-0.22 0.59 0 0.58 0.12 1.14 0.35 1.64 0 0.02 0.02 0.02 0.03 0.03h8.12c0-0.01 0.02-0.01 0.03-0.03 0.22-0.5 0.35-1.06 0.35-1.64 0-0.22-0.19-0.38-0.22-0.59h-2.96v-3.43-3.18h2.42v-2.3h-2.42v-2.26h-2.43z\"/>\n</g>\n<g fill=\"#fff\">\n<ellipse cx=\"250.04\" cy=\"188.94\" rx=\"1.91\" ry=\"1.8\"/>\n<ellipse cx=\"250.04\" cy=\"185.4\" rx=\"1.91\" ry=\"1.8\"/>\n<ellipse cx=\"250.04\" cy=\"181.6\" rx=\"1.52\" ry=\"1.44\"/>\n<ellipse cx=\"250.04\" cy=\"178.18\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"250.04\" cy=\"175.18\" rx=\"0.88\" ry=\"0.83\"/>\n<ellipse cx=\"198.94\" cy=\"198.67\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"197.44\" cy=\"196.02\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"196.44\" cy=\"192.94\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"196.31\" cy=\"189.64\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"197.12\" cy=\"186.4\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"198.81\" cy=\"183.45\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"201.06\" cy=\"181.02\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"203.68\" cy=\"179.01\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"206.8\" cy=\"177.36\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"210.04\" cy=\"176.19\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"213.66\" cy=\"175.54\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"217.1\" cy=\"175.36\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"220.47\" cy=\"175.48\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"224.21\" cy=\"190.32\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"222.34\" cy=\"187.65\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"221.35\" cy=\"184.75\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"221.47\" cy=\"181.57\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"222.16\" cy=\"178.37\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"223.84\" cy=\"175.48\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"226.4\" cy=\"173.47\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"229.39\" cy=\"171.81\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"232.7\" cy=\"170.82\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"236.13\" cy=\"170.23\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"239.5\" cy=\"170.28\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"242.99\" cy=\"170.87\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"246.23\" cy=\"171.99\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"253.8\" cy=\"171.99\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"257.04\" cy=\"170.87\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"260.54\" cy=\"170.28\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"263.9\" cy=\"170.23\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"267.34\" cy=\"170.82\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"270.64\" cy=\"171.81\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"273.64\" cy=\"173.47\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"276.19\" cy=\"175.48\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"277.88\" cy=\"178.37\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"278.57\" cy=\"181.57\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"278.69\" cy=\"184.75\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"277.69\" cy=\"187.65\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"275.83\" cy=\"190.32\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"279.57\" cy=\"175.48\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"282.94\" cy=\"175.36\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"286.38\" cy=\"175.54\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"290\" cy=\"176.19\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"293.24\" cy=\"177.36\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"296.36\" cy=\"179.01\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"298.97\" cy=\"181.02\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"301.22\" cy=\"183.45\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"302.91\" cy=\"186.4\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"303.72\" cy=\"189.64\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"303.6\" cy=\"192.94\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"302.6\" cy=\"196.02\" rx=\"1.1\" ry=\"1.04\"/>\n<ellipse cx=\"301.1\" cy=\"198.67\" rx=\"1.1\" ry=\"1.04\"/>\n</g>\n<g fill=\"#c8b100\">\n<path d=\"m250.15 226.18c-12.26-0.02-23.25-1.47-31.09-3.83-0.57-0.18-0.87-0.7-0.84-1.25-0.01-0.52 0.29-1 0.84-1.17 7.84-2.36 18.83-3.81 31.09-3.83 12.27 0.02 23.25 1.47 31.09 3.83 0.55 0.17 0.84 0.65 0.83 1.17 0.03 0.55-0.27 1.07-0.83 1.25-7.84 2.36-18.82 3.81-31.09 3.83\"/>\n<path d=\"m250.07 216.09c-12.41 0.03-23.55 1.58-31.39 4 0.65-0.31 0.59-1.12-0.22-3.2-0.98-2.53-2.5-2.42-2.5-2.42 8.66-2.56 20.73-4.16 34.16-4.18 13.44 0.02 25.6 1.62 34.27 4.18 0 0-1.53-0.11-2.51 2.42-0.81 2.08-0.87 2.89-0.21 3.2-7.84-2.42-19.19-3.97-31.6-4\"/>\n<path d=\"m250.12 210.3c-13.43 0.02-25.5 1.62-34.16 4.18-0.58 0.17-1.19-0.05-1.38-0.6s0.12-1.18 0.7-1.35c8.71-2.67 21.08-4.35 34.84-4.38 13.77 0.03 26.19 1.71 34.9 4.38 0.58 0.17 0.89 0.8 0.7 1.35s-0.8 0.77-1.38 0.6c-8.67-2.56-20.78-4.16-34.22-4.18\"/>\n<path d=\"m250.2 199.78l1.23 0.22c-0.19 0.5-0.24 1.05-0.24 1.63 0 2.57 2.21 4.65 4.92 4.65 2.18 0 4.04-1.35 4.67-3.21 0.08 0.05 0.47-1.68 0.68-1.66 0.17 0.02 0.15 1.8 0.22 1.77 0.31 2.34 2.46 3.93 4.87 3.93 2.71 0 4.91-2.08 4.91-4.65 0-0.19-0.01-0.38-0.04-0.57l1.54-1.52 0.83 1.94c-0.33 0.61-0.46 1.3-0.46 2.03 0 2.46 2.1 4.44 4.69 4.44 1.63 0 3.06-0.78 3.9-1.97l0.99-1.25-0.01 1.53c0 1.55 0.66 2.93 2.16 3.18 0 0 1.73 0.1 4.03-1.7 2.29-1.8 3.55-3.29 3.55-3.29l0.2 1.8s-1.9 2.95-3.97 4.15c-1.14 0.66-2.86 1.35-4.23 1.13-1.44-0.24-2.48-1.4-3.01-2.74-1.03 0.61-2.25 0.97-3.55 0.97-2.81 0-5.33-1.54-6.32-3.86-1.29 1.4-3.09 2.25-5.2 2.25-2.24 0-4.29-1.01-5.57-2.56-1.27 1.16-2.98 1.87-4.88 1.87-2.48 0-4.69-1.22-5.94-3.05-1.25 1.83-3.46 3.05-5.94 3.05-1.89 0-3.61-0.71-4.87-1.87-1.28 1.55-3.34 2.56-5.58 2.56-2.11 0-3.9-0.85-5.19-2.25-1 2.32-3.52 3.86-6.32 3.86-1.31 0-2.52-0.36-3.55-0.97-0.54 1.34-1.57 2.5-3.02 2.74-1.36 0.22-3.08-0.47-4.22-1.13-2.08-1.2-3.98-4.15-3.98-4.15l0.2-1.8s1.27 1.49 3.56 3.29c2.29 1.81 4.02 1.7 4.02 1.7 1.51-0.25 2.16-1.63 2.16-3.18l-0.01-1.53 0.99 1.25c0.84 1.19 2.28 1.97 3.9 1.97 2.59 0 4.69-1.98 4.69-4.44 0-0.73-0.13-1.42-0.46-2.03l0.83-1.94 1.54 1.52c-0.02 0.19-0.04 0.38-0.04 0.57 0 2.57 2.2 4.65 4.91 4.65 2.42 0 4.56-1.59 4.88-3.93 0.06 0.03 0.05-1.75 0.22-1.77 0.2-0.02 0.6 1.71 0.67 1.66 0.64 1.86 2.49 3.21 4.68 3.21 2.71 0 4.91-2.08 4.91-4.65 0-0.58-0.03-1.13-0.24-1.63l1.29-0.22\"/>\n<path d=\"m208.37 206.32c-0.11-0.37-0.35-0.75-0.72-1.06-0.79-0.68-1.84-0.79-2.36-0.25-0.07 0.07-0.13 0.17-0.17 0.25 0 0-1.11-2.08-2.41-2.78-1.29-0.7-3.49-0.52-3.49-0.52 0-1.6 1.3-2.89 2.99-2.89 0.99 0 1.92 0.41 2.48 1.11l0.23-1.07s1.36 0.27 1.98 1.82-0.06 3.8-0.06 3.8 0.34-0.96 0.85-1.61c0.51-0.64 1.81-1.34 2.49-1.66 0.67-0.31 1.37-0.79 1.37-0.79s0.03 0.18 0.05 0.61c0.03 0.51-0.01 0.83-0.01 0.83 1.24-0.17 2.69 0.04 3.83 0.48-0.49 0.95-1.41 1.84-2.62 2.3 0 0 0.44 0.36 0.83 0.75 0.34 0.34 0.44 0.49 0.44 0.49s-0.85 0.13-1.27 0.19c-0.43 0.05-1.84 0.28-2.69 0.22-0.62-0.04-1.32-0.14-1.74-0.22\"/>\n<path fill=\"#ad1519\" d=\"m205.29 205.01c0.52-0.54 1.57-0.43 2.36 0.25 0.8 0.67 1.02 1.66 0.51 2.19-0.51 0.54-1.57 0.42-2.36-0.25-0.79-0.68-1.02-1.66-0.51-2.19\"/>\n<path fill=\"#fff\" d=\"m216.39 205.91c-0.28-0.83-0.03-1.65 0.57-1.83 0.6-0.19 1.32 0.33 1.6 1.16s0.03 1.65-0.57 1.84c-0.6 0.18-1.31-0.34-1.6-1.17\"/>\n<path d=\"m226.12 201.86c-0.33-0.27-0.59-0.64-0.67-1.08s0.01-0.87 0.23-1.23c0 0-0.88-0.44-1.83-0.69-0.72-0.19-1.99-0.2-2.37-0.2-0.38-0.02-1.15-0.03-1.15-0.03s0.07 0.17 0.28 0.55c0.27 0.46 0.5 0.75 0.5 0.75-1.27 0.29-2.35 1.12-3.03 2.09 0.99 0.68 2.3 1.1 3.6 0.97 0 0-0.12 0.34-0.2 0.86-0.06 0.43-0.06 0.61-0.06 0.61s0.71-0.26 1.07-0.39c0.35-0.13 1.54-0.55 2.15-0.96 0.8-0.54 1.48-1.25 1.48-1.25\"/>\n<path d=\"m225.68 191.65c1.06 0.67 1.98 1.79 2.3 3.03 0 0 0.13-0.25 0.71-0.59 0.59-0.33 1.09-0.32 1.09-0.32s-0.17 0.97-0.25 1.32c-0.09 0.34-0.09 1.38-0.32 2.32-0.23 0.93-0.63 1.68-0.63 1.68-0.42-0.34-0.99-0.51-1.58-0.41-0.58 0.1-1.06 0.44-1.32 0.9 0 0-0.66-0.58-1.21-1.38-0.55-0.81-0.93-1.78-1.13-2.08-0.21-0.3-0.72-1.15-0.72-1.15s0.47-0.18 1.14-0.05c0.67 0.12 0.88 0.32 0.88 0.32-0.14-1.28 0.28-2.62 1.04-3.59\"/>\n<path d=\"m228.97 201.38c0.22-0.35 0.32-0.79 0.24-1.23s-0.32-0.81-0.66-1.07c0 0 0.67-0.71 1.47-1.26 0.6-0.41 1.8-0.82 2.15-0.95 0.36-0.13 1.07-0.4 1.07-0.4s0 0.18-0.06 0.61c-0.08 0.52-0.2 0.87-0.2 0.87 1.3-0.14 2.62 0.29 3.61 0.98-0.69 0.97-1.77 1.79-3.04 2.08 0 0 0.23 0.28 0.5 0.74 0.21 0.39 0.28 0.56 0.28 0.56s-0.77-0.02-1.15-0.03c-0.38 0-1.65-0.01-2.37-0.2-0.95-0.25-1.84-0.69-1.84-0.69\"/>\n<ellipse fill=\"#ad1519\" cx=\"227.37\" cy=\"200.45\" rx=\"2.17\" ry=\"2.06\"/>\n<path fill=\"#fff\" d=\"m237.76 201.77c-0.11-0.87 0.31-1.63 0.93-1.7 0.63-0.07 1.23 0.57 1.34 1.44 0.11 0.86-0.3 1.63-0.93 1.7-0.62 0.07-1.22-0.57-1.34-1.44\"/>\n<path d=\"m248.5 199.83c-0.32-0.36-0.53-0.82-0.53-1.33 0-0.5 0.19-0.97 0.51-1.32 0 0-0.89-0.67-1.89-1.12-0.77-0.35-2.18-0.59-2.6-0.67-0.43-0.08-1.28-0.24-1.28-0.24s0.04 0.2 0.2 0.67c0.2 0.56 0.4 0.93 0.4 0.93-1.47 0.08-2.85 0.81-3.81 1.76 0.96 0.94 2.34 1.66 3.81 1.75 0 0-0.2 0.36-0.4 0.93-0.16 0.46-0.2 0.67-0.2 0.67s0.85-0.16 1.28-0.24c0.42-0.08 1.83-0.32 2.6-0.67 1-0.46 1.91-1.11 1.91-1.11\"/>\n<path d=\"m250.11 188.36c1.05 0.95 1.85 2.36 1.95 3.82 0 0 0.19-0.27 0.91-0.53 0.73-0.26 1.28-0.16 1.28-0.16s-0.39 1.05-0.55 1.42c-0.17 0.37-0.39 1.53-0.84 2.53-0.44 1-1.05 1.76-1.05 1.76-0.4-0.45-1-0.75-1.67-0.75-0.68 0-1.27 0.3-1.67 0.75 0 0-0.61-0.76-1.05-1.76-0.45-1-0.67-2.16-0.84-2.53s-0.56-1.42-0.56-1.42 0.56-0.1 1.28 0.16 0.92 0.53 0.92 0.53c0.1-1.46 0.86-2.87 1.89-3.82\"/>\n<path d=\"m251.76 199.83c0.33-0.36 0.53-0.82 0.53-1.33 0-0.5-0.19-0.97-0.51-1.32 0 0 0.89-0.67 1.9-1.12 0.76-0.35 2.17-0.59 2.6-0.67 0.42-0.08 1.26-0.24 1.26-0.24s-0.02 0.2-0.19 0.67c-0.2 0.56-0.4 0.93-0.4 0.93 1.47 0.08 2.86 0.81 3.81 1.76-0.95 0.94-2.33 1.66-3.81 1.75 0 0 0.2 0.36 0.4 0.93 0.16 0.46 0.19 0.67 0.19 0.67l-1.26-0.24c-0.43-0.08-1.84-0.32-2.6-0.67-1.01-0.46-1.92-1.11-1.92-1.11\"/>\n<ellipse fill=\"#ad1519\" cx=\"250.14\" cy=\"198.5\" rx=\"2.17\" ry=\"2.06\"/>\n<path fill=\"#fff\" d=\"m262.58 201.77c0.11-0.87-0.3-1.63-0.93-1.7s-1.23 0.57-1.34 1.44c-0.11 0.86 0.31 1.63 0.93 1.7 0.63 0.07 1.23-0.57 1.34-1.44\"/>\n<path d=\"m271.38 201.38c-0.22-0.35-0.32-0.79-0.25-1.23 0.09-0.44 0.33-0.81 0.67-1.07 0 0-0.67-0.71-1.47-1.26-0.61-0.41-1.8-0.82-2.16-0.95-0.35-0.13-1.06-0.4-1.06-0.4s-0.01 0.18 0.06 0.61c0.08 0.52 0.19 0.87 0.19 0.87-1.29-0.14-2.61 0.29-3.6 0.98 0.68 0.97 1.77 1.79 3.03 2.08 0 0-0.23 0.28-0.49 0.74-0.22 0.39-0.28 0.56-0.28 0.56l1.14-0.03c0.38 0 1.66-0.01 2.37-0.2 0.95-0.25 1.84-0.69 1.84-0.69\"/>\n<path d=\"m274.67 191.65c-1.06 0.67-1.98 1.79-2.31 3.03 0 0-0.12-0.25-0.71-0.59-0.58-0.33-1.09-0.32-1.09-0.32s0.17 0.97 0.26 1.32c0.09 0.34 0.09 1.38 0.31 2.32 0.23 0.93 0.64 1.68 0.64 1.68 0.42-0.34 0.99-0.51 1.57-0.41 0.59 0.1 1.06 0.44 1.33 0.9 0 0 0.66-0.58 1.21-1.38 0.54-0.81 0.92-1.78 1.12-2.08 0.21-0.3 0.72-1.15 0.72-1.15s-0.47-0.18-1.14-0.05c-0.67 0.12-0.88 0.32-0.88 0.32 0.15-1.28-0.28-2.62-1.03-3.59\"/>\n<path d=\"m274.22 201.86c0.34-0.27 0.6-0.64 0.67-1.08 0.09-0.44 0-0.87-0.22-1.23 0 0 0.88-0.44 1.83-0.69 0.72-0.19 1.99-0.2 2.36-0.2 0.39-0.02 1.15-0.03 1.15-0.03s-0.06 0.17-0.28 0.55c-0.26 0.46-0.49 0.75-0.49 0.75 1.26 0.29 2.34 1.12 3.03 2.09-0.99 0.68-2.31 1.1-3.6 0.97 0 0 0.11 0.34 0.19 0.86 0.06 0.43 0.06 0.61 0.06 0.61s-0.71-0.26-1.06-0.39c-0.36-0.13-1.55-0.55-2.16-0.96-0.79-0.54-1.48-1.25-1.48-1.25\"/>\n<ellipse fill=\"#ad1519\" cx=\"272.98\" cy=\"200.45\" rx=\"2.17\" ry=\"2.06\"/>\n<path fill=\"#fff\" d=\"m283.96 205.91c0.28-0.83 0.03-1.65-0.57-1.83-0.6-0.19-1.32 0.33-1.61 1.16-0.28 0.83-0.03 1.65 0.57 1.84 0.6 0.18 1.32-0.34 1.61-1.17\"/>\n<path d=\"m291.97 206.32c0.11-0.37 0.36-0.75 0.72-1.06 0.79-0.68 1.85-0.79 2.36-0.25 0.07 0.07 0.14 0.17 0.18 0.25 0 0 1.1-2.08 2.4-2.78s3.5-0.52 3.5-0.52c0-1.6-1.31-2.89-3-2.89-0.99 0-1.92 0.41-2.47 1.11l-0.23-1.07s-1.36 0.27-1.98 1.82 0.05 3.8 0.05 3.8-0.33-0.96-0.84-1.61c-0.51-0.64-1.81-1.34-2.49-1.66-0.68-0.31-1.37-0.79-1.37-0.79s-0.03 0.18-0.06 0.61c-0.02 0.51 0.02 0.83 0.02 0.83-1.25-0.17-2.7 0.04-3.83 0.48 0.48 0.95 1.4 1.84 2.61 2.3 0 0-0.43 0.36-0.83 0.75-0.33 0.34-0.43 0.49-0.43 0.49s0.85 0.13 1.27 0.19c0.43 0.05 1.84 0.28 2.68 0.22 0.63-0.04 1.32-0.14 1.74-0.22\"/>\n<path fill=\"#ad1519\" d=\"m295.05 205.01c-0.51-0.54-1.57-0.43-2.36 0.25-0.79 0.67-1.02 1.66-0.51 2.19 0.51 0.54 1.57 0.42 2.36-0.25 0.79-0.68 1.02-1.66 0.51-2.19\"/>\n</g>\n<g fill=\"none\">\n<path fill=\"#ad1519\" stroke-linejoin=\"round\" d=\"m250.12 224.57c-11.06-0.01-21.07-1.29-28.68-3.26 7.61-1.97 17.62-3.17 28.68-3.19 11.07 0.02 21.13 1.22 28.74 3.19-7.61 1.97-17.67 3.25-28.74 3.26z\"/>\n<path stroke-width=\"0.05\" d=\"m258.04 224.28v-6.01m-3.02 6.21l0.04-6.37m-2.24 6.45v-6.49\"/>\n<path stroke-width=\"0.09\" d=\"m250.95 224.64v-6.57\"/>\n<path stroke-width=\"0.14\" d=\"m249.16 224.64v-6.57\"/>\n<path stroke-width=\"0.18\" d=\"m247.48 224.64v-6.57\"/>\n<path stroke-width=\"0.23\" d=\"m245.81 224.64v-6.57\"/>\n<path stroke-width=\"0.28\" d=\"m244.32 224.64v-6.57\"/>\n<path stroke-width=\"0.33\" d=\"m241.48 224.28l-0.04-5.97m1.39 6.05v-6.25\"/>\n<path stroke-width=\"0.37\" d=\"m238.86 224.01v-5.5m1.33 5.66l-0.04-5.86\"/>\n<path stroke-width=\"0.42\" d=\"m235.35 223.7v-4.84m1.15 4.92v-5.08m1.19 5.24v-5.28\"/>\n<path stroke-width=\"0.46\" d=\"m234.12 223.66v-4.68\"/>\n<path stroke-width=\"0.51\" d=\"m232.97 223.42v-4.36\"/>\n<path stroke-width=\"0.56\" d=\"m231.74 223.31v-4.06\"/>\n<path stroke-width=\"0.6\" d=\"m229.22 222.95l-0.04-3.22m1.33 3.38v-3.62\"/>\n<path stroke-width=\"0.63\" d=\"m227.93 222.68v-2.84\"/>\n<path stroke-width=\"0.68\" d=\"m226.74 222.45v-2.36\"/>\n<path stroke-width=\"0.73\" d=\"m225.45 222.13v-1.85\"/>\n<path stroke-width=\"0.77\" d=\"m224.12 221.98v-1.38\"/>\n<path stroke-width=\"0.91\" d=\"m222.72 221.66v-0.67\"/>\n<path d=\"m220.12 221.66c7.75-2.18 18.29-3.52 30-3.54 11.72 0.02 22.31 1.36 30.06 3.54\"/>\n<path fill=\"#ad1519\" d=\"m216.72 217.16l1.22-1.59 3.37 0.43-2.69 1.96-1.9-0.8\"/>\n<path fill=\"#fff\" d=\"m224.03 215.28c0-0.58 0.49-1.04 1.1-1.04s1.1 0.46 1.1 1.04c0 0.57-0.49 1.04-1.1 1.04s-1.1-0.47-1.1-1.04\"/>\n<path fill=\"#058e6e\" d=\"m233.64 215.07l-2.36 0.27c-0.61 0.07-1.17-0.33-1.24-0.9-0.08-0.57 0.35-1.09 0.96-1.15l2.37-0.28 2.42-0.28c0.6-0.07 1.15 0.33 1.22 0.9s-0.36 1.09-0.96 1.16l-2.41 0.28\"/>\n<path fill=\"#fff\" d=\"m240.54 213.35c0-0.58 0.49-1.04 1.1-1.04 0.6 0 1.1 0.46 1.1 1.04 0 0.57-0.5 1.04-1.1 1.04-0.61 0-1.1-0.47-1.1-1.04\"/>\n<path fill=\"#ad1519\" d=\"m250.15 214.16h-3.29c-0.6 0-1.11-0.46-1.11-1.03 0-0.58 0.49-1.04 1.1-1.04h6.64c0.61 0 1.1 0.46 1.1 1.04 0 0.57-0.51 1.03-1.11 1.03h-3.33\"/>\n<path fill=\"#fff\" d=\"m257.56 213.35c0-0.58 0.5-1.04 1.1-1.04 0.61 0 1.1 0.46 1.1 1.04 0 0.57-0.49 1.04-1.1 1.04-0.6 0-1.1-0.47-1.1-1.04\"/>\n<path fill=\"#058e6e\" d=\"m266.66 215.07l2.36 0.27c0.6 0.07 1.17-0.33 1.24-0.9s-0.36-1.09-0.96-1.15l-2.37-0.28-2.42-0.28c-0.61-0.07-1.15 0.33-1.22 0.9-0.08 0.57 0.36 1.09 0.96 1.16l2.41 0.28\"/>\n<path fill=\"#fff\" d=\"m274.07 215.28c0-0.58 0.49-1.04 1.1-1.04s1.1 0.46 1.1 1.04c0 0.57-0.49 1.04-1.1 1.04s-1.1-0.47-1.1-1.04\"/>\n<path fill=\"#ad1519\" d=\"m283.57 217.16l-1.21-1.59-3.37 0.43 2.69 1.96 1.89-0.8\"/>\n</g>\n</g>\n<g id=\"shield\" stroke-width=\"0.52\">\n<g id=\"Granada\">\n<path fill=\"#ccc\" d=\"m250.49 344.33c-13.08 0-26.05-3.2-36.95-8.54-8.03-3.98-13.36-12-13.36-21.19v-33.3h100.42v33.3c0 9.19-5.32 17.21-13.36 21.19-10.9 5.34-23.66 8.54-36.75 8.54z\"/>\n<path fill=\"#ffd691\" d=\"m252.91 329.55c2.09 0.63 3.15 2.19 3.15 4.01 0 2.38-2.3 4.18-5.3 4.18-2.99 0-5.42-1.8-5.42-4.18 0-1.79 1-3.8 3.08-3.94 0 0-0.06-0.19-0.24-0.5-0.22-0.23-0.64-0.66-0.64-0.66s0.79-0.15 1.25 0.02c0.46 0.18 0.77 0.47 0.77 0.47s0.21-0.43 0.52-0.76c0.3-0.33 0.7-0.53 0.7-0.53s0.46 0.38 0.61 0.64c0.15 0.27 0.25 0.59 0.25 0.59s0.42-0.35 0.79-0.49c0.37-0.15 0.84-0.26 0.84-0.26s-0.13 0.46-0.22 0.69-0.14 0.72-0.14 0.72\"/>\n<path fill=\"#058e6e\" d=\"m250.32 340.32s-3.98-2.68-5.7-3.04c-2.21-0.47-4.69-0.09-5.76-0.15 0.03 0.03 1.29 0.93 1.84 1.48s2.39 1.65 3.43 1.91c3.22 0.81 6.19-0.2 6.19-0.2\"/>\n<path fill=\"#058e6e\" d=\"m251.46 340.56s2.54-2.66 5.21-3.02c3.15-0.44 5.22 0.26 6.44 0.58 0.03 0-1.01 0.49-1.56 0.87-0.55 0.37-1.97 1.57-4.14 1.59-2.18 0.03-4.58-0.23-4.97-0.17-0.4 0.06-0.98 0.15-0.98 0.15\"/>\n<path fill=\"#ad1519\" d=\"m250.69 337.28c-1-0.93-1.62-2.25-1.62-3.72 0-1.46 0.62-2.78 1.63-3.71 0.99 0.93 1.61 2.25 1.61 3.71 0 1.47-0.62 2.79-1.62 3.72\"/>\n<path fill=\"#058e6e\" d=\"m249.68 342.71s0.61-1.52 0.67-2.83c0.06-1.09-0.15-2.17-0.15-2.17h0.52 0.28s0.39 1.16 0.39 2.17c0 1.02-0.18 2.37-0.18 2.37s-0.55 0.08-0.73 0.17c-0.19 0.09-0.8 0.29-0.8 0.29\"/>\n</g>\n<g id=\"Aragon\" fill=\"#c8b100\">\n<path fill=\"#ad1519\" d=\"m250.32 314.57c0 13.16-11.16 23.82-25.05 23.82s-25.15-10.66-25.15-23.82v-33.35h50.2v33.35\"/>\n<path d=\"m200.03 314.12c0.15 7.02 2.95 12.25 5.73 15.67v-49.47h-5.66l-0.07 33.8z\"/>\n<path d=\"m211.08 334.23c1.57 0.83 3.72 2.22 6.03 2.77l-0.15-56.96h-5.88v54.19z\"/>\n<path d=\"m222.28 338.25c2.3 0.23 4.01 0.19 5.87 0v-58.21h-5.87v58.21z\"/>\n<path d=\"m233.32 337c2.3-0.46 4.9-1.89 6.03-2.63v-54.33h-5.88l-0.15 56.96z\"/>\n<path d=\"m244.81 329.24c2.45-2.18 4.75-7.12 5.59-12.76l0.14-36.44h-5.87l0.14 49.2z\"/>\n</g>\n<g id=\"Navarre\">\n<path fill=\"#ad1519\" d=\"m300.65 281.22v33.35c0 13.16-11.28 23.82-25.17 23.82-13.9 0-25.16-10.66-25.16-23.82v-33.35h50.33\"/>\n<path id=\"chains_half\" fill=\"#c8b100\" stroke=\"#c8b100\" stroke-width=\"0.26\" d=\"m272.71,306.14c0.05-0.14,0.12-0.27,0.19-0.4l-4.26-4.74-1.67,0.72-3.06-3.39,1-1.46-5.34-5.99c-0.07,0.02-0.2,0.02-0.27,0.04l0.03,4.02,1.75,0.5v4.46l-1.75,0.48-0.03,4.08c0.84,0.26,1.48,0.88,1.74,1.67l3.21,0.01,0.51-1.67h4.72l0.5,1.67zm-6.98-18.5,0,1.61,2.76,0,0-1.61zm-7.3,20.37c0.64,0,1.16-0.49,1.16-1.1s-0.52-1.11-1.16-1.11c-0.65,0-1.17,0.5-1.17,1.11s0.52,1.1,1.17,1.1zm15.99-9.73-1.76-0.48,0-4.46,1.76-0.5-0.01-1.92c-0.85-0.25-1.51-0.87-1.79-1.67h-2.68l-0.51,1.67h-4.71l-0.51-1.67h-3.09c-0.08,0.22-0.17,0.42-0.29,0.61l5.38,5.96,1.67-0.71,3.06,3.4-1,1.45,4.18,4.64c0.09-0.04,0.18-0.08,0.28-0.12zm-7.25-1.39-1.29,1.04,1.77,1.98,1.29-1.05zm8.00432,36.1859c-1.23998-0.065-2.25509-0.9022-2.51432-2.01593-1.67-0.23-3.25-0.66-4.73-1.3l0.84-1.43c1.29,0.55,2.66,0.91,4.08,1.11,0.31-0.66,0.86-1.16,1.58-1.4l0.01-5.62-1.76-0.49v-4.46l1.76-0.48v-7.64c-0.07-0.02-0.13-0.05-0.2-0.09l-3.98,4.42,1,1.44-3.06,3.4-1.67-0.71-3.3,3.67c0.57,0.87,0.55,2-0.11,2.85,0.94,1.05,2.03,1.98,3.24,2.75l-0.84,1.44c-1.42-0.89-2.7-1.99-3.79-3.22-0.87,0.26-1.86,0.11-2.6-0.5-1.15-0.93-1.29-2.56-0.3-3.64l0.14-0.16c-0.69-1.56-1.16-3.24-1.32-5l1.71,0.01c0.14,1.5,0.51,2.93,1.09,4.27,0.49-0.06,1-0.01,1.46,0.16l3.32-3.68-1-1.45,3.06-3.4,1.67,0.72,3.99-4.43c-0.09-0.14-0.15-0.29-0.21-0.46l-2.76,0.01-0.5,1.67h-4.72l-0.51-1.67-3.24-0.01c-0.27,0.76-0.9,1.36-1.69,1.62l-0.01,4.04-1.71-0.01v-4.01c-1.1-0.33-1.91-1.31-1.91-2.47,0-1.15,0.82-2.15,1.92-2.48l0.01-4.05-1.76-0.48v-4.46l1.76-0.5v-4.05c-1.08-0.35-1.84-1.32-1.84-2.45,0-1.43,1.22-2.58,2.73-2.58,1.22,0,2.25,0.74,2.61,1.78h3.09l0.51-1.67h4.71l0.51,1.67h2.68c0.35692-1.0311,1.36258-1.76731,2.55896-1.77984l0.0711,8.36984h-0.85v2.61h0.845l-0.0214,21.59h-0.7836v2.61h0.77946zm-5.914-18.306l-1.29-1.04-1.78,1.98,1.29,1.04zm-9.96-18.44-1.69,0-0.01,2.61,1.7,0zm9.16,11.41,0-1.6-2.85,0,0,1.6zm-10.6,9.69-1.76-0.39-0.25-4.45,1.75-0.58,0,2.56c0,0.99,0.09,1.92,0.26,2.86zm1.46-5.52,1.75,0.41s0.09,2.87,0.05,2.22c-0.04-0.74,0.19,2.24,0.19,2.24l-1.76,0.58c-0.18-0.9-0.24-1.84-0.24-2.79zm10.81,16.93,0.39-1.7c-1.52-0.48-2.93-1.18-4.17-2.09l-1.26,1.11c1.48,1.15,3.19,2.08,5.04,2.68zm-0.85,1.44-1.3,1.22c-1.47-0.54-2.86-1.26-4.12-2.11l0.38-1.77c1.5,1.13,3.21,2.03,5.04,2.66z\"/>\n<use xlink:href=\"#chains_half\" transform=\"matrix(-1,0,0,1,550.43,0)\"/>\n<path fill=\"#058e6e\" stroke=\"none\" d=\"m272.59 306.94c0-1.44 1.23-2.6 2.74-2.6s2.73 1.16 2.73 2.6c0 1.43-1.22 2.58-2.73 2.58s-2.74-1.15-2.74-2.58\"/>\n</g>\n<g id=\"Castile\" fill=\"#c8b100\" stroke-width=\"0.46\">\n<path fill=\"#ad1519\" stroke-width=\"0.52\" d=\"m200.12 281.25h50.18v-55.72h-50.18v55.72z\"/>\n<path d=\"m217.34 238.41h-0.92v-0.92h-1.62v3.69h1.62v2.55h-3.47v7.39h1.85v14.79h-3.7v7.63h28.42v-7.63h-3.69v-14.79h1.85v-7.39h-3.47v-2.55h1.62v-3.69h-1.62v0.92h-0.93v-0.92h-1.61v0.92h-1.16v-0.92h-1.62v3.69h1.62v2.55h-3.46v-8.09h1.84v-3.7h-1.84v0.93h-0.93v-0.93h-1.62v0.93h-0.92v-0.93h-1.85v3.7h1.85v8.09h-3.47v-2.55h1.62v-3.69h-1.62v0.92h-0.92v-0.92h-1.85v0.92zm-6.24 35.13h28.42m-28.42-1.85h28.42m-28.42-1.85h28.42m-28.42-1.85h28.42m-28.42-2.08h28.42m-24.72-1.62h21.03m-21.03-1.85h21.03m-21.03-2.08h21.03m-21.03-1.84h21.03m-21.03-1.85h21.03m-21.03-1.85h21.03m-21.03-1.85h21.03m-22.88-1.85h24.73m-24.73-1.85h24.73m-24.73-1.85h24.73m-24.73-1.84h24.73m-21.26-1.85h17.79m-10.63-1.85h3.47m-3.47-1.85h3.47m-3.47-1.85h3.47m-3.47-1.85h3.47m-5.32-2.31h7.16m-12.47 7.86h3.69m-5.31-2.31h6.93m-6.93 33.97v-1.85m0-1.85v-1.85m-1.85 1.85v1.85m3.47 0v-1.85m1.84 3.7v-1.85m0-1.85v-1.85m0-2.08v-1.62m0-1.85v-2.08m-1.84 7.63v-2.08m-3.47 2.08v-2.08m7.16 0v2.08m1.62-2.08v-1.62m-5.31-1.85v1.85m3.69-1.85v1.85m3.47-1.85v1.85m-1.85-1.85v-2.08m1.85-1.84v1.84m0-5.54v1.85m-1.85-3.7v1.85m1.85-3.7v1.85m-3.47-1.85v1.85m-3.69-1.85v1.85m-1.62-3.7v1.85m3.46-1.85v1.85m3.47-1.85v1.85m1.85-3.7v1.85m-3.47-1.85v1.85m-3.69-1.85v1.85m-1.62-3.69v1.84m6.93-1.84v1.84m-3.47-5.54v1.85m15.95-1.85h-3.7m5.32-2.31h-6.94m6.94 33.97v-1.85m0-1.85v-1.85m1.85 1.85v1.85m-3.47 0v-1.85m-1.85 3.7v-1.85m0-1.85v-1.85m0-2.08v-1.62m0-1.85v-2.08m1.85 7.63v-2.08m3.47 2.08v-2.08m-7.17 0v2.08m-1.62-2.08v-1.62m5.32-1.85v1.85m-3.7-1.85v1.85m-3.46-1.85v1.85m1.84-1.85v-2.08m-1.84-1.84v1.84m0-5.54v1.85m1.84-3.7v1.85m-1.84-3.7v1.85m3.46-1.85v1.85m3.7-1.85v1.85m1.62-3.7v1.85m-3.47-1.85v1.85m-3.47-1.85v1.85m-1.84-3.7v1.85m3.46-1.85v1.85m3.7-1.85v1.85m1.62-3.69v1.84m-6.94-1.84v1.84m3.47-5.54v1.85m-7.16 18.71v-2.08m0-5.54v-1.85m0 5.55v-1.85m0-5.55v-1.85m0-1.85v-1.84m0-3.7v-1.85m0-1.85v-1.85m-8.78 4.85h3.69m3.47-5.54h3.47m3.46 5.54h3.7\"/>\n<path d=\"m230.05 273.54v-4.86c0-0.92-0.46-3.7-4.85-3.7-4.16 0-4.62 2.78-4.62 3.7v4.86h9.47z\"/>\n<path d=\"m222.19 268.91l-2.31-0.23c0-0.92 0.23-2.31 0.93-2.77l2.08 1.62c-0.23 0.23-0.7 0.92-0.7 1.38z\"/>\n<path d=\"m226.12 266.6l1.16-2.08c-0.46-0.23-1.39-0.46-2.08-0.46-0.46 0-1.39 0.23-1.85 0.46l1.15 2.08h1.62z\"/>\n<path d=\"m228.43 268.91l2.31-0.23c0-0.92-0.23-2.31-0.92-2.77l-2.08 1.62c0.23 0.23 0.69 0.92 0.69 1.38z\"/>\n<path d=\"m221.73 260.83v-5.09c0-1.38-0.92-2.54-2.54-2.54s-2.54 1.16-2.54 2.54v5.09h5.08z\"/>\n<path d=\"m228.89 260.83v-5.09c0-1.38 0.93-2.54 2.55-2.54 1.61 0 2.54 1.16 2.54 2.54v5.09h-5.09z\"/>\n<path d=\"m220.11 248.35l0.23-4.62h-4.39l0.47 4.62h3.69z\"/>\n<path d=\"m227.05 248.35l0.46-4.62h-4.39l0.23 4.62h3.7z\"/>\n<path d=\"m230.51 248.35l-0.46-4.62h4.62l-0.46 4.62h-3.7z\"/>\n<g fill=\"#0039f0\" stroke=\"none\">\n<path d=\"m228.43 273.54v-4.16c0-0.7-0.46-2.78-3.23-2.78-2.54 0-3.01 2.08-3.01 2.78v4.16h6.24z\"/>\n<path d=\"m221.27 260.36v-4.39c0-1.15-0.69-2.31-2.08-2.31s-2.08 1.16-2.08 2.31v4.39h4.16z\"/>\n<path d=\"m229.36 260.36v-4.39c0-1.15 0.69-2.31 2.08-2.31 1.38 0 2.08 1.16 2.08 2.31v4.39h-4.16z\"/>\n</g>\n</g>\n<g id=\"Leon\">\n<path fill=\"#ccc\" d=\"m250.28 281.25h50.32v-55.72h-50.32v55.72z\"/>\n<path fill=\"#db4446\" stroke-width=\"0.39\" d=\"m275.93 239.26l0.05-0.62 0.09-0.34s-1.61 0.13-2.46-0.11-1.61-0.59-2.4-1.25c-0.79-0.68-1.1-1.1-1.67-1.18-1.36-0.22-2.4 0.4-2.4 0.4s1.02 0.37 1.78 1.31 1.59 1.41 1.95 1.53c0.59 0.18 2.66 0.05 3.22 0.07 0.57 0.03 1.84 0.19 1.84 0.19z\"/>\n<g fill=\"none\" stroke-width=\"0.39\">\n<path fill=\"#ed72aa\" d=\"m283.46 237s0.01 0.72 0.08 1.4c0.06 0.67-0.22 1.24-0.11 1.61s0.16 0.66 0.3 0.93c0.14 0.26 0.21 0.94 0.21 0.94s-0.38-0.28-0.74-0.54c-0.35-0.27-0.6-0.44-0.6-0.44s0.07 0.72 0.1 1.03c0.04 0.31 0.22 0.89 0.51 1.24 0.29 0.33 0.87 0.89 1.05 1.33 0.18 0.45 0.14 1.44 0.14 1.44s-0.46-0.75-0.87-0.89c-0.39-0.14-1.26-0.62-1.26-0.62s0.79 0.79 0.79 1.55c0 0.75-0.32 1.6-0.32 1.6s-0.36-0.68-0.83-1.12c-0.47-0.45-1.13-0.9-1.13-0.9s0.52 1.17 0.52 1.95c0 0.79-0.15 2.47-0.15 2.47s-0.39-0.64-0.79-0.96c-0.4-0.31-0.87-0.58-1.02-0.78-0.14-0.21 0.48 0.64 0.54 1.16 0.07 0.51 0.32 2.35 1.92 4.69 0.94 1.37 2.39 3.77 5.5 2.98 3.11-0.78 1.96-4.97 1.3-6.92-0.65-1.95-0.98-4.11-0.94-4.87 0.04-0.75 0.58-2.97 0.51-3.39-0.07-0.41-0.24-2 0.14-3.28 0.4-1.33 0.73-1.85 0.95-2.4 0.21-0.55 0.39-0.86 0.46-1.34s0.07-1.37 0.07-1.37 0.58 1.06 0.73 1.44c0.14 0.38 0.14 1.5 0.14 1.5s0.11-1.12 0.98-1.67 1.88-1.13 2.13-1.44 0.33-0.51 0.33-0.51-0.08 1.92-0.62 2.67c-0.36 0.49-1.77 2.09-1.77 2.09s0.73-0.28 1.23-0.3c0.51-0.04 0.87 0 0.87 0s-0.62 0.48-1.41 1.64c-0.8 1.16-0.47 1.26-1.05 2.22s-1.05 1-1.78 1.58c-1.08 0.87-0.5 4.34-0.36 4.86 0.15 0.51 2.03 4.76 2.07 5.79 0.03 1.03 0.21 3.33-1.6 4.8-1.16 0.95-3.07 0.96-3.51 1.23-0.43 0.28-1.29 1.13-1.29 2.91 0 1.79 0.64 2.06 1.15 2.51 0.51 0.44 1.16 0.2 1.3 0.55 0.15 0.34 0.22 0.54 0.44 0.75 0.21 0.2 0.36 0.44 0.29 0.82-0.08 0.38-0.91 1.23-1.2 1.85-0.29 0.61-0.87 2.23-0.87 2.47s-0.07 0.99 0.18 1.37c0 0 0.91 1.06 0.29 1.26-0.4 0.14-0.78-0.25-0.97-0.2-0.54 0.14-0.83 0.47-0.98 0.45-0.36-0.07-0.36-0.25-0.4-0.76-0.03-0.51-0.01-0.72-0.17-0.72-0.22 0-0.33 0.18-0.37 0.45s-0.04 0.89-0.29 0.89-0.61-0.45-0.83-0.55-0.83-0.2-0.87-0.48c-0.03-0.27 0.36-0.85 0.76-0.96 0.4-0.1 0.76-0.3 0.51-0.51-0.26-0.2-0.51-0.2-0.76 0-0.25 0.21-0.79 0.04-0.76-0.27 0.04-0.31 0.11-0.69 0.07-0.86-0.03-0.17-0.47-0.51 0.1-0.82 0.59-0.31 0.84 0.27 1.42 0.17s0.86-0.31 1.08-0.65 0.18-1.06-0.22-1.5c-0.39-0.45-0.79-0.52-0.94-0.8-0.14-0.27-0.36-0.92-0.36-0.92s0.11 1.2 0.04 1.37-0.04 0.89-0.04 0.89-0.39-0.45-0.72-0.79c-0.32-0.34-0.65-1.37-0.65-1.37s-0.03 0.96-0.03 1.34c0 0.37 0.43 0.72 0.29 0.86-0.15 0.13-0.83-0.72-1.02-0.86-0.18-0.14-0.76-0.58-1.01-1.06s-0.44-1.16-0.51-1.41c-0.07-0.24-0.19-1.31-0.07-1.58 0.18-0.4 0.47-1.13 0.47-1.13h-1.41c-0.76 0-1.3-0.23-1.59 0.28s-0.15 1.54 0.21 2.88c0.37 1.33 0.58 1.98 0.48 2.22-0.11 0.24-0.58 0.79-0.76 0.89-0.19 0.11-0.69 0.07-0.91-0.03-0.21-0.1-0.57-0.27-1.26-0.27s-1.12 0.03-1.37-0.03c-0.26-0.07-0.88-0.38-1.17-0.31s-0.79 0.32-0.65 0.72c0.22 0.61-0.21 0.75-0.51 0.72-0.29-0.04-0.53-0.14-0.9-0.24-0.36-0.11-0.9 0-0.83-0.42 0.07-0.41 0.22-0.44 0.4-0.74 0.18-0.32 0.25-0.52 0.04-0.54-0.25-0.02-0.51-0.05-0.7 0.11-0.2 0.16-0.51 0.51-0.76 0.38-0.26-0.14-0.46-0.43-0.46-1.08 0-0.64-0.68-1.2-0.05-1.17 0.62 0.03 1.41 0.48 1.55 0.13s0.06-0.51-0.28-0.78-0.76-0.43-0.31-0.77c0.45-0.35 0.56-0.35 0.74-0.54 0.17-0.18 0.41-0.79 0.73-0.64 0.62 0.3 0.02 0.73 0.65 1.42 0.62 0.69 1.01 0.94 2.06 0.83 1.04-0.11 1.33-0.24 1.33-0.54 0-0.29-0.09-0.82-0.12-1.04-0.02-0.21 0.15-0.99 0.15-0.99s-0.48 0.3-0.63 0.59c-0.13 0.29-0.42 0.8-0.42 0.8s-0.11-0.6-0.08-1.09c0.02-0.29 0.12-0.79 0.11-0.89-0.03-0.27-0.23-0.94-0.23-0.94s-0.16 0.73-0.28 0.94c-0.11 0.21-0.16 1.07-0.16 1.07s-0.67-0.58-0.48-1.55c0.13-0.75-0.12-1.74 0.11-2.06 0.22-0.33 0.75-1.64 2.06-1.69 1.3-0.05 2.31 0.05 2.77 0.03 0.45-0.03 2.06-0.33 2.06-0.33s-2.97-1.52-3.64-1.98c-0.68-0.45-1.73-1.63-2.07-2.16-0.34-0.54-0.65-1.58-0.65-1.58s-0.53 0.02-1.02 0.29c-0.48 0.27-0.96 0.67-1.24 0.99s-0.73 1.05-0.73 1.05 0.08-0.94 0.08-1.23-0.06-0.86-0.06-0.86-0.33 1.28-1.01 1.76c-0.68 0.49-1.47 1.15-1.47 1.15s0.08-0.71 0.08-0.88c0-0.16 0.17-0.99 0.17-0.99s-0.48 0.72-1.21 0.86c-0.74 0.13-1.81 0.11-1.9 0.56-0.08 0.45 0.2 1.07 0.03 1.39s-0.54 0.54-0.54 0.54-0.42-0.35-0.79-0.38c-0.36-0.03-0.71 0.16-0.71 0.16s-0.31-0.4-0.19-0.67c0.11-0.26 0.67-0.66 0.54-0.83-0.15-0.16-0.6 0.06-0.88 0.19-0.28 0.14-0.88 0.27-0.82-0.19 0.05-0.45 0.2-0.72 0.05-1.04-0.14-0.32-0.05-0.53 0.18-0.61 0.22-0.08 1.12 0.02 1.21-0.19 0.08-0.21-0.22-0.48-0.82-0.61-0.59-0.14-0.88-0.49-0.57-0.78 0.32-0.3 0.4-0.38 0.54-0.64 0.14-0.27 0.2-0.76 0.74-0.51 0.53 0.24 0.42 0.83 0.99 1.01 0.56 0.19 1.89-0.08 2.17-0.24s1.19-0.83 1.5-0.99c0.31-0.15 1.61-1.12 1.61-1.12s-0.76-0.53-1.05-0.8c-0.28-0.27-0.78-0.91-1.04-1.05-0.25-0.13-1.5-0.61-1.92-0.64-0.42-0.02-1.72-0.48-1.72-0.48s0.59-0.19 0.79-0.35c0.19-0.16 0.64-0.56 0.87-0.53 0.22 0.02 0.28 0.02 0.28 0.02s-1.21-0.05-1.47-0.13c-0.25-0.08-0.99-0.54-1.27-0.54s-0.84 0.11-0.84 0.11 0.76-0.48 1.38-0.59c0.62-0.1 1.1-0.08 1.1-0.08s-0.96-0.27-1.19-0.58c-0.22-0.33-0.45-0.8-0.62-1.02-0.17-0.21-0.28-0.56-0.59-0.59s-0.85 0.38-1.16 0.35-0.54-0.22-0.57-0.67c-0.02-0.46 0-0.3-0.1-0.54-0.12-0.24-0.57-0.8-0.15-0.93 0.43-0.14 1.33 0.08 1.42-0.08 0.08-0.16-0.48-0.65-0.85-0.83-0.37-0.19-0.96-0.51-0.65-0.78 0.31-0.26 0.62-0.37 0.79-0.61s0.37-0.91 0.74-0.7c0.36 0.21 0.87 1.26 1.16 1.18 0.28-0.08 0.3-0.83 0.25-1.15-0.06-0.32 0-0.88 0.28-0.83s0.51 0.43 0.96 0.46c0.45 0.02 1.13-0.11 1.07 0.21-0.05 0.32-0.31 0.71-0.62 1.06-0.3 0.36-0.45 1.05-0.25 1.5 0.2 0.46 0.71 1.19 1.16 1.48s1.3 0.51 1.84 0.85c0.53 0.35 1.78 1.34 2.2 1.45s0.85 0.32 0.85 0.32 0.48-0.21 1.13-0.21 2.14 0.1 2.71-0.14 1.3-0.64 1.08-1.15c-0.23-0.51-1.47-0.96-1.36-1.36s0.57-0.43 1.33-0.46c0.76-0.02 1.8 0.14 2-0.94 0.2-1.06 0.26-1.68-0.81-1.92-1.08-0.24-1.87-0.27-2.07-1.04-0.2-0.78-0.39-0.97-0.17-1.18 0.23-0.21 0.62-0.32 1.41-0.37 0.8-0.06 1.7-0.06 1.96-0.25 0.25-0.18 0.3-0.69 0.61-0.91 0.31-0.21 1.53-0.4 1.53-0.4s1.46 0.71 2.8 1.71c1.21 0.9 2.3 2.23 2.3 2.23\"/>\n<path d=\"m269 243.39s-0.8 0.23-1.1 0.67c-0.37 0.53-0.34 1.07-0.34 1.07s0.68-0.56 1.56-0.33c0.87 0.24 0.96 0.33 1.33 0.3s1.27-0.35 1.27-0.35-0.74 0.86-0.65 1.45c0.08 0.58 0.19 0.85 0.17 1.15-0.06 0.72-0.6 1.61-0.6 1.61s0.31-0.19 1.05-0.35c0.73-0.16 1.36-0.51 1.75-0.81 0.39-0.29 0.9-1.02 0.9-1.02s-0.16 1 0 1.42c0.17 0.44 0.23 1.67 0.23 1.67s0.47-0.42 0.85-0.62c0.19-0.11 0.7-0.38 0.9-0.7 0.14-0.22 0.32-1.06 0.32-1.06s0.11 0.9 0.39 1.34c0.28 0.42 0.7 1.74 0.7 1.74s0.29-0.86 0.6-1.21 0.68-0.8 0.7-1.07c0.03-0.27-0.08-0.85-0.08-0.85l0.39 0.85m-11.41 0.61s0.48-0.83 0.93-1.1c0.46-0.26 1.08-0.74 1.25-0.8 0.16-0.05 0.9-0.46 0.9-0.46m0.99 5.17s1.09-0.55 1.41-0.75c0.68-0.4 1.16-1.12 1.16-1.12\"/>\n<path fill=\"none\" stroke-width=\"0.26\" d=\"m282.57 240.9s-0.34-0.48-0.42-0.65c-0.09-0.15-0.23-0.48-0.23-0.48\"/>\n<path fill=\"none\" d=\"m278.33 257.41s2.04 1.26 1.98 2.31c-0.06 1.04-1.13 2.41-1.13 2.41\"/>\n</g>\n<path fill=\"#000\" stroke-width=\"0.26\" d=\"m273.05 236.24s-0.17-0.48-0.2-0.62c-0.03-0.13-0.12-0.29-0.12-0.29s0.88 0 0.85 0.27c-0.02 0.27-0.28 0.27-0.34 0.37-0.05 0.11-0.19 0.27-0.19 0.27z\"/>\n<path fill=\"#000\" stroke-width=\"0.05\" d=\"m277.06 234.85l-0.06-0.43s0.77 0 1.13 0.26c0.57 0.4 0.93 1.02 0.91 1.05-0.1 0.09-0.54-0.27-0.85-0.37 0 0-0.23 0.05-0.45 0.05-0.23 0-0.34-0.11-0.37-0.21-0.03-0.12 0.03-0.3 0.03-0.3l-0.34-0.05z\"/>\n<g fill=\"#000\" stroke-width=\"0.26\">\n<path d=\"m273.08 240.14l0.33-0.53 0.34 0.49-0.67 0.04\"/>\n<path d=\"m273.89 240.12l0.4-0.53 0.43 0.48-0.83 0.05\"/>\n<path d=\"m273.53 236.83l0.82 0.29-0.74 0.38-0.08-0.67\"/>\n<path d=\"m274.52 237.1l0.73 0.18-0.59 0.46-0.14-0.64\"/>\n</g>\n<g fill=\"#db4446\" stroke-width=\"0.39\">\n<path d=\"m261.88 236.08s0.48 0.34 0.85 0.4c0.37 0.05 0.76 0.05 0.82 0.05 0.05 0 0.17-0.54 0.11-0.91-0.2-1.2-1.3-1.47-1.3-1.47s0.33 0.73 0.17 1.07c-0.23 0.48-0.65 0.86-0.65 0.86z\"/>\n<path d=\"m259.59 237.12s-0.43-0.77-1.33-0.67c-0.9 0.11-1.5 0.81-1.5 0.81s1-0.03 1.25 0.13c0.37 0.24 0.48 0.86 0.48 0.86s0.54-0.32 0.71-0.54c0.16-0.21 0.39-0.59 0.39-0.59z\"/>\n<path d=\"m258.49 240.25s-0.77 0.11-1.19 0.59c-0.43 0.49-0.36 1.4-0.36 1.4s0.5-0.54 0.95-0.54c0.46 0 1.16 0.16 1.16 0.16s-0.22-0.56-0.22-0.8-0.34-0.81-0.34-0.81z\"/>\n<path d=\"m261.06 250.37s-0.42-0.45-1.16-0.32c-0.74 0.14-1.22 0.97-1.22 0.97s0.63-0.17 1-0.08c0.36 0.08 0.62 0.45 0.62 0.45s0.34-0.29 0.45-0.45 0.31-0.57 0.31-0.57z\"/>\n<path d=\"m260.21 253.34s-0.62-0.1-1.16 0.33c-0.53 0.43-0.56 1.25-0.56 1.25s0.51-0.43 0.91-0.37c0.39 0.05 0.87 0.27 0.87 0.27s0.08-0.51 0.11-0.64c0.09-0.38-0.17-0.84-0.17-0.84z\"/>\n<path d=\"m261.66 256.08s-0.05 0.79 0.33 1.28c0.4 0.51 1.13 0.59 1.13 0.59s-0.24-0.53-0.28-0.8c-0.06-0.4 0.34-0.75 0.34-0.75s-0.37-0.38-0.73-0.38c-0.37 0-0.79 0.06-0.79 0.06z\"/>\n<path d=\"m269 263.12s-0.51-0.64-1.21-0.62c-0.71 0.03-1.45 0.69-1.45 0.69s0.88-0.07 1.11 0.22c0.23 0.3 0.45 0.67 0.45 0.67s0.4-0.21 0.57-0.35c0.17-0.13 0.53-0.61 0.53-0.61z\"/>\n<path d=\"m266.83 265.93s-0.93-0.14-1.39 0.35c-0.45 0.48-0.42 1.36-0.42 1.36s0.56-0.61 1.07-0.56 1.08 0.32 1.08 0.32-0.09-0.53-0.15-0.78c-0.05-0.24-0.19-0.69-0.19-0.69z\"/>\n<path d=\"m268.84 268.9s-0.46 0.64-0.12 1.15 1.05 0.75 1.05 0.75-0.26-0.37-0.14-0.8c0.09-0.34 0.67-0.8 0.67-0.8l-1.46-0.3z\"/>\n<path d=\"m281.24 270.11s-0.81-0.19-1.27 0.08c-0.45 0.26-0.82 1.39-0.82 1.39s0.74-0.62 1.28-0.54c0.53 0.08 0.93 0.3 0.93 0.3s0.08-0.46 0.02-0.78c-0.03-0.19-0.14-0.45-0.14-0.45z\"/>\n<path d=\"m281.64 273.1s-0.62 0.64-0.4 1.18c0.23 0.54 0.62 1.1 0.62 1.1s-0.02-0.8 0.23-1.02c0.37-0.32 1.05-0.37 1.05-0.37s-0.54-0.48-0.71-0.54c-0.17-0.05-0.79-0.35-0.79-0.35z\"/>\n<path d=\"m284.75 274.04s-0.31 0.78 0.28 1.28c0.59 0.52 1.11 0.57 1.11 0.57s-0.46-0.81-0.32-1.23c0.15-0.45 0.54-0.72 0.54-0.72s-0.74-0.25-0.85-0.22c-0.11 0.02-0.76 0.32-0.76 0.32z\"/>\n</g>\n<g fill=\"#c8b100\" stroke-width=\"0.26\">\n<path d=\"m282.88 232.71l-0.29 0.02c-0.01 0.03-0.14 0.24-0.26 0.35-0.26 0.25-0.65 0.28-0.86 0.07-0.11-0.11-0.16-0.26-0.14-0.41-0.17 0.09-0.35 0.09-0.51-0.01-0.26-0.15-0.32-0.5-0.14-0.79 0.03-0.06 0.06-0.14 0.11-0.18l-0.02-0.32-0.35 0.08-0.1 0.19c-0.22 0.25-0.54 0.31-0.7 0.17-0.08-0.07-0.14-0.26-0.13-0.27 0 0.01-0.09 0.09-0.17 0.11-0.54 0.13-0.75-1.05-0.77-1.35l-0.17 0.25s0.16 0.7 0.08 1.3c-0.08 0.59-0.29 1.19-0.29 1.19 0.74 0.19 1.86 0.8 2.97 1.65s1.98 1.78 2.34 2.42c0 0 0.58-0.32 1.18-0.51s1.36-0.2 1.36-0.2l0.22-0.21c-0.32 0.05-1.58 0.1-1.56-0.43 0-0.08 0.07-0.18 0.08-0.18-0.01 0.01-0.21-0.01-0.3-0.06-0.18-0.13-0.18-0.43 0.02-0.69l0.18-0.13 0.01-0.34-0.34 0.05c-0.03 0.04-0.11 0.09-0.15 0.13-0.27 0.23-0.65 0.25-0.86 0.03-0.13-0.12-0.17-0.29-0.11-0.46-0.16 0.04-0.32 0.03-0.45-0.05-0.26-0.15-0.31-0.52-0.11-0.8 0.09-0.14 0.28-0.31 0.31-0.32l-0.07-0.3h-0.01z\"/>\n<g fill=\"#000\" stroke-width=\"0.05\">\n<path d=\"m280.63 233.4c0.05-0.07 0.15-0.06 0.23 0s0.1 0.16 0.06 0.21c-0.05 0.06-0.15 0.06-0.24-0.01-0.07-0.05-0.1-0.15-0.05-0.2z\"/>\n<path d=\"m281.58 234.19l-0.33-0.25c-0.06-0.04-0.07-0.12-0.04-0.16 0.04-0.04 0.12-0.04 0.18 0l0.33 0.26 0.33 0.25c0.05 0.04 0.08 0.12 0.04 0.16s-0.12 0.04-0.18 0l-0.33-0.26\"/>\n<path d=\"m279.84 233l-0.26-0.15c-0.07-0.04-0.1-0.12-0.07-0.17s0.11-0.06 0.17-0.02l0.26 0.16 0.26 0.15c0.06 0.03 0.09 0.11 0.07 0.16-0.03 0.05-0.11 0.06-0.17 0.02l-0.26-0.15\"/>\n<path d=\"m278.8 232.29c0.05-0.06 0.16-0.06 0.24 0 0.08 0.07 0.1 0.16 0.05 0.22-0.05 0.05-0.15 0.05-0.23-0.01s-0.1-0.15-0.06-0.21z\"/>\n<path d=\"m282.63 234.92c0.05-0.05 0.03-0.14-0.05-0.21-0.08-0.06-0.19-0.06-0.24 0-0.04 0.05-0.02 0.15 0.06 0.21s0.18 0.06 0.23 0z\"/>\n<path d=\"m283.2 235.58l0.22 0.21c0.05 0.05 0.13 0.07 0.18 0.03 0.04-0.04 0.04-0.11-0.01-0.16l-0.21-0.21-0.22-0.21c-0.05-0.05-0.14-0.07-0.18-0.03-0.05 0.03-0.04 0.11 0.01 0.16l0.21 0.21\"/>\n<path d=\"m284.15 236.39c0.05-0.06 0.03-0.15-0.05-0.21-0.08-0.07-0.18-0.07-0.23-0.01s-0.03 0.15 0.05 0.22c0.08 0.05 0.18 0.06 0.23 0z\"/>\n</g>\n<path d=\"m281.4 230.36l-0.59 0.01-0.11 0.87 0.06 0.14 0.15-0.01 0.76-0.51-0.27-0.5\"/>\n<path d=\"m281.4 230.36l-0.59 0.01-0.11 0.87 0.06 0.14 0.15-0.01 0.76-0.51-0.27-0.5\"/>\n<path d=\"m279.8 230.84l-0.02 0.54 0.92 0.12 0.15-0.07-0.02-0.15-0.53-0.71-0.5 0.27\"/>\n<path d=\"m281.7 231.92l-0.49 0.27-0.54-0.71-0.01-0.15 0.14-0.06 0.93 0.11-0.03 0.54\"/>\n<path d=\"m280.51 231.25c0.08-0.13 0.26-0.17 0.39-0.09 0.14 0.07 0.18 0.24 0.1 0.37s-0.26 0.17-0.39 0.09c-0.14-0.08-0.18-0.24-0.1-0.37z\"/>\n<path d=\"m278.36 230.35c-0.02 0.01-0.13-0.46-0.26-0.71-0.08-0.19-0.39-0.43-0.39-0.43 0.03-0.05 0.42-0.19 0.87 0.09 0.38 0.31-0.03 0.87-0.03 0.87s-0.09 0.14-0.19 0.18z\"/>\n<path d=\"m279.39 230.66l-0.42 0.37-0.68-0.6 0.06-0.08 0.03-0.15 0.92-0.07 0.09 0.53\"/>\n<path d=\"m278.24 230.29c0.05-0.15 0.18-0.23 0.28-0.2 0.11 0.04 0.15 0.18 0.1 0.33s-0.18 0.23-0.29 0.2c-0.11-0.04-0.15-0.18-0.09-0.33z\"/>\n<path d=\"m283.67 231.77l-0.59-0.06-0.25 0.85 0.05 0.14 0.15 0.01 0.83-0.41-0.19-0.53\"/>\n<path d=\"m282.01 232.03l-0.1 0.54 0.9 0.23 0.15-0.04 0.01-0.14-0.43-0.79-0.53 0.2\"/>\n<path d=\"m283.73 233.36l-0.53 0.2-0.42-0.78 0.01-0.15 0.15-0.03 0.89 0.23-0.1 0.53\"/>\n<path d=\"m282.65 232.54c0.1-0.12 0.28-0.13 0.4-0.04 0.13 0.09 0.15 0.26 0.05 0.38s-0.28 0.13-0.41 0.04c-0.12-0.09-0.14-0.26-0.04-0.38z\"/>\n<path d=\"m285.64 233.61l0.11 0.55-0.87 0.3-0.16-0.04-0.01-0.14 0.36-0.81 0.57 0.14\"/>\n<path d=\"m285.49 235.2l-0.56 0.13-0.31-0.83 0.04-0.15 0.15-0.02 0.85 0.35-0.17 0.52\"/>\n<path d=\"m283.97 233.66l-0.18 0.52 0.85 0.34 0.16-0.02 0.03-0.14-0.3-0.83-0.56 0.13\"/>\n<path d=\"m284.91 234.63c0.12-0.11 0.12-0.28 0.02-0.39-0.11-0.11-0.29-0.11-0.41-0.02-0.11 0.11-0.12 0.28-0.01 0.39 0.1 0.11 0.29 0.12 0.4 0.02z\"/>\n<path d=\"m286.29 236.43c0 0.01 0.5 0.03 0.79 0.09 0.2 0.04 0.52 0.27 0.52 0.27 0.06-0.04 0.12-0.42-0.28-0.79-0.39-0.28-0.88 0.22-0.88 0.22s-0.12 0.12-0.15 0.21z\"/>\n<path d=\"m285.75 235.54l-0.29 0.46 0.76 0.51 0.09-0.08 0.13-0.04-0.12-0.88-0.57 0.03\"/>\n<path d=\"m286.37 236.53c0.14-0.07 0.21-0.22 0.15-0.31s-0.22-0.1-0.36-0.02-0.2 0.22-0.14 0.31c0.05 0.09 0.21 0.1 0.35 0.02z\"/>\n</g>\n</g>\n<g id=\"inescutcheon\" stroke-width=\"0.61\">\n<ellipse fill=\"#ad1519\" cx=\"250.43\" cy=\"281.01\" rx=\"16.26\" ry=\"18.3\"/>\n<ellipse fill=\"#005bbf\" cx=\"250.44\" cy=\"280.97\" rx=\"11.44\" ry=\"13.42\"/>\n<g id=\"fdl\" fill=\"#c8b100\" stroke-width=\"0.34\">\n<path stroke-linejoin=\"round\" d=\"m245.03 271.74s-1.35 1.48-1.35 2.86c0 1.39 0.57 2.54 0.57 2.54-0.21-0.55-0.76-0.94-1.41-0.94-0.83 0-1.5 0.63-1.5 1.42 0 0.22 0.14 0.58 0.24 0.77l0.49 0.99c0.16-0.37 0.54-0.57 0.98-0.57 0.59 0 1.08 0.45 1.08 1.01 0 0.09-0.01 0.17-0.04 0.25l-1.22 0.01v1.03h1.09l-0.81 1.61 1.07-0.42 0.81 0.91 0.84-0.91 1.07 0.42-0.8-1.61h1.08v-1.03l-1.22-0.01c-0.02-0.08-0.02-0.16-0.02-0.25 0-0.56 0.47-1.01 1.06-1.01 0.44 0 0.82 0.2 0.98 0.57l0.49-0.99c0.1-0.19 0.24-0.55 0.24-0.77 0-0.79-0.67-1.42-1.49-1.42-0.66 0-1.21 0.39-1.41 0.94 0 0 0.57-1.15 0.57-2.54 0-1.38-1.39-2.86-1.39-2.86z\"/>\n<path d=\"m242.87 281.11h4.36v-1.03h-4.36v1.03z\"/>\n</g>\n<use xlink:href=\"#fdl\" x=\"10.63\"/>\n<use xlink:href=\"#fdl\" x=\"5.31\" y=\"9.14\"/>\n</g>\n</g>\n</g>\n</svg>",
"language": "es-ES",
"tags": "Language Icon"
},
"Language Icon: fr-FR": {
"title": "Language Icon: fr-FR",
"type": "image/svg+xml",
"text": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"900\" height=\"600\"><rect width=\"900\" height=\"600\" fill=\"#ED2939\"/><rect width=\"600\" height=\"600\" fill=\"#fff\"/><rect width=\"300\" height=\"600\" fill=\"#002395\"/></svg>\n",
"language": "fr-FR",
"tags": "Language Icon"
},
"Language Icon: hi-IN": {
"title": "Language Icon: hi-IN",
"type": "image/svg+xml",
"text": "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 225 150\" width=\"1350\" height=\"900\"><rect width=\"225\" height=\"150\" fill=\"#f93\"/><rect width=\"225\" height=\"50\" y=\"50\" fill=\"#fff\"/><rect width=\"225\" height=\"50\" y=\"100\" fill=\"#128807\"/><g transform=\"translate(112.5,75)\"><circle r=\"20\" fill=\"#008\"/><circle r=\"17.5\" fill=\"#fff\"/><circle r=\"3.5\" fill=\"#008\"/><g id=\"d\"><g id=\"c\"><g id=\"b\"><g id=\"a\"><circle r=\"0.875\" fill=\"#008\" transform=\"rotate(7.5) translate(17.5)\"/><path fill=\"#008\" d=\"M 0,17.5 0.6,7 C 0.6,7 0,2 0,2 0,2 -0.6,7 -0.6,7 L 0,17.5 z\"/></g><use xlink:href=\"#a\" transform=\"rotate(15)\"/></g><use xlink:href=\"#b\" transform=\"rotate(30)\"/></g><use xlink:href=\"#c\" transform=\"rotate(60)\"/></g><use xlink:href=\"#d\" transform=\"rotate(120)\"/><use xlink:href=\"#d\" transform=\"rotate(-120)\"/></g></svg>",
"language": "hi-IN",
"tags": "Language Icon"
},
"Language Icon: ia-IA": {
"title": "Language Icon: ia-IA",
"type": "image/svg+xml",
"text": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<svg width=\"1213px\" height=\"808px\" viewBox=\"0 0 1213 808\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" xmlns:sketch=\"http://www.bohemiancoding.com/sketch/ns\">\n <!-- Generator: Sketch 3.2.2 (9983) - http://www.bohemiancoding.com/sketch -->\n <title>Interlingua Logo</title>\n <desc>Created with Sketch.</desc>\n <defs></defs>\n <g id=\"Page-1\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\" sketch:type=\"MSPage\">\n <path d=\"M607,807 C829.570754,807 1010,626.570754 1010,404 C1010,181.429246 829.570754,1 607,1 C384.429246,1 204,181.429246 204,404 C204,626.570754 384.429246,807 607,807 Z M423.121094,116.945312 C439.794354,116.945312 453.902286,122.780866 465.445312,134.452148 C476.988339,146.123431 482.759766,160.167236 482.759766,176.583984 C482.759766,193.000733 476.924212,206.980411 465.25293,218.523438 C453.581647,230.066464 439.537843,235.837891 423.121094,235.837891 C406.704345,235.837891 392.724667,230.066464 381.181641,218.523438 C369.638614,206.980411 363.867188,193.000733 363.867188,176.583984 C363.867188,160.167236 369.638614,146.123431 381.181641,134.452148 C392.724667,122.780866 406.704345,116.945312 423.121094,116.945312 Z M476.988281,291.244141 L476.988281,576.355469 C476.988281,601.750127 479.938122,617.974249 485.837891,625.02832 C491.73766,632.082392 503.280513,636.122391 520.466797,637.148438 L520.466797,651 L326.160156,651 L326.160156,637.148438 C342.063882,636.635414 353.863243,632.018273 361.558594,623.296875 C366.688828,617.397106 369.253906,601.750127 369.253906,576.355469 L369.253906,366.273438 C369.253906,340.878779 366.304066,324.654658 360.404297,317.600586 C354.504528,310.546514 343.089928,306.506516 326.160156,305.480469 L326.160156,291.244141 L476.988281,291.244141 Z M754.019531,597.902344 C710.156031,636.63561 670.782075,656.001953 635.896484,656.001953 C615.375548,656.001953 598.317776,649.268622 584.722656,635.801758 C571.127536,622.334894 564.330078,605.469502 564.330078,585.205078 C564.330078,557.758326 576.129439,533.069446 599.728516,511.137695 C623.327592,489.205945 674.757416,460.028177 754.019531,423.603516 L754.019531,387.435547 C754.019531,360.245307 752.544611,343.123408 749.594727,336.069336 C746.644842,329.015264 741.065796,322.859076 732.857422,317.600586 C724.649048,312.342096 715.414765,309.712891 705.154297,309.712891 C688.481036,309.712891 674.757866,313.432254 663.984375,320.871094 C657.315071,325.488304 653.980469,330.874969 653.980469,337.03125 C653.980469,342.417996 657.571579,349.0872 664.753906,357.039062 C674.501351,368.069066 679.375,378.714141 679.375,388.974609 C679.375,401.543683 674.693732,412.252885 665.331055,421.102539 C655.968378,429.952193 643.720128,434.376953 628.585938,434.376953 C612.4257,434.376953 598.894911,429.503304 587.993164,419.755859 C577.091417,410.008415 571.640625,398.593815 571.640625,385.511719 C571.640625,367.042876 578.951099,349.407962 593.572266,332.606445 C608.193432,315.804929 628.585807,302.915409 654.75,293.9375 C680.914193,284.959591 708.104026,280.470703 736.320312,280.470703 C770.436368,280.470703 797.43382,287.71705 817.313477,302.209961 C837.193133,316.702872 850.082653,332.413978 855.982422,349.34375 C859.573586,360.117241 861.369141,384.870249 861.369141,423.603516 L861.369141,563.273438 C861.369141,579.690186 862.01041,590.014627 863.292969,594.24707 C864.575527,598.479513 866.499336,601.621735 869.064453,603.673828 C871.62957,605.725922 874.57941,606.751953 877.914062,606.751953 C884.583367,606.751953 891.380825,602.006558 898.306641,592.515625 L909.849609,601.75 C897.024024,620.731866 883.749743,634.519163 870.026367,643.112305 C856.302991,651.705447 840.720139,656.001953 823.277344,656.001953 C802.756408,656.001953 786.724667,651.192431 775.181641,641.573242 C763.638614,631.954053 756.584648,617.397233 754.019531,597.902344 Z M754.019531,569.814453 L754.019531,449.382812 C722.981616,467.595143 699.895909,487.08974 684.761719,507.867188 C674.757762,521.718819 669.755859,535.698497 669.755859,549.806641 C669.755859,561.606179 673.988239,571.994747 682.453125,580.972656 C688.865917,587.898472 697.843692,591.361328 709.386719,591.361328 C722.212304,591.361328 737.089759,584.179108 754.019531,569.814453 Z\" id=\"Oval-1\" fill=\"#000066\" sketch:type=\"MSShapeGroup\"></path>\n </g>\n</svg>",
"language": "ia-IA",
"tags": "Language Icon"
},
"Language Icon: it-IT": {
"title": "Language Icon: it-IT",
"type": "image/svg+xml",
"text": "<?xml version=\"1.0\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n<svg \n\theight=\"1000\" \n\twidth=\"1500\" \n\tversion=\"1.1\" \n\tviewBox=\"0 0 3 2\" \n\txmlns=\"http://www.w3.org/2000/svg\" \n\txmlns:xlink=\"http://www.w3.org/1999/xlink\">\n\t<desc>Bandiera della Repubblica Italiana PMS 20060414</desc>\n<!--\n\tfrom http://commons.wikimedia.org/wiki/Image:Bandiera_della_Repubblica_Italiana_PMS_20060414.svg\n\tthis text is in the public domain\n-->\n\t<rect \n\t\tfill=\"#009246\" \n\t\theight=\"2\" \n\t\twidth=\"1\" />\n\t<rect \n\t\tfill=\"#f1f2f1\" \n\t\theight=\"2\" \n\t\twidth=\"1\" \n\t\tx=\"1\" />\n\t<rect \n\t\tfill=\"#ce2b37\" \n\t\theight=\"2\" \n\t\twidth=\"1\" \n\t\tx=\"2\" />\n</svg>",
"language": "it-IT",
"tags": "Language Icon"
},
"Language Icon: ja-JP": {
"title": "Language Icon: ja-JP",
"type": "image/svg+xml",
"text": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"900\" height=\"600\">\n<rect fill=\"#a0a0a0\" height=\"600\" width=\"900\"/>\n<rect fill=\"#fff\" x=\"6\" y=\"6\" width=\"888\" height=\"588\"/>\n<circle fill=\"#be0026\" cx=\"450\" cy=\"300\" r=\"180\"/>\n</svg>",
"language": "ja-JP",
"tags": "Language Icon"
},
"Language Icon: ko-KR": {
"title": "Language Icon: ko-KR",
"type": "image/svg+xml",
"text": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"900\" height=\"600\" viewBox=\"-36 -24 72 48\">\n<title>Flag of South Korea</title>\n<rect fill=\"#fff\" x=\"-36\" y=\"-24\" width=\"72\" height=\"48\"/>\n<g transform=\"rotate(-56.3099325)\"><!--arctan(-3/2)-->\n<g id=\"b2\"><path id=\"b\" d=\"M-6-25H6M-6-22H6M-6-19H6\" stroke=\"#000\" stroke-width=\"2\"/>\n<use xlink:href=\"#b\" y=\"44\"/></g>\n<path stroke=\"#fff\" stroke-width=\"1\" d=\"M0,17v10\"/>\n<circle fill=\"#c60c30\" r=\"12\"/>\n<path fill=\"#003478\" d=\"M0-12A6,6 0 0 0 0,0A6,6 0 0 1 0,12A12,12 0 0,1 0-12Z\"/></g>\n<g transform=\"rotate(-123.6900675)\"><use xlink:href=\"#b2\"/>\n<path stroke=\"#fff\" stroke-width=\"1\" d=\"M0-23.5v3M0,17v3.5M0,23.5v3\"/></g></svg>",
"language": "ko-KR",
"tags": "Language Icon"
},
"Language Icon: nl-NL": {
"title": "Language Icon: nl-NL",
"type": "image/svg+xml",
"text": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"900\" height=\"600\" viewBox=\"0 0 9 6\">\n<rect fill=\"#21468B\"\twidth=\"9\" height=\"6\"/>\n<rect fill=\"#FFF\" width=\"9\" height=\"4\"/>\n<rect fill=\"#AE1C28\"\twidth=\"9\" height=\"2\"/>\n</svg>",
"language": "nl-NL",
"tags": "Language Icon"
},
"Language Icon: pa-IN": {
"title": "Language Icon: pa-IN",
"type": "image/svg+xml",
"text": "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 225 150\" width=\"1350\" height=\"900\"><rect width=\"225\" height=\"150\" fill=\"#f93\"/><rect width=\"225\" height=\"50\" y=\"50\" fill=\"#fff\"/><rect width=\"225\" height=\"50\" y=\"100\" fill=\"#128807\"/><g transform=\"translate(112.5,75)\"><circle r=\"20\" fill=\"#008\"/><circle r=\"17.5\" fill=\"#fff\"/><circle r=\"3.5\" fill=\"#008\"/><g id=\"d\"><g id=\"c\"><g id=\"b\"><g id=\"a\"><circle r=\"0.875\" fill=\"#008\" transform=\"rotate(7.5) translate(17.5)\"/><path fill=\"#008\" d=\"M 0,17.5 0.6,7 C 0.6,7 0,2 0,2 0,2 -0.6,7 -0.6,7 L 0,17.5 z\"/></g><use xlink:href=\"#a\" transform=\"rotate(15)\"/></g><use xlink:href=\"#b\" transform=\"rotate(30)\"/></g><use xlink:href=\"#c\" transform=\"rotate(60)\"/></g><use xlink:href=\"#d\" transform=\"rotate(120)\"/><use xlink:href=\"#d\" transform=\"rotate(-120)\"/></g></svg>",
"language": "pa-IN",
"tags": "Language Icon"
},
"Language Icon: pt-PT": {
"title": "Language Icon: pt-PT",
"type": "image/svg+xml",
"text": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\">\n<rect width=\"600\" height=\"400\" fill=\"#f00\"/>\n<rect width=\"240\" height=\"400\" fill=\"#060\"/>\n<g fill=\"#ff0\" fill-rule=\"evenodd\" stroke=\"#000\" stroke-width=\"0.573\" stroke-linecap=\"round\" stroke-linejoin=\"round\">\n<path d=\"m318.24,262.04c-30.21-0.91-168.74-87.38-169.69-101.15l7.6496-12.757c13.741,19.966,155.36,104.06,169.27,101.08l-7.2299,12.823\"/>\n<path d=\"m154.59,146.4c-2.7101,7.2937,36.149,31.318,82.903,59.754,46.752,28.434,87.065,46.006,90.053,43.486,0.18256-0.32544,1.4701-2.5409,1.352-2.5232-0.56001,0.84402-1.9234,1.1104-4.0506,0.49741-12.631-3.6433-45.575-18.765-86.374-43.506-40.798-24.743-76.294-47.544-81.811-57.232-0.38363-0.67116-0.65702-1.8962-0.60146-2.8487l-0.13405-0.002-1.1747,2.0532-0.16139,0.32191h-0.00088zm164.36,116.04c-0.51238,0.92957-1.4675,0.96044-3.2816,0.76112-11.3-1.2506-45.589-17.925-86.162-42.213-47.21-28.26-86.2-54.01-81.97-60.74l1.1509-2.0346,0.22665,0.0706c-3.8037,11.405,76.948,57.578,81.702,60.522,46.724,28.947,86.115,45.851,89.601,41.458l-1.2682,2.181v-0.002z\"/>\n<path d=\"m240.17,169.23c30.237-0.23901,67.55-4.1319,89.023-12.69l-4.6265-7.5168c-12.692,7.0247-50.21,11.644-84.652,12.335-40.736-0.37483-69.49-4.1681-83.897-13.835l-4.3672,8.0045c26.484,11.207,53.623,13.587,88.52,13.703\"/>\n<path d=\"m330.44,156.71c-0.73904,1.1818-14.743,6.0113-35.373,9.5753-13.988,2.1325-32.234,3.9555-55.004,3.9776-21.633,0.0203-39.305-1.5196-52.684-3.3329-21.656-3.3955-32.833-8.1201-36.965-9.7896,0.39509-0.78581,0.64908-1.337,1.0301-2.0708,11.895,4.736,23.124,7.5918,36.279,9.6158,13.291,1.8,30.75,3.362,52.276,3.3417,22.664-0.0229,40.709-1.9844,54.616-4.0534,21.155-3.4122,32.711-7.8034,34.334-9.8425l1.494,2.5788h-0.002zm-4.0603-7.6226c-2.293,1.8415-13.718,5.8932-33.819,9.1034-13.415,1.9226-30.472,3.6433-52.265,3.6645-20.704,0.0203-37.619-1.375-50.485-3.2491-20.414-2.6661-31.279-7.4754-35.196-8.8776,0.3898-0.67381,0.78666-1.3423,1.1941-2.0135,3.0479,1.5346,13.533,5.7909,34.226,8.7224,12.72,1.8036,29.661,3.1477,50.262,3.1265,21.69-0.0221,38.553-1.7762,51.883-3.6883,20.205-2.7799,31.077-7.9472,32.728-9.241l1.4728,2.4509v0.002z\"/>\n<path d=\"m140.88,205.66c18.598,10.003,59.905,15.044,98.994,15.391,35.591,0.0564,81.958-5.5016,99.297-14.69l-0.47712-10.012c-5.4246,8.4773-55.113,16.609-99.206,16.276-44.093-0.3325-85.038-7.1429-98.687-15.959l0.0794,8.9914\"/>\n<path d=\"m340.12,204.22,0.00088,2.3874c-2.606,3.1159-18.946,7.8255-39.437,11.142-15.595,2.391-35.927,4.1945-61.262,4.1945-24.069,0-43.263-1.7163-58.148-4.0014-23.529-3.4264-38.579-9.4262-41.6-11.217l0.0132-2.7852c9.0748,6.0334,33.661,10.447,41.917,11.798,14.788,2.2701,33.868,3.9732,57.817,3.9732,25.216,0,45.434-1.7912,60.931-4.1663,14.701-2.1237,35.644-7.6465,39.767-11.324h0.00088zm0.01-8.4922,0.00088,2.3874c-2.606,3.1142-18.946,7.8237-39.437,11.14-15.595,2.391-35.927,4.1945-61.262,4.1945-24.069,0-43.263-1.7145-58.148-4.0014-23.529-3.4246-38.579-9.4245-41.6-11.216l0.0132-2.7852c9.0748,6.0325,33.661,10.447,41.917,11.796,14.788,2.2719,33.868,3.9758,57.817,3.9758,25.216,0,45.434-1.7921,60.931-4.169,14.701-2.1237,35.644-7.6465,39.767-11.324l0.00088,0.002z\"/>\n<path d=\"m239.79,260.32c-42.772-0.25489-79.421-11.659-87.16-13.544l5.6433,8.8344c13.67,5.7503,49.424,14.32,81.927,13.371,32.504-0.94809,60.91-3.466,80.928-13.211l5.7862-9.1555c-13.642,6.425-60.068,13.639-87.125,13.705\"/>\n<path stroke-width=\"0.55\" d=\"m323.3,253.72c-0.85016,1.2991-1.7171,2.5823-2.5963,3.8294-9.4417,3.3293-24.319,6.8245-30.597,7.844-12.824,2.6423-32.665,4.594-50.274,4.6029-37.89-0.55474-68.905-7.9719-83.496-14.299l-1.1773-2.0241,0.19225-0.30427,1.9966,0.77435c25.948,9.2834,55.091,12.987,82.698,13.652,17.538,0.0617,35.095-2.01,49.292-4.5491,21.771-4.3621,30.574-7.65,33.275-9.1405l0.68701-0.38541h-0.00088zm5.0172-8.2753c0.022,0.0256,0.0441,0.0503,0.0653,0.0776-0.63585,1.0733-1.2911,2.1652-1.9622,3.2623-5.0357,1.8-18.702,5.7988-38.659,8.5893-13.149,1.7912-21.322,3.526-47.479,4.034-49.015-1.2471-80.75-10.831-88.289-13.195l-1.1174-2.1431c28.406,7.4154,57.422,12.592,89.408,13.121,23.931-0.50976,34.112-2.2719,47.152-4.0499,23.271-3.6186,34.996-7.4498,38.515-8.5558-0.0441-0.0635-0.0961-0.13053-0.15433-0.19932l2.5231-0.9428-0.002,0.002z\"/>\n<path d=\"m328.83,197.76c0.13873,28.137-14.26,53.386-25.858,64.525-16.408,15.759-38.163,25.896-63.569,26.363-28.37,0.52117-55.12-17.974-62.295-26.099-14.028-15.885-25.449-36.057-25.815-63.243,1.7376-30.709,13.793-52.1,31.268-66.769s40.743-21.813,60.121-21.302c22.358,0.59003,48.475,11.558,66.521,33.332,11.823,14.266,16.943,29.748,19.627,53.193zm-89.186-96.342c54.485,0,99.296,44.338,99.296,98.703,0,54.364-44.811,98.704-99.296,98.704s-98.924-44.339-98.924-98.704,44.439-98.703,98.924-98.703\"/>\n<path d=\"m239.91,101.08c54.534,0,99.011,44.483,99.011,99.022,0,54.538-44.478,99.02-99.011,99.02-54.534,0-99.011-44.481-99.011-99.02s44.478-99.022,99.011-99.022zm-96.832,99.0224c0,53.26,43.736,96.842,96.832,96.842,53.097,0,96.833-43.582,96.833-96.842,0-53.262-43.737-96.844-96.833-96.844s-96.832,43.584-96.832,96.844z\"/>\n<path d=\"m239.99,109.31c49.731,0,90.693,40.821,90.693,90.704,0,49.884-40.963,90.703-90.693,90.703s-90.693-40.819-90.693-90.703c0-49.883,40.964-90.704,90.693-90.704zm-88.515,90.7034c0,48.685,39.979,88.524,88.515,88.524s88.515-39.839,88.515-88.524c0-48.686-39.978-88.525-88.515-88.525-48.536,0-88.515,39.839-88.515,88.525z\"/>\n<path d=\"m243.98,100.68-8.48545,0,0.01,198.96,8.51455,0z\"/>\n<path d=\"m243.13,99.546h2.1598l0.0185,201.25h-2.1616l-0.0159-201.25zm-8.4213,0.0018h2.1766l0.003,201.25h-2.1783v-201.25z\"/>\n<path d=\"m338.99,203.935,0-7.3554-5.99-5.58-34-9-49-5-59,3-42,10-8.48,6.28,0,7.3572l21.48-9.637,51-8h49l36,4,25,6z\"/>\n<path d=\"m239.95,184.77c23.383-0.0432,46.07,2.2154,64.065,5.7194,18.569,3.7121,31.637,8.3556,36.105,13.571l-0.005,2.5823c-5.3884-6.4902-22.973-11.248-36.518-13.968-17.858-3.474-40.393-5.7168-63.647-5.6736-24.538,0.0459-47.387,2.3698-64.984,5.8032-14.12,2.8019-32.951,8.3679-35.302,13.858v-2.689c1.2911-3.8003,15.313-9.4792,34.984-13.417,17.729-3.4572,40.62-5.7415,65.302-5.7864zm0.01-8.4922c23.383-0.0423,46.07,2.2172,64.065,5.7194,18.569,3.7139,31.637,8.3556,36.105,13.571l-0.005,2.5823c-5.3884-6.4885-22.973-11.247-36.518-13.966-17.858-3.4757-40.393-5.7185-63.647-5.6736-24.538,0.0441-47.276,2.3698-64.875,5.8014-13.626,2.5832-33.226,8.3696-35.412,13.86v-2.6908c1.2911-3.7588,15.597-9.6414,34.985-13.417,17.729-3.4572,40.62-5.7397,65.302-5.7864z\"/>\n<path d=\"m239.48,132.96c36.849-0.18433,68.99,5.1523,83.695,12.685l5.3638,9.279c-12.781-6.888-47.456-14.05-89.005-12.979-33.854,0.20814-70.027,3.7271-88.176,13.41l6.4035-10.709c14.895-7.7241,50.022-11.643,81.72-11.684\"/>\n<path d=\"m239.97,140.62c21.017-0.0556,41.325,1.1298,57.476,4.0437,15.041,2.7993,29.385,7.0009,31.436,9.2604l1.5901,2.8099c-4.9881-3.257-17.401-6.8836-33.339-9.906-16.006-3.0083-36.3-4.0049-57.2-3.9502-23.722-0.0811-42.152,1.1712-57.969,3.9291-16.728,3.13-28.334,7.6015-31.197,9.7261l1.5583-2.9704c5.5631-2.8381,14.39-6.2592,29.223-8.9297,16.357-2.988,34.983-3.8841,58.423-4.0128h-0.00088zm-0.009-8.4843c20.113-0.0529,39.972,1.068,55.452,3.8506,12.209,2.3768,24.283,6.0872,28.704,9.3892l2.3256,3.6954c-3.9536-4.3947-18.836-8.5593-31.974-10.892-15.361-2.6494-34.395-3.698-54.508-3.8656-21.108,0.0591-40.615,1.352-55.752,4.1081-14.441,2.7481-23.76,6.0016-27.703,8.5425l2.0451-3.0868c5.4414-2.8646,14.232-5.4954,25.303-7.6465,15.249-2.7764,34.876-4.0358,56.108-4.0949z\"/>\n<path d=\"m289.15,241.26c-18.218-3.4008-36.469-3.8947-49.217-3.7447-61.407,0.71967-81.244,12.609-83.665,16.209l-4.5894-7.4815c15.634-11.332,49.073-17.687,88.587-17.037,20.518,0.33602,38.224,1.6986,53.119,4.5835l-4.2358,7.4727\"/>\n<path stroke-width=\"0.55\" d=\"m239.58,236.46c17.082,0.25488,33.849,0.96044,50.033,3.9784l-1.172,2.069c-15.031-2.7746-31.055-3.8365-48.803-3.75-22.663-0.17727-45.585,1.9394-65.541,7.6668-6.2968,1.7524-16.721,5.8006-17.784,9.1458l-1.1659-1.9226c0.33601-1.9773,6.6363-6.081,18.414-9.3901,22.858-6.5458,44.239-7.6491,66.019-7.799v0.002zm0.77519-8.5963c17.698,0.33073,35.975,1.1492,53.74,4.6681l-1.2206,2.1537c-16.042-3.1847-31.369-4.2466-52.415-4.5702-22.735,0.0414-46.851,1.6625-68.778,8.0372-7.0791,2.062-19.297,6.5202-19.704,10.05l-1.1659-2.0655c0.26545-3.2059,10.842-7.388,20.358-10.156,22.096-6.4241,46.275-8.076,69.186-8.1174z\"/>\n<path d=\"M327.58,247.38,320.201,258.829,299,240,244,203,182,169,149.81,157.99,156.67,145.27,159,144l20,5,66,34,38,24,32,23,13,15z\"/>\n<path d=\"m148.65,158.29c5.646-3.8294,47.139,14.655,90.555,40.834,43.301,26.254,84.677,55.921,80.942,61.473l-1.2285,1.9323-0.56354,0.4445c0.12083-0.0864,0.74345-0.84755-0.0609-2.906-1.8449-6.0704-31.195-29.491-79.894-58.895-47.475-28.309-87.041-45.371-90.997-40.494l1.247-2.3892h-0.00089zm180.44,88.927c3.57-7.052-34.916-36.044-82.632-64.272-48.813-27.666-83.994-43.951-90.42-39.095l-1.4278,2.5991c-0.0124,0.14287,0.052-0.17727,0.35364-0.4101,1.1685-1.0195,3.1052-0.95074,3.9792-0.96662,11.065,0.16581,42.667,14.709,87.006,40.128,19.428,11.315,82.071,51.491,81.832,62.789,0.0168,0.97102,0.0803,1.1712-0.28485,1.6519l1.5936-2.4236v-0.002z\"/>\n</g>\n<g>\n<path fill=\"#fff\" stroke=\"#000\" stroke-width=\"0.67037\" d=\"m180.6,211.01c0,16.271,6.6628,30.987,17.457,41.742,10.815,10.778,25.512,17.579,41.809,17.579,16.381,0,31.247-6.6525,42.016-17.389,10.769-10.735,17.443-25.552,17.446-41.88h-0.002v-79.189l-118.74-0.14111,0.0123,79.278h0.002z\"/>\n<path fill=\"#f00\" stroke=\"#000\" stroke-width=\"0.50734\" d=\"m182.82,211.12v0.045c0,15.557,6.4414,29.724,16.775,40.009,10.354,10.305,24.614,16.712,40.214,16.712,15.681,0,29.912-6.3606,40.222-16.626,10.308-10.265,16.697-24.433,16.699-40.044h-0.002v-76.826l-113.84-0.0185-0.0697,76.748m91.022-53.747,0.004,48.891-0.0414,5.1717h0.00088c0,1.3608-0.082,2.9122-0.24076,4.2333-0.92512,7.7294-4.4801,14.467-9.7451,19.708-6.1636,6.1357-14.671,9.9413-24.047,9.9413-9.327,0-17.639-3.9379-23.829-10.1-6.3497-6.32-10.03-14.986-10.03-23.947l-0.0132-54.023,67.94,0.12259,0.002,0.002z\"/>\n<g id=\"castle3\">\n<g id=\"castle\" fill=\"#ff0\" stroke=\"#000\" stroke-width=\"0.5\">\n<path stroke=\"none\" d=\"m190.19,154.43c0.13493-5.521,4.0524-6.828,4.0806-6.8474,0.0282-0.0185,4.2314,1.4076,4.2173,6.8986l-8.2978-0.0512\"/>\n<path d=\"m186.81,147.69-0.68172,6.3447,4.1406,0.009c0.0397-5.2493,3.9739-6.1225,4.0691-6.1031,0.0891-0.005,3.9889,1.1606,4.0929,6.1031h4.1511l-0.74962-6.3932-15.022,0.0379v0.002z\"/>\n<path d=\"m185.85,154.06h16.946c0.35717,0,0.64908,0.35277,0.64908,0.78404,0,0.43039-0.29191,0.78141-0.64908,0.78141h-16.946c-0.35717,0-0.64908-0.35102-0.64908-0.78141,0-0.43127,0.29191-0.78404,0.64908-0.78404z\"/>\n<path d=\"m192.01,154.03c0.0185-3.3126,2.2621-4.2501,2.2736-4.2483,0.00088,0,2.3423,0.96661,2.3609,4.2483h-4.6344\"/>\n<path d=\"m186.21,145.05h16.245c0.34218,0,0.62263,0.31839,0.62263,0.70468,0,0.38717-0.28045,0.70467-0.62263,0.70467h-16.245c-0.34218,0-0.62263-0.31573-0.62263-0.70467,0-0.38629,0.28045-0.70468,0.62263-0.70468z\"/>\n<path d=\"m186.55,146.47h15.538c0.32719,0,0.59529,0.31662,0.59529,0.70379,0,0.38805-0.2681,0.70467-0.59529,0.70467h-15.538c-0.32719,0-0.59529-0.31662-0.59529-0.70467,0-0.38717,0.2681-0.70379,0.59529-0.70379z\"/>\n<path d=\"m191.57,135.88,1.2267,0.002v0.87136h0.89513v-0.89076l1.2567,0.004v0.88723h0.89778v-0.89076h1.2576l-0.002,2.0117c0,0.31574-0.25398,0.52035-0.54854,0.52035h-4.4113c-0.29633,0-0.56972-0.23724-0.5706-0.52652l-0.003-1.9879h0.00088z\"/>\n<path d=\"m196.19,138.57,0.27691,6.4514-4.3028-0.0159,0.28486-6.4523,3.741,0.0168\"/>\n<path id=\"cp1\" d=\"m190.94,141.56,0.13141,3.4775-4.1256,0.002,0.11641-3.4793h3.8786-0.00089z\"/>\n<use xlink:href=\"#cp1\" x=\"10.609\"/>\n<path id=\"cp2\" d=\"m186.3,139.04,1.1994,0.003v0.87224h0.8775v-0.89253l1.2294,0.004v0.889h0.87926v-0.89253l1.2302,0.002-0.002,2.0117c0,0.31398-0.2487,0.51859-0.5362,0.51859h-4.3169c-0.28926,0-0.55824-0.23548-0.55913-0.52564l-0.003-1.9888h0.00088z\"/>\n<use xlink:href=\"#cp2\" x=\"10.609\"/>\n<path fill=\"#000\" stroke=\"none\" d=\"m193.9,140.61c-0.0265-0.62706,0.87661-0.63411,0.86603,0v1.5364h-0.866v-1.536\"/>\n<path id=\"cp3\" fill=\"#000\" stroke=\"none\" d=\"m188.57,142.84c-0.003-0.6059,0.83693-0.61824,0.82635,0v1.1871h-0.826v-1.187\"/>\n<use xlink:href=\"#cp3\" x=\"10.641\"/>\n</g>\n<use xlink:href=\"#castle\" y=\"46.3198\"/>\n<use xlink:href=\"#castle\" transform=\"matrix(0.70460892,-0.70959585,0.70959585,0.70460892,-35.341459,275.10898)\"/>\n</g>\n<use xlink:href=\"#castle\" x=\"45.7138\"/>\n<use xlink:href=\"#castle3\" transform=\"matrix(-1,0,0,1,479.79195,0)\"/>\n<g id=\"quina\" fill=\"#fff\">\n<path fill=\"#039\" d=\"m232.636,202.406v0.005c0,2.2119,0.84927,4.2272,2.2118,5.6894,1.3652,1.4667,3.2454,2.3777,5.302,2.3777,2.0672,0,3.9439-0.90487,5.3029-2.3654,1.3581-1.4587,2.2021-3.47219,2.2021-5.693v-10.768l-14.992-0.0123-0.0273,10.766\"/>\n<circle cx=\"236.074\" cy=\"195.735\" r=\"1.486\"/>\n<circle cx=\"244.392\" cy=\"195.742\" r=\"1.486\"/>\n<circle cx=\"240.225\" cy=\"199.735\" r=\"1.486\"/>\n<circle cx=\"236.074\" cy=\"203.916\" r=\"1.486\"/>\n<circle cx=\"244.383\" cy=\"203.905\" r=\"1.486\"/>\n</g>\n<use xlink:href=\"#quina\" y=\"-26.016\"/>\n<use xlink:href=\"#quina\" x=\"-20.799\"/>\n<use xlink:href=\"#quina\" x=\"20.745\"/>\n<use xlink:href=\"#quina\" y=\"25.784\"/>\n</g>\n</svg>",
"language": "pt-PT",
"tags": "Language Icon"
},
"Language Icon: ru-RU": {
"title": "Language Icon: ru-RU",
"type": "image/svg+xml",
"text": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 9 6\" width=\"900\" height=\"600\">\n<rect width=\"9\" height=\"6\" fill=\"#D52B1E\"/>\n<rect width=\"9\" height=\"4\" fill=\"#0039A6\"/>\n<rect width=\"9\" height=\"2\" fill=\"#FFF\"/>\n<path d=\"m0,0h9v6H0z\" stroke=\"#a0a0a0\" stroke-width=\".1\" fill=\"none\"/>\n</svg>",
"language": "ru-RU",
"tags": "Language Icon"
},
"Language Icon: sk-SK": {
"title": "Language Icon: sk-SK",
"type": "image/svg+xml",
"text": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"900\" height=\"600\" viewBox=\"0 0 9 6\">\n<title>Flag of Slovakia</title>\n<rect width=\"9\" height=\"6\" fill=\"#ee1c25\"/>\n<rect width=\"9\" height=\"4\" fill=\"#0b4ea2\"/>\n<rect width=\"9\" height=\"2\" fill=\"#fff\"/>\n<g>\n<path fill=\"#fff\" d=\"M3.16255,4.635c-0.53781-0.25905-1.3071-0.77323-1.3071-1.79033,0-1.01711,0.04863-1.47967,0.04863-1.47967h1.25847,1.2585s0.04864,0.46256,0.04864,1.47967c0,1.0171-0.76929,1.53128-1.30714,1.79033z\"/>\n<path fill=\"#ee1c25\" d=\"M3.16255,4.5c-0.4934-0.23766-1.19917-0.70938-1.19917-1.64251,0-0.933128,0.044612-1.35749,0.044612-1.35749h1.15456,1.15459s0.044626,0.424365,0.044626,1.35749c0,0.933128-0.705776,1.40485-1.19921,1.64251z\"/>\n<path fill=\"#fff\" d=\"m3.26808,2.61284c0.133599,0.00216,0.394255,0.00739,0.626352-0.070273,0,0-0.00613,0.083055-0.00613,0.179805,0,0.096773,0.00613,0.179822,0.00613,0.179822-0.21289-0.07125-0.4758-0.07273-0.62635-0.07082v0.515391h-0.211033v-0.515391c-0.150545-0.00191-0.41345-0.0004252-0.626352,0.070815,0,0,0.00613-0.083049,0.00613-0.179822,0-0.09675-0.00613-0.179805-0.00613-0.179805,0.2321,0.077665,0.492753,0.072432,0.626352,0.070273v-0.323676c-0.121766-0.00108-0.297234,0.00473-0.49563,0.071126,0,0,0.00613-0.083055,0.00613-0.179822,0-0.096756-0.00613-0.179811-0.00613-0.179811,0.198103,0.066283,0.373356,0.072192,0.495088,0.071137-0.00626-0.20498-0.06597-0.46332-0.06597-0.46332s0.12289,0.00959,0.172016,0.00959c0.049178,0,0.172031-0.00959,0.172031-0.00959s-0.059695,0.258346-0.065964,0.463301c0.121741,0.00106,0.296989-0.00485,0.495086-0.071137,0,0-0.00613,0.083055-0.00613,0.179811,0,0.096767,0.00613,0.179822,0.00613,0.179822-0.198388-0.066392-0.373863-0.072207-0.495627-0.071126v0.323676z\"/>\n<path fill=\"#0b4ea2\" d=\"m3.1625,3.29094c-0.24847,0-0.381562,0.344688-0.381562,0.344688s-0.073834-0.163438-0.276562-0.163438c-0.137161,0-0.238243,0.12201-0.3025,0.235,0.24954,0.39705,0.64768,0.64207,0.96062,0.79281,0.31299-0.15075,0.71139-0.39571,0.96094-0.79281-0.064256-0.11299-0.165339-0.235-0.3025-0.235-0.202734,0-0.276875,0.163438-0.276875,0.163438s-0.133073-0.344688-0.381562-0.344688z\"/>\n<path d=\"m0,0h9v6H0z\" stroke=\"#a0a0a0\" stroke-width=\".1\" fill=\"none\"/>\n</g>\n</svg>",
"language": "sk-SK",
"tags": "Language Icon"
},
"Language Icon: sv-SE": {
"title": "Language Icon: sv-SE",
"type": "image/svg+xml",
"text": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"1200\" height=\"600\" viewBox=\"0 0 16 10\">\r\n<rect width=\"16\" height=\"10\" fill=\"#006aa7\"/>\r\n<rect width=\"2\" height=\"10\" x=\"5\" fill=\"#fecc00\"/>\r\n<rect width=\"16\" height=\"2\" y=\"4\" fill=\"#fecc00\"/>\r\n</svg>",
"language": "sv-SE",
"tags": "Language Icon"
},
"Language Icon: zh-Hans": {
"title": "Language Icon: zh-Hans",
"type": "image/svg+xml",
"text": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n<svg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"1500\" height=\"1000\" viewBox=\"-5 -5 30 20\">\n<title>Flag of the People's Republic of China</title>\n<rect fill=\"#de2910\" x=\"-5\" y=\"-5\" width=\"30\" height=\"20\"/>\n<defs>\n<polygon id=\"s\" points=\"0,-513674 301930,415571 -488533,-158734 488533,-158734 -301930,415571\"\nfill=\"#ffde00\" transform=\"scale(0.0000019467600073)\"/>\n</defs>\n<use xlink:href=\"#s\" transform=\"scale(3)\"/>\n<use xlink:href=\"#s\" transform=\"translate(5,-3) rotate(-120.963756)\"/>\n<use xlink:href=\"#s\" transform=\"translate(7,-1) rotate(-98.130102)\"/>\n<use xlink:href=\"#s\" transform=\"translate(7,2) rotate(-74.054604)\"/>\n<use xlink:href=\"#s\" transform=\"translate(5,4) rotate(-51.3401917)\"/>\n</svg>\n",
"language": "zh-Hans",
"tags": "Language Icon"
},
"Language Icon: zh-Hant": {
"title": "Language Icon: zh-Hant",
"type": "image/svg+xml",
"text": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE svg>\n<svg width=\"900\" height=\"600\" viewBox=\"-60 -40 240 160\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n <rect x=\"-60\" y=\"-40\" width=\"100%\" height=\"100%\" fill=\"#fe0000\"/>\n <rect x=\"-60\" y=\"-40\" width=\"50%\" height=\"50%\" fill=\"#000095\"/>\n <path id=\"four_rays\" d=\"M 8,0 L 0,30 L -8,0 L 0,-30 M 0,8 L 30,0 L 0,-8 L -30,0\" fill=\"#fff\"/>\n <use xlink:href=\"#four_rays\" transform=\"rotate(30)\"/>\n <use xlink:href=\"#four_rays\" transform=\"rotate(60)\"/>\n <circle r=\"17\" fill=\"#000095\"/>\n <circle r=\"15\" fill=\"#fff\"/>\n</svg>",
"language": "zh-Hant",
"tags": "Language Icon"
},
"$:/favicon.ico": {
"title": "$:/favicon.ico",
"text": "AAABAAQAEBAAAAEAIAAoBQAARgAAACAgAAABACAAKBQAAG4FAABAQAAAAQAgAChQAACWGQAAgIAAAAEAIAAoQAEAvmkAACgAAAAQAAAAIAAAAAEAIAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANh2Tg3VdlRD1XdWXNZ4VVHVd1MrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA03VQI9d3VqfYd1b42HpZ/92Kbv/YeFf/2HhX/9h3Vt7quKaQ+/f3PQAAAAAAAAAAAAAAAAAAAAAAAAAA13hWU9d4VvXqt6X/8MzA//fl3v/029L/2Hpa/9h4V//45+L//fv6/+CWe8fPcFAQAAAAAAAAAAAAAAAA13VURth3VvzinYX/9+Xf//fk3f/twrP/2HhX/9h4V//YeFf//Pf1//LSx//YeFf/13hWwMxmMwUAAAAA0XRGC9d3VufYeFf/6rak//z18///////562Z/9h4V//YeFf/2HlY//z39f/rvKz/2HhX/9h4V//Wd1Z2AAAAANZ2V3DYeFf/2HhX/9l8XP/68Oz///////fl3v/vyLv/8tTK//TZ0P//////+/Lv/+Kbg//YeFf/13hX7tVVVQbXd1bB2HhX/9h4V//Ye1r/9uDY///////////////////////////////////////+/Pz/4pyE/9l+Xv/WdlVF2HdX69h5WP/ejXH/5qqW///////////////////////////////////////////////////////35uD/2HtbcOOehfn139f/8tXK//Xe1v/9+vn//////////////////////////////////////////////////////+iqlpnvyLrx2Hpa/9h4V//YeFf/3Idq/+m0ov/ruqr/5qmU/9+Rd//fk3j/4JZ9/+eumv/////////////////vybqb6LCcv9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//bhWf/+/Lv/+ixnv/nrpr/9+Xff9d6WkfYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9l7W//YeFf/13hXyAAAAAAAAAAA2HdXtth4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/dV3VTwAAAAAAAAAANVxVRLXd1bY2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h3VW8AAAAAAAAAAAAAAAAAAAAA1XFVEtd3VrTYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HdW79d3VVoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA1XhVQtd3VqHYd1be2HhX99d4VuzXd1bH13ZWedJ4SxEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAgAAAAQAAAAAEAIAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMhtSQ7Vd1ZW13hWgNd4V5nXeFez13hXs9d4V5nXeFaA1XdWVshtSQ4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdd1VlnXd1a613dX+th4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/13dX+td3VrrXdVZZAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANd3VkfYd1bP2HhX/9h4V//YeFf/2HhX/9h4V//bhGb/4Zd+/9l9Xv/YeFf/2HhX/9h4V//YeFf/2HhX/9h5WP/twbHm/fPwzf///6H///8BAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAL9AQATYeFaV2HhX/9h4V//chmn/5qqV/+KchP/ZfV3/8c7D////////////8MzA/9h4V//YeFf/2HhX/9uDZf/wzcH/9d3V////////////89bM0r9AQAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADXa1ET13dXv9h4V//YeFf/35B1//z28////////v39//Xc1P///////fr5//LUyv/fkHX/2HhX/9h4V//YeFf/5KGL//////////////////Tb0v/YeFf/13dXv9drURMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAv2BACNd4V8jYeFf/2HhX/9l8XP/57ej//////+y+rv/03NP///////nr5//bhWj/2HhX/9h4V//YeFf/2HhX/9h4V//joIn/////////////////46GK/9h4V//YeFf/13hXyL9gQAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADXeFak2HhX/9h4V//YeFf/6rmo///////uxrn/78m7////////////4puD/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/+GXff////////////z39f/Ye1r/2HhX/9h4V//YeFf/13hWpAAAAAAAAAAAAAAAAAAAAAAAAAAA13dWZdh4V//YeFf/2HhX/9h4V//57en///////DMv//+/v7////////////agWL/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/3Ypt////////////9d7W/9h4V//YeFf/2HhX/9h4V//YeFf/13dWZQAAAAAAAAAAAAAAANF0RgvXd1bn2HhX/9h4V//YeFf/2HhX//LVyv///////vz7/////////////////+CUev/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//jn4j////////////x0cb/2HhX/9h4V//YeFf/2HhX/9h4V//Xd1bn0XRGCwAAAAAAAAAA13ZWf9h4V//YeFf/2HhX/9h4V//YeFf/3IZp//349///////////////////////67ur/9h4V//YeFf/2HpZ/9qBYv/bgmT/2HhX//HQxf////////////vy7//ch2r/2HhX/9h4V//YeFf/2HhX/9h4V//XdlZ/AAAAAIAAAALXeFfo2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/67uq///////////////////////78/D/9+Pc//z18//////////////////+/f3//v39//////////////////z39f/mqZT/2HhX/9h4V//YeFf/2HhX/9d4V+iAAAAC13dUOth4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//Zfl///PXz///////////////////////////////////////////////////////////////////////////////////////wzcH/2HlY/9h4V//YeFf/2HhX/9d3VDrWdleK2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/+Wlj//+/f3////////////////////////////////////////////////////////////////////////////////////////////nrJj/2HhX/9h4V//YeFf/1nZXitd4VrvYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//diWz//vz7//////////////////////////////////////////////////////////////////////////////////////////////////nr5v/67un/89fN/9qCY//XeFa713hW1dh4V//YeFf/2HhX/9h4V//YeFf/2HhX/+arl///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////89XL/9d4VtXYd1bv2HhX/96Oc//uxbf/9+bg//vz8f/78e7/+u7q////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////35R58td4VvXsva3//v7+//7+/v/68Oz/+evn//349//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////svKv56LKg6v36+f/ps6D/2oBh/9h4V//YeFf/2HhX/9yHav/ko43/+erl///////////////////////////////////////78/H/+/Pw//77+/////////////349v/35d////////////////////////////////////////HQxfH77en05qiT/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//Ze1v/5KSO/+7GuP/z1cv/8tPI/+zAsP/ko43/24Nl/9h4V//YeFf/2HhX/9l+Xv/agmP/2HhX/9h4V//89/X/////////////////////////////////8tTJ6P359/fZe1v/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX//Xe1v/////////////////////////////////349vg/Pb039h5WP/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/7L+v///////9+vn/7sa4/+iyoP/kpI7/8M3B//76+Ov9+/mA24Fj9dh4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//di27/+/Lv/+aplP/YeFf/2HhX/9h4V//XeFb17dHIHAAAAADXeFag2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeVj/2HhX/9h4V//YeFf/2HhX/9d3V58AAAAAAAAAANV3VR7Yd1b42HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf31XdVHgAAAAAAAAAAAAAAANZ2V4rYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9Z2V4oAAAAAAAAAAAAAAAAAAAAA0XRGC9h3Vs/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//Yd1bP0XRGCwAAAAAAAAAAAAAAAAAAAAAAAAAA03JPHdd3VufYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/13dW59NyTx0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA13hVM9d3VufYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9d3VufXeFUzAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0XZSHNd4VszYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//XeFbM0XZSHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxnFVCdd3V4fYd1b22HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//Yd1b213dXh8ZxVQkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANh2ThrXeFeZ13dW8th4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//Xd1by13hXmdh2ThoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC2bUkH1XVVSNh3V5bXd1e/13hX2dd4VvPXeFbz13hX2dd3V7/Yd1eW1XVVSLZtSQcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA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AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC/QEAE13dWlNh4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9uEZv/y1cr///////////////////////79/f/hl37/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//fk3j/5KKL/+Wlj//y0sf////////////////////////////+/v60////AwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADXa1ET13dWvth4V//YeFf/2HhX/9h4V//YeFf/2Xtb/+mzof/z183/9uHa//PXzv/mq5f/2HhX/96Ncv/67+v/////////////////////////////////4p2F/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//lp5H////////////////////////////////////////////ux7n/2HlZvtdrURMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADWdFcs2HhX3dh4V//YeFf/2HhX/9h4V//YeFf/2X5f//Xf2P///////////////////////////9+Qdf/78u//////////////////////////////////9NrR/9h6Wf/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/78q9///////////////////////////////////////02dD/2HhX/9h4V//YeFfd1nRXLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADXd1ZN13hW89h4V//YeFf/2HhX/9h4V//YeFf/2HlY//PYz/////////////////////////////359//68Oz///////////////////////Xf2P/or5z/35F3/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX//PWzP//////////////////////////////////////4JV7/9h4V//YeFf/2HhX/9d4VvPXd1ZNAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADVd1U813hW+dh4V//YeFf/2HhX/9h4V//YeFf/2HhX/+u7qv//////////////////////8tLH/+7Guf/46OP//////////////////v39/+iwnf/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//02dD/////////////////////////////////9uHa/9h4V//YeFf/2HhX/9h4V//YeFf/13hW+dV3VTwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADXeFAg2HhW6th4V//YeFf/2HhX/9h4V//YeFf/2HhX/92McP/++/v////////////+/v7/562Z/9h4V//twrP//////////////////////+mzoP/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/8My//////////////////////////////////+etmf/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFbq13hQIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADValUM13dW0th4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//z187/////////////////6bOg/9l7W//x0MX///////////////////////LVyv/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/+u7qv////////////////////////////79/f/agWL/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9d3VtLValUMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAC13dWsth4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//hmYH/////////////////+vDt/9h4V//z2M/////////////////////////////hmYD/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//lp5L////////////////////////////13tb/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/13dWsoAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA2HhWgth4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/8dDF//////////////////z18//ZfV7//fv6////////////////////////////24Rm/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/4pqC////////////////////////////7L+v/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFaCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA1XdTK9d3V/rYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX//z28///////////////////////6bSi/////////////////////////////////96Pc//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/+CWff///////////////////////////+Wnkf/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/13dX+tV3UysAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANd3VsHYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//z183///////////////////////vx7f/+/f3////////////////////////////joIn/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//osZ7////////////////////////////inYX/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//Xd1bBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANd2VFLYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/3Ypu//37+v//////////////////////////////////////////////////////7cKz/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/9d3V////////////////////////////5aaQ/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9d2VFIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADXd1fO2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//quKb///////////////////////////////////////////////////////jp5P/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/3Ihr//7+/v////////////////////////////DNwf/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//Xd1fOAAAAAAAAAAAAAAAAAAAAAAAAAADWd1VL2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HpZ//fl3v//////////////////////////////////////////////////////3Ytu/9h4V//YeFf/2HhX/9h4V//YeVj/2n9g/9yHav/ejnP/35N5/96Ncf/bg2T/2HhX/+u7q///////////////////////////////////////6bOg/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9Z3VUsAAAAAAAAAAAAAAAAAAAAA2HhWtdh4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//glHr//v7+//////////////////////////////////////////////////HOw//svq7/8dDF//bi2//79PH//v7+//////////////////////////////////36+f/9+/r////////////////////////////////////////////z1sz/24Nl/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFa1AAAAAAAAAAAAAAAA1XVVGNh3VvzYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/+/Kvf////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////z18//mq5b/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HdW/NNvThcAAAAAAAAAANd3VXLYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//ciGz//v39//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////LUyv/agWL/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//WeFZxAAAAAAAAAADYd1a92HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX//PVy///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////9uLc/9l8XP/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HdWvQAAAAC/YEAI2HhX99h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/+eumv/+/Pv////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////twrP/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V/e/YEAI1XhVQth4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/+Wokv///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////fn4/9qAYf/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HZWQdd4VnPYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9uDZf/89/X////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////or5z/8MzA//rw7f/13NT/35F2/9h4V//YeFf/2HhX/9d4VnPXd1aa2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//ps6D///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////35+P/joIn/2HhX/9h4V//Xd1aa13dWwdh4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/9NnQ/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////Pf1/9yIbP/YeFf/13dWwdh3V9zYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX//fl3//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////z2M7/2HhX/9h3V9zYd1bp2HhX/9h4V//YeFf/2HhX/9h4V//ZfV3/4p2F/+3Cs//z183/9+Pc//ru6f/46eT/9d7W/+7Huf/79PH//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////9+Tef/Yd1bp2HdW9th4V//YeFf/2HhX/9yGaP/uxbf//fr5///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////ux7n/2HdW9td4VvvYeFf/2HhX/+iyoP/9+/r/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+e3p/9d4VvvYd1bv2HlY//DLv////////////////////////vz8//jn4v/029L/89jP//PXzf/24dr/+vDt//79/f/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////ch2nw2HhX4um1pP////////////78/P/wzsL/4JZ8/9l8XP/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//Ze1v/4JV7/+iyoP/24dr/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////4JV7596PdNn++/v///////nr5//dim7/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/+ixnv/9+vn////////////////////////////////////////////////////////////////////////////78e7/9d/X//Xf2P/35d7/+vDs//77+/////////////////////////////z28//029L/78e6/////////////////////////////////////////////////////////////////////////////////+Ohit7wyr3X//////rw7P/ciGv/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/3Idq/+u7q//45+H///////////////////////////////////////35+P/24Nj/7MCx/+Ofh//agWL/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2n9g/92Kbv/ejXL/3Yxw/9l+Xv/YeFf/2HhX/9h6Wf/9+/r////////////////////////////////////////////////////////////////////////////lpZDD+/Ht6f/////lp5L/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9uDZP/hmH//5quW/+arl//mqZT/5KON/96Ncf/YeVj/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/9+Te////////////////////////////////////////////////////////////////////////////5qqUov36+fH+/f3/2X1d/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX//DLvv///////////////////////////////////////////////////////////////////////////+zDtZH//f3l+e3p/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//nr5v////////////////////////////////////////////////////////////////////////////57uiG////0vru6vrYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/35J3///////////////////////////////////////9+/r/9d3U/+zAsf/z1sz//Pf1////////////////wf///5b++/v72HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h6Wf/78u//////////////////+u7p/9+Tef/chmj/2Hpa/9h4V//YeFf/2HhX/9l7W//mqJP/+u7p6/////////88/////9yHav/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/67ys/////////////fv6/+CUef/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9V2VEP///9QAAAAAP///8Lfj3Pm2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9qAYf/35N7//PTy/+Ofh//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V+KAAAACAAAAAAAAAAAAAAAA1nhXhNh4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HlY/9l8XP/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//WeFeEAAAAAAAAAAAAAAAAAAAAANF0URbYd1b22HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//Yd1b20XRRFgAAAAAAAAAAAAAAAAAAAAAAAAAA13hWkdh4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/13hWkQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANh2ThrXd1f02HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/13dX9Nh2ThoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA13dWdNh4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9d3VnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAL9AQATXeFbT2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9d4VtO/QEAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA1nRXLNd3VvLYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9d3VvLWdFcsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADXdVRM2HhX/dh4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V/3XdVRMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANh4VXXYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFV1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA13dXn9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//Xd1efAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANVVVQbXeFbA2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//XeFbA1VVVBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtm1JB9d3V5/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//Xd1eftm1JBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA1nhWcdh3VvzYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h3VvzWeFZxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADXdVRG2HdW79h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9d4V+7XdVRGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANZ1UyXXd1bN2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9d3Vs3WdVMlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAtZ2V2rYd1bv2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HdW79Z2V2qAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAzHNNFNd3V4fYeFfx2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFfx13dXh8xzTRQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAz3BQENd3VXjXeFfZ2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9d4V9nXd1V4z3BQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANV2VTbWd1eQ13dX1Nh4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//Xd1fU1ndXkNV2VTYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADTb04X2HZVVNd2Vn/XeFam13hWzNd3V9/XeFbs13hW+dd4VvnXeFbs13dX39d4VszXeFam13ZWf9h2VVTTb04XAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAACAAAAAAAEAAAEAIAAAAAAAAEABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA1XFVEtd0VTnXeFVg13dXh9h4V6rXeFe513hWxtd4VtPXd1ff13hW7Nd4VvnXeFb513hW7Nd3V9/XeFbT13hWxtd4V7nYd1ap13dXh9d4VWDXdFU51XFVEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAzHdVD9d3Vk3Xd1aO13dXxdd4VuzYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/13hW7Nd3V8XXd1aO13dWTcx3VQ8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAL9gQAjVdVVI2HdWidh4VsrYd1b82HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HdW/Nh4VsrYd1aJ1XVVSL9gQAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdd1VT/Yd1ec2HhX8dh4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX8dh3V5zXdVU/AAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA03ZRKdd3VoXXd1bh2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//Xd1bh13dWhdN2USkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA13hUQNd3VrrYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9d3VrrXeFRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA1ndVS9d3V8XYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//Xd1fF1ndVSwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA13ZUUth3VtDYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HdW0Nd2VFIAAAAAAAAAAAAAAAAAAAAA////CP///wsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0nNTKNh3V7zYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//Ye1r/5qiT//PSx+P9+fjS////7/////3//////////////+z///+S////DwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0XRGC9h4VojXd1f62HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h6Wf/YeVj/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/4JV7//ru6f/////////////////////////////////////////////////////Q////BQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANd2VFLYeFfi2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//chmj/6rel//TZ0P/57en//v39///////9+fj/+Ofi/+7Guf/fk3n/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/+CVe//9+ff///////////////////////////////////////////////////////////////9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMxmTQrXd1ef2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//ciGv/89bM//79/f////////////////////////////////////////////79/f/lpY//2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//agWL/+/Ht////////////////////////////////////////////////////////////////5P///xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADWdFcs2HdX1th4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/5qqV//z39f////////////////////////////////////////////////////////////PYzv/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HlY/+Wnkf/twbL/78m8//HPw//y08j/8dDF//fj3P////////////////////////////////////////////////////////////76+t////8lAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA13hVZth3VvbYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/3Ihr/+aok//ruqn/7cGx/+7Huf/ruqr/5aWP/9yIa//YeFf/2HhX/9h4V//YeFf/2HhX/+y/r///////////////////////////////////////////////////////////////////////8tLH/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//quaj////////////////////////////////////////////////////////////////////////////////////////////y1Mn/2n5f9td4VWYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAv2BACNd3V6XYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/3Idq//PXzv///////////////////////////////////////v39/+7GuP/YeFf/2HhX/9h5WP/wzcH////////////////////////////////////////////////////////////////////////////ptKL/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX//vz8P//////////////////////////////////////////////////////////////////////////////////////7sW3/9h4V//YeFf/2HhX/9d3V6W/YEAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM9wUBDXd1bB2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9+TeP/79PH//////////////////////////////////////////////////////9yHav/YeVj/8c/D/////////////////////////////////////////////////////////////////////////////Pf1/9uDZf/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//dim3///////////////////////////////////////////////////////////////////////////////////////Ta0f/YeFf/2HhX/9h4V//YeFf/2HhX/9d3VsHPcFAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADYdk4a13dW0th4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//fk3n//Pf1////////////////////////////////////////////////////////////3Ypt//DNwf////////////////////////////////////////////////////////////////////////////vy7//hmH//2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/+Sii//////////////////////////////////////////////////////////////////////////////////+/f3/3Yxw/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9d3VtLYdk4aAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0nNTKNd3VuHYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/3Yls//vy7/////////////////////////////////////////////////////////////z18//uxrj////////////////////////////////////////////////////////////78/D/9NvS/+3Cs//lppD/2X5f/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/5qqW//////////////////////////////////////////////////////////////////////////////////HQxf/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9d3VuHSc1MoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANh2UzTXeFbs2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9l9Xv/46OP//////////////////////////////////////////////////////////////////fr5///////////////////////////////////////////////////////24Nj/45+I/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//osZ7/////////////////////////////////////////////////////////////////////////////////35N5/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9d4VuzYdlM0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADSc1Mo13hW7Nh4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/8MzA//////////////////////////////////////////////////////////////////z18//9+Pb////////////////////////////////////////////9+fj/5qmU/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/+q3pv////////////////////////////////////////////////////////////////////////////Xf1//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9d4VuzSc1MoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0XZSHNh4V+LYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/+aok/////////////////////////////////////////////79/f/quKb/4Zd+/+Kdhf/djHD/6rel/////////////////////////////////////////////fj2/+GXfv/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/56+b////////////////////////////////////////////////////////////////////////////5qmU/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V+LRdlIcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANdrURPYd1fW2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//bg2X//PXz///////////////////////////////////////++/v/5KON/9h4V//YeFf/2HhX/+zAsf////////////////////////////////////////////78/P/imoL/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//joIn///////////////////////////////////////////////////////////////////////z39f/ZfV3/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h3V9bXa1ETAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADRdEYL13hXyNh4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX//HQxf///////////////////////////////////////fv6/+Oeh//YeFf/2HhX/9h6Wf/wzMD/////////////////////////////////////////////////6LCc/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9+Rdv//////////////////////////////////////////////////////////////////////78m8/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9d4V8jRdEYLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANd3V63YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//hl37///////////////////////////////////////78+//jnob/2HhX/9h4V//Zfl7/89jP//////////////////////////////////////////////////LSx//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2oFi///////////////////////////////////////////////////////////////////////inIT/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9d3V60AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADYd1Vv2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX//Xf2P//////////////////////////////////////6LGe/9h4V//YeFf/24Vo//fl3v/////////////////////////////////////////////////9+/r/24Nl/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/+/Tx/////////////////////////////////////////////////////////////Pf1/9h6Wv/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h3VW8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA1XZVNtd4VvnYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//jnof///////////////////////////////////////jp4//YeVj/2HhX/9+Tef/78e3///////////////////////////////////////////////////////DOwv/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//24Nj////////////////////////////////////////////////////////////xz8T/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/13hW+dV2VTYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANJ4SxHXd1ff2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX//TZ0P//////////////////////////////////////7se5/9h4V//YeFf/9+Pc////////////////////////////////////////////////////////////5aeS/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX//DNwf///////////////////////////////////////////////////////////+aqlv/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/13dX39J4SxEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB13hWsdh4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//dim3//v7+///////////////////////////////////////z2M7/2HhX/9h7Wv/+/Pz////////////////////////////////////////////////////////////fk3n/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/7cKz////////////////////////////////////////////////////////////3o1y/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/13hWsQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANd4VWDYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/+u6qv////////////////////////////////////////////7+/v/di2//24Nl/////////////////////////////////////////////////////////////////92McP/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//quaj///////////////////////////////////////////////////////z39f/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/13hVYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADVcVUS2HdX69h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/9d7W/////////////////////////////////////////////////+7GuP/bhWf/////////////////////////////////////////////////////////////////35F3/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/+iwnP//////////////////////////////////////////////////////9d3U/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//Yd1fr1XFVEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANd3VprYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h7Wv/++/v//////////////////////////////////////////////////fr5/92Lb//////////////////////////////////////////////////////////////////jn4f/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/6rak///////////////////////////////////////////////////////xz8T/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//Xd1aaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADWdlc42HdW/th4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX//PXzf//////////////////////////////////////////////////////78m8//77+////////////////////////////////////////////////////////////+q3pf/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//y1cr//////////////////////////////////////////////////////+7GuP/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h3Vv7Wdlc4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAqlVVA9h3VtDYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/3Ypu//37+v/////////////////////////////////////////////////+/Pz//vz7////////////////////////////////////////////////////////////8tPI/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2X1d//35+P//////////////////////////////////////////////////////7L2t/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h3VtCqVVUDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADXd1dn2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/7L2t///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////89/X/2Hpa/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//kpI7////////////////////////////////////////////////////////////vybv/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9d4VWYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAv0BABNd3V9/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//ZfV3/+u7q///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////hmYH/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX//LSx/////////////////////////////////////////////////////////////Xf2P/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/13dX379AQAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADXeFVg2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//inYX//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+3Bsf/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//agWL//fv6/////////////////////////////////////////////////////////////Pf1/9h6Wv/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/13hVYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAtd4V9nYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//wzL//////////////////////////////////////////////////////////////////////////////////////////////////////////////////+Oji/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/+iwnf//////////////////////////////////////////////////////////////////////56+b/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//XeFfZgAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADWd1dY2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9qBYv/78u//////////////////////////////////////////////////////////////////////////////////////////////////////////////////3Yls/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/9+Te///////////////////////////////////////////////////////////////////////9+vn/4ZqB/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//Wd1dYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANd4VtPYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/+Sjjf/////////////////////////////////////////////////////////////////////////////////////////////////////////////////osp//2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HlY/9uDZP/ejXL/4Zh//+Ohiv/lppD/5qqV/+eumv/osp//566a/+WmkP/jnof/4JZ9/9yHav/YeVj/2HhX/9+TeP/////////////////////////////////////////////////////////////////////////////////+/f3/67qp/9h5WP/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9d4VtMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADVd1U82HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX//PYzv////////////////////////////////////////////////////////////////////////////////////////////////////////////Tb0v/YeFf/2HlY/9yGaf/hmH//5qqW/+u8rP/xzsP/9uDY//vy7//+/f3///////////////////////////////////////////////////////////////////////78+//57en/+u7p////////////////////////////////////////////////////////////////////////////////////////////9d3V/9yGaf/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9V3VTwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANd3VprYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/3Ypu//37+v///////////////////////////////////////////////////////////////////////////////////////////////////////vz8//nq5f/9+/r//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////PXz/+WmkP/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/13dWmgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC/YEAI2HdW8Nh4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/67yr//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////PYzv/ciGv/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//Yd1bwv2BACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANZ1VVfYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//ZfFz/+vDt//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////359//ps6H/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//WdVVXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA2HhWtdh4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//ptaP////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////029L/24Rm/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4VrUAAAAAAAAAAAAAAAAAAAAAAAAAANF0URbYd1b82HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9p/YP/89/X////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////78/D/4p2F/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HdW/NF0URYAAAAAAAAAAAAAAAAAAAAA13dVWth4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/+3Bsf/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+/f3/5aaQ/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/13VWWQAAAAAAAAAAAAAAAAAAAADYd1ec2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/4Zd9///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+/Pz/4JV7/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//Yd1ecAAAAAAAAAAAAAAAAAAAAANh3Vt7YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/+GYf//79PH////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////46eT/2HpZ/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h3Vt4AAAAAAAAAAAAAAADXeFAg2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//nrZn//vz7///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////mqJP/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9d4UCAAAAAAAAAAANZ2VWPYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/5qmU//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////jo4//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/1nZVYwAAAAAAAAAA13hWpNh4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9yIbP/89/X//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+Kdhf/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//XeFakAAAAAAAAAADXd1bS2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeVj/9d/X////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8My//9h4V//chmn/7sW3//fl3v/35N7/8tLH/+Ohiv/YeVj/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9d3VtIAAAAAgAAAAth4V/fYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/+aqlv/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////56+b/46CJ//z18/////////////////////////////Xe1v/dim3/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX94AAAALRdFUh2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/9+Xf///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+/v7///////////////////////////////////////vz8f/fkXf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/0XRVIdV1VUjYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/92Kbv////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////z18//di27/2HhX/9h4V//YeFf/2HhX/9h4V//VdVVI1nZXcNh4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/56+b//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////jo4//ZfV3/2HhX/9h4V//YeFf/2HhX/9Z2V3DWeFaX2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//uxbf//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+3Dtf/YeFf/2HhX/9h4V//YeFf/1nhWl9d4VrHYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX//PVy////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////v39/9+Rdv/YeFf/2HhX/9h4V//XeFax13dWvth4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/89jP////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8tPI/9h4V//YeFf/2HhX/9d3Vr7Xd1fL2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HpZ/+CWff/nrpr/7L+v//HQxf/z2M7/9d7W//bh2v/02dD/8c/E/+7GuP/ptaP/4pyE/9uDZP/z1sz////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+/v7/3o5z/9h4V//YeFf/13dXy9d3VtjYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//ejXH/6LGe//PVy//89/X///////////////////////////////////////////////////////////////////////78/P/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////xz8T/2HhX/9h4V//Xd1bY13dX5dh4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h6Wv/nrJj/+evm//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////78+//af2D/2HhX/9d3V+XXd1by2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h7Wv/nr5v/+u7q/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+SijP/YeFf/13dW8th3VvzYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//ko43/+vDs////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////78m7/9h4V//Yd1b813hW89h4V//YeFf/2HhX/9h4V//ZfFz/78q9///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////67+v/2HhX/9d4VvPXeFbm2HhX/9h4V//YeFf/2n9g//Xe1v/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////ejXH/13hW5td4V9nYeFf/2HhX/9l+Xv/35N7//////////////////////////////////////////////////vz8//fm4P/y08j/7cGx/+q5qP/qtqT/6bOh/+ixnv/nrpr/6K+c/+y9rf/wy7//9NrR//jo4//89/X//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+Skjv/XeFfZ13hWzNh4V//YeFf/8tXK///////////////////////////////////////78/D/7cO0/+Kdhf/Zfl7/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//chmn/5KSO/+3Bsv/13tb//fr5////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////6rmo/9d4VszXd1e/2HhX/+m0ov/////////////////////////////////56uX/5aWP/9h6Wv/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//Yeln/45+I//fm4P/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////tw7T/13dXv9d3VrLbhWj//fj2///////////////////////+/Pz/6rak/9h6Wv/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2Hpa/+u8rP/+/f3//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////vv7/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+7Etv/XeFax1nhWl+7Huf///////////////////////Pf1/+Kdhf/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/+CVe//56+b///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////78+//35N3/8c7D/+zAsP/ruqn/7L6u/+3Cs//uxrn/8c/D//Tb0v/45+H/+/Lv//79/f///////////////////////////////////////////////////////Pb0//fj3P/uxbf/5aiS/92Lbv/hmYH/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////7sS2/9Z4VpfYgmZ2/fj2//////////////////79/f/imoL/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h7Wv/ptKL/+u/r///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////89/X/89fN/+m1pP/glXv/2Xtb/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HlY/9uCZP/ejXL/4Zh//+Sii//lqJL/5qmU/+WmkP/imoL/3Yxw/9l9Xv/YeFf/2HhX/9h4V//YeFf/2HhX/9p/YP/+/v7////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////twbH/1nZXcPDRxor/////////////////////67qp/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/4pqC/+7GuP/56uX/////////////////////////////////////////////////////////////////////////////////+vDs//LSx//ps6D/35J3/9h5WP/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX//nt6P///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+u8rP/VdVVI/PTxpP////////////////vy7//Ze1v/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//bg2T/4ZmA/+evm//uxLb/9NrR//jo4v/57en/+/Lv//rw7P/35d//9NrR//DLvv/ptKL/456H/9uFaP/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/8tPI////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////6rin/9F0VSH////O////////////////6rmo/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//ru6r////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////rt6X6gAAAAv///+f////////////////djHD/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/+SijP///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+3Ft+kAAAAA////9P///////////Pf1/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/3Ypt////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////89jO3AAAAAD////2///////////13tb/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf//Pf1///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////88u/cAAAAAP///9z///////////PYz//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//13tb////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+/vb///8D////wf//////////89fO/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/+3Bsv///////////////////////////////////////////////////////////////////////////////////////////////////////v39/////////////////////////////////////////////////////0D///+P///////////z2M//2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/5KGL//////////////////////////////////////////////////////////////////////////////////ru6v/wzL//5qmU/9yGaf/Zfl//4p2F/+y+r//139j//v39////////////////////////////////k////03///////////nq5f/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//agWL//v39/////////////////////////////////////////////v39/+u6qv/osJz/5qqW/+GZgP/bhWf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//ch2r/7L6u//vy7//////////////////////y////D/////r///////39/th6Wv/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//029L////////////////////////////////////////////rvKv/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2Hpa/+Wnkv3+/f3b//////////8AAAAA////rP//////////3o1x/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/+arlv//////////////////////////////////////9NzT/9h5WP/YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhWtf///wP///9d////2wAAAAD///9F///////////joIn/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2Hpa//ns5/////////////////////////////rw7P/bg2T/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//WdVVXAAAAAAAAAAD///8EAAAAAP///wH////a/////+mzofbYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/4puD//78+//////////////////67+v/3Yxw/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HdW8L9gQAgAAAAAAAAAAAAAAAAAAAAAAAAAAP///0r////76bKfudh4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/5KKM//vz8P//////9uDZ/9yIa//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//Xd1aaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wzVd1U82HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2X5f/9+Rd//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9V3VTwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADXeFbT2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//XeFbTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANd1VlnYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9d1VlkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAtd4V9nYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//XeFfZgAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA13hVYNh4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9d4VWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC/QEAE13dX39h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//Xd1ffv0BABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADXd1dn2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9d3V2cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKpVVQPYd1bQ2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//Yd1bQqlVVAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANZ2VzjYd1b+2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HdW/tZ2VzgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANd3VprYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//Xd1aaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA1XFVEth3V+vYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HdX69VxVRIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA13hVYNh4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//XeFVgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA13hWsdh4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/13hWsQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADSeEsR13dX39h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9d3V9/SeEsRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADVdlU213hW+dh4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//XeFb51XZVNgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADYd1Vv2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h3VW8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADXd1et2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//Xd1etAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANF0RgvXeFfI2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/13hXyNF0RgsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANdrURPYd1fW2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h3V9bXa1ETAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANF2UhzYeFfi2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFfi0XZSHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANJzUyjXeFbs2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/13hW7NJzUygAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANh2UzTXeFbs2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9d4VuzYdlM0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANJzUyjXd1bh2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//Xd1bh0nNTKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANh2ThrXd1bS2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/13dW0th2ThoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM9wUBDXd1bB2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9d3VsHPcFAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAL9gQAjXeFam2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//Xd1elv2BACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADXd1Zl2HdW9th4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//Yd1b213dWZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADWdFcs2HdX1th4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HdX1tZ0VywAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADMZk0K13dXn9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9d3V5/MZk0KAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA13ZUUth4V+LYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V+LXdlRSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0XRGC9d3V4fXd1f62HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9d3V/rXd1eH0XRGCwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANJzUyjYd1e82HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//Yd1e80nNTKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADXdlRS2HdW0Nh4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//Yd1bQ13ZUUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA1ndVS9d3V8XYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//Xd1fF1ndVSwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANd1VT/Xd1a62HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//Xd1a613VVPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADSc1Mo13dWhdd3VuHYeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9d3VuHXd1aF0nNTKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdd1VT/Yd1ec2HdW8Nh4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HdW8Nh3V5zXdVU/AAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC/YEAI13dWR9h3VonYeFbK2HdW/Nh4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h3VvzYeFbK2HdWidd3Vke/YEAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADMd1UP13VUTNd3Vo7Xd1fF2HdX69h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//YeFf/2HhX/9h4V//Yd1fr2HhWxNd3Vo7XdVRMzHdVDwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA1XFVEtd0VTnXeFVg13hWhth3VqnXeFe513hWxtd4VtPXd1ff13hW7Nd4VvnXeFb513hW7Nd3V9/XeFbT13hWxtd4V7nYd1ap13hWhtd4VWDXdFU51XFVEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==",
"type": "image/x-icon"
},
"$:/green_favicon.ico": {
"title": "$:/green_favicon.ico",
"text": "AAABAAIAEBAAAAEAIAAoBQAAJgAAACAgAAABACAAKBQAAE4FAAAoAAAAEAAAACAAAAABACAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEHPcCtK13KPS9dy1UzXc/NM13PzS9dy1UrXco9Bz3ArAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKqoqBkvXcZRj3YT9cuGO/5Loqf/K9NX/Vdp6/07adf+M56P/1PXe/s7y1dMqqioGAAAAAAAAAAAAAAAAKqoqBkzXcr1j3oT/6Pru/9j24P/k+er/d+GU/07adf9O2nX/6Pnt//f9+P9X2nv/TNdyvSqqKgYAAAAAAAAAAEvXcZRO2nX/t+/F/9T23P/9/v3/juam/07adf9O2nX/Ttp1/9z35P/K9NX/Ttp1/07adf9L13GUAAAAAEHPcCtM2XT9Ttp1/4znpP///////////6fsuP9R2nf/Yd2C/2PehP/1/fj/1vbf/1Dadv9O2nX/TNl0/UHPcCtK13KPTtp1/07adf9O2nX/2/fi///////8/vz//v7+///////////////////////Y9uD/Xd1//07adf9K13KPS9dy1U7adf9O2nX/at+J//f9+P///////////////////////////////////////////8301v+W6az/S9dy1UzXc/OF5J7/p+y4/8bz0v///////////////////////////////////////////////////////////4DhmvbD8s76ru2//5bprP+m7Lj/4vjn//////////////////P89f/z/PX/+f36/+378f////////////////+w7sH5luit5E7adf9O2nX/Ttp1/1Dadv9y4Y//eeKV/2PehP9O2nX/Ttp1/07adf9j3oT/////////////////x/LU8JDnqKtO2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/9f23/+D5J3/Z9+I/6vrvrtBz3ArTNl0/U7adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/0zZdP1Bz3ArAAAAAEvXcZRO2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9L13GUAAAAAAAAAAAqqioGTNdyvU7adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9M13K9KqoqBgAAAAAAAAAAAAAAACqqKgZL13GUTNl0/U7adf9O2nX/Ttp1/07adf9O2nX/Ttp1/0zZdP1L13GUKqoqBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEHPcCtK13KPS9dy1UzXc/NM13PzS9dy1UrXco9Bz3ArAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAIAAAAEAAAAABACAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACqqKgZH129HS9dylUzWcr9M2HPZTNdz80zXc/NM2HPZTNZyv0vXcpVH129HKqoqBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/JahhK13GWS9hz8U7adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9L2HPxStdxlj/JahgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACSRSAdM2XOCTNdy9E7adf9O2nX/Ttp1/07adf9n34j/mumv/5fprf9T2nj/Ttp1/07adf9O2nX/Ttp1/07adf+F5J7/6/ru/fz9/P34/Ph2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/yWoYS9hyx07adf9U2nn/puu4/7nwyP984pf/lums//v+/P///////////3Lhjv9O2nX/Ttp1/07adf+n7Lj/6vrv//v++///////4fjm/2LdhMw/yWoYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQs1pLkzYcuNO2nX/UNp2/8/12P///////////+j57f///////f79/8Ty0P+H5p//Ttp1/07adf9O2nX/Ttp1/9D12/////////////////904ZH/Ttp1/0zYcuNE0WstAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/JahhM2HLjTtp1/07adf+g6rT//////9f24P+M56T/9fz3//////+N56X/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/zfTW////////////3/jm/07adf9O2nX/Ttp1/0zYcuM/yWoYAAAAAAAAAAAAAAAAAAAAAAAAAAAkkUgHS9hyx07adf9O2nX/Wdx8//X89///////heSe//n9+v//////1/bf/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf+/8cz///////////+m7Lj/Ttp1/07adf9O2nX/Ttp1/0vYcsckkUgHAAAAAAAAAAAAAAAAAAAAAEzZc4JO2nX/Ttp1/07adf+K5aL////////////N9Nb////////////E8tD/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/7Duwf///////////4fmoP9O2nX/Ttp1/07adf9O2nX/Ttp1/0zZc4IAAAAAAAAAAAAAAAA/yWoYTNdy9E7adf9O2nX/Ttp1/1zbf//x+/T///////7+/v///////////+T46f9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/2Pbg////////////fOKX/07adf9O2nX/Ttp1/07adf9O2nX/TNdy9D/JahgAAAAAAAAAAErXcZZO2nX/Ttp1/07adf9O2nX/Ttp1/5LoqP///////////////////////////2bfh/9T2nj/ad+I/3Xhkf9+45n/duGS/3rilv/////////////////O9Nf/Wdx8/07adf9O2nX/Ttp1/07adf9O2nX/StdxlgAAAAAqqioGS9hz8U7adf9O2nX/Ttp1/07adf9O2nX/UNp2/+D45v//////////////////////9Pz2//7+/v/////////////////////////////////////////////////q+u//fOKX/07adf9O2nX/Ttp1/07adf9L2HPxKqoqBkfXb0dO2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/juam///////////////////////////////////////////////////////////////////////////////////////9/v3/l+mt/07adf9O2nX/Ttp1/07adf9H129HS9dylU7adf9O2nX/Ttp1/07adf9O2nX/Ttp1/1vbfv/g+Ob////////////////////////////////////////////////////////////////////////////////////////////5/fr/Xd1//1bae/9O2nX/Ttp1/0vXcpVM1nK/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/ufDI///////////////////////////////////////////////////////////////////////////////////////////////////////q+u///v7+/7Pvw/9O2nX/TNZyv0zYc9lO2nX/Ttp1/07adf9Q2nb/Wtx9/1Dadv/f+Ob//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////47mpv9M2HPZTNdz81rcff+m7Lj/3/jm//3+/f//////+v37//v+/P//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////4fjm/0vYcvJu4Iz17Prw//7+/v/m+ev/0/Xb/9X23f/u+/L/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////XdqA9Or67vnL9Nb/Zt+H/07adf9O2nX/Ttp1/07adf9a3H3/l+mt//T89v/////////////////////////////////t+/H/2fbg/+H45//t+vD/+f36//P89v/X9uD/3/jm//////////////////////////////////////924JPg6vrt9VLaeP9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Wdx8/43npf+v7sD/t+/F/63tvf+M56T/Y96E/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf+N56X//////////////////////////////////////3vhlszH89TQTtp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/2rfif//////////////////////////////////////l+its+D35bJO2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1//H78///////0vXb/57qsf964pb/jual/8nz1f/j+uiz+fv5gUvYc/FO2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/m+qv/9j24P9Z3Hz/Ttp1/07adf9O2nX/S9hz8ePz4y4AAAAAStdxlk7adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9K13GWAAAAAAAAAAA/yWoYTNdy9E7adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/TNdy9D/JahgAAAAAAAAAAAAAAABM2XOCTtp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9M2XOCAAAAAAAAAAAAAAAAAAAAACSRSAdL2HLHTtp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/S9hyxySRSAcAAAAAAAAAAAAAAAAAAAAAAAAAAD/JahhM2HLjTtp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/0zYcuM/yWoYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAELNaS5M2HLjTtp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9M2HLjRNFrLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/JahhL2HLHTtp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/S9hyxz/JahgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACSRSAdM2XOCTNdy9E7adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/TNdy9EzZc4IkkUgHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/yWoYStdxlkvYc/FO2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/Ttp1/07adf9O2nX/S9hz8UrXcZY/yWoYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKqoqBkfXb0dL13KVTNZyv0zYc9lM13PzTNdz80zYc9lM1nK/S9dylUfXb0cqqioGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=",
"type": "image/x-icon"
},
"Edición en Castellano": {
"title": "Edición en Castellano",
"caption": "Castellano (España)",
"created": "20160511155557372",
"list-before": "Deutsch (Deutschland) Edition",
"modified": "20160511160224223",
"tags": "Languages",
"type": "text/vnd.tiddlywiki",
"text": "La edición española de ~TiddlyWiki se encuentra aquí:\n\n* ''Documentación'' : https://tiddlywiki.com/languages/es-ES/index.html\n* ''~TiddlyWiki en blanco'' : https://tiddlywiki.com/languages/es-ES/empty.html\n"
},
"Chinese (Simplified) Edition": {
"title": "Chinese (Simplified) Edition",
"caption": "中文 (简体)",
"created": "20140919215640174",
"modified": "20140920030246450",
"tags": "Languages",
"type": "text/vnd.tiddlywiki",
"text": "TiddlyWiki 的简体中文翻译版本:\n\n<!-- * ''文件'': https://tiddlywiki.com/languages/zh-Hans/index.html -->\n* ''空白版本'': https://tiddlywiki.com/languages/zh-Hans/empty.html\n\n另请参阅 [[中文 (正體) 版|Chinese (Traditional) Edition]]。\n"
},
"Chinese (Traditional) Edition": {
"title": "Chinese (Traditional) Edition",
"caption": "中文 (正體)",
"created": "20140919215743298",
"modified": "20140920030246450",
"tags": "Languages",
"type": "text/vnd.tiddlywiki",
"text": "TiddlyWiki 的正體中文翻譯版本:\n\n<!-- * ''文件'': https://tiddlywiki.com/languages/zh-Hant/index.html -->\n* ''空白版本'': https://tiddlywiki.com/languages/zh-Hant/empty.html\n\n另請參閱 [[中文 (简体) 版|Chinese (Simplified) Edition]]。\n"
},
"Édition en Français (France)": {
"title": "Édition en Français (France)",
"created": "20140919215540827",
"modified": "20141123162938012",
"tags": "Languages",
"caption": "Français (France)",
"type": "text/vnd.tiddlywiki",
"text": "La traduction en Français (France) de TiddlyWiki démarre ici :\n\n* ''documentation'' : https://tiddlywiki.com/languages/fr-FR/index.html\n* ''empty'' : https://tiddlywiki.com/languages/fr-FR/empty.html\n"
},
"Deutsch (Österreich) Edition": {
"title": "Deutsch (Österreich) Edition",
"created": "20140919214900580",
"modified": "20140919215900428",
"tags": "Languages",
"caption": "Deutsch (Österreich)",
"type": "text/vnd.tiddlywiki",
"text": "Die österreichische Übersetzung von TiddlyWiki ist verfügbar unter:\n\n* ''Dokumentation'': https://tiddlywiki.com/languages/de-AT/index.html\n* ''Leer'': https://tiddlywiki.com/languages/de-AT/empty.html\n\nSiehe auch: [[Deutsch (Deutschland) Edition]].\n"
},
"Deutsch (Deutschland) Edition": {
"title": "Deutsch (Deutschland) Edition",
"created": "20140919215410238",
"modified": "20140919215851101",
"tags": "Languages",
"caption": "Deutsch (Deutschland)",
"type": "text/vnd.tiddlywiki",
"text": "Die deutsche Übersetzung von TiddlyWiki ist verfügbar unter:\n\n* ''Dokumentation'': https://tiddlywiki.com/languages/de-DE/index.html\n* ''Leer'': https://tiddlywiki.com/languages/de-DE/empty.html\n\nSiehe auch: [[Deutsch (Österreich) Edition]].\n"
},
"Korean (Korea Republic) Edition": {
"title": "Korean (Korea Republic) Edition",
"caption": "한국어 (대한민국)",
"created": "20160424113322330",
"modified": "20160424113322330",
"tags": "Languages",
"type": "text/vnd.tiddlywiki",
"text": "티들리위키 한국어 번역은 다음에서 사용할 수 있습니다:\n\n<!--* ''설명문서'' : https://tiddlywiki.com/languages/ko-KR/index.html-->\n* ''빈 위키'' : https://tiddlywiki.com/languages/ko-KR/empty.html\n"
},
"LanguageGallery Example": {
"title": "LanguageGallery Example",
"created": "20151231083708980",
"modified": "20151231084132703",
"tags": "",
"type": "text/vnd.tiddlywiki",
"text": "Here is an example of using the ListWidget and the TranscludeWidget to show a grid of all of Language Icons which are tiddlers [[tagged|Tagging]] <<tag Language>>and <<tag Icon>>\n\n<style>\n.language-gallery img {\nwidth: 5em;\nheight: auto;\nmargin: 0.5em;\n-webkit-box-shadow: 2px 2px 5px rgba(0,0,0,0.2);\n -moz-box-shadow: 2px 2px 5px rgba(0,0,0,0.2);\n box-shadow: 2px 2px 5px rgba(0,0,0,0.2);\n}\n</style>\n<div class=\"language-gallery\">\n<$list filter=\"[all[tiddlers+shadows]tag[Language]tag[Icon]]\">\n<span title=<<currentTiddler>>>\n<$transclude/>\n</span>\n</$list>\n</div>\n"
},
"Languages": {
"title": "Languages",
"created": "20141202125500000",
"modified": "20160617101222113",
"tags": "TableOfContents",
"type": "text/vnd.tiddlywiki",
"text": "!! Language Plugins\n\nThe core TiddlyWiki user interface is available in over 20 languages. You can install language plugins following the instructions [[Installing a plugin from the plugin library]]. You can change the current language using the ''language'' button, found on the \"Tools\" tab in the sidebar.\n\nYou can contribute a new language to the library by learning how to [[translate TiddlyWiki into your language|Translate TiddlyWiki into your language]].\n\n!! Language Editions\n\nFor some languages, there are pre-built editions with additional translated documentation:\n\n<<list-links \"[tag[Languages]]\">>\n"
},
"Copying tiddlers between TiddlyWiki files": {
"title": "Copying tiddlers between TiddlyWiki files",
"created": "20140908131700000",
"modified": "20140919161524603",
"tags": "Learning",
"type": "text/vnd.tiddlywiki",
"text": "You can copy an individual tiddler from one TiddlyWiki file to another by dragging a link to the tiddler from one browser window to another.\n\nIf you want to drag a link, first move it vertically, because horizontal movement is recognized by the browser as text selection.\n"
},
"Introduction to Lists": {
"title": "Introduction to Lists",
"created": "20171212175130471",
"modified": "20171212175139631",
"tags": "Learning",
"type": "text/vnd.tiddlywiki",
"text": "Making lists of items plays a central role in working with TiddlyWiki. The following is a brief run-through of some of the more common techniques.\n\n~TiddlyWiki [[uses|The Extended Listops Filters]] lists [[internally|ListField]] for many purposes so the word can have several meanings. Here we are concerned with displaying sequences of items, but not necessarily presented as a conventional bullet list.\n\n! Manually Typed Lists\n\n!! ~WikiText\n\nWikiText lists are manually typed lists that use a special character to specify what sort of list it is and how it should be displayed.\n\nExamples include bullet lists created with asterisks (*) and numbered lists (#). Behind the scenes, ~WikiText lists are based on the standard `<ul>` and `<li>` HTML elements. For more information see [[Lists in WikiText]].\n\nAn example of a typed list in WikiText:\n\n<<wikitext-example-without-html \"\"\"* Greatest Movies of All Time\n** Casa Blanca\n** Pride and Prejudice and Zombies\"\"\">>\n\n! Generated Lists\n\nLists can be automatically generated with the ListWidget using [[filters|Filters]] in which [[filter operators|Filter Operators]] \nspecify criteria for selecting which tiddlers are desired as output. Shortcut macros are provided for some common types of list.\n\n!! ~ListWidget\n\nThe ListWidget is the most powerful tool for creating lists. It allows the filtered output to be manipulated and styled into forms that may not seem to resemble lists at all, for example tables or complex texts. For more details, see [[ListWidget]].\n\nAn example to show all tiddlers tagged with \"HelloThere\" might look like:\n\n<<wikitext-example-without-html \"\"\"<$list filter=\"[tag[HelloThere]]\"><$view field=\"title\"/><br/></$list>\"\"\">>\n\n<<.tip \"\"\"Even tiddlers themselves are made with the ~ListWidget. The [[ViewTemplate|$:/core/ui/ViewTemplate]] makes use of the ListWidget to fetch all specified templates that are used to show a tiddlers title, tags, text and more.\"\"\">>\n\n!! Filtered transclusion\n\nThe syntax for filtered transclusion `{{{...}}}` takes a filter as input and outputs a linked list of matching titles. You can also apply a [[template|Transclusion with Templates]], for example:\n\n<<wikitext-example-without-html \"\"\"{{{ [tag[HelloThere]] || $:/core/ui/TagTemplate }}}\"\"\">>\n\n!! list-links Macro\n\nThe [[list-links|list-links Macro]] macro gives a preformatted list, typically a bullet list, in a more simplified way than by using the ListWidget. Behind the scenes it really is the ListWidget applying a default template to each list item.\n\n<$macrocall $name=\"wikitext-example-without-html\" src=\"\"\"<<list-links \"[tag[HelloThere]]\">>\"\"\"/>\n\n!Other “list related” features\n\n[[list|ListField]], [[list-before|Order of Tagged Tiddlers]] and [[list-after|Order of Tagged Tiddlers]] are all field names to control the position of tiddlers in a list. [[Fields|TiddlerFields]] are a way to add additional bits of structured information to a tiddler such as date, quantity, category, etc.\n\n[[list|list Operator]] and [[listed|listed Operator]] are //filter operators// to, respectively, select and find titles in lists.\n"
},
"Learning": {
"title": "Learning",
"created": "20140912140047779",
"list": "Videos [[Introduction to filter notation]] [[Sharing a TiddlyWiki on Dropbox]] [[Sharing your tiddlers with others]] [[Copying tiddlers between TiddlyWiki files]] [[Creating SubStories]] [[Editing Tiddlers with Emacs]] [[ImageGallery Example]] [[Making curved text with SVG]] TaskManagementExample [[Adding a Twitter Follow button]] [[Philosophy of Tiddlers]] [[Adopt a Titles Policy]]",
"modified": "20140919161721584",
"tags": "TableOfContents",
"type": "text/vnd.tiddlywiki",
"text": "Learn more about using TiddlyWiki:\n\n<<list-links \"[tag[Learning]]\">>\n\nAlso see the complete [[Reference]], including advanced WikiText, macros, widgets, filters etc.\n"
},
"changecount Macro": {
"title": "changecount Macro",
"created": "20131228162825226",
"modified": "20150221151223000",
"tags": "Macros [[Core Macros]]",
"type": "text/vnd.tiddlywiki",
"caption": "changecount",
"text": "The <<.def changecount>> [[macro|Macros]] returns the number of times the [[current tiddler|Current Tiddler]] has been created, stored or deleted during the current ~TiddlyWiki session.\n\nIf a tiddler is deleted and subsequently recreated, its <<.var changecount>> will go up by two.\n\n!! Parameters\n\n(none)\n\n<<.macro-examples \"changecount\">>\n"
},
"colour Macro": {
"title": "colour Macro",
"created": "20150221154058000",
"modified": "20150221154522000",
"tags": "Macros [[Core Macros]]",
"type": "text/vnd.tiddlywiki",
"caption": "colour",
"text": "The <<.def colour>> (or <<.def color>>) [[macro|Macros]] returns the [[CSS|Cascading Style Sheets]] value of one the colours in the current [[palette|ColourPalettes]].\n\nIf no such entry exists in the current palette, the [[vanilla palette|$:/palettes/Vanilla]] is used instead.\n\n!! Parameters\n\n;name\n: The name of the palette entry, e.g. `page-background`\n\n<<.macro-examples \"colour\">>\n"
},
"contrastcolour Macro": {
"title": "contrastcolour Macro",
"created": "20150221113728000",
"modified": "20150221151338000",
"tags": "Macros [[Core Macros]]",
"type": "text/vnd.tiddlywiki",
"caption": "contrastcolour",
"text": "The <<.def contrastcolour>> [[macro|Macros]] returns whichever of two given [[CSS|Cascading Style Sheets]] colours is deemed to contrast best with another.\n\nAn example can be seen in the [[template tiddler for tag pills|$:/core/ui/TagTemplate]].\n\n!! Parameters\n\n;target\n: The colour to contrast against (typically a background colour)\n;fallbackTarget\n: An alternative colour to contrast against. This is used when <<.param target>> is undefined or not a valid colour\n;colourA\n: The first of the two colours to choose between\n;colourB\n: The second of the two colours to choose between\n"
},
"Core Macros": {
"title": "Core Macros",
"created": "20150220180315000",
"modified": "20150221222052000",
"type": "text/vnd.tiddlywiki",
"text": "The following [[macros|Macros]] are built into ~TiddlyWiki's core:\n\n<<list-links \"[tag[Core Macros]]\">>\n"
},
"csvtiddlers Macro": {
"title": "csvtiddlers Macro",
"created": "20150221115509000",
"modified": "20150221151344000",
"tags": "Macros [[Core Macros]]",
"type": "text/vnd.tiddlywiki",
"caption": "csvtiddlers",
"text": "The <<.def csvtiddlers>> [[macro|Macros]] returns the fields of a [[selection of tiddlers|Title Selection]] in [[CSV|Comma-Separated Values]] form, with one record (row) per tiddler.\n\nAn example can be seen in the [[template tiddler for CSV exports|$:/core/templates/exporters/CsvFile]].\n\n!! Parameters\n\n;filter\n: A [[filter|Filters]] selecting which tiddlers to include\n;format\n: Reserved for future extension. Should be set to `quoted-comma-sep`\n"
},
"datauri Macro": {
"title": "datauri Macro",
"created": "20150221162212000",
"modified": "20150221222838000",
"tags": "Macros [[Core Macros]]",
"type": "text/vnd.tiddlywiki",
"caption": "datauri",
"text": "The <<.def datauri>> [[macro|Macros]] returns a [[data URI|Data URI]] for the content of a tiddler.\n\nIt is often used in [[stylesheet|Cascading Style Sheets]] tiddlers to reference things like inline images and fonts:\n\n> `background: url(<<datauri \"Motovun Jack.jpg\">>);`\n\nThe data URI is automatically [[base64|Base64]]-encoded in the case of a non-text tiddler.\n\n!! Parameters\n\n;title\n: The title of a tiddler, such as an image\n\n<<.macro-examples \"datauri\">>\n"
},
"dumpvariables Macro": {
"title": "dumpvariables Macro",
"created": "20140908104107181",
"modified": "20150221151454000",
"tags": "Macros [[Core Macros]]",
"type": "text/vnd.tiddlywiki",
"caption": "dumpvariables",
"text": "The <<.def dumpvariables>> [[macro|Macros]] returns a table showing the values of all [[variables|Variables]] and [[macros|Macros]] that exist at that position in the [[widget tree|Widgets]].\n\nIt is useful for debugging and exploring ~TiddlyWiki's internals.\n\nPlaceholders are replaced with values in the normal way, but using the default values for all macro parameters.\n\n!! Parameters\n\n(none)\n\n<<.macro-examples \"dumpvariables\">>\n"
},
"jsontiddlers Macro": {
"title": "jsontiddlers Macro",
"created": "20150221152226000",
"modified": "20150221154213000",
"tags": "Macros [[Core Macros]]",
"type": "text/vnd.tiddlywiki",
"caption": "jsontiddlers",
"text": "The <<.def jsontiddlers>> [[macro|Macros]] returns the fields of a [[selection of tiddlers|Title Selection]] in [[JSON|JavaScript Object Notation]] form.\n\nAn example can be seen in the [[template tiddler for JSON exports|$:/core/templates/exporters/JsonFile]].\n\n!! Parameters\n\n;filter\n: A [[filter|Filters]] selecting which tiddlers to include\n"
},
"lingo Macro": {
"title": "lingo Macro",
"created": "20150221154907000",
"modified": "20150221155706000",
"tags": "Macros [[Core Macros]]",
"caption": "lingo",
"text": "The <<.def lingo>> [[macro|Macros]] relates to the translation of ~TiddlyWiki's user interface into other languages. It returns a piece of text in the user's currently selected language.\n\nTranslatable text is supplied by language plugins containing tiddlers with specific titles that start with `$:/language/`.\n\n!! Parameters\n\n;title\n: The title of the shadow tiddler that contains the text. The prefix `$:/language/` is added automatically\n\n<<.macro-examples \"lingo\">>\n"
},
"list-links Macro": {
"title": "list-links Macro",
"caption": "list-links",
"created": "20140917083515996",
"modified": "20190206000000000",
"tags": "Macros [[Core Macros]]",
"type": "text/vnd.tiddlywiki",
"text": "The <<.def list-links>> [[macro|Macros]] returns a formatted list of links to a [[selection of tiddlers|Title Selection]].\n\nIf a tiddler has a <<.field caption>> field, this is shown instead of the tiddler's title. If the caption field is empty, a blank entry is shown.\n\nNote: Each first [[step|Filter Step]] of a [[filter run|Filter Run]] not given any input titles receives the output of <$link to=\"all Operator\">[all[tiddlers]]</$link> as its input. This means all the existing non-[[shadow|ShadowTiddlers]] tiddlers.\n\n!! Parameters\n\n;filter\n: A [[filter|Filters]] selecting which tiddlers to include\n;type\n: An HTML element to use for the overall list element, defaulting to `ul`\n;subtype\n: An HTML element to use for each item in the list, defaulting to `li`\n;class\n: A [[CSS|Cascading Style Sheets]] class for the overall list element\n;emptyMessage\n: Optional wikitext to display if there are no tiddlers with the specified tag\n\n<<.macro-examples \"list-links\">>\n"
},
"makedatauri Macro": {
"title": "makedatauri Macro",
"created": "20131228163141555",
"modified": "20150221223416000",
"tags": "Macros [[Core Macros]]",
"type": "text/vnd.tiddlywiki",
"caption": "makedatauri",
"text": "The <<.def makedatauri>> [[macro|Macros]] takes a piece of text and an associated ContentType, and returns a corresponding [[data URI|Data URI]].\n\n<<.var makedatauri>> is used to implement the <<.mlink datauri>> macro.\n\n!! Parameters\n\n;text\n: The text to be converted to a data URI\n;type\n: The ContentType of the text\n\n<<.macro-examples \"makedatauri\">>\n"
},
"now Macro": {
"title": "now Macro",
"caption": "now",
"created": "20141008141616791",
"modified": "20170630223406157",
"tags": "Macros [[Core Macros]]",
"type": "text/vnd.tiddlywiki",
"text": "The <<.def now>> [[macro|Macros]] returns the current date and time in a specified [[format|DateFormat]].\n\nThe value doesn't update automatically, like a ticking clock. It updates whenever the macro call is rendered, such as when the containing tiddler's display needs to be refreshed for some other reason.\n\n!! Parameters\n\n;format\n: A string specifying the desired [[format|DateFormat]], defaulting to `0hh:0mm, DDth MMM YYYY`\n\n''Note'': The format string `[UTC]YYYY0MM0DD0hh0mm0ssXXX` will return a date string representing the UTC time-stamp as it is used in the ~TiddlyWiki `created` and `modified` time-stamp fields.\n\n\n<<.macro-examples \"now\">>\n"
},
"qualify Macro": {
"title": "qualify Macro",
"created": "20131228164411884",
"modified": "20150221223816000",
"tags": "Macros [[Core Macros]]",
"type": "text/vnd.tiddlywiki",
"caption": "qualify",
"text": "The <<.def qualify>> [[macro|Macros]] is an important part of the StateMechanism.\n\nIt returns a unique string that encodes its position within the [[widget tree|Widgets]], as identified by the stack of transcluded tiddlers that lead to that position.\n\nIt is implemented using the <<.vlink transclusion>> variable.\n\n!! Parameters\n\n;title\n: The prefix for the returned string, normally a tiddler title\n\n<<.macro-examples \"qualify\">>\n"
},
"resolvepath Macro": {
"title": "resolvepath Macro",
"created": "20150203152000000",
"modified": "20150221223858000",
"tags": "Macros [[Core Macros]]",
"type": "text/vnd.tiddlywiki",
"caption": "resolvepath",
"text": "The <<.def resolvepath>> [[macro|Macros]] takes a relative path and an absolute path. It interprets the former relative to the latter, and returns the absolute equivalent of the former.\n\nFolders in the paths are delimited by `/`.\n\nThe special folder name `.` denotes the current folder, and `..` denotes the parent folder.\n\nIf the absolute path indicates a folder, it needs to end with `/`. Anything after the final `/` is treated as an arbitrary filename within the intended path, and is discarded.\n\nIf no absolute path is supplied, the relative path is returned unchanged, except that anything after the final `/` is discarded.\n\nThe return value is a path, but does <<.em not>> end with `/`.\n\n!! Parameters\n\n;source\n: the relative path\n;root\n: the absolute path\n\n<<.macro-examples \"resolvepath\">>\n"
},
"Stylesheet Macros": {
"title": "Stylesheet Macros",
"created": "20150221181835000",
"modified": "20150221223956000",
"tags": "Macros [[Core Macros]]",
"type": "text/vnd.tiddlywiki",
"text": "The following core [[macros|Macros]] make it easy to specify alternative browser-specific properties when constructing a [[stylesheet|Cascading Style Sheets]] tiddler:\n\n;`<<box-shadow shadow>>`\n: for the `x-box-shadow` properties\n;`<<filter filter>>`\n: for the `x-filter` properties\n;`<<transition transition>>`\n: for the `x-transition` properties\n;`<<transform-origin origin>>`\n: for the `x-transition-origin` properties\n;`<<background-linear-gradient gradient>>`\n: for the `x-linear-gradient` values of the `background-image` property\n\nThe following macros are documented separately:\n\n* <<.mlink colour>>\n* <<.mlink datauri>>\n\nAll these macros are defined in the [[$:/core/macros/CSS]] tiddler.\n"
},
"Table-of-Contents Macros": {
"title": "Table-of-Contents Macros",
"created": "20140919155729620",
"modified": "20150221224034000",
"tags": "Macros [[Core Macros]]",
"type": "text/vnd.tiddlywiki",
"text": "~TiddlyWiki provides several macros for generating a tree of tiddler links by analysing [[tags|Tagging]]:\n\n;<<.var toc>>\n: A simple tree\n;<<.var toc-expandable>>\n: A tree in which all the branches can be expanded and collapsed\n;<<.var toc-selective-expandable>>\n: A tree in which the non-empty branches can be expanded and collapsed\n;<<.var toc-tabbed-internal-nav>> and <<.var toc-tabbed-external-nav>>\n: A two-panel browser:\n:* on the left, a selectively expandable tree that behaves like a set of vertical tabs\n:* on the right, the content of whichever tiddler the user selects in the tree\n\nThe difference between the last two has to do with what happens when the user clicks a link in the right-hand panel:\n\n;<<.var toc-tabbed-internal-nav>>\n: The target tiddler appears in the right-hand panel, replacing the tiddler that contained the link\n;<<.var toc-tabbed-external-nav>>\n: The target tiddler appears in the normal way (which depends on the user's configured storyview)\n\n!! Structure\n\nThe top level of the tree consists of the tiddlers that carry a particular tag, known as the <<.def \"root tag\">>. Tiddlers tagged with any of those make up the next level down, and so on.\n\nAt each level, the tiddlers can be [[ordered|Order of Tagged Tiddlers]] by means of the <<.field list>> field of the parent tag tiddler. They can also be ordered by the macro's <<.param sort>> parameter.\n\nThe tree displays the <<.field caption>> field of a tiddler if it has one, or the tiddler's title otherwise.\n\nEach tiddler in the tree is normally displayed as a link. To suppress this, give the tiddler a <<.field toc-link>> field with the the value <<.value no>>. In the [[examples|Table-of-Contents Macros (Examples)]], the SecondThree tiddler is set up like this. Clicking such a tiddler in the tree causes its branch to expand or collapse.\n\nThe table of contents is generated as an HTML ordered list. The `<ol>` elements always have the class `tc-toc`. Expandable trees have the additional class `tc-toc-expandable`. Selectively expandable trees (including those in the two-panel browser) have `tc-toc-selective-expandable`.\n\nTo make a table of contents appear in the sidebar, see [[How to add a new tab to the sidebar]].\n\n!! Parameters\n\n;tag\n: The root tag that identifies the top level of the tree\n;sort\n: An optional extra [[filter step|Filter Step]], e.g. `sort[title]`\n\nThese two parameters are combined into a single [[filter expression|Filter Expression]] like this:\n\n> `[tag[$tag$]$sort$]`\n\n<<.var toc-tabbed-internal-nav>> and <<.var toc-tabbed-external-nav>> take additional parameters:\n\n;selectedTiddler\n: The title of the [[state tiddler|StateMechanism]] for noting the currently selected tiddler, defaulting to `$:/temp/toc/selectedTiddler`. It is recommended that this be a [[system tiddler|SystemTiddlers]]\n;unselectedText\n: The text to display when no tiddler is selected in the tree\n;missingText\n: The text to display if the selected tiddler doesn't exist\n;template\n: Optionally, the title of a tiddler to use as a [[template|TemplateTiddlers]] for transcluding the selected tiddler into the right-hand panel\n\n[[Examples|Table-of-Contents Macros (Examples)]]\n"
},
"tabs Macro": {
"title": "tabs Macro",
"caption": "tabs",
"created": "20131228162203521",
"modified": "20180408084453861",
"tags": "Macros [[Core Macros]]",
"type": "text/vnd.tiddlywiki",
"text": "The <<.def tabs>> [[macro|Macros]] presents a [[selection of tiddlers|Title Selection]] as a set of tabs that the user can switch between.\n\nThe tabs display the <<.field caption>> field of a tiddler if it has one, or the tiddler's title otherwise. If specified, the tabs display the <<.field tooltip>> field of a tiddler as the respective button tooltip.\n\nBy default the tabs are arranged horizontally above the content. To get vertical tabs, set the <<.param class>> parameter to <<.value tc-vertical>>.\n\n!! Parameters\n\n;tabsList\n: A [[filter|Filters]] selecting which tiddlers to include\n;default\n: The title of the tiddler whose tab is to be selected by default\n;state\n: The prefix for the title of a [[state tiddler|StateMechanism]] for noting the currently selected tab, defaulting to `$:/state/tab`. It is recommended that this be a [[system tiddler|SystemTiddlers]]\n;class\n: Additional [[CSS|Cascading Style Sheets]] classes for the generated `div` elements. Multiple classes can be separated with spaces\n;template\n: Optionally, the title of a tiddler to use as a [[template|TemplateTiddlers]] for transcluding the content of the selected tab\n;buttonTemplate\n: Optionally, the title of a tiddler to use as a [[template|TemplateTiddlers]] for transcluding the content of the button for the selected tab\n;retain\n: Optionally, \"yes\" specifies that the content of the tabs should be retained when switching to another tab, avoiding re-rendering it (this can be useful to avoid video or audio sources unexpectedly resetting)\n\nWithin the template, the title of the selected tab is available in the <<.var currentTab>> variable.\n\nThe <<.vlink currentTiddler>> variable is not affected by the <<.var tabs>> macro. This can put you in trouble if the list of tabs includes tiddlers that depend on the value of the <<.vlink currentTiddler>>, for example tiddlers listing children based on its own name. To overcome this problem you can use a [[TemplateTiddler|TemplateTiddlers]] like the following:\n\n```\n<$tiddler tiddler=<<currentTab>>>\n<$transclude mode=\"block\" />\n</$tiddler>\n```\n\n<<.macro-examples \"tabs\">>\n"
},
"tag Macro": {
"title": "tag Macro",
"caption": "tag",
"created": "20141206130540337",
"modified": "20150221224326000",
"tags": "Macros [[Core Macros]]",
"type": "text/vnd.tiddlywiki",
"text": "The <<.def tag>> [[macro|Macros]] generates a tag pill for a specified tag.\n\n!! Parameters\n\n;tag\n: The title of the tag, defaulting to the [[current tiddler|Current Tiddler]]\n\n<<.macro-examples \"tag\">>\n"
},
"timeline Macro": {
"title": "timeline Macro",
"caption": "timeline",
"created": "20150220180357000",
"modified": "20170223033633361",
"tags": "Macros [[Core Macros]]",
"type": "text/vnd.tiddlywiki",
"text": "The <<.def timeline>> [[macro|Macros]] returns a list of tiddlers in reverse chronological order of modification (or some other [[date field|Date Fields]]), grouped by day.\n\n!! Parameters\n\n;limit\n: The maximum number of tiddlers to include, defaulting to 100. But if <<.em any>> tiddlers are included for a particular day, <<.em all>> of the other tiddlers for that day will also be included -- even if this exceeds the limit\n;format\n: A string specifying the desired [[format|DateFormat]], defaulting to `DDth MMM YYYY`\n;subfilter\n: An optional extra [[filter step|Filter Step]], e.g. `tag[MyTag]`\n;dateField\n: The name of the date field to use, defaulting to `modified`\n\nThe tiddlers are selected by means of a [[filter expression|Filter Expression]], into which the <<.param subfilter>> and <<.param limit>> parameters are spliced as follows:\n\n> `[!is[system]$subfilter$has[$dateField$]!sort[$dateField$]limit[$limit$]eachday[$dateField$]]`\n\n<<.macro-examples \"timeline\">>\n"
},
"unusedtitle Macro": {
"title": "unusedtitle Macro",
"caption": "unusedtitle",
"tags": "Macros [[Core Macros]]",
"type": "text/vnd.tiddlywiki",
"text": "The <<.def unusedtitle>> [[macro|Macros]] returns an unused title. Optionally you can provide a base title to generate the new title.\n\nIt uses the same method as the create new tiddler button, a number is appended to the end of the base name.\n\n!! Parameters\n\n;baseName\n: A string specifying the desired base name, defaulting to `New Tiddler`\n\n<<.macro-examples \"unusedtitle\">>\n"
},
"version Macro": {
"title": "version Macro",
"created": "20131228162448664",
"modified": "20150221214134000",
"tags": "Macros [[Core Macros]]",
"type": "text/vnd.tiddlywiki",
"caption": "version",
"text": "The <<.def version>> [[macro|Macros]] returns the current version number of ~TiddlyWiki.\n\n!! Parameters\n\n(none)\n\n<<.macro-examples \"version\">>\n"
},
"colour-picker Macro": {
"title": "colour-picker Macro",
"caption": "colour-picker",
"created": "20160418152741901",
"modified": "20160418154330605",
"tags": "Macros [[Core Macros]]",
"type": "text/vnd.tiddlywiki",
"text": "The <<.def colour-picker>> [[macro|Macros]] displays an interactive colour picker, as can be seen in the core bitmap editor.\n\n!! Parameters\n\n;actions\n: Wikitext for the action widgets that should be executed when the user selects a colour. Within the text, the variable `colour-picker-value` contains the selected colour.\n\n<<.macro-examples \"colour-picker\">>\n"
},
"copy-to-clipboard Macro": {
"title": "copy-to-clipboard Macro",
"caption": "copy-to-clipboard",
"created": "20171216104754967",
"modified": "20171216104941967",
"tags": "Macros [[Core Macros]]",
"type": "text/vnd.tiddlywiki",
"text": "The <<.def copy-to-clipboard>> [[macro|Macros]] displays a button that copies specified text to the clipboard. A notification is displayed if the operation is successful; some browsers do not permit the operation.\n\n!! Parameters\n\n;src\n: The text to be copied to the clipboard\n;class\n: Optional CSS classes to be assigned to the button (defaults to `tc-btn-invisible`)\n;style\n: Optional CSS styles to be assigned to the button\n\n<<.macro-examples \"copy-to-clipboard\">>\n"
},
"Macro Calls in WikiText (Examples)": {
"title": "Macro Calls in WikiText (Examples)",
"created": "20150220182252000",
"modified": "20150221221723000",
"tags": "[[WikiText Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "\\define sayhi-example-1() <<sayhi>>\n\\define sayhi-example-2() <<sayhi Bugs>>\n\\define sayhi-example-3() <<sayhi \"Donald Duck\" Disneyland>>\n\\define sayhi-example-4() <<sayhi \"Mickey Mouse\" \"Mouse House\">>\n\\define sayhi-example-5() <<sayhi name:'Minnie Mouse' address:[[Mouse House]]>>\n\\define sayhi-example-6() <<sayhi address:\"Quacky Towers\" name:\"Donald Duck\">>\n\n\\define sayhi-example-7()\n<<sayhi \"Mickey Mouse\" \"\"\"\"Mouse House\",\nRodent's Lane,\nSqueaksville,\nRatland\"\"\">>\n\\end\n\n<$importvariables filter=\"$:/editions/tw5.com/macro-examples/say-hi\">\n<$codeblock code={{$:/editions/tw5.com/macro-examples/say-hi}}/>\n<$macrocall $name=\".example\" n=\"1\" eg=<<sayhi-example-1>>/>\n<$macrocall $name=\".example\" n=\"2\" eg=<<sayhi-example-2>>/>\n<$macrocall $name=\".example\" n=\"3\" eg=<<sayhi-example-3>>/>\n<$macrocall $name=\".example\" n=\"4\" eg=<<sayhi-example-4>>/>\n<$macrocall $name=\".example\" n=\"5\" eg=<<sayhi-example-5>>/>\n<$macrocall $name=\".example\" n=\"6\" eg=<<sayhi-example-6>>/>\n<$macrocall $name=\".example\" n=\"7\" egvar=\"sayhi-example-7\"/>\n</$importvariables>\n"
},
"changecount Macro (Examples)": {
"title": "changecount Macro (Examples)",
"created": "20150221151206000",
"modified": "20150221151227000",
"tags": "[[changecount Macro]] [[Macro Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<$macrocall $name=\".example\" n=\"1\" eg=\"\"\"<<changecount>>\"\"\"/>\n\nThe value will increase if you edit this tiddler and store it again, even without making any changes to its content.\n\nTo access the <<.var changecount>> of a different tiddler, use a <<.wlink TiddlerWidget>> widget:\n\n<$macrocall $name=\".example\" n=\"2\"\neg=\"\"\"<$tiddler tiddler=\"Draft of 'New Tiddler'\">\n<<changecount>>\n</$tiddler>\"\"\"/>\n\nThe value shown will increase whenever you create, store or delete [[New Tiddler]].\n"
},
"colour-picker Macro (Example 1)": {
"title": "colour-picker Macro (Example 1)",
"created": "20160418154853776",
"modified": "20160418155450547",
"tags": "",
"type": "text/vnd.tiddlywiki",
"text": "Colour: <$edit-text tiddler='$:/_MyColour' tag='input' placeholder='(unset)' default=''/>\n\n---\n\n<$macrocall $name='colour-picker' actions=\"\n\n<$action-setfield $tiddler='$:/_MyColour' $value=<<colour-picker-value>>/>\n\n\"/>"
},
"colour-picker Macro (Examples)": {
"title": "colour-picker Macro (Examples)",
"created": "20160418152735536",
"modified": "20160418155324847",
"tags": "[[colour-picker Macro]] [[Macro Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<$macrocall $name=\".example\" n=\"1\" eg={{colour-picker Macro (Example 1)}}/>\n"
},
"colour Macro (Examples)": {
"title": "colour Macro (Examples)",
"created": "20150221154356000",
"modified": "20150221154803000",
"tags": "[[colour Macro]] [[Macro Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<$macrocall $name=\".example\" n=\"1\" eg=\"\"\"<<colour code-border>>\"\"\"/>\n<$macrocall $name=\".example\" n=\"2\" eg=\"\"\"<<colour foreground>>\"\"\"/>\n<$macrocall $name=\".example\" n=\"3\" eg=\"\"\"<<colour page-background>>\"\"\"/>\n<$macrocall $name=\".example\" n=\"4\" eg=\"\"\"<<colour sidebar-tab-background>>\"\"\"/>\n<$macrocall $name=\".example\" n=\"5\" eg=\"\"\"<<colour tag-foreground>>\"\"\"/>\n"
},
"copy-to-clipboard Macro (Examples)": {
"title": "copy-to-clipboard Macro (Examples)",
"created": "20171216104946277",
"modified": "20171216105109641",
"tags": "[[copy-to-clipboard Macro]] [[Macro Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<$macrocall $name=\".example\" n=\"1\" eg=\"\"\"<<copy-to-clipboard \"Mary had a little lamb\">>\"\"\"/>\n<$macrocall $name=\".example\" n=\"2\" eg=\"\"\"<$macrocall $name=\"copy-to-clipboard\" src={{$:/SiteTitle}}/>\"\"\"/>\n"
},
"datauri Macro (Examples)": {
"title": "datauri Macro (Examples)",
"created": "20150221160534000",
"modified": "20150221223524000",
"tags": "[[datauri Macro]] [[Macro Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<$macrocall $name=\".example\" n=\"2\"\neg=\"\"\"<style>\n.jack {\n\tbackground: url(<$macrocall $name=\"datauri\" title=\"Motovun Jack.jpg\" $output=\"text/plain\"/>);\n\theight: 300px;\n}\n</style>\n\n<div class=\"jack\"/>\"\"\"/>\n\nThe example has to invoke <<.var datauri>> through the <<.wid macrocall>> widget. It needs to prevent the macro's output from being parsed as WikiText, as that would transform the data URI into a <<.wlink LinkWidget>> widget and break the example. If the example was in a CSS tiddler, you could simply write:\n\n> `background: url(<<datauri \"Motovun Jack.jpg\">>);`\n"
},
"dumpvariables Macro (Examples)": {
"title": "dumpvariables Macro (Examples)",
"created": "20150221151358000",
"modified": "20150221151415000",
"tags": "[[dumpvariables Macro]] [[Macro Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<$macrocall $name=\".example\" n=\"1\"\neg=\"\"\"<$set name=\"EXAMPLE\" value=\"123.$(EXAMPLE2)$.789\">\n<$set name=\"EXAMPLE2\" value=\"456\">\n\n<<dumpvariables>>\n\n</$set>\n</$set>\"\"\"/>\n"
},
"image-picker Macro (Example 1)": {
"title": "image-picker Macro (Example 1)",
"created": "20160418155523369",
"modified": "20160418155913663",
"tags": "",
"type": "text/vnd.tiddlywiki",
"text": "Image: <$edit-text tiddler='$:/_MyImage' tag='input' placeholder='(unset)' default=''/>\n\n<$transclude tiddler={{$:/_MyImage}}/>\n\n---\n\n<$macrocall $name='image-picker' actions=\"\n\n<$action-setfield $tiddler='$:/_MyImage' $value=<<imageTitle>>/>\n\n\"/>"
},
"image-picker Macro (Example 2)": {
"title": "image-picker Macro (Example 2)",
"created": "20160418155523369",
"modified": "20160418155913663",
"tags": "",
"type": "text/vnd.tiddlywiki",
"text": "Image: <$edit-text tiddler='$:/_MyImage' tag='input' placeholder='(unset)' default=''/>\n\n<$transclude tiddler={{$:/_MyImage}}/>\n\n---\n\n<$macrocall $name='image-picker' actions=\"\n\n<$action-setfield $tiddler='$:/_MyImage' $value=<<imageTitle>>/>\n\n\" subfilter=\"prefix[Language]\"/>\n"
},
"image-picker Macro (Examples)": {
"title": "image-picker Macro (Examples)",
"created": "20160418155539132",
"modified": "20160418155621890",
"tags": "[[image-picker Macro]] [[Macro Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<$macrocall $name=\".example\" n=\"1\" eg={{image-picker Macro (Example 1)}}/>\n\nThis next example shows how the <<.param subfilter>> parameter limits the list of images (here to those with the \"Language\" prefix):\n\n<$macrocall $name=\".example\" n=\"2\" eg={{image-picker Macro (Example 2)}}/>\n"
},
"lingo Macro (Examples)": {
"title": "lingo Macro (Examples)",
"created": "20150221151358000",
"modified": "20150221160113000",
"tags": "[[lingo Macro]] [[Macro Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "This example shows the text used as the basis for the title of a newly created tiddler:\n\n<$macrocall $name=\".example\" n=\"1\" eg=\"\"\"<<lingo DefaultNewTiddlerTitle>>\"\"\"/>\n\nThis example shows the name of the eighth month of the year, for use in [[formatting dates|DateFormat]]:\n\n<$macrocall $name=\".example\" n=\"2\" eg=\"\"\"<<lingo Date/Long/Month/8>>\"\"\"/>\n"
},
"list-links-draggable Macro (Examples)": {
"title": "list-links-draggable Macro (Examples)",
"created": "20170328211011767",
"modified": "20170328211211799",
"tags": "[[list-links-draggable Macro]] [[Macro Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<$macrocall $name=\".example\" n=\"1\" eg=\"\"\"<<list-links-draggable tiddler:\"Days of the Week\">>\"\"\"/>\n"
},
"list-links Macro (Examples)": {
"title": "list-links Macro (Examples)",
"created": "20150221160534000",
"modified": "20150221160748000",
"tags": "[[list-links Macro]] [[Macro Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "This example lists all the tiddlers whose titles start with J:\n\n<$macrocall $name=\".example\" n=\"1\" eg=\"\"\"<<list-links filter:\"[prefix[J]]\">>\"\"\"/>\n\nThis example lists the documentation tiddlers for the core macros, each of which has a <<.field caption>> field:\n\n<$macrocall $name=\".example\" n=\"2\" eg=\"\"\"<<list-links filter:\"[tag[Core Macros]]\">>\"\"\"/>\n"
},
"list-tagged-draggable Macro (Examples)": {
"title": "list-tagged-draggable Macro (Examples)",
"created": "20170329093300835",
"modified": "20170329093346982",
"tags": "[[list-tagged-draggable Macro]] [[Macro Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<$macrocall $name=\".example\" n=\"1\" eg=\"\"\"<<list-tagged-draggable tag:\"Features\">>\"\"\"/>\n"
},
"makedatauri Macro (Examples)": {
"title": "makedatauri Macro (Examples)",
"created": "20150221160534000",
"modified": "20150221223613000",
"tags": "[[makedatauri Macro]] [[Macro Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<$macrocall $name=\".example\" n=\"1\" eg=\"\"\"<<makedatauri \"some example text\" \"text/plain\">>\"\"\"/>\n"
},
"now Macro (Examples)": {
"title": "now Macro (Examples)",
"created": "20150221151358000",
"modified": "20150221170425000",
"tags": "[[now Macro]] [[Macro Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<$macrocall $name=\".example\" n=\"1\" eg=\"\"\"<<now>>\"\"\"/>\n<$macrocall $name=\".example\" n=\"2\" eg=\"\"\"<<now YYYY-0MM-0DD>>\"\"\"/>\n<$macrocall $name=\".example\" n=\"3\" eg=\"\"\"<<now \"hh:0mm:0sspm\">>\"\"\"/>\n"
},
"$:/editions/tw5.com/macro-examples/qualify-transcluded": {
"title": "$:/editions/tw5.com/macro-examples/qualify-transcluded",
"created": "20150221171233000",
"modified": "20150221172546000",
"tags": "[[qualify Macro]] [[Macro Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<$macrocall $name=\".example\" n=\"1\"\neg=\"\"\"<ul>\n<li><code><<qualify \"BaseTiddler\">></code></li>\n<li><code><<transclusion>></code></li>\n</ul>\"\"\"/>\n"
},
"qualify Macro (Examples)": {
"title": "qualify Macro (Examples)",
"created": "20150221172527000",
"tags": "[[qualify Macro]] [[Macro Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "The results returned by the <<.mlink qualify>> macro depend on its location in the transclusion stack.\n\nThe two examples below are identical, but produce different results because the second one has been transcluded from [[another tiddler|$:/editions/tw5.com/macro-examples/qualify-transcluded]].\n\nEach example shows the result of calling <<.var qualify>> and then the value of the <<.vlink transclusion>> variable.\n\n<$macrocall $name=\".example\" n=\"1\"\neg=\"\"\"<ul>\n<li><code><<qualify \"BaseTiddler\">></code></li>\n<li><code><<transclusion>></code></li>\n</ul>\"\"\"/>\n\n<blockquote>\n{{$:/editions/tw5.com/macro-examples/qualify-transcluded}}\n</blockquote>\n"
},
"resolvepath Macro (Examples)": {
"title": "resolvepath Macro (Examples)",
"created": "20150221182731000",
"modified": "20150221183441000",
"tags": "[[resolvepath Macro]] [[Macro Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<$macrocall $name=\".example\" n=\"1\" eg=\"\"\"<<resolvepath \"./backup\" \"http://example.com/store.php\">>\"\"\"/>\n<$macrocall $name=\".example\" n=\"2\" eg=\"\"\"<<resolvepath \"backup\" \"http://example.com/store.php\">>\"\"\"/>\n<$macrocall $name=\".example\" n=\"3\" eg=\"\"\"<<resolvepath \"../backup\" \"http://example.com/store.php\">>\"\"\"/>\n<$macrocall $name=\".example\" n=\"4\" eg=\"\"\"<<resolvepath \"../jpg/Motovun_Jack.jpg\" \"http://example.com/resources/images/png/\">>\"\"\"/>\n<$macrocall $name=\".example\" n=\"5\" eg=\"\"\"<<resolvepath \"../jpg/../png/Motovun_Jack.png\">>\"\"\"/>\n<$macrocall $name=\".example\" n=\"6\" eg=\"\"\"<<resolvepath \"jpg/Motovun_Jack.jpg\">>\"\"\"/>\n"
},
"tabs Macro (Examples)": {
"title": "tabs Macro (Examples)",
"created": "20150221211317000",
"modified": "20150221211719000",
"tags": "[[tabs Macro]] [[Macro Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<$macrocall $name=\".example\" n=\"1\"\neg=\"\"\"<<tabs \"SampleTabOne SampleTabTwo SampleTabThree SampleTabFour\" \"SampleTabOne\" \"$:/state/tab1\">>\"\"\"/>\n\n<$macrocall $name=\".example\" n=\"2\"\neg=\"\"\"<<tabs \"[tag[sampletab]]\" \"SampleTabTwo\" \"$:/state/tab2\" \"tc-vertical\">>\"\"\"/>\n\n<$macrocall $name=\".example\" n=\"3\"\neg=\"\"\"<<tabs \"[tag[sampletab]nsort[order]]\" \"SampleTabThree\" \"$:/state/tab3\" \"tc-vertical\">>\"\"\"/>\n"
},
"tag Macro (Examples)": {
"title": "tag Macro (Examples)",
"created": "20150221211317000",
"modified": "20150221224519000",
"tags": "[[tag Macro]] [[Macro Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<$macrocall $name=\".example\" n=\"1\" eg=\"\"\"<<tag>>\"\"\"/>\n<$macrocall $name=\".example\" n=\"2\" eg=\"\"\"<<tag Concepts>>\"\"\"/>\n"
},
"thumbnail Macro (Examples)": {
"title": "thumbnail Macro (Examples)",
"created": "20150325171700344",
"modified": "20150325172147259",
"tags": "[[thumbnail Macro]] [[Macro Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "\n! Examples\n\nHere is an example of the `thumbnail-right` macro used to create a video thumbnail that floats to the right of the text\n\n<$macrocall $name=\".example\" n=\"1\" eg=\"\"\"<<thumbnail-right link:\"Introduction Video\" image:\"Introduction Video Thumbnail.jpg\" caption:\"Introduction to ~TiddlyWiki\" icon:\"{{$:/core/images/video}}\" color:\"red\">>\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"\"\"/>\n"
},
"timeline Macro (Examples)": {
"title": "timeline Macro (Examples)",
"created": "20150221213650000",
"modified": "20150221224634000",
"tags": "[[timeline Macro]] [[Macro Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<$macrocall $name=\".example\" n=\"1\" eg=\"\"\"<<timeline format:\"DD/MM/YYYY\">>\"\"\"/>\n<$macrocall $name=\".example\" n=\"2\" eg=\"\"\"<<timeline limit:30 subfilter:\"tag[Definitions]\" format:\"DD/MM/YYYY\">>\"\"\"/>\n"
},
"Table-of-Contents Macros (Examples)": {
"title": "Table-of-Contents Macros (Examples)",
"created": "20150221193056000",
"modified": "20181106221404624",
"tags": "[[Table-of-Contents Macros]] [[Macro Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "These examples derive tables of contents from the root tag <<.tag Contents>>. See [[Table-of-Contents Macros]] for details on how to use the Table-of-Contents Macros to make your own structured table-of-contents.\n\nYou can explore the same structure with these clickable tag pills:\n\n* {{Contents||$:/core/ui/TagTemplate}}\n** {{First||$:/core/ui/TagTemplate}}\n** {{Second||$:/core/ui/TagTemplate}}\n*** {{SecondThree||$:/core/ui/TagTemplate}}\n** {{Third||$:/core/ui/TagTemplate}}\n** {{Fourth||$:/core/ui/TagTemplate}}\n\nThe tabbed example uses the real TableOfContents of this documentation instead.\n\n<<tabs \"[tag[table-of-contents-example]nsort[order]]\" \"Example Table of Contents: Simple\">>\n"
},
"tree Macro (Examples)": {
"title": "tree Macro (Examples)",
"created": "20170628164706364",
"modified": "20170628164823552",
"tags": "[[tree Macro]] [[Macro Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<$macrocall $name=\".example\" n=\"1\"\neg=\"\"\"<<tree prefix:\"$:/\">>\"\"\"/>\n\n<$macrocall $name=\".example\" n=\"2\"\neg=\"\"\"<<tree prefix:\"tree-macro-example-\" separator:\"-\">>\"\"\"/>\n"
},
"tree-macro-example-house": {
"title": "tree-macro-example-house",
"tag": "[[tree Macro (Examples)]]",
"text": "See [[tree Macro (Examples)]]"
},
"tree-macro-example-house-kitchen": {
"title": "tree-macro-example-house-kitchen",
"tag": "[[tree Macro (Examples)]]",
"text": "See [[tree Macro (Examples)]]"
},
"tree-macro-example-house-kitchen-table": {
"title": "tree-macro-example-house-kitchen-table",
"tag": "[[tree Macro (Examples)]]",
"text": "See [[tree Macro (Examples)]]"
},
"tree-macro-example-house-kitchen-sink": {
"title": "tree-macro-example-house-kitchen-sink",
"tag": "[[tree Macro (Examples)]]",
"text": "See [[tree Macro (Examples)]]"
},
"tree-macro-example-house-kitchen-window": {
"title": "tree-macro-example-house-kitchen-window",
"tag": "[[tree Macro (Examples)]]",
"text": "See [[tree Macro (Examples)]]"
},
"tree-macro-example-house-attic": {
"title": "tree-macro-example-house-attic",
"tag": "[[tree Macro (Examples)]]",
"text": "See [[tree Macro (Examples)]]"
},
"tree-macro-example-house-attic-window": {
"title": "tree-macro-example-house-attic-window",
"tag": "[[tree Macro (Examples)]]",
"text": "See [[tree Macro (Examples)]]"
},
"tree-macro-example-house-attic-roof": {
"title": "tree-macro-example-house-attic-roof",
"tag": "[[tree Macro (Examples)]]",
"text": "See [[tree Macro (Examples)]]"
},
"tree-macro-example-house-garden": {
"title": "tree-macro-example-house-garden",
"tag": "[[tree Macro (Examples)]]",
"text": "See [[tree Macro (Examples)]]"
},
"tree-macro-example-house-garden-shed": {
"title": "tree-macro-example-house-garden-shed",
"tag": "[[tree Macro (Examples)]]",
"text": "See [[tree Macro (Examples)]]"
},
"tree-macro-example-house-garden-lawn": {
"title": "tree-macro-example-house-garden-lawn",
"tag": "[[tree Macro (Examples)]]",
"text": "See [[tree Macro (Examples)]]"
},
"tree-macro-example-car": {
"title": "tree-macro-example-car",
"tag": "[[tree Macro (Examples)]]",
"text": "See [[tree Macro (Examples)]]"
},
"tree-macro-example-car-boot": {
"title": "tree-macro-example-car-boot",
"tag": "[[tree Macro (Examples)]]",
"text": "See [[tree Macro (Examples)]]"
},
"tree-macro-example-car-boot-lock": {
"title": "tree-macro-example-car-boot-lock",
"tag": "[[tree Macro (Examples)]]",
"text": "See [[tree Macro (Examples)]]"
},
"tree-macro-example-car-boot-handle": {
"title": "tree-macro-example-car-boot-handle",
"tag": "[[tree Macro (Examples)]]",
"text": "See [[tree Macro (Examples)]]"
},
"tree-macro-example-car-roof": {
"title": "tree-macro-example-car-roof",
"tag": "[[tree Macro (Examples)]]",
"text": "See [[tree Macro (Examples)]]"
},
"tree-macro-example-car-roof-rails": {
"title": "tree-macro-example-car-roof-rails",
"tag": "[[tree Macro (Examples)]]",
"text": "See [[tree Macro (Examples)]]"
},
"tree-macro-example-car-roof-aerial": {
"title": "tree-macro-example-car-roof-aerial",
"tag": "[[tree Macro (Examples)]]",
"text": "See [[tree Macro (Examples)]]"
},
"unusedtitle Macro (Examples)": {
"title": "unusedtitle Macro (Examples)",
"tags": "[[unusedtitle Macro]] [[Macro Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<$macrocall $name=\".example\" n=\"1\" eg=\"\"\"<<unusedtitle>>\"\"\"/>\n<$macrocall $name=\".example\" n=\"2\" eg=\"\"\"<<unusedtitle AnotherBase>>\"\"\"/>\n<$macrocall $name=\".example\" n=\"3\" eg=\"\"\"<<unusedtitle TiddlyWiki>>\"\"\"/>\n"
},
"version Macro (Examples)": {
"title": "version Macro (Examples)",
"created": "20150221214110000",
"modified": "20150221214129000",
"tags": "[[version Macro]] [[Macro Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<$macrocall $name=\".example\" n=\"1\" eg=\"\"\"Version number: <<version>>\"\"\"/>\n"
},
"image-picker Macro": {
"title": "image-picker Macro",
"caption": "image-picker",
"created": "20160418155531395",
"modified": "20160418155805435",
"tags": "Macros [[Core Macros]]",
"type": "text/vnd.tiddlywiki",
"text": "The <<.def image-picker>> [[macro|Macros]] displays an interactive image picker, as can be seen in the core text editor.\n\n!! Parameters\n\n;actions\n: Wikitext for the action widgets that should be executed when the user selects an image. Within the text, the variable `imageTitle` contains the title of the tiddler containing the selected image.\n;subfilter\n: An optional extra [[filter step|Filter Step]], e.g. `tag[MyTag]`\n\nThe images are selected by means of a [[filter expression|Filter Expression]], into which the <<.param subfilter>> parameter is spliced as follows:\n\n> `[all[shadows+tiddlers]is[image]$subfilter$!has[draft.of]] -[type[application/pdf]] +[sort[title]]`\n\n<<.macro-examples \"image-picker\">>\n"
},
"$:/editions/tw5.com/macro-examples/say-hi-using-variables": {
"title": "$:/editions/tw5.com/macro-examples/say-hi-using-variables",
"created": "20150221145447000",
"modified": "20150221145626000",
"type": "text/vnd.tiddlywiki",
"text": "\\define say-hi-using-variables()\nHi, I'm $(name)$ and I live in $(address)$.\n\\end\n\n\\define name() Bugs\n"
},
"$:/editions/tw5.com/macro-examples/say-hi": {
"title": "$:/editions/tw5.com/macro-examples/say-hi",
"created": "20150221145803000",
"modified": "20150221221536000",
"type": "text/vnd.tiddlywiki",
"text": "\\define sayhi(name:\"Bugs Bunny\" address:\"Rabbit Hole Hill\")\nHi, I'm $name$ and I live in $address$.\n\\end\n"
},
"$:/editions/tw5.com/macro-examples/tags-of-current-tiddler": {
"title": "$:/editions/tw5.com/macro-examples/tags-of-current-tiddler",
"created": "20150221145803000",
"type": "text/vnd.tiddlywiki",
"text": "\\define tags-of-current-tiddler() {{!!tags}}\n"
},
"$:/editions/tw5.com/macro-examples/tv-get-export-image-link": {
"title": "$:/editions/tw5.com/macro-examples/tv-get-export-image-link",
"created": "20150228123855000",
"modified": "20150228123921000",
"type": "text/vnd.tiddlywiki",
"text": "\\define tv-get-export-image-link(src) https://www.tiddlywiki.com/$src$\n"
},
"$:/editions/tw5.com/macro-examples/tv-wikilink-tooltip": {
"title": "$:/editions/tw5.com/macro-examples/tv-wikilink-tooltip",
"created": "20150228120252000",
"modified": "20150228120554000",
"type": "text/vnd.tiddlywiki",
"text": "\\define tv-wikilink-tooltip()\n<$transclude field=\"tooltip\">(<$transclude field=\"caption\"/>)</$transclude>\n\\end\n"
},
"jsontiddler Macro": {
"title": "jsontiddler Macro",
"caption": "jsontiddler",
"created": "20170317140130417",
"modified": "20170317140226040",
"tags": "Macros [[Core Macros]]",
"type": "text/vnd.tiddlywiki",
"text": "The <<.def jsontiddler>> [[macro|Macros]] returns the fields of a single tiddler in [[JSON|JavaScript Object Notation]] form.\n\n!! Parameters\n\n;title\n: The title of a tiddler\n"
},
"list-links-draggable Macro": {
"title": "list-links-draggable Macro",
"caption": "list-links-draggable",
"created": "20170328204925306",
"modified": "20170329093008550",
"tags": "Macros [[Core Macros]]",
"type": "text/vnd.tiddlywiki",
"text": "The <<.def list-links-draggable>> [[macro|Macros]] renders the ListField of a tiddler as a list of links that can be reordered via [[drag and drop|Drag and Drop]].\n\n!! Parameters\n\n;tiddler\n: The title of the tiddler containing the list\n;field\n: The name of the field containing the list (defaults to `list`)\n;type\n: The element tag to use for the list wrapper (defaults to `ul`)\n;subtype\n: The element tag to use for the list items (defaults to `li`)\n;class\n: Optional space separated classes to add to the wrapper element\n;itemTemplate\n: Optional title of a tiddler to use as the template for rendering list items\n\nIf the `itemTemplate` parameter is not provided then the list items are rendered as simple links. Within the `itemTemplate`, the [[currentTiddler Variable]] refers to the current list item.\n\n<<.macro-examples \"list-links-draggable\">>\n"
},
"list-tagged-draggable Macro": {
"title": "list-tagged-draggable Macro",
"caption": "list-tagged-draggable",
"created": "20170329092723939",
"modified": "20180109171254045",
"tags": "Macros [[Core Macros]]",
"type": "text/vnd.tiddlywiki",
"text": "The <<.def list-tagged-draggable>> [[macro|Macros]] renders the tiddlers with a particular tag as a list of links that can be reordered via [[drag and drop|Drag and Drop]].\n\n!! Parameters\n\n;tag\n: The title of the tag\n;subFilter\n: An optional subfilter to filter out unwanted items (eg `!tag[done]`)\n;itemTemplate\n: Optional title of a tiddler to use as the template for rendering list items\n;emptyMessage\n: Optional wikitext to display if there are no tiddlers with the specified tag\n\nNote that the [[ordering|Order of Tagged Tiddlers]] is accomplished by assigning a new list to the `list` field of the tag tiddler. Any `list-before` or `list-after` fields on any of the other tiddlers carrying the tag are also removed to ensure the `list` field is respected.\n\nIf the `itemTemplate` parameter is not provided then the list items are rendered as simple links. Within the `itemTemplate`, the [[currentTiddler Variable]] refers to the current list item.\n\n<<.macro-examples \"list-tagged-draggable\">>\n"
},
"Macro Call Syntax": {
"title": "Macro Call Syntax",
"created": "20150221105732000",
"modified": "20150221222352000",
"tags": "[[Macro Syntax]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.preamble \"\"\"What follows is a formal presentation of the syntax of the WikiText syntax for macro calls, using [[railroad diagrams|Railroad Diagrams]]. A [[simpler overview|Macro Calls in WikiText]] is also available.\"\"\">>\n\n<$railroad text=\"\"\"\n\"<<\" name [: space [:{param-value}] ]\">>\"\n\"\"\"/>\n\n<<.place space>> denotes a sequence of [[whitespace characters|Filter Whitespace]].\n\nThe [[macro|Macros]]'s <<.place name>> is a sequence of non-whitespace characters other than `(` or `>`.\n\nEach individual <<.place param-value>> has the following syntax:\n\n<$railroad text=\"\"\"\n[: param-name [:space] \":\" [:space] ] value [: space]\n\"\"\"/>\n\nThe <<.place param-name>> is a sequence of letters (`A`--`Z`, `a`--`z`), digits (`0`--`9`), hyphens (`-`) and underscores (`_`).\n\nThe <<.place value>> is specified as follows:\n\n<$railroad text={{$:/editions/tw5.com/railroad/macro-parameter-value}}/>\n"
},
"Macro Definition Syntax": {
"title": "Macro Definition Syntax",
"created": "20150220200255000",
"modified": "20150221222349000",
"tags": "[[Macro Syntax]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.preamble \"\"\"What follows is a formal presentation of the syntax of the `\\define` pragma, using [[railroad diagrams|Railroad Diagrams]]. A [[simpler overview|Macro Definitions in WikiText]] is also available.\"\"\">>\n\n<$railroad text=\"\"\"\n\"\\define\" space name params [:space] rest\n\"\"\"/>\n\n<<.place space>> denotes a sequence of [[whitespace characters|Filter Whitespace]].\n\nThe [[macro|Macros]]'s <<.place name>> is a sequence of non-whitespace characters other than `(` or `>`.\n\nThe parameter declaration list (<<.place params>>) has the following syntax:\n\n<$railroad text=\"\"\"\n\"(\" [:sep] [:{ param sep }] \")\"\n\"\"\"/>\n\nThe parameter separator (<<.place sep>>) is any sequence of characters that does not match a <<.place param-name>>. Among other things, this includes commas, spaces and linefeeds.\n\nA <<.place param-name>> is a sequence of letters (`A`--`Z`, `a`--`z`), digits (`0`--`9`), hyphens (`-`) and underscores (`_`).\n\nEach individual <<.place param>> has the following syntax:\n\n<$railroad text=\"\"\"\nparam-name [: [:space] \":\" [:space] default ]\n\")\"\n\"\"\"/>\n\nThe optional <<.place default>> value of a parameter is specified as follows:\n\n<$railroad text={{$:/editions/tw5.com/railroad/macro-parameter-value}}/>\n\nThe <<.place rest>> of the definition has the following syntax:\n\n<$railroad text=\"\"\"\n( snippet | lf snippet lf \"\\end\" [:space] ) lf\n\"\"\"/>\n\n<<.place lf>> denotes a linefeed.\n\nThe <<.place snippet>> is any sequence of characters that doesn't terminate the macro definition. That is to say, a single-line snippet cannot contain a linefeed, and a multi-line snippet cannot contain `\\end` on a line of its own.\n\nThe snippet can contain placeholders with the following syntax:\n\n<$railroad text=\"\"\"\n( \"$\" name \"$\" | \"$\" \"(\" name \")\" \"$\" )\n\"\"\"/>\n"
},
"Macro Syntax": {
"title": "Macro Syntax",
"created": "20150221222254000",
"modified": "20150227193157000",
"tags": "Macros",
"text": "<<list-links filter:\"[tag[Macro Syntax]]\">>\n"
},
"$:/editions/tw5.com/railroad/macro-parameter-value": {
"title": "$:/editions/tw5.com/railroad/macro-parameter-value",
"created": "20150220191009000",
"modified": "20150221111554000",
"type": "text/vnd.tiddlywiki.railroad",
"text": "( '\"\"\"' [:{/'anything but \"\"\"'/}] '\"\"\"'\n| '\"' [:{/'anything but \"'/}] '\"'\n| \"'\" [:{/\"anything but '\"/}] \"'\"\n| \"[[\" [:{/\"anything but ]\"/}] \"]]\"\n| {/\"\"\"anything but ' \" or whitespace\"\"\"/}\n)\n"
},
"tag-picker Macro": {
"title": "tag-picker Macro",
"caption": "tag-picker",
"created": "20161128191316701",
"modified": "20161128191435641",
"tags": "Macros [[Core Macros]]",
"type": "text/vnd.tiddlywiki",
"text": "The <<.def tag-picker>> [[macro|Macros]] generates a combination of a text box and a button that allows a tag to be selected and added.\n\n!! Parameters\n\n;actions\n: Action widgets to be triggered when the pill is clicked. Within the text, the variable ''tag'' contains the title of the selected tag.\n\n<<.macro-examples \"tag-picker\">>\n"
},
"tag-pill Macro": {
"title": "tag-pill Macro",
"caption": "tag-pill",
"created": "20161128190930538",
"modified": "20161128191220364",
"tags": "Macros [[Core Macros]]",
"type": "text/vnd.tiddlywiki",
"text": "The <<.def tag-pill>> [[macro|Macros]] generates a static tag pill showing a specified tag, but without the dropdown action provided by the [[tag Macro]].\n\n!! Parameters\n\n;tag\n: The title of the tag\n;element-tag\n: The element name to be used for the pill (defaults to \"span\")\n;element-attributes\n: Additional attributes for the pill element\n;actions\n: Action widgets to be triggered when the pill is clicked. Within the text, the macro parameter ''tag'' contains the title of the selected tag.\n\n<<.macro-examples \"tag-pill\">>\n"
},
"thumbnail Macro": {
"title": "thumbnail Macro",
"caption": "thumbnail",
"created": "20150325172203603",
"modified": "20150325172336079",
"tags": "Macros [[Core Macros]]",
"type": "text/vnd.tiddlywiki",
"text": "The <<.def thumbnail>> [[macros|Macros]] are used to create linkable thumbnail panels.\n\n!! Parameters\n\n(none)\n\n<<.macro-examples \"thumbnail\">>\n"
},
"tree Macro": {
"title": "tree Macro",
"caption": "tree",
"created": "20170628164534981",
"modified": "20170628164654430",
"tags": "Macros [[Core Macros]]",
"type": "text/vnd.tiddlywiki",
"text": "The <<.def tree>> [[macro|Macros]] renders an expandable tree view based on a prefix and separator within tiddler titles.\n\n!! Parameters\n\n;prefix\n: The prefix from which to generate the tree, defaults to `$:/`\n;separator\n: The separator between parts of the tiddler titles, defaults to `/`\n\n<<.macro-examples \"tree\">>\n"
},
"AlertMechanism": {
"title": "AlertMechanism",
"created": "20140213224306412",
"modified": "20160606125956564",
"tags": "Mechanisms Features",
"type": "text/vnd.tiddlywiki",
"text": "Alerts are displayed as yellow boxes overlaying the main TiddlyWiki window. Each one corresponds to a tiddler with the tag [[$:/tags/Alert]]. Clicking the {{$:/core/images/delete-button}} delete icon on an alert deletes the corresponding tiddler.\n\nHere's a demo <$fieldmangler tiddler=\"SampleAlert\"><$set name=\"currentTiddler\" value=\"SampleAlert\"><$button message=\"tm-add-tag\" param=\"$:/tags/Alert\">alert</$button></$set></$fieldmangler>.\n\nAlert tiddlers should have the following fields:\n\n|!Field |!Description |\n|title |By default, alert titles have the prefix `$:/temp/alerts/` |\n|text |The text of the alert message |\n|modified |Date of the alert (used for ordering the alerts on screen) |\n|component |Component name associated with the alert |\n|tags |Must include [[$:/tags/Alert]] |\n"
},
"DraftMechanism": {
"title": "DraftMechanism",
"modified": "201308201324",
"tags": "Mechanisms",
"text": "Tiddlers that have a `draft.of` field are treated as pending drafts of the tiddler specified in the field. Draft tiddlers should also have a `draft.title` field that specifies the title that will be given to the tiddler when it is saved.\n\nSeveral features work in concert to give the desired behaviour for draft tiddlers:\n\n* The ListWidget can optionally render draft tiddlers through a different template\n* The NavigatorWidget incorporates handlers for the following events:\n** `tm-new-tiddler` for creating a new tiddler in draft mode\n** `tm-edit-tiddler` for moving a tiddler into edit mode \n** `tm-cancel-tiddler` for cancelling a tiddler out of edit mode\n** `tm-save-tiddler` for saving a draft tiddler\n* Draft tiddlers are automatically excluded from search operations\n\n"
},
"DragAndDropMechanism": {
"title": "DragAndDropMechanism",
"created": "20170328161210552",
"modified": "20170406085836682",
"tags": "[[Importing Tiddlers]] [[Drag and Drop]] Mechanisms",
"type": "text/vnd.tiddlywiki",
"text": "This tiddler discusses the internal mechanisms that are used to implement drag and drop features in ~TiddlyWiki. See [[Drag and Drop]] for a general description of the features.\n\n<<.warning \"\"\"\n~TiddlyWiki uses the [[standard HTML 5 drag and drop APIs|https://www.w3.org/TR/2010/WD-html5-20101019/dnd.html]]. However, this is an area that is rightly notorious for cross-browser compatibility problems. Therefore, some features that you might expect to work won't necessarily work in all browsers. In particular, \n\"\"\">>\n\nThe following widgets are concerned with drag and drop features:\n\n* The DraggableWidget creates a draggable element that represents one or more tiddlers for dragging\n** The ButtonWidget and LinkWidget incorporate the functionality of the DraggableWidget\n* The DroppableWidget creates an area into which tiddlers can be dragged to trigger customisable actions\n* The DropzoneWidget handles importing external tiddlers from files or by drag and drop from another browser window\n\nThe general sequence of a drag and drop operation is as follows:\n\n# The user clicks down and drags the pointer on a draggable element such as the DraggableWidget, ButtonWidget or LinkWidget\n# The draggable element moves with the mouse pointer until the click is released\n# Moving the pointer over droppable elements such as the DroppableWidget displays a highlight indicating that the item can be dropped\n# The configured actions are performed if the drag ends on a droppable element\n"
},
"HistoryMechanism": {
"title": "HistoryMechanism",
"created": "20140213171818824",
"modified": "20150207131000000",
"tags": "Mechanisms",
"type": "text/vnd.tiddlywiki",
"text": "The system tiddler [[$:/HistoryList]] keeps track of a list of tiddlers comprising the navigation history. Each time you click on a link to a tiddler, the title of the target tiddler is added to the top of the stack.\n\nThe history list is stored in JSON to allow additional details about the coordinates of the DOM node that initiated the navigation.\n\nThe history list also maintains the field ''current-tiddler'' that contains the name of the tiddler at the top of the stack. This field can be used like so:\n\n```\n<$list filter=\"[list[$:/StoryList]]\" history=\"$:/HistoryList\" storyview=\"pop\">\n\n<$button message=\"tm-close-tiddler\" class=\"tc-btn-invisible tc-btn-mini\">×</$button> <$link to={{!!title}}><$view field=\"title\"/> <$reveal type=\"match\" state=\"$:/HistoryList!!current-tiddler\" text=<<currentTiddler>>>✓</$reveal></$link>\n\n</$list>\n```\n\nWhich renders the same as the \"Open\" sidebar tab, with the addition of a tick against the tiddler that was last navigated to.\n\n<$list filter=\"[list[$:/StoryList]]\" history=\"$:/HistoryList\" storyview=\"pop\">\n\n<$button message=\"tm-close-tiddler\" class=\"tc-btn-invisible tc-btn-mini\">×</$button> <$link to={{!!title}}><$view field=\"title\"/> <$reveal type=\"match\" state=\"$:/HistoryList!!current-tiddler\" text=<<currentTiddler>>>✓</$reveal></$link>\n\n</$list>\n\n!! Empty Story\n\nTo display content when the story is empty, create $:/config/EmptyStoryMessage and enter the desired contents. The following would show the GettingStarted tiddler when all others are closed.\n\n```\n{{GettingStarted||$:/core/ui/ViewTemplate}}\n```"
},
"InfoMechanism": {
"title": "InfoMechanism",
"created": "20140720164948099",
"modified": "20190307175403915",
"tags": "Mechanisms",
"type": "text/vnd.tiddlywiki",
"text": "\\define example(name)\n<$transclude tiddler=\"\"\"$:/info/url/$name$\"\"\" mode=\"inline\"/>\n\\end\n\nSystem tiddlers in the namespace `$:/info/` are used to expose information about the system (including the current browser) so that WikiText applications can adapt themselves to available features.\n\n! Information Tiddlers\n\n|!Title |!Description |\n|[[$:/info/browser]] |Running in the browser? (\"yes\" or \"no\") |\n|[[$:/info/browser/language]] |<<.from-version \"5.1.20\">> Language as reported by browser (note that some browsers report two character codes such as `en` while others report full codes such as `en-GB`) |\n|[[$:/info/browser/screen/width]] |Screen width in pixels |\n|[[$:/info/browser/screen/height]] |Screen height in pixels |\n|[[$:/info/node]] |Running under [[Node.js]]? (\"yes\" or \"no\") |\n|[[$:/info/url/full]] |<<.from-version \"5.1.14\">> Full URL of wiki (eg, ''<<example full>>'') |\n|[[$:/info/url/host]] |<<.from-version \"5.1.14\">> Host portion of URL of wiki (eg, ''<<example host>>'') |\n|[[$:/info/url/hostname]] |<<.from-version \"5.1.14\">> Hostname portion of URL of wiki (eg, ''<<example hostname>>'') |\n|[[$:/info/url/origin]] |<<.from-version \"5.1.14\">> Origin portion of URL of wiki (eg, ''<<example origin>>'') |\n|[[$:/info/url/pathname]] |<<.from-version \"5.1.14\">> Pathname portion of URL of wiki (eg, ''<<example pathname>>'') |\n|[[$:/info/url/port]] |<<.from-version \"5.1.14\">> Port portion of URL of wiki (eg, ''<<example port>>'') |\n|[[$:/info/url/protocol]] |<<.from-version \"5.1.14\">> Protocol portion of URL of wiki (eg, ''<<example protocol>>'') |\n|[[$:/info/url/search]] |<<.from-version \"5.1.14\">> Search portion of URL of wiki (eg, ''<<example search>>'') |\n"
},
"Mechanisms": {
"title": "Mechanisms",
"color": "#9fa3cb",
"created": "20130825153800000",
"modified": "20140910211727889",
"tags": "Reference",
"type": "text/vnd.tiddlywiki",
"text": "These are the internal mechanisms that fit together to make up TiddlyWiki.\n\n<<list-links \"[tag[Mechanisms]]\">>\n"
},
"PluginMechanism": {
"title": "PluginMechanism",
"created": "20130826122000000",
"modified": "20161015122959346",
"tags": "Mechanisms",
"type": "text/vnd.tiddlywiki",
"text": "! Introduction\n\n[[Plugins]] are bundles of tiddlers that are distributed and managed as a single unit by being packed into a single JSON tiddler. Users can install them with drag and drop, or using the [[plugin library|Installing a plugin from the plugin library]].\n\nThe tiddlers within registered plugins behave as ShadowTiddlers: they can be freely overwritten by creating a tiddler with the same title, but deleting that tiddler restores the underlying tiddler value from the plugin.\n\nPlugins have a `plugin-type` field that may take the following values:\n\n* `plugin` //(default)// - a plain plugin\n* `theme` - a theme plugin (see ThemeMechanism)\n* `language` - for translations only\n\nPlugins can be used to package ordinary content, or can include JavaScript [[modules|Modules]] that extend and enhance the core TiddlyWiki5 functionality.\n\nPlugins conventionally have a title of the form `$:/plugins/publisher/name`. Plugins that are part of the core TiddlyWiki distribution have titles of the form `$:/plugins/tiddlywiki/name`.\n\nWhen [[running TiddlyWiki under Node.js|TiddlyWiki on Node.js]], plugins can also be stored as individual tiddler files in [[PluginFolders]].\n\n! More information\n\n<<list-links \"[tag[PluginMechanism]]\">>\n\n"
},
"PopupMechanism": {
"title": "PopupMechanism",
"created": "20131212175656755",
"modified": "20151223222712715",
"tags": "Mechanisms",
"type": "text/vnd.tiddlywiki",
"text": "The popup mechanism allows blocks of content to be selectively displayed and positioned with respect to an anchor. It has several parts:\n\n* [[StateTiddlers|StateMechanism]] to record whether a popup is currently displayed or not\n* The RevealWidget to selectively display the popup content\n** For \"sticky\" popups — those that don't close when clicking inside one — set the ''class'' attribute to `tc-popup-keep`\n* The ButtonWidget to trigger the display of the popup by setting the state tiddler appropriately\n\n\n"
},
"SavingMechanism": {
"title": "SavingMechanism",
"created": "20150709150749755",
"modified": "20160709112741259",
"tags": "Mechanisms",
"type": "text/vnd.tiddlywiki",
"text": "The SavingMechanism is the mechanism by which TiddlyWiki generates a new HTML file and stores it. It is different from the sync mechanism, which is concerned with synchronising changes to individual tiddlers back to a server (see https://tiddlywiki.com/dev/#SyncAdaptorModules for more details).\n\nThe following steps are involved:\n\n# The saver mechanism uses the filter defined in $:/config/SaverFilter to specify which modified tiddlers trigger the dirty state for the wiki. (The dirty state is reflected in the red colouring of the \"save changes\" button in the sidebar).\n# The ButtonWidget is used to generate a [[tm-save-wiki|WidgetMessage: tm-save-wiki]] message to trigger the save operation\n# The optional parameter for the message specifies the template that will be used for generating the HTML file, defaulting to $:/core/save/all\n#* The plugin $:/plugins/tiddlywiki/tiddlyweb in the client-server configuration replaces the default template with $:/plugins/tiddlywiki/tiddlyweb/save/offline\n# The template includes a variable assignment that specifies a filter to select the tiddlers that should be included in the saved file. It then transcludes the main page template `$:/core/templates/tiddlywiki5.html`\n#* The template includes a reference to `$(publishFilter)$` that allows the filter to be customised via a global variable\n# The [[tm-save-wiki|WidgetMessage: tm-save-wiki]] handler renders the template to generate the HTML file\n# The message handler chooses the highest priority \"saver\" module that can handle saving the file\n#* See https://tiddlywiki.com/dev/#Saver for more details\n"
},
"StateMechanism": {
"title": "StateMechanism",
"created": "20131228164411884",
"modified": "20150221225557000",
"tags": "Mechanisms",
"type": "text/vnd.tiddlywiki",
"text": "The StateMechanism in TiddlyWiki is at the heart of how complex user interfaces can be built from WikiText.\n\nIn the browser, the TiddlyWiki display is produced by dynamically rendering the tiddler [[$:/core/ui/PageTemplate]]. Through various transclusions and other widgets it renders the entire user interface. The dynamic rendering is accomplished by a mechanism called \"binding\": any changes to the tiddlers in the store are dynamically reflected in the browser display.\n\nThe stack of templates that make up the TiddlyWiki display are complex but we'll focus on the line that displays the main story column:\n\n```\n<$list filter=\"[list[$:/StoryList]]\" history=\"$:/HistoryList\" template=\"$:/core/ui/ViewTemplate\" editTemplate=\"$:/core/ui/EditTemplate\" storyview={{$:/view}} />\n```\n\nBreaking down the attributes applied to the list widget:\n\n* ''filter'': selects the list of tiddlers in the `list` field of the tiddler [[$:/StoryList]]. If a tiddler is added or removed from that list then it is automatically reflected in the displayed list\n* ''history'': references the tiddler to be used to store the history stack (see the NavigationMechanism)\n* ''template'': identifies a template tiddler to be used for rendering each tiddler in the list\n* ''editTemplate'': identifies a different template tiddler to be used for rendering tiddlers that are in [[draft mode|DraftMechanism]]\n* ''storyview'': specifies the story view to be used (eg classic, or zoomin)\n\nThe [[$:/StoryList]] tiddler is an example of a StateTiddler: a tiddler that is used to hold the state of the user interface. Changes to the user interface are made indirectly, by changing the underlying state tiddlers, and letting TiddlyWiki ripple the changes through the user interface.\n\nNote how this approach makes the ''open'' tab in the sidebar very easy to implement: it is just another list widget referencing the same state tiddler, but with a different template:\n\n```\n<$list filter=\"[list[$:/StoryList]]\" history=\"$:/HistoryList\" storyview=\"pop\">\n<$button message=\"tm-close-tiddler\" class=\"tc-btn-invisible tc-btn-mini\">×</$button> <$link to={{!!title}}><$view field=\"title\"/></$link>\n</$list>\n```\n\nNow consider the implementation of the info panel within the tiddler template. We want to be able to toggle the info panel open and closed, which means that we must track its current state in a tiddler.\n\nHowever, we can't track the state in a tiddler called, say, [[$:/InfoPanelState]] because every tiddler would share the same state; changing the value of the tiddler would affect all tiddlers displayed in the story.\n\nThe solution is to dynamically generate a unique title for each state tiddler that we need. We need to ensure that the same state tiddler title is generated each time a user interface element is rendered. To do that, we append together tokens representating each of the stack of transclusions that led to the current rendering location. Then that string of symbols is hashed to a simple numeric value.\n\nThe process of generating a state tiddler title is encapsulated in the <<.mlink qualify>> macro.\n"
},
"TranslationMechanism": {
"title": "TranslationMechanism",
"created": "20140217173700918",
"modified": "20140911183846401",
"tags": "Mechanisms",
"type": "text/vnd.tiddlywiki",
"text": "The translation mechanism of TiddlyWiki manages and switches between language plugins that provide translations of the TiddlyWiki user interface. The developer site at https://tiddlywiki.com/dev/ explains how translators can create and submit translations for TiddlyWiki.\n\nThe title of the current language plugin is read from the tiddler [[$:/language]]. If the selected plugin changes then any displayed translateable text automatically changes.\n\nTranslation plugins are bundles of tiddlers that each contain an indepedent translatable string. The strings are transcluded as needed.\n\nTranslatable strings are generally in the namespace `$:/language/`, for example:\n\n* [[$:/language/EditTemplate/Shadow/OverriddenWarning]]\n* [[$:/language/Docs/ModuleTypes/isfilteroperator]]\n* [[$:/language/EditTemplate/Fields/Add/Value/Placeholder]]\n"
},
"UpgradeMechanism": {
"title": "UpgradeMechanism",
"created": "20140711090154150",
"modified": "20160606122804180",
"tags": "Mechanisms",
"text": "# Open upgrade.html\n# Includes a data tiddler called `$:/UpgradeLibrary` that contains the latest compatible versions of all plugins in the library\n# Drag in old wiki file\n# Place tiddlers into a data tiddler `$:/Import` that is typed as a \"pending import\"\n# Kick off import processing for each tiddler\n## Give each \"upgrader\" module a chance to inspect the incoming tiddlers\n## Upgrader modules can trigger actions for each tiddler:\n##* Display a warning message\n##* Don't import\n##* Replace with another tiddler from the upgrade library\n##* Disable incompatible plugins\n# Display the newly created pending import tiddler through a new view template segment\n## Displays the payload tiddlers as a list of titles and checkboxes, with a dropdown showing the full details of the tiddler\n## Perhaps we also suppress the usual JSON display for data tiddlers behind a reveal widget\n# The user can adjust the selection checkboxes\n# Clicking \"Upgrade\" unpacks the selected tiddlers from the pending import tiddler\n# The pending import tiddler and the upgrade library tiddler are excluded from the subsequent save operation\n"
},
"SampleModal": {
"title": "SampleModal",
"created": "20140912145537860",
"footer": "<$button message=\"tm-close-tiddler\">Close</$button>",
"modified": "20140912145537861",
"subtitle": "This is a modal created especially for <<yourName>>",
"type": "text/vnd.tiddlywiki",
"text": "! Hello, <<yourName>>\n\nThis is an example modal containing the following message:\n\n<<yourMessage>>\n"
},
"WidgetMessage: tm-add-field": {
"title": "WidgetMessage: tm-add-field",
"created": "20140908185153663",
"modified": "20140908185153663",
"tags": "Messages",
"type": "text/vnd.tiddlywiki",
"caption": "tm-add-field",
"text": "The `tm-add-field` message is handled by the FieldManglerWidget. It adds the specified field with a blank value if the field doesn't already exist.\n\n|!Name |!Description |\n|param |Name of field to add |\n\nThe add field message is usually generated with the ButtonWidget, and is handled by the FieldManglerWidget.\n"
},
"WidgetMessage: tm-add-tag": {
"title": "WidgetMessage: tm-add-tag",
"created": "20140908185153663",
"modified": "20140908185153663",
"tags": "Messages",
"type": "text/vnd.tiddlywiki",
"caption": "tm-add-tag",
"text": "The `tm-add-tag` message is handled by the FieldManglerWidget. It adds the specified tag.\n\n|!Name |!Description |\n|param |Name of tag to add |\n\nThe add tag message is usually generated with the ButtonWidget, and is handled by the FieldManglerWidget.\n"
},
"WidgetMessage: tm-auto-save-wiki": {
"title": "WidgetMessage: tm-auto-save-wiki",
"created": "20140830112325641",
"modified": "20140830115149288",
"tags": "Messages",
"type": "text/vnd.tiddlywiki",
"caption": "tm-auto-save-wiki",
"text": "The autosave wiki message causes the current saver module to perform a background save if it is required.\n\nThe autosave wiki message should be generated whenever changes are made to the store. For example, the navigator widget generates the autosave wiki message as part of its handling of the [[WidgetMessage: tm-save-tiddler]], [[WidgetMessage: tm-delete-tiddler]] and [[WidgetMessage: tm-perform-import]].\n\nThe autosave wiki message is handled by the TiddlyWiki core SyncMechanism which invokes the current [[SaverModule|SaverModules]]. Not all SaverModules can handle autosaving.\n"
},
"WidgetMessage: tm-browser-refresh": {
"title": "WidgetMessage: tm-browser-refresh",
"created": "20140819110529062",
"modified": "20140826110529062",
"tags": "Messages",
"type": "text/vnd.tiddlywiki",
"caption": "tm-browser-refresh",
"text": "The `tm-browser-refresh` message refreshes the page, causing the re-initialisation of any plugin tiddlers. It does not require any properties on the `event` object.\n\nThe refresh message is usually generated with the ButtonWidget and is handled by the core.\n"
},
"WidgetMessage: tm-cancel-tiddler": {
"title": "WidgetMessage: tm-cancel-tiddler",
"created": "20140226193622350",
"modified": "20140226193906089",
"tags": "Messages navigator-message",
"type": "text/vnd.tiddlywiki",
"caption": "tm-cancel-tiddler",
"text": "The `tm-cancel-tiddler` message abandons the changes in a draft tiddler. It requires the following properties on the `event` object:\n\n|!Name |!Description |\n|param |Title of the tiddler that is being cancelled out of edit mode |\n|tiddlerTitle |Fallback title that is used if ''param'' isn't specified (automatically set by the ButtonWidget) |\n\nThe cancel tiddler message is usually generated with the ButtonWidget and is handled by the NavigatorWidget.\n"
},
"WidgetMessage: tm-clear-password": {
"title": "WidgetMessage: tm-clear-password",
"created": "20140226084018038",
"modified": "20140226084916556",
"tags": "Messages",
"type": "text/vnd.tiddlywiki",
"caption": "tm-clear-password",
"text": "The `tm-clear-password` message clears the current password from the password vault, clearing the [[$:/isEncrypted]] tiddler. See EncryptionMechanism for details.\n\nThis message is typically generated with the ButtonWidget, and is handled by the core itself.\n"
},
"WidgetMessage: tm-close-all-tiddlers": {
"title": "WidgetMessage: tm-close-all-tiddlers",
"created": "20140226194242809",
"modified": "20140226194341303",
"tags": "Messages navigator-message",
"type": "text/vnd.tiddlywiki",
"caption": "tm-close-all-tiddlers",
"text": "The close all tiddlers message empties the story list.\n\nThe close all tiddlers message is usually generated with the ButtonWidget and is handled by the NavigatorWidget.\n"
},
"WidgetMessage: tm-close-other-tiddlers": {
"title": "WidgetMessage: tm-close-other-tiddlers",
"created": "20140302183306544",
"modified": "20140302183352966",
"tags": "Messages navigator-message",
"type": "text/vnd.tiddlywiki",
"caption": "tm-close-other-tiddlers",
"text": "The `tm-close-other-tiddlers` message removes all but a specified tiddler from the story list. It requires the following properties on the `event` object:\n\n|!Name |!Description |\n|param |Title of the tiddler that is not to be closed |\n|tiddlerTitle |Fallback title that is used if ''param'' isn't specified (automatically set by the ButtonWidget) |\n\nThe close other tiddlers message is usually generated with the ButtonWidget and is handled by the NavigatorWidget.\n"
},
"WidgetMessage: tm-close-tiddler": {
"title": "WidgetMessage: tm-close-tiddler",
"created": "20140226193940778",
"modified": "20140226194227227",
"tags": "Messages navigator-message",
"type": "text/vnd.tiddlywiki",
"caption": "tm-close-tiddler",
"text": "The `tm-close-tiddler` message removes a specified tiddler from the story list. It requires the following properties on the `event` object:\n\n|!Name |!Description |\n|param |Title of the tiddler that is to be closed |\n|tiddlerTitle |Fallback title that is used if ''param'' isn't specified (automatically set by the ButtonWidget) |\n\nThe close tiddler message is usually generated with the ButtonWidget and is handled by the NavigatorWidget.\n"
},
"WidgetMessage: tm-copy-to-clipboard": {
"title": "WidgetMessage: tm-copy-to-clipboard",
"caption": "tm-copy-to-clipboard",
"created": "20171215150056004",
"modified": "20171215150600888",
"tags": "Messages",
"type": "text/vnd.tiddlywiki",
"text": "The \"copy to clipboard\" message attempts to copy the specified text to the clipboard. If it succeeds, the tiddler [[$:/language/Notifications/CopiedToClipboard/Succeeded]] is displayed as a notification. If the browser doesn't permit the operation, the tiddler [[$:/language/Notifications/CopiedToClipboard/Failed]] is displayed instead.\n\nIt requires the following properties on the `event` object:\n\n|!Name |!Description |\n|param |Text to be copied to the clipboard |\n\nThis message is usually generated with the ButtonWidget. It is handled by the TiddlyWiki core.\n\n! Example\n\nThis example copies the current time to the clipboard:\n\n<$macrocall $name='wikitext-example-without-html'\nsrc='<$button message=\"tm-copy-to-clipboard\" param=<<now>>>\nCopy date to clipboard\n</$button>'/>\n\n"
},
"WidgetMessage: tm-delete-tiddler": {
"title": "WidgetMessage: tm-delete-tiddler",
"created": "20140226090324129",
"modified": "20140226090441236",
"tags": "Messages navigator-message",
"type": "text/vnd.tiddlywiki",
"caption": "tm-delete-tiddler",
"text": "The `tm-delete-tiddler` message deletes the specified tiddler and removes it from the current story. If the tiddler is a draft then it also deletes the tiddler specified in the `draft.of` field. The delete tiddler message requires the following properties on the `event` object:\n\n|!Name |!Description |\n|param |Title of the tiddler that is to be deleted |\n|tiddlerTitle |Fallback title that is used if ''param'' isn't specified (automatically set by the ButtonWidget) |\n\nThe delete tiddler message is usually generated with the ButtonWidget and is handled by the NavigatorWidget."
},
"WidgetMessage: tm-download-file": {
"title": "WidgetMessage: tm-download-file",
"created": "20140811112201235",
"modified": "20141110133723696",
"tags": "Messages",
"type": "text/vnd.tiddlywiki",
"caption": "tm-download-file",
"text": "The download file message causes the current saver module to prompt the user to download the result of parsing a specified template tiddler as a file. It requires the following properties on the `event` object:\n\n|!Name |!Description |\n|param |Title of a tiddler to use as a template for the new tiddler |\n|paramObject |Optional hashmap of variable values to use for the rendering |\n\nThe download file message is usually generated with the ButtonWidget.\n\nThe download file message is handled by the TiddlyWiki core SyncMechanism which invokes the current [[SaverModule|SaverModules]].\n"
},
"WidgetMessage: tm-edit-bitmap-operation": {
"title": "WidgetMessage: tm-edit-bitmap-operation",
"caption": "tm-edit-bitmap-operation",
"created": "20160424204236050",
"modified": "20160424215219517",
"tags": "Messages",
"type": "text/vnd.tiddlywiki",
"text": "\\define resizeDescription()\n<div>\n\nResizes the image to the specified width and height. Parameters include:\n\n|!Name |!Description |\n|width |Specifies the width the image is resized to |\n|height |Specifies the height the image is resized to |\n\n</div>\n\\end\n\n\\define clearDescription()\n<div>\n\nClears the contents of the image and fills it with a solid colour. Parameters include:\n\n|!Name |!Description |\n|colour |Colour the image should be filled with, defaults to <<.value \"White\">> |\n\n<<.tip \"The colour field can take any normal CSS colour value, including the hexadecimal representation or the RGB format.\">>\n</div>\n\\end\n\n\n\nA `tm-edit-bitmap-operation` invokes one of the available operations on a __surrounding__ bitmap editor. Therefore the message has to be dispatched within the editor in order for it to catch it. The following properties on the `event` object are required:\n\n|!Name |!Description |\n|param |Name of the operation to be executed, see ''below'' for a list of possible operations |\n|paramObject| Hashmap of additional parameters required by the operation top be executed |\n\nThe `tm-edit-bitmap-operation` message is usually generated by a ButtonWidget or an ActionWidget and is handled by the surrounding bitmap editor.\n\n! Bitmap Operations\n\nAt this point the following bitmap operations have been implemented:\n\n|!Name |!Description |\n|<<.def \"resize\">>|<<resizeDescription>> |\n|<<.def \"clear\">>|<<clearDescription>> |\n\n\n!Example\n\nAn example can be seen in [[$:/core/ui/EditorToolbar/size-dropdown]]:\n\n```\n<$button>\n<$action-sendmessage\n\t$message=\"tm-edit-bitmap-operation\"\n\t$param=\"resize\"\n\twidth={{$config-title$/new-width}}\n\theight={{$config-title$/new-height}}\n/>\n...\nResize\n</$button>\n```\n\n\n"
},
"WidgetMessage: tm-edit-text-operation": {
"title": "WidgetMessage: tm-edit-text-operation",
"caption": "tm-edit-text-operation",
"created": "20160424211339792",
"modified": "20180630073432471",
"tags": "Messages",
"type": "text/vnd.tiddlywiki",
"text": "\\define exciseDescription()\n<div>\n\nExcises the currently selected text into a new tiddler and replaces it with a link, a macro or a transclude of the new tiddler. Parameters include:\n\n|!Name |!Description |\n|title |Title of the new tiddler the selected content is excised to|\n|type |Type of the replacement to be inserted: Can be one of <<.value \"transclude\">>, <<.value \"link\">> or <<.value \"macro\">>|\n|macro |In case //type=<<.value \"macro\">>//, specifies the name of the macro to be inserted. The title of the new tiddler is provided as the first parameter to the macro. Defaults to the ''translink'' macro|\n|tagnew |If '<<.value \"yes\">>', will tag the new tiddler with the title of the tiddler currently being edited |\n\n</div>\n\\end\n\n\\define replaceAllDescription()\n<div>\n\nReplaces ''all'' contents of the editor with the provided text.\n\n|!Name |!Description |\n|text |Text to be inserted|\n\n</div>\n\\end\n\n\\define replaceSelectionDescription()\n<div>\n\nReplaces the current selection with the provided text.\n\n|!Name |!Description |\n|text |Text to be inserted|\n\n</div>\n\\end\n\n\\define prefixLinesDescription()\n<div>\n\nPrefixes the currently selected line//(s)// with the provided character. If a line is already prefixed by the provided prefix, the prefix is removed instead.\n\n|!Name |!Description |\n|character |Prefix character|\n|count |Number of characters that make up the prefix|\n\n''Example'' Setting //character=\"<<.value \"!\">>\"// and //count=\"<<.value \"3\">>\"// would insert the prefix \"<<.value \"!!!\" >>\", which will resolve to a subheading when parsed as WikiText.\n\n</div>\n\\end\n\n\\define wrapLinesDescription()\n<div>\n\nSurrounds the selected //lines// with the provided <<.param \"prefix\">> and <<.param \"suffix\">>.\n\n|!Name |!Description |\n|prefix |String to be prefixed to the selected lines|\n|suffix |Suffix to be inserted after the selected lines|\n\n\n</div>\n\\end\n\n\n\\define wrapSelectionDescription()\n<div>\n\nSurrounds the current //selection// with the provided <<.param \"prefix\">> and <<.param \"suffix\">>.\n\n|!Name |!Description |\n|prefix |String to be prefixed to the selection|\n|suffix |Suffix to be inserted after the selection|\n\n</div>\n\\end\n\n\\define saveSelectionDescription()\n<div>\n\nSaves the text of the current //selection// into the provided <<.param \"tiddler\">> and <<.param \"field\">>.\n\n|!Name |!Description |\n|tiddler |Tiddler title to which the selection will be saved |\n|field |Field name (defaults to \"text\") |\n\n</div>\n\\end\n\n\nA `tm-edit-text-operation` invokes one of the available operations on a __surrounding__ text editor. Therefore the message has to be dispatched within the editor in order for it to catch it. The following properties on the `event` object are required:\n\n|!Name |!Description |\n|param |Name of the operation to be executed, see ''below'' for a list of possible operations |\n|paramObject|Hashmap of additional parameters required by the operation top be executed |\n\nThe `tm-edit-text-operation` message is usually generated by a ButtonWidget or an ActionWidget and is handled by the surrounding text editor.\n\n! Text Operations\n\nAt this point the following text operations have been implemented:\n\n|!Name |!Description |\n|<<.def \"excise\">>|<<exciseDescription>> |\n|<<.def \"replace-all\">>|<<replaceAllDescription>> |\n|<<.def \"replace-selection\">>|<<replaceSelectionDescription>> |\n|<<.def \"prefix-lines\">>|<<prefixLinesDescription>> |\n|<<.def \"wrap-lines\">>|<<wrapLinesDescription>> |\n|<<.def \"wrap-selection\">>|<<wrapSelectionDescription>> |\n|<<.def \"save-selection\">>|<<saveSelectionDescription>> |\n\n\n!Example\n\nAn example can be seen in [[$:/core/ui/EditorToolbar/bold]]:\n\n```\n<$action-sendmessage\n\t$message=\"tm-edit-text-operation\"\n\t$param=\"wrap-selection\"\n\tprefix=\"''\"\n\tsuffix=\"''\"\n/>\n```\n\n\n"
},
"WidgetMessage: tm-edit-tiddler": {
"title": "WidgetMessage: tm-edit-tiddler",
"created": "20140226085529797",
"modified": "20140226090641987",
"tags": "Messages navigator-message",
"type": "text/vnd.tiddlywiki",
"caption": "tm-edit-tiddler",
"text": "The `tm-edit-tiddler` message replaces the specified tiddler in the current story with a draft version of itself. It requires the following properties on the `event` object:\n\n|!Name |!Description |\n|param |Title of the tiddler that is being switched to edit mode |\n|tiddlerTitle |Fallback title that is used if ''param'' isn't specified (automatically set by the ButtonWidget) |\n\nThe edit tiddler message is usually generated with the ButtonWidget or the ActionSendMessageWidget and is handled by the NavigatorWidget.\n"
},
"WidgetMessage: tm-focus-selector": {
"title": "WidgetMessage: tm-focus-selector",
"caption": "tm-focus-selector",
"created": "20190628162542132",
"modified": "20190628162542132",
"tags": "Messages",
"type": "text/vnd.tiddlywiki",
"text": "The `tm-focus-selector` message sets the focus to the DOM element identified by the selector in the `param` parameter. \n\n|!Name |!Description |\n|param |Selector identifying the DOM element to be focussed |\n|paramObject |Optional hashmap of additional parameters to be passed to the [[focus()|https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/focus]] method |\n\n<<.tip \"\"\"Use preventScroll=\"true\" to prevent the browser from scrolling to the focused element\"\"\">>\n"
},
"WidgetMessage: tm-fold-all-tiddlers": {
"title": "WidgetMessage: tm-fold-all-tiddlers",
"caption": "tm-fold-all-tiddlers",
"created": "20160424230908388",
"modified": "20190205154007291",
"tags": "Messages",
"type": "text/vnd.tiddlywiki",
"text": "The `tm-fold-all-tiddlers` message folds all tiddlers in the current story list.\n\nInternally, it sets the text of all of the state tiddlers corresponding to tiddlers in the story river to \"<<.value \"hide\">>\". The state tiddler titles are formed by prefixing the tiddler title with a prefix that defaults to `$:/state/folded/`.\n\n|!Name |!Description |\n|foldedStatePrefix |Prefix for the state tiddler in which the fold state is stored. Defaults to `$:/state/folded` |\n\nThe `tm-fold-all-tiddlers` message is usually generated with the ButtonWidget and is handled by the surrounding NavigatorWidget.\n"
},
"WidgetMessage: tm-fold-other-tiddlers": {
"title": "WidgetMessage: tm-fold-other-tiddlers",
"caption": "tm-fold-other-tiddlers",
"created": "20160424232355215",
"modified": "20160424233338710",
"tags": "Messages",
"type": "text/vnd.tiddlywiki",
"text": "The `tm-fold-other-tiddlers` message folds all tiddlers in the current story list, except the one specified in the `param` parameter. It does so by setting the text of a state tiddler to either \"<<.value \"show\">>\" or \"<<.value \"hide\">>\", according to the fold state.\n\n|!Name |!Description |\n|param|Title of the tiddler that should be ignored by the fold operation. |\n|foldedStatePrefix |Prefix for the state tiddler in which the fold state is stored. |\n\n<<.tip \"The core uses a foldStatePrefix of '$:/state/folded/' to store the fold states for the default story view.\">>\n<<.warning \"The state tiddlers title is computed as 'foldStatePrefix + TiddlerTitle'. If the foldStatePrefix is not set, it will overwrite the text of the tiddler(s) itself, resulting in data loss. \">>\n\n\nThe `tm-fold-other-tiddlers` message is usually generated with the ButtonWidget and is handled by the surrounding NavigatorWidget.\n"
},
"WidgetMessage: tm-fold-tiddler": {
"title": "WidgetMessage: tm-fold-tiddler",
"caption": "tm-fold-tiddler",
"created": "20160424232749223",
"modified": "20160424233102003",
"tags": "Messages",
"type": "text/vnd.tiddlywiki",
"text": "The `tm-fold-tiddler` message folds the tiddler specified in the `param` parameter. It does so by setting the text of a state tiddler to either \"<<.value \"show\">>\" or \"<<.value \"hide\">>\", according to the fold state.\n\n|!Name |!Description |\n|param|Title of the tiddler that should be folded. If the tiddler is already folded, it will be unfolded instead. |\n|foldedStatePrefix |Prefix for the state tiddler in which the fold state is stored. If no state prefix is provided, `tm-fold-tiddler` will do nothing. |\n\n<<.tip \"The core uses a foldStatePrefix of '$:/state/folded/' to store the fold states for the default story view.\">>\n\nThe `tm-fold-tiddler` message is usually generated with the ButtonWidget and is handled by the surrounding NavigatorWidget.\n"
},
"WidgetMessage: tm-full-screen": {
"title": "WidgetMessage: tm-full-screen",
"caption": "tm-full-screen",
"created": "20140811112400855",
"modified": "20180814215126941",
"tags": "Messages",
"type": "text/vnd.tiddlywiki",
"text": "The fullscreen message is used to enter, exit or toggle the \"fullscreen\" mode of the browser, if it supports it. It uses the following properties on the `event` object:\n\n|!Name |!Description |\n|param |`enter` to enter full screen mode, `exit` to exit it, otherwise toggle the full screen status |\n\nThe fullscreen message is handled by the TiddlyWiki core.\n\n\n<$macrocall $name='wikitext-example-without-html'\nsrc='<$button message=\"tm-full-screen\">\nFull screen toggle\n</$button>\n\n<$button message=\"tm-full-screen\" param=\"enter\">\nFull screen enter\n</$button>\n\n<$button message=\"tm-full-screen\" param=\"exit\">\nFull screen exit\n</$button>'/>\n\n"
},
"WidgetMessage: tm-home": {
"title": "WidgetMessage: tm-home",
"created": "20140819110529062",
"modified": "20140819110529062",
"tags": "Messages",
"type": "text/vnd.tiddlywiki",
"caption": "tm-home",
"text": "The `tm-home` message closes any open tiddlers and re-opens the default tiddlers set in [[$:/DefaultTiddlers]]. It also remove any [[permalink|PermaLinks]] from the browser address bar. It does not require any properties on the `event` object.\n\nThe home message is usually generated with the ButtonWidget and is handled by the core.\n"
},
"WidgetMessage: tm-import-tiddlers": {
"title": "WidgetMessage: tm-import-tiddlers",
"created": "20140716084658099",
"modified": "20150228143618000",
"tags": "Messages navigator-message",
"type": "text/vnd.tiddlywiki",
"caption": "tm-import-tiddlers",
"text": "The `tm-import-tiddlers` message inserts a list of tiddlers into the pending import tiddler [[$:/Import]]. It also applies any active ''upgrader'' modules to each tiddler as it arrives (see the UpgradeMechanism for more details).\n\n|!Name |!Description |\n|param |JSON text of the array of tiddlers to be imported |\n\nThe import tiddlers message is usually generated with the DropzoneWidget or the BrowseWidget, and is handled by the NavigatorWidget.\n\n! Configuration Variables\n\n* <<.vlink tv-auto-open-on-import>>\n"
},
"WidgetMessage: tm-load-plugin-from-library": {
"title": "WidgetMessage: tm-load-plugin-from-library",
"caption": "tm-load-plugin-from-library",
"created": "20160424233627001",
"modified": "20160424235543975",
"tags": "Messages",
"type": "text/vnd.tiddlywiki",
"text": "The `tm-load-plugin-from-library` message load the specified tiddler or plugin from the specified plugin library.\n\n|!Name |!Description |\n|title |Title of the tiddler or plugin to be loaded into the current wiki |\n|url |Url specifying the plugin library from which the tiddler or plugin is to be loaded. |\n\n!Example\n\nThe following snippet will install the CodeMirror plugin from the official plugin library:\n\n```\n<$button>\n<$action-sendmessage $message=\"tm-load-plugin-from-library\" title=\"$:/plugins/tiddlywiki/codemirror\" url=\"https://tiddlywiki.com/library/v5.1.11/index.html\"/>\nInstall CodeMirror\n</$button>\n```\n\n<<.tip \"Usually a plugin library has to be loaded (initialized) first before it can be used. If the plugin library specified by 'url' has not been initialized yet, it will be loaded and initialized.\">>\n\n\nThe `tm-load-plugin-from-library` message is usually generated with the ButtonWidget and is handled by the core itself.\n"
},
"WidgetMessage: tm-load-plugin-library": {
"title": "WidgetMessage: tm-load-plugin-library",
"caption": "tm-load-plugin-library",
"created": "20160424235548387",
"modified": "20160425000427238",
"tags": "Messages",
"type": "text/vnd.tiddlywiki",
"text": "The `tm-load-plugin-library` message loads the specified plugin library and imports information about the contained plugins in temporary tiddlers.\n\n|!Name |!Description |\n|url |Url specifying the plugin library to be loaded. |\n|infoTitlePrefix|Prefix to the temporary tiddlers being created, containing information about the plugins the plugin library offers. Defaults to <<.value \"$:/temp/RemoteAssetInfo/\">> |\n\n!Example\n\nThe following snippet will load the official plugin library:\n\n```\n<$button>\n<$action-sendmessage $message=\"tm-load-plugin-library\" infoTitlePrefix=\"$:/temp/RemoteAssetInfo/\" url=\"https://tiddlywiki.com/library/v5.1.11/index.html\"/>\nLoad official plugin library\n</$button>\n```\n\nThe `tm-load-plugin-library` message is usually generated with the ButtonWidget and is handled by the core itself.\n"
},
"WidgetMessage: tm-login": {
"title": "WidgetMessage: tm-login",
"created": "20140811112445887",
"modified": "20140811113336694",
"tags": "Messages",
"type": "text/vnd.tiddlywiki",
"caption": "tm-login",
"text": "The login message prompts the user for a username and password and attempts to login to the current serverside host. The tiddler [[$:/status/IsLoggedIn]] reflects the current login status with the values \"yes\" or \"no\", and [[$:/status/UserName]] reflects the current username.\n\nThe login message is handled by the TiddlyWiki core SyncMechanism which invokes the current [[SyncAdaptorModule|SyncAdaptorModules]] (typically the ''tiddlywiki/tiddlywebadaptor'' plugin).\n\n"
},
"WidgetMessage: tm-logout": {
"title": "WidgetMessage: tm-logout",
"created": "20140811112457311",
"modified": "20140811113344084",
"tags": "Messages",
"type": "text/vnd.tiddlywiki",
"caption": "tm-logout",
"text": "The logout message attempts to log the user out of the current serverside host. The tiddler [[$:/status/IsLoggedIn]] reflects the current login status with the values \"yes\" or \"no\", and [[$:/status/UserName]] reflects the current username.\n\nThe logout message is handled by the TiddlyWiki core SyncMechanism which invokes the current [[SyncAdaptorModule|SyncAdaptorModules]] (typically the ''tiddlywiki/tiddlywebadaptor'' plugin).\n"
},
"WidgetMessage: tm-modal": {
"title": "WidgetMessage: tm-modal",
"created": "20140811112133701",
"modified": "20141107142803042",
"tags": "Messages",
"type": "text/vnd.tiddlywiki",
"caption": "tm-modal",
"text": "|!Name |!Description |\n|param |Title of the tiddler to be displayed |\n|paramObject |Hashmap of variables to be provided to the modal |\n|rootwindow |<<.from-version 5.1.18>> ''yes'' or ''true'' will always display a modal in the wiki-root-window |\n\nThe \"currentTiddler\" variable is set to the title of the modal tiddler, but can be overridden by specifying a different value in `paramObject`.\n\nThe modal message is usually generated with the ButtonWidget. The modal message is handled by the TiddlyWiki core.\n\n! Example\n\nHere is an example of displaying a modal and passing parameters to it:\n\n<$macrocall $name='wikitext-example-without-html'\nsrc='Your name: <$edit-text tiddler=\"$:/temp/yourName\" tag=\"input\" default=\"Your name\"/>\n\nYour message:\n<$edit-text tiddler=\"$:/temp/yourMessage\" default=\"Your message\"/>\n\n<$button>\n<$action-sendmessage $message=\"tm-modal\" $param=\"SampleModal\" yourName={{$:/temp/yourName}} yourMessage={{$:/temp/yourMessage}}/>\nClick me!\n</$button>'/>\n\n<<.tip \"\"\"<$macrocall $name=\".from-version\" version=\"5.1.18\"/> if triggered from within a ''new window'', the above examples will be displayed within that window. The <$macrocall $name=\".attr\" _=\"rootwindow\"/> attribute can be set to ''yes'' or ''true'' to inherit this behavior and to display the Modal within the ''root'' window\"\"\">>\n\n"
},
"WidgetMessage: tm-navigate": {
"title": "WidgetMessage: tm-navigate",
"created": "20140226085215941",
"modified": "20140226085454346",
"tags": "Messages",
"type": "text/vnd.tiddlywiki",
"caption": "tm-navigate",
"text": "The `tm-navigate` message inserts the specified tiddler into the story and puts it at the top of the history stack. If the tiddler is not already present in the story then it will be positioned immediately after the tiddler specified in `event.navigateFromTitle`.\n\nThe navigate message requires the following properties on the `event` object:\n\n|!Name |!Description |\n|navigateTo |Title of the tiddler that is being navigated |\n|navigateFromTitle |Title of the tiddler from which the navigation was initiated |\n|navigateFromClientRect |Bounding rectangle in client page coordinates of the element initiating the navigation |\n|navigateSuppressNavigation |''true'' causes the new tiddler to only be added to the story, and not the history stack. This suppresses the scrolling associated with navigating to a tiddler |\n\nThe navigate message can be generated by the LinkWidget, the ActionNavigateWidget and the ButtonWidget, and is handled by the NavigatorWidget.\n"
},
"WidgetMessage: tm-new-tiddler": {
"title": "WidgetMessage: tm-new-tiddler",
"caption": "tm-new-tiddler",
"created": "20140226194405353",
"modified": "20141107132122081",
"tags": "Messages navigator-message",
"type": "text/vnd.tiddlywiki",
"text": "The new tiddler message creates a new draft tiddler and adds it to the current story. It requires the following properties on the `event` object:\n\n|!Name |!Description |\n|param |The optional title of a tiddler to use as a template for the new tiddler |\n|paramObject |Optional hashmap of additional tiddler fields |\n|navigateFromTitle |Title of the tiddler from which the navigation to the new tiddler was initiated |\n\nThe title for the draft tiddler is chosen according to these rules:\n\n* If a hashmap was used and a title field was specified, use that title\n* If a template tiddler was used, use the title of the template tiddler, making it unique with a numeric suffix\n* Otherwise, generate a new title based on the default new tiddler title with a numeric suffix to make it unique\n\nThe new tiddler message is usually generated with the ButtonWidget or ActionSendMessageWidget and is handled by the NavigatorWidget.\n\n! Examples\n\nTo make a button that creates new tiddlers tagged \"task\", create a tiddler called \"TaskTemplate\" with that tag, and then make your button like this:\n\n```\n<$button message=\"tm-new-tiddler\" param=\"TaskTemplate\">New Task</$button>\n```\n\nTo create a new tiddler with given attributes rather than from a template:\n\n```\n<$button>\n<$action-sendmessage $message=\"tm-new-tiddler\" title=\"This is newly created tiddler\" tags=\"OneTag [[Another Tag]]\" text=<<now \"Today is DDth, MMM YYYY\">>/>\nNew Tiddler\n</$button>\n```\n"
},
"WidgetMessage: tm-notify": {
"title": "WidgetMessage: tm-notify",
"created": "20140811112304772",
"modified": "20160701140248738",
"tags": "Messages",
"type": "text/vnd.tiddlywiki",
"caption": "tm-notify",
"text": "The notify message briefly displays a specified tiddler as a small alert in the upper right corner of the page. It requires the following properties on the `event` object:\n\n|!Name |!Description |\n|param |Title of the tiddler to be displayed |\n|paramObject |Hashmap of variables to be provided to the notification |\n\nThe notify message is handled by the TiddlyWiki core.\n"
},
"WidgetMessage: tm-open-external-window": {
"title": "WidgetMessage: tm-open-external-window",
"caption": "tm-open-external-window",
"created": "201701211823",
"modified": "201701211825",
"tags": "Messages",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.14\">>\n\nThe `tm-open-external-window` message opens an external link eg: \"http://tiddlywiki.com\" in a new //browser// window. If no parameters are specified, it opens the help tiddler. Any additional parameters passed via the <<.param \"paramObject\">> are being provided as variables to the new window.\n\n|!Name |!Description |\n|param |URL of the tiddler to be opened in a new browser window, defaults to the [[TiddlyWiki help|http://tiddlywiki.com/#WidgetMessage%3A%20tm-open-external-window if empty]] |\n|paramObject |Optional: Hashmap of variables that will be provided to the window. see below |\n\n''parmObject''\n\n|!Name |!Description|!Important|\n|windowName|If a parameter is provided it can be used to open different links in the same window eg: `_tiddlywiki`. Default is empty, so every link opens a new window.|The behaviour is influenced by user settings in the browser and the browsers default behavior! |\n|windowFeatures|This parameter needs to be provided as a single string. eg: `\"height=400, width=600\"`. For detailed description about possible parameters see: [[Mozilla Help|https://developer.mozilla.org/en-US/docs/Web/API/Window/open#Window_features]] ||\n\nThe `tm-open-external-window` message is usually generated with the ButtonWidget or ActionSendMessageWidget and is handled by the core itself.\n\n''Examples''\n\n<$macrocall $name='wikitext-example-without-html'\nsrc='<$button>\n<$action-sendmessage $message=\"tm-open-external-window\" $param=\"http://tiddlywiki.com\" windowName=\"_tiddlywiki\" windowFeatures=\"height=500, width=900\"/>\nOpen ~TiddlyWiki - Action\n</$button>\n\n<$button>\n<$action-sendmessage $message=\"tm-open-external-window\" $param=\"https://developer.mozilla.org/en-US/docs/Web/API/Window/open\" windowName=\"_tiddlywiki\" windowFeatures=\"height=400, width=600\"/>\nOpen Mozilla Help - Action\n</$button>\n\n<$button message=\"tm-open-external-window\" param=\"http://tiddlywiki.com\" >\nOpen ~TiddlyWiki - Button\n</$button>'/>"
},
"WidgetMessage: tm-open-window": {
"title": "WidgetMessage: tm-open-window",
"caption": "tm-open-window",
"created": "20160424181447704",
"modified": "20190704145627537",
"tags": "Messages",
"type": "text/vnd.tiddlywiki",
"text": "The `tm-open-window` message opens a tiddler in a new //browser// window. If no parameters are specified, the current tiddler is opened in a new window. Similiar to `tm-modal` any additional parameters passed via the <<.param \"paramObject\">> are being provided as variables to the new window.\n\n|!Name |!Description |\n|param |Title of the tiddler to be opened in a new browser window, defaults to <<.var \"currentTiddler\">> if empty |\n|template |Template in which the tiddler will be rendered in |\n|windowTitle |Title string for the opened window |\n|width |Width of the new browser window |\n|height |Height of the new browser window |\n|paramObject |Hashmap of variables that will be provided to the window |\n\n\nThe `tm-open-window` message is usually generated with the ButtonWidget and is handled by the core itself.\n"
},
"WidgetMessage: tm-perform-import": {
"title": "WidgetMessage: tm-perform-import",
"created": "20140716084242809",
"modified": "20140716084341303",
"tags": "Messages navigator-message",
"type": "text/vnd.tiddlywiki",
"caption": "tm-perform-import",
"text": "The perform import message copies tiddlers from a specified plugin into the main store. See the UpgradeMechanism for an overview of how it is used by the core.\n\n|!Name |!Description |\n|param |Title of the pending import tiddler. Defaults to ''$:/Import'' |\n\nTo select which tiddlers are to be imported, fields with names formed from `selection-` plus the title of the tiddler are used. The value ''unchecked'' causes the tiddler to be skipped from the import.\n\nThe perform import message is usually generated with the ButtonWidget and is handled by the NavigatorWidget.\n"
},
"WidgetMessage: tm-permalink": {
"title": "WidgetMessage: tm-permalink",
"created": "20140723103751357",
"modified": "20140723103751357",
"tags": "Messages",
"type": "text/vnd.tiddlywiki",
"caption": "tm-permalink",
"text": "The `tm-permalink` message changes the browser address bar to form a [[permalink|PermaLinks]] to a specified tiddler, defaulting to the current tiddler.\n\nThe permalink message supports the following properties on the `event` object:\n\n|!Name |!Description |\n|param |Title of the tiddler to be permalinked |\n|tiddlerTitle |The current tiddler (used by default if the tiddler title isn't specified in the `param`) |\n\nThe permalink message can be generated by the ButtonWidget, and is handled by the story mechanism.\n"
},
"WidgetMessage: tm-permaview": {
"title": "WidgetMessage: tm-permaview",
"created": "20140723103751357",
"modified": "20140723103751357",
"tags": "Messages",
"type": "text/vnd.tiddlywiki",
"caption": "tm-permaview",
"text": "The `tm-permaview` message changes the browser address bar to form a [[permaview|PermaLinks]] that specifies all the open tiddlers in the main story river, and the tiddler to be navigated, defaulting to the current tiddler.\n\nThe permaview message supports the following properties on the `event` object:\n\n|!Name |!Description |\n|param |Title of the tiddler to be navigated within the permaview |\n|tiddlerTitle |The current tiddler (used by default if the tiddler title isn't specified in the `param`) |\n\nThe permaview message can be generated by the ButtonWidget, and is handled by the story mechanism.\n"
},
"WidgetMessage: tm-print": {
"title": "WidgetMessage: tm-print",
"created": "20161008085627406",
"modified": "20161008085627406",
"tags": "Messages",
"type": "text/vnd.tiddlywiki",
"caption": "tm-print",
"text": "<<.from-version \"5.1.14\">> The `tm-print` message causes the browser to display the print dialog for the current page. It does not require any properties on the `event` object.\n\nThe print message is usually generated with the ButtonWidget and is handled by the core.\n"
},
"WidgetMessage: tm-remove-field": {
"title": "WidgetMessage: tm-remove-field",
"created": "20140908185153663",
"modified": "20140908185153663",
"tags": "Messages",
"type": "text/vnd.tiddlywiki",
"caption": "tm-remove-field",
"text": "The `tm-remove-field` message is handled by the FieldManglerWidget. It removes the specified field.\n\n|!Name |!Description |\n|param |Name of field to remove |\n\nThe remove field message is usually generated with the ButtonWidget, and is handled by the FieldManglerWidget.\n"
},
"WidgetMessage: tm-remove-tag": {
"title": "WidgetMessage: tm-remove-tag",
"created": "20140908185153663",
"modified": "20140908185153663",
"tags": "Messages",
"type": "text/vnd.tiddlywiki",
"caption": "tm-remove-tag",
"text": "The `tm-remove-tag` message is handled by the FieldManglerWidget. It removes the specified tag.\n\n|!Name |!Description |\n|param |Name of tag to remove |\n\nThe remove tag message is usually generated with the ButtonWidget, and is handled by the FieldManglerWidget.\n"
},
"WidgetMessage: tm-save-tiddler": {
"title": "WidgetMessage: tm-save-tiddler",
"created": "20140226090544323",
"modified": "20140226090729828",
"tags": "Messages navigator-message",
"type": "text/vnd.tiddlywiki",
"caption": "tm-save-tiddler",
"text": "The `tm-save-tiddler` message is applied to draft tiddlers. It saves the draft over the tiddler identified in the `draft.of` field and then deletes the draft. The save tiddler message requires the following properties on the `event` object:\n\n|!Name |!Description |\n|param |Title of the tiddler that is being switched out of edit mode |\n|tiddlerTitle |Fallback title that is used if ''param'' isn't specified (automatically set by the ButtonWidget) |\n\nThe save tiddler message is usually generated with the ButtonWidget and is handled by the NavigatorWidget.\n"
},
"WidgetMessage: tm-save-wiki": {
"title": "WidgetMessage: tm-save-wiki",
"created": "20140811112325641",
"modified": "20141110133723696",
"tags": "Messages",
"type": "text/vnd.tiddlywiki",
"caption": "tm-save-wiki",
"text": "The save wiki message causes the current saver module to perform a full save operation. The save operation can involve user interaction. It requires the following properties on the `event` object:\n\n|!Name |!Description |\n|param |Title of a tiddler to use as a template for rendering the wiki (defaults to `$:/core/save/all`) |\n|paramObject |Optional hashmap of variable values to use for the rendering |\n\nThe save wiki message is usually generated by the ButtonWidget.\n\nThe save wiki message is handled by the TiddlyWiki core SyncMechanism which invokes the current [[SaverModule|SaverModules]].\n"
},
"WidgetMessage: tm-scroll": {
"title": "WidgetMessage: tm-scroll",
"caption": "tm-scroll",
"created": "20160425000906330",
"modified": "20160425001655166",
"tags": "Messages",
"type": "text/vnd.tiddlywiki",
"text": "The `tm-scroll` message causes the surrounding scrollable container to scroll to the specified DOM node into view. The `tm-scroll` is handled in various places in the core itself, but can also be handled by a [[ScrollableWidget]].\n\n|!Name |!Description |\n|target |Target DOM node the scrollable container should scroll to. |\n\nDue to the nature of the parameter, the `tm-scroll` can only be generated within javascript code.\n"
},
"WidgetMessage: tm-server-refresh": {
"title": "WidgetMessage: tm-server-refresh",
"created": "20140811112435281",
"modified": "20140811113453568",
"tags": "Messages",
"type": "text/vnd.tiddlywiki",
"caption": "tm-server-refresh",
"text": "The server refresh message attempts to synchronise the latest changes to the current serverside host.\n\nThe server refresh message is handled by the TiddlyWiki core SyncMechanism which invokes the current [[SyncAdaptorModule|SyncAdaptorModules]] (typically the ''tiddlywiki/tiddlywebadaptor'' plugin).\n"
},
"WidgetMessage: tm-set-password": {
"title": "WidgetMessage: tm-set-password",
"created": "20140226084623977",
"modified": "20140226085200323",
"tags": "Messages",
"type": "text/vnd.tiddlywiki",
"caption": "tm-set-password",
"text": "The `tm-set-password` message prompts the user for a new password and stores it in the password vault, replacing any existing password. It also sets the [[$:/isEncrypted]] tiddler. See EncryptionMechanism for details.\n\nThis message is typically generated with the ButtonWidget, and is handled by the core itself.\n"
},
"WidgetMessage: tm-unfold-all-tiddlers": {
"title": "WidgetMessage: tm-unfold-all-tiddlers",
"caption": "tm-unfold-all-tiddlers",
"created": "20160424233133261",
"modified": "20160424233427308",
"tags": "Messages",
"type": "text/vnd.tiddlywiki",
"text": "The `tm-unfold-all-tiddlers` message unfolds all tiddlers in the current story list. It does so by setting the text of a state tiddler to either \"<<.value \"show\">>\" or \"<<.value \"hide\">>\", according to the fold state.\n\n|!Name |!Description |\n|foldedStatePrefix |Prefix for the state tiddler in which the fold state is stored. |\n\n<<.tip \"The core uses a foldStatePrefix of '$:/state/folded/' to store the fold states for the default story view.\">>\n<<.warning \"The state tiddlers title is computed as 'foldStatePrefix + TiddlerTitle'. If the foldStatePrefix is not set, it will overwrite the text of the tiddler(s) itself, resulting in data loss. \">>\n\nThe `tm-unfold-all-tiddlers` message is usually generated with the ButtonWidget and is handled by the surrounding NavigatorWidget.\n"
},
"Building TiddlyWikiClassic": {
"title": "Building TiddlyWikiClassic",
"created": "20131129094452285",
"modified": "20140912141658212",
"tags": "[[TiddlyWiki on Node.js]]",
"type": "text/vnd.tiddlywiki",
"text": "TiddlyWiki5 can be used to build older 2.x.x versions of TiddlyWikiClassic from their constituent components. Doing so involves these features:\n\n* The `tiddlywiki/classictools` plugin, containing a deserializer module which allows tiddlers to be loaded from TiddlyWiki 2.x.x `.recipe` files\n* The `stripcomments` format for the ViewWidget, which strips single line JavaScript comments starting `//#`\n* The `stripTitlePrefix='yes'` attribute of the FieldsWidget, which removes prefixes wrapped in curly braces from the `title` attribute\n** For example, `{tiddler}HelloThere` would be transformed to `HelloThere`\n\n! Usage\n\nTiddlyWikiClassic is built from the command line by running [[TiddlyWiki on Node.js]]. A typical usage would be:\n\n```\nnode ../../tiddlywiki.js \\\n\t--verbose \\\n\t--load <path_to_recipe_file> \\\n\t--rendertiddler $:/core/templates/tiddlywiki2.template.html <path_to_write_index_file> text/plain \\\n\t|| exit 1\n```\n\n"
},
"Customising Tiddler File Naming": {
"title": "Customising Tiddler File Naming",
"created": "20160424181300000",
"modified": "20160424181300000",
"tags": "[[TiddlyWiki on Node.js]]",
"type": "text/vnd.tiddlywiki",
"text": "By default, a [[TiddlyWiki on Node.js]] instance using a [[wiki folder|TiddlyWikiFolders]] will create new tiddler files by using the sanitised and disambiguated title as filename.\n\nThis can be customised by creating a tiddler [[$:/config/FileSystemPaths]] containing one or more [[filter expressions|Filter Syntax]], each on a line of its own. Newly created tiddlers are matched to each filter in turn, and the first output of the first filter to produce any output is taken as a logical path to be used for the tiddler file. Logical paths don't include the `.tid` extension, and they can use `/` or `\\` as directory separator (when generating the physical path, this is replaced by the correct separator for the platform ~TiddlyWiki is running on). If none of the filters matches, the logical path is simply the title with all occurences of `/` replaced by `_` (for backwards compatibility).\n\nIn both cases, the characters `<>:\"\\|?*^` are replaced by `_` in order to guarantee that the resulting path is legal on all supported platforms.\n\n!! Example\n\n```\n[is[system]removeprefix[$:/]addprefix[_system/]]\n[tag[task]addprefix[mytasks/]]\n[!has[draft.of]]\n```\n\nThis will store newly created system tiddlers in `tiddlers/_system` (after stripping the `$:/` prefix), tiddlers tagged [[task]] in a subdirectory `tiddlers/mytasks`, and also create subdirectory structures for all other non-draft tiddlers.\n\nThus, $:/config/FileSystemPaths itself will end up in `tiddlers/_system/config/FileSystemPaths.tid` or `tiddlers\\_system\\config\\FileSystemPaths.tid`, depending on the platform.\n\nThe final `[!has[draft.of]]` will match all remaining non-draft tiddlers. Because there was a match, any `/` or `\\` in the tiddler title is mapped to a path separator. Thus, `some/thing/entirely/new` will be saved to `tiddlers/some/thing/entirely/new.tid` (ie, the file `new.tid` in a directory called `entirely`).\n"
},
"Environment Variables on Node.js": {
"title": "Environment Variables on Node.js",
"created": "20140617211749290",
"modified": "20140912141809800",
"tags": "[[TiddlyWiki on Node.js]]",
"type": "text/vnd.tiddlywiki",
"text": "[[TiddlyWiki on Node.js]] supports the following OS environment variables for specifying a delimited list of paths to search for plugins and editions:\n\n* `TIDDLYWIKI_PLUGIN_PATH` - Search path for ordinary plugins\n* `TIDDLYWIKI_THEME_PATH` - Search path for themes\n* `TIDDLYWIKI_LANGUAGE_PATH` - Search path for languages\n* `TIDDLYWIKI_EDITION_PATH` - Search path for editions (used by the InitCommand)\n\n''Note'': The delimiter may vary between operating systems. While on Windows a semicolon `;` is used, Linux implements a colon `:`.\n\nThe additional paths should each point to folders structured like the equivalent directories in the TiddlyWiki5 GitHub repository: the plugin, theme and language directories contain `publisher/pluginname/<files>` while the edition directories contain `editionname/<files>`\n\nFor example:\n\n```\nTIDDLYWIKI_PLUGIN_PATH=~/MyPluginStore\ntiddlywiki mywiki --build index\n```\n"
},
"Installing TiddlyWiki Prerelease on Node.js": {
"title": "Installing TiddlyWiki Prerelease on Node.js",
"created": "20150926162849519",
"modified": "20180701185329863",
"tags": "[[Installing TiddlyWiki on Node.js]]",
"type": "text/vnd.tiddlywiki",
"text": "# Clone a local copy of the TiddlyWiki5 GitHub repository from https://github.com/Jermolene/TiddlyWiki5\n# Open a command line terminal and change the current working directory to the root of the TiddlyWiki5 repo\n# Type `npm link` (Windows) or `sudo npm link` (Mac/Linux) to tell [[npm]] to use this copy of the repo as the globally installed one\n# Inside the root, you can launch ~TiddlyWiki like this: <br/>``tiddlywiki editions/tw5.com-server --listen``\n\nAfter this procedure you can work with TiddlyWiki5 via [[npm]] as though it had been installed in the usual way with `npm install -g tiddlywiki`.\n\nUpdate the clone from time to time in order to ensure that you have the latest code.\n"
},
"Installing TiddlyWiki on Node.js": {
"title": "Installing TiddlyWiki on Node.js",
"caption": "Node.js",
"created": "20131219100608529",
"delivery": "DIY",
"description": "Flexible hosting on your own machine or in the cloud",
"method": "sync",
"modified": "20180701185303780",
"tags": "Saving [[TiddlyWiki on Node.js]] Windows Mac Linux",
"type": "text/vnd.tiddlywiki",
"text": "# Install [[Node.js]]\n#* either from your favourite package manager: typically `apt-get install nodejs` on Debian/Ubuntu Linux or [[Termux for Android|Serving TW5 from Android]], or `brew install node` on a Mac\n#* or directly from http://nodejs.org\n# Open a command line terminal and type:\n#> `npm install -g tiddlywiki`\n#> If it fails with an error you may need to re-run the command as an administrator:\n#> `sudo npm install -g tiddlywiki` (Mac/Linux)\n# Check TiddlyWiki is installed by typing:\n#> `tiddlywiki --version`\n# In response, you should see TiddlyWiki report its current version (eg \"<<version>>\"; you may also see other debugging information reported)\n# Try it out:\n## `tiddlywiki mynewwiki --init server` to create a folder for a new wiki that includes server-related components\n## `tiddlywiki mynewwiki --listen` to start TiddlyWiki\n## Visit http://127.0.0.1:8080/ in your browser\n## Try editing and creating tiddlers\n# Optionally, make an offline copy:\n#* click the {{$:/core/images/save-button}} ''save changes'' button in the sidebar, ''OR''\n#* `tiddlywiki mynewwiki --build index`\n\nThe `-g` flag causes TiddlyWiki to be installed globally. Without it, TiddlyWiki will only be available in the directory where you installed it.\n\nIf you are using Debian or Debian-based Linux and you are receiving a `node: command not found` error though node.js package is installed, you may need to create a symbolic link between `nodejs` and `node`. Consult your distro's manual and `whereis` to correctly create a link. See github [[issue 1434|http://github.com/Jermolene/TiddlyWiki5/issues/1434]]\n\nExample Debian v8.0: `sudo ln -s /usr/bin/nodejs /usr/bin/node`\n\nYou can also install prior versions like this:\n\n> npm install -g tiddlywiki@5.1.13\n\n"
},
"Naming of System Tiddlers": {
"title": "Naming of System Tiddlers",
"created": "20140112190154121",
"modified": "20140912142655205",
"tags": "SystemTiddlers",
"type": "text/vnd.tiddlywiki",
"text": "The system tiddlers provided as part of the core are named according to the following rules:\n\n|!Namespace |!Format |!Description |\n|`$:/*` |~CamelCase |Root user interface tiddlers (eg control panel, advanced search) |\n|`$:/config/*` |~CamelCase |User-oriented configuration setting |\n|`$:/core/images/*` |hyphen-case |Core images |\n|`$:/core/modules/*` |lowercase |JavaScript module tiddlers |\n|`$:/core/save/*` |lowercase |Saving templates for creating TiddlyWiki documents |\n|`$:/core/templates/*` |//inconsistent// |Templates needed for TiddlyWiki to operate. Currently uses a mix of dashes and periods to separate words |\n|`$:/core/ui/*` |//inconsistent// |Tiddlers comprising the default user interface of TiddlyWiki. Currently uses a mix of ~CamelCase and lowercase naming conventions |\n|`$:/core/wiki/*` |lowercase |Metadata about the entire wiki |\n|`$:/docs/*` |lowercase |Documentation tiddlers |\n|`$:/messages/*` |~CamelCase |System messages |\n|`$:/plugins/*` |lowercase |Plugin tiddlers, and plugin content |\n|`$:/snippets/*` |//inconsistent// |Reusable snippets (will be replaced by macros) |\n|`$:/state/*` |lowercase |User interface state tiddlers |\n|`$:/tags/*` |~CamelCase |User interface configuration tags |\n|`$:/temp/*` |lowercase |Temporary tiddlers that shouldn't be saved |\n|`$:/themes/*` |lowercase |Theme plugins |\n\nIn the format column:\n\n* ''hyphen-case'' refers to joining multiple lowercase words with hyphens\n* ''~CamelCase'' refers to directly joining multiple lowercase words with initial uppercase letters\n* ''lowercase'' refers to directly joining multiple lowercase words\n* ''inconsistent'' marks namespaces that are currently titled inconsistently\n"
},
"Scripts for TiddlyWiki on Node.js": {
"title": "Scripts for TiddlyWiki on Node.js",
"created": "20131219100637788",
"modified": "20141015165343893",
"tags": "[[TiddlyWiki on Node.js]]",
"type": "text/vnd.tiddlywiki",
"text": "! Script Files\n\nThe TiddlyWiki5 repository contains several scripts in the `bin` folder that you can use to automate common tasks, or as a useful starting point for your own scripts. See [[Scripts for building tiddlywiki.com]] for details of the scripts used to build and release https://tiddlywiki.com/.\n\nAll the scripts expect to be run from the root folder of the repository.\n\n!! `serve`: serves tw5.com\n\n```\n./bin/serve.sh -h\n./bin/serve.sh [edition dir] [username] [password] [host] [port]\n```\n\nOr:\n\n```\n./bin/serve.cmd -h\n./bin/serve.cmd [edition dir] [username] [password] [host] [port]\n```\n\nThis script starts TiddlyWiki5 running as an HTTP server, defaulting to the content from the `tw5.com-server` edition. By default, the Node.js serves on port 8080. If the optional `username` parameter is provided, it is used for signing edits. If the `password` is provided then HTTP basic authentication is used. Run the script with the `-h` parameter to see online help.\n\nTo experiment with this configuration, run the script and then visit `http://127.0.0.1:8080` in a browser.\n\nChanges made in the browser propagate to the server over HTTP (use the browser developer console to see these requests). The server then syncs changes to the file system (and logs each change to the screen).\n\n!! `test`: build and run tests\n\nThis script runs the `test` edition of TiddlyWiki on the server to perform the server-side tests and to build `test.html` for running the tests in the browser.\n\n!! `lazy`: serves tw5.com with lazily loaded images\n\n```\n./bin/lazy.sh <username> [<password>]\n```\n\nOr:\n\n```\n./bin/lazy.cmd <username> [<password>]\n```\n\nThis script serves the `tw5.com-server` edition content with LazyLoading applied to images.\n"
},
"Serving TW5 from Android": {
"title": "Serving TW5 from Android",
"created": "20160602043529506",
"modified": "20160602043531313",
"tags": "[[TiddlyWiki on Node.js]]",
"type": "text/vnd.tiddlywiki",
"text": "[[Termux|https://termux.com/]] is an open source Android application that combines a Linux system and a terminal.\n\nOnce you open //Termux// on your Android system, it is straightforward to [[install|Installing TiddlyWiki on Node.js]] and [[run|Using TiddlyWiki on Node.js]] the [[Node.js flavour of TiddlyWiki|TiddlyWiki on Node.js]] from the command line. \n\nFrom then on, as long as //Termux// is not closed, you may access your wiki anytime from your favourite Web browser pointing on the expected address and port.\n\n> __note to contributors__: in //Termux//, you may as well install //git//, //emacs// or //vi//, in order to edit and maintain individual tiddler files. This would probably require that you also attach a more powerful keyboard to your Android, like the [[Hacker's Keyboard|https://github.com/klausw/hackerskeyboard/]] application or a Bluetooth external device."
},
"TiddlyWiki on Node.js": {
"title": "TiddlyWiki on Node.js",
"created": "20131129094353704",
"modified": "20150412185457193",
"tags": "Platforms",
"type": "text/vnd.tiddlywiki",
"text": "Running TiddlyWiki on [[Node.js]] brings several important benefits over and above the single file version:\n\n* You can edit your content on any suitably compatible HTML5 browser, including smartphones and tablets\n* Individual tiddlers are stored in separate files, which you can organise as you wish\n* The ability to build multiple wikis that blend different combinations of shared and unique content\n\nThere are a few file system limitations you should be aware of that are related to how TiddlyWiki was designed:\n\n* The best, most general way to interact with a running wiki is via the HTTP or JavaScript API, rather than manipulating the file store directly\n* Any modification to the contents of the wiki folder (e.g. images) might thus sometimes require that your restart the node.js server\n* TiddlyWiki might support manipulating the file store directly in the future\n\nFor more information see:\n\n* [[Installing TiddlyWiki on Node.js]]\n* [[Using TiddlyWiki on Node.js]]\n* [[Upgrading TiddlyWiki on Node.js]]\n"
},
"TiddlyWiki5 Versioning": {
"title": "TiddlyWiki5 Versioning",
"created": "20131202081424080",
"modified": "20140912142600317",
"tags": "[[Releases]]",
"type": "text/vnd.tiddlywiki",
"text": "Each release of TiddlyWiki5 is identified by a version number that complies with the [[Semantic Versioning 2.0.0|http://semver.org/]] standard.\n\n! TiddlyWiki Core Version\n\nAccording to the standard:\n\n```\nGiven a version number MAJOR.MINOR.PATCH, increment the:\n\nMAJOR version when you make incompatible API changes,\nMINOR version when you add functionality in a backwards-compatible manner, and\nPATCH version when you make backwards-compatible bug fixes.\nAdditional labels for pre-release and build metadata are available as extensions to the MAJOR.MINOR.PATCH format.\n```\n\n!! Alpha and Beta versions\n\nWhile in alpha TiddlyWiki5 uses the pre-release label \"alpha\", for example:\n\n```\n5.0.1-alpha\n```\n\nEach new alpha or beta release will bump the `PATCH` version number. This breaks the strict semantics of versioning because `PATCH` increments are supposed to be reserved for compatible changes.\n\n//Note that prior to ''5.0.1-alpha'', TiddlyWiki5 used version numbers formatted as ''5.0.0-alpha.19''. The change was made to enable the upgrade mechanism to recognise plugin updates from the version information.//\n\n!! Interim versions\n\nDuring development when a new release is being prepared, the pre-release label is set to `prerelease`.\n\n! Plugin Versions\n\nVersion numbers\n\nTiddlyWiki5 uses the version information attached to plugins for determining which of two plugins is more recent during an upgrade or import. The pre-release label is ignored when performing these comparisons.\n"
},
"Upgrading TiddlyWiki on Node.js": {
"title": "Upgrading TiddlyWiki on Node.js",
"created": "20131219100544073",
"modified": "20140912141800426",
"tags": "[[TiddlyWiki on Node.js]]",
"type": "text/vnd.tiddlywiki",
"text": "If you've installed [[TiddlyWiki on Node.js]] on the usual way, when a new version is released you can upgrade it with this command:\n\n```\nnpm update -g tiddlywiki\n```\n\nOn Mac or Linux you'll need to add ''sudo'' like this:\n\n```\nsudo npm update -g tiddlywiki\n```\n"
},
"Using TiddlyWiki on Node.js": {
"title": "Using TiddlyWiki on Node.js",
"created": "20131219100520659",
"modified": "$tw.loadPluginFolder(name.substring(1));",
"tags": "[[TiddlyWiki on Node.js]]",
"type": "text/vnd.tiddlywiki",
"text": "TiddlyWiki5 includes a set of [[Commands]] for use on the command line to perform an extensive set of operations based on TiddlyWikiFolders, TiddlerFiles and TiddlyWikiFiles.\n\nFor example, the following command loads the tiddlers from a TiddlyWiki HTML file and then saves one of them in static HTML:\n\n```\ntiddlywiki --verbose --load mywiki.html --rendertiddler ReadMe ./readme.html\n```\n\nRunning `tiddlywiki` from the command line boots the TiddlyWiki kernel, loads the core plugins and establishes an empty wiki store. It then sequentially processes the command line arguments from left to right. The arguments are separated with spaces.\n\n<<.from-version \"5.1.20\">> First, there can be zero or more plugin references identified by the prefix `+` for plugin names or `++` for a path to a plugin folder. These plugins are loaded in addition to any specified in the [[TiddlyWikiFolder|TiddlyWikiFolders]].\n\nThe next argument is the optional path to the [[TiddlyWikiFolder|TiddlyWikiFolders]] to be loaded. If not present, then the current directory is used.\n\nThe commands and their individual arguments follow, each command being identified by the prefix `--`.\n\n```\ntiddlywiki [+<pluginname> | ++<pluginpath>] [<wikipath>] [--<command> [<arg>[,<arg>]]]\n```\n\nFor example:\n\n```\ntiddlywiki --version\ntiddlywiki +plugins/tiddlywiki/filesystem +plugins/tiddlywiki/tiddlyweb mywiki --listen\ntiddlywiki ++./mygreatplugin mywiki --listen\n```\n\n<<.from-version \"5.1.18\">> Commands such as the ListenCommand that support large numbers of parameters can use NamedCommandParameters to make things less unwieldy. For example:\n\n```\ntiddlywiki wikipath --listen username=jeremy port=8090\n```\n\nSee [[Commands]] for a full listing of the available commands.\n"
},
"Working with the TiddlyWiki5 repository": {
"title": "Working with the TiddlyWiki5 repository",
"created": "20131219100444289",
"modified": "20140920134404247",
"tags": "[[TiddlyWiki on Node.js]]",
"type": "text/vnd.tiddlywiki",
"text": "! Introduction\n\nIf you want to [[contribute|Contributing]] to TiddlyWiki's development, rather than [[installing TiddlyWiki in the usual way|Installing TiddlyWiki on Node.js]], you can work directly with the GitHub repository. \n\nMario Pietsch has created a [[short video introduction|Working with the TiddlyWiki5 repository video]].\n\n! Setting Up\n\n# Create an account on GitHub if you don't already have one\n# Fork the TiddlyWiki5 GitHub repository from https://github.com/Jermolene/TiddlyWiki5\n# Clone a local copy of your fork\n# Open a command line terminal and change the current working directory to the root of the repo\n# Type `npm link` (Windows) or `sudo npm link` (Mac/Linux) to tell [[npm]] to use this copy of the repo as the globally installed one\n\nAfter this procedure you can work with TiddlyWiki5 via [[npm]] as though it were installed in the usual way with `npm install -g tiddlywiki`.\n\nSee also [[Scripts for TiddlyWiki on Node.js]].\n"
},
"tiddlywiki.files Files": {
"title": "tiddlywiki.files Files",
"created": "20161015114118243",
"modified": "20161015170604353",
"tags": "TiddlyWikiFolders",
"type": "text/vnd.tiddlywiki",
"text": "! Introduction\n\nA `tiddlywiki.files` JSON file in a sub-folder within [[a TiddlyWiki folder|TiddlyWikiFolders]] overrides the usual logic for recursively scanning the folder for tiddler files. Instead, the `tiddlywiki.files` file specifies instructions for loading tiddlers from specific files and folders.\n\nThe format of the file is an object with two optional properties:\n\n* ''tiddlers'' - an array of objects describing external files with the ability to override or modify any of the fields read from the file\n* ''directories'' - an array of objects describing external directories, a filter determining which files within those directories should be processed, and the ability to override or modify any of the fields read from the file\n\nNote that significant enhancements to `tiddlywiki.files` processing were introduced in [[Release 5.1.14]].\n\n!! Field overrides\n\nBoth the ''tiddlers'' and ''directories'' sections of `tiddlywiki.files` files include the ability to override or customise the values of fields with a `fields` object.\n\nEach field can be specified as either a ''string'' or ''array'' value to be assigned directly to the field, or <<.from-version \"5.1.14\">> an ''object'' describing how to generate the value for the field. The object contains the following properties:\n\n* ''source'' - (optional) a string specifying the source value for the field. If not specified, the existing value is used\n** //filename// the filename of the file containing the tiddler\n** //filename-uri-decoded// the filename of the file containing the tiddler, with [[URI decoding|https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/decodeURIComponent]] applied\n** //basename// the filename of the file containing the tiddler without any extension\n** //basename-uri-decoded// the filename of the file containing the tiddler without any extension, with [[URI decoding|https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/decodeURIComponent]] applied\n** //extname// the extension of the filename of the file containing the tiddler\n** //created// the creation date/time of the file containing the tiddler\n** //modified// the modification date/time of the file containing the tiddler\n* ''prefix'' - (optional) a string to be prepended to the value of the field\n* ''suffix'' - (optional) a string to be appended to the value of the field\n\n! Tiddlers section\n\nThe file specifications in the `tiddlers` array support the following properties:\n\n* ''file'': (required) the absolute or relative path to the file containing the tiddler data (relative paths are interpreted relative to the path of the `tiddlywiki.files` file)\n* ''isTiddlerFile'': (optional) if `true`, the file will be treated as a [[tiddler file|TiddlerFiles]] and deserialised to extract the tiddlers. Otherwise, the raw content of the file is assigned to the `text` field without any parsing\n* ''fields'': (optional) an object containing values that override or customise the fields provided in the tiddler file (see above)\n* ''prefix'' & ''suffix'': (optional) strings to be prefixed and suffixed to the tiddler `text` field\n*> Note that providing a ''prefix'' here is equivalent to setting the `text` field of the ''fields'' object to `{\"prefix\":\"<prefixvalue>\"}`.\n\n! Directories section\n\nDirectory specifications in the `directories` array may take the following forms:\n\n* a ''string'' literal, specifying the absolute or relative path to the directory containing the tiddler files (relative paths are interpreted relative to the path of the `tiddlywiki.files` file). The directory is recursively searched for tiddler files\n* <<.from-version \"5.1.14\">> an ''object'' with the following properties:\n** ''path'' - (required) the absolute or relative path to the directory containing the tiddler files (relative paths are interpreted relative to the path of the `tiddlywiki.files` file). Note that the directory is not recursively searched; sub-directories are ignored\n** ''filesRegExp'' - (optional) a [[regular expression|https://developer.mozilla.org/en/docs/Web/JavaScript/Guide/Regular_Expressions]] that matches the filenames of the files that should be processed within the directory\n** ''isTiddlerFile'' - (required) if `true`, the file will be treated as a [[tiddler file|TiddlerFiles]] and deserialised to extract the tiddlers. Otherwise, the raw content of the file is assigned to the `text` field without any parsing\n** ''fields'' - (required) an object containing values that override or customise the fields provided in the tiddler file (see above)\n\nFields can be overridden for particular files by creating a file with the same name plus the suffix `.meta` -- see TiddlerFiles.\n\n! Examples\n\nThese example `tiddlywiki.files` must be placed in their own sub-directory of the [[wiki folder|TiddlyWikiFolders]].\n\nThere are also several examples of `tiddlywiki.files` files in the main [[TiddlyWiki 5 GitHub repository|https://github.com/Jermolene/TiddlyWiki5]]. \n\n!! Importing a folder of PDFs\n\nThis example retrieves all the files with the extension `.pdf` from a folder specified by a relative path. Each tiddler is set up for LazyLoading with the following fields:\n\n* ''title'' - set to the URI decoded base filename of the PDF file. [[URI decoding|https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/decodeURIComponent]] allows characters like \"/\" to be included in titles by URI encoding them as \"%2F\"\n* ''created'' - set to the creation date/time of the PDF file\n* ''modified'' - set to the modification date/time of the PDF file\n* ''type'' - set to `application/pdf`\n* ''tags'' - set to `$:/tags/AttachedFile`\n* ''text'' - set to an empty string\n* ''_canonical_uri'' - set to the string \"pdfs/\" concatenated with the filename\n\n```\n{\n \"directories\": [\n {\n \"path\": \"../../../input/pdfs\",\n \"filesRegExp\": \"^.*\\\\.pdf$\",\n \"isTiddlerFile\": false,\n \"fields\": {\n \"title\": {\"source\": \"basename-uri-decoded\"},\n \"created\": {\"source\": \"created\"},\n \"modified\": {\"source\": \"modified\"},\n \"type\": \"application/pdf\",\n \"tags\": [\"$:/tags/AttachedFile\"],\n \"text\": \"\",\n \"_canonical_uri\": {\"source\": \"filename\", \"prefix\": \"pdfs/\"}\n }\n }\n ]\n}\n```\n"
},
"tiddlywiki.info Files": {
"title": "tiddlywiki.info Files",
"created": "20161015114042793",
"modified": "20161015121622327",
"tags": "TiddlyWikiFolders",
"type": "text/vnd.tiddlywiki",
"text": "[[TiddlyWikiFolders]] are configured with a single `tiddlywiki.info` file in the root of the wiki folder. It should contain a JSON object comprising the following properties:\n\n* ''plugins'' - an array of plugin names to be included in the wiki\n* ''themes'' - an array of theme names to be included in the wiki\n* ''languages'' - an array of language names to be included in the wiki\n* ''includeWikis'' - an array of references to external wiki folders to be included in the wiki\n* ''build'' - a hashmap of named build targets, each defined by an array of command tokens (see BuildCommand)\n* ''config'' - an optional hashmap of configuration options (see below)\n\n!!! ''includeWikis''\n\nThe entries in the ''includeWikis'' array can be either a string specifying the relative path to the wiki, or an object with the following fields:\n\n* ''path'' - relative path to wiki folder\n* ''read-only'' - set //true// to prevent the tiddlers in the included wiki from being modified. The modifications will be written to the directory specified in ''default-tiddler-location'', described below\n\n!!! ''build''\n\nNote that the build targets of included wikis are merged if a target of that name isn't defined in the current `tiddlywiki.info` file.\n\n!!! ''config''\n\nConfiguration options include:\n\n* ''default-tiddler-location'' - a string path to the default location for the filesystem adaptor to save new tiddlers (resolved relative to the wiki folder)\n\n* ''retain-original-tiddler-path'' - If true, the server will generate a tiddler [[$:/config/OriginalTiddlerPaths]] containing the original file paths of each tiddler in the wiki\n\n!!! Example\n\nFor example:\n\n```\n{\n\t\"plugins\": [\n\t\t\"tiddlywiki/tiddlyweb\",\n\t\t\"tiddlywiki/filesystem\"\n\t],\n\t\"includeWikis\": [\n\t\t{\"path\": \"../tw5.com\", \"read-only\": true}\n\t],\n\t\"build\": {\n\t\t\"index\": [\n\t\t\t\"--rendertiddler\",\"$:/core/save/all\",\"index.html\",\"text/plain\"],\n\t\t\"favicon\": [\n\t\t\t\"--savetiddler\",\"$:/favicon.ico\",\"favicon.ico\",\n\t\t\t\"--savetiddler\",\"$:/green_favicon.ico\",\"static/favicon.ico\"]\n\t},\n\t\"config\": {\n\t\t\"retain-original-tiddler-path\": true\t\n\t}\n}\n```\n"
},
"Beaker Browser": {
"title": "Beaker Browser",
"created": "20161229113910984",
"modified": "20171113110222980",
"type": "text/vnd.tiddlywiki",
"text": "From [[Beaker Browser website|https://beakerbrowser.com/]]:\n\n> Beaker is a Peer-to-Peer Web Browser, made for users to run applications independently of hosts. Using P2P Hypermedia, Beaker separates frontend apps from backend services, so that users are completely in control of their software and data. Read more.\n\nBeaker is a fork of the open source Chromium browser (which is the core engine powering Google's Chrome browser). \n\nBeaker adds the ability to host sites within the browser, and browse to those sites via the `dat://` protocol. The extraordinary thing is that if you are running Beaker then you can also browse to sites hosted by other users, without needing any server in between.\n\nFurther, you can opt to host a site belonging to somebody else, forming part of a Bittorrent-like swarm of peers serving the content to other browsers. You can also //fork// a site, making your own copy that you can change as you need.\n\nThe main disadvantage is that mainstream browsers cannot use `dat://` sites.\n\nMost of the magic is accomplished by the underlying [[Dat protocol|https://datproject.org/]].\n\n<<.from-version \"5.1.14\">> TiddlyWiki incorporates a special saver module permitting changes to be saved directly from Beaker browser. See [[Saving on Beaker Browser]] for instructions.\n\n"
},
"Platforms": {
"title": "Platforms",
"created": "20150412185300152",
"modified": "20150412185427211",
"tags": "TableOfContents",
"type": "text/vnd.tiddlywiki",
"text": "TiddlyWiki can be used on several platforms:\n\n<<list-links \"[tag[Platforms]]\">>\n"
},
"TiddlyFox Apocalypse": {
"title": "TiddlyFox Apocalypse",
"created": "20171109170823847",
"modified": "20171113161750857",
"tags": "Platforms",
"type": "text/vnd.tiddlywiki",
"text": "! Summary\n\nOn 14th November 2017 Mozilla [[released Firefox 57|https://blog.mozilla.org/blog/2017/09/26/firefox-quantum-beta-developer-edition/]], a major new version with many improvements and security enhancements. However, in amongst those improvements are ''some fundamental changes to Firefox's security model with the unfortunate effect of making it impossible for ~TiddlyFox to function''.\n\nTiddlyFox will remain available for people who [[continue to use older versions of Firefox|https://groups.google.com/d/topic/tiddlywiki/OJQ0yRq4zog/discussion]], but anyone upgrading to the new version will need to choose a new way to handle saving changes with TiddlyWiki.\n\nHappily, several new ways of working with TiddlyWiki now exist so that users have many alternative choices -- see GettingStarted for details. The demise of TiddlyFox has provoked several of these recent developments and thus may well ultimately be good for the community.\n\nThere is a [[discussion thread|https://groups.google.com/d/topic/tiddlywiki/LcldXzPlTK0/discussion]] on the TiddlyWiki forums about these developments.\n\n! Background\n\nFirefox was first released in November 2004, a few months after the first version of TiddlyWiki. It was in many ways the Millenium Falcon to Microsoft's Death Star (in the shape of Internet Explorer). IE had by then enjoyed more than 5 years as the dominant browser, leading many in the web community to be frustrated that Microsoft's self-serving extensions to HTML had become de facto standards at the expense of innovation that might benefit the web community as a whole.\n\nFirefox quickly became successful because it managed to render web pages with close enough compatibly with Internet Explorer while offering a superior user experience. A large part of the promise of that user experience was the ability for any user to customise every aspect of the browser. Two innovations were behind this:\n\n* The entire user interface of the browser was constructed in [[XUL|https://en.wikipedia.org/wiki/XUL]], effectively an extension of HTML that enabled it to render conventional user interfaces (at the time, HTML was largely restricted to simple document-oriented layouts). Tweaking a few lines of XUL code could make wholesale changes to the user interface of the browser\n* The Mozilla add-on architecture gave full privileges to add-ons, enabling them to observe and interact deeply with the browser engine itself, and the file system of the computer on which it was running\n\nThese two conditions enabled a vibrant ecosystem of Firefox add-ons, many of them extremely popular. In many cases, innovations that were first seen in browser add-ons later became integrated into the browser itself, most notably the web debugger [[Firebug|https://en.wikipedia.org/wiki/Firebug_(software)]] which was eventually cloned by all the browser manufacturers.\n\nFirefox continued to be extremely popular until Google joined the development of the rival ~WebKit browser to make Chrome. Google took a very different approach to the trade offs of making a browser, focusing on improving security at the expense of almost all other considerations. They pioneered approaches such as isolating each tab in its own process that were quickly adopted by all other major browsers.\n\nGoogle's approach precluded them adopting Mozilla's free-for-all approach to add-ons. Instead of having access to the entire browser environment and filing system, add-ons in Chrome see only a restricted subset of what is going on within the browser, and enjoy little or no access to the resources of the host machine.\n\nIt was inevitable that Mozilla would eventually adopt Google's approach to [[browser security vis-a-vis add-ons|https://support.mozilla.org/en-US/kb/firefox-add-technology-modernizing]]. There is a point at which it wouldn't be responsible for Mozilla to be releasing a browser that had knowingly worse security than the market leader.\n\n! Lessons\n\nSome of the fecundity of the TiddlyWiki ecosystem stems from the adoption of the above two principles from Firefox:\n\n* Making the application user interface out of the same primitives as the application content\n* Giving add-ons free rein to observe and interact with all of the internal logic of the application\n\nThose two characteristics present similar security challenges to TiddlyWiki as they did to Firefox. A TiddlyWiki that was primarily focused on security would need to curtail those abilities.\n\n! The Future\n\nInnovation on new browser-based user interfaces and capabilities has now shifted from browser extensions to a new generation of frameworks that simplify creation of a custom browser based on an off-the-shelf open source HTML rendering engine. TiddlyDesktop uses [[nwjs|https://nwjs.io]], while [[Beaker Browser]] uses an alternative called [[Electron|https://electron.atom.io/]].\n"
},
"TiddlyWiki in the Sky for TiddlyWeb": {
"title": "TiddlyWiki in the Sky for TiddlyWeb",
"created": "20131129100250644",
"modified": "20150412185535373",
"tags": "[[Hosting your TiddlyWiki on the web]] Platforms",
"type": "text/vnd.tiddlywiki",
"text": "TiddlyWiki in the Sky for TiddlyWeb allows content to be synchronised between TiddlyWiki running in the browser and a TiddlyWeb (or TiddlySpace) server. Features include:\n\n* Lazy loading\n* Two way synchronisation between the browser and the server\n** Synchronising from the server is accomplished by polling (currently every 60 seconds)\n* Throttling so that rapidly changing tiddlers don't overwhelm the server\n\nTo try out TiddlyWiki in the Sky for TiddlyWeb:\n\n# If necessary, create an account at http://tiddlyspace.com/\n# Create a new space, eg `<myspace>`\n# Include the space `tw5tiddlyweb`\n# Visit `http://<myspace>.tiddlyspace.com/tw5`\n"
},
"Amazon Web Services Plugin": {
"title": "Amazon Web Services Plugin",
"created": "20170703193252423",
"modified": "20170703193353918",
"tags": "OfficialPlugins",
"type": "text/vnd.tiddlywiki",
"text": "The Amazon Web Services Plugin provides several tools for working with Amazon Web Services:\n\n* Templates for saving a TiddlyWiki as a single JavaScript file in a ZIP file that can be executed as an AWS Lambda function. In this form, TiddlyWiki is a self contained single file containing both code and data, just like the standalone HTML file configuration\n* Commands that can be used to interact with AWS services, under both the Node.js and Lambda configurations of TiddlyWiki\n"
},
"BrowserStorage Plugin": {
"title": "BrowserStorage Plugin",
"created": "20190206181204119",
"modified": "20190206181204119",
"tags": "OfficialPlugins",
"type": "text/vnd.tiddlywiki",
"text": "The ~BrowserStorage Plugin enables TiddlyWiki to save tiddlers in [[browser local storage|https://en.wikipedia.org/wiki/Web_storage#localStorage]]. This means that changes are stored within the browser, and automatically re-applied any time the base wiki is reloaded.\n\nBrowser local storage is not a panacea for TiddlyWiki:\n\n* Browsers limit the amount of local storage available to a page, typically to 5 or 10MB\n* Keeping personal data in browser local storage can lead to unexpected privacy violations\n* Browsers reserve the right to without warning delete data stored in local storage at any time\n* Browsers tie local storage to a URL which can lead to problems if you move a wiki to a URL previously occupied by a different wiki\n\nPlease use this plugin with caution. There are a number of unresolved issues and open questions.\n\nThe ~BrowserStorage Plugin can be installed from the plugin library.\n"
},
"CodeMirror Plugin": {
"title": "CodeMirror Plugin",
"created": "20160107223435497",
"list": "",
"modified": "20170228102537972",
"tags": "OfficialPlugins [[Plugin Editions]]",
"type": "text/vnd.tiddlywiki",
"text": "The CodeMirror plugin adds a sophisticated web-based editor to TiddlyWiki.\n\nSee [ext[https://tiddlywiki.com/plugins/tiddlywiki/codemirror|plugins/tiddlywiki/codemirror]] for a demo.\n"
},
"D3 Plugin": {
"title": "D3 Plugin",
"created": "20160107223425581",
"list": "",
"modified": "20170228102531138",
"tags": "OfficialPlugins [[Plugin Editions]]",
"type": "text/vnd.tiddlywiki",
"text": "The D3 plugin integrates the D3 visualisation library with TiddlyWiki.\n\nSee https://tiddlywiki.com/plugins/tiddlywiki/d3/\n\nSee the demo at [ext[https://tiddlywiki.com/plugins/tiddlywiki/d3|plugins/tiddlywiki/d3]]\n"
},
"Disabling Plugins": {
"title": "Disabling Plugins",
"created": "20161015121727194",
"modified": "20161015121728291",
"tags": "PluginMechanism",
"type": "text/vnd.tiddlywiki",
"text": "!! Disabling Plugins\n\nPlugins can be disabled by creating a tiddler titled `$:/config/Plugins/Disabled/` concatenated with the plugin title, and setting its text to `yes`.\n\nFor example, to disable the plugin `$:/plugins/tiddlywiki/highlight`, the title would be:\n\n```\n$:/config/Plugins/Disabled/$:/plugins/tiddlywiki/highlight\n```"
},
"Dynaview Plugin": {
"title": "Dynaview Plugin",
"created": "20180111122953142",
"modified": "20181113084151268",
"tags": "OfficialPlugins",
"type": "text/vnd.tiddlywiki",
"text": "The Dynaview Plugin makes it possible to build user interfaces that dynamically respond to changes in the browser viewport via scrolling or zooming:\n\n* CSS classes that allow rendering to be deferred until the output is scrolled into view\n* CSS classes that allow the opacity of DOM elements to vary according to the current zoom level\n\nSee the demo at [ext[https://tiddlywiki.com/plugins/tiddlywiki/dynaview|plugins/tiddlywiki/dynaview]]\n"
},
"External Attachments Plugin": {
"title": "External Attachments Plugin",
"created": "20171031172325817",
"list": "",
"modified": "20171031172440017",
"tags": "OfficialPlugins [[Plugin Editions]]",
"type": "text/vnd.tiddlywiki",
"text": "The External Attachments Plugin provides support for importing tiddlers as external attachments. That means that instead of importing binary files as self-contained tiddlers, they are imported as \"skinny\" tiddlers that reference the original file via the ''_canonical_uri'' field. This reduces the size of the wiki and thus improves performance. However, it does mean that the wiki is no longer fully self-contained.\n\nThis plugin only works when using TiddlyWiki with platforms such as TiddlyDesktop that support the ''path'' attribute for imported/dragged files.\n\n"
},
"Highlight Plugin": {
"title": "Highlight Plugin",
"created": "20160107223417655",
"list": "",
"modified": "20170228102525208",
"tags": "OfficialPlugins [[Plugin Editions]]",
"type": "text/vnd.tiddlywiki",
"text": "The Highlight plugin provides the ability to apply syntax colouring to text.\n\nSee [ext[https://tiddlywiki.com/plugins/tiddlywiki/highlight|plugins/tiddlywiki/highlight]]\n"
},
"Innerwiki Plugin": {
"title": "Innerwiki Plugin",
"created": "20190127104143725",
"modified": "20190127104143725",
"tags": "OfficialPlugins",
"type": "text/vnd.tiddlywiki",
"text": "The Innerwiki Plugin enables TiddlyWiki to embed a modified copy of itself (an \"innerwiki\"). The primary motivation is to be able to produce screenshot illustrations that are automatically up-to-date with the appearance of TiddlyWiki as it changes over time, or to produce the same screenshot in different languages.\n\nIn the browser, innerwikis are displayed as an embedded iframe. Under Node.js [[Google's Puppeteer|https://pptr.dev/]] is used to load the innerwikis as off-screen web pages and then snapshot them as a PNG image.\n\nSee the demo at [ext[https://tiddlywiki.com/plugins/tiddlywiki/innerwiki|plugins/tiddlywiki/innerwiki]]\n"
},
"Installing a plugin from the plugin library": {
"title": "Installing a plugin from the plugin library",
"created": "20160107222352710",
"modified": "20160720145836265",
"tags": "Plugins",
"type": "text/vnd.tiddlywiki",
"text": "! Standalone Configuration\n\nFollow these instructions when using TiddlyWiki as a standalone HTML file:\n\n# Create a backup of your current TiddlyWiki HTML file ([[just in case|The First Rule of Using TiddlyWiki]])\n# Open your TiddlyWiki in a browser\n# Open the [[control panel|$:/ControlPanel]] {{$:/core/images/options-button}}, click on the ''Plugins'' tab and then the {{$:/core/images/download-button}} ''Get more plugins'' button\n# Click {{$:/core/images/chevron-right}} ''open plugin library'' to open the official plugin library\n# When the library listing is loaded:\n## Use the tab to select between ''plugins'', ''themes'' and ''languages''\n## Use the ''search'' box to search the plugin details\n# Click the ''install'' button to install a plugin\n# Save your TiddlyWiki {{$:/core/images/save-button}}\n# ''Refresh the page so that TiddlyWiki loads the new plugin'' {{$:/core/images/refresh-button}}\n# The plugin should now be available for use\n\n! Client-Server Configuration\n\nFollow these instructions when using TiddlyWiki under Node.js:\n\n# Identify the plugins you want to install using the ''Plugins'' tab of [[control panel|$:/ControlPanel]] (''don't'' install the plugins from here, though). Plugins are identified by their type (ie language, theme or plugin) and their publisher and title. For example, the plugin `$:/plugins/tiddlywiki/internals` is referred to as ''tiddlywiki/internals''\n# Quit the server if it is running\n# Edit the `tiddlywiki.info` file (it is in JSON format) and locate the `plugins`, `themes` or `languages` section (see below)\n# Add entries corresponding to the plugins you wish to add. Take care to retain commas to separate items, but do not terminate the last item in a list with a comma\n# Restart the server\n\n```\n{\n\t\"plugins\": [\n\t\t\"tiddlywiki/codemirror\"\n\t],\n\t\"themes\": [\n\t\t\"tiddlywiki/vanilla\",\n\t\t\"tiddlywiki/snowwhite\"\n\t],\n \"languages\": [\n \"es-ES\",\n \"fr-FR\",\n \"en-EN\"\n ]\n}\n```\n"
},
"KaTeX Plugin": {
"title": "KaTeX Plugin",
"created": "20160107223410181",
"list": "",
"modified": "20170228102517666",
"tags": "OfficialPlugins [[Plugin Editions]]",
"type": "text/vnd.tiddlywiki",
"text": "This plugin adds the ability to display mathematical notation written in ~LaTeX.\n\nSee [ext[https://tiddlywiki.com/plugins/tiddlywiki/katex|plugins/tiddlywiki/katex]]"
},
"Manually installing a plugin": {
"title": "Manually installing a plugin",
"created": "20160107222430613",
"modified": "20160617104949358",
"tags": "Plugins",
"type": "text/vnd.tiddlywiki",
"text": "# Create a backup of your current TiddlyWiki HTML file ([[just in case|The First Rule of Using TiddlyWiki]])\n# Open your TiddlyWiki in a browser\n# In another browser window, find a link to the plugin, e.g. [[$:/plugins/tiddlywiki/example]]. You will typically find these links on the home page of the plugin (for example, https://tiddlywiki.com/plugins/tiddlywiki/katex/)\n# Drag the link [[$:/plugins/tiddlywiki/example]] to the browser window containing your TiddlyWiki\n# Save your TiddlyWiki ({{$:/core/images/save-button}})\n# ''Refresh the page so that TiddlyWiki loads the new plugin'' ({{$:/core/images/refresh-button}})\n# The plugin should now be available for use"
},
"Markdown Plugin": {
"title": "Markdown Plugin",
"created": "20160107223401584",
"list": "",
"modified": "20170228102511347",
"tags": "OfficialPlugins [[Plugin Editions]]",
"type": "text/vnd.tiddlywiki",
"text": "The Markdown plugin enables you to use tiddlers that are written in standard Markdown markup.\n\nSee [ext[https://tiddlywiki.com/plugins/tiddlywiki/markdown|plugins/tiddlywiki/markdown]]"
},
"Mobile Drag And Drop Shim Plugin": {
"title": "Mobile Drag And Drop Shim Plugin",
"created": "20170328173820802",
"modified": "20170328174328792",
"tags": "OfficialPlugins",
"type": "text/vnd.tiddlywiki",
"text": "The Mobile Drag And Drop Shim Plugin provides a \"shim\" that enables HTML 5 compatible drag and drop operations on mobile browsers, including iOS and Android. The shim was created by Tim Ruffles and is published at https://github.com/timruffles/ios-html5-drag-drop-shim."
},
"OfficialPlugins": {
"title": "OfficialPlugins",
"created": "20170210075109635",
"modified": "20170210075709809",
"tags": "Plugins",
"type": "text/vnd.tiddlywiki",
"text": "The official TiddlyWiki plugin library contains the plugins that are part of the [[main TiddlyWiki 5 GitHub repository|Working with the TiddlyWiki5 repository]]. Install them from [[the plugin library|Installing a plugin from the plugin library]]. Plugins from the official plugin library are automatically updated as part of the [[upgrade process|UpgradeMechanism]].\n\n<<list-links \"[tag[OfficialPlugins]]\">>\n"
},
"Plugin Editions": {
"title": "Plugin Editions",
"created": "20160107223443647",
"modified": "20160107223732928",
"tags": "Editions",
"type": "text/vnd.tiddlywiki",
"text": "These editions contain simple demos of the original set of TiddlyWiki plugins. They were prepared for earlier versions of TiddlyWiki that lacked the plugin library.\n\n<<list-links \"[tag[Plugin Editions]]\">>\n"
},
"PluginFolders": {
"title": "PluginFolders",
"created": "20161015113519246",
"modified": "20161015113833256",
"tags": "PluginMechanism",
"type": "text/vnd.tiddlywiki",
"text": "On the server, plugins can be stored as ordinary JSON tiddlers but it is often more convenient to store them as separate tiddler files within folders. Plugin folders must contain a `plugin.info` file that contains the metadata for the plugin. It can also optionally identify files external to the plugin folder that should be loaded as tiddlers.\n\nThe `plugin.info` file should contain the following JSON structure:\n\nThe JSON structure for plugin tiddlers is as follows:\n\n```\n{\n\t\"title\": \"$:/plugins/publisher/name\",\n\t\"description\": \"An exemplary plugin for demonstration purposes\",\n\t\"author\": \"JeremyRuston\",\n\t\"version\": \"1.2.3-alpha3\",\n\t\"core-version\": \">=5.0.0\",\n\t\"source\": \"https://tiddlywiki.com/MyPlugin\",\n\t\"plugin-type\": \"plugin\",\n\t\"list\": \"readme license history\"\n}\n```\n\nBy convention, the titles of the individual tiddlers are prefixed with the title of the containing plugin, but they are not restricted to do so.\n\nNote that if the `version` field is omitted from a `plugin.info` file when the plugin folder is packed then it is automatically filled in by the core to the current core version number. This is to ensure that all the core plugins carry the correct version number. Generally plugin authors will want to ensure that they do explicitly specify a version number.\n"
},
"Plugin Fields": {
"title": "Plugin Fields",
"created": "20161015122718559",
"modified": "20161015122719647",
"tags": "PluginMechanism",
"type": "text/vnd.tiddlywiki",
"text": "! Plugin fields\n\nPlugins are stored as tiddlers with the following fields:\n\n|!Field |!Description |\n|title |Title of plugin |\n|description |Description of plugin |\n|author |Author of plugin |\n|version |Version string (must conform to [ext[SemanticVersioning|http://semver.org/]] convention) |\n|source |Source URL of plugin |\n|type |Must be ''application/json'' |\n|plugin-type |Can be ''plugin'' (default), ''language'' or ''theme'' |\n|text |JSON encoding of the list of tiddlers comprising the plugin |\n|list |Names of exposed plugin information tiddlers (see below) |\n|name |Name of the theme (only for themes) |\n|dependents |List of dependent plugins (currently only implemented for themes) |"
},
"Plugin Information Tiddlers": {
"title": "Plugin Information Tiddlers",
"created": "20161015121708376",
"modified": "20161015121709477",
"tags": "PluginMechanism",
"type": "text/vnd.tiddlywiki",
"text": "! Information Tiddlers for Plugins\n\nPlugin authors are encouraged to provide special information and documentation tiddlers that TiddlyWiki can include as plugin information tabs in the [[control panel|$:/ControlPanel]].\n\nPlugins should provide an icon contained in a tiddler with the title formed of `<plugin-name>/icon` (for example, [[$:/core/icon]]).\n\nPlugins expose the names of the individual information tabs that they wish to display in the `list` field of the plugin tiddler. By convention, some or all of the following should be provided:\n\n* ''readme'': basic information about the plugin\n* ''license'': the license under which the plugin is published\n\nThe title of the associated information tiddler must be formed as follows:\n\n# `$:/<plugin-name>/<current-language>/<tab-name>` (for example, ''$:/core/en-GB/readme'')\n# `$:/<plugin-name>/<tab-name>` (for example, ''$:/core/readme'')\n\nThus, plugins can provide language-specific versions of each information tiddler.\n\nNote that information tiddlers should not reference other tiddlers within the plugin. This is because plugins containing themes or languages are dynamically switched in and out as they are selected, and so their information tiddlers may not be available for viewing. The control panel uses the 'subtiddler' attribute of the TranscludeWidget to access these tiddlers, which works independently of the plugin switching mechanism."
},
"Plugins": {
"title": "Plugins",
"created": "20140910215514237",
"modified": "20190108000000000",
"tags": "Concepts TableOfContents",
"type": "text/vnd.tiddlywiki",
"text": "Plugins in TiddlyWiki5 can be used to distribute optional components that customise and extend TiddlyWiki. You can install them from the [[official plugin library|Installing a plugin from the plugin library]] or from [[community sites|Resources]].\n\n{{$:/core/ui/ControlPanel/Plugins/AddPlugins}}\n\nInternally, plugins are a bundle of tiddlers packaged together as a single tiddler that can be installed, copied or deleted as a unit. The individual tiddlers within a plugin appear as ShadowTiddlers. See the PluginMechanism discussion for more details about how plugins are implemented internally.\n\nPlugins can contain JavaScript modules, style sheets, and templates. Plugins can also be used to distribute ordinary text, images or any other content.\n\n\n<<list-links \"[tag[Plugins]]\">>\n\n<$macrocall $name=\".note\" _=\"There is a plugin called $:/core that contains the main core code of ~TiddlyWiki. It is always present, and it is the source of default [[Shadow tiddlers|ShadowTiddlers]]. You can see the details of this in the <<.button control-panel>> on the <<.controlpanel-tab Plugins>> sub-tab.\"> \n"
},
"Railroad Plugin": {
"title": "Railroad Plugin",
"created": "20160107223348621",
"list": "",
"modified": "20170228102501706",
"tags": "OfficialPlugins [[Plugin Editions]]",
"type": "text/vnd.tiddlywiki",
"text": "{{$:/plugins/tiddlywiki/railroad/readme}}\n\n{{$:/plugins/tiddlywiki/railroad/syntax}}"
},
"SaveTrail Plugin": {
"title": "SaveTrail Plugin",
"created": "20170210074840860",
"modified": "20170328173912704",
"tags": "OfficialPlugins",
"type": "text/vnd.tiddlywiki",
"text": "This plugin causes TiddlyWiki to continuously download (as a JSON file) the contents of any tiddler that is manually changed by any of several means:\n\n* Confirming an edit\n* Deleting tiddlers\n* Imports\n* Renames/relinks\n* Optionally, typing in draft tiddlers can trigger a download\n\nWhere appropriate, separate 'before' and 'after' files are downloaded. Configured correctly, the browser will download the files silently in the background, and they can be used as a backup in case of accidental data loss.\n\n"
},
"TW2Parser Plugin": {
"title": "TW2Parser Plugin",
"created": "20160107223340750",
"list": "",
"modified": "20170228102455677",
"tags": "OfficialPlugins [[Plugin Editions]]",
"type": "text/vnd.tiddlywiki",
"text": "This experimental plugin adds the ability to display WikiText written for the original Classic version of TiddlyWiki.\n\nSee [ext[https://tiddlywiki.com/plugins/tiddlywiki/tw2parser|plugins/tiddlywiki/tw2parser]]"
},
"Twitter Plugin": {
"title": "Twitter Plugin",
"created": "20170227223209558",
"modified": "20170328173919702",
"tags": "OfficialPlugins",
"type": "text/vnd.tiddlywiki",
"text": "This plugin adds a `<$twitter>` widget that can embed a variety of entities from twitter.com:\n\n* Individual tweets and conversation threads\n* Buttons to tweet a hashtag/account, follow/like an account, or share a URL\n* Timelines showing tweets from a user, hashtag, list or collection\n"
},
"Uninstalling a plugin": {
"title": "Uninstalling a plugin",
"created": "20160107222504269",
"modified": "20160720145839711",
"tags": "Plugins",
"type": "text/vnd.tiddlywiki",
"text": "! Standalone Configuration\n\nFollow these instructions when using TiddlyWiki as a standalone HTML file:\n\n# Create a backup of your current TiddlyWiki HTML file ([[just in case|The First Rule of Using TiddlyWiki]])\n# Open the [[control panel|$:/ControlPanel]] {{$:/core/images/options-button}} and go to the ''Plugins'' tab\n# Click on the plugin you want to delete to open its tiddler\n# Click the {{$:/core/images/down-arrow}} ''more'' button and {{$:/core/images/delete-button}} ''delete'' the tiddler\n# Save your TiddlyWiki {{$:/core/images/save-button}}\n# ''Refresh the window so that TiddlyWiki completely removes the plugin'' {{$:/core/images/refresh-button}}\n# The plugin should now be deleted\n\n! Client-Server Configuration\n\nFollow these instructions when using TiddlyWiki under Node.js:\n\n# Quit the server if it is running\n# Edit the `tiddlywiki.info` file (it is in JSON format) and locate the `plugins` and `themes` section (see below)\n# Remove the entries corresponding to the plugins you wish to remove. Take care to retain commas to separate items, but do not terminate the last item in a list with a comma\n# Restart the server\n\n```\n{\n\t\"plugins\": [\n\t\t\"tiddlywiki/codemirror\"\n\t],\n\t\"themes\": [\n\t\t\"tiddlywiki/vanilla\",\n\t\t\"tiddlywiki/snowwhite\"\n\t]\n}\n```"
},
"ContributingTemplate": {
"title": "ContributingTemplate",
"created": "201308251449",
"modified": "201308251449",
"text": "\\define tv-wikilink-template() https://tiddlywiki.com/static/$uri_doubleencoded$.html\n! Contributing to TiddlyWiki5\n\n{{Contributing}}\n\n//This file was automatically generated by TiddlyWiki5//\n"
},
"ReadMe": {
"title": "ReadMe",
"created": "20131129094758194",
"modified": "20140920135213536",
"type": "text/vnd.tiddlywiki",
"text": "\\define tv-wikilink-template() https://tiddlywiki.com/static/$uri_doubleencoded$.html\n\\import [[$:/core/ui/PageMacros]] [all[shadows+tiddlers]tag[$:/tags/Macro]!has[draft.of]]\n\nWelcome to TiddlyWiki, a non-linear personal web notebook that anyone can use and keep forever, independently of any corporation.\n\nTiddlyWiki is a complete interactive wiki in JavaScript. It can be used as a single HTML file in the browser or as a powerful Node.js application. It is highly customisable: the entire user interface is itself implemented in hackable WikiText.\n\nLearn more and see it in action at https://tiddlywiki.com/\n\nDeveloper documentation is in progress at https://tiddlywiki.com/dev/\n\n! Join the Community\n\n<$vars tv-adjust-heading-level=\"1\">\n<$transclude mode=\"block\" tiddler=\"Forums\"/>\n</$vars>\n\n! Installing TiddlyWiki on Node.js\n\n{{Installing TiddlyWiki on Node.js}}\n\n! Using TiddlyWiki on Node.js\n\n{{Using TiddlyWiki on Node.js}}\n\n! Upgrading TiddlyWiki on Node.js\n\n{{Upgrading TiddlyWiki on Node.js}}\n\n! Also see\n\n<<list-links \"[tag[TiddlyWiki on Node.js]] -[[Installing TiddlyWiki on Node.js]] -[[Using TiddlyWiki on Node.js]] -[[Upgrading TiddlyWiki on Node.js]]\">>\n\n//This readme file was automatically generated by TiddlyWiki//\n"
},
"ReadMeBinFolder": {
"title": "ReadMeBinFolder",
"created": "20140908150853120",
"modified": "20140908150853120",
"type": "text/vnd.tiddlywiki",
"text": "\\define tv-wikilink-template() https://tiddlywiki.com/static/$uri_doubleencoded$.html\n{{Scripts for TiddlyWiki on Node.js}}\n"
},
"TiddlyWiki2ReadMe": {
"title": "TiddlyWiki2ReadMe",
"text": "\\define tv-wikilinks() no\n! Building TiddlyWikiClassic\n{{Building TiddlyWikiClassic}}\n"
},
"Reference": {
"title": "Reference",
"created": "20140910212931897",
"list": "Concepts Definitions WikiText Macros Variables SystemTags Widgets Filters Messages Commands Mechanisms Developers",
"modified": "20180927080640647",
"tags": "TableOfContents",
"type": "text/vnd.tiddlywiki",
"text": "The following topics provide the canonical reference documentation for TiddlyWiki:\n\n<div class=\"tc-table-of-contents\">\n\n<<toc-selective-expandable 'Reference'>>\n\n</div>"
},
"BetaReleases": {
"title": "BetaReleases",
"created": "20131109105400007",
"modified": "20141010092837891",
"tags": "Releases",
"type": "text/vnd.tiddlywiki",
"text": "Here are the details of the beta releases of TiddlyWiki5. See [[TiddlyWiki5 Versioning]] for details of how releases are named.\n\n<<tabs \"[tag[BetaReleaseNotes]!sort[created]]\" \"Release 5.0.18-beta\" \"$:/state/tab2\" \"tc-vertical\" \"ReleaseTemplate\">>\n"
},
"Release 5.1.0": {
"title": "Release 5.1.0",
"caption": "5.1.0",
"created": "20140920124011558",
"modified": "20140920124011558",
"tags": "ReleaseNotes",
"type": "text/vnd.tiddlywiki",
"released": "201409201500",
"text": "//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.0.18-beta...v5.1.0]]//\n\nThis is the first full release of TiddlyWiki. Documentation updates made up the bulk of the changes since the previous 5.0.18-beta release.\n\n!! Hackability Improvements\n\n* [[Removed|https://github.com/Jermolene/TiddlyWiki5/commit/b239b3d6230a9f7aab4c9ef6a59aefb4158f45b1]] curly braces from qualified identifiers\n\n!! Bug Fixes\n\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/9e6dab06cc2db8263fce083510ae570923b21c0b]] problem with Markdown Maruku mode metadata\n\n!! Contributors\n\n[[@Jermolene|https://github.com/Jermolene]] would like to thank the contributors to this release who have generously given their time to help improve TiddlyWiki:\n\n* [[@BramChen|https://github.com/BramChen]]\n* [[@malgam|https://github.com/malgam]]\n* [[@gernert|https://github.com/gernert]]\n* [[@pmario|https://github.com/pmario]]\n* [[@xcazin|https://github.com/xcazin]]\n"
},
"Release 5.1.1": {
"title": "Release 5.1.1",
"caption": "5.1.1",
"created": "20140921124011558",
"modified": "20140921124011558",
"tags": "ReleaseNotes",
"type": "text/vnd.tiddlywiki",
"released": "201409221100",
"text": "//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.1.0...v5.1.1]]//\n\nThis is a minor bug fix release to improve the documentation and correct some issues with the first full release of TiddlyWiki.\n\n!! Incompatible Changes\n\nCertain features that were deprecated in [[Release 5.0.17-beta]] have now been removed:\n\n* [[Removed|https://github.com/Jermolene/TiddlyWiki5/commit/62edd1e8a3fddc0c11b87c87b3e5b404d8e1e395]] deprecated `title` attribute on the ButtonWidget\n* [[Removed|https://github.com/Jermolene/TiddlyWiki5/commit/d047ccdc84ab6f23779c3614712e0d6fa0ef63ec]] support for deprecated `$:/tags/stylesheet` system tag\n\nNote that the next release will also remove support for regular expression filter operands, which was also deprecated in 5.0.17-beta.\n\n!! Hackability Improvements\n\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/96b7d0eebaf73dcfd4eccb848b90caaa055e5e20]] first implementation of the [[KaTeX Plugin]] for mathematical typesetting\n\n!! Contributors\n\n[[@Jermolene|https://github.com/Jermolene]] would like to thank the contributors to this release who have generously given their time to help improve TiddlyWiki:\n\n* [[@pmario|https://github.com/pmario]]\n* [[@TheDiveO|https://github.com/TheDiveO]]\n"
},
"Release 5.1.10": {
"title": "Release 5.1.10",
"caption": "5.1.10",
"created": "20160107231609312",
"modified": "20160107231609312",
"tags": "ReleaseNotes",
"type": "text/vnd.tiddlywiki",
"released": "20160107231609312",
"text": "//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.1.9...v5.1.10]]//\n\n! Major Improvements\n\n!! Performance Optimisations\n\nThis release includes several low-level performance optimisations that should improve speed and responsiveness in many common operations.\n\n* [[Caching the results of parsing a tiddler|https://github.com/Jermolene/TiddlyWiki5/commit/b0cb17cd83dde89753ec159e27c920a7bf22bee1]]\n* [[Loop optimisations|https://github.com/Jermolene/TiddlyWiki5/commit/c6e48ebc2db4af895f5b3935b3f575b8aab292fe]]\n* [[Tiddler iteration optimisations|https://github.com/Jermolene/TiddlyWiki5/commit/8f63e2a959a7ac44533ae2b6192716ee17a1ce93]]\n* [[State qualifier generation|https://github.com/Jermolene/TiddlyWiki5/commit/848a7f4e744c8f4dcb4ec88a0e99c4ae6aac25e5]]\n* [[Caching data tiddlers|https://github.com/Jermolene/TiddlyWiki5/commit/32f6d7f1b01474b82debcbdd5d76c49c59303265]]\n* [[Removed expensive visual effects|https://github.com/Jermolene/TiddlyWiki5/commit/4f5cf4597abb08af787b62c2e2ee1b8c667dad1e]]\n\nThere is a new setting in the control panel to enable performance instrumentation, making it much easier to measure and improve performance issues.\n\n!! New Editions\n\nThree new editions of TiddlyWiki are included in this release. These can be used as starting points for creating your own wiki for several purposes:\n\n* The [[Résumé Builder Edition]] by @inmysocks is a custom edition to guide you through the process of using TiddlyWiki to create a good looking résumé (or curriculum vitæ)\n* The [[Blog Edition]] provides tools for using TiddlyWiki under Node.js to create a static HTML blog that can be published on GitHub pages (or similar)\n* The [[Text-Slicer Edition]] is a custom edition with tools to help advanced users slice longer texts up into individual tiddlers.\n\n!! External Text Tiddlers\n\nLimited support for tiddlers stored in external `.tid` files:\n\n* standalone TiddlyWiki HTML files with external text tiddlers can be built under Node.js\n* wikis with external text tiddlers can be worked with in the browser, automatically lazily loading the content of external text tiddlers when it is first referenced\n** saving changes in the browser doesn't work as expected: if edited, the external text tiddler is replaced with an ordinary tiddler\n** lazy loading of external text tiddlers doesn't work in Chrome when viewing the TiddlyWiki HTML file on a ''file:'' URI; it works OK in Firefox\n** lazy loading works on an HTTP URI on all browsers as long as the target file is either stored on the same domain or is served by a [[server that supports CORS|https://en.wikipedia.org/wiki/Cross-origin_resource_sharing]]\n\nSee [[Alice in Wonderland]] for an example. Try opening it without a network connection.\n\n!! New \"Tight\" Theme\n\nA new theme called \"Tight\" uses reduced padding, margins and font-sizes to pack as much text as possible:\n\n<$button>\n<$action-setfield $tiddler=\"$:/theme\" text=\"$:/themes/tiddlywiki/tight\"/>\nTry it out\n</$button> <$button>\n<$action-setfield $tiddler=\"$:/theme\" text=\"$:/themes/tiddlywiki/snowwhite\"/>\nRevert\n</$button>\n\n! Other Improvements\n\n!! Translation Improvements\n\n* Added Swedish translation by @Superdos\n* Added Korean (Korean Republic) translation by @araname\n* Improved Catalan, Chinese, Danish, Dutch, French, German, Italian, Russian and Spanish translations\n\n!! Usability Improvements\n\n* [[Enhanced|https://github.com/Jermolene/TiddlyWiki5/commit/e6529af04e004b59093921f74758ac7132e1b19d]] the tiddler editor to accept new fields and tags when clicking confirm, without having to click \"Add tag\" or \"Add field\"\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/5d43cd740863be188e43fd49893dc8dddcd5b937]] new ''fold'' and ''fold others'' buttons to the tiddler toolbar to temporarily hide the body of a tiddler, and also [[added|https://github.com/Jermolene/TiddlyWiki5/commit/ac08dc2e35d99eb563ab8c4449ce1fcfe30f3bf7]] new ''fold all'' and ''unfold all'' page buttons\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/d5e690a06d523a2047eaf9b623b633bb72c18af9]] ability to disable individual WikiText parser rules (see the ''Advanced'' tab of $:/ControlPanel). Also [[added|https://github.com/Jermolene/TiddlyWiki5/commit/58188cf8053bef87dbe97e4b05cdba67f75c615d]] a simple setting for disabling automatic linking of ~CamelCase words\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/commit/2cb6400773096b02b71c1851fb0fac5dfefbbd6f]] support for automatically linked system tiddler titles to include digits and underscore\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/2c9b1ae2579f8d2452c60217aa3e153a29d32d1f]] warning when trying to use plugins designed for TiddlyWiki Classic\n* Upgraded to version v8.8.0 of highlight.js for the [[Highlight Plugin]]\n* [[Removed|https://github.com/Jermolene/TiddlyWiki5/pull/1981]] the need to manually confirm deleting alerts\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/pull/2147]] optional tooltips to [[tabs Macro]]\n\n!! Hackability Improvements\n\n* Updated to KaTeX v0.5.1, with [[several new features|https://github.com/Khan/KaTeX/releases]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/e0aacc84d5f084ff7a53153c590fbff3d24f2e2c]] `publishFilter` to default save template\n* [[Allow|https://github.com/Jermolene/TiddlyWiki5/commit/7dddc925ae93725552b98bc348a07572895da96c]] ''delete'' button to be used in the tiddler view-mode toolbar\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/742161675421a942051abed01cb47c0394f4db6d]] a new [[hidden setting for keyboard shortcuts|Hidden Setting: Keyboard Shortcuts]]\n* [[Update|https://github.com/Jermolene/TiddlyWiki5/commit/e5cd8313a0d1a4a3dea17457a8a883675243b9c7]] ActionSetFieldWidget to allow timestamp to be preserved\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/fdce67399d175a9911df908981b83ac3edfb1142]] option to suppress navigation for edit/cancel/save\n* [[Enhance|https://github.com/Jermolene/TiddlyWiki5/commit/5176f008f0bc15751e36933c95ae299c1ee5971a]] SaveTiddlersCommand with do not delete option\n* [[Enhance|https://github.com/Jermolene/TiddlyWiki5/commit/4ccdaf3fafda2f1d0766ed69c68d030a7db2bbc6]] RenderTiddlerCommand with template option\n* [[Extend|https://github.com/Jermolene/TiddlyWiki5/commit/51d771a07493f91c32145b69e4f5534724416d2e]] tm-open-window to pass variables\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/7b8928886bf101b0cf4a8cc2d2dd2e576ec1c8d8]] new utility method `$tw.utils.tagToCssSelector(tagName)` for converting tag titles into a form suitable for matching the `tc-tagged-*` [[classes generated by TiddlyWiki|How to apply custom styles by tag]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/99df9f46f7cc4c1d3aa0320347f9b6c1bc458c60]] support for tiddlers containing mp4 videos\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/commit/fd997c45814e6bb5b576137bf62bad5575b0a28c]] the ActionSetFieldWidget to enable it to be used to delete a field or indexed property\n* [[Made|https://github.com/Jermolene/TiddlyWiki5/commit/746aab2cf6bbe3c1905efd5caf80e40e23b914b0]] the tw5.com documentation available as a plugin and an [[edition|https://tiddlywiki.com/editions/tw5.com-docs/index.html]], simplifying some scenarios for re-using it\n* [[Improved|https://github.com/Jermolene/TiddlyWiki5/commit/0035a0046315ee0203b1adfb75efdbb0e854a7f6]] rendering of \"More\" sidebar tab gradients in the \"Snow White\" theme\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/33563d01baed4b4092fc834eb6a1df55e1671418]] option in [[control panel|$:/ControlPanel]] to enable the display of detailed performance instrumentation in the browser developer console\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/bc0cbf907063ccd484da7d56c8e42cf5e90489b8]] a LazyLoading template for all non-system tiddlers\n* [[Improved|https://github.com/Jermolene/TiddlyWiki5/issues/1984]] handling of TiddlerLinks in Markdown tiddlers\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/pull/2004]] FieldManglerWidget to create the target tiddler if it does not exist\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/pull/2049]] KeyboardWidget to trigger ActionWidgets\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/pull/2074]] SelectWidget to support multiple selections\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/pull/1909]] new [[days Operator]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/231d0a3dc8385fcb2173436754f00f464d7b018e]] official plugin wrappers for the JavaScript libraries [[async.js|https://github.com/caolan/async]] and [[JSZip|https://stuk.github.io/jszip/]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/pull/2037]] new ActionListopsWidget\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/791f97983e8bbbbb209cf0e7068f858dfd2d38eb]] ''rows'' attribute to EditTextWidget\n\n!! Bug Fixes\n\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/issues/1882]] problem introduced in 5.1.9 with processing `tiddlywiki.info` files\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/3fbf29093b32c00941b0c03951250de7c0cc8d6f]] problem with invisible icons in $:/AdvancedSearch\n* [[Improved|https://github.com/Jermolene/TiddlyWiki5/commit/862e358b57fde74595420e7948bf44fdadf690dc]] check for required plugins in ServerCommand\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/709126dd643207adab725569c214f8617c28fbeb]] problem with queueing change events for deleting non-existent tiddlers\n* [[Ensure|https://github.com/Jermolene/TiddlyWiki5/commit/85553609b10ccc813662c867d4043e5df78efcec]] EditTextWidget fixes height even if refresh isn't required\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/8a763e9d838fcb571d12c4175952cd4e15e95e00]] the gradient on the sidebar tabs divider\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/6add992bf2e9cedd077c74c3471758bbe9d6e1b2]] problem with tiddler titles such as `$:/templates/something` being erroneously classed as `$:/temp` tiddlers, and so excluded from syncing\n* [[Switched|https://github.com/Jermolene/TiddlyWiki5/commit/acbf87657b6c88719148266100b91a61e29a0546]] to absolute date format in tiddler subtitles\n\n!! Node.js Improvements\n\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/dc020276b07fd0ec365c13000eb868a87a3376b9]] problem with the filesystem adaptor saving new image files as base64-encoded .tid files instead of as native binary files with an accompanying `.meta` file\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/commit/803d70225a2ce1f1f7992e493bbaf7a78b15c04d]] `tiddlywiki.files` support in TiddlyWikiFolders to allow directories to be loaded recursively, as well as individual files\n\n!! Contributors\n\n[[@Jermolene|https://github.com/Jermolene]] would like to thank the contributors to this release who have generously given their time to help improve TiddlyWiki:\n\n* [[@afeldspar|https://github.com/afeldspar]]\n* [[@araname|https://github.com/araname]]\n* [[@BramChen|https://github.com/BramChen]]\n* [[@danielo515|https://github.com/danielo515]]\n* [[@Drakor|https://github.com/Drakor]]\n* [[@erwanm|https://github.com/erwanm]]\n* [[@felixhayashi|https://github.com/felixhayashi]]\n* [[@Evolena|https://github.com/Evolena]]\n* [[@hegart-dmishiv|https://github.com/hegart-dmishiv]]\n* [[@idoine|https://github.com/idoine]]\n* [[@inmysocks|https://github.com/inmysocks]]\n* [[@IreneKnapp|https://github.com/IreneKnapp]]\n* [[@gernert|https://github.com/gernert]]\n* [[@kixam|https://github.com/kixam]]\n* [[@Marxsal|https://github.com/Marxsal]]\n* [[@matabele|https://github.com/matabele]]\n* [[@mklauber|https://github.com/mklauber]]\n* [[@nameanyone|https://github.com/nameanyone]]\n* [[@pmario|https://github.com/pmario]]\n* [[@senevoldsen90|https://github.com/senevoldsen90]]\n* [[@Spangenhelm|https://github.com/Spangenhelm]]\n* [[@spelufo|https://github.com/spelufo]]\n* [[@SuperDOS|https://github.com/SuperDOS]]\n* [[@tgrosinger|https://github.com/tgrosinger]]\n* [[@tobibeer|https://github.com/tobibeer]]\n* [[@xcazin|https://github.com/xcazin]]\n* [[@zahlman|https://github.com/zahlman]]\n"
},
"Release 5.1.11": {
"title": "Release 5.1.11",
"caption": "5.1.11",
"created": "20160130124109312",
"modified": "20160130124109312",
"tags": "ReleaseNotes",
"type": "text/vnd.tiddlywiki",
"released": "20160130124109312",
"text": "//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.1.10...v5.1.11]]//\n\nThis is a bug-fix release for [[Release 5.1.10]] that fixes a serious issue affecting the operation of the official plugin library.\n"
},
"Release 5.1.12": {
"title": "Release 5.1.12",
"caption": "5.1.12",
"created": "20160713104714652",
"modified": "20160713104714652",
"tags": "ReleaseNotes",
"type": "text/vnd.tiddlywiki",
"released": "20160713104714652",
"text": "//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.1.11...v5.1.12]]//\n\n! Major Improvements\n\n!! New Editor Toolbars\n\n[[Added|https://github.com/Jermolene/TiddlyWiki5/pull/2315]] support for extensible formatting toolbars for the editor widgets.\n\n* Formatting operations for WikiText, with support for Markdown:\n** Character formatting operations for bold, italic, strikethrough, underline, superscript, subscript, inline monospace\n** Line formatting operations for monospaced blocks, quoting, headings and both numbered and bulleted lists\n** Insert picture from a dropdown chooser\n** Stamp snippet of pre-programmed text\n** Excise selected text into a new tiddler\n** Optional automatic resizing to fit content\n* Full keyboard shortcut editor in control panel. Shortcuts are also shown in the toolbar button tooltips\n\n!! Improved Bitmap Editor\n\nThe bitmap editor has been enhanced with a toolbar supporting:\n\n* Painting with selectable colour, width and opacity\n* Clearing the image\n* Resizing the image\n* Keeping track of recently chosen colours\n\n!! Improved Plugins\n\nSeveral of the official plugins available in the plugin library have been updated for this release. [[Upgrading]] will automatically update any installed plugins.\n\n* The KaTeX plugin has been updated to [[version v0.60.0|https://github.com/Khan/KaTeX/releases/tag/v0.6.0]]\n* The CodeMirror plugin has been updated to version 5.13.2, and integrated with the new editor toolbars. The default configuration has been updated to include syntax highlighting for HTML, ~JavaScript, CSS, XML, TiddlyWiki Classic and Markdown.\n* The Markdown plugin includes formatting toolbar buttons and a new \"new markdown tiddler\" button in the Tools tab of the sidebar.\n* The experimental Evernote plugin allows notes and images from `.enex` files to be imported into TiddlyWiki.\n* The new Internals plugin provides features to help understand the internal operation of TiddlyWiki, including new preview modes in the editor showing both the parse and widget trees of the current tiddler\n* Improved language translations:\n** Korean\n** Chinese (Simplified) and Chinese (Traditional)\n** German\n** French\n** Danish\n** Dutch\n\n!! Text-Slicer Plugin Improvements\n\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/176d2ccd76856b10aadd5e71af587574e7bcd447]] support for sticky notes within documents\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/commit/c98ef97d236fb023c3b5099a5fc52c1e8da7eb4d]] support for slicing documents to Node.js\n* [[Improved|https://github.com/Jermolene/TiddlyWiki5/commit/1335dff45013f83fb06a47453e6063b5c0e2c0b3]] document metadata display\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/46800d790a6521aafba24fc9cb9e0d0e8f1a48a2]] `list-children` filter operator\n* Fixed bugs\n\n! Other Improvements\n\n\n!! Usability Improvements\n\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/7908e10488cc4280dd8e4f405bcb09f2fb6d3524]] a setting for disabling linking to missing tiddlers\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/de3adf905aff80e547dc630890f0d18bd87da880]] a setting for forcing word wrapping in monospaced code blocks\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/issues/2351]] a warning when creating or editing tiddler titles containing troublesome characters\n* Addition of “new image” button to the “Tools” tab of the sidebar\n* Introduction of new general purpose [[colour-picker Macro]]\n* Introduction of new general purpose [[image-picker Macro]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/adf45b346847a81d4ed26397466daa4514035bb9]] a bulk delete button to [[advanced search|$:/AdvancedSearch]] \"Filter\" tab\n\n!! Hackability Improvements\n\n* [[Introduction|https://github.com/Jermolene/TiddlyWiki5/issues/2337]] of the new WikifyWidget\n* Introduction of new EditShortcutWidget for direct entry of keyboard shortcut codes\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/commit/7daebba46bad0e7ea3e4dfc1fc2e59e36414a683]] editor preview pane to allow plugins to add further types of preview (see the new `tiddlywiki/internals` plugin for an example)\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/f8565443d7617f4d18b90ba7ce3f55b9764eccb2]] a simple HTTP PUT saver for use with WebDav or REST servers\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/37823f64e96809df16884c605b062f8da2453635]] build targets to the server edition\n* [[Improved|https://github.com/Jermolene/TiddlyWiki5/pull/2364]] [[days Operator]] to better cope with operations on today and yesterday\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/commit/3c20f2396e7c794b6e28c3e369e09230352402d0]] ActionWidgets mechanism to allow them to be used with the LinkCatcherWidget and SelectWidget\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/19e699d3302da842c4a6596f7b9ecc4dcaf8fbc2]] `mobile-web-app-capable` meta tag for Android Chrome\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/3d5885f5a5ef8a395ba15285e68c19a8db115e6b]] new `plainwikified` format for the ViewWidget\n\n!! Bug Fixes\n\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/54bf6c8a93f026ad1128dfc9cd745a67aaa6cda0]] problem with tiddler titles containing single quotes in [[Table-of-Contents Macros]]\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/037cfb7cc7c1b32153e23774697e8a9045d8f36a]] problem with z-ordering of modals in zoomin story view\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/pull/2284]] problem with [[has Operator]]\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/4a03dcab2031a31eb60f99b6d15a70ff0449182c]] problem with double byte entities in the EntityWidget\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/276074b6cfde9d916f9428b2185f795915e190ae]] problem with ScrollableWidget in static renderings\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/1e0d019610acd960b8c70c0b85b7bb1a25096a8f]] problem with repeatedly lazy loading of tiddlers without a text field\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/b326ba5b2c9e622f5fe99b00ab368bb484c1d4e5]] problem with titles containing URLs being interpreted as external links\n\n!! Node.js Improvements\n\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/pull/2379]] ability to [[customise the paths used for tiddler saving|Customising Tiddler File Naming]]\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/bf74d13df544e323066cde9a019cbf1855d3db04]] problem saving non-JPG binary files\n\n! Contributors\n\n[[@Jermolene|https://github.com/Jermolene]] would like to thank the contributors to this release who have generously given their time to help improve TiddlyWiki:\n\n* [[@araname|https://github.com/araname]]\n* [[@BramChen|https://github.com/BramChen]]\n* [[@brentmaxwell|https://github.com/brentmaxwell]]\n* [[@Drakor|https://github.com/Drakor]]\n* [[@edrex|https://github.com/edrex]]\n* [[@Evolena|https://github.com/Evolena]]\n* [[@felixhayashi|https://github.com/felixhayashi]]\n* [[@FND|https://github.com/FND]]\n* [[@Infurnoape|https://github.com/Infurnoape]]\n* [[@kixam|https://github.com/kixam]]\n* [[@Marxsal|https://github.com/Marxsal]]\n* [[@maxthomax|https://github.com/maxthomax]]\n* [[@mklauber|https://github.com/mklauber]]\n* [[@nameanyone|https://github.com/nameanyone]]\n* [[@nome|https://github.com/nome]]\n* [[@PauDeLuca|https://github.com/PauDeLuca]]\n* [[@pmario|https://github.com/pmario]]\n* [[@rcrath|https://github.com/rcrath]]\n* [[@r1chard5mith|https://github.com/r1chard5mith]]\n* [[@sukima|https://github.com/sukima]]\n* [[@telmiger|https://github.com/telmiger]]\n* [[@twMat|https://github.com/twMat]]\n* [[@webninjasi|https://github.com/webninjasi]]\n* [[@xcazin|https://github.com/xcazin]]\n"
},
"Release 5.1.13": {
"title": "Release 5.1.13",
"caption": "5.1.13",
"created": "20160713124714652",
"modified": "20160725084810809",
"released": "20160725084810809",
"tags": "ReleaseNotes",
"type": "text/vnd.tiddlywiki",
"text": "//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.1.12...v5.1.13]]//\n\nThis is a minor bug fix release.\n\n!! Bug Fixes\n\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/e49d310ea943916089b5381b00df20b1f9a9e52e]] (and [[refixed|https://github.com/Jermolene/TiddlyWiki5/commit/782553eb62ccfea31ad249911c3230e2137a07dd]]) [[problematic|https://github.com/Jermolene/TiddlyWiki5/issues/2501]] stricter external link matching rules introduced in 5.1.12\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/e282ff1d92d6d3abaf9fd50c9deff464ac028ad7]] [[problem|https://github.com/Jermolene/TiddlyWiki5/issues/2507]] with tiddlers titled \"undefined\"\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/487d6642e34e5eb685ad83a11c8514dbc6fc4d89]] rendering [[problem|https://github.com/Jermolene/TiddlyWiki5/issues/2500]] with [[KaTeX Plugin]]\n* [[Removed|https://github.com/Jermolene/TiddlyWiki5/commit/8f6178acfce1f4f49d1a7d234c25dcbf0256aa10]] unneeded border in print stylesheet\n\n!! Node.js Bug Fixes\n\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/pull/2504]] problem with extraneous `.tid` extension added to tiddler filenames\n\n!! Other Improvements\n\n* Updated Portuguese (Portugal) translation\n\n! Contributors\n\n[[@Jermolene|https://github.com/Jermolene]] would like to thank the contributors to this release who have generously given their time to help improve TiddlyWiki:\n\n* [[@sukima|https://github.com/sukima]]\n"
},
"Release 5.1.14": {
"title": "Release 5.1.14",
"caption": "5.1.14",
"created": "20170426160031661",
"modified": "20170426160031661",
"released": "20170426160031661",
"tags": "ReleaseNotes",
"type": "text/vnd.tiddlywiki",
"text": "//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.1.13...v5.1.14]]//\n\n!! New and Improved Plugins\n\n* Added [[SaveTrail Plugin]] that continuously downloads edited tiddlers in the background, providing a trail of backups\n* Added XLSX Utilities plugin for importing Excel-compatible spreadsheets. See the [[XLSX Utilities Edition]] for details\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/22c1b04ee79a5ccc25cbc33cc91bf5daac1df831]] QR code generator plugin\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/7f11c151f06cd039d1887a6940075237ccb4b7a9]] ~BibTeX importer plugin\n* [[Updated|https://github.com/Jermolene/TiddlyWiki5/commit/c16f96626e2ff9d849563eeba7d8ef5cf8e4ed4b]] Google Analytics plugin to the latest version\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/e30330d4be0e0b9b04ea807a034c8d9fa3d13fea]] [[Twitter Plugin]] for embedding tweets etc\n* [[Updated|https://github.com/Jermolene/TiddlyWiki5/commit/c0f7f18f0a268087e51813bfbba1b796478d0bb1]] [[KaTeX Plugin]] to [[v0.7.1 of KaTeX|https://github.com/Khan/KaTeX/releases]]\n\n!! Improved Support for Drag and Drop\n\nThere are several improvements to [[Drag and Drop]]:\n\n* Ability to rearrange the \"Open\" sidebar panel and the tag dropdown (and new tiddlers can be opened by dragging them to the list)\n* Ability to reorder entries in tag dropdowns\n* Dragging a tag pill is now equivalent to dragging all of the tagged tiddlers together\n* Entries in the control panel \"Appearance\"/\"Toolbars\" tab can be reordered by drag and drop\n* The image shown while dragging now reflects the dragged item, instead of being a generic drag pill\n\n!! New \"Heavier\" Theme\n\nA new theme called \"Heavier\" thickens TiddlyWiki's default lightweight fonts. A variant \"Tight-Heavier\" combines the \"Heavier\" theme with the existing \"Tight\" theme:\n\n<$button>\n<$action-setfield $tiddler=\"$:/theme\" text=\"$:/themes/tiddlywiki/heavier\"/>\nTry out the \"Heavier\" theme\n</$button> <$button>\n<$action-setfield $tiddler=\"$:/theme\" text=\"$:/themes/tiddlywiki/tight-heavier\"/>\nTry out the \"Tight-Heavier\" theme\n</$button> <$button>\n<$action-setfield $tiddler=\"$:/theme\" text=\"$:/themes/tiddlywiki/snowwhite\"/>\nRevert\n</$button>\n\n!! New Tiddler Manager\n\n[[Added|https://github.com/Jermolene/TiddlyWiki5/commit/16bb65d17f5a20a0076320c6b1305b7b139d7375]] new [[tiddler manager|$:/Manager]] to support tasks such as:\n\n* Reviewing and applying tags to a large number of tiddlers\n* Tweaking the custom colours and icons for a large number of tiddlers\n\nThe tiddler manager will be extended in the future to increase flexibility and to add support for bulk operations.\n\n!! Performance Improvements\n\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/commit/989cee50594a76a0f30d1d2124ce9e5e5808c6cf]] search mechanism to require the search string to be a minimum length\n\n!! Translation Improvements\n\n* [[Improvements|https://github.com/Jermolene/TiddlyWiki5/tree/master/languages]] to Danish, Dutch, French, German, Portuguese and Chinese translations\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/b96377099a7377e4c77582800cac78103a08b066]] new Hebrew translation\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/e20bce5450f40c8db891893fa0674c493bba7f11]] preliminary support for right-to-left (RTL) languages\n\n!! Usability Improvements\n\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/3197f9a639761e1e56b2f5b18b5f7cf5c3d992da]] a select all/none checkbox to the header of the import panel\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/pull/2072]] \"close plugin library\" button\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/pull/2592]] support for adding tags using the <kbd>enter</kbd> key\n* [[Improved|https://github.com/Jermolene/TiddlyWiki5/pull/2590]] handling of <kbd>ctrl-Enter</kbd> to add partially completed tags and fields\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/e8bb897e263feea1a671ce035af68d0c6bc246b5]] support for relinking references to renamed tiddlers\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/0b76c327c217251e2eb8e318e3f2d4637192581a]] new \"print page\" page control button {{$:/core/ui/Buttons/print}} (and [[added|https://github.com/Jermolene/TiddlyWiki5/commit/c4e13bc94afb022e40aaa70b06464084188acfea]] associated [[icon|$:/core/images/print-button]])\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/d1121787c090ec8f5fc592b83c3dbad1075fe0ec]] new page control button to temporarily suspend timestamps {{$:/core/ui/Buttons/timestamp}}\n* [[Improved|https://github.com/Jermolene/TiddlyWiki5/commit/7a6d7e2a1567ce04330939b3926b21b88796b4c9]] access to plugin information:\n** Refactored the display of plugin tiddlers to use the same format as the control panel, adding the shadow tiddler listing as an overridable extension tab\n** Added a new tab in the “More” sidebar providing quick access to all installed plugins\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/issues/2616]] height of preview pane to use a scrollbar when fixed height layout is selected\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/commit/4eed18496fe2f4f67ad6a382b813b5c5371d3930]] editor \"link\" button to create external links and missing links\n* [[Increased|https://github.com/Jermolene/TiddlyWiki5/commit/2d9aa12aa867d1b7c983e21de2ed60abf6f5a1bc]] size of icons in the \"Filter\" tab of $:/AdvancedSearch\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/issues/2381]] problem with multiple copies of a tiddler appearing in the story river\n* [[Improved|https://github.com/Jermolene/TiddlyWiki5/pull/2585]] dropdown for new field names with typeahead search\n* [[Improved|https://github.com/Jermolene/TiddlyWiki5/commit/c02c3a06e09baaa7746a26dffebb97ef8ec1ff6e]] the ordering of groups in the tiddler editor content type dropdown\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/b3273bcbda6bcb9f3a0670b79ea598c3674c5012]] \"sticky\" mode for tiddler info panel. See \"Settings\" in [[control panel|$:/ControlPanel]]\n* [[Increased|https://github.com/Jermolene/TiddlyWiki5/commit/5bf238fc8698a6b750dd0f577ab745a4db714a17]] boldness of tag pill text\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/ee66d1a1afb939c0cba8c2257b8300921831c716]] documentation marker to indicate the version in which a new feature was released\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/b1a5afbf158fab9e224978c81a10aca15d30d91a]] an entry to the advanced search filter drop down for exporting the current story (minus advanced search)\n\n!! New and Improved Filter Operators\n\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/issues/2767]] new [[enlist Operator]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/b4b77d1681023d4ccc0e157df1ce67d0d388cd5a]] several new filter operators for string encoding/decoding:\n** [[decodehtml Operator]]\n** [[decodeuri Operator]]\n** [[decodeuricomponent Operator]]\n** [[encodehtml Operator]]\n** [[encodeuri Operator]]\n** [[encodeuricomponent Operator]]\n** [[escaperegexp Operator]]\n** [[stringify Operator]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/ffcbcbfa82cb8f1044c57967117aeae0978579f0]] new [[minlength Operator]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/9a386421414aacd23e21bc9cb1a116b905fb39ff]] new [[order Operator]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/c65d08240b1f69078c8b3129cb9b00df56ada1d3]] strict mode to [[tag Operator]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/a3dc3b4b98f424d12019550df52639224100316f]] new ''tags'' option to the [[all Operator]]\n* [[Changed|https://github.com/Jermolene/TiddlyWiki5/commit/c460cc03a49be2c41157814f5a1fc25c4bc3fe41]] [[is Operator]] to pass through arguments if the operand is blank\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/pull/2066]] \"field\" suffix for [[has Operator]]\n* [[Improved|https://github.com/Jermolene/TiddlyWiki5/pull/2193]] [[wikiparserrules Operator]] to return all available parse rules\n\n!! Hackability Improvements\n\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/d9f301f7556ce899840dab0ebc31c040d9c7a72b]] support for \"formattedtext\" output type to the WikifyWidget\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/a20da9f5303fdd52a54d61b231450c2aa35d3804]] a saver for the peer-to-peer Beaker browser; see [[TiddlyWiki on Beaker Browser]] for details\n* [[Refactored|https://github.com/Jermolene/TiddlyWiki5/commit/f07e0f981a1cded691227146e0281f7c4f06d55c]] the tag templates and macros to make them more reusable\n* [[Improved|https://github.com/Jermolene/TiddlyWiki5/commit/87fa7f972cae859c466dea8a531d50f060e7d910]] modals and notifications so that global macros are available\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/commit/b35544bf4946596e60f7b0c7f0a55fa490ac2a24]] the SetWidget to allow a single result to be selected from a filtered result list\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/2f590a365e5b6bfecc1170fdbeaaf398795a2feb]] new `$:/info/url/*` [[information tiddlers|InfoMechanism]] providing document location information\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/3bceb98119c6f1fbbed76c977c601a930b0bcac9]] support for the ''actions'' attribute to the CheckboxWidget\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/pull/2104]] CheckboxWidget to support data tiddlers via the `index` attribute\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/b1a5afbf158fab9e224978c81a10aca15d30d91a]] new entry to the advanced search filtered export menu for exporting the current story river\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/1b339e17bc0c67ff7eb3e8f7f299588ecf8848ee]] `tag` attribute to the KeyboardWidget\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/pull/2614]] overwrite protection to the ~WebDAV saver\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/202ffd9c51d71b469eff968ae63b56a985a3c6bf]] new \"big block quote\" style for [[Block Quotes in WikiText]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/c25a44756b1a4a08a29fbe02a908ef57a6a193bf]] customisable template text for new journal tiddlers, accessible the control panel\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/779e62a30fc5e61cee893eabc0f268e7fb959639]] support for `.json` tiddler files containing a single tiddler object, instead of an array of tiddlers\n\n!! Node.js Improvements\n\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commits/master/plugins/tiddlywiki/filesystem/filesystemadaptor.js]] multiple issues the creation of new tiddler files by the filesystem adaptor\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/0d0ece63777a22422ab2ddae7dee996b28f62c5e]] new FetchCommand for retrieving tiddlers over http/https\n* [[Enhanced|https://github.com/Jermolene/TiddlyWiki5/commit/6f93ce6ea790427fe1e6e11a062d64f14449bfa3]] RenderTiddlerCommand to add support for an additional variable\n\n!! Bug Fixes\n\n* [[Improved|https://github.com/Jermolene/TiddlyWiki5/commit/b1ecf81b0c0727db2245cfeba78cc46a33c3a814]] Node.js support for the HighlightPlugin\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/pull/2650]] problem with recursion errors in the [[Table-of-Contents Macros]]\n* [[Prevented|https://github.com/Jermolene/TiddlyWiki5/commit/f97c1226aac9f3a5b563fc8d95bfeff91b8ab810]] email addresses from being mis-recognised as HTML tags\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/pull/2572]] issue with `$tw.utils.strEndsWith()`\n* [[Partially fixed|https://github.com/Jermolene/TiddlyWiki5/issues/2599]] problem with action widgets being invoked independently of refresh cycle\n* [[Revised|https://github.com/Jermolene/TiddlyWiki5/issues/2522]] handling of `syncAdaptor.isReady()` method to improve compatibility with older adaptors\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/issues/2517]] problem with unsafe use of `String.prototype.replace()`, corrupting fields containing dollar signs\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/8b60dbb81d3495aa8be1f160e4f31bcae995f400]] problem with page background colour not showing through transparent background images\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/issues/2514]] sync problem with skinny tiddlers not being loaded\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/06b7de415cd2cef3848f2ef2516200ee79afd130]] problem with \"Cancel\" button in login dialogue also submitting the form\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/issues/2579]] typo affecting created/creator fields when deleting a field\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/issues/2595]] issue with system links containing international characters not being recognised\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/issues/2076]] issue with single line macro definitions without a terminating line break\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/cf28eeb2a120fe3f263235c35fe5603013f88049]] issue with empty strings and the CheckboxWidget\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/b759d82f4ce2bf44da0bcce0c08550870f3216f8]] problem with calculation of week numbers\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/issues/2312]] problem with [[move Operator]] not wrapping correctly\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/f0ff1f993e94d6928f0aa249b7f6f5e5624ebb69]] problem preventing customisation of textarea background colours\n\n!! Developer Bug Fixes and Improvements\n\n* [[Updated|https://github.com/Jermolene/TiddlyWiki5/commit/25b2e846cea0f560b259296263a98e3287e5f311]] Stanford JavaScript Library to version v1.0.6\n* [[Updated|https://github.com/Jermolene/TiddlyWiki5/commit/c16f96626e2ff9d849563eeba7d8ef5cf8e4ed4b]] Google Analytics plugin to latest version of Google's code\n* [[Improved|https://github.com/Jermolene/TiddlyWiki5/commit/3c715c5e0d1117ca32760d4da6578cd27af06172]] Common/JS compatibility by adding support for implicitly adding `/index.js` to a require target\n* [[Improved|https://github.com/Jermolene/TiddlyWiki5/commit/1b41b4468495bbe66f99345ee94a67346176deb7]] support for bulk loading tiddler files via [[tiddlywiki.files Files]] within TiddlyWikiFolders\n* [[Refactored|https://github.com/Jermolene/TiddlyWiki5/pull/2627]] server mechanism to make it simpler to integrate TiddlyWiki into [[ExpressJS|http://expressjs.com/]] apps\n* [[Refactored|https://github.com/Jermolene/TiddlyWiki5/pull/2626]] the TiddlyFox saver module to make it easier to use it with other saving mechanisms\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/2397f0aa6f7af305807b61ccb1d435c2e6a789ab]] (and [[here|https://github.com/Jermolene/TiddlyWiki5/commit/daf703b67fae0dd029eeaa4317b721fa8c284648]]) several new UI hooks, and [[improved|https://github.com/Jermolene/TiddlyWiki5/commit/6b2ab9072111cb87508f83a385b0885fb196cbcf]] the hook mechanism; see <a href=\"./dev/index.html#:[search:title[hook]]\" target=\"_blank\">developer docs</a>\n\n! Contributors\n\n[[@Jermolene|https://github.com/Jermolene]] would like to thank the contributors to this release who have generously given their time to help improve TiddlyWiki:\n\n* [[@beniquezsd|https://github.com/beniquezsd]]\n* [[@BramChen|https://github.com/BramChen]]\n* [[@crypdick|https://github.com/crypdick]]\n* [[@danielo515|https://github.com/danielo515]]\n* [[@dedioste|https://github.com/dedioste]]\n* [[@DoronTzur|https://github.com/DoronTzur]]\n* [[@duarteframos|https://github.com/duarteframos]]\n* [[@FND|https://github.com/FND]]\n* [[@gernert|https://github.com/gernert]]\n* [[@hchaase|https://github.com/hchaase]]\n* [[@ibnishak|https://github.com/ibnishak]]\n* [[@jest|https://github.com/jest]]\n* [[@jrgetsin|https://github.com/jrgetsin]]\n* [[@nameanyone|https://github.com/nameanyone]]\n* [[@Marxsal|https://github.com/Marxsal]]\n* [[@mklauber|https://github.com/mklauber]]\n* [[@nmota|https://github.com/nmota]]\n* [[@pmario|https://github.com/pmario]]\n* [[@roma0104|https://github.com/roma0104]]\n* [[@Serj-Aleks|https://github.com/Serj-Aleks]]\n* [[@stevesunypoly|https://github.com/stevesunypoly]]\n* [[@sukima|https://github.com/sukima]]\n* [[@sycom|https://github.com/sycom]]\n* [[@tejjyid|https://github.com/tejjyid]]\n* [[@telmiger|https://github.com/telmiger]]\n* [[@tobibeer|https://github.com/tobibeer]]\n* [[@twMat|https://github.com/twMat]]\n* [[@xcazin|https://github.com/xcazin]]\n* [[@zakrec|https://github.com/zakrec]]\n "
},
"Release 5.1.15": {
"title": "Release 5.1.15",
"caption": "5.1.15",
"created": "20170426172144552",
"modified": "20171113161124237",
"released": "20171113161124237",
"tags": "ReleaseNotes",
"type": "text/vnd.tiddlywiki",
"text": "//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.1.14...v5.1.15]]//\n\n!! New and Improved Plugins\n\n* New [[Amazon Web Services Plugin]] with primitives for running TiddlyWiki in the cloud\n* New [[External Attachments Plugin]] that allows automatic creation of [[ExternalImages]] for TiddlyDesktop\n\n!! Translation Improvements\n\nNew and improved translations:\n\n* New Persian translation\n* Updated Chinese and Greek translations\n\nAnother improvement that benefits users of translations is the addition of about 800 new //transliteration pairs//. These are substitutions that are performed when converting a tiddler title into a filename, such as the two characters \"oe\" for the single character \"œ\". See [[the commit|https://github.com/Jermolene/TiddlyWiki5/commit/5cdf86b3072604f8c556c84f266767be5b8e75c3]] for more details. The result is that automatically generated filenames are much more readable.\n\n!! Usability Improvements\n\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/1e9d214f67906e63758f8665091bc0ef6651f10d]] new \"Explorer\" tab to \"More\" sidebar and underlying [[tree Macro]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/cee7baa1831a8f236c46d8c438c2a4d9bda8a0e2]] configuration option in [[theme tweaks|$:/themes/tiddlywiki/vanilla/themetweaks]] for the editor font\n\n!! Hackability Improvements\n\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/aa417fe899d0983ad8a3fe1fdfe9cac42364b2b6]] new [[lookup Operator]] to simplify use of lookup tables\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/commit/5dd3d97760083f7c6ba9a6cd6186525edb3fb836]] the SetWidget with ''tiddler'', ''field'' and ''index'' attributes\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/d966583854d7c7f4a7df25c0e2a8d6b9e217a12c]] new ''whitespace'' [[Pragma]] allowing whitespace to be selectively ignored within wikitext\n* [[Updated|https://github.com/Jermolene/TiddlyWiki5/commit/ef9efbc3995248d72148423bee10a1374c842926]] support for saving in [[Beaker Browser]]\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/commit/4db950cc450ef1ea87ce8f480fe882f2b108cdb4]] [[date formatting|DateFormat]] to support milliseconds and UTC dates\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/commit/dc295b2536cdf411893e15b6dc0d62107f50a08d]] LinkCatcherWidget to make the target tiddler available within the action string\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/commit/596dfa1d5058e030a318e4a0f23d078500c3d154]] (and [[here|https://github.com/Jermolene/TiddlyWiki5/commit/a4d919f45caae393f99018e0d797980b3667867f]]) the DropzoneWidget and BrowseWidget to allow the deserializer to be manually specified\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/523280362b529ee73229001a1bcd79272f483908]] new `tc-btn-*` classes to toolbar buttons allowing easier custom styling\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/8293a77c6e6870960956dcf1501c687d2f88ea3c]] new ''mode'' attribute to the ViewWidget, allowing control over the parsing mode for wikified output formats\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/d7a6816307f4fd47df29cb8e0343ea39c079a2b0]] new [[jsonstringify Operator]]\n\n!! Node.js Improvements\n\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/35a7a66b019f2ea0532ba65cd5475f5cfe46a860]] SaveCommand and RenderCommand, intended as more flexible replacements for RenderTiddlerCommand, RenderTiddlersCommand, SaveTiddlerCommand and SaveTiddlersCommand\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/51b1ead5c9aa5a754e7fdc0bfbf241dd98db5f7c]] (and [[here|https://github.com/Jermolene/TiddlyWiki5/commit/1b7d9d65f42e77fdceb11b0b0b9ab9a63f6762e9]]) more colour to command line output\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/c179dc93cbd8947f92a8007d28c497b70efc4204]] new \"raw\" options to the FetchCommand\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/e951047461c3c2c273484a759ce5fc2c388fb684]] new ImportCommand\n\n!! Bug Fixes\n\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/pull/2821]] problem with \"new journal\" button clearing the text field\n* [[Removed|https://github.com/Jermolene/TiddlyWiki5/commit/c069d48a2a690b333c0733328f3574ae8a76e435]] extraneous URI encoding of filename with PUT saver\n* [[Restored|https://github.com/Jermolene/TiddlyWiki5/pull/2940]] ability to use sub-filter with image-picker macro\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/ccac0258af9b6d8c93d41b1f170e20dbf2efe3f3]] problem with the download saver and filenames containing spaces, accents or other characters that need URL encoding\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/issues/2850]] problem with importing JSON tiddlers with leading or trailing spaces in the title\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/683285d44943db2d993bd574ed2d2f8a07dfc816]] plugin display so that \"contents\" tab is shown even if no other tabs are provided\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/pull/2842]] problem with `allbefore:include` filter operator\n* [[Updated|https://github.com/Jermolene/TiddlyWiki5/commit/e471bd54d42226d3b6d070b8561f8883f44df68a]] Update Stanford JavaScript Library to version 1.0.7\n\n!! Developer Bug Fixes and Improvements\n\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/commit/0bc325025a61c265dafe7ce8750ea8deed2be51b]] `$tw.boot.boot()` to add a callback parameter\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/commit/d89010752a8b169a4917bde9a9028ddd871e743d]] navigation handling to pass original event data\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/518f57f4bbc747c3675260eb3ffde1dc7468c805]] new `th-importing-files` hook\n\n! Contributors\n\n[[@Jermolene|https://github.com/Jermolene]] would like to thank the contributors to this release who have generously given their time to help improve TiddlyWiki:\n\n* [[@0mp|https://github.com/0mp]]\n* [[@Arlen22|https://github.com/Arlen22]]\n* [[@BramChen|https://github.com/BramChen]]\n* [[@cjhunt|https://github.com/cjhunt]]\n* [[@danielo515|https://github.com/danielo515]]\n* [[@hoelzro|https://github.com/hoelzro]]\n* [[@Marxsal|https://github.com/Marxsal]]\n* [[@maxthomax|https://github.com/maxthomax]]\n* [[@morosanuae|https://github.com/morosanuae]]\n* [[@pmario|https://github.com/pmario]]\n* [[@rubaboo|https://github.com/rubaboo]]\n* [[@saqimtiaz|https://github.com/saqimtiaz]]\n* [[@telmiger|https://github.com/telmiger]]\n* [[@twMat|https://github.com/twMat]]\n* [[@xcazin|https://github.com/xcazin]]\n "
},
"Release 5.1.16": {
"title": "Release 5.1.16",
"caption": "5.1.16",
"created": "20171114142602640",
"modified": "20180425155658451",
"released": "20180425155658451",
"tags": "ReleaseNotes",
"type": "text/vnd.tiddlywiki",
"text": "//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.1.15...v5.1.16]]//\n\n!! Improved ~CodeMirror Plugins\n\nThe ~CodeMirror plugin has undergone a substantial rewrite, with many new improvements:\n\n* Upgrade to ~CodeMirror version v5.37.0\n* Now modularised into:\n** Base plugin: basic lightweight configuration, approximately 240KB\n** Add-on plugins:\n*** Search and Replace\n*** Auto-completion\n*** Fullscreen editing\n*** Auto-close brackets\n*** Auto-close tags\n*** ~SublimeText keymap\n*** Emacs keymap\n*** Vim keymap\n*** Highlighting modes: Javascript, Xml, Html (htmlmixed), Html (htmlembedded), Css, Markdown, X-Tiddlywiki\n* Automatic configuration (the configuration tiddler is not needed anymore)\n*** ~CodeMirror (engine.js) builds the configuration using information within the installed ~CodeMirror plugins\n* New control panel configuration tab:\n** Line numbers\n** Theme:\n*** Editor font family (same as native TiddlyWiki)\n*** Cursor settings\n*** Line wrapping\n** Active line highlighting\n*** Autocompletion on/off (if installed)\n** Keymap\n\n!! Other New and Improved Plugins\n\n* New [[Dynaview Plugin]] makes it possible to build user interfaces that dynamically respond to changes in scrolling or zooming\n* Improved [[Text-Slicer Plugin|Text-Slicer Edition]] with customisable JSON rules\n* Updated [[KaTeX Plugin]] to latest v0.9.0\n\n!! Translation Improvements\n\nNew and improved translations:\n\n* New Slovenian translation\n* New Português (Brasil) translation\n* Improved Dutch translation\n* Improved French translation\n* Improved German translation\n* Improved Traditional and Simplified Chinese translations\n** These translations now also reset the minimum search length to one character\n\n!! Privacy Improvements\n\nPrompted by the [[General Data Protection Regulation (GDPR)|https://en.wikipedia.org/wiki/General_Data_Protection_Regulation]], we've [[removed all third party cookies from tiddlywiki.com|https://github.com/Jermolene/TiddlyWiki5/pull/3106]].\n\n!! Usability Improvements\n\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/pull/3112]] new DiffTextWidget, and integrated it into the import listing and as a preview pane\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/9e03264ebe141a5dc4d37dcb62f3bbf2f740d983]] selectable previews to the import listing\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/pull/3155]] new editor toolbar buttons for wrapping the selection with double square and curly brackets\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/pull/3134]] new [[sortan Operator]] for sorting alphanumeric values such as \"Apple 6\", \"Apple 7\", \"Apple 8\", \"Apple 9\", \"Apple 10\", \"Apple 20\", \"Apple 30\", \"Apple 100\"\n* [[Improved|https://github.com/Jermolene/TiddlyWiki5/commit/da0ffce2d66f16ad14587fbe58b8d7a5c8d36657]] default fonts for readability as advised by [[GitHub|http://markdotto.com/2018/02/07/github-system-fonts/]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/pull/3131]] an editor toolbar button for stamping fragments of formulae for the [[KaTeX Plugin]] \n* [[Simplified|https://github.com/Jermolene/TiddlyWiki5/commit/1c8170463c80a18c0753783aa0b32a0ff2f9028c]] the page scrolling behaviour: navigating to a tiddler now scrolls the top of the tiddler to the top of the viewport\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/d2ff164c07788818ded9826c9e3811599272e69c]] [[WidgetMessage: tm-copy-to-clipboard]] and [[also|https://github.com/Jermolene/TiddlyWiki5/commit/1b6a06a4d79ad5c58593a7844e306c25848979ea]] [[copy-to-clipboard Macro]] for copying text directly to the clipboard\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/pull/3040]] a hint to the field list dropdown\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/pull/3135]] a control panel setting for the default tab in the More sidebar\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/pull/3149]] a control panel setting for the titles of new tiddlers\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/c0569849d22f99623423d349c0d96ecae11ffbe8]] \"rotate left\" button to bitmap editor toolbar\n* [[Improved|https://github.com/Jermolene/TiddlyWiki5/pull/3180]] criteria under which certain editor toolbar buttons are displayed\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/pull/3190]] support for a minimum length for the new tag field before the dropdown is shown\n* [[Improved|https://github.com/Jermolene/TiddlyWiki5/commit/02529a51d0be47477e62cd52dd5e4989a4993663]] consistency and reusability of the palette, language and theme switchers\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/ea763d0eaba7edf928ae247563deb95278504e9f]] support for retaining tab content in the [[tabs Macro]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/pull/2703]] support for adding links via the <kbd>enter</kbd> key\n\n!! Hackability Improvements\n\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/033feda02d7f5cdf27a9393b8229f22219cdab88]] support for comparison operators to the RevealWidget\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/1c6942402ee7b6d938f01bad23130ebe75b109f2]] support for StartupActions to execute action widgets at startup\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/commit/f4fd5e76f8da8555bb9056725f11e0c0c91649f7]] ServerCommand to allow the port number to be specified as an environment variable\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/28e713caac1582e30b9ab8f7364ac8a564f4ffd7]] screen width/height to [[platform information exposed at startup|InfoMechanism]]\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/pull/3167]] DroppableWidget to pass modifier keys in a variable\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/pull/3203]] DraggableWidget with actions for drag start and drag end\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/7cb54f32c6ee2d98f3f13ddda39f92281d419afd]] a new [[TaskManagementExample (Draggable)]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/460a07ca03a501009530a57352d6bec0e3cf49cd]] new 'Stylesheets' tab to control panel\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/b4c7c59d5d1bc5282fcfed58abbf087b9f65b86c]] new 'emptyMessage' parameter to [[list-links Macro]] and [[list-tagged-draggable Macro]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/de4eb5ca89132db136c8f5fb3103f289f25fe98a]] new `th-page-refreshed` hook\n* [[Enhanced|https://github.com/Jermolene/TiddlyWiki5/pull/3063]] macro evaluation by making parameters available as variables - see \"Parameters as Variables\" in [[Macro Definitions in WikiText]]\n* [[Enhanced|https://github.com/Jermolene/TiddlyWiki5/pull/3052]] LinkWidget to allow better customisation of CSS classes\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/pull/3124]] new \"value\" suffix for the [[each Operator]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/0d354fe57f7424c1751a5c0cf5fbf1203803f3c8]] new ''subtiddler'' attribute to the SetWidget\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/47cdf5513391742c3410bb80b36107ab17b0476d]] new [[subtiddlerfields Operator]] for extracting the fields from tiddlers within plugins\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/pull/3182]] ability to trigger actions on unchecking the CheckboxWidget\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/pull/2182]] support for a checked class to the RadioWidget\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/pull/2982]] the [[is Operator]] to allow multiple types to be specified\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/pull/3209]] data attributes to ViewTemplate (see [[Custom data-styles]])\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/pull/2988]] new RangeWidget\n\n!! Bug Fixes\n\n* [[Removed|https://github.com/Jermolene/TiddlyWiki5/pull/3043]] superfluous list item at the end of list-links-draggable macro\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/7e71fcfab80bed9aed4389eea386fb2036cc4a85]] problem with the content area of vertical tabs sometimes overflowing their right hand margin\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/pull/3079]] problem with double quotes within the new journal template\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/pull/3070]] problem with dragging inside a textarea\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/pull/3099]] usage of \"default\" attribute of SelectWidget when \"index\" attribute is used\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/pull/3093]] problem with crash when dragging over TiddlyWiki on some browsers\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/pull/3079]] issue with new journal button\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/pull/3164]] problem with ''filter'' and ''value'' attributes of SetWidget\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/pull/3190]] problem with numeric operands in the [[The Extended Listops Filters]]\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/df1f7e9798b5f6c3d2c3fd82e438cbc9713ade04]] problem with \"put\" saver and 412 return codes\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/pull/3048]] problem with variable references in field values in the edit template\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/pull/3219]] behaviour of list-after field so that the tiddler is placed at the end of the list if the list-after field is present but empty \n\n!! Developer Bug Fixes and Improvements\n\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/1dc764764055243acd07d0c4f480e6e912be6870]] ''plugin-priority'' field to core plugins\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/pull/3113]] problems with plugin ordering\n* Several optimisations to the tiddler store:\n** [[Avoiding slow Object.keys calls|https://github.com/Jermolene/TiddlyWiki5/commit/254e1ca7f7a5fe9d2deef72692ada2b7637f34ce]] - saving 50% of some operations\n** [[Optimising the tag filter|https://github.com/Jermolene/TiddlyWiki5/commit/e4b10d42f9480c0505862a93f0b97d1c4270ed65]] - saving 50% on some tag operations\n** [[Minor improvements to tiddler deletion|https://github.com/Jermolene/TiddlyWiki5/commit/358d4165260311446f2b433591762dd667250975]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/pull/2990]] support for custom boot paths\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/pull/3206]] new navigation hooks: `th-cancelling-tiddler`, `th-new-tiddler` and `th-renaming-tiddler`\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/pull/3024]] new hook when the HTTP server starts `th-server-command-post-start`\n\n\n! Contributors\n\n[[@Jermolene|https://github.com/Jermolene]] would like to thank the contributors to this release who have generously given their time to help improve TiddlyWiki:\n\n* [[@alexhough|https://github.com/alexhough]]\n* [[@anavarre|https://github.com/anavarre]]\n* [[@BramChen|https://github.com/BramChen]]\n* [[@BurningTreeC|https://github.com/BurningTreeC]]\n* [[@diego898|https://github.com/diego898]]\n* [[@flibbles|https://github.com/flibbles]]\n* [[@furicle|https://github.com/furicle]]\n* [[@gernert|https://github.com/gernert]]\n* [[@ibnishak|https://github.com/ibnishak]]\n* [[@inmysocks|https://github.com/inmysocks]]\n* [[@Marxsal|https://github.com/Marxsal]]\n* [[@metebalci|https://github.com/metebalci]]\n* [[@mklauber|https://github.com/mklauber]]\n* [[@pmario|https://github.com/pmario]]\n* [[@Skeeve|https://github.com/Skeeve]]\n* [[@TheDiveO|https://github.com/TheDiveO]]\n* [[@tobibeer|https://github.com/tobibeer]]\n* [[@twMat|https://github.com/twMat]]\n* [[@xcazin|https://github.com/xcazin]]\n "
},
"Release 5.1.17": {
"title": "Release 5.1.17",
"caption": "5.1.17",
"created": "20180512104329616",
"modified": "20180512104329616",
"released": "20180512104329616",
"tags": "ReleaseNotes",
"type": "text/vnd.tiddlywiki",
"text": "//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.1.16...v5.1.17]]//\n\n!! Reversions\n\nAfter encountering significant problems we've reluctantly decided to [[remove support|https://github.com/Jermolene/TiddlyWiki5/commit/737e9ae4cb136ca3f473624f64142bd83e532b9b]] for multiple sub-operators with the [[is Operator]] that was added in v5.1.16.\n\n!! Usability Improvements\n\n* [[Improved|https://github.com/Jermolene/TiddlyWiki5/commit/7468ad7acf1ca2280ad89ee014484928e160f54b]] appearance of ~TiddlyWiki's \"red screen of embarrassment\"\n\n!! Bug Fixes\n\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/e6466b2c320cdab46a74aa343b6c56c5783e3f94]] problem with extraneous space in new journal titles\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/b95aa6ec6ad51672e9ed26ab94d7fe799698782c]] problem with repeated use of \"new journal\" with text set\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/f9be417204695d26d5f458fbc53870b2adb9a372]] (and [[here|https://github.com/Jermolene/TiddlyWiki5/commit/46e8e4343acba876b9540b9fc77a5c85faa10939]]) problem with Etag handling\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/pull/3240]] problem with [[is Operator]] introduced in 5.1.16\n* [[Restored|https://github.com/Jermolene/TiddlyWiki5/commit/b2173d11ea550ba4a5f2fd89b1388b392e37dd51]] default of the preview pane being hidden\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/issues/3245]] incorrect plugin library location\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/pull/3226]] animation timing problem with reveal widget that sometimes caused the sidebar not to show when requested\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/pull/3244]] problem with saving with non-Dat URI schemes\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/4c89bbabbe5f5665e92258b560ed7380ae06d9e8]] deletion of `$:/status/UserName` when logged out\n\n!! Node.js Improvements\n\n* [[Stopped|https://github.com/Jermolene/TiddlyWiki5/pull/2893]] clearing [[$:/status/UserName]] when logged out\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/ab5e5795e88892b5687885c8ead8d6959082399b]] bug with attempting to lazy load tiddlers that do not qualify for syncing\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/2c7f467514cb75aefa87912620575deabde1a530]] support for `/*\\` style metadata comments at the top of `*.CSS` files\n\n! Contributors\n\n[[@Jermolene|https://github.com/Jermolene]] would like to thank the contributors to this release who have generously given their time to help improve TiddlyWiki:\n\n* [[@BramChen|https://github.com/BramChen]]\n* [[@BurningTreeC|https://github.com/BurningTreeC]]\n* [[@danielo515|https://github.com/danielo515]]\n* [[@icarito|https://github.com/icarito]]\n* [[@ldorigo|https://github.com/ldorigo]]\n* [[@mklauber|https://github.com/mklauber]]\n* [[@sukima|https://github.com/sukima]]\n* [[@tobibeer|https://github.com/tobibeer]]\n* [[@twMat|https://github.com/twMat]]\n"
},
"Release 5.1.18": {
"title": "Release 5.1.18",
"caption": "5.1.18",
"created": "20181206090053690",
"modified": "20181206090053690",
"released": "20181206090053690",
"tags": "ReleaseNotes",
"type": "text/vnd.tiddlywiki",
"text": "//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.1.17...v5.1.18]]//\n\n!! Major Improvements\n\n!!! Global Keyboard Shortcuts\n\nThis version introduces new infrastructure to handle global keyboard shortcuts. The core ships with the following shortcuts:\n\n* <kbd>alt-I</kbd> (or <kbd>ctrl-I</kbd> on Mac) - New image\n* <kbd>alt-J</kbd> (or <kbd>ctrl-J</kbd> on Mac) - New journal\n* <kbd>alt-N</kbd> (or <kbd>ctrl-N</kbd> on Mac) - New tiddler\n\nSee [[How to create keyboard shortcuts]]\n\n!!! Node.js HTTP Server\n\nThe HTTP WebServer functionality has been significantly improved:\n\n* Adds ability to make a wiki that is [[read-only for anonymous users (with the editing UI hidden), but allows editing for users who log in|WebServer Authorization]]\n* Hides UI features like the new tiddler button and the edit button when the user only has read-only access to the wiki\n* Adds support for [[serving static file attachments over HTTP|Using the integrated static file server]]\n* Adds support for [[multiple user credentials|WebServer Parameter: credentials]] for basic authentication via a CSV file containing usernames/passwords\n* Adds support for [[serving over HTTPS|Using HTTPS]] as well as HTTP\n* Adds support for [[authentication via a trusted header|WebServer Parameter: authenticated-user-header]], making it easier to integrate with corporate single sign on (and Windows authentication)\n* Adds support for more fine grained authorisation (ie granting/denying individual users read/write permission to resources)\n* Better [[debugging information|WebServer Parameter: debug-level]]\n* Experimental support for a new, plain HTML [[single tiddler per page view|Using the read-only single tiddler view]]\n* Adds a simple level of [[CSRF protection|WebServer Parameter: csrf-disable]]\n* Deprecating the existing ServerCommand in favour of a new ListenCommand using the new NamedCommandParameters support for named parameters that can be specified in any order\n* Refactoring routes as separate modules, making it easier to extend the server with new functionality\n\nSee WebServer for more details, or [[see the changes on GitHub|https://github.com/Jermolene/TiddlyWiki5/pull/2679]].\n\n!!! Special Characters in Tiddler Titles\n\nIn previous versions of TiddlyWiki, there were some special character sequences in tiddler titles that would break certain features. For example, a tiddler title ending in double quotes would cause the [[Table-of-Contents Macros]] to render incorrectly.\n\nAs of 5.1.18, many of these problems have been fixed by refactoring the features to use the latest abilities of wikitext:\n\n* [[Table-of-Contents Macros]]\n* [[tree Macro]]\n* [[tag Macro]]\n* [[list-tagged-draggable Macro]]\n* $:/TagManager\n\nNote that using certain characters in tiddler titles will still prevent some features from being used correctly. For example, two vertical bar characters are used in the double curly braces transclusion syntax to separate the tiddler title from the template title: `{{title||template}}`. However, although it would be impossible to transclude a tiddler called `title||template` using that syntax, one could still transclude it using `<$transclude tiddler=\"title||template\"/>`.\n\n!! Plugin Improvements\n\n* ''KaTeX Plugin'' -- the [[KaTeX Plugin]] has been [[updated to KaTeX v0.10.0|https://github.com/Jermolene/TiddlyWiki5/pull/3600]]. The plugin [[now incorporates|https://github.com/Jermolene/TiddlyWiki5/pull/3601]] an [[extension for chemical formulae|https://github.com/mhchem/MathJax-mhchem]]\n* ''Comment Plugin'' -- this release [[adds|https://github.com/Jermolene/TiddlyWiki5/commit/acaa07a964a004759ddb8fb755484918b3322815]] a new commenting plugin -- see $:/plugins/tiddlywiki/comments\n* ''AWS Plugin'' -- support for running TiddlyWiki as a Lambda function has been [[improved|https://github.com/Jermolene/TiddlyWiki5/commit/d6a0b06f024e14e9c0a57df5d2b80c8a1cdbd1c2]] with support for GZip compression of the JSON payload\n\n!! Translation Improvements\n\nNew and improved translations:\n\n* Catalan\n* Chinese Simplified and Chinese Traditional\n* Dutch\n* French\n* German\n\n!! Usability Improvements\n\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/cfb2d7c9c8d899729b67864070d1958b35cc0ca2]] support for splash screens to be shown while TiddlyWiki is loading -- see [[Creating a splash screen]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/88664f028611162730b898025a45d29568eb205a]] display of backlinks when renaming a tiddler\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/3bfa9c6f100cfd7107f2c5bf4cfc5dd40a93d54d]] persistent indicators at the bottom of the window showing any hidden drafts\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/7dbe117bc55a9cda91ce7b480525a2b2a70b8229]] current username (if set) to the title of draft tiddlers, making them easier to identify in multiuser scenarios\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/6b14969cf60bdcad16ac5978030bf1d929a712c6]] a warning for binary tiddlers in view mode\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/issues/3255]] permalink/permaview to copy the URL to the clipboard as well as updating the address bar. This behaviour can be customised in $:/ControlPanel settings\n* [[Improved|https://github.com/Jermolene/TiddlyWiki5/commit/d96c84426484747ab19d92b1d9f49e01c9dad985]] saving to use the $:/SiteTitle as the basis of the filename\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/09112ed455e7c4be2e50e88c00f370d726d71f64]] support for [[webp|https://en.wikipedia.org/wiki/WebP]], [[heic and heif|https://en.wikipedia.org/wiki/High_Efficiency_Image_File_Format]] image formats\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/97b098b059aa75e9c5965cafa5973ea6d98951d7]] tiddler positioning when creating new tiddlers\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/55b5b6dd56d9146b39482fbd2ae0353adce037f1]] smooth scrolling in new windows\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/c82edbe6bc9dfe6166650e4300a860c6ee625c76]] problem dismissing popups within new windows\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/pull/3530]] handling of disabled missing links so that core user interface features are not broken (see also [[here|https://github.com/Jermolene/TiddlyWiki5/commit/a83cd3f984c88a1ecf5861c2c25ffb483b08f0ac]]) \n\n!! Hackability Improvements\n\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/pull/3558]] a new filter prefix `~` allowing if-then-else logic within filters -- see [[Filter Expression]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/33dd367a6548824567995bb48e87eece755681e8]] a new [[subfilter Operator]] to allow nested filters to be used\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/849844be12196781017b3a517839c4721771efd7]] new ''stateTitle'', ''stateField'' and ''stateIndex'' attributes to the ButtonWidget and the RevealWidget, making it possible to use state tiddlers whose titles contain `!!` or `##`\n* [[Enhanced|https://github.com/Jermolene/TiddlyWiki5/commit/d6a0b06f024e14e9c0a57df5d2b80c8a1cdbd1c2]] the [[search Operator]] to support searching arbitrary lists of fields, literal searches, whitespace-tolerant searches and regexp searches\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/763f8afaf2dc7dcaa2d4a492887a944d84c4fed2]] new [[contains Operator]] for searching within list fields\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/issues/3396]] support for a navigation scroll offset to avoid navigating to tiddlers resulting in them being obscured under a `position:fixed` top menu bar -- see [[Hidden Setting: Scroll Top Adjustment]]\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/commit/3140ff9e490cc2e725c0d02edab8db93009d74b2]] [[WidgetMessage: tm-full-screen]] message to support forcing the status instead of just toggling it\n* [[Refactored|https://github.com/Jermolene/TiddlyWiki5/pull/2758]] the sidebar to make it be dynamically built from the tag <<tag \"$:/tags/SideBarSegment\">>\n* [[Refactored|https://github.com/Jermolene/TiddlyWiki5/commit/19f7287a536e48225ec706589ffb307dfc991c9e]] the tiddler info panel to make it be dynamically built from the tag <<tag \"$:/tags/TiddlerInfoSegment\">>\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/pull/3346]] new [[range Operator]] for generating ranges of numbers\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/pull/3360]] palette support for `<select>` element colouring\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/bef3242075b6d962b7963b9c9c7042c39198fc8f]] new text editor operation ''save-selection'' -- see [[WidgetMessage: tm-edit-text-operation]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/f54a0a11bce9e47542df32610fae489f4a1dba8c]] support for editor toolbar buttons to have action widgets\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/2e51f08bef8656fdca83fff6163dc67cbaefa2d4]] support for rebasing headings at render time -- see [[tv-adjust-heading-level Variable]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/pull/3423]] experimental support for packaging TiddlyWiki's JavaScript core into an external script [[for use with the new Web Server enhancements|Using the external JavaScript template]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/fe85845c3ce78ff102e411d01873912b3de8705e]] new `\\import` [[Pragma]] as a more concise alternative to using the ImportVariablesWidget directly\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/pull/3530]] (and [[here|https://github.com/Jermolene/TiddlyWiki5/commit/a83cd3f984c88a1ecf5861c2c25ffb483b08f0ac\t]]) new [[tv-show-missing-links Variable]] for tighter control over rendering of missing links by the LinkWidget\n\n!! Bug Fixes\n\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/issues/3371]] with [[WidgetMessage: tm-new-tiddler]] overwriting creation fields of existing tiddlers\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/35cbb127a3c21b7047517f1eeeff571a420b82ae]] problem with unwanted variable substitutions by restricting variable substitutions to macros defined with the ''define'' pragma\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/c72e4f01f1a3051e169593a217bffab8eec279f6]] problem with the 'excise' editor toolbar button not showing if the tiddler type is \"text/vnd.tiddlywiki\"\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/929b0c98330ad25aa4a32cd201274a6e89cd8902]] problem with generation of wifi QR codes\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/pull/3495]] [[$tw.platform.isLinux]] on the latest Firefox\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/pull/3334]] problem with using full screen on secondary windows\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/a3a4c28143138ca2bde1b8426c910b5e3d6a7110]] subtle bug whereby the RevealWidget was not refreshing properly when the state tiddler of a popup changed\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/issues/3373]] problem with malformed HTML entities\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/874318091e20293c6f141080cc4330eb7aa02273]] crash when passing illegal arguments to the [[decodeuri Operator]] and [[decodeuricomponent Operator]]\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/457f03798c69f2053894d9971d4b187521c0d9ad]] errors when a popup blocker blocks opening a new window\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/3aae643e140044e440673772d90ebaf0be18ec1f]] problems using a lazily loaded tidler as a state tiddler with the RevealWidget\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/33ba69e852966d7c5449842a95636024857d7177]] problem with modals not appearing in the correct window\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/19c49ae18a48a368ca24bb1493fc9876fa7c7570]] the animations for adding and removing tags in edit mode, and a [[similar fix|https://github.com/Jermolene/TiddlyWiki5/pull/3578]] for the animations in the \"Open\" sidebar tab\n\n!! Developer Bug Fixes and Improvements\n\n* [[Refactored|https://github.com/Jermolene/TiddlyWiki5/pull/2027]] `$tw.utils.parseStringArray()` to optionally allow non-unique entries\n\n! Contributors\n\n[[@Jermolene|https://github.com/Jermolene]] would like to thank the contributors to this release who have generously given their time to help improve TiddlyWiki:\n\n* [[@abesamma|https://github.com/abesamma]]\n* [[@AnthonyMuscio|https://github.com/AnthonyMuscio]]\n* [[@Arlen22|https://github.com/Arlen22]]\n* [[@bimlas|https://github.com/bimlas]]\n* [[@BramChen|https://github.com/BramChen]]\n* [[@BurningTreeC|https://github.com/BurningTreeC]]\n* [[@Drakor|https://github.com/Drakor]]\n* [[@EvanBalster|https://github.com/EvanBalster]]\n* [[@flibbles|https://github.com/flibbles]]\n* [[@G0erman|https://github.com/G0erman]]\n* [[@hchaase|https://github.com/hchaase]]\n* [[@hoelzro|https://github.com/hoelzro]]\n* [[@iblech|https://github.com/iblech]]\n* [[@jho1965us|https://github.com/jho1965us]]\n* [[@ldorigo|https://github.com/ldorigo]]\n* [[@Lioric|https://github.com/Lioric]]\n* [[@Marxsal|https://github.com/Marxsal]]\n* [[@morosanuae|https://github.com/morosanuae]]\n* [[@pmario|https://github.com/pmario]]\n* [[@talha131|https://github.com/talha131]]\n* [[@TechLifeWeb|https://github.com/TechLifeWeb]]\n* [[@tobibeer|https://github.com/tobibeer]]\n* [[@twMat|https://github.com/twMat]]\n* [[@yrashk|https://github.com/yrashk]]\n* [[@xcazin|https://github.com/xcazin]]\n* [[@xcodinas|https://github.com/xcodinas]]\n"
},
"Release 5.1.19": {
"title": "Release 5.1.19",
"caption": "5.1.19",
"created": "20181220163418974",
"modified": "20181220163418974",
"released": "20181220163418974",
"tags": "ReleaseNotes",
"type": "text/vnd.tiddlywiki",
"text": "//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.1.18...v5.1.19]]//\n\nThis release consists of fixes for bugs discovered in [[Release 5.1.18]].\n\n!! Hackability Improvements\n\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/a8b8fb3b6f587ee8813cc0bafdc008bf12ecb7d1]] new [[hidden setting for the filename used when saving|Hidden Setting: Filename for Save Wiki Button]]\n\n!! Bug Fixes\n\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/issues/3630]] incompatible change to the construction of filename used for saving\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/pull/3640]] problem with fonts for the [[KaTeX Plugin]]\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/issues/3647]] problem with forcing basic authentication for the WebServer\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/pull/3650]] problem with the ButtonWidget not refreshing when the `popupTitle` attribute changes\n* [[Fixed|https://github.com/Jermolene/build.jermolene.github.io/issues/5]] problem with `empty.html` accidentally containing a splash screen\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/pull/3641]] regression with search matches across multiple fields\n\n! Contributors\n\n[[@Jermolene|https://github.com/Jermolene]] would like to thank the contributors to this release who have generously given their time to help improve TiddlyWiki:\n\n* [[@BurningTreeC|https://github.com/BurningTreeC]]\n* [[@dlund4|https://github.com/dlund4]]\n* [[@hoelzro|https://github.com/hoelzro]]\n"
},
"Release 5.1.2": {
"title": "Release 5.1.2",
"caption": "5.1.2",
"created": "20140922124011558",
"modified": "20140927162422831",
"tags": "ReleaseNotes",
"type": "text/vnd.tiddlywiki",
"released": "20140927162659979",
"text": "//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.1.1...v5.1.2]]//\n\nThis is another small release with documentation updates and a few bug fixes and improvements.\n\n!! Usability Improvements\n\n* [[Improved|https://github.com/Jermolene/TiddlyWiki5/commit/b3df07ae3e190cfb6fc23dbe31c6229fe5e39087]] error handling for malformed or unrecognised ~LaTeX content with [[KaTeX Plugin]]\n\n!! Hackability Improvements\n\n* [[Improved|https://github.com/Jermolene/TiddlyWiki5/commit/42abef6fbf79342ccbd90b142d48f64ab5c1c38a]] styling of separator before the untagged item in the tags sidebar\n* [[Improved|https://github.com/Jermolene/TiddlyWiki5/commit/23c2d90ee8e28f8c68f9ba58fcbc13a56f838d61]] error handling for the upload saver (which is used for saving to TiddlySpot)\n* [[Improved|https://github.com/Jermolene/TiddlyWiki5/commit/115245a632e80e9d033957327dfec909a3cd1fc8]] storyview error detection\n\n!! Bug Fixes\n\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/b1fb0a2a070a6abc78564e56fdb4244076ac44ac]] crash caused by incorrectly formatted plugins\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/eacb9e53ebf2a814d61bf005d68f449f7b9e63b5]] problem with tiddler info not being removed by the syncer after deleting a tiddler\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/e2046ce4ffb6b8232a4ad5e7f51c431798917787]] HTTP handling to treat response code 201 as success\n\n!! Contributors\n\n[[@Jermolene|https://github.com/Jermolene]] would like to thank the contributors to this release who have generously given their time to help improve TiddlyWiki:\n\n* [[@Evolena|https://github.com/Evolena]]\n* [[@pmario|https://github.com/pmario]]\n* [[@simonbaird|https://github.com/simonbaird]]\n* [[@TheDiveO|https://github.com/TheDiveO]]\n"
},
"Release 5.1.20": {
"title": "Release 5.1.20",
"caption": "5.1.20",
"created": "20190809141328809",
"modified": "20190809141328809",
"released": "20190809141328809",
"tags": "ReleaseNotes",
"type": "text/vnd.tiddlywiki",
"text": "//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.1.19...v5.1.20]]//\n\n!! New Conditional Operators\n\n[[Added|https://github.com/Jermolene/TiddlyWiki5/commit/17711657b6028a177c8aef97f7a0a1c084d65436]] new [[Conditional Operators]] [[then Operator]] and [[else Operator]]\n\n!! New Mathematics Operators\n\nAdded several new [[Mathematics Operators]] for working with numbers: [[negate|negate Operator]], [[abs|abs Operator]], [[ceil|ceil Operator]], [[floor|floor Operator]], [[round|round Operator]], [[trunc|trunc Operator]], [[untrunc|untrunc Operator]], [[sign|sign Operator]], [[add|add Operator]], [[subtract|subtract Operator]], [[multiply|multiply Operator]], [[divide|divide Operator]], [[remainder|remainder Operator]], [[max|max Operator]], [[min|min Operator]], [[fixed|fixed Operator]], [[precision|precision Operator]], [[exponential|exponential Operator]], [[sum|sum Operator]], [[product|product Operator]], [[maxall|maxall Operator]] and [[minall|minall Operator]].\n\n!! New String Operators\n\nAdded several new string operators: [[match|match Operator]], [[length|length Operator]], [[uppercase|uppercase Operator]], [[lowercase|lowercase Operator]], [[titlecase|titlecase Operator]], [[sentencecase|sentencecase Operator]], [[trim|trim Operator]], [[split|split Operator]], [[splitregexp|splitregexp Operator]] and [[join|join Operator]].\n\n!! Improved Handling of Duplicates in Filters \n\nThere is now finer control over TiddlyWiki's default behaviour of removing duplicates from filter results, making it much easier to work with the new mathematics and string operators:\n\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/37bb75f0cf446d62eb45d07b9f9b0aa14814a43f]] support for new `=` prefix for merging filter runs without removing duplicates\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/18fe112da7d3ac210a5a0b9cf73fe9050717d4e3]] option for the [[enlist Operator]] to not remove duplicates\n\n!! Improved Keyboard Shortcuts\n\nKeyboard shortcut handling has been significantly improved with the following new global shortcuts (configurable via $:/ControlPanel):\n\n* <kbd>ctrl-shift-F</kbd> - focus the sidebar search field \n* <kbd>alt-shift-S</kbd> - toggle the visibility of the sidebar\n* <kbd>ctrl-shift-A</kbd> - open the advanced search tiddler\n\n!! Saving to ~GitHub and ~GitLab\n\n[[Added|https://github.com/Jermolene/TiddlyWiki5/commit/aa5eaa98fcb8658dbc2b93476c2e09c9207439d8]] a [[Git service saver|Saving to a Git service]] for saving directly to ~GitHub and ~GitLab\n\n!! Plugin Improvements\n\nNew and improved plugins:\n\n* New [[BrowserStorage Plugin]] for saving tiddlers in browser local storage\n* New [[Innerwiki Plugin]] for rendering TiddlyWiki screenshots\n* [[Updated|https://github.com/Jermolene/TiddlyWiki5/pull/4133]] [[KaTeX Plugin]] to ~KaTeX v0.10.2\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/pull/3131]] an editor toolbar button for the [[KaTeX Plugin]]\n* [[Updated|https://github.com/Jermolene/TiddlyWiki5/pull/3635]] [[Highlight Plugin]] to use highlight.js v9.15.6\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/pull/3898]] support for language aliases with the [[Highlight Plugin]]\n* Updates to the [[CodeMirror Plugin]], including [[adding|https://github.com/Jermolene/TiddlyWiki5/pull/3810]] support for smart indent\n* Updates to the [[Dynaview Plugin]], including [[adding|https://github.com/Jermolene/TiddlyWiki5/commit/a9e595c3f633391003224e499440cdeb8560c055]] support for restoring the scroll position at startup from local storage\n* Updates to the [[Amazon Web Services Plugin]], including [[adding|https://github.com/Jermolene/TiddlyWiki5/commit/fffd0ee9e17d6b6a561648a42f0f200d4bb04046]] support for specifying credentials\n\n!! Translation Improvements\n\nNew and improved translations:\n\n* Catalan\n* Chinese Simplified and Chinese Traditional\n* French\n* German\n* US English\n\n!! Performance Improvements\n\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/pull/3951]] pluggable index modules to accelerate the [[field Operator]] and the [[tag Operator]] (in tests on a wiki with 60K tiddlers, startup time is reduced by 25% with these optimisations, and refresh time is reduced by a factor of three.)\n* [[Optimised|https://github.com/Jermolene/TiddlyWiki5/commit/fddc5d4ee627232441278284ed6bee2f50fe8b26]] the \"Classic\" storyview to perform much faster when the animation duration is set to zero (approximtely 50% speed improvement was observed in tests opening a storyview with 8,000 entries)\n* [[Optimised|https://github.com/Jermolene/TiddlyWiki5/commit/7869546fef7b2ea5fd6fd72feacd565a7f177fb6]] the RevealWidget to avoid using the relatively slow `localeCompare()` method to compare strings\n* [[Updated|https://github.com/Jermolene/TiddlyWiki5/commit/e8d1fbba6c109ccbeaedc1b34e47677c0ada7529]] [[Performance Instrumentation]] to show the timings for individual filters\n* [[Optimised|https://github.com/Jermolene/TiddlyWiki5/pull/4102]] rendering and refreshing child widgets\n\n!! Usability Improvements\n\n* [[Improved|https://github.com/Jermolene/TiddlyWiki5/pull/3832]] the [[palette manager|$:/PaletteManager]] with the ability to delete entries, and directly edit indirect entries\n* Several new palettes: \"Nord\", \"Solarized Light\", \"Spartan Day\", \"Spartan Night\" and \"Twilight\"\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/5a37a84a54f2dc9ccf106309b739cfa693bae3e3]] the plugin library to search all plugin fields\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/e5f3301c1c36e8add4ed89ab1bd53a9b68411d3f]] a warning when core JavaScript modules are overwritten via import\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/pull/3654]] prompt for references when renaming a tiddler\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/0e6855eba8945e023cc5ef19809cfb6d6025627b]] a new filter preset for advanced search for \"tiddlers modified this session\"\n* Added a number of animations (some of were already present but had been broken over the years) for changes in:\n** [[Tags in the view template|https://github.com/Jermolene/TiddlyWiki5/pull/4142]]\n** [[Page controls|https://github.com/Jermolene/TiddlyWiki5/pull/4145]]\n** [[Top left and top right bar|https://github.com/Jermolene/TiddlyWiki5/pull/4146]]\n** [[Tabs|https://github.com/Jermolene/TiddlyWiki5/pull/4149]]\n** [[Fields in the edit template|https://github.com/Jermolene/TiddlyWiki5/pull/4148]]\n\n!! Hackability Improvements\n\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/pull/4051]] support for [[configurable view and edit templates|Hidden Setting: ViewTemplate and EditTemplate]]\n* [[Improved|https://github.com/Jermolene/TiddlyWiki5/commit/37ea659bf011b1d4a152f54171399d94f5bba3ef]] the [[dumpvariables Macro]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/754c1251a9bdf45e8f64079a4bbdaed2d05be2b7]] new [[variables Operator]] and [[getvariable Operator]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/ed67f4a88b29c5c81d4de31203dbf23d66955fb7]] new [[WidgetMessage: tm-focus-selector]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/pull/3546]] new [[escapecss Operator]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/pull/3880]] new [[unusedtitle Macro]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/36e76429b1a1d4638374d513430393db5693b932]] new `[is[variable]]` option to the [[is Operator]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/90684f9f52809ff5df39629d3b161d7ff23002f4]] new `[is[blank]]` option to the [[is Operator]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/94f143bf643e36e817d1dd5b678515853eed6aca]] optional autofocus for the text inputs in $:/AdvancedSearch (controlled by the same [[Hidden Setting: Search AutoFocus]] as the sidebar search)\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/pull/3756]] optional ''tabindex'' attribute to simple, framed and CodeMirror text editor engines\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/pull/3758]] ''tabindex'' attributes to edit templates\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/pull/3822]] outline colour to button, textarea, input\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/477c41f84304ed83245c87068dba3695a5053d62]] ''tooltip'' attribute to SelectWidget\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/348a0bc8bcbf5c42d9b93e5e208696d28fc95cb7]] an option for plugins to disable the initial navigation at startup\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/c036c228269fc30d0df770a7c7713fd9af829df7]] $:/info/browser/language to the InfoMechanism\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/f047e7cbf50edcf4775b50bdebc3f704970b8cde]] an example of using StartupActions to set the default language\n* [[Improved|https://github.com/Jermolene/TiddlyWiki5/commit/edd3156430dd94b0ced630a1b70f2e2ef0ff6c36]] importing of JSON files to verify whether they are valid tiddler files, and import them as plain JSON if not\n* [[Improved|https://github.com/Jermolene/TiddlyWiki5/issues/3974]] the LinkWidget to use the title of the target tiddler as a default if it has no content\n* [[Improved|https://github.com/Jermolene/TiddlyWiki5/commit/2a4c60b23dc1436af6206fad5a56742550eac1a3]] [[WidgetMessage: tm-open-window]] to allow a window title to be specified\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/8e7c0907f8cce4708a02486fc93dcea1ab115196]] ''checkActions'' attribute to the CheckboxWidget\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/3afaa9de9aaae7654c1d03ddc22ee97724cbb159]] support for searches anchored to the start of a field\n\n!! Bug Fixes\n\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/8b04cfd4d5142a957f2e3da80c3f079e215b9e75]] a long standing problem with the main standalone HTML file template whereby raw markup tiddlers would be included even if not selected by the save filter\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/pull/3572]] overlapping dropdowns with sticky titles enabled\n* [[Removed|https://github.com/Jermolene/TiddlyWiki5/pull/3749]] apparently obsolete limitation of selection wrapping in text editor\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/pull/3745]] bug in RevealWidget when stateTitle tiddler is missing\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/72f2a9425197b013ab3664e1679c6763d92d4382]] bug with animation duration being blank\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/pull/3806]] Firefox problem with drag and drop placeholders in the \"open\" tab of the sidebar\n* [[Ameliorated|https://github.com/Jermolene/TiddlyWiki5/pull/3809]] Firefox problem with sticky placeholder during drag and drop operations\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/pull/3819]] [[CodeMirror Plugin]] to use ''tiddler-editor-border'' colour\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/8012a3508f209fbbe68484e30ed65832cf5146b9]] problem using the TiddlySpot saver with cookies disabled\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/pull/3611]] framed text editor to use correct background colour\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/f5b25994322e58de84cae70ab67a68b1413db27f]] problem with the class `tc-sidebar-lists` being used on two different areas of the sidebar, making it impossible to distinguish them in CSS selectors\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/7f78065992baf290ae221fb12c63e52e0f8da403]] problem with unnecessary \"list\" field created when renaming tiddlers\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/394725f00cd8f38089d2840aa026d72c88627bff]] crash with EditBitmapWidget and missing tiddlers\n\n!! Node.js Bug Fixes and Improvements\n\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/373afd72c804b0ffa2779849ba0d278d53e65df4]] new SaveWikiFolderCommand to save a wiki as a [[wiki folder|TiddlyWikiFolders]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/5b09881679200dc78e5962a0588c8f214ddedbbb]] new DeleteTiddlersCommand\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/8c72a28f0c70e6a62387ccdd1431f9225a5fd2de]] (and [[also here|https://github.com/Jermolene/TiddlyWiki5/commit/feab75a6d1723cd6db5912b2902f0ec33c550fb6]]) ability to specify plugins on the command line (see [[Using TiddlyWiki on Node.js]])\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/pull/3677]] support for deflate and gzip compression to the WebServer ListenCommand\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/12630d4a91b4cc7b1eb846c3afbeda16858df05a]] an option to the LoadCommand to ignore loading errors\n* [[Improved|https://github.com/Jermolene/TiddlyWiki5/commit/7fcd2f132e91aa375a1fece501b14e991ba1bd4c]] handling of JSON files by the file system adaptor:\n** Use `.json` files (instead of `.tid`) for any tiddler whose fields contain values that can't be stored as a .tid file\n** Save `application/json` tiddlers as `.json` files\n\n!! Developer Bug Fixes and Improvements\n\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/e52a616891977bde142334df2a72c7dd121efb82]] support for widget subclassing -- see https://tiddlywiki.com/prerelease/dev/#WidgetSubclassingMechanism\n\n! Contributors\n\n[[@Jermolene|https://github.com/Jermolene]] would like to thank the contributors to this release who have generously given their time to help improve TiddlyWiki:\n\n* [[@00SS|https://github.com/00SS]]\n* [[@admls|https://github.com/admls]]\n* [[@benwebber|https://github.com/benwebber]]\n* [[@bimlas|https://github.com/bimlas]]\n* [[@BramChen|https://github.com/BramChen]]\n* [[@BurningTreeC|https://github.com/BurningTreeC]]\n* [[@diego898|https://github.com/diego898]]\n* [[@dnebauer|https://github.com/dnebauer]]\n* [[@inmysocks|https://github.com/inmysocks]]\n* [[@flibbles|https://github.com/flibbles]]\n* [[@jdjdjdjdjdjd|https://github.com/jdjdjdjdjdjd]]\n* [[@JesseWeinstein|https://github.com/JesseWeinstein]]\n* [[@joshuafontany|https://github.com/joshuafontany]]\n* [[@Kartiku|https://github.com/Kartiku]]\n* [[@kyrias|https://github.com/kyrias]]\n* [[@MarxSal|https://github.com/MarxSal]]\n* [[@MidnightLightning|https://github.com/MidnightLightning]]\n* [[@pacoriviere|https://github.com/pacoriviere]]\n* [[@pmario|https://github.com/pmario]]\n* [[@rmunn|https://github.com/rmunn]]\n* [[@talha131|https://github.com/talha131]]\n* [[@telmiger|https://github.com/telmiger]]\n* [[@the-kenny|https://github.com/the-kenny]]\n* [[@xcazin|https://github.com/xcazin]]\n"
},
"Release 5.1.3": {
"title": "Release 5.1.3",
"caption": "5.1.3",
"created": "20141020171015200",
"modified": "20150221230151000",
"tags": "ReleaseNotes",
"type": "text/vnd.tiddlywiki",
"released": "20141020171015200",
"text": "//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.1.2...v5.1.3]]//\n\n!! Usability Improvements\n\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/e872f17842809e33eae177980e9ea0650b6a4c03]] \"new journal\" button; see [[Creating journal tiddlers]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/70984aa39f8a4061162d4e404bfd158e515c7e6e]] \"new here\" button; see [[Creating and editing tiddlers]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/00cdd04edd49c2bf0e461071c0c7c50f8aab4e42]] \"new journal here\" button; see [[Creating journal tiddlers]]\n* [[Made|https://github.com/Jermolene/TiddlyWiki5/commit/c6951ee912d1f2717a8c208cbb920e54edf9e5d9]] date format strings be translateable\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/tree/master/languages/ru-RU]] Russian translation\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/ef1d5310918dae088ce9361c1682ce0f99cf568a]] confirmation when clearing password\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/b7bbcfa05659808c1e51a4f2f5f1d6afbc2ed3a1]] additional prompt when setting password\n* [[Increased|https://github.com/Jermolene/TiddlyWiki5/commit/dc9981322aeb508d5ebac0b691b0d703f8c1995e]] size of the clear search button\n* [[Upgraded|https://github.com/Jermolene/TiddlyWiki5/commit/564457de1c991df15263040d2d5526fa8ae879bb]] to [[KaTeX v0.1.1|https://github.com/Khan/KaTeX/releases/tag/v0.1.1]], with support for several additional LaTeX features\n\n\n!! Hackability Improvements\n\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/2ffe53f1916e4b746cc6d7e74e8f4ac75c72e38a]] audio \"parser\" for handling [[Audio]] content\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/0dcf54c3b59ed04645928f0ec4ced647e5a0da7f]] support for ActionWidgets\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/65504d5d41e45326ab1b1b6c0c21eea4c9772797]] new <<.olink addprefix>> and <<.olink addsuffix>> operators\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/0c8e5380778303cdd3308bed4a15290214841f8b]] support for custom password prompts\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/commit/c26bd4c5a872f56c47e9f5cfc3fada468c53ddde]] the <<.mlink list-links>> macro to display ''caption'' field if present\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/commit/12e26009eef5e29140ba1a880ff033428d673630]] ImageWidget to allow percentage width and height to be specified\n\n!! Bug Fixes\n\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/cc576b052e2b05fd93fcb4f3eb8d9ee5278abf3e]] the <<.olink each>> operator to work with missing tiddlers\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/5dd6ebff05a3380db2901294b2cfc89c1a0e71bf]] problem with tiddler width in zoomin storyview with the sidebar hidden\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/09b6540998fec6bf1fb14842be8e8c53dbd5c46a]] bug whereby the `tm-home` message wasn't navigating to a tiddler, causing problems in zoomin storyview\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/3ca8d7b6cca46ffa424bcf9bdc134da464fc84f4]] problem with jumping toolbar icons under Firefox\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/f85b07e70b71d0622a9459e4b04e2027540abda8]] problem with untagged label being incorrectly coloured\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/b3dcd7d625ec83701ef3a77f3fb8101af57c154f]] problem with title background colours with the \"Sticky Titles\" theme\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/5211f9c40c874a167174e8c0d439db34189d3329]] problem with subfilter parameter of <<.mlink timeline>> macro\n* [[Exclude|https://groups.google.com/d/topic/tiddlywiki/YPACpXhH9PY/discussion]] search string tiddler from search results\n\n!! Node.js Changes\n\n//These changes are only relevant to people using TiddlyWiki under Node.js//\n\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/commit/63c174d7ed56284e80ad6cd6ae966b81f9181cc9]] ~KaTeX plugin to be able to work under Node.js to generate static HTML\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/commit/49dc5694a391a391264a4473e4f4422e2472a3b3]] \"includeWikis\" to merge build targets\n* [[Refactored|https://github.com/Jermolene/TiddlyWiki5/issues/969]] the build scripts for tiddlywiki.com into a separate repository at https://github.com/Jermolene/build.jermolene.github.io\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/commit/744245ea3249446fd15f504190efb1d828935d01]] boot kernel to raise an error if a missing wiki folder is specified on the command line\n\n!! Contributors\n\n[[@Jermolene|https://github.com/Jermolene]] would like to thank the contributors to this release who have generously given their time to help improve TiddlyWiki:\n\n* [[@andrey013|https://github.com/andrey013]]\n* [[@BramChen|https://github.com/BramChen]]\n* [[@buggyj|https://github.com/buggyj]]\n* [[@Eucaly|https://github.com/Eucaly]]\n* [[@Evolena|https://github.com/Evolena]]\n* [[@fghhfg|https://github.com/fghhfg]]\n* [[@Marxsal|https://github.com/Marxsal]]\n* [[@pmario|https://github.com/pmario]]\n* [[@simonbaird|https://github.com/simonbaird]]\n* [[@TheDiveO|https://github.com/TheDiveO]]\n* [[@xcazin|https://github.com/xcazin]]\n"
},
"Release 5.1.4": {
"title": "Release 5.1.4",
"caption": "5.1.4",
"created": "20141022155524581",
"modified": "20141022155524581",
"tags": "ReleaseNotes",
"type": "text/vnd.tiddlywiki",
"released": "20141022155524581",
"text": "//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.1.3...v5.1.4]]//\n\nThis is a small release with documentation improvements and some important bug fixes from [[Release 5.1.3]].\n\n!! Usability Improvements\n\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/6681a8e1f2fd3f39d92a1480b5b573a6c831515d]] a toolbar button for advanced search\n* [[Changed|https://github.com/Jermolene/TiddlyWiki5/commit/53d834c86be2f97599a9486c0eae4777c51d9093]] dragging behaviour so that you can drag a tiddler title into an edit box to insert the title, making link creation easier. (This change doesn't affect the behaviour of dragging tiddler links between TiddlyWiki windows)\n\n!! Hackability Improvements\n\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/26e50b81e579b7f2d190ca3662cadcf82764c8a7]] additional theme tweaks for the body text size and line height\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/commit/1b620387dda2d16bf387a89071188762455890c4]] the ViewWidget to work with subtiddlers\n\n!! Bug Fixes\n\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/ddc74955427f8a7291ee964c42a771a112007789]] problem with search counts\n\n!! Node.js Changes\n\n//These changes are only relevant to people using TiddlyWiki under Node.js//\n\n* Fixed problem with missing wiki folder warnings by [[removing|https://github.com/Jermolene/TiddlyWiki5/commit/9fedf3865778fd3aa50c2f049c2b81061c8cd778]] and [[re-implementing|https://github.com/Jermolene/TiddlyWiki5/commit/e62e38d66c6eb447bbd8f16b5beec0fe0276ea0d]] the fix from [[Release 5.1.3]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/5d600ce31b1d1162529ae8043bb342e2165c4b13]] coloured warnings and errors under Node.js\n\n!! Contributors\n\n[[@Jermolene|https://github.com/Jermolene]] would like to thank the contributors to this release who have generously given their time to help improve TiddlyWiki:\n\n* [[@danielo515|https://github.com/danielo515]]\n* [[@gernert|https://github.com/gernert]]\n\n"
},
"Release 5.1.5": {
"title": "Release 5.1.5",
"caption": "5.1.5",
"created": "20141025120850184",
"modified": "20150221225041000",
"tags": "ReleaseNotes",
"type": "text/vnd.tiddlywiki",
"released": "20141126153016142",
"text": "//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.1.4...v5.1.5]]//\n\n!! Translation Improvements\n\n* Added new translators edition making it much easier to create and maintain translations of TiddlyWiki\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/615425cf0634233d27f4f1ea430589b2a618feb6]] improved Japanese translation\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/8ba1a9b72ac5a4f50a4f670a24393d564c137c0c]] new Danish translation\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/14a64ef3effc1e4cf1098b35af6d6cb864d77ac2]] new Greek translation\n\n!! Usability Improvements\n\n* [[Improvements|https://github.com/Jermolene/TiddlyWiki5/commit/09a3f94d79fc6eacbfd46c86594748e996191eb2]] to tooltips for accessibility\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/6fc5c70ace43219710983f6d9640f4b01d620908]] export button to tiddler toolbar, page controls and [[advanced search|$:/AdvancedSearch]] \"filter\" tab\n* Improved layout of [[$:/TagManager]]\n* [[Simplified|https://github.com/Jermolene/TiddlyWiki5/commit/0a986ccd995266bf3a47182fa584d79f9dd3e153]] default tiddler toolbar buttons\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/63b00fd0f80ce0c9917e233287d4a0138e8c385f]] advanced search button to sidebar search results\n* [[Improved|https://github.com/Jermolene/TiddlyWiki5/commit/4d061d0fee959fdc5ab470dc8f8379bedfa946d9]] search results by listing title matches at the top\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/da1f9f7d2233eb2aacc027bc1fc1053fa8b7bc2e]] input box for specifying new field value in edit template\n* [[Improved|https://github.com/Jermolene/TiddlyWiki5/commit/0bb8e08edca61f415aa084327b6751c278e45108]] tag pill rendering so that the foreground colour is dynamically chosen for maximum contrast with the background colour\n* Enhancements to many of the [[core icons|ImageGallery Example]]\n* [[Removed|https://github.com/Jermolene/TiddlyWiki5/commit/1dfa6f369bddd8dedba2e47dc4707eba28ccf4e1]] (and [[here|https://github.com/Jermolene/TiddlyWiki5/commit/145713e7668a41320981ed87b448542cd30d13dc]], [[here|https://github.com/Jermolene/TiddlyWiki5/commit/3035badf144abb85f5d42b2b1d395cf0f65fb03e]] and [[here|https://github.com/Jermolene/TiddlyWiki5/commit/e69e2c1c91002c296e1789532ca74286fae8d5a4]]) unnecessary confirmations when abandoning or deleting unmodified tiddlers\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/a5c7089bcfe3d2439eb082535527a7cc767891cc]] a subtle rounded corner to tiddlers and tabs\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/6f0d581d720e611fade3b3f346ad0409ef5e291b]] automatic focusing of the title of newly created tiddlers\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/81481588e07ed3cb1e378a6c6f21d26dcbaa8345]] advanced search links on tiddler counts in [[$:/ControlPanel]]\n\n!! Hackability Improvements\n\n* Introduced new ActionSetFieldWidget, ActionDeleteFieldWidget and ActionDeleteTiddlerWidget for manipulating tiddler fields and values\n* [[Enhanced|https://github.com/Jermolene/TiddlyWiki5/commit/c7971d3da3bbef4bbc81d4462ee93590adc248f8]] [[WidgetMessage: tm-new-tiddler]] to allow a skeleton to be specified with additional fields\n* [[Enhanced|https://github.com/Jermolene/TiddlyWiki5/commit/4a172125768e3b33c30e725e8550454a9d26c5c4]] the EditTextWidget to allow more control over the sizing of textarea editors\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/13726ef73157d9e9d65ae4027d9c32aaa7cdcc90]] new canned filter for recently modified system tiddlers in [[$:/AdvancedSearch]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/c20c935faabbb63f679bc4720b52162c56b6af64]] new system image for videos: [[$:/core/images/video]]\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/commit/c13cf94413c94ee56bebc60fab2d9231d1824d88]] search results to allow custom visualisations - see [[Customising search results]]\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/commit/a3a50dbf6d96e7441e5e8ec183e40134bc4eb618]] <<.mlink timeline>> macro to be able to use different date fields\n* [[Updated|https://github.com/Jermolene/TiddlyWiki5/commit/8260d000be1cf1caf35a557f6cd54a0fb8ccf4f0]] the <<.olink search>> operator to allow a field to be specified\n* [[Updated|https://github.com/Jermolene/TiddlyWiki5/commit/73491f14dd63612d527632210d2c3873eb81188f]] the highlight plugin to display tabs as spaces\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/commit/91a7c397911726e391ca368f96b50fbe1687d56a]] modal handling to permit variables to be passed to the modal (see [[WidgetMessage: tm-modal]])\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/853f5fd06402b16e271e8f119ef380de485aeff2]] simple logging to help track down drop/paste issues (see https://tiddlywiki.com/dev/#ImportLogging)\n* [[Updated|https://github.com/Jermolene/TiddlyWiki5/commit/b520efdeb83f6ac7536a69cf5af2bab3f94cf77f]] [[WidgetMessage: tm-download-file]] and [[WidgetMessage: tm-save-wiki]] to allow variables to be specified for the rendering\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/f5055c0205d24102a36b9cf3a9dd9306e148a1f0]] [[Example Table of Contents: Tabbed Internal]]\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/commit/79e428757b5562bd4a925b9b0428ea4ba70ad05a]] RevealWidget so that it can be used without specifying a state tiddler\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/90caf5bf42523cfb6cd603b979aadb719ddcede4]] \"hooks\" mechanism so that plugins can modify the default tiddler list\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/b882a0dff12dc2660426de53e64d8c018f3a9d84]] support for nested popups\n\n!! Bug Fixes\n\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/90096cbd367a7a685fb5dc5b2cbaa69a00d8199f]] problem with CodeMirror editor and missing tiddlers\n* [[Exclude|https://github.com/Jermolene/TiddlyWiki5/commit/5093cdc86047209f23b9ead5ee0f216d0414e4f2]] drafts from [[Table-of-Contents Macros]]\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/5599f9f9338a5f96080143b2192214a78b961509]] problem with encoding of HTML tiddlers\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/835e3a945244dd8a07f4c7fd570eb890e9fdcc2c]] problem with sticky titles being covered by vertical tabs\n* [[Removed|https://github.com/Jermolene/TiddlyWiki5/commit/d1bbe7253c135ceed138fd02c82b0f861d5dda6b]] flicker when automatically resizing textareas\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/4bf6fe7fe9416f4e304036302ab5727148ae5222]] JSON deserialiser so that all fields can be imported\n\n!! Node.js Changes\n\n//These changes are only relevant to people using TiddlyWiki under Node.js//\n\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/commit/8e685e5150e636aed6655c6caa09c7b6cffdcea2]] ''includeWikis'' mechanism of TiddlyWikiFolders to allow read-only wikis to be included\n* [[Improved|https://github.com/Jermolene/TiddlyWiki5/commit/cea963420ca2800b86989e29d42d06ccb7ea2a00]] error handling under Node.js\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/17a594a97ad5655142c834dfd5fa68855a61d201]] UnpackPluginCommand\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/04d26e6fae20671a6d455e113f7b0afedabc7122]] EditionsCommand to list the available editions\n\n!! Changes affecting plugin authors\n\n* [[Disabled|https://github.com/Jermolene/TiddlyWiki5/commit/f7a2849d27bb082e4bbf6b056a800a1edb30f510]] wiki change events for shadow tiddlers\n* [[Updated|https://github.com/Jermolene/TiddlyWiki5/commit/d93c19daaa126f0938048009a83796cb52690541]] structure of widget messages that have a hashmap parameter\n* The support for nested popups has necessitated a change in the way that popups are styled that affects popups that are triggered with the focusPopup attribute of the EditTextWidget: it is now necessary for the widget to be given the class `tc-popup-handle`.\n\n!! Contributors\n\n[[@Jermolene|https://github.com/Jermolene]] would like to thank the contributors to this release who have generously given their time to help improve TiddlyWiki:\n\n* [[@andrey013|https://github.com/andrey013]]\n* Birthe C\n* [[@Braincoke|https://github.com/Braincoke]]\n* [[@BramChen|https://github.com/BramChen]]\n* [[@danielo515|https://github.com/danielo515]]\n* [[@erwanm|https://github.com/erwanm]]\n* [[@Evolena|https://github.com/Evolena]]\n* [[@giffmex|https://github.com/giffmex]]\n* [[@inmysocks|https://github.com/inmysocks]]\n* Makoto Hirohashi\n* [[@pmario|https://github.com/pmario]]\n* [[@Skeeve|https://github.com/Skeeve]]\n* [[@tobibeer|https://github.com/tobibeer]]\n* [[@welford|https://github.com/welford]]\n"
},
"Release 5.1.6": {
"title": "Release 5.1.6",
"caption": "5.1.6",
"created": "20141127120850184",
"modified": "20150221194210000",
"tags": "ReleaseNotes",
"type": "text/vnd.tiddlywiki",
"released": "20141219155007260",
"text": "//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.1.5...v5.1.6]]//\n\n!! Translation Improvements\n\n* Added Dutch translation\n* Updated Danish and Japanese translations\n\n!! Hackability Improvements\n\n* [[Allow|https://github.com/Jermolene/TiddlyWiki5/commit/b29973312d7c16292cabb493e5914668f7c3f127]] buttons to be styled to look like internal links\n* [[Disabled|https://github.com/Jermolene/TiddlyWiki5/commit/5b38c21a417d2e5e2b85aed8010c88af32420e24]] linking when transcluding ''caption'' field in [[Table-of-Contents Macros]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/b220c19fb7b789eb6d00c9d1a71414676d87130e]] support for templates to tabbed [[Table-of-Contents Macros]]\n* [[Allow|https://github.com/Jermolene/TiddlyWiki5/commit/31b5eb1578640fabe8712f0cd4edd49708bc4493]] shadow tiddlers to appear in [[Table-of-Contents Macros]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/5154a25ab95f0cc08eb079a624be4fd3353e6dbd]] tooltip to BrowseWidget\n* [[Improved|https://github.com/Jermolene/TiddlyWiki5/commit/42dba113ccdb18d7e76ac7a773c7dca532207007]] handling of missing tiddlers by the <<.olink has>> and <<.olink field>> operators\n\n!! Bug Fixes\n\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/182c2428ca7b38d00d36d2d6650e761026470e63]] problem with download saver using incorrect filename\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/d031a93c6d607d5b10d025149608f10977181e26]] [[problem|https://github.com/Jermolene/TiddlyWiki5/issues/1010]] with processing of date format templates\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/a0c13a0856cb6b4a2592acdd46975e44eb7c53a8]] problem with ''storytop'' theme tweak not being respected when the narrow responsive design kicks in\n\n!! Node.js Changes\n\n//These changes are only relevant to people using TiddlyWiki under Node.js//\n\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/bb74be7ac1a24eeaee10a3cb3d3633e3aa318632]] problem with \"all tiddlers\" static HTML export\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/51db48acc901d8fb298d9b0f7f10b47ffe90df05]] incorrect checking for an empty folder with the InitCommand\n\n!! Changes affecting plugin authors\n\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/commit/1e47a62c2af392f30a492da732b33b89f23a2e4c]] `$tw.utils.each` so that the loop can be broken out of\n\n!! Contributors\n\n[[@Jermolene|https://github.com/Jermolene]] would like to thank the contributors to this release who have generously given their time to help improve TiddlyWiki:\n\n* [[@anavarre|https://github.com/anavarre]]\n* [[@Drakor|https://github.com/Drakor]]\n* [[@dullroar|https://github.com/dullroar]]\n* [[@erwanm|https://github.com/erwanm]]\n* [[@malgam|https://github.com/malgam]]\n* [[@nameanyone|https://github.com/nameanyone]]\n* [[@pekopeko1|https://github.com/pekopeko1]]\n* [[@Spangenhelm|https://github.com/Spangenhelm]]\n* [[@tobibeer|https://github.com/tobibeer]]\n* [[@xcazin|https://github.com/xcazin]]\n"
},
"Release 5.1.7": {
"title": "Release 5.1.7",
"caption": "5.1.7",
"created": "20141219215007260",
"modified": "20141219215007260",
"tags": "ReleaseNotes",
"type": "text/vnd.tiddlywiki",
"released": "20141219215007260",
"text": "//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.1.6...v5.1.7]]//\n\nThis is an hot fix release with the following change over [[Release 5.1.6]]:\n\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/a31aa25d0c00187ff829d74108f018e44b5cb3c5]] typo in GettingStarted\n"
},
"Release 5.1.8": {
"title": "Release 5.1.8",
"caption": "5.1.8",
"created": "20150417163307227",
"modified": "20150417163307227",
"tags": "ReleaseNotes",
"type": "text/vnd.tiddlywiki",
"released": "2015041716307227",
"text": "//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.1.7...v5.1.8]]//\n\nThis release includes many improvements to the documentation for TiddlyWiki. Many thanks to everyone who has helped out, but especially to our prodigious new contributor Astrid Elocson.\n\n!! Translation Improvements\n\n* Improvements to French, Danish, Chinese and Japanese translations\n\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/cb8caf6a01aeeac480bf28661888961657b0dbd8]] Czech translation\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/d6918d737f5d1b663346ad9a35421a5ae0ffb9a7]] [[Interlingua|http://en.wikipedia.org/wiki/Interlingua]] translation\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/6721a5eb1b77935226ccc8559008af3a0a05d0cb]] Portuguese translation\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/b845751d3c549366adb2f6e5c58b0114fa95ba30]] Punjabi and Hindu translations\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/49a9a2c44ca3a71fff3062709f06940aaca4a574]] Slovak translation\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/5d947ed582fb9d68c01d82a334ab75498a8724ef]] Spanish translation\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/2c367c5476da70ce9c2b37838febcdf437b9aca4]] localisation for encryption prompt\n\n!! Usability Improvements\n\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/987bfcfd5b49b992e5fd45f3428497f6f55cae53]] user interface for [[setting a page background image|Setting a page background image]]\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/3df341621d30b205775288e324cef137c48e9f6e]] problem with unnecessary scrolling at startup\n* [[Upgraded|https://github.com/Jermolene/TiddlyWiki5/commit/ae001a19e5b3e43cf5388fd4e8d99788085649fe]] the [[KaTeX Plugin]] to use [[KaTeX v0.2.0|https://github.com/Khan/KaTeX/releases/tag/v0.2.0]], with better symbol support\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/70e419824fab107aab58f87780dbb5a1de70c248]] [[Help Plugin]] providing floating help panel\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/8643278a452d1a300cec8d3425c1b18699a17dca]] support for an online plugin library\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/ea6e60e66983ee1184f09c5796ef6c8bceae703a]] automatic focusing of the search box at startup\n* [[Introduced|https://github.com/Jermolene/TiddlyWiki5/commit/4f3cb8b9aebfc4f65f40c96ef99730887d746b41]] the [[Railroad Plugin]] by Astrid Elocson (see it in action in the new [[Filter Syntax]] documentation)\n* [[Migrated|https://github.com/Jermolene/TiddlyWiki5/commit/230066eeae9ace8336612e02c78f8cdaa3f717e4]] functionality of \"Sticky Titles\" theme into an optional tweak for the \"Vanilla\"/\"Snow White\" themes. This means that tiddler titles will stick to the top of the window during scrolling on browsers that support `position: sticky` (such as Safari and Firefox)\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/8cb7090c40489c81e8c5dfb8cbbdee2c60998c3e]] icons to [[$:/AdvancedSearch]], [[$:/ControlPanel]] and [[$:/TagManager]]\n* [[Changed|https://github.com/Jermolene/TiddlyWiki5/commit/21b6ce71ffc617f61d4da0065a3ee695be535e2a]] wording of tiddler \"save\" button to \"confirm\"\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/issues/1103]] automatic linking of system tiddlers such as $:/ControlPanel\n* [[Improved|https://github.com/Jermolene/TiddlyWiki5/commit/9c7936413a8c50817044eb409661a575f7f97563]] new tag dropdown to only list title matches\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/aae56f20af35e7be6f3839a8c727e3f43174efe9]] a warning banner notifying the user when modified plugins require the page to be reloaded\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/0bd2ec50e1514ef247182816f9f9e421f52f67bb]] first pass at \"stacked\" story view\n* [[Changed|https://github.com/Jermolene/TiddlyWiki5/commit/421ac16389cf07e8c00611ef5a858da0b89f7584]] modal headers and footers to be parsed in inline mode by default (avoiding unneeded `<p>` tags)\n\n!! Hackability Improvements\n\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/d340277cb219ffebd212fbf409e8ea804121d105]] [[resolvepath Macro]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/718ce3e4aa04f7af5e9310f90d3415c0d82bee6f]] ''class'' attribute to CheckboxWidget\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/bb10e2b02900ece4701c44c3a7e7c03304e813b7]] support for a special message to be displayed when the main story river is empty\n* [[Improved|https://github.com/Jermolene/TiddlyWiki5/commit/6e0c7d90221771ae384d620984f08a2090c500dc]] font rendering under Mac OS X\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/a2493f80a973b24ad3d3affda945c437b98c2d2e]] support for embedding ZIP files\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/1808b1597e5a61379e4e5381d6d78bb73fa3a523]] support for custom elements with the RevealWidget\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/bd6472c1d10bc86eaf1b317c35b86f84086ee3c8]] ''style'' attribute to RevealWidget\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/0b4ed3c72de16148ffe62abf1c5c06f2d2ce47f1]] text inputs to use palette colours\n* Several new [[core icons|ImageGallery Example]]: <span style=\"fill:#aaa;\"><span title=\"$:/core/images/github\">{{$:/core/images/github}}</span> <span title=\"$:/core/images/help\">{{$:/core/images/help}}</span> <span title=\"$:/core/images/mail\">{{$:/core/images/mail}}</span> <span title=\"$:/core/images/tip\">{{$:/core/images/tip}}</span> <span title=\"$:/core/images/warning\">{{$:/core/images/warning}}</span> <span title=\"$:/core/images/twitter\">{{$:/core/images/twitter}}</span> <span title=\"$:/core/images/video\">{{$:/core/images/video}}</span> <span title=\"$:/core/images/up-arrow\">{{$:/core/images/up-arrow}}</span> <span title=\"$:/core/images/left-arrow\">{{$:/core/images/left-arrow}}</span></span>\n\n!! Bug Fixes\n\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/pull/1520]] the [[sameday Operator]] and [[eachday Operator]] to accept TW5 date strings\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/pull/1249]] version number compatibility checks for plugins\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/1adfe20508116da0ee4b5c9e72ea9742f24b60c9]] problem with repeatedly cancelling a draft\n* [[Improved|https://github.com/Jermolene/TiddlyWiki5/commit/050b643948e24d1d93a83766a23a0d693616d01e]] sandboxing of generated `<iframe>` elements\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/b166632bbb76a7a033cd8fc3af14e5dadddfc631]] problem with modal backgrounds on Firefox\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/1b87d9134bd0b45be671eebfdcac1d7acadcecf4]] problem with accidentally dragging a tiddler within its originating window\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/c9ab873ba393753647f2b0b3b3aa1a8bcf6b1c28]] problem with dragging certain plugins with Safari\n* [[Partially fixed|https://github.com/Jermolene/TiddlyWiki5/commit/2f8837a44508687223c4d78e718cf82a9b35c97b]] problem with SVG icons being clipped by 1 pixel on the right and bottom\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/f3ed9bf7e4936dd9bbe3e237673828bbe89326f9]] problem with double quotes in a new field value\n\n!! Node.js Changes\n\n//These changes are only relevant to people using TiddlyWiki under Node.js//\n\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/cc85368fd48f1e5878018a4e00b6c17d436e67a9]] [[Highlight Plugin]] to work when generating static files under Node.js\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/c296f14210545374124df5d4ae9ffb402ed73561]] problem with case-insensitive filing systems (eg Windows)\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/pull/1354]] mobile metadata to static page templates\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/pull/1352]] added \"noclean\" parameter to RenderTiddlersCommand\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/b768dc332b2d5d7ac1f731953cafb5fd1b30dad9]] [[editions Operator]] and [[editiondescription Operator]] for enumerating available editions\n\n!! Contributors\n\n[[@Jermolene|https://github.com/Jermolene]] would like to thank the contributors to this release who have generously given their time to help improve TiddlyWiki:\n\n* [[@aelocson|https://github.com/aelocson]]\n* [[@andreasabeck|https://github.com/andreasabeck]]\n* [[@alexhough|https://github.com/alexhough]]\n* [[@Arlen22|https://github.com/Arlen22]]\n* [[@BramChen|https://github.com/BramChen]]\n* [[@danielo515|https://github.com/danielo515]]\n* [[@dpdannemiller|https://github.com/dpdannemiller]]\n* [[@Drakor|https://github.com/Drakor]]\n* [[@evgeniy-gryaznov|https://github.com/evgeniy-gryaznov]]\n* [[@felixhayashi|https://github.com/felixhayashi]]\n* [[@gernert|https://github.com/gernert]]\n* [[@Infurnoape|https://github.com/Infurnoape]]\n* [[@Jc-L|https://github.com/Jc-L]]\n* [[@le-pako|https://github.com/le-pako]]\n* [[@Mathobal|https://github.com/Mathobal]]\n* [[@ng110|https://github.com/ng110]]\n* [[@pmario|https://github.com/pmario]]\n* [[@reflectionist|https://github.com/reflectionist]]\n* [[@roma0104|https://github.com/roma0104]]\n* [[@simonbaird|https://github.com/simonbaird]]\n* [[@Spangenhelm|https://github.com/Spangenhelm]]\n* [[@sukima|https://github.com/sukima]]\n* [[@tobibeer|https://github.com/tobibeer]]\n* [[@twMat|https://github.com/twMat]]\n* [[@welford|https://github.com/welford]]\n* [[@xcazin|https://github.com/xcazin]]\n"
},
"Release 5.1.9": {
"title": "Release 5.1.9",
"caption": "5.1.9",
"created": "20150703153725652",
"modified": "20150703153725652",
"tags": "ReleaseNotes",
"type": "text/vnd.tiddlywiki",
"released": "20150703153725652",
"text": "\\define custom-colour-picker(tiddler,colour)\n<$edit-text tiddler=\"\"\"$tiddler$\"\"\" index=\"\"\"$colour$\"\"\" type=\"color\" tag=\"input\"/>\n\\end\n\n//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.1.8...v5.1.9]]//\n\n! Major Improvements\n\n!! New \"Powered by ~TiddlyWiki\" plugin\n\nAn experimental plugin to add a simple \"Powered by ~TiddlyWiki\" banner to your site. It is included in this prerelease but will not be on the main tiddlywiki.com wiki.\n\n!! New \"Fluid story, fixed sidebar\" mode\n\nIt is now possible to arrange the main window so that the sidebar has a fixed width and the story river expands to fill the remaining space.\n\nTo switch it on, visit ''Theme Tweaks'' in the $:/ControlPanel ''Appearance'' tab and use the following options:\n\n* Sidebar layout:\n** ''Fixed story, fluid sidebar'' (default) - the story river has a fixed width and the sidebar fills the remaining space\n** ''Fluid story, fixed sidebar'' - the story river expands to fill horizontal space remaining after the fixed width sidebar\n* Sidebar width:\n** The width of the sidebar. Can be specified in pixels (eg ''350px''), a percentage (eg ''25%'') or other [[CSS unit|https://developer.mozilla.org/en/docs/Web/CSS/length]]\n\n!! Toolbar Button Style Setting\n\nA new setting in $:/ControlPanel ''Settings'' tab allows the toolbar button style to be chosen from the following options:\n\n* <$button set=\"$:/config/Toolbar/ButtonClass\" setTo=\"tc-btn-invisible\">borderless</$button> the existing style\n* <$button set=\"$:/config/Toolbar/ButtonClass\" setTo=\"tc-btn-boxed\">boxed</$button>, which adds a thin border box around the button\n* <$button set=\"$:/config/Toolbar/ButtonClass\" setTo=\"tc-btn-rounded\">rounded</$button>, which rounds the button corners and inverts the button colours\n\nPlugins can add new style options.\n\n!! New Tiddler Toolbar Button: \"Open in new window\"\n\nAn experimental new tiddler toolbar button opens a single tiddler in a separate pop-up browser window. The tiddler will be dynamically updated just as in the main window. There are several uses:\n\n* Arranging reference tiddlers for easy access while editing in the main window\n* Making good use of multi-screen layouts\n* Printing the content of a single tiddler\n* Running presentations in a separate window while maintaining notes in the main window\n\n!! Improvements for visually impaired users\n\n* Improved monochrome palette variants:\n** <$button>\n<$action-setfield $tiddler=\"$:/theme\" text=\"$:/themes/tiddlywiki/vanilla\"/>\n<$action-setfield $tiddler=\"$:/palette\" text=\"$:/palettes/ContrastDark\"/>\nDark palette\n</$button>. Foreground: <<custom-colour-picker \"$:/palettes/ContrastDark\" \"foreground\">>, Background: <<custom-colour-picker \"$:/palettes/ContrastDark\" \"background\">>\n** <$button>\n<$action-setfield $tiddler=\"$:/theme\" text=\"$:/themes/tiddlywiki/vanilla\"/>\n<$action-setfield $tiddler=\"$:/palette\" text=\"$:/palettes/ContrastLight\"/>\nLight palette\n</$button>. Foreground: <<custom-colour-picker \"$:/palettes/ContrastLight\" \"foreground\">>, Background: <<custom-colour-picker \"$:/palettes/ContrastLight\" \"background\">>\n** <$button>\n<$action-setfield $tiddler=\"$:/theme\" text=\"$:/themes/tiddlywiki/snowwhite\"/>\n<$action-setfield $tiddler=\"$:/palette\" text=\"$:/palettes/Vanilla\"/>\nRevert\n</$button>\n\n!! New \"Solar Flare\" palette\n\nThere's a new core palette \"Solar Flare\", contributed by Rustem Akbulatov (@nameanyone).\n\n<$button>\n<$action-setfield $tiddler=\"$:/theme\" text=\"$:/themes/tiddlywiki/snowwhite\"/>\n<$action-setfield $tiddler=\"$:/palette\" text=\"$:/palettes/SolarFlare\"/>\nTry it out\n</$button> <$button>\n<$action-setfield $tiddler=\"$:/theme\" text=\"$:/themes/tiddlywiki/snowwhite\"/>\n<$action-setfield $tiddler=\"$:/palette\" text=\"$:/palettes/Vanilla\"/>\nRevert\n</$button>\n\n!! Options for Story Control\n\nThere are new options for controlling the position in the story river of newly opened tiddlers. Visit the ''Settings'' tab of $:/ControlPanel and look for \"Tiddler Opening Behaviour\".\n\n!! New Hidden Settings\n\nTwo new [[hidden settings|Hidden Settings]] for advanced configuration:\n\n* [[Hidden Setting: Search AutoFocus]]\n* [[Hidden Setting: Typing Refresh Delay]]\n\n!! New Vars widget\n\n[[Added|https://github.com/Jermolene/TiddlyWiki5/pull/1678]] VarsWidget for setting multiple variables in one operation:\n\n```\n<$vars greeting=\"Hi\" me={{!!title}} sentence=<<helloworld>>>\n <<greeting>>! I am <<me>> and I say: <<sentence>>\n</$vars>\n```\n\n! Other Improvements\n\n!! Translation Improvements\n\n* Updates to the Dutch, Chinese, Italian and German translations\n* New Catalan (Spain) translation\n\n!! Usability Improvements\n\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/789069bb6b9ca1bd9da75e035b18728e83eb232c]] new page control icon for setting the palette: <$set name=\"tv-config-toolbar-class\" value=\"btn\">\n<$set name=\"tv-config-toolbar-icons\" value=\"yes\">\n<$set name=\"tv-config-toolbar-text\" value=\"yes\">\n{{$:/core/ui/Buttons/palette}}\n</$set>\n</$set>\n</$set>\n* Added new icons for <span style=\"fill:#aaa;\">\npalette <span title=\"$:/core/images/palette\">{{$:/core/images/palette}}</span>\nand \"open new window\" <span title=\"$:/core/images/open-window\">{{$:/core/images/open-window}}</span>\n</span>\n* [[Improved|https://github.com/Jermolene/TiddlyWiki5/commit/648f670bcbba088780bc76f0c33cbe378d283bbd]] the theme icon to better match the new palette icon: <span style=\"fill:#aaa;\">\n<span title=\"$:/core/images/theme-button\">{{$:/core/images/theme-button}}</span>\n<span title=\"$:/core/images/plugin-generic-theme\">{{$:/core/images/plugin-generic-theme}}</span>\n</span>\n* [[Avoid|https://github.com/Jermolene/TiddlyWiki5/commit/7b4153f87f8b4793fa055ec287a659ece3150d99]] glitch with autofocusing the search box in the plugin library\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/9f92c086c31a528a2ffb6bc9fed53d4cc016480f]] information about TiddlyDesktop to [[Releases]]\n* [[Stopped|https://github.com/Jermolene/TiddlyWiki5/commit/4a3a5bf1f06c4efb8449c860e90c214f707954f6]] autosaving after cancelling an edit\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/062aa03c5acf6ac506169e9f3bac9cb0307667e4]] dropdown to edit template to allow existing field names to be selected\n\n!! Hackability Improvements\n\n* [[Updated|https://github.com/Jermolene/TiddlyWiki5/commit/5f3587c38c2968ff63780552ef50b52d87ada3ca]] to ~KaTeX version 0.4.3, with the following editions since the previous 0.2.0 release that was distributed with TiddlyWiki 5.1.8:\n** Added support for some `\\begin`/`\\end` environments, including support for `array`, `matrix`, `pmatrix`, `bmatrix`, `vmatrix`, and `Vmatrix`\n** Added support for optional `\\sqrt` arguments, e.g. `\\sqrt[3]{x}`\n** Add support for `\\phantom`\n** Add `\\#`, `\\&`\n** See the [[KaTeX GitHub page|https://github.com/Khan/KaTeX/releases]] for full release details\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/commit/9b4b9d4d8878b8646112de7b5a7b282f50a4d1cb]] ActionSendMessageWidget for more flexible passing of named parameters via new `$name` and `$value` attributes\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/6942efa6289c9f1d99ea9f63972aa314ac06a8b1]] styling for `<kbd>` elements such as <kbd>escape</kbd> and <kbd>enter</kbd>\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/637aaca2fc3563cc695ab5603fc0cde222a770da]] subtle new \"pin stripe\" pattern for page background - <$button>\n<$action-setfield $tiddler=\"$:/themes/tiddlywiki/vanilla/settings/backgroundimage\" text=\"Pinstripe.gif\"/>\n<$action-setfield $tiddler=\"$:/themes/tiddlywiki/vanilla/settings/backgroundimageattachment\" text=\"fixed\"/>\n<$action-setfield $tiddler=\"$:/themes/tiddlywiki/vanilla/settings/backgroundimagesize\" text=\"auto\"/>\nTry it out\n</$button>\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/139496209f92d229feadf5c2883edec9090c0a0a]] support for custom elements to the ButtonWidget\n* [[Improved|https://github.com/Jermolene/TiddlyWiki5/commit/d8366cc45f25d16c9085e05ee18965e626e218ff]] CodeMirror plugin to automatically refresh when a tiddler type changes\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/0d5033e2a00e34a7665c2cff58c0d15da224dd2b]] new setting in $:/ControlPanel to render tiddler titles as links, which can be convenient for drag and drop\n* [[Simplified|https://github.com/Jermolene/TiddlyWiki5/commit/f42842f80104e8e892545c758ea0b997cacbdd31]] detecting the preview pane with the [[tv-tiddler-preview Variable]]\n* [[Improved|https://github.com/Jermolene/TiddlyWiki5/commit/50c6ce8b73aef692920d7a03b1c9c46c35f972d6]] automatic linking of system tiddler titles by restricting them to letters and the characters `/.-`\n\n!! Bug Fixes\n\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/5a6249894d5e79ee4e472c72be8956ce59558797]] problem with special characters in field names\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/230f40c3bd71177eb7b1f7e8252a5164e99a12c5]] static banner layout on mobile devices\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/df84e932833b3643ce600499ddd5fef497bec908]] popups within the scrollable widget by adding `position: relative;` to example scrollable widget styles\n\n!! Contributors\n\n[[@Jermolene|https://github.com/Jermolene]] would like to thank the contributors to this release who have generously given their time to help improve TiddlyWiki:\n\n* [[@BramChen|https://github.com/BramChen]]\n* [[@buggyj|https://github.com/buggyj]]\n* [[@cehmke|https://github.com/cehmke]]\n* [[@danielo515|https://github.com/danielo515]]\n* [[@Drakor|https://github.com/Drakor]]\n* [[@ericshulman|https://github.com/ericshulman]]\n* [[@felixhayashi|https://github.com/felixhayashi]]\n* [[@gernert|https://github.com/gernert]]\n* [[@heroboy|https://github.com/heroboy]]\n* [[@idoine|https://github.com/idoine]]\n* [[@infurnoape|https://github.com/infurnoape]]\n* [[@inmysocks|https://github.com/inmysocks]]\n* [[@kixam|https://github.com/kixam]]\n* [[@lolole13|https://github.com/lolole13]]\n* [[@marcor|https://github.com/marcor]]\n* [[@Marxsal|https://github.com/Marxsal]]\n* [[@nameanyone|https://github.com/nameanyone]]\n* [[@pmario|https://github.com/pmario]]\n* [[@r1chard5mith|https://github.com/r1chard5mith]]\n* [[@roma0104|https://github.com/roma0104]]\n* [[@silvyn|https://github.com/silvyn]]\n* [[@slovuj|https://github.com/slovuj]]\n* [[@StevenMcD|https://github.com/StevenMcD]]\n* [[@sukima|https://github.com/sukima]]\n* [[@vouko|https://github.com/vouko]]\n* [[@welford|https://github.com/welford]]\n* [[@xcazin|https://github.com/xcazin]]\n"
},
"ReleaseTemplate": {
"title": "ReleaseTemplate",
"text": "<h2><$link to=<<currentTab>>><$view tiddler=<<currentTab>> field=\"title\"/></$link></h2>\n\n^^Released <$view tiddler=<<currentTab>> field=\"released\" format=\"date\" template=\"DDth MMM YYYY at 0hh:0mm\">TBA</$view>^^\n\n<$transclude tiddler=<<currentTab>> />\n"
},
"Releases": {
"title": "Releases",
"created": "20150419144523070",
"modified": "20150420114530386",
"tags": "About",
"type": "text/vnd.tiddlywiki",
"text": "<<tabs \"[[TiddlyWiki Releases]] [[TiddlyDesktop Releases]]\" \"TiddlyWiki Releases\" \"$:/state/tab\">>"
},
"TiddlyWiki Releases": {
"title": "TiddlyWiki Releases",
"caption": "~TiddlyWiki",
"created": "20131109105400007",
"modified": "20171113161419656",
"tags": "Releases",
"type": "text/vnd.tiddlywiki",
"text": "Here are the details of recent releases of TiddlyWiki5. See [[TiddlyWiki5 Versioning]] for details of how releases are named. Note that archived versions of release source files are available at https://github.com/Jermolene/TiddlyWiki5/releases\n\nIf you are using node.js, you can also install prior versions like this:\n\n> npm install -g tiddlywiki@5.1.13\n\n(BetaReleases and AlphaReleases are listed separately).\n\n<$list filter=\"[tag[ReleaseNotes]!sort[created]limit[1]]\">\n <$macrocall $name=\"tabs\" tabsList=\"[tag[ReleaseNotes]!sort[created]]\" default={{!!title}} class=\"tc-vertical\" template=\"ReleaseTemplate\" />\n</$list>\n"
},
"AlphaReleases": {
"title": "AlphaReleases",
"created": "20131109105400007",
"modified": "20140701201607494",
"tags": "Releases",
"type": "text/vnd.tiddlywiki",
"text": "Here are the details of the alpha releases of TiddlyWiki5. See [[TiddlyWiki5 Versioning]] for details of how releases are named.\n\n<<tabs \"[tag[AlphaReleaseNotes]!sort[created]]\" \"Release 5.0.1-alpha\" \"$:/state/tab2\" \"tc-vertical\" \"ReleaseTemplate\">>\n"
},
"Release 5.0.0-alpha.11": {
"title": "Release 5.0.0-alpha.11",
"created": "201311081754007",
"modified": "201311081754007",
"tags": "AlphaReleaseNotes",
"released": "201311081806",
"caption": "5.0.0-alpha.11",
"text": "This release is the culmination of a large scale refactoring of the widget mechanism of TiddlyWiki5. There are several changes to be aware of if upgrading from earlier versions:\n\n* The following widgets have been removed:\n** `<$setstyle>` - use `<div style=<<macroName Param>>>` instead\n** `<$video>` - will return in a later release\n** `<$datauri>` - use the `<<makedatauri>>` built-in macro instead\n** `<$error>` - may return in a later release\n** `<$import>` - use the BrowseWidget, DropzoneWidget and NavigatorWidget instead\n** `<$info>` - use the `<<changecount>>` built-in macro instead\n** `<$version>` - use the `<<version>>` built-in macro instead\n* The following widgets have had significant changes:\n** EditWidget\n** ListWidget - the list widget itself no longer generates HTML nodes, so you'll often need to wrap the template in a `<div>` or a `<span>` to be able to style the content\n** ViewWidget - has several changes:\n*** `<$view format=\"link\"/>` is no longer available; use an explicit `<$link>` widget instead\n*** `<$view format=\"link\"/>` is no longer available; use the TranscludeWidget instead\n* The following new widgets have been added:\n** BrowseWidget\n** DropzoneWidget\n** EditTextWidget and EditBitmapWidget\n** SetVariableWidget\n* Widget attribute names have been made more consistent. In particular, `tiddler` is used to reference a tiddler by title, not `title`\n* It is no longer possible to import the macro definitions within another tiddler by transcluding that tiddler\n* The `body` element now has the class `tw-body`, which will need to be specified in any overrides\n** This was done due to the new support for HTML foreign objects, which makes it possible to have multiple `<body>` elements in a document\n"
},
"Release 5.0.0-alpha.12": {
"title": "Release 5.0.0-alpha.12",
"created": "201311081854007",
"modified": "201311081854007",
"tags": "AlphaReleaseNotes",
"released": "201311082141",
"caption": "5.0.0-alpha.12",
"text": "//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.0.0-alpha.11...v5.0.0-alpha.12]]//\n\nThis minor release just contains fixes for the syncer and related adaptor modules for the TiddlyWeb edition and for TiddlyWiki5's integrated server.\n"
},
"Release 5.0.0-alpha.13": {
"title": "Release 5.0.0-alpha.13",
"created": "201311091122007",
"modified": "201311091122007",
"tags": "AlphaReleaseNotes",
"released": "201311091927",
"caption": "5.0.0-alpha.13",
"text": "//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.0.0-alpha.12...v5.0.0-alpha.13]]//\n\nThis release has several bug fixes:\n\n* Fixes to DaveGifford's themes ''blanca'', ''blue'' and ''rocker''\n* Fix an issue with the `<$edit-text>` widget\n* Documentation updates\n* Improved deployment scripts\n* Made the modifier field in the subtitle be a link\n* Styling improvements for the CodeMirror plugin\n* Improved the ViewWidget so that it falls back to displaying its content if the field/property is missing or empty\n* Extend use of the built-in `<<tabs>>` macro to the tiddler info panel, the control panel and the sidebar\n** This means that you can add new tabs by creating tiddlers with these tags, and optionally a `caption` field for the text of the tab:\n*** [[$:/tags/TiddlerInfo]] for tiddler info panel tabs\n*** [[$:/tags/ControlPanel]] for control panel tabs\n*** [[$:/tags/SideBar]] for sidebar tabs\n*** [[$:/tags/MoreSideBar]] for tabs in the \"more\" sidebar\n*** Change the order of tabs by adjusting the `list` field of the corresponding tag tiddler\n"
},
"Release 5.0.0-alpha.14": {
"title": "Release 5.0.0-alpha.14",
"created": "201311101922007",
"modified": "201311101922007",
"tags": "AlphaReleaseNotes",
"released": "201311102315",
"caption": "5.0.0-alpha.14",
"text": "//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.0.0-alpha.13...v5.0.0-alpha.14]]//\n\nThis release has several bug fixes:\n\n* Improved the layout of the [[control panel|$:/ControlPanel]]\n* Fixed problem with using the CheckboxWidget to apply tags to tiddlers that don't have any existing tags\n* Fixed problem with default password for the PasswordWidget being the string \"null\"\n"
},
"Release 5.0.0-alpha.15": {
"title": "Release 5.0.0-alpha.15",
"created": "201311122050007",
"modified": "201311122050007",
"tags": "AlphaReleaseNotes",
"released": "201311191221",
"caption": "5.0.0-alpha.15",
"text": "//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.0.0-alpha.14...v5.0.0-alpha.15]]//\n\n!! New Features\n\n* Added a dropdown to the edit template for setting the tiddler type\n* A saver module for Microsoft Internet Explorer version 10 and above. Clicking save in the sidebar causes the browser to pull up a bar at the bottom of the window where you can click ''save''. You then get a new copy of your wiki in the downloads folder.\n* Support for new `tw-close-other-tiddlers` message (eg, <$button message=\"tw-close-other-tiddlers\">close others</$button>)\n* For http://five.tiddlywiki.com, add a tiddler info tab with a link to the static representation of the tiddler\n* Make more UI elements extensible via system tags:\n** [[$:/tags/ViewToolbar]] for the view mode tiddler toolbar\n** [[$:/tags/EditTemplate]] for the edit template\n** [[$:/tags/EditToolbar]] for the edit mode tiddler toolbar\n** [[$:/tags/PageControls]] for the page control tools in the sidebar\n\n!! Improvements\n\n* Rename the `<$setvariable>` to `<$set>`\n** `<$setvariable>` will temporarily remain as a synonym for `<$set>` for the next few releases\n* Improve the popup mechanism so that the tiddler info panel doesn't close so easily\n* Various improvements for working with TiddlyWeb, including:\n** Updated control panel\n\n!! Bug fixes\n\n* Fixed bug when creating a tiddler title starting or ending with a space\n* Fixed behaviour of tags editor dropdown when search box is empty\n* Fixed problem with interpretation of `fields` and `index` attributes of the TranscludeWidget\n* Fixed the module type names in the internal tab of the control panel\n* Improved styling for embedded PDFs\n* Fixed bug with second being omitted from serialised date formats\n\nContributors to this release include @jermolene and @grayeul.\n"
},
"Release 5.0.0-alpha.16": {
"title": "Release 5.0.0-alpha.16",
"created": "20131119125600007",
"modified": "20131130095531749",
"tags": "AlphaReleaseNotes",
"type": "text/vnd.tiddlywiki",
"released": "201311301325",
"caption": "5.0.0-alpha.16",
"text": "//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.0.0-alpha.15...v5.0.0-alpha.16]]//\n\n!! New Features and Improvements\n\n* Improved appearance of tags editor\n* Improved generation of qualified tiddler titles for state storage\n** Instead of `$:/state/tab/sidebar-{$:/core/ui/SideBar|$:/core/ui/SideBar||}{$:/core/ui/PageTemplate|$:/core/ui/PageTemplate||}` one gets `$:/state/tab/sidebar-{1743827719}`\n* Significant updates to the structure and content of the user documentation\n* Added a new plugin for displaying corner ribbons; currently used for a version banner on tw5.com\n* Split ''Snow White'' theme into a base ''Vanilla'' theme with all the basic formatting, leaving the decorative bits to ''Snow White''\n** Existing TiddlyWikiFolders will need updating to include ''Vanilla'' as an additional theme\n* The page building blocks are now driven by the system tag `$:/tags/PageTemplate`\n** [[$:/TopSideBar]] and [[$:/LeftSideBar]] are no longer specially treated; use the new tag instead\n* Fixed problem that prevented tag configured items from shadow tiddlers interleaving with items from ordinary tiddlers\n* Refactored control panel to add ''Saving'' tab that includes TiddlySpot options\n* Improved notifications when saving to TiddlySpot\n* Added backup URL to TiddlySpot control panel tab\n* Extended the ServerCommand to add primitive support for basic authentication when running under [[Node.js]]\n\n!! Bug fixes\n\n* Fixed problem with displaying tiddler titles that contain WikiText syntax\n* No longer crashes when encountering an error in a filter string\n* Fixed a crash when dragging and dropping tiddlers within TiddlyWiki5\n* No longer update the modified date for imported tiddlers\n* Automatically forces new field names to be lower case\n\n!! Internal changes\n\n* Added Windows-compatible build scripts\n* Changes to the SavingMechanism to allow the tiddlers that are saved to be selected\n** This enables the wiki at http://five.tiddlywiki.com/index.html to generate an empty wiki\n* The main HTML file template used for saving TiddlyWiki5 documents has changed from `$:/core/templates/tiddlywiki5.template.html` to `$:/core/save/all`\n* Moved tw5.com's Google Analytics integration into a proper plugin\n\nContributors to this release include @jermolene, @asampal and @pmario.\n"
},
"Release 5.0.0-alpha.17": {
"title": "Release 5.0.0-alpha.17",
"created": "20131130151600007",
"modified": "20131130151631749",
"tags": "AlphaReleaseNotes",
"type": "text/vnd.tiddlywiki",
"released": "201311301519",
"caption": "5.0.0-alpha.17",
"text": "//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.0.0-alpha.16...v5.0.0-alpha.17]]//\n\n!! Bug fixes\n\n* Fixes a small but important bug that prevented downloading an empty wiki with alpha.16\n"
},
"Release 5.0.1-alpha": {
"title": "Release 5.0.1-alpha",
"created": "20131201132300007",
"modified": "20131206161343895",
"tags": "AlphaReleaseNotes",
"type": "text/vnd.tiddlywiki",
"released": "201312061753",
"caption": "5.0.1-alpha",
"text": "//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.0.0-alpha.17...v5.0.1-alpha]]//\n\n!! Improvements\n\n* Changes to the importing process to enable a smoother [[Upgrading]] process\n** Ignores attempts to import plugins that are older than currently installed plugins\n** System tiddlers are now imported as usual\n* If `$:/theme` isn't defined or refers to a missing tiddler, then fallback through ''Snow White'' to ''Vanilla''. This means that `empty.html` now defaults to ''Snow White''\n* Added support for [[Block Quotes in WikiText]]\n** Contributed by StephanHradek (@Skeeve on GitHub)\n\n!! Bug fixes\n\n* Fixed bug that was preventing `$:/tags/PageControls` tiddlers from being reordered\n\n!! Internal changes\n\n* Changed the [[TiddlyWiki5 Versioning]] policy\n** Beta releases will be `5.0.x-beta` and the final release will be `5.1.x`\n"
},
"Changes to filters in 5.0.9-beta": {
"title": "Changes to filters in 5.0.9-beta",
"created": "20140403223413403",
"modified": "20140403223524945",
"tags": "[[Release 5.0.9-beta]]",
"type": "text/vnd.tiddlywiki",
"text": "! Introduction\n\nThis release resolves a number of inconsistencies with the way that filters are handled. The changes mean that existing filters may need to be updated - particularly those that must deal with missing or shadow tiddlers.\n\n! Changes to ''is'' and addition of ''all''\n\nMost filter operators act by choosing some or all of their source titles to pass through or re-order. Those that add new entries that are not drawn from the source list are referred to as selectors. Prior to 5.0.9-beta, a few filter operators were inconsistent in whether they filtered from the source list or selected new entries into it. \n\nThe specific changes are:\n\n* The ''is'' operator now always strictly filters from the currently selected list of tiddlers\n* The new ''all'' operator acts as a selector by replacing the current list with a combination of tiddlers from specific sources:\n** ''current'' for the current tiddler\n** ''missing'' for all missing tiddlers\n** ''orphans'' for all orphan tiddlers\n** ''shadows'' for all shadow tiddlers\n** ''tiddlers'' for all non-shadow tiddlers (including both system and non-system tiddlers)\n\nThe sources for the ''all'' operator can be combined with the `+` character. For example, `[all[shadows+tiddlers]]` returns all shadow tiddlers and all ordinary tiddlers.\n\nPreviously, it was common to have `[is[shadow]]` at the start of a filter string to select all the shadow tiddlers. In 5.0.9 and above, this will not return all the shadow tiddlers, but instead just those ordinary tiddlers that are also shadow tiddlers (by virtue of having overridden one). The resolution is to use the new ''all'' operator. For example, consider this filter from 5.0.8:\n\n```\n[is[shadow]!has[draft.of]tag[$:/tags/AdvancedSearch]] [!is[shadow]!has[draft.of]tag[$:/tags/AdvancedSearch]] +[tag[$:/tags/AdvancedSearch]]\n```\n\nIn 5.0.9, that filter has been changed to:\n\n```\n[all[shadows+tiddlers]tag[$:/tags/AdvancedSearch]!has[draft.of]]\n```\n\nNote how the ''all'' operator allows operations to be performed on tiddlers from combinations of sources.\n\n!! Changes to `[is[current]]`\n\nOne result of the changes is that `[is[current]]` now strictly filters from the source tiddlers; so, if the current tiddler is a missing tiddler not in the source list, then `[is[current]]` will return an empty list.\n\nThe solution is generally to use `[all[current]]` instead. It doesn't read as well, but has the required behaviour of returning just the current tiddler, regardless of whether it is in the source tiddlers.\n\n! Changes to ''title'' and ''field''\n\nThere are minor changes to the way that the ''title'' and ''field'' operators work.\n\nThe ''title'' operator is a selector: it returns the specified title regardless of whether it is in the current source. ''title'' is used as the default operator if none is specified\n\nThe ''field'' operator is a filter: it only returns a subset of the source tiddlers. ''field'' is used as the default operator if the supplied operator is not defined (the supplied operator is passed as the suffix to the field operator, so `[description[Missing]]` is equivalent to `[field:description[Missing]]`).\n"
},
"Notes for upgrading to 5.0.11-beta": {
"title": "Notes for upgrading to 5.0.11-beta",
"created": "20140516150234142",
"modified": "20140516150234142",
"tags": "[[Release 5.0.11-beta]]",
"type": "text/vnd.tiddlywiki",
"text": "Version 5.0.11-beta includes some changes that can break content from earlier releases of ~TiddlyWiki 5.\n\n! Command line changes\n\nPreviously, commands that generate output files would interpret the specified path to the file as being relative to the current working directory. So, for example, the following command would write `index.html` to the current directory:\n\n```\ntiddlywiki mywiki --rendertiddler $:/core/save/all index.html text/plain\n```\n\nIn 5.0.11-beta this behaviour has changed, and now the specified filename is resolved relative to an `output` folder within the TiddlyWikiFolder. So the command above will now write the file `index.html` to `mywiki/output/index.html`.\n\nYou can override this behaviour with the OutputCommand. For example, to generate the `index.html` file within the current directory:\n\n```\ntiddlywiki mywiki --output . --rendertiddler $:/core/save/all index.html text/plain\n```\n\nA further change is that the `--rendertiddlers` command now clears the output folder before it writes any files. This means that any previous `--rendertiddler` commands to the same folder will have their output deleted.\n"
},
"Notes for upgrading to 5.0.8-beta": {
"title": "Notes for upgrading to 5.0.8-beta",
"created": "20140223183404938",
"modified": "20140223195514667",
"tags": "[[Release 5.0.8-beta]]",
"type": "text/vnd.tiddlywiki",
"text": "Version 5.0.8-beta includes some changes that can break content from earlier releases of ~TiddlyWiki 5.\n\n! Change to [[$:/SiteTitle]] and [[$:/SiteSubtitle]]\n\nYou should rename any existing SiteTitle and SiteSubtitle tiddlers to [[$:/SiteTitle]] and [[$:/SiteSubtitle]] respectively.\n\n! Changed parsing rules for content of HTML elements\n\nVersion 5.0.8-beta marks a change in the way that TiddlyWiki determines whether to parse the content of an HTML element or widget in //block mode// or //inline mode//.\n\n* In block mode, TiddlyWiki parses text into paragraphs, creating `<p>` tags to wrap them. It also recognises block syntax like headings, lists and tables.\n\n* In inline mode, TiddlyWiki ignores paragraph formatting, and just recognises character formatting, like bold and italic.\n\nIt's important to be able to control which type of parsing is performed for different situations.\n\nPrior to 5.0.8-beta, TiddlyWiki parsed the content of an element in inline mode unless the opening tag of the element were immediately followed by a line break. This meant that much of the time element tags would be shunted together into a long line, hindering readability.\n\nThe new behaviour for 5.0.8-beta is to parse the content of an element in inline mode unless the opening tag is immediately followed by two line breaks.\n\nTo adjust existing content for 5.0.8-beta you will need to manually add the additional line break after the opening tag of elements and widgets whose content should be parsed in block mode.\n\nThe positive aspect of the change is that it removes the need to pack multiple HTML tags onto a single line, improving readability.\n\n!! Examples\n\nConsider the difference between these two examples. First, here's an HTML tag that starts with two line breaks:\n\n<<wikitext-example src:\"\n<blockquote>\n\n! This is a heading\n\nAnd a paragraph of text.\n\n</blockquote>\n\">>\n\nSecondly, here's an HTML tag with just a single line break. Notice how the heading is no longer recognised as a heading\n\n<<wikitext-example src:\"\n<blockquote>\n! This is a heading\n\nAnd a paragraph of text.\n</blockquote>\n\">>\n\n! Changed commands for [[TiddlyWiki on Node.js]]\n\nThe handling of wiki folders has changed. Previously, if the `tiddlywiki` command was run against a wiki folder that didn't have the necessary `tiddlywiki.info` file then it would be automatically created. Now, the wiki folder must be initialised with the InitCommand.\n\nThis is how to create and start a new server-based wiki:\n\n```\ntiddlywiki mywikifolder --init server\ntiddlywiki mywikifolder --server\n```\n\nNote that the name of the ''clientserver'' edition has changed to ''server''.\n\n"
},
"Release 5.0.10-beta": {
"title": "Release 5.0.10-beta",
"created": "20140416160234142",
"modified": "20150118182457000",
"tags": "BetaReleaseNotes",
"type": "text/vnd.tiddlywiki",
"released": "201404191305",
"caption": "5.0.10-beta",
"text": "//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.0.9-beta...v5.0.10-beta]]//\n\n!! Highlights\n\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/ad4b03506a62d7110cb30aaa3d6f8dbfc712f246]] new syntax for [[Images in WikiText]] and a new ImageWidget\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/ba576d9f1b2146cec293447b2968e34f0c594a05]] support for a SafeMode that disables customisations\n\n!! Documentation Improvements\n\n* Added DateFormat documentation\n\n!! Usability Improvements\n\n* [[Refactor|https://github.com/Jermolene/TiddlyWiki5/commit/bb42c0ab360760917ad5bde84f15350186a9471a]] sorting to respect accented characters\n* [[Support|https://github.com/Jermolene/TiddlyWiki5/commit/45b0966013c760abab5b3f7faea0e59af2ca5619]] embedded images in Markdown tiddlers\n* [[Refactored|https://github.com/Jermolene/TiddlyWiki5/commit/821f1f1428f92160ae8bc4fa71dd3f947243f09e]] sidebar hiding action so that the story river border is maintained\n\n!! Hackability Improvements\n\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/15d0c27e2a82359616ce6c7883557cd2ef1886cd]] `[is[tag]]` to the <<.olink is>> operator\n* [[Hide|https://github.com/Jermolene/TiddlyWiki5/commit/95d291daac4a26664f0c232175f54780f0fa678f]] the top bars in the print stylesheet\n\n!! Bug Fixes\n\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/4758874d13430338da07727997d0c4df7f328ac1]] support for saving changes on Windows network drives\n* [[Refactored|https://github.com/Jermolene/TiddlyWiki5/commit/9fbe72a8778ae94c7d6322ad4b9155c83f753113]] configuration processing so that ordinary tiddlers are processed after shadow tiddlers. This resolves an issue whereby user stylesheets were being overridden by shadow stylesheets\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/d6054f10392c535ca430f3e73b9b68d0f8c18498]] issue with offline snapshot of server edition erroneously including shadow tiddlers\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/bd4a031df8a68287475a41ad84b423ad83f735a3]] problem with corrupted upgrades from 5.0.x-prerelease to 5.0.x-beta\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/73cfd1021809e97906ecfd5dacdf2337da3abae9]] bug with `[untagged[]]` filter operator\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/d336ffea02621e382f6d7135847d11e49e77bc26]] incorrect background colour for tag pills in the sidebar\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/f57e04787738ad30fb05ac0e592239075b90507e]] issues with null fields under TiddlyWeb\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/768489128547cf54e80fc321f3f1f4f5cd191862]] problem with hamburger overlapping scrollbars\n\n"
},
"Release 5.0.11-beta": {
"title": "Release 5.0.11-beta",
"created": "20140516150234142",
"modified": "20150221225737000",
"tags": "BetaReleaseNotes",
"type": "text/vnd.tiddlywiki",
"released": "201405161600",
"caption": "5.0.11-beta",
"text": "//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.0.10-beta...v5.0.11-beta]]//\n\n!! Incompatible Changes\n\nSee [[Notes for upgrading to 5.0.11-beta]] for more details of these changes:\n\n* The default output location for command line operations has changed to the `/output` folder within TiddlyWikiFolders (it used to be current directory)\n* Note that the shadow tiddler [[$:/core/ui/PageMacros]] has changed with this release. If you've made modifications to it you should copy your modifications to a new tiddler, delete [[$:/core/ui/PageMacros]], perform the upgrade and then manually update the new copy of [[$:/core/ui/PageMacros]]\n\n!! Documentation Improvements\n\n* Added more warnings about taking care to [[backup your data|The First Rule of Using TiddlyWiki]]\n\n!! Usability Improvements\n\n* Many performance optimisations, particularly for filter operations\n* Added support for PermaLinks and browser back and forward buttons\n* Added support for WikiLinks in Markdown via `[link text](#TiddlerTitle)`\n* Added support for explicit external [[Linking in WikiText]] (eg `[ext[tooltip|url]]`)\n* [[Replaced|https://github.com/Jermolene/TiddlyWiki5/issues/580]] hamburger menu icon with double chevron icon\n* [[Enhance|https://github.com/Jermolene/TiddlyWiki5/commit/552657fc584dbb36754d3fcabca2cdef7e916ec9]] plain text parsing to use the CodeBlockWidget, and hence use syntax highlighting if the plugin is installed. This gives us syntax highlighting for JavaScript shadow tiddlers, amongst other things\n* Improvements to the German, French, Italian, Japanese and Chinese translations\n* [[Removed|https://github.com/Jermolene/TiddlyWiki5/commit/61c3f8a5ba3c815d623c06f6a97d9c00a31a4157]] WikiText tiddlers from the sidebar \"Types\" tab\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/a90339d1e573ec82dba1caeaead0f71717618a80]] various warnings when editing shadow tiddlers\n* [[Allow|https://github.com/Jermolene/TiddlyWiki5/commit/0ac4c2b554f045c6bd2dc6ea5daa0d2f0397d04c]] digits in field names\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/a4294b55f0a217d019a6e4cbb62f6a8a19668928]] warning banner and when attempting to edit binary tiddlers\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/b84c663215cf7877fff960748af4b2849ae0dbb3]] automatic refreshing of the browser window title from $:/core/wiki/title\n\n!! Hackability Improvements\n\n* Improved vertical layouts of <<.mlink tabs>> macro\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/93566cdc332226b77eaba8a70fa166f3b8fcfe1e]] \"standard\" tab to [[advanced search|$:/AdvancedSearch]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/e83759e86d2a9e05e4b85dae50925fe988f8e239]] new filter operators <<.olink before>> and <<.olink after>>\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/570cad1c7f90e685961130918f09a7f9b2951f8c]] new <<.olink get>> operator\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/f7e50e0950c5bf10d94d926576011893418b25f1]] [[BuildCommand]], [[OutputCommand]] and [[ClearPasswordCommand]]\n* Added new extensible StartupMechanism for orchestrating startup tasks\n* [[Updated|https://github.com/Jermolene/TiddlyWiki5/commit/711b76307c95d0026f79f584e85ae3d4b7289d15]] to new version of CodeMirror\n* Added https://github.com/Jermolene/TiddlyWiki5NodeWebkit, a demo of using TiddlyWiki as a library in a node-webkit application\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/commit/4e07b3335b570f4039427e11df729fc4a899a671]] `.tid` TiddlerFiles to allow single line text fields\n* Renamed `$:/ShowEditPreview` to `$:/state/showeditpreview`\n\n!! Bug Fixes\n\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/cc60ad1428dcf99a7ea0787e43e3b37f5a02fb98]] issue with hovering of the topbar icons in Firefox\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/e548dd35af2d3195f82899096d4a4080362a1ff0]] problem with dragging and dropping within a text edit control\n\n!! Contributors\n\nI ([[@Jermolene|https://github.com/Jermolene]]) would like to thank the contributors to this release who have generously given their time to helping improve TiddlyWiki:\n\n[[@BramChen|https://github.com/BramChen]], [[@mwfogleman|https://github.com/mwfogleman]], [[@nameanyone|https://github.com/nameanyone]], [[@natecain|https://github.com/natecain]], [[@pekopeko1|https://github.com/pekopeko1]], [[@pmario|https://github.com/pmario]], [[@sukima|https://github.com/sukima]], [[@xcazin|https://github.com/xcazin]].\n"
},
"Release 5.0.12-beta": {
"title": "Release 5.0.12-beta",
"created": "20140517010234142",
"modified": "20140517010234142",
"tags": "BetaReleaseNotes",
"type": "text/vnd.tiddlywiki",
"released": "201405170102",
"caption": "5.0.12-beta",
"text": "//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.0.11-beta...v5.0.12-beta]]//\n\nThis is an emergency release that fixes a single significant bug with shadow tiddler handling in 5.0.11. See the [[discussion thread|https://groups.google.com/d/topic/tiddlywiki/pNxZsSCVp7c/discussion]] for more details.\n"
},
"Release 5.0.13-beta": {
"title": "Release 5.0.13-beta",
"created": "20140518150234142",
"modified": "20150118182554000",
"tags": "BetaReleaseNotes",
"type": "text/vnd.tiddlywiki",
"released": "201406240941",
"caption": "5.0.13-beta",
"text": "//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.0.12-beta...v5.0.13-beta]]//\n\n!! Accessibility Improvements\n\nThis release includes a number of features designed to improve the experience of TiddlyWiki with a screen reader. Particular thanks to [[@domasofan|https://github.com/domasofan]] for his feedback\n\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/34e4166dc5f24519b000de66853d5b1aee8f1648]] label and title for show/hide sidebar buttons\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/346b2f86111815c746c993fa09b7f677fa0b4b37]] label and title for advanced search link\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/6f859c8d447a477a9120bdc308d1524558a80f20]] label and title for close buttons in \"Open\" sidebar tab\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/06b0f9adb7209870b46d42f832c1f7ad7a78976f]] ''aria-label'' support to the LinkWidget\n* [[Switched|https://github.com/Jermolene/TiddlyWiki5/commit/bc9b67cbc3f363d48aafea86c077fcd5a9c0ca64]] to H1 tags for the page title and H2 tags for tiddler titles\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/eeedcb6d94a25d02e8fec45c89b30c7f2bcdde73]] label and title for tiddler and page toolbar buttons\n\n!! Usability Improvements\n\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/9ab0c84140bbc0f31cf65e632bddac616bbadbda]] support for global [[Macros in WikiText]] via the new ImportVariablesWidget\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/3182a2d599f0e4b70a73fe369df4f398587dc1a9]] new SelectWidget\n* [[Improved|https://github.com/Jermolene/TiddlyWiki5/commit/f131c378934a86b741ab5b808437c95694dc5503]] behaviour of `text/html` tiddlers so that they are displayed within an HTML iframe element\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/9b576f2a8d39dcca37bcb709183a8f9b27f33ccf]] group headings to the content type dropdown in edit mode\n* [[Improved|https://github.com/Jermolene/TiddlyWiki5/commit/4d70d5780e51cf0918fba15954cd47549e4e1a9f]] advanced navigation settings in [[$:/ControlPanel]] to use radio buttons\n* [[Improved|https://github.com/Jermolene/TiddlyWiki5/commit/f7b8813a27141a78980eefa03df70a4a2de9d10b]] (and [[here|https://github.com/Jermolene/TiddlyWiki5/commit/3f25db0abe8cd28712c020f218506710cec004b6]]) behaviour of PermaLinks so that now [ext[https://tiddlywiki.com/#HelloThere]] just opens the single specified tiddler\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/0c48502e8ed214cee23537d06e7e87efd53592c7]] support for triple-quoted multi-line attributes with [[macros|Macros in WikiText]], [[widgets|Widgets in WikiText]] and [[HTML elements|HTML in WikiText]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/32099b85d3b12f9e590274cb7550e3e531131706]] TableOfContents tab for tw5.com edition\n\n!! Hackability Improvements\n\n* [[Restored|https://github.com/Jermolene/TiddlyWiki5/commit/1b37d660ea7cd576cfeadfe8b782fe6c62dc9048]] ''escape'' as a shortcut to abandon edits\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/9547a1f01c144c604c294f394a68d7dc6dbe4e5d]] support for ExternalImages that are referenced by URI and not stored in the TiddlyWiki HTML file\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/d2796d0c9c7ed7a971ae6b0752d7418384072bb5]] new SetFieldCommand\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/305617b632fd6ecf25cd4be85f4dfb5a5a65dfef]] new SaveTiddlersCommand\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/f14ecf4eb8965f2e407ccac51d4277330221efe3]] support for system tag [[$:/tags/RawMarkup]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/0bdc5b5c70fbbf34aa459afcf0499fc9c8ae6374]] editor type mappings to control panel advanced tab\n* [[Refactored|https://github.com/Jermolene/TiddlyWiki5/commit/1717c93d001ad184a08ca66d1bffb33fb5d32b3a]] CodeMirror (https://tiddlywiki.com/codemirrordemo.html) plugin for simpler configuration\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/b2e48d00e9ea068a22b5ac5c0a4c93e8ddbb4a8a]] support for [[Environment Variables on Node.js]]\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/commit/eee3a0cf8e5aa047f8596df06e28194409f38b01]] ServerCommand to allow a path prefix\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/commit/4238af2a405c14d22937d7c47a70bfb3d4e6f22d]] the <<.olink listed>> operator to use any list field\n\n!! Bug Fixes\n\n* Fixed [[here|https://github.com/Jermolene/TiddlyWiki5/commit/6fb992690d33940d3509d7d4d74538e7f458e063]] and [[here|https://github.com/Jermolene/TiddlyWiki5/commit/0fae9ee99200e7eca30b9db0584c479d58841349]] the problem with state tiddlers being inadvertently saved\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/a03a15e7de32a1b41618146ac334b5cd7d432e91]] bug with TextWidget not refreshing correctly\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/d8a142fed5b22a8273d93ba05095e5f9c6929cb3]] problem with vertical tabs in Safari\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/b8aedf2ca3cfc870be5a46accbb2dc0ddbb6d451]] issue with images in Markdown\n\n!! Contributors\n\n[[@Jermolene|https://github.com/Jermolene]] would like to thank the contributors to this release who have generously given their time to help improve TiddlyWiki:\n\n* [[@BramChen|https://github.com/BramChen]]\n* [[@buggyj|https://github.com/buggyj]]\n* [[@csugden|https://github.com/csugden]]\n* [[@danielo515|https://github.com/danielo515]]\n* [[@IreneKnapp|https://github.com/IreneKnapp]]\n* [[@jayfresh|https://github.com/jayfresh]]\n* [[@mwfogleman|https://github.com/mwfogleman]]\n* [[@xcazin|https://github.com/xcazin]]\n"
},
"Release 5.0.14-beta": {
"title": "Release 5.0.14-beta",
"caption": "5.0.14-beta",
"created": "20140718150234142",
"modified": "20150221225749000",
"tags": "BetaReleaseNotes",
"type": "text/vnd.tiddlywiki",
"released": "201408131731",
"text": "//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.0.13-beta...v5.0.14-beta]]//\n\n!! Major Changes\n\n!!! Improved Control Panel Plugins Tab\n\nThe ''Plugins'' tab of the [[control panel|$:/ControlPanel]] has been improved with the addition of documentation tabs that plugins can use to show documentation. There is also a larger draggable area for dragging tiddlers across to other wikis.\n\n!!! Configurable Button Toolbars\n\nThe page toolbar and the tiddler toolbars can now be configured with several new buttons - see the [[control panel|$:/ControlPanel]] under the ''Appearance'' and ''Toolbars'' tabs.\n\nThe sidebar tools tab now shows all the available page controls, allowing them to be invoked or checked to appear in the toolbar. The tiddler info area now includes a tools tab that includes buttons for all the tiddler actions.\n\n!!! Upgrade Mechanism\n\nThere are two components:\n\n* A more flexible ImportMechanism that:\n** Presents incoming tiddlers as a pending import list that allows the user to inspect them and, if necessary, explicitly deselect them from the actual import\n** Provides UpgraderModules with an opportunity to process each incoming tiddler\n*** The [[plugin upgrader|$:/core/modules/upgraders/plugins.js]] module handles version checking of plugins and upgrading them from a special UpgradeLibrary plugin tiddler\n*** The [[system upgrader|$:/core/modules/upgraders/system.js]] module is responsible for suppressing the importing of certain system tiddlers (currently [[$:/StoryList]] and [[$:/HistoryList]])\n*** The [[themetweak upgrader|$:/core/modules/upgraders/themetweaks.js]] module handles migrating theme tweaks from their pre-5.0.14-beta format (see below)\n* An UpgradePlugin and associated edition that provides a custom, single-purpose user interface for upgrading standalone TiddlyWiki files - see https://tiddlywiki.com/upgrade.html\n\n!!! Improvements to CamelCase Recognition\n\nTiddlyWiki now takes a much more conservative approach to recognising CamelCase terms that should be automatically linked. Previously, the dash and underscore were treated as lower case letters, leading to a number of false positives. See the [[GitHub bug #337|https://github.com/Jermolene/TiddlyWiki5/issues/337]] for details.\n\n!!! Automatic Permalinking Off by Default\n\nWith previous beta releases of TiddlyWiki the browser address bar is automatically updated so that it dynamically reflects the tiddlers that are currently open. This makes it easier to get a permalink for copying and pasting elsewhere, but it leads to much confusion for casual users who don't always understand why unexpected tiddlers are being displayed after they have refreshed the page in the browser.\n\nFor 5.0.14-beta, the setting has been changed. Visit [[control panel|$:/ControlPanel]] ''Advanced''/''Settings'' to switch the setting back to \"Include the target tiddler and the current story sequence\".\n\n!! Usability Improvements\n\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/f6d7d87a3d49f816ccc050bdf4a5394eed37dd51]] previews to the icon dropdown in the [[tag manager|$:/TagManager]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/56945d91d327489478fc44dce5234ece35a01abb]] an indication of unsaved changes by changing the colour of the save changes button\n* [[Split|https://github.com/Jermolene/TiddlyWiki5/commit/7aa6c7c06d8b5359f183e6b9f6f57cf89611cda8]] the wikitext emphasis parsers into separate modules so that they can be independently controlled with the `\\rules` pragma\n* [[Refactored|https://github.com/Jermolene/TiddlyWiki5/commit/f43cd5ba9c6e5eda221ec738174e61e34fad2b8d]] (and [[here|https://github.com/Jermolene/TiddlyWiki5/commit/a3de93b4eb8b108239b2e4b496308026e9e9eef8]]) ReleaseHistory to place the releases into vertical tabs\n* [[Stopped|https://github.com/Jermolene/TiddlyWiki5/commit/3ff7462afd5414b92680c6b6e67274be79233224]] saving [[$:/HistoryList]], thus avoiding it uncontrollably increasing in size\n* [[Improved|https://github.com/Jermolene/TiddlyWiki5/commit/73cf1bfdb3cd238ac7800162f58d44a8bb60019b]] (and [[here|https://github.com/Jermolene/TiddlyWiki5/commit/d5e4b9b5d1e7db5ad4d769433cc934ef08265f57]]) print stylesheet to remove page background\n* [[Updated|https://github.com/Jermolene/TiddlyWiki5/commit/07f13b310d300631267936ad8bc55a338369afc0]] display of plugin tiddlers so that their constituent tiddlers are shown, rather than the raw JSON\n* [[Moved|https://github.com/Jermolene/TiddlyWiki5/commit/799a5b059a40a51fdeb1dae7a0eb5bf8a79f5106]] the functionality of the fullscreen plugin into the core\n\n!! Hackability Improvements\n\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/commit/c23f6af4b5c59f4d09dd8d6704e1939bb9d5b2d3]] TiddlerWidget to add a CSS class corresponding to each tag present on displayed tiddlers\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/d357e1706c91d17a72fb19fedf43e57071fc7dd6]] support for hiding specified fields in the tiddler editor\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/be040ea8a2cc8962f1a28a313e4c9ebc2d5c0e31]] support for variable operands in filters (see [[Filter Parameter]])\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/1f16ef6fa88b51d2dad7c8e57fcff014950a7442]] support for widget messages [[tw-permalink|WidgetMessage: tw-permalink]] and [[tw-permaview|WidgetMessage: tw-permaview]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/tree/master/plugins/tiddlywiki/browser-sniff]] browser sniffing plugin so that tiddlywiki.com can present the correct browser-specific documentation\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/ef67cc3fd9b267a522598abccdfbb93fbfca240c]] a configuration option for specifying the default location for saving new tiddlers in the client-server configuration\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/b4d47858e587c96f3a68cc28cffff181ec45f55f]] support for the InfoMechanism\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/commit/f08f57c5d24eb0146ac2cb77472a5fc5f135f1e9]] CheckboxWidget to allow it to toggle fields as well as tags\n* [[Refactored|https://github.com/Jermolene/TiddlyWiki5/commit/21c137a66c37f010b36697bb6bed5321138fbb9f]] [[control panel|$:/ControlPanel]] theme tweaks to be stored in individual tiddlers\n* [[Extend|https://github.com/Jermolene/TiddlyWiki5/commit/e18d8a88661a1c2caa1b722841747c75ca6af437]] the <<.mlink tabs>> macro to allow tabs to be templated\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/91acad0f7ce8637945a953dfcb122cd31292626d]] (and [[here|https://github.com/Jermolene/TiddlyWiki5/commit/8612bc4006e717e4fa3c562fa72a85650206b66f]]) SystemTags support for inserting content above and below the story river\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/f793816dfa687ae7791143b33487fd5f95f3265c]] support for transcluding plugin subtiddlers with the TranscludeWidget\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/c73853288c5b4b0716da94fea2f2edec09345643]] (and [[here|https://github.com/Jermolene/TiddlyWiki5/commit/08f775eac8cb053d08c1c561e65a5eeb87c4c6b6]]) support for importing from `*.htm` and `*.hta` files as well as the existing support for `*.html` files\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/commit/73d7e85e11c7732080ca8bc4321ebb12afbac09c]] the \"sticky titles\" theme so that it works when tiddlers are in edit mode\n\n!! Bug Fixes\n\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/5b3b62f93da4b7b19e24ccf72d9ce20b9edce6d5]] bug with execution order of BuildCommand targets\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/d93da81671a704377209fc1871425c3a7c5db35a]] bug with missing hover colours for external links\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/465f4ac46903070759a572d183c498c5579cb922]] problem with refreshing modal dialogues\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/3351ae7e29cbf3bed6fc1925ef33664bcc59fef5]] issue with cookies disabled on Firefox\n* [[Relax|https://github.com/Jermolene/TiddlyWiki5/commit/5260899d8b090e8886e41e3aa770fdcf5967ad8c]] the requirement for a newline immediately the closing `\\end` of a macro definition\n\n!! Contributors\n\n[[@Jermolene|https://github.com/Jermolene]] would like to thank the contributors to this release who have generously given their time to help improve TiddlyWiki:\n\n* [[@BramChen|https://github.com/BramChen]]\n* [[@pmario|https://github.com/pmario]]\n* [[@ssokolow|https://github.com/ssokolow]]\n* [[@xcazin|https://github.com/xcazin]]\n"
},
"Release 5.0.15-beta": {
"title": "Release 5.0.15-beta",
"caption": "5.0.15-beta",
"created": "20140812150234142",
"modified": "20150221194057000",
"tags": "BetaReleaseNotes",
"type": "text/vnd.tiddlywiki",
"released": "201408202255",
"text": "//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.0.14-beta...v5.0.15-beta]]//\n\n!! Usability Improvements\n\n* [[Simplified|https://github.com/Jermolene/TiddlyWiki5/commit/c57b00996855f10d9b7fa2aa4e9deb2a2a607d7f]] shadow default tiddlers\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/32a7ee2683ace619599f0ab73028307ca33f4e4c]] the ability to disable plugins (see PluginMechanism) with a user interface in [[control panel|$:/ControlPanel]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/4b05608ad5e77043b01495825ea0f0e76c378760]] page control button for invoking the [[tag manager|$:/TagManager]]\n* [[Simplified|https://github.com/Jermolene/TiddlyWiki5/commit/c4b76ceb0bc786bcceb12fc3417bb8c4bfde27a9]] downloading an offline copy of a client-server wiki\n* [[Blocked|https://github.com/Jermolene/TiddlyWiki5/commit/2bbe9f76ecf8fc89c789e72be00ac19e811195ee]] temporary state tiddlers from import/upgrade\n\n!! Hackability Improvements\n\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/c912fed55d94c9bef2d541cd55f458b12172941c]] a banner to the edit template encouraging improvements to the documentation\n* [[Refactored|https://github.com/Jermolene/TiddlyWiki5/commit/f75af2c983e10e8a82639890b993fb5cf042d610]] `saver-handler.js` out of `syncer.js`\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/8cf726275c19ed5b4a0ed1cf8354d64d1bc29da5]] [[Table-of-Contents Macros]]\n* Simplified startup module organisation (see [[Startup Modules.svg]])\n* [[Changed|https://github.com/Jermolene/TiddlyWiki5/commit/25777b147fa4ed2f915150aec503ad1e094e6043]] the overlay text for the DropzoneWidget to make it translateable\n* [[Introduced|https://github.com/Jermolene/TiddlyWiki5/commit/920e11e7921f777170aa2f9e1836c000fec2e26d]] a new [[refresh button|WidgetMessage: tw-browser-refresh]] and reverted [[home button|WidgetMessage: tw-home]] behaviour\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/fbf307c648ae0e92679c54f7d03f197a75b4e101]] ''alt'' attribute to the ImageWidget\n\n!! Bug Fixes\n\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/c8830d32f74b8c228553f11f7f55b5be45ae6471]] problem with building TiddlyWiki under Windows\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/34461cb2fe554331a0269fd7795b1d6a879fcba9]] unclickable download ink in upgrade wizard\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/9e85ddfec78dd8df71e6173100dce659417551f4]] missing language flag in ''empty.html''\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/18592fe8f810d1858ca040da1a7c4a81fb74cfed]] problem with switching the type of a tiddler between the bitmap and text editor\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/fe6623d7feed1a9068e15bfac57be0b0924e8915]] foreground colour for tag pills in the sidebar\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/c912fed55d94c9bef2d541cd55f458b12172941c]] problem with github source links for tiddlywiki.com not working for titles containing colons\n\n!! Contributors\n\n[[@Jermolene|https://github.com/Jermolene]] would like to thank the contributors to this release who have generously given their time to help improve TiddlyWiki:\n\n* [[@BramChen|https://github.com/BramChen]]\n* [[@xcazin|https://github.com/xcazin]]\n"
},
"Release 5.0.16-beta": {
"title": "Release 5.0.16-beta",
"caption": "5.0.16-beta",
"created": "20140830131615798",
"modified": "20150221194111000",
"tags": "BetaReleaseNotes",
"type": "text/vnd.tiddlywiki",
"released": "20140902124037214",
"text": "//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.0.15-beta...v5.0.16-beta]]//\n\n!! Incompatible Changes\n\n5.0.16-beta brings more incompatible changes than any previous release. These changes are likely to break almost all plugins written for previous releases of TiddlyWiki 5, and will break many customisations.\n\n* [[Changed|https://github.com/Jermolene/TiddlyWiki5/issues/764]] all CSS class prefixes from `tw-` to `tc-` (eg `tw-tiddler-frame` has become `tc-tiddler-frame`; missing prefixes have also been added, so `btn-invisible` has become `tc-btn-invisible`)\n* [[Changed|https://github.com/Jermolene/TiddlyWiki5/commit/2f69ea362cd673f59b9fadbe11f1f95549a59813]] all message prefixes from `tw-` to `tm-` (eg `tw-close-tiddler` has become `tm-close-tiddler`)\n* [[Changed|https://github.com/Jermolene/TiddlyWiki5/commit/89fd5379dd78887fc21746d792072bf5a25f0c56]] all variable prefixes from `tw-` to `tv-` (eg `tw-config-toolbar-icons` has become `tv-config-toolbar-icons`)\n* [[Changed|https://github.com/Jermolene/TiddlyWiki5/commit/112a9a95d95e9f62f110c97a4faaf537c5c100b1]] prefix/removeprefix filter operators to be case-sensitive\n\n!! Compatibility with TiddlyWikiClassic\n\nThis release includes a preliminary version of a new plugin that provides compatibility with content created for TiddlyWikiClassic:\n\nhttps://tiddlywiki.com/classicparserdemo.html\n\nSubsequent releases will include end-user documentation with step-by-step instructions for migrating content.\n\nMany thanks to @buggyj for his work on this plugin.\n\n!! Usability Improvements\n\n* [[Amended|https://github.com/Jermolene/TiddlyWiki5/commit/e47852cb141b384ad2a9097eca795545cb5b2494]] behaviour of the [[tm-browser-refresh|WidgetMessage: tw-browser-refresh]] message so that it no longer clears the location hash\n* [[Hide|https://github.com/Jermolene/TiddlyWiki5/commit/88c9c0c3ee115917b8c1a9126452bb0574061857]] toolbar buttons from static renderings\n\n!! Hackability Improvements\n\n* [[Extend|https://github.com/Jermolene/TiddlyWiki5/commit/48312272adb17610db96d50758e6af947cab7b1d]] the <<.olink all>> operator to be able to select all the source tiddlers\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/43aeb47fc34f1ba424030c4f78ee907fe7b1d5d8]] problem with single line macro definitions incorrectly including whitespace in the value. (For example, `\\define mymacro() yes` would set the macro value to \" yes\", with a leading space)\n* [[Extend|https://github.com/Jermolene/TiddlyWiki5/commit/d2a5a12f2d6b6ccc36dd22a70ac2def08d1d3722]] [[Table-of-Contents Macros]] use the caption field if present\n* [[Configurability|https://github.com/Jermolene/TiddlyWiki5/commit/b437f1b450f5f2a3104a9086f7c674299b53b9bc]] for the default tab shown in the tiddler info panel (see [[Configuring the default TiddlerInfo tab]])\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/dcf4e93a3283e3e93cc14e50366f9b0252870835]] <<.olink suffix>> and <<.olink removesuffix>> operators\n\n!! Bug Fixes\n\n* [[Reverted|https://github.com/Jermolene/TiddlyWiki5/commit/ad40223d6b9bed435d9381611cb9de1841b53df6]] incorrect refreshing of the tiddler widget\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/44228ed9f733217557851150f5ae45d9ebb23420]] indentation of selective expandable [[Table-of-Contents Macros]]\n\n!! Contributors\n\n[[@Jermolene|https://github.com/Jermolene]] would like to thank the contributors to this release who have generously given their time to help improve TiddlyWiki:\n\n* [[@BramChen|https://github.com/BramChen]]\n* [[@buggyj|https://github.com/buggyj]]\n* [[@gernert|https://github.com/gernert]]\n* [[@pmario|https://github.com/pmario]]\n* [[@xcazin|https://github.com/xcazin]]\n"
},
"Release 5.0.17-beta": {
"title": "Release 5.0.17-beta",
"caption": "5.0.17-beta",
"created": "20140910131615798",
"modified": "20150221225235000",
"tags": "BetaReleaseNotes",
"type": "text/vnd.tiddlywiki",
"released": "20140912164804565",
"text": "//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.0.16-beta...v5.0.17-beta]]//\n\n!! Highlights\n\nThis release includes major improvements from @giffmex to the welcome and tutorial documentation, and new development docs incorporating [[the work|https://github.com/cjrk/saa-tw]] of @cheigele and @cjrk.\n\n!! Incompatible Changes\n\n!!! Change System Tag `$:/tags/stylesheet` with `$:/tags/Stylesheet`\n\nThe [[issue|https://github.com/Jermolene/TiddlyWiki5/issues/824]] is that the capitalisation of `$:/tags/stylesheet` is not consistent with other system tags. This release adds support for `$:/tags/Stylesheet`, and adds a deprecation warning if `$:/tags/stylesheet` is used. Support for `$:/tags/stylesheet` will be removed before the beta.\n\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/f6ff0a7f715bdf12dfba6556f72c49ea2c3016b0]] support for `$:/tags/Stylesheet` and a deprecation warning when `$:/tags/stylesheet` is used\n\n!!! Change ButtonWidget `title` attribute to `tooltip`\n\nThe use of the `title` attribute in the ButtonWidget was not consistent with the `tooltip` attribute used by the ImageWidget and LinkWidget. This release adds support for the `tooltip` attribute to the ButtonWidget alongside the existing support for the `title` attribute, but with a deprecation warning.\n\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/b7f638aef3094d0552db2f72330b40a526113bd5]] `tooltip` attribute to ButtonWidget\n\n!!! Removing Support for RegExp Filter Operands\n\nAs discussed in [[the associated ticket|https://github.com/Jermolene/TiddlyWiki5/issues/762]], the support for regular expression filter operands is incomplete and inconsistent. The plan is to remove support for this feature in the next release. A new filter operator has been provided to replace it, along with the addition of a deprecation warning that is displayed whenever regular expression filter operators are used.\n\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/f4fff7a33037ba9dd537379bcb44a52a280868d6]] new <<.olink regexp>> operator\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/d45c417c187fe3dcc35ee7a308e64feebc7b185b]] deprecation warning for regular expression filter operators\n\n!!! Repository Reorganisation\n\nThe goal is to make the TiddlyWiki repository easier to comprehend for newcomers.\n\n* [[Moved|https://github.com/Jermolene/TiddlyWiki5/commit/6e9cd5943703f7137e819fcb85376423b9c930d5]] scripts into a separate `bin` folder\n\n!! Usability Improvements\n\n* Reorganised the [[control panel|$:/ControlPanel]] to make it more logical and usable\n\n!! Hackability Improvements\n\n* Moved developer documentation to https://tiddlywiki.com/dev\n* [[Improvements|https://github.com/Jermolene/TiddlyWiki5/commit/872e6fc2532012f0f9acfb29aa24a9cd5f340b9d]] (and [[here|https://github.com/Jermolene/TiddlyWiki5/commit/c8a131ffd4716f2b99ab508567422ff463f2849d]]) to `serve.sh`/`serve.cmd` scripts\n* [[Disable|https://github.com/Jermolene/TiddlyWiki5/commit/ac54fe33263cbe48bc294f9c14257ccc146be38e]] plugins when in SafeMode\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/c1de85838f3d0d3e6a207152ecc9d61ff08a4b05]] new <<.mlink timeline>> macro\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/f16d1832aae9a7ce71dea78b16c11afaf673acf2]] new <<.mlink dumpvariables>> macro\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/commit/ba3f8002355607c8b00b7d184f01fa68bbcda152]] [[Table-of-Contents Macros]] so that individual links can be disabled\n* [[Removed|https://github.com/Jermolene/TiddlyWiki5/commit/542788bfeba98ec3bac0bb721293c16354bc1b34]] (and [[here|https://github.com/Jermolene/TiddlyWiki5/commit/487c4a40abda2b457b4015033bf1be76bd81dcc9]]) unnecessary `<p>` tag from edit tags and types dropdowns\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/ccd916ca7cb45468ac30eb48bfdf86bea704d810]] ''multiple'' attribute to the BrowseWidget\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/commit/ab944bbf02e9fae606632a11df1053a46573fa49]] view template to hide bodies of tiddlers with field ''hide-body'' set to ''yes''\n\n!! Bug Fixes\n\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/c713eddbef50603e313a86f78c185753bab3d607]] problem with draft tiddlers not counting as dirty\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/f87ce7e98a083f1bdcff5b1887b56aa95b731efe]] problem with keyboard shortcuts introduced in 5.0.16-beta\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/756e05504b33c387da7d3f81446a18f9a8fefe49]] problem with stylesheets being parsed in inline mode\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/9adc30f69fba169813638021780263ff0df4e2bc]] bug with selective expandable [[Table-of-Contents Macros]]\n\n!! Contributors\n\n[[@Jermolene|https://github.com/Jermolene]] would like to thank the contributors to this release who have generously given their time to help improve TiddlyWiki:\n\n* [[@BramChen|https://github.com/BramChen]]\n* [[@buggyj|https://github.com/buggyj]]\n* [[@cheigele|https://github.com/cheigele]]\n* [[@cjrk|https://github.com/cjrk]]\n* [[@giffmex|https://github.com/giffmex]]\n* [[@pmario|https://github.com/pmario]]\n* [[@xcazin|https://github.com/xcazin]]\n"
},
"Release 5.0.18-beta": {
"title": "Release 5.0.18-beta",
"caption": "5.0.18-beta",
"created": "20140917211055150",
"modified": "20150221230143000",
"tags": "BetaReleaseNotes",
"type": "text/vnd.tiddlywiki",
"released": "20140917211055150",
"text": "//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.0.17-beta...v5.0.18-beta]]//\n\nThis is a minor release prior to the full release of TiddlyWiki on September 20th. The documentation has been cleaned up and improved (with more improvements to come).\n\n!! File Layout of tiddlywiki.com\n\nThe layout of files on tiddlywiki.com has been adjusted to make it more logical. See the [[ticket|https://github.com/Jermolene/TiddlyWiki5/issues/823]] for a discussion. You can see the source files that make up tiddlywiki.com at https://github.com/Jermolene/jermolene.github.com\n\n!! Hackability Improvements\n\n* Added first iteration of a <<.mlink list-links>> macro (further improvements are planned)\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/6d9bd4df8a1133c2ba246333edad14e6028d3ea4]] support for importing `.markdown` and `.md` files\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/commit/c4123ba3740f74f172468c4aa050451ebc5780d8]] <<.mlink timeline>> macro to support a subfilter\n\n!! Bug Fixes\n\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/a9f46525a0b1ecf7ce6d1bdae64e6763a247106b]] problem with digits being classified as lower case letters for wiki link matching\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/8cc236b4dca96327c7b28ad45e1eb4c2dce174e5]] crash when sorting missing tiddlers by fields other than title\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/73a4747d05c6746476ccd9e8cb8255853f631d17]] problem with handling `.jpeg` file extensions\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/775482a2428d24a475e0c7df7bea215c190b5574]] problem with RadioWidget and missing tiddlers\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/2571f534aa67c7f9d423d44d36efa32480f4c370]] problem with dragging a partially selected link\n\n!! Contributors\n\n[[@Jermolene|https://github.com/Jermolene]] would like to thank the contributors to this release who have generously given their time to help improve TiddlyWiki:\n\n* [[@BramChen|https://github.com/BramChen]]\n* [[@buggyj|https://github.com/buggyj]]\n* [[@Eucaly|https://github.com/Eucaly]]\n* [[@pmario|https://github.com/pmario]]\n* [[@xcazin|https://github.com/xcazin]]\n"
},
"Release 5.0.2-beta": {
"title": "Release 5.0.2-beta",
"created": "20131211074600007",
"modified": "20131215142414174",
"tags": "BetaReleaseNotes",
"type": "text/vnd.tiddlywiki",
"released": "201312151436",
"caption": "5.0.2-beta",
"text": "//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.0.1-alpha...v5.0.2-beta]]//\n\n!! Improvements\n\n* Added support for [[Hard Linebreaks in WikiText]]\n* Added a new RadioWidget, contributed by StephanHradek (@Skeeve on GitHub)\n* Two new savers for InternetExplorer, both contributed by DavidJade (@davidjade on GitHub)\n** ''tiddlyie'' for [[saving with TiddlyIE|Saving with TiddlyIE]], an equivalent of TiddlyFox for InternetExplorer\n** ''fsosaver'' that can [[save changes directly with InternetExplorer|Saving on InternetExplorer]] but requires the HTML file to be renamed `*.hta`\n\n!! Bug fixes\n\n* Fixed problem deleting tiddlers under the filesystemadaptor\n* Fixed problem with transcluding fields containing lists or dates (eg, `{{!!tags}}`)\n* Fixed problem with re-ordering page control tiddlers (ie tiddlers tagged `$:/tags/PageControls`)\n* Update template used for deploying to TiddlyWeb\n* Fixed problem with tiddler deletions via the file system adaptor\n\n!! Internal changes\n\n* Allowed variable number of arguments to [[JavaScript Macros]]\n** Contributed by StephanHradek (@Skeeve on GitHub)\n* Changed the format of plugin tiddlers to remove duplicated information (see the PluginMechanism)\n"
},
"Release 5.0.3-beta": {
"title": "Release 5.0.3-beta",
"created": "201312151700",
"modified": "201312151700",
"tags": "BetaReleaseNotes",
"type": "text/vnd.tiddlywiki",
"released": "201312151700",
"caption": "5.0.3-beta",
"text": "//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.0.2-beta...v5.0.3-beta]]//\n\nThis release includes minor bug fixes and documentation updates.\n"
},
"Release 5.0.4-beta": {
"title": "Release 5.0.4-beta",
"created": "20131216100000000",
"modified": "20131221205551616",
"tags": "BetaReleaseNotes",
"type": "text/vnd.tiddlywiki",
"released": "201312221544",
"caption": "5.0.4-beta",
"text": "//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.0.3-beta...v5.0.4-beta]]//\n\n!! Improvements\n\n* Switched to using an HTML5 placeholder for the default text of a new tiddler\n* Refactored stylesheet handling so that theme tweaks are now applied immediately, and some ordering issues have been resolved\n* Several improvements for running [[TiddlyWiki on Node.js]]:\n** The `tiddlywiki.info` file in the root of [[wiki folder|TiddlyWikiFolders]] file is now optional, falling back to a default configuration suitable for serverside use ([[commit|https://github.com/Jermolene/TiddlyWiki5/commit/0ec2224757dd07f009246ec9ea97cd859d077e72]])\n** The file system plugin now automatically creates the `tiddlers` subfolder in the [[wiki folder|TiddlyWikiFolders]]\n* Added [[favicon.ico support|Using favicons]]\n* Added SaveTiddlerCommand\n\n!! Bug Fixes\n\n* Fixed problem with tiddlers sometimes wrongly opening at the top of the story ([[commit|https://github.com/Jermolene/TiddlyWiki5/commit/b50eb8da302431cdfa7c37ac9ef1414a33d00292]])\n* Fixed problem with refreshing RadioWidget\n* Fixed problem with the dragger image being visible in some circumstances\n* Fixed drag and drop support on InternetExplorer, contributed by DavidJade (@davidjade on GitHub)\n* Fixed crash on modifying page template ([[commit|https://github.com/Jermolene/TiddlyWiki5/commit/a5f33d875b1339b08838203a4885f8a3a7d10353]])\n* Updated fullscreen plugin to latest version of the API ([[commit|https://github.com/Jermolene/TiddlyWiki5/commit/638c8b207033f8cb01ac9efdca104d282fd4cffe]])\n* Improved handling of double square brackets within tags (thanks to StephanHradek)\n\nThis release includes minor bug fixes and documentation updates.\n"
},
"Release 5.0.5-beta": {
"title": "Release 5.0.5-beta",
"created": "20131223085100000",
"modified": "20131224142028933",
"tags": "BetaReleaseNotes",
"type": "text/vnd.tiddlywiki",
"released": "201312241430",
"caption": "5.0.5-beta",
"text": "//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.0.4-beta...v5.0.5-beta]]//\n\n!! Improvements\n\n* Added support for [[Setting a favicon]]\n\n!! Bug Fixes\n\n* Fixed problem with modal wizard positioning on narrow screens\n* Fix problem with static content being included in empty.html when downloaded from the full wiki\n* Improved performance of tiddler import with large tiddlers on Firefox\n"
},
"Release 5.0.6-beta": {
"title": "Release 5.0.6-beta",
"created": "20131228164411884",
"modified": "20140103164959903",
"tags": "BetaReleaseNotes",
"type": "text/vnd.tiddlywiki",
"released": "201401031714",
"caption": "5.0.6-beta",
"text": "//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.0.5-beta...v5.0.6-beta]]//\n\n!! Improvements\n\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/pull/324]] support for numeric sorting to TiddlerFilters (thanks to StephanHradek)\n* [[Extended|https://github.com/Jermolene/TiddlyWiki5/pull/321]] [[Tables in WikiText]] to allow for vertical alignment of cells (thanks to StephanHradek)\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/87fbd988f1fb0164411af190adfe6b6a2404eef3]] experimental support for running [[TiddlyWiki on node-webkit]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/3d79eb87d1c609195b8c518c08e167994b20a346]] an [[$:/AdvancedSearch]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/bd7db62da052ec6262c3319eaa11f00e5c452a7b]] support for specifying hostname for the ServerCommand\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/b9e80a270b7f67db816e9b06e2f71f9c9dd86c17]] a first pass at generating an all-in-one static HTML representation of a wiki, complete with internal anchor links for wiki links\n** See https://tiddlywiki.com/alltiddlers.html\n* [[Hide|https://github.com/Jermolene/TiddlyWiki5/commit/44568dc6ef64be8c1370df8f682777c2c805fee7]] encryption features when running on the server\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/2ee50939447cf2948e49e5905520943ea4075975]] [[double backticks|Formatting in WikiText]] as an alternative for delimitting inline code (thanks to StephanHradek)\n\n!! Bug Fixes\n\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/ec7dff291dadb3e128e1db34b4ded6b57bc8ed46]] import ''browse'' button\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/ef59a3743f02c726f20e035c5d28665000fda79a]] crash when attempting full screen mode on browsers that don't support it\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/pull/307]] requirement for a newline immediately after a horizontal rule, table or typed block (thanks to StephanHradek)\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/pull/318]] problem with ''placeholder'' attibute on InternetExplorer (thanks to DavidJade)\n"
},
"Release 5.0.7-beta": {
"title": "Release 5.0.7-beta",
"created": "20140113173652456",
"modified": "20140125191028534",
"tags": "BetaReleaseNotes",
"type": "text/vnd.tiddlywiki",
"released": "201401262107",
"caption": "5.0.7-beta",
"text": "//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.0.6-beta...v5.0.7-beta]]//\n\n!! Incompatible Changes\n\nThese are changes that might affect users upgrading from previous betas.\n\n* The [[node-webkit]] saver has been moved into a plugin - [[$:/plugins/tiddlywiki/nodewebkitsaver]]. The plugin is only needed when embedding a single TiddlyWiki in [[node-webkit]] and is not required for TiddlyDesktop, which as of v.0.0.2 uses the existing TiddlyFox saver.\n\n!! Documentation updates\n\n* A new video tutorial: [[TiddlyWiki on Firefox for Android Video]]\n* A first pass at [[TiddlyWiki Coding Style Guidelines]]\n* Added an explanation of TemplateTiddlers\n* Added documentation for [[saving on a custom PHP server|Saving on a PHP Server]]\n* Added documentation for TextWidget\n* Summary of the approach for [[Naming of System Tiddlers]]\n\n!! Improvements\n\n* Added support for importing encrypted TiddlyWiki documents\n* Added several new [[filter operators|TiddlerFilters]], including ''reverse'', ''first'', ''last'', ''butlast'', ''rest'', ''nth''\n* Extend ''list'' filter operator to allow other fields to be used via a TextReference\n* Added shortcut in [[$:/ControlPanel]] ''Basics'' tab for setting [[$:/DefaultTiddlers]] to retain tiddler story ordering\n* Added emacs and vim keymapping support to the [[CodeMirror plugin|https://tiddlywiki.com/codemirrordemo.html]], (thanks to João Bolila, @jbolila on GitHub)\n* Added the [[highlight.js|http://highlightjs.org/]] syntax highlighting plugin: https://tiddlywiki.com/highlightdemo.html (thanks to João Bolila, @jbolila on GitHub)\n* Added the first export option to the ''Tools'' tab of the [[control panel|$:/ControlPanel]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/ffcc215e8f8896be96093579abc5bcfb76335e66]] an ellipsis for [[advanced search|$:/AdvancedSearch]] next to the search box in the sidebar\n* [[Adjusted|https://github.com/Jermolene/TiddlyWiki5/commit/b326315b0e9959096b85aa716dd613f21605705a]] the password dialogue to make it narrower for smaller screens\n* [[Adjusted|https://github.com/Jermolene/TiddlyWiki5/commit/b7a1db1e9fb651928a4f86e1881959150dd66a55]] the display of tiddler dictionaries to make them display as plain text\n\n!! Bug Fixes\n\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/b06e09a4d3e25087ca0495e624c8662ddb69224e]] problem with default format of ViewWidget substituting seconds for minutes in displayed times\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/e0f428b9b2374487a0758ea80716f337e3c643ff]] problem that was causing several animations to fail in Safari\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/f2409d4245bbba0ccdf39186dca6a0cbf16d8759]] problem with unclickable sidebar under the Centralised theme\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/0fb13e649b6558961fd8436bc7aac83bfd991983]] problem with non-system tiddlers showing up in system tiddler [[advanced search|$:/AdvancedSearch]]\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/b64b7982af4285be41cca85db1fa745fc009ca29]] problem with notifications not always disappearing in Firefox\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/b04141fefd2c0103b525726e4f466c32f0385194]] problem with wiki folders including wiki files with tiddlers that do not have a title\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/12770ca3e694a8f4edeb065e054eddd5957353b8]] problem with ServerCommand logging \"Serving on undefined:8080\"\n\n\n\n"
},
"Release 5.0.8-beta": {
"title": "Release 5.0.8-beta",
"created": "20140127143652456",
"modified": "20140228154939681",
"tags": "BetaReleaseNotes",
"type": "text/vnd.tiddlywiki",
"released": "201402281551",
"caption": "5.0.8-beta",
"text": "//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.0.7-beta...v5.0.8-beta]]//\n\n!! Incompatible Changes\n\nSee [[Notes for upgrading to 5.0.8-beta]] for more details of these changes:\n\n* Changed rules for parsing content of HTML elements\n* Switched SiteTitle and SiteSubtitle to [[$:/SiteTitle]] and [[$:/SiteSubtitle]]\n* Changes to commands used with [[TiddlyWiki on Node.js]]\n* Changes to naming of some editions\n** Notably ''clientserver'' has changed to ''server''\n\n!! Documentation Improvements\n\n* Improved documentation for TiddlerFilters, including a notation of the [[TiddlerFilter Formal Grammar]] contributed by [[@Tikkoneus|https://github.com/Tikkoneus]]\n* Improved documentation for WidgetMessages\n* Tiddlers on tiddlywiki.com now have a link to the original source on ~GitHub for pull requests (see the \"Sources\" tab of the tiddler info panel)\n\n!! Usability Improvements\n\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/a01bbd4b9c7ca284141078340c8f568b1e0561a2]] [[automatic saving|AutoSave]] on editing a tiddler and a warning when attempting to close the window with unsaved changes\n* Added confirmation dialogue when deleting tiddlers\n* Add support for switchable (and editable) ColourPalettes\n* Added TranslationMechanism and translations for:\n** Deutsch (Österreich and Deutschland) by @pmario\n** Français (France) by @xcazin\n** Chinese (Simplified and Traditional) by @BramChen\n* Add error alerts when syncing to a server\n* Rejigged [[$:/ControlPanel]] to use nested tabs\n* Added [[$:/TagManager]] for easy management of tags\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/e3a05625b2368b2167a2a1b30aa82369e96a7538]] experimental KeyboardWidget, including support for ''ctrl-enter'' (or ''cmd-enter'') to finish editing a tiddler\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/e6fa9b8a859867c147fb289859169b204dea003e]] number of tags to control panel ''Basics'' tab\n* Enhanced link handling so that control/command clicking a link opens the target tiddler without navigating to it\n* Importing tiddlers via drag and drop no longer opens all the tiddlers\n\n!! Scalability Improvements\n\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/fa5938221552846c255eb50004996528a09534a9]] support for LazyLoading of images\n* Extended RevealWidget to allow control over content retention\n\n!! Hackability Improvements\n\n* Added HelpCommand and InitCommand for [[TiddlyWiki on Node.js]]\n* Extended ButtonWidget to allow navigating to a tiddler\n* Added experimental support for building plugins in the browser: [[How to create plugins in the browser]]\n* Extend the TranscludeWidget to display its content as a fallback if the tiddler or field is missing\n* Add logging and AlertMechanism\n* Added a ''Filter'' tab to [[advanced search|$:/AdvancedSearch]]\n* Add ''indexes'' [[filter operator|TiddlerFilters]]\n* Control over line width and colour for EditBitmapWidget\n* Add support for `.multids` MultiTiddlerFiles\n* Extend ViewWidget so that it works with indexes\n* Added support for Tank, a new service built on TiddlyWeb: https://tank.peermore.com\n* Extend relative dates to work in the future\n\n!! Bug Fixes\n\n* Fixed problem with pasting items into the browser\n* Fixed problem with colour pickers not showing correct colour in Chrome\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/8e8e31fb9f5ed8f2e5deff0271d434dbe91f503c]] problem with tag pills not working inside table cells\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/6d3d3322e5c676e63d1f64dce89ce86e58dcd715]] problem in client server configuration with ''%'' in tiddler titles\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/7eafd51a7dd89d2174be3dec97033dc0bb206677]] problem with not using placeholder text when editing missing tiddlers\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/1a54d590e1e67825057d7693ac89466a093b4577]] problem with test data in certain time zones\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/5af30086c02b9d4466c133c87aca76f9b85eea49]] problem with non-breaking space characters being converted into '@' symbols\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/5d3dda1a1721af05e56e301a8b896e53f9868540]] problem with highlighting plugin only working in the browser\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/175e86078ce2fed34953f337baf2f0edfc093742]] crash when wiki/themes folder contains files that are not themes\n"
},
"Release 5.0.9-beta": {
"title": "Release 5.0.9-beta",
"created": "201403021809",
"modified": "201403021809",
"tags": "BetaReleaseNotes",
"type": "text/vnd.tiddlywiki",
"released": "201404152139",
"caption": "5.0.9-beta",
"text": "//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.0.8-beta...v5.0.9-beta]]//\n\n!! Highlights\n\n* Improved layout, including a ''hamburger'' icon for dismissing the sidebar and expanding the story river to fill the space\n* Added new ''Seamless'' theme\n* New ''Filter'' tab in [[$:/AdvancedSearch]]\n* Initial implementation of CecilyView\n* Overhaul of inconsistencies in TiddlerFilters (see [[Changes to filters in 5.0.9-beta]])\n* New translations for Italian and Japanese\n* Performance improvements, particularly [[during editing|https://github.com/Jermolene/TiddlyWiki5/commit/0aa559cd23b3742c8f10c5ac144860d816699782]]\n\n!! Documentation Improvements\n\n* Improved and reorganised documentation for TiddlerFilters\n* Demo of [[Making curved text with SVG]]\n* [[Community]] links are now broken up into individual tiddlers\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/a19432541e776bfb63b1b985a60f472e9f1d4352]] overview diagram of [[TiddlyWiki Architecture]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/7b57561160173667031b5bc15a4f7553d8514c1c]] documentation from buggyj: [[Developing plugins using Node.js and GitHub]]\n\n!! Usability Improvements\n\n* Made the dropdown arrow icon [[skinnier|https://github.com/Jermolene/TiddlyWiki5/commit/ec90ac99cf2767b6ff20902d8b01aa1c36778147]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/bca1d552803c1839e7385765314f81c5307632b8]] validation of legal characters for fieldnames\n* Added blacklisting of unsafe HTML [[elements|https://github.com/Jermolene/TiddlyWiki5/commit/ba6edd42c125cb19d955a1cb3f54a2d367cb79dc]] and [[attributes|https://github.com/Jermolene/TiddlyWiki5/commit/d0caf21b2df9fda9800eb30489003a87cafb1277]]\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/baa8cf3dd098bab0a7a8c78b24747c69bd40889f]] a warning indicator to tiddlers in TiddlyWikiClassic format\n* [[Add|https://github.com/Jermolene/TiddlyWiki5/commit/42c67cfeb732fccb10b8ab574c84090dc2471352]] tiddler info ''Advanced'' panel with information about plugins and shadow tiddlers\n* [[Improved|https://github.com/Jermolene/TiddlyWiki5/commit/96457d801159958b897f98e22aa9af53b97f0e35]] layout of [[$:/ControlPanel]] ''Plugins'' tab\n* [[Enhance|https://github.com/Jermolene/TiddlyWiki5/commit/f48701544eda4f79af86b1ad44340e7182bcf024]] viewing of system tiddlers by fading down the `$:/` prefix\n* [[Extend|https://github.com/Jermolene/TiddlyWiki5/commit/dd3ee2a603cba35770a8f109e070f271d72861f8]] [[$:/TagManager]] to allow icons to be assigned to tags\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/87c4839fed789b80e0942014c05175e36aacc157]] support for `list-before` and `list-after` fields for controlling tag ordering (see TiddlerTags for details)\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/3afa26b9a318d913ba162d93a63036cb4a94be59]] request for confirmation before abandoning edits to a tiddler\n\n!! Hackability Improvements\n\n* [[Updated|https://github.com/Jermolene/TiddlyWiki5/commit/bdbbf94326f70db0f8ef196270ab9e92bfde10fb]] [[Transclusion in WikiText]] syntax to allow translusion of a template without affecting the current tiddler\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/8a7d0f53d380e9ca93ee34d8ad05090d511e95c4]] `sourceURL` handling to `eval()` so that tiddler modules can be [[properly debugged|https://chromedevtools.googlecode.com/svn-history/r421/trunk/tutorials/breapoints/index.html#regular]] in Chrome\n* New ScrollableWidget giving better control over scrollable regions\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/d3c0296a87198296cff26aa7ce7bb8274cdcc3f7]] new CSS class `tw-site-title` for the site title\n* [[Disable|https://github.com/Jermolene/TiddlyWiki5/commit/e397e4d15951c1395c7752a7563f002ca459206e]] the TiddlyWeb sync adaptor unless the wiki is loaded over HTTP\n* Added a [[high resolution timer mechanism|https://github.com/Jermolene/TiddlyWiki5/commit/dcce4879347e4829d75f10248477731b18b829ef]] and a [[performance measurement mechanism|https://github.com/Jermolene/TiddlyWiki5/commit/d402d3c5a619b6b1642ab03c74ff03a864846a0b]]\n* Added a [[basic CSV parser|https://github.com/Jermolene/TiddlyWiki5/commit/5a085f792722c74d259464386138c731b2f014cc]]\n* Several measures to enforce the TiddlyWiki programming model:\n** [[Refactor|https://github.com/Jermolene/TiddlyWiki5/commit/9de17aa206b21df5c4e29e61bba5d6b49aca6c71]] wiki store object to make members be private\n** Freeze tiddler object and [[fields|https://github.com/Jermolene/TiddlyWiki5/commit/279626a3e3fbd75d60fc3be49b68a99d8ba0a95d]] tiddler fields to enforce their immutability\n* [[Extend|https://github.com/Jermolene/TiddlyWiki5/commit/f649b5b037bfd2e7c48d1ba65ffa37064456523d]] the ButtonWidget to be able to set text references\n* [[Add|https://github.com/Jermolene/TiddlyWiki5/commit/afa677b9a0b1dff1239dc1ea08edd210b9736af9]] a class to tiddler frames in view mode\n* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/50cf9678cb469e443e220b063e2355c844e417e7]] support for [[WidgetMessage: tw-home]]\n* [[Hidden|https://github.com/Jermolene/TiddlyWiki5/commit/2608a323ebf3d8a8e925eda6d3a10ebb8f41d383]] system tags from the sidebar ''Tags'' tab\n* [[Allow|https://github.com/Jermolene/TiddlyWiki5/commit/98872bbe7c62faa4aa209fa421c2989aeef3aaf2]] pasting and import of HTML content\n* [[Add|https://github.com/Jermolene/TiddlyWiki5/commit/a5a2c718b1d5671652d01e3567dba1c6795b7521]] support for a tooltip on the LinkWidget\n\n!! Bug Fixes\n\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/aa631518152cda5643805c143bf0000bca8d767f]] problem with occasional freezes of the sync mechanism - thanks to buggyj\n* Fixed problem with [[tiddlers|https://github.com/Jermolene/TiddlyWiki5/commit/1e960ffcac566c742c44b18d6f0e809d4457b249]] or [[fields|https://github.com/Jermolene/TiddlyWiki5/commit/ea46f85a8a5ad29e8602cbb13667c853903681a6]] called `__proto__`\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/aec618793f41b937676a5a165764dc19d9bbb2b2]] with refreshing the D3 plugin\n* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/67f3d58f7153ca4d50ce5a14ed72d9d4b6ad9b71]] problem with \"null\" message when unloading under Internet Explorer 11\n\n"
},
"RoadMap": {
"title": "RoadMap",
"created": "20130823203800000",
"modified": "20160418123722695",
"tags": "About",
"type": "text/vnd.tiddlywiki",
"text": "There are still some areas of TiddlyWiki that have not been fully developed beyond the experimental stage:\n\n* Multiple users with the client-server configuration\n* Smartphone user experience\n* New tiddler manager, including bulk operations like search and replace\n* Federation that can run in the browser or under Node.js\n* Improved editions\n* Improved support for third party plugin libraries\n\nAlso see the issues list on GitHub: https://github.com/Jermolene/TiddlyWiki5\n\n"
},
"Emergency Tiddler Export": {
"title": "Emergency Tiddler Export",
"caption": "Emergency Export",
"created": "20180309211328412",
"delivery": "Saver",
"description": "Awkward but useful emergency technique for saving tiddlers",
"method": "save",
"modified": "20180309221402430",
"tags": "Mac Android Windows Linux Saving Chrome Safari Firefox Opera InternetExplorer",
"type": "text/vnd.tiddlywiki",
"text": "\nThis method is useful if, for any reason, you should find your current TiddlyWiki instance is not saving (e.g. a plugin or a server has stopped working). It should work on just about any platform.\n\n* Go to advanced search {{$:/core/ui/Buttons/advanced-search}}\n** Goto the filter tab\n** Enter the following filter text: \n\n\n```\n[!is[system]!sort[modified]limit[25]]\n```\n* Check the list of tiddlers.\n* Adjust the number \"25\" in the filter to make sure you found all your recently modified tiddlers\n* Press the bucket with the up arrow [<button class=\"tc-btn-invisible\" disabled>{{$:/core/images/export-button}}</button>] which appears on the right\n* A dialogue window will ask for a location to download a file called tiddler.json on your local drive, or depending on browser configuration, just alert you that such a file will be downloaded. Press save.\n* The `tiddlers.json` file can be imported (tools in sidebar) or drag and drop the file on the top line of the story river of another TW . \n** You can (de)select specific tiddlers. \n** Finally, press `import`.\n\n"
},
"Encryption": {
"title": "Encryption",
"created": "20130825160900000",
"modified": "20160610083350724",
"tags": "Features [[Working with TiddlyWiki]]",
"type": "text/vnd.tiddlywiki",
"text": "When used as a single HTML file, TiddlyWiki5 allows content to be encrypted using the [[Stanford JavaScript Crypto Library]].\n\n# Switch to the ''Tools'' tab in the sidebar and look for the button with a padlock icon\n# If the button is labelled {{$:/core/images/unlocked-padlock}} ''set password'' then the current wiki is not encrypted. Clicking the button will prompt for a password that will be used to encrypt subsequent saves\n# If the button is labelled {{$:/core/images/locked-padlock}} ''clear password'' then the current wiki is already encrypted. Clicking the button will remove the password so that subsequent saves will be unencrypted\n# Optionally, open the saved file in a text editor and verify that your data is encrypted\n# Open the file in your browser. You will be prompted for a password before the content is displayed\n\nNote that TiddlyWiki has two other unrelated features concerned with passwords/encryption:\n\n* The ability to set a password when saving to TiddlySpot. This is done in the \"Saving\" tab of ''control panel'' {{$:/core/images/options-button}}.\n* The ability to use standard HTTP basic authentication with the [[Node.js|TiddlyWiki on Node.js]] server configuration. This is done on the command line with the ServerCommand. Combined with SSL, this gives the same level of transit encryption as you'd get with online services like Google or Dropbox, but there is no encryption of data on disk\n"
},
"Example config-tiddlyweb-host for IIS": {
"title": "Example config-tiddlyweb-host for IIS",
"text": "title: $:/config/tiddlyweb/host\ntext: $protocol$//$host$/MyApp/\n",
"type": "text/plain",
"created": "20180328145039530",
"modified": "20180328145234871",
"tags": ""
},
"Example package.json for IIS": {
"title": "Example package.json for IIS",
"text": "{\n \"name\": \"MyStuff\",\n \"description\": \"A description of this wiki\",\n \"dependencies\": {\n \"sax\": \"1.2.4\",\n \"tiddlywiki\": \"*\"\n }\n}",
"type": "text/plain",
"created": "20180328145039530",
"modified": "20180328145234871",
"tags": ""
},
"Example tiddlywiki.info for IIS": {
"title": "Example tiddlywiki.info for IIS",
"text": "{\n\t\"description\": \"My wiki\",\n\t\"plugins\": [\n\t\t\"tiddlywiki/tiddlyweb\",\n\t\t\"tiddlywiki/filesystem\"\n\t],\n\t\"themes\": [\n\t\t\"tiddlywiki/vanilla\",\n\t\t\"tiddlywiki/snowwhite\"\n\t]\n}\n",
"type": "text/plain",
"created": "20180328151124878",
"modified": "20180328151214616",
"tags": ""
},
"Example web.config for IIS": {
"title": "Example web.config for IIS",
"text": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<configuration>\n <system.webServer>\n <handlers>\n <add \n name=\"httpplatformhandler\"\n path=\"*\"\n verb=\"*\"\n modules=\"httpPlatformHandler\"\n resourceType=\"Unspecified\"\n requireAccess=\"Script\" />\n </handlers>\n <httpPlatform \n stdoutLogEnabled=\"true\"\n stdoutLogFile=\".\\node.log\"\n startupTimeLimit=\"20\"\n processPath=\"C:\\Program Files\\nodejs\\node.exe\"\n arguments=\".\\node_modules\\tiddlywiki\\tiddlywiki.js ./wiki --listen port=PORT path-prefix=/MyApp\">\n <environmentVariables>\n <environmentVariable name=\"PORT\" value=\"%HTTP_PLATFORM_PORT%\" />\n <environmentVariable name=\"NODE_ENV\" value=\"Production\" />\n </environmentVariables> \n </httpPlatform>\n </system.webServer>\n</configuration>\n",
"type": "text/plain",
"created": "20180328145259455",
"modified": "20180701185215523",
"tags": ""
},
"Installing TiddlyWiki on Microsoft Internet Information Server": {
"title": "Installing TiddlyWiki on Microsoft Internet Information Server",
"caption": "Internet Information Services",
"created": "20180328120356008",
"delivery": "DIY",
"description": "Windows' built-in web server",
"method": "sync",
"modified": "20180701185718671",
"tags": "Saving [[TiddlyWiki on Node.js]] Windows",
"type": "text/vnd.tiddlywiki",
"text": "\\define example-file(title)\n<$transclude tiddler=\"$title$\" mode=\"block\"/> <$macrocall $name=\"copy-to-clipboard\" src={{$title$}}/>\n\\end\n\nMicrosoft's [[Internet Information Server|https://en.wikipedia.org/wiki/Internet_Information_Services]] (IIS) is the built-in web server for Windows. It can be useful to host TiddlyWiki within IIS in order to take advantage of IIS features like URL rewriting, static file hosting and automatic restarts after a crash.\n\n! 1. Enable IIS\n\n# In Windows, access the Control Panel and click ''Add or Remove Programs''\n# In the Add or Remove Programs window, click ''Add/Remove Windows Components''.\n# Select the ''Internet Information Services (IIS)'' check box\n# Click ''Next'', then click ''Finish''\n\n! 2. Install the required tools\n\n# Install the IIS module ~HttpPlatformHandler from https://www.iis.net/downloads/microsoft/httpplatformhandler\n# Install [[Node.js]] from https://nodejs.org/\n# Install Git from https://git-scm.com/\n#* //optional; only required when using the latest TiddlyWiki release pulled directly from ~GitHub -- see below//\n\n! 3. Install TiddlyWiki and setup a new wiki\n\n# Create a convenient directory for the wiki (e.g. `C:\\MyStuff`)\n# Within it, create a file called `C:\\MyStuff\\package.json` with the content:\n#> <<example-file \"Example package.json for IIS\">>\n# Also create a file called `C:\\MyStuff\\web.config` with the content:\n#> <<example-file \"Example web.config for IIS\">>\n# Create a subdirectory called \"wiki\" (i.e. `C:\\MyStuff\\wiki`)\n# Create a file called `C:\\MyStuff\\wiki\\tiddlywiki.info` with the content:\n#> <<example-file \"Example tiddlywiki.info for IIS\">>\n# Create a subdirectory called \"tiddlers\" (i.e. `C:\\MyStuff\\wiki\\tiddlers`)\n# Within it, create a file called `C:\\MyStuff\\wiki\\tiddlers\\config-tiddlyweb-host.tid` with the content:\n#> <<example-file \"Example config-tiddlyweb-host for IIS\">>\n#* (See [[the documentation|https://docs.microsoft.com/en-us/iis/extensions/httpplatformhandler/httpplatformhandler-configuration-reference]] for details of the configuration fields for ~HttpPlatformHandler\n# Execute the command `npm install` within the `C:/MyStuff` directory\n\n! 4. Setup the application in IIS\n\n* In Windows, run the IIS Manager application (use the start menu to run `inetmgr.exe`)\n* Locate the server in the ''Connections'' column on the left, and click the disclosure triangle to show its content\n* Open the ''Sites'' folder\n* Right click on the ''Default Web Site'' entry, and select ''Add application..'' from the menu\n* Enter the following information in the dialogue box:\n*# ''Alias'': `MyApp`\n*# ''Physical path'': `C:\\MyStuff`\n* Click ''OK''\n\n! 5. Test the application\n\nTest the app by visiting http://localhost/MyApp/ in a browser.\n\n! Notes\n\n* If you require authentication, specify a username and password in the `--listen` command in `web.config`. For example:\n** `arguments=\".\\node_modules\\tiddlywiki\\tiddlywiki.js ./wiki-server --listen username=joe "password=bloggs" port=PORT path-prefix=/MyApp\">`\n** Take note of the need to use double quotes around non-alphanumeric passwords, and to HTML encode them into `"`\n* If you change the settings in the `web.config` file, or modify the app code, then you'll need to restart the server using the IIS manager application\n\n"
},
"Saving on Android": {
"title": "Saving on Android",
"caption": "~AndTidWiki",
"created": "20130825161400000",
"delivery": "App",
"description": "Android app for saving changes locally to device storage",
"method": "save",
"modified": "20171113105950965",
"tags": "Saving Android",
"type": "text/vnd.tiddlywiki",
"text": "The AndTidWiki app for Android devices makes it possible to edit and save changes to TiddlyWiki5, including working offline without a network connection. [[Download it here|https://play.google.com/store/apps/details?id=de.mgsimon.android.andtidwiki&hl=en]].\n\nInstructions for use:\n\n# [[Download]] an empty TiddlyWiki on another web browser\n# Move the file you just downloaded to the directory `/sdcard/andtidwiki`\n#* You may rename it, but be sure to keep the `.html` or `.htm` extension\n# Open AndTidWiki\n#* Don't use ''Menu''/''new ~TiddlyWiki'' menu option (it only supports the older TiddlyWikiClassic)\n# Open the file by touching its filename\n# Try creating a new tiddler using the ''new tiddler'' {{$:/core/images/new-button}} button in the sidebar. Type some content for the tiddler, and click the {{$:/core/images/done-button}} ''ok'' button\n#* The wiki will be saved, and a confirmation message should appear at the top right of the window\n\n''Note:'' You can save your changes by clicking the {{$:/core/images/save-button}} ''save changes'' button in the sidebar even if you have not clicked the {{$:/core/images/done-button}} ''ok'' button to complete editing a tiddler\n\n//Note that AndTidWiki is published independently of TiddlyWiki//"
},
"Saving on Beaker Browser": {
"title": "Saving on Beaker Browser",
"caption": "Beaker Browser",
"created": "20161229121316912",
"delivery": "App",
"description": "Powerful new browser for Mac, Windows and Linux",
"method": "save",
"modified": "20171113110603084",
"tags": "Saving Windows Linux Mac",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.14\">> TiddlyWiki incorporates a saver module that allows it to save changes directly with the [[Beaker Browser]], an experimental peer-to-peer browser.\n\n! Instructions\n\n# Download and install the Beaker Browser from https://beakerbrowser.com/\n# Run Beaker, and if necessary open a tab to beaker:start\n# Click the \"New site\" button at the top left of the page\n# Enter the details of your site\n# Click the link “Add files” and upload your TiddlyWiki index.html file\n# View the site by clicking on the link to index.html; it should open in a new tab\n# Try out creating tiddlers, and saving changes\n\nAt this point, the wiki is entirely private, and other users cannot see the content even if they have the URL. To share the wiki with other users:\n\n# Publish your changes\n## Visit the \"Library\" page in Beaker Browser via the system menu\n## Select your site in the list\n## Look for a box mentioning \"n unpublished changes\". If not present, skip to the next step\n## Click the \"Review changes\" button\n## Click the \"Publish\" button\n# Share the dat: URL\n## Copy the URL of your site from the address bar and share it with other users\n## Other users should be able to access your site but they won't be able to make changes unless they fork their own copy\n"
},
"Saving on TiddlyDesktop": {
"title": "Saving on TiddlyDesktop",
"caption": "~TiddlyDesktop",
"created": "20171112085137764",
"delivery": "App",
"description": "Custom desktop application for working with TiddlyWiki",
"method": "save",
"modified": "20171113105959509",
"tags": "Saving Mac Windows Linux",
"type": "text/vnd.tiddlywiki",
"text": "See the [[Introducing TiddlyDesktop Video]]\n\n# Install the latest release of TiddlyDesktop from https://github.com/Jermolene/TiddlyDesktop/releases\n# Run TiddlyDesktop\n# Use the browse button to open TiddlyWiki files\n# Save changes within TiddlyWiki in the usual way\n"
},
"Saving on TiddlySpot": {
"title": "Saving on TiddlySpot",
"created": "20130825213500000",
"modified": "20160610082610879",
"tags": "Saving Android Chrome Firefox InternetExplorer iOS Linux Mac Opera PHP Safari Windows",
"type": "text/vnd.tiddlywiki",
"delivery": "Service",
"method": "save",
"caption": "TiddlySpot",
"description": "Free online service for hosting TiddlyWiki files",
"text": "[[TiddlySpot|http://tiddlyspot.com]] is a free hosting service for TiddlyWiki documents from Simon Baird and Daniel Baird.\n\n! Setting up a TiddlyWiki on TiddlySpot\nTo set up a [[TiddlyWiki Classic|TiddlyWikiClassic]], you merely create a new wiki at http://tiddlyspot.com\n\n!!TiddlyWiki5 on TiddlySpot\n~TiddlyWiki5 also functions well on ~TiddlySpot but this version is not offered directly in the TiddlySpot set-up.\n\nThe simplest way to create a new ~TiddlySpot with ~TiddlyWiki5 is probably through the community created site http://tiddlywiki5.tiddlyspot.com\n\nAlternatively, you can upload an existing ~TiddlyWiki5 document from your local disc to ~TiddlySpot by following these steps:\n\n# Sign up for a new wiki at http://tiddlyspot.com/, and remember the wiki name and password\n# Open your locally stored TiddlyWiki document in your browser\n# Fill in the TiddlySpot wikiname and password in ''Saving'' tab of the ''control panel'' {{$:/core/images/options-button}}\n# Click the {{$:/core/images/save-button}} ''save changes'' button. You should get a confirmation notification at the top right saying ''Saved wiki''. Saving can take several seconds if you're on a slow connection or working with a large wiki.\n# Navigate to your TiddlySpot URL at http://{wikiname}.tiddlyspot.com/\n\nNote that your password is sent unencrypted when using TiddlySpot. From http://faq.tiddlyspot.com/:\n\n<<<\n''Is Tiddlyspot secure?''\n\nNo. Tiddlyspot does not use SSL/https. Your password is sent in clear text when uploading and when authenticating to access a private site. This means that your Tiddlyspot is vulnerable to packet sniffing and your password could be discovered by a malicious third party. Also your data is transmitted unencrypted when you view your site, even if it is a private site. For this reason please don't put sensitive information such as banking details in your Tiddlyspot and don't use a password that you use for other high security sites.\n<<<\n\n! Problems with saving on TiddlySpot\n\nIn case you run into this error when uploading a new or freshly upgraded local TiddlyWiki to TiddlySpot :\n\n<<<\nError while saving:\n\nError:NS_ERROR_DOM_BAD_URI: Access to restricted URI denied\n<<<\n\nThe upgrade operation falls foul of a security restriction in Firefox. Until this can be resolved, we suggest using Chrome.\n\n*# Use Chrome to open the local TiddlyWiki document you want to upload to TiddlySpot and follow the steps 1 through 5 described above\n*# Once you've checked the TiddlySpot-hosted TiddlyWiki loads properly in Chrome, you should be able to access, edit and [[save using TiddlyFox|Saving with TiddlyFox]] again\n* After you've uploaded your local document once, further editing and saving of the online version hosted on TiddlySpot should work with any modern browser of your choice.\n** Don't forget to fill in the TiddlySpot wikiname and password in your TiddlySpot TiddlyWiki control panel for any new browser you want to use for saving changes\n\n* //See also : [[Upgrading]]//\n"
},
"Saving on a PHP Server": {
"title": "Saving on a PHP Server",
"caption": "PHP",
"created": "20140111091844267",
"delivery": "DIY",
"description": "DIY script you can install on your own server",
"method": "save",
"modified": "20171115171431733",
"tags": "Saving PHP",
"type": "text/vnd.tiddlywiki",
"text": "The built-in `TiddlySpot `saver can also be used to save changes to a simple PHP script that you can run on most hosting providers.\n\n//These are preliminary instructions that need verification//\n\n# Download a copy of `TiddlyHome_0.1.2.zip` from https://code.google.com/archive/p/bidix/downloads\n# Unzip. \n# Extract a copy of `store.php` from under the unzipped subdirectory `_th\\lib`\n# Edit your copy of ''store.php'' to add your username(s) and password(s). Find the line `$USERS = array( 'UserName1'=>'Password1', etc)` and replace Username1 and Password1 with your desired username and password\n#* Make sure you leave all the punctuation and code, such as the single quotes, intact\n# Save the file\n# Using FTP or your web interface, upload ''store.php'' to your server. Make sure that the filename is correct\n#* If you've uploaded the file correctly you should be able to view it in your browser (eg, http://example.com/store.php)\n# In TiddlyWiki, go to the ''Saving'' tab of the ''control panel'' {{$:/core/images/options-button}} and enter the following information:\n#* Your username as the wiki name\n#* Your password\n#* The URL of the ''store.php'' file (//''not'' the URL of the wiki, this must the full URL to the ''store.php'' file//)\n\nThe control panel ''Saving'' tab includes the following configuration options:\n\n|!Name |!Description |\n|Server URL |The full URL to the ''store.php'' file on your server |\n|Upload filename |The filename used to save the TiddlyWiki (defaults to ''index.html'') |\n|Upload directory |The relative path from ''store.php'' to the directory used for saving the file |\n|Backup directory |The relative path from ''store.php'' to the directory used for backups |\n\n!!! Note about maximum size\n\nAs your TW file increases in size, you may need to modify your `.htaccess` or `htaccess` file (depending on system) to increase the value of the maximum upload and/or post size. Check with your Web Host Provider for your particular settings. Be sure also to make backups before experiementing. On some systems, the settings might look like:\n\n```\nphp_value upload_max_filesize 4M\nphp_value post_max_size 6M\n```\n\n!!! Note about possible error message\n\nIf you get an error message regarding `split()`, you may need to change references to `split` in ''store.php'' to function `explode` .\n"
},
"Saving on iPad/iPhone": {
"title": "Saving on iPad/iPhone",
"caption": "Quine",
"created": "20131129101027725",
"delivery": "App",
"description": "iPad/iPhone app for working with TiddlyWiki",
"method": "save",
"modified": "20171113105954683",
"tags": "Saving iOS",
"type": "text/vnd.tiddlywiki",
"text": "The iPad/iPhone app ''Quine'' makes it possible to edit and save changes to TiddlyWiki5, including working offline without a network connection. [[Download it here|https://itunes.apple.com/us/app/quine/id1228682923?mt=8]].\n\nInstructions for use:\n\n# Open Quine\n# On iPad\n#* Touch the file button (<) or swipe from the left of the screen to open the file list\n# On iPhone\n#* The file list will show automatically unless a wiki is already open\n# Touch the new file button (+) in the file list window to create a new TiddlyWiki5 file\n# Swipe any file item from the right to see a list of additional \"actions\" possible for that file\n# Touch any listed file item or folder to open it - wikis will open in Quine's custom browser\n# When you have an open TiddlyWiki5:\n# Try creating a new tiddler using the ''new tiddler'' {{$:/core/images/new-button}} button in the sidebar\n# Type some content for the tiddler, and click the {{$:/core/images/done-button}} ''ok'' button\n# Save your changes by clicking the {{$:/core/images/save-button}} ''save changes'' button in the sidebar\n#* A confirmation message should appear at the top right of the window\n# Touch \"Done\" when done editing a wiki\n\n//Note that Quine is published independently of TiddlyWiki//\n"
},
"Saving to a Git service": {
"title": "Saving to a Git service",
"created": "20190408173002622",
"modified": "20190408173002622",
"tags": "Saving Android Chrome Firefox InternetExplorer iOS Linux Mac Opera Safari Windows",
"type": "text/vnd.tiddlywiki",
"delivery": "Service",
"method": "save",
"caption": "Git Service Saver",
"description": "Save changes directly to a Git repository (on GitHub, GitLab)",
"text": "TiddlyWiki can save changes directly to a GitHub repository in the single file configuration.\n\nSaving to a Git service is configured in the [[$:/ControlPanel]] in the ''Git Service Saver'' tab under the ''Saving'' tab. The following settings are supported:\n\n* ''Type'' - (mandatory) the type of the service (e.g. GitHub, GitLab)\n* ''Username'' - (mandatory) the username for the Git service account used for saving changes\n* ''Password'' - (mandatory) the password, OAUTH token or personal access token for the specified account. Note that GitHub permits [[several different mechanisms|https://developer.github.com/v3/#authentication]] for authentication\n* ''Repository'' - (mandatory) the name of the Git repository. Both the owner name and the repository name must be specified. For example `Jermolene/TiddlyWiki5`\n* ''Branch'' - (optional) the name of the branch to be used within the Git repository. Defaults to `master`\n* ''Path'' - (optional) the path to the target file. Defaults to `/`\n* ''Filename'' - (mandatory) the filename of the target file\n\nNotes\n\n* The Git service password is stored persistently in browser local storage. Be sure to clear the password if using a shared machine. Using a [[personal access token|]] for authentication offers an extra layer of security: if the access token is accidentally exposed it can be revoked without needing to reset the account password\n"
},
"Saving via WebDAV": {
"title": "Saving via WebDAV",
"caption": "WebDAV",
"created": "20160216191710789",
"delivery": "Protocol",
"description": "Standard web protocol available on products such as Sharepoint",
"method": "save",
"modified": "20171117171334181",
"tags": "Saving Android Chrome Firefox InternetExplorer iOS Linux Mac Opera PHP Safari Windows",
"type": "text/vnd.tiddlywiki",
"text": "If hosted on a [[WebDAV|https://en.wikipedia.org/wiki/WebDAV]]-enabled server, TiddlyWiki will automatically save changes via HTTP.\n\n!! Servers\n\nMany [[NAS|https://en.wikipedia.org/wiki/NAS]] or [[Subversion|https://en.wikipedia.org/wiki/Apache_Subversion]] servers support WebDAV out of the box. Setting up your own server might take some effort though:\n\n[[dav-server|https://github.com/edrex/dav-server]] is a quick way to serve up a folder of HTML ~TiddlyWikis.\n\n[[webdav server|https://play.google.com/store/apps/details?id=com.theolivetree.webdavserver&hl=en]] for Android lets you put wikis in your pocket. You can share with other devices on the local network too.\n\n!! Existing Wikis\n\n~WebDAV support was added Feb 16 2016. If you created your wiki before that, you'll need to [[Upgrade|Upgrading]] to enable ~WebDAV.\n\n!! Video HowTo's\n\n[[Mario Pietsch|\"Wikilabs\" by PMario]] has [[created several videos|https://www.youtube.com/watch?v=tpkQhKyqPzc&list=PLuiC_HFhI4OwoVDb-B-VK0ydj-mBPNn-1]] that show how to prepare Microsoft Internet Information Service (IIS) to host a local TiddlyWiki using ~WebDav\n\n!! Free Hosting\n\nSeveral ~WebDAV hosting services tested (~~box.com~~, ~~swissdisk.com~~) don't support accessing HTML files via a webbrowser, so they won't work with ~TiddlyWiki. However, The GMX mediacenter (www.gmx.net) has been reported as working with WebDAV with a free account.\n"
},
"Saving via a Minimal Ruby Server": {
"title": "Saving via a Minimal Ruby Server",
"caption": "Ruby Server",
"created": "20180514011710789",
"delivery": "Server-side Script",
"description": "DIY script you can run as a server",
"method": "save",
"modified": "20180513222628883",
"tags": "Saving Android Chrome Firefox InternetExplorer iOS Linux Mac Opera Safari Windows",
"type": "text/vnd.tiddlywiki",
"text": "This is a minimal server using Ruby Webrick. It just serves up files from the same folder and handles saving.\n\nOnce running, just point your web browser at http://localhost:8000 to view the folder listing, and click on your wiki html file.\n\nSee the script at:\n\nhttps://gist.github.com/jimfoltz/ee791c1bdd30ce137bc23cce826096da\n"
},
"Saving with TiddlyFox on Android": {
"title": "Saving with TiddlyFox on Android",
"created": "20140103134551508",
"modified": "20171113131640857",
"tags": "[[Saving with TiddlyFox]]",
"type": "text/vnd.tiddlywiki",
"text": "(Alternatively, see the [[video tutorial|TiddlyWiki on Firefox for Android Video]])\n\n# Ensure you have the latest version of [[Firefox for Android]]\n#* http://getfirefox.com\n# Install the latest release of the TiddlyFox extension from:\n#* https://addons.mozilla.org/en-GB/firefox/addon/tiddlyfox/\n# Install this extension to be able to save the TiddlyWiki file locally:\n#* https://addons.mozilla.org/en-GB/android/addon/save-link-menus/\n# [[Download]] an empty TiddlyWiki by saving this link:\n#* https://tiddlywiki.com/empty.html\n#> (to save the link, ensure you've installed the \"save-link-menus\" extension and then long-press on the link and choose \"Save link\")\n# When the file has downloaded, click on it within the notification tray or the download manager application\n# Choose to open the file in Firefox (rather than the default Android viewer)\n# Click ''OK'' in response to the prompt from TiddlyFox that asks whether to enable saving for this file\n# Try creating a new tiddler using the ''new tiddler'' {{$:/core/images/new-button}} button in the sidebar. Type some content for the tiddler, and click the {{$:/core/images/done-button}} ''ok'' button\n# Save your changes by clicking the {{$:/core/images/save-button}} ''save changes'' button in the sidebar\n#* Look for the yellow notification ''Saved wiki'' at the top right of the window\n# Refresh the browser window to verify that your changes have been saved correctly\n"
},
"Saving with TiddlyFox": {
"title": "Saving with TiddlyFox",
"caption": "~TiddlyFox",
"created": "20131221085742684",
"delivery": "Browser Extension",
"description": "Browser extension for older versions of Firefox",
"method": "save",
"modified": "20171118230504315",
"tags": "Saving Firefox",
"type": "text/vnd.tiddlywiki",
"text": "If you're using [[Firefox for Android]], see the instructions for [[Saving with TiddlyFox on Android]].\n\n# Ensure you have a version of Firefox before version 57. ~TiddlyFox will not work with Firefox 57 and on. For Firefox 57 and on, consider using the following instead: <<list-links filter:\"[tag[Firefox]delivery[Browser Extension]] -[[Saving with TiddlyFox]]\">>\n# Install the latest release of the TiddlyFox extension from:\n#* https://addons.mozilla.org/en-GB/firefox/addon/tiddlyfox/\n# Restart [[Firefox]]\n# [[Download]] an empty TiddlyWiki by clicking this button:\n#> {{$:/editions/tw5.com/snippets/download-empty-button}}\n# Locate the file you just downloaded\n#* You may rename it, but be sure to keep the `.html` or `.htm` extension\n# Open the file in [[Firefox]]\n#* If you are using TiddlyFox v1.x.x, you will need to click ''OK'' in response to the prompt from TiddlyFox that asks whether to enable saving for this file\n#* If you are using TiddlyFox v2.x.x you will need to click on the icon of a kitten standing on a blue globe to activate saving. There is no prompt in v2.0.1.\n#** For TiddlyFox v2.0.1, you can not be using Private Browsing mode nor can you be using \"Never Remember History\".\n# Try creating a new tiddler using the ''new tiddler'' {{$:/core/images/new-button}} button in the sidebar. Type some content for the tiddler, and click the {{$:/core/images/done-button}} ''ok'' button\n# Save your changes by clicking the {{$:/core/images/save-button}} ''save changes'' button in the sidebar\n#* Look for the yellow notification ''Saved wiki'' at the top right of the window\n# Refresh the browser window to verify that your changes have been saved correctly\n"
},
"Saving with TiddlyIE": {
"title": "Saving with TiddlyIE",
"caption": "~TiddlyIE",
"created": "20131211220000000",
"delivery": "Browser Extension",
"description": "Browser extension for Internet Explorer",
"method": "save",
"modified": "20171113110036278",
"tags": "Saving InternetExplorer",
"type": "text/vnd.tiddlywiki",
"text": "# Install the TiddlyIE add-on from:\n#* https://github.com/davidjade/TiddlyIE/releases\n# Restart Internet Explorer. IE will prompt you to enable the TiddlyIE add-on.\n#> You may also see a prompt to enable the //Microsoft Script Runtime//\n# [[Download]] an empty TiddlyWiki by saving this link:\n#> https://tiddlywiki.com/empty.html\n# Locate the file you just downloaded\n#* You may rename it, but be sure to keep the `.html` or `.htm` extension\n# Open the file in Internet Explorer\n# Try creating a new tiddler using the ''new tiddler'' {{$:/core/images/new-button}} button in the sidebar. Type some content for the tiddler, and click the {{$:/core/images/done-button}} ''ok'' button\n# Save your changes by clicking the {{$:/core/images/save-button}} ''save changes'' button in the sidebar. Internet Explorer will ask for your consent to save the file locally by presenting a file ''Save As'' dialog.\n# Refresh the browser window to verify that your changes have been saved correctly\n"
},
"Saving with the HTML5 fallback saver": {
"title": "Saving with the HTML5 fallback saver",
"caption": "Download Saver",
"created": "20131129092604900",
"delivery": "Saver",
"description": "Slightly awkward but universal technique that works on almost every browser",
"method": "save",
"modified": "20171113110022987",
"tags": "Saving Chrome Safari Firefox Opera InternetExplorer",
"type": "text/vnd.tiddlywiki",
"text": "This method of saving changes is clunky because it requires manual intervention for each save. It has the advantage of working on almost all desktop browsers, and many mobile browsers.\n\n# [[Download]] an empty TiddlyWiki by clicking this button:\n#> {{$:/editions/tw5.com/snippets/download-empty-button}}\n#> If the button doesn't work save this link: https://tiddlywiki.com/empty.html\n#> Your browser may ask you to accept the download before it begins\n# Locate the file you just downloaded\n#* You may rename it, but be sure to keep the `.html` or `.htm` extension\n# Open the file in your browser\n# Try creating a new tiddler using the ''new tiddler'' {{$:/core/images/new-button}} button in the sidebar. Type some content for the tiddler, and click the {{$:/core/images/done-button}} ''ok'' button\n# Save your changes by clicking the {{$:/core/images/save-button}} ''save changes'' button in the sidebar\n# Your browser will download a new copy of the wiki incorporating your changes\n# Locate the newly downloaded file and open it in your browser\n# Verify that your changes have been saved correctly\n\n''Tip'': most browsers have an option to prompt each time for the download location. This allows you to select the existing version of the file and replace it.\n"
},
"Saving": {
"title": "Saving",
"created": "20140912140651119",
"list": "[[Saving with the HTML5 fallback saver]] [[Installing TiddlyWiki on Node.js]] [[TiddlyServer by Arlen Beiler]] [[Saving on TiddlyDesktop]] [[Saving on Beaker Browser]] [[Saving on iPad/iPhone]] [[\"savetiddlers\" Extension for Chrome and Firefox by buggyj]] [[\"file-backups\" Extension for Firefox by pmario]] [[\"Noteself\" by Danielo Rodríguez]] [[TiddlyDrive Add-on for Google Drive by Joshua Stubbs]] [[TiddlyWiki in the Sky for Dropbox]] [[Saving on a PHP Server]] [[Saving via WebDAV]] [[Saving on Android]] [[Saving with TiddlyFox]] [[Saving with TiddlyIE]] [[Windows HTA Hack]]",
"modified": "20171113135847405",
"tags": "[[Working with TiddlyWiki]]",
"type": "text/vnd.tiddlywiki",
"text": "\\define filter-button(caption,filter)\n<$reveal type=\"nomatch\" state=\"$:/SavingDetailsFilter\" text=\"\"\"$filter$\"\"\" tag=\"span\">\n<$button class=\"tc-btn-invisible tc-btn-unpushed\" set=\"$:/SavingDetailsFilter\" setTo=\"\"\"$filter$\"\"\">\n<$text text=\"\"\"$caption$\"\"\"/>\n</$button>\n</$reveal>\n<$reveal type=\"match\" state=\"$:/SavingDetailsFilter\" text=\"\"\"$filter$\"\"\" tag=\"span\">\n<$button class=\"tc-btn-invisible tc-btn-pushed\">\n<$text text=\"\"\"$caption$\"\"\"/> {{$:/core/images/done-button}}\n</$button>\n</$reveal>\n\\end\n\n\\define filter-maker()\n[tag[Saving]tag[$(currentTiddler)$]]\n\\end\n\nAvailable methods for saving changes with TiddlyWiki:\n\n<div class=\"tc-thumbnail-tabs\">\n<div style=\"font-size:0.9em;\">\nPLATFORMS:\n<<filter-button caption:\"All\" filter:\"[tag[Saving]]\">>\n<$list filter=\"Android Chrome Firefox InternetExplorer iOS Linux Mac Opera PHP Safari Windows\">\n<$macrocall $name=\"filter-button\" caption=<<currentTiddler>> filter=<<filter-maker>>/>\n</$list>\n</div>\n<br/>\n<$macrocall $name=\"tabs\" tabsList={{$:/SavingDetailsFilter}} template=\"$:/SavingDetailsTemplate\" buttonTemplate=\"$:/SavingThumbnailsTemplate\"/>\n</div>\n"
},
"$:/SavingDetailsFilter": {
"title": "$:/SavingDetailsFilter",
"created": "20171113131257109",
"modified": "20171113162326513",
"type": "text/vnd.tiddlywiki",
"text": "[tag[Saving]]"
},
"$:/SavingDetailsTemplate": {
"title": "$:/SavingDetailsTemplate",
"text": "\\define platforms()\n<$set name=\"platforms\" tiddler=<<currentTab>> field=\"platforms\">\n<$list filter=\"[<currentTab>tags[]sort[]] -Resources -Saving -plugins\" variable=\"platform\">\n<span class=\"tc-saving-details-platform\">\n<$text text=<<platform>>/>\n</span>\n</$list>\n</$set>\n\\end\n\n<h1><$link to=<<currentTab>>><$view tiddler=<<currentTab>> field=\"title\"/></$link></h1>\n\n|!Method |<$view tiddler=<<currentTab>> field=\"method\"/> |\n|!Delivery |<$view tiddler=<<currentTab>> field=\"delivery\"/> |\n|!Platforms: |<<platforms>> |\n\n<$tiddler tiddler=<<currentTab>>>\n<$transclude tiddler=<<currentTab>> field=\"text\" mode=\"block\"/>\n</$tiddler>"
},
"$:/SavingThumbnailsStyles": {
"title": "$:/SavingThumbnailsStyles",
"tags": "$:/tags/Stylesheet",
"text": ".tc-thumbnail-tabs .tc-tab-buttons {\n\tbackground: <<color message-background>>;\n text-align: center;\n}\n\n.tc-thumbnail-tabs .tc-tab-buttons button {\n display: table-cell;\n\twidth: 140px;\n\theight: 80px;\n\tvertical-align: top;\n\tmargin: 0.3em;\n\tborder: 2px solid <<color message-background>>;\n\tbackground: <<color message-background>>;\n\tcolor: <<colour message-foreground>>;\n\tpadding: 0;\n\tfont-weight: normal;\n}\n\n.tc-thumbnail-tabs .tc-tab-buttons button.tc-tab-selected {\n\tborder: 2px solid <<colour foreground>>;\n\tbackground: <<color background>>;\n}\n\n.tc-thumbnail-tabs .tc-tab-buttons button:hover {\n\tbackground: <<colour message-foreground>>;\n\tcolor: <<colour message-background>>;\n}\n\n.tc-thumbnail-tabs .tc-tab-divider {\n\tborder: none;\n}\n\n.tc-thumbnail-tabs .tc-saving-thumbnail-wrapper {\n\tvertical-align: top;\n height: inherit;\n}\n\n.tc-thumbnail-tabs .tc-saving-thumbnail-caption {\n\tfont-weight: bold;\n\tbackground: <<color foreground>>;\n\tcolor: <<color background>>;\n\tpadding: 2px 8px;\n}\n\n.tc-thumbnail-tabs .tc-saving-thumbnail-description {\n\tpadding: 2px 8px;\n\tfont-style: italic;\n font-size: 0.85em;\n}\n\n.tc-thumbnail-tabs .tc-saving-details-platform,\n.tc-thumbnail-tabs .tc-btn-unpushed,\n.tc-thumbnail-tabs .tc-btn-pushed {\n\tdisplay: inline-block;\n\tpadding: 0.16em 0.7em;\n\tfont-size: 0.9em;\n\tfont-weight: 400;\n\tline-height: 1.2em;\n\tcolor: <<colour message-background>>;\n\twhite-space: nowrap;\n\tvertical-align: baseline;\n\tbackground-color: <<colour message-foreground>>;\n\tborder-radius: 1em;\n}\n\n.tc-thumbnail-tabs .tc-btn-pushed {\n\tbackground-color: <<colour foreground>>;\n\tfill: <<color background>>;\n}\n\n"
},
"$:/SavingThumbnailsTemplate": {
"title": "$:/SavingThumbnailsTemplate",
"text": "<div class=\"tc-saving-thumbnail-wrapper\">\n<div class=\"tc-saving-thumbnail-caption\">\n<$transclude tiddler=<<currentTab>> field=\"caption\">\n<$view tiddler=<<currentTab>> field=\"title\"/>\n</$transclude>\n</div>\n<div class=\"tc-saving-thumbnail-description\">\n<$view tiddler=<<currentTab>> field=\"description\"/>\n</div>\n</div>\n"
},
"TiddlyWiki Cloud": {
"title": "TiddlyWiki Cloud",
"caption": "~TiddlyWiki Cloud Connectors",
"created": "20171113135053055",
"delivery": "Web Service",
"description": "Online service for editing TiddlyWiki documents in Dropbox",
"method": "save",
"modified": "20180410115910048",
"tags": "Saving Android Chrome Firefox InternetExplorer iOS Linux Mac Opera PHP Safari Windows",
"type": "text/vnd.tiddlywiki",
"url": "https://twcloud.github.io/tw5-dropbox/",
"text": "Originally built by Jeremy Ruston and now maintained by Arlen Beiler, TiddlyWiki Cloud (formerly known as TiddlyWiki in the Sky for Dropbox) is an online service that lets you edit TiddlyWiki documents directly in your own Dropbox using just a browser.\n\nIt works with TiddlyWiki 5 and Classic.\n\nhttps://twcloud.github.io/\n"
},
"Documentation Macros": {
"title": "Documentation Macros",
"created": "20150110182600000",
"modified": "20150228082845000",
"tags": "[[Improving TiddlyWiki Documentation]]",
"text": "The following macros are used throughout ~TiddlyWiki's documentation. Their names start with a dot to keep them out of the way of names that a user might try experimenting with.\n\n!General\n\n|!Macro |!Used for |!Example |\n|.def |the defining instance of a term |<<.def widget>> |\n|.em |minor emphasis within a sentence |<<.em not>> |\n|.place |a placeholder for the user to fill in |<<.place tagname>> |\n|.strong |major emphasis within a tiddler |<<.strong Important!>> |\n|.word |a mention of an ordinary word or phrase |<<.word \"hello world\">> |\n\n!Advice\n\n|!Macro |!Used for |!Example |\n|^.tip |^hints and tips |<<.tip \"Turn your screen on, otherwise<br>you won't be able to see much.\">> |\n|^.warning |^warning advice |<<.warning \"Make a backup of your file<br>before you upgrade.\">> |\n\n!Blocks\n|!Macro |!Used for |\n|.preamble |an introductory sentence that stands apart from the rest of the tiddler |\n\n!Tiddlers and fields\n\n|!Macro |!Used for |!Example |\n|.tid |a tiddler title |<<.tid Example>> |\n|.tag |a tag |<<.tag Example>> |\n|.field |a field name |<<.field example>> |\n|.value |a field value |<<.value \"example value\">> |\n|.op |a filter operator |<<.op backlinks>> |\n|.var |a variable or macro name |<<.var currentTiddler>> |\n|.wid |a widget name |<<.wid list>> |\n|.attr |an attribute name |<<.attr filter>> |\n|.param |a macro parameter name |<<.param text>> |\n\n!Links\n\n|!Macro |!Used for |!Example |\n|.link |a link containing WikiText |<<.link \"^^an^^ ~~example~~\" Example>> |\n|.clink |a code link |<<.clink `<$list>` ListWidget>> |\n|.dlink |a link on a defining instance of a term |<<.dlink widget Widgets>> |\n|.dlink-ex |an external link on a defining instance of a term |<<.dlink-ex Example \"http://example.com/\">> |\n|.flink |a link to a field |<<.flink ListField>> |\n|.mlink |a link to a macro |<<.mlink qualify>> |\n|.mlink2 |a link to a macro, with specified target |<<.mlink2 foo \"Examples of Macros\">> |\n|.olink |a link to an operator |<<.olink prefix>> |\n|.olink2 |a link to an operator, with specified target |<<.olink2 foo prefix>> |\n|.vlink |a link to a variable |<<.vlink currentTiddler>> |\n|.vlink2 |a link to a variable, with specified target |<<.vlink2 foo \"Examples of Variables\">> |\n|.wlink |a link to a widget |<<.wlink ButtonWidget>> |\n|.wlink2 |a link to a widget, with specified text |<<.wlink2 foo ButtonWidget>> |\n\n!User interface\n\n|!Macro |!Used for |!Example |\n|.key |a key on the keyboard |<<.key Escape>> |\n|.keycombo |a key combination |<<.keycombo Ctrl Enter>> |\n\n!Tabs\n\n|!Macro |!Used for |!Example |\n|.sidebar-tab |the name of a sidebar tab |<<.sidebar-tab More>> |\n|.more-tab |the name of a subtab of the More tab |<<.more-tab Shadows>> |\n|.info-tab |the name of a tiddler info tab |<<.info-tab Fields>> |\n|.controlpanel-tab |the name of a Control Panel tab |<<.controlpanel-tab Settings>> |\n|.advancedsearch-tab |the name of an Advanced Search tab |<<.advancedsearch-tab Filter>> |\n|.toc-tab |name of the tw5.com TOC tab |<<.toc-tab>> |\n|.example-tab |an example tab name |<<.example-tab \"Notes\">> |\n\n!!Parameters for .sidebar-tab\n\n|Open |<<.sidebar-tab Open>> |\n|Recent |<<.sidebar-tab Recent>> |\n|Tools |<<.sidebar-tab Tools>> |\n|More |<<.sidebar-tab More>> |\n\n!!Parameters for .more-tab\n\n|All |<<.more-tab All>> |\n|Recent |<<.more-tab Recent>> |\n|Tags |<<.more-tab Tags>> |\n|Missing |<<.more-tab Missing>> |\n|Drafts |<<.more-tab Drafts>> |\n|Orphans |<<.more-tab Orphans>> |\n|Types |<<.more-tab Types>> |\n|System |<<.more-tab System>> |\n|Shadows |<<.more-tab Shadows>> |\n\n!!Parameters for .info-tab\n\n|Tools |<<.info-tab Tools>> |\n|References |<<.info-tab References>> |\n|Tagging |<<.info-tab Tagging>> |\n|List |<<.info-tab List>> |\n|Listed |<<.info-tab Listed>> |\n|Fields |<<.info-tab Fields>> |\n|Advanced |<<.info-tab Advanced>> |\n\n!!Parameters for .controlpanel-tab\n\n|Info |<<.controlpanel-tab Info>> |\n|Appearance |<<.controlpanel-tab Appearance>> |\n|Settings |<<.controlpanel-tab Settings>> |\n|Saving |<<.controlpanel-tab Saving>> |\n|Plugins |<<.controlpanel-tab Plugins>> |\n\n!!Parameters for .advancedsearch-tab\n\n|Standard |<<.advancedsearch-tab Standard>> |\n|System |<<.advancedsearch-tab System>> |\n|Shadows |<<.advancedsearch-tab Shadows>> |\n|Filter |<<.advancedsearch-tab Filter>> |\n\n!Buttons\n\n|!Macro |!Used for |!Example |\n|.button |a standard button name and icon |<<.button \"new-tiddler\">> |\n\n!!Parameters for .button\n\n!!!Tiddler toolbar\n\n|clone |<<.button \"clone\">> |\n|close |<<.button \"close\">> |\n|close-others |<<.button \"close-others\">> |\n|edit |<<.button \"edit\">> |\n|export-tiddler |<<.button \"export-tiddler\">> |\n|info |<<.button \"info\">> |\n|more-tiddler-actions |<<.button \"more-tiddler-actions\">> |\n|new-here |<<.button \"new-here\">> |\n|new-journal-here |<<.button \"new-journal-here\">> |\n|permalink |<<.button \"permalink\">> |\n\n!!!Edit-mode toolbar\n\n|cancel |<<.button \"cancel\">> |\n|delete |<<.button \"delete\">> |\n|save |<<.button \"save\">> |\n\n!!!Page toolbar\n\n|advanced-search |<<.button \"advanced-search\">> |\n|close-all |<<.button \"close-all\">> |\n|control-panel |<<.button \"control-panel\">> |\n|encryption |<<.button \"encryption\">> |\n|export-page |<<.button \"export-page\">> |\n|full-screen |<<.button \"full-screen\">> |\n|home |<<.button \"home\">> |\n|import |<<.button \"import\">> |\n|language |<<.button \"language\">> |\n|more-page-actions |<<.button \"more-page-actions\">> |\n|new-journal |<<.button \"new-journal\">> |\n|new-tiddler |<<.button \"new-tiddler\">> |\n|permaview |<<.button \"permaview\">> |\n|refresh |<<.button \"refresh\">> |\n|save-wiki |<<.button \"save-wiki\">> |\n|storyview |<<.button \"storyview\">> |\n|tag-manager |<<.button \"tag-manager\">> |\n|theme |<<.button \"theme\">> |\n"
},
"Documentation Style Guide": {
"title": "Documentation Style Guide",
"created": "20140904164608166",
"modified": "20150117152546000",
"tags": "[[Improving TiddlyWiki Documentation]]",
"type": "text/vnd.tiddlywiki",
"text": "The documentation for ~TiddlyWiki tries to follow a consistent editorial style. It has two main areas, each with its own tone and audience:\n\n* [[Instruction Tiddlers]]\n* [[Reference Tiddlers]]\n\nWe keep the two areas distinct. This avoids overwhelming relative newcomers, while still providing quick access to the information that expert users need.\n\nAdditional topics:\n\n* [[Tiddler Title Policy]]\n* [[Tiddler Structure]]\n* [[Spelling]]\n* [[Typography]]\n* [[Documentation Macros]]\n* [[Technical Prose Style]]\n"
},
"Instruction Tiddlers": {
"title": "Instruction Tiddlers",
"created": "20150110101500000",
"modified": "20150117152550000",
"tags": "[[Improving TiddlyWiki Documentation]]",
"text": "<<.def \"Instruction tiddlers\">> talk directly to the reader and guide them through a process. The reader is likely to be a beginner or an intermediate user.\n\nSuch tiddlers can be subcategorised as:\n\n;Welcome\n* What is ~TiddlyWiki and why should I care?\n* Demonstrations of key features and benefits\n* Frequently asked questions\n* Examples of ~TiddlyWiki in the field\n* Information about the project itself\n\n;Tutorial\n* An ordered presentation of material for beginners\n* Each tiddler introduces one new point or concept\n* Its main content contains very few links\n* A revealable <<.word \"Find out more\">> section at the end can offer related links\n\n;Exercise\n* Accompanying a tutorial tiddler\n* Solution revealed on demand\n\n;How-to\n* A list of numbered steps for performing a small specific task\n* Concise, with links to reference tiddlers where appropriate\n* Often has a preamble to clarify the nature of the task\n\n;Example\n* Accompanying a [[reference tiddler|Reference Tiddlers]]\n* Can contain explanations and similar commentary\n* Kept separate to keep the reference tiddler pure\n\nInstruction tiddlers talk directly to the reader as <<.word you>>. They can be reasonably chatty.\n\nBut they avoid excessively colloquial language, cultural or topical references and attempts at humour, as these can baffle or even offend the international readership. They also avoid potentially frustrating the reader with descriptions of features as <<.word convenient>> or <<.word easy>>.\n"
},
"Reference Tiddlers": {
"title": "Reference Tiddlers",
"created": "20141226192500000",
"modified": "20150117152552000",
"tags": "[[Improving TiddlyWiki Documentation]]",
"text": "<<.def \"Reference tiddlers\">> offer raw information in a comprehensive interlinked way. The reader is likely to be an intermediate or expert user.\n\nThere are several subcategories:\n\n;Concepts\n* With definitions, together forming a glossary\n\n;User manual\n* Presenting technical details of ~WikiText features\n* Subcategorised: messages, operators, widgets, etc\n\n;Developer manual\n* Presenting technical details of ~TiddlyWiki's internal architecture\n\nReference material is written in a terse, formal style that avoids referring to the reader, and instead focuses on how ~TiddlyWiki itself behaves. The passive voice is often suitable:\n\n* <<.word \"the template is specified as a tiddler\">> rather than <<.word \"specify the template as a tiddler\">>\n* <<.word \"the widget can be used for various purposes\">> rather than <<.word \"you can use the widget for various purposes\">>\n* But <<.word \"this widget has several possible uses\">> is better, because it is less convoluted and more succinct\n\nMost contracted verb forms are avoided in reference tiddlers. But those ending in <<.word \"n't\">> (<<.word \"aren't\">>, <<.word \"doesn't\">>, <<.word \"hasn't\">>, <<.word \"isn't\">>, etc) are acceptable, as they make it less easy to accidentally overlook the word <<.word not>>.\n"
},
"Spelling": {
"title": "Spelling",
"created": "20150110182900000",
"modified": "20150117152553000",
"tags": "[[Improving TiddlyWiki Documentation]]",
"text": "Because ~TiddlyWiki is of British origin, its English documentation uses [[British spelling in preference to US spelling|http://en.wikipedia.org/wiki/American_and_British_English_spelling_differences]].\n\nWords like <<.word customise>> are spelled <<.word -ise>>, not <<.word -ize>>. Words like <<.word colour>> will also be spelled using UK English unless they are being used for reserved words in code, such as in CSS or JavaScript.\n\nStandard technical acronyms are written in upper case, without dots: <<.word HTML>>, not <<.word html>> or <<.word H.T.M.L.>>\n\nAvoid arbitrarily abbreviating words and sentences. But the following abbreviations are acceptable:\n\n|!Abbreviation |!Meaning |!Notes |\n|e.g. |for example |with a dot after each letter |\n|i.e. |that is to say |with a dot after each letter |\n|etc |and so on |without a dot |\n"
},
"Technical Prose Style": {
"title": "Technical Prose Style",
"created": "20150110182900000",
"modified": "20150117152555000",
"tags": "[[Improving TiddlyWiki Documentation]]",
"text": "When writing an [[instruction tiddler|Instruction Tiddlers]], start by planning a route through the information you wish to present. This should be a simple, logical, direct progression of thoughts, with no backtracking or forward references. Use this approach even within individual sentences: always proceed from cause to effect, from the old or known to the new or unknown.\n\nKeep sentences short and simple. A clear technical sentence seldom contains more than one idea. It therefore avoids parenthetical information. Similarly, keep paragraph structure simple. A flat presentation is often easier to understand than a hierarchical one.\n\nIt is often possible to simplify a sentence without changing its meaning, merely by adjusting its vocabulary or grammatical structure. <<.word \"Execution of the macro is performed\">> just means <<.word \"The macro runs\">>. <<.word \"Your expectation might be...\">> just means <<.word \"You might expect...\">>.\n\nPrefer the active voice by default: <<.word \"Jane creates a tiddler\">> rather than <<.word \"a tiddler is created by Jane\">>. The passive voice can be useful if you want the reader to focus on the action itself or its result: <<.word \"a tiddler is created\">>. But it can often be clearer to proceed from cause to effect and say <<.word \"this creates a tiddler\">> in the active voice.\n\nDocumentation often presents two items that are parallel either by similarity or by difference. The reader will more easily detect such a pattern if you use the same sentence or phrase structure for both. But this must be balanced with the need to avoid monotony.\n\nPrefer precise instructions over woolly descriptions. If something has a name, use it. If something lacks a name, give it a tiddler.\n"
},
"Tiddler Structure": {
"title": "Tiddler Structure",
"created": "20150110183300000",
"modified": "20150117152556000",
"tags": "[[Improving TiddlyWiki Documentation]]",
"text": "In accordance with the [[Philosophy of Tiddlers]], documentation tiddlers are typically short and interlinked.\n\nWhen a tiddler seems as if it needs to contain subheadings, this is often a sign that it should in fact be split into several tiddlers. But it is reasonable for a [[reference tiddler|Reference Tiddlers]] to consist of an untitled introductory section followed by a titled section of details.\n\nConsistency of terminology is essential if the reader is not to become confused. Consistent typography and punctuation lend a professional quality to the documentation. Macros can improve the consistency and maintainability of the text.\n\nUse numbered lists for step-by-step instructions, and bullet points for lists whose order is arbitrary. Use a definition list in preference to a bulleted list if each bulleted item would begin with a term and a colon. If at all possible, avoid burdening the reader with a nested list.\n\nUse a table when information naturally falls into three or more columns, and also for lists of parameters, attributes, etc in [[reference tiddlers|Reference Tiddlers]].\n\nThe documentation describes the current reality of ~TiddlyWiki. Avoid discussing future aspirations.\n"
},
"Tiddler Title Policy": {
"title": "Tiddler Title Policy",
"created": "20150110183300000",
"modified": "20150118183633000",
"tags": "[[Improving TiddlyWiki Documentation]]",
"text": "Many documentation tiddlers, especially the [[reference ones|Reference Tiddlers]], are concerned with a single concept. Their titles should be succinct noun phrases like <<.tid \"List Widget\">> or <<.tid \"Tiddler Fields\">>.\n\nEach of the main words of such a title begins with a capital letter. Minor words such as <<.word and>>, <<.word or>>, <<.word the>>, <<.word to>> and <<.word with>> do not.\n\nTags also follow this pattern.\n\nTitles of this kind are plural if they denote a category of items, e.g. <<.tid \"Keyboard Shortcuts\">> or <<.tid \"Tiddler Fields\">>. Such titles are used to tag more specific tiddlers within the category.\n\nWhere a concept is an item rather than a category, its tiddler has a singular title, e.g. <<.tid \"List Widget\">>, <<.tid \"tag Operator\">>.\n\nStart a title with its most distinctive part. For instance, the tiddlers documenting the filter operators have titles like <<.tid \"addprefix Operator\">>. This helps the reader scan a list of links to find a particular tiddler.\n\nAvoid starting a title with the word <<.word the>>.\n\nIn the past, many tiddlers had CamelCase titles. This is gradually being phased out of the documentation to improve readability. ~CamelCase titles should no longer be used, even for tags, except in cases like <<.tid ~JavaScript>> where that is the standard spelling.\n\n[[Instruction tiddlers|Instruction Tiddlers]] often have longer titles that can be more complicated than just a noun phrase, e.g. <<.tid \"Ten reasons to switch to ~TiddlyWiki\">>. These titles use sentence case, i.e. only the first word (and any proper names) starts with a capital letter.\n\nHow-to tiddlers have titles that begin with <<.word \"How to\">>, e.g. <<.tid \"How to edit a tiddler\">>. Avoid titles like <<.tid \"Editing tiddlers\">>, because a less fluent English speaker could misunderstand that as the name of a category of tiddlers.\n"
},
"Typography": {
"title": "Typography",
"created": "20141226192500000",
"modified": "20150117152559000",
"text": "Use the [[documentation macros|Documentation Macros]] to keep the text maintainable in the face of change.\n\nBe wary of arbitrarily applying raw bold or italic markup in a sentence. If there's a suitable macro, use that instead. If there isn't a suitable macro, write one or request one.\n\nUse simple backticks (<code>`...`</code>) for fragments of WikiText, but not for the names of things like fields and widgets. These have their own macros.\n\nTo keep things clean and simple, quotation marks and apostrophes should be straight `'`, not curly `’`, and the ellipsis should be three separate dots `...` rather than `…`.\n\nUse `\"` as the primary quotation mark, reserving `'` for the rare case of a nested quotation.\n\nAvoid using a single hyphen `-` as sentence punctuation. Instead, use a double hyphen -- which ~TiddlyWiki renders as an en-dash -- with a space on either side.\n\nItems in lists and tables should only end with a full stop (period in US English) if they are complete sentences. They should have no trailing punctuation otherwise.\n\nIt is very rarely necessary to use an exclamation mark in professional documentation.\n"
},
"$:/SplashScreen": {
"title": "$:/SplashScreen",
"created": "20180927082601825",
"modified": "20180927083036494",
"tags": "$:/tags/RawMarkupWikified/TopBody",
"type": "text/vnd.tiddlywiki",
"text": "\\import [[$:/core/ui/PageMacros]] [all[shadows+tiddlers]tag[$:/tags/Macro]!has[draft.of]]\n\\rules only filteredtranscludeinline transcludeinline macrocallinline\n<div class=\"tc-remove-when-wiki-loaded\">\n<style scoped>\n\n.tc-splash-text {\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\";\n font-size: 16px;\n text-rendering: optimizeLegibility;\n -webkit-font-smoothing: antialiased;\n\tmargin: 20px auto 0;\n\twidth: 200px;\n\ttext-align: center;\n\tcolor: <<colour foreground>>;\n\tfill: <<colour foreground>>;\n}\n\n.tc-splash-text img {\n\twidth: 150px;\n\t<<box-shadow \"2px 2px 10px rgba(0, 0, 0, 0.5)\">>\n}\n\nhtml body.tc-body {\n\tbackground: <<colour page-background>>;\n}\n\n/*\nSpinner from https://github.com/tobiasahlin/SpinKit/ by Tobias Ahlin\n\nThe MIT License (MIT)\n\nCopyright (c) 2015 Tobias Ahlin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n*/\n\n.tc-splash-spinner {\n\tmargin: 20px auto 0;\n\twidth: 70px;\n\ttext-align: center;\n}\n\n.tc-splash-spinner > div {\n\twidth: 18px;\n\theight: 18px;\n\tborder-radius: 100%;\n\tdisplay: inline-block;\n\t-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;\n\tanimation: sk-bouncedelay 1.4s infinite ease-in-out both;\n\tbackground-color: #f88;\n}\n\n.tc-splash-spinner .tc-splash-bounce-1 {\n\t-webkit-animation-delay: -0.32s;\n\tanimation-delay: -0.32s;\n\tbackground-color: #8f8;\n}\n\n.tc-splash-spinner .tc-splash-bounce-2 {\n\t-webkit-animation-delay: -0.16s;\n\tanimation-delay: -0.16s;\n\tbackground-color: #88f;\n}\n\n@-webkit-keyframes sk-bouncedelay {\n\t0%, 80%, 100% { -webkit-transform: scale(0) }\n\t40% { -webkit-transform: scale(1.0) }\n}\n\n@keyframes sk-bouncedelay {\n\t0%, 80%, 100% { \n\t-webkit-transform: scale(0);\n\ttransform: scale(0);\n\t} 40% { \n\t-webkit-transform: scale(1.0);\n\ttransform: scale(1.0);\n\t}\n}\n</style>\n\n<div class=\"tc-splash-spinner\">\n <div class=\"tc-splash-bounce-1\"></div>\n <div class=\"tc-splash-bounce-2\"></div>\n <div class=\"tc-splash-bounce-3\"></div>\n</div>\n\n<div class=\"tc-splash-text\">\nPlease wait while {{$:/SiteTitle}} is loading\n</div>\n\n<!-- Demonstrating how to embed a bitmap graphic --> \n<div class=\"tc-splash-text\">\n<img src=\"data:image/jpeg;base64,{{New Release Banner||$:/core/templates/plain-text-tiddler}}\" width=\"100\"/>\n</div>\n\n<!-- Demonstrating how to embed a wikitext SVG graphic --> \n<div class=\"tc-splash-text\">\n{{$:/core/icon||$:/core/templates/plain-text-tiddler}}\n</div>\n\n</div>\n"
},
"$:/ContributionBanner": {
"title": "$:/ContributionBanner",
"tags": "$:/tags/EditTemplate",
"list-after": "$:/core/ui/EditTemplate/title",
"text": "\\define base-github()\nhttps://github.com/Jermolene/TiddlyWiki5/edit/tiddlywiki-com/editions/tw5.com/tiddlers/\n\\end\n\n<$set name=\"draft-of\" value={{{ [<currentTiddler>get[draft.of]] }}}>\n<$list filter=\"[[$:/config/OriginalTiddlerPaths]getindex<draft-of>]\" variable=\"target\" >\n<div class=\"tc-improvement-banner\">\n{{$:/core/images/star-filled}} Can you help us improve this documentation? [[Find out how|Improving TiddlyWiki Documentation]] to\n<a href={{{ [<target>addprefix<base-github>] }}} class=\"tc-tiddlylink-external\" target=\"_blank\" rel=\"noopener noreferrer\">edit this tiddler on ~GitHub</a>\n</div>\n</$list>\n</$set>\n"
},
"$:/DefaultTiddlers": {
"title": "$:/DefaultTiddlers",
"created": "20131127215321439",
"modified": "20140912135951542",
"type": "text/vnd.tiddlywiki",
"text": "HelloThere\nGettingStarted\nCommunity\n"
},
"$:/state/tab/sidebar--1835078512": {
"title": "$:/state/tab/sidebar--1835078512",
"text": "TableOfContents"
},
"$:/deprecated": {
"title": "$:/deprecated",
"created": "20170126143833588",
"modified": "201804111739",
"type": "text/vnd.tiddlywiki",
"text": "<<<\nIn several fields, deprecation is the discouragement of use of some feature, design or practice; typically because it has been superseded or is no longer considered safe – but without completely removing it or prohibiting its use.\n<<< [[wikipedia|https://en.wikipedia.org/wiki/Deprecation]]\n"
},
"Deprecated - What does it mean": {
"title": "Deprecated - What does it mean",
"created": "20170126142116898",
"modified": "201804111739",
"type": "text/vnd.tiddlywiki",
"text": "First of all: ''Keep calm!''\n\n{{$:/deprecated}}\n\nFor ~TiddlyWiki it means, that you should not use this mechanism for new content anymore! ''AND you should update your existing content''!\n\nDeprecated features have a marker. see: [[Custom styles by tag]]\n\n''Tiddlers tagged `$:/deprecated`''\n\n><<list-links \"[tag[$:/deprecated]]\">>"
},
"$:/SiteSubtitle": {
"title": "$:/SiteSubtitle",
"text": "a non-linear personal web notebook"
},
"$:/SiteTitle": {
"title": "$:/SiteTitle",
"created": "20131211131022562",
"modified": "20131211131023829",
"type": "text/vnd.tiddlywiki",
"text": "TiddlyWiki"
},
"$:/editions/tw5.com/TiddlerInfo/Sources": {
"title": "$:/editions/tw5.com/TiddlerInfo/Sources",
"tags": "$:/tags/TiddlerInfo",
"caption": "Sources",
"text": "\\define static-link-base()\nhttps://tiddlywiki.com/static/$(title)$.html\n\\end\n\n\\define make-static-link()\n<$set name=\"title\" filter=\"[<currentTiddler>encodeuricomponent[]encodeuricomponent[]]\" select=\"0\">\n<a href=<<static-link-base>> class=\"tc-tiddlylink-external\" target=\"_blank\" rel=\"noopener noreferrer\"><$text text=<<static-link-base>>/></a>\n</$set>\n\\end\n\n\\define github-link-base()\nhttps://github.com/Jermolene/TiddlyWiki5/blob/tiddlywiki-com/editions/tw5.com/tiddlers/$(title)$\n\\end\n\n\\define make-github-link()\n<$set name=\"title\" value={{$:/config/OriginalTiddlerPaths##$(currentTiddler)$}}>\n<$set name=\"title\" filter=\"[<title>encodeuricomponent[]]\" select=\"0\">\n<a href=<<github-link-base>> class=\"tc-tiddlylink-external\" target=\"_blank\" rel=\"noopener noreferrer\"><$text text=<<github-link-base>>/></a>\n</$set>\n</$set>\n\\end\n\n<$list filter=\"[all[current]!is[system]!is[shadow]]\">\n\nA static HTML representation of this tiddler is available at the URL:\n\n* <<make-static-link>>\n\nHelp us to improve the documentation by sending a ~GitHub pull request for this tiddler:\n\n* <<make-github-link>>\n\n</$list>\n"
},
"$:/StaticBanner": {
"title": "$:/StaticBanner",
"text": "<div class=\"tc-static-alert\"><div class=\"tc-static-alert-inner\">This page is part of a static HTML representation of the ~TiddlyWiki at https://tiddlywiki.com/</div></div>\n"
},
"$:/editions/tw5.com/doc-macros": {
"title": "$:/editions/tw5.com/doc-macros",
"created": "20150117152607000",
"modified": "201804111739",
"tags": "$:/tags/Macro",
"type": "text/vnd.tiddlywiki",
"text": "\\define .concat(1,2,3,4,5) $1$$2$$3$$4$$5$\n\n\\define .def(_) <dfn class=\"doc-def\">$_$</dfn>\n\\define .em(_) <em class=\"doc-em\">$_$</em>\n\\define .strong(_) <strong class=\"doc-strong\">$_$</strong>\n\\define .place(_) <code class=\"doc-place\">$_$</code>\n\\define .word(_) \"$_$\"\n\n\\define .preamble(_) :.doc-preamble $_$\n\\define .note(_)\n@@.doc-note\n;Note\n: $_$\n@@\n\\end\n\n\\define .tid(_) <code class=\"doc-tiddler\">$_$</code>\n\\define .tag(_) <code class=\"doc-tag\">$_$</code>\n\\define .field(_) <code class=\"doc-field\">$_$</code>\n\\define .value(_) <code class=\"doc-value\">$_$</code>\n\\define .op(_) <code class=\"doc-operator\">$_$</code>\n\\define .var(_) <code class=\"doc-var\">$_$</code>\n\\define .wid(_) <code class=\"doc-widget\">$$_$</code>\n\\define .attr(_) <code class=\"doc-attr\">$_$</code>\n\\define .param(_) <code class=\"doc-param\">$_$</code>\n\n\\define .mtitle(_) $_$ Macro\n\\define .otitle(_) $_$ Operator\n\\define .vtitle(_) $_$ Variable\n\n\\define .link(_,to) <$link to=\"$to$\">$_$</$link>\n\\define .clink(_,to) <span class=\"doc-clink\"><<.link \"\"\"$_$\"\"\" \"$to$\">></span>\n\\define .dlink(_,to) <$macrocall $name=\".link\" _=<<.def \"$_$\">> to=\"$to$\">/>\n\\define .dlink-ex(_,to) <a href=\"$to$\" class=\"tc-tiddlylink-external\" target=\"_blank\" rel=\"noopener noreferrer\"><<.def \"$_$\">></a>\n\\define .flink(to) <$macrocall $name=\".link\" _=<<.field {{$to$!!caption}}>> to=\"$to$\"/>\n\\define .mlink(_,to) <$macrocall $name=\".link\" _=<<.var \"$_$\">> to=<<.mtitle \"$_$\">>/>\n\\define .mlink2(_,to) <$macrocall $name=\".link\" _=<<.var \"$_$\">> to=\"$to$\"/>\n\\define .olink(_) <$macrocall $name=\".link\" _=<<.op \"$_$\">> to=<<.otitle \"$_$\">>/>\n\\define .olink2(_,to) <$macrocall $name=\".link\" _=<<.op \"$_$\">> to=<<.otitle \"$to$\">>/>\n\\define .vlink(_,to) <$macrocall $name=\".link\" _=<<.var \"$_$\">> to=<<.vtitle \"$_$\">>/>\n\\define .vlink2(_,to) <$macrocall $name=\".link\" _=<<.var \"$_$\">> to=\"$to$\"/>\n\\define .wlink(to) <$macrocall $name=\".link\" _=<<.wid {{$to$!!caption}}>> to=\"$to$\"/>\n\\define .wlink2(_,to) <$macrocall $name=\".link\" _=\"$_$\" to=\"$to$\"/>\n\n\\define .key(_) <span class=\"doc-key\">$_$</span>\n\\define .combokey(_) <$macrocall $name=\".if\" cond=\"$_$\" then=<<.key '$_$'>>/>\n\\define .keycombo(1,2,3,4) <<.combokey \"$1$\">><<.if \"$2$\" +>><<.combokey \"$2$\">><<.if \"$3$\" +>><<.combokey \"$3$\">><<.if \"$4$\" +>><<.combokey \"$4$\">>\n\n\\define .tab(_) <span class=\"doc-tab\">{{$_$!!caption}}</span>\n\\define .sidebar-tab(_) <<.tab \"$:/core/ui/SideBar/$_$\">>\n\\define .more-tab(_) <<.tab \"$:/core/ui/MoreSideBar/$_$\">>\n\\define .info-tab(_) <<.tab \"$:/core/ui/TiddlerInfo/$_$\">>\n\\define .controlpanel-tab(_) <<.tab \"$:/core/ui/ControlPanel/$_$\">>\n\\define .advancedsearch-tab(_) <<.tab \"$:/core/ui/AdvancedSearch/$_$\">>\n\\define .toc-tab() <<.tab \"TableOfContents\">>\n\\define .example-tab(_) <span class=\"doc-tab\">$_$</span>\n\n\\define .button(_) <span class=\"doc-button\">{{$:/core/ui/Buttons/$_$!!caption}}</span>\n\n\\define .tip(_) <div class=\"doc-icon-block\"><div class=\"doc-block-icon\">{{$:/core/images/tip}}</div> $_$</div>\n\\define .warning(_) <div class=\"doc-icon-block\"><div class=\"doc-block-icon\">{{$:/core/images/warning}}</div> $_$</div>\n\n\\define .state-prefix() $:/state/editions/tw5.com/\n\n\\define .lorem()\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\n\\end\n\n\\define .toc-lorem()\nThis is an example tiddler. See [[Table-of-Contents Macros (Examples)]].\n\n<<.lorem>>\n\\end\n\n\\define .example(n,eg,egvar:NO-SUCH-VAR)\n<div class=\"doc-example\">\n<$reveal default=\"$egvar$\" type=\"match\" text=\"NO-SUCH-VAR\">\n\t<$macrocall $name=\"copy-to-clipboard-above-right\" src=\"\"\"$eg$\"\"\"/>\n\t<$codeblock code=\"\"\"$eg$\"\"\"/>\n</$reveal>\n<$reveal default=\"$egvar$\" type=\"nomatch\" text=\"NO-SUCH-VAR\">\n\t<!-- allow an example to contain \"\"\" -->\n\t<$macrocall $name=\"copy-to-clipboard-above-right\" src=<<$egvar$>>/>\n\t<$codeblock code=<<$egvar$>>/>\n</$reveal>\n<$list filter=\"[title<.state-prefix>addsuffix{!!title}addsuffix[/]addsuffix[$n$]]\" variable=\".state\">\n<$reveal state=<<.state>> type=\"nomatch\" text=\"show\">\n\t<dl>\n\t<dd><$button set=<<.state>> setTo=\"show\">Try it</$button></dd>\n\t</dl>\n</$reveal>\n<$reveal state=<<.state>> type=\"match\" text=\"show\">\n\t<dl>\n\t<dd><$button set=<<.state>> setTo=\"\">Hide</$button></dd>\n\t</dl>\n\t<blockquote class=\"doc-example-result\">\n\t<$reveal default=\"$egvar$\" type=\"match\" text=\"NO-SUCH-VAR\">\n\t\t$eg$\n\t</$reveal>\n\t<$reveal default=\"$egvar$\" type=\"nomatch\" text=\"NO-SUCH-VAR\">\n\t\t<<$egvar$>>\n\t</$reveal>\n\t</blockquote>\n</$reveal>\n</$list>\n\\end\n\n<pre><$view field=\"text\"/></pre>"
},
"$:/editions/tw5.com/doc-styles": {
"title": "$:/editions/tw5.com/doc-styles",
"created": "20150117152612000",
"modified": "201804111739",
"tags": "$:/tags/Stylesheet",
"type": "text/vnd.tiddlywiki",
"text": ".doc-def {\n\tfont-style: normal;\n\tfont-weight: bold;\n}\n\n.doc-em {\n\tfont-style: italic;\n\tfont-variant: small-caps;\n\ttext-decoration: none;\n}\n\n.doc-strong {\n\tcolor: <<colour alert-highlight>>;\n\tfont-style: normal;\n\tfont-weight: bold;\n}\n\n.doc-foreign {\n\tfont-style: italic;\n}\n\n.doc-place {\n\tbackground-color: <<color background>>;\n\tborder: none;\n\tcolor: <<color very-muted-foreground>>;\n\tfont-style: normal;\n\tfont-weight: bold;\n}\n\n.doc-button,\n.doc-tab,\n.doc-tag,\n.doc-tiddler,\n.doc-field,\n.doc-value,\n.doc-operator,\n.doc-var,\n.doc-widget,\n.doc-attr,\n.doc-param {\n\tbackground-color: <<color background>>;\n\tborder: none;\n\tcolor: <<color very-muted-foreground>>;\n\tfont-weight: bold;\n\tpadding: 0;\n}\n\na .doc-place,\na .doc-button,\na .doc-tab,\na .doc-tag,\na .doc-tiddler,\na .doc-field,\na .doc-value,\na .doc-operator,\na .doc-var,\na .doc-widget,\na .doc-attr {\n\tcolor: <<color tiddler-link-foreground>>;\n}\n\n.doc-button svg {\n\theight: 1em;\n}\n\ntd svg {\n\theight: 1em;\n}\n\n.doc-key {\n\tcolor: <<color very-muted-foreground>>;\n\tfont-weight: bold;\n}\n\n.doc-clink code {\n\tcolor: <<colour tiddler-link-foreground>>;\n}\n\n.doc-preamble {\n\tborder: 2px solid <<colour code-border>>;\n\tcolor: <<colour very-muted-foreground>>;\n\tfont-size: 90%;\n\tmargin-left: 0;\n\tpadding: 0.5em 0.7em;\n}\n\n.doc-note dt {\n\tcolor: <<colour very-muted-foreground>>;\n}\n.doc-note dd {\n\tborder-left: 2px solid <<colour code-border>>;\n\tpadding-left: 0.6em;\n}\n\n.doc-example {\n\tmargin: 1em 0;\n\tpadding: 0.8em 0;\n}\n.doc-example:hover {\n\tbackground-color: <<colour code-background>>;\n}\n.doc-example ul {\n\tmargin-bottom: 0;\n\tpadding-bottom: 0;\n\tmargin-top: 0.2em;\n}\n.doc-example pre:first-child {\n\tmargin-top: 0;\n}\n.doc-example-result {\n\tborder-left: 5px solid <<colour blockquote-bar>>;\n\tborder-right: 5px solid <<colour blockquote-bar>>;\n\tmargin-left: 0;\n\tmargin-right: 0;\n\tpadding: 0 10px;\n}\n.doc-example-result ul {\n\tmargin-left: 0;\n\tpadding-left: 10px;\n}\n.doc-example-result ol {\n\tmargin-left: 0;\n\tpadding-left: 20px;\n}\n\n.doc-table th, .doc-table tr {\n\tvertical-align: top;\n}\n.doc-table th a {\n\tfont-weight: bold;\n}\n\ntr.doc-table-subheading {\n\theight: 2em;\n\tvertical-align: middle;\n}\n\n.doc-table.before-tiddler-body {\n\tmargin-top: 2em;\n}\n\n.doc-icon-block {\n\tborder-left: 2px solid <<colour code-border>>;\n\tmargin-left: 3em;\n\tpadding-left: 0.6em;\n\tposition: relative;\n}\n.doc-block-icon {\n\tposition: absolute;\n\tleft: -3em;\n\ttop: 0.2em;\n}\n.doc-block-icon .tc-image-tip {\n\tfill: <<colour primary>>;\n}\n.doc-block-icon .tc-image-warning {\n\tfill: <<colour alert-highlight>>;\n}\n\n.doc-from-version {\n display: inline-block;\n border-radius: 1em;\n\tbackground: <<colour tiddler-controls-foreground>>;\n\tcolor: <<colour background>>;\n\tfill: <<colour background>>;\n padding: 0 0.4em;\n font-size: 0.7em;\n text-transform: uppercase;\n font-weight: bold;\n line-height: 1.5;\n vertical-align: text-bottom;\n}\n\n.doc-deprecated-version {\n display: inline-block;\n border-radius: 1em;\n\tbackground: red;\n\tcolor: <<colour background>>;\n\tfill: <<colour background>>;\n padding: 0 0.4em;\n font-size: 0.7em;\n text-transform: uppercase;\n font-weight: bold;\n line-height: 1.5;\n vertical-align: text-bottom;\n}\n\n.doc-deprecated-version svg,\n.doc-from-version svg {\n\twidth: 1em;\n\theight: 1em;\n vertical-align: text-bottom;\n}"
},
"$:/editions/tw5.com/snippets/download-empty-button": {
"title": "$:/editions/tw5.com/snippets/download-empty-button",
"text": "<$button class=\"tc-btn-big-green\">\n<$action-sendmessage $message=\"tm-download-file\" $param=\"$:/editions/tw5.com/download-empty\" filename=\"empty.html\"/>\nDownload Empty {{$:/core/images/save-button}}\n</$button>"
},
"$:/editions/tw5.com/download-empty": {
"title": "$:/editions/tw5.com/download-empty",
"text": "\\define saveTiddlerFilter()\n[[$:/core]] [[$:/isEncrypted]] [[$:/themes/tiddlywiki/snowwhite]] [[$:/themes/tiddlywiki/vanilla]] -[[$:/boot/boot.css]] -[type[application/javascript]library[yes]] -[[$:/boot/boot.js]] -[[$:/boot/bootprefix.js]] +[sort[title]]\n\\end\n\\define savingEmpty()\nyes\n\\end\n{{$:/core/templates/tiddlywiki5.html}}\n"
},
"$:/edition/tw5.com/dropbox-url.js": {
"title": "$:/edition/tw5.com/dropbox-url.js",
"text": "/*\\\ntitle: $:/edition/tw5.com/dropbox-url.js\ntype: application/javascript\ntags: $:/tags/Macro\nmodule-type: macro\n\nImplements the Dropbox URL converter macro.\n\n```\n<$macrocall $name=\"dropbox-url\" url={{$:/temp/dropbox}}/>\n```\n\n\\*/\n\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.name = \"dropbox-url\";\n\nexports.params = [\n\t{name: \"url\", default: \"https://www.dropbox.com/s/<gobbledegook>/mywiki.html\"}\n];\n\nexports.run = function(url) {\n\turl = url.replace(\"www.dropbox.com\",\"dl.dropboxusercontent.com\");\n\treturn \"`\" + url + \"` <small>([[open|\" + url + \"]])</small>\";\n};\n\n})();\n",
"type": "application/javascript",
"tags": "$:/tags/Macro",
"module-type": "macro"
},
"$:/editions/tw5.com/if-macro.js": {
"title": "$:/editions/tw5.com/if-macro.js",
"text": "/*\\\ntitle: $:/editions/tw5.com/if-macro.js\ntype: application/javascript\nmodule-type: macro\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nexports.name = \".if\";\n\nexports.params = [\n\t{ name: \"cond\" },\n\t{ name: \"then\" },\n\t{ name: \"else\" }\n];\n\nexports.run = function(cond, then, elze) {\n\tthen = then || \"\";\n\telze = elze || \"\";\n\treturn cond ? then : elze;\n};\n\n})();\n",
"type": "application/javascript",
"module-type": "macro"
},
"$:/language": {
"title": "$:/language",
"text": "$:/languages/en-GB"
},
"$:/editions/tw5.com/operator-macros": {
"title": "$:/editions/tw5.com/operator-macros",
"created": "20150117152607000",
"modified": "20150228114306000",
"tags": "$:/tags/Macro",
"text": "\\define .operator-examples(op,text:\"Examples\") <$link to=\"$op$ Operator (Examples)\">$text$</$link>\n\n\\define .operator-example(n,eg,ie)\n<div class=\"doc-example\">\n`$eg$`\n<$macrocall $name=\".if\" cond=\"\"\"$ie$\"\"\" then=\"\"\"<dd>→ $ie$</dd>\"\"\"/>\n<$list filter=\"[title<.state-prefix>addsuffix{!!title}addsuffix[/]addsuffix[$n$]]\" variable=\".state\">\n<$reveal state=<<.state>> type=\"nomatch\" text=\"show\">\n\t<dl>\n\t<dd><$button set=<<.state>> setTo=\"show\">Try it</$button></dd>\n\t</dl>\n</$reveal>\n<$reveal state=<<.state>> type=\"match\" text=\"show\">\n\t<dl>\n\t<dd><$button set=<<.state>> setTo=\"\">Hide</$button></dd>\n\t</dl>\n\t<blockquote class=\"doc-example-result\">\n\t<ul><$list filter=\"\"\"$eg$\"\"\" emptyMessage=\"(empty)\">\n\t<li><$link><$view field=\"title\"/></$link></li>\n\t</$list></ul>\n\t</blockquote>\n</$reveal>\n</$list>\n\\end\n\n\\define .inline-operator-example(eg)\n<code><$text text=<<__eg__>>/></code> evaluates to <$list filter=<<__eg__>> emptyMessage=\"(empty)\"> <code><$text text=<<currentTiddler>>/></code> </$list>\n\\end\n\n\\define .this-is-operator-example() This example tiddler is used to illustrate some of the [[Filter Operators]].\n\\define .using-days-of-week() These examples make use of the [[Days of the Week]] tiddler.\n\\define .s-matching-is-case-sensitive() In looking for matches for <<.place S>>, capital and lowercase letters are treated as different.\n\n\\define .node-only-operator()\n\n<$macrocall $name=\".note\" _=\"This operator is <<.em not>> available when ~TiddlyWiki is running in a web browser.\"/>\n\n\\end\n"
},
"$:/editions/tw5.com/operator-template": {
"title": "$:/editions/tw5.com/operator-template",
"created": "20150203173506000",
"modified": "20150203181725000",
"tags": "$:/tags/ViewTemplate",
"list-before": "$:/core/ui/ViewTemplate/body",
"text": "\\define .op-place()\n<$macrocall $name=\".if\"\n cond=\"\"\"$(op-name)$\"\"\"\n then=\"<<.place '$(op-name)$'>> = \"\n else=\"\"/>\n\\end\n\n\\define .op-row()\n<$macrocall $name=\".if\"\n cond=\"\"\"$(op-body)$\"\"\"\n then=\"\"\"<tr><th align=\"left\">$(op-head)$</th><td><<.op-place>>$(op-body)$</td></tr>\"\"\"\n else=\"\"/>\n\\end\n\n<$set name=\"op-head\" value=\"\">\n<$set name=\"op-body\" value=\"\">\n<$set name=\"op-name\" value=\"\">\n<$list filter=\"[all[current]tag[Filter Operators]]\">\n<table class=\"doc-table before-tiddler-body\">\n<!-->\n<$set name=\"op-head\" value=\"purpose\">\n<$set name=\"op-body\" value={{!!op-purpose}}>\n<<.op-row>>\n</$set>\n</$set>\n<!-->\n<$set name=\"op-head\" value=\"[[input|Filter Syntax]]\">\n<$set name=\"op-body\" value={{!!op-input}}>\n<<.op-row>>\n</$set>\n</$set>\n<!-->\n<$set name=\"op-head\" value=\"`!` input\">\n<$set name=\"op-body\" value={{!!op-neg-input}}>\n<<.op-row>>\n</$set>\n</$set>\n<!-->\n<$set name=\"op-head\" value=\"[[suffix|Filter Step]]\">\n<$set name=\"op-body\" value={{!!op-suffix}}>\n<$set name=\"op-name\" value={{!!op-suffix-name}}>\n<<.op-row>>\n</$set>\n</$set>\n</$set>\n<!-->\n<$set name=\"op-head\" value=\"[[parameter|Filter Parameter]]\">\n<$set name=\"op-body\" value={{!!op-parameter}}>\n<$set name=\"op-name\" value={{!!op-parameter-name}}>\n<<.op-row>>\n</$set>\n</$set>\n</$set>\n<!-->\n<$set name=\"op-head\" value=\"output\">\n<$set name=\"op-body\" value={{!!op-output}}>\n<<.op-row>>\n</$set>\n</$set>\n<!-->\n<$set name=\"op-head\" value=\"`!` output\">\n<$set name=\"op-body\" value={{!!op-neg-output}}>\n<<.op-row>>\n</$set>\n</$set>\n<!-->\n</table>\n<$list filter=\"[all[current]has[from-version]]\" variable=\"listItem\">\n<$macrocall $name=\".from-version\" version={{!!from-version}}/>\n</$list>\n</$list>\n</$set>\n</$set>\n</$set>\n"
},
"$:/themes/tiddlywiki/vanilla/options/sidebarlayout": {
"title": "$:/themes/tiddlywiki/vanilla/options/sidebarlayout",
"text": "fluid-fixed"
},
"$:/core/templates/static.content": {
"title": "$:/core/templates/static.content",
"hack-to-give-us-something-to-compare-against": "yes",
"text": "\\define tv-wikilink-template() https://tiddlywiki.com/static/$uri_doubleencoded$.html\n\n<!-- For Google, and people without JavaScript-->\n<$reveal state=\"!!hack-to-give-us-something-to-compare-against\" type=\"nomatch\" text=<<savingEmpty>>>\n\nIt looks like this browser doesn't run JavaScript. You can use one of these static HTML versions to browse the same content:\n\n* https://tiddlywiki.com/static.html - browse individual tiddlers as separate pages\n* https://tiddlywiki.com/alltiddlers.html#HelloThere - single file containing all tiddlers\n\n---\n\n{{HelloThere}}\n\n{{TiddlyWiki}}\n\n{{Features}}\n\n{{Community}}\n\n{{HelpingTiddlyWiki}}\n\n</$reveal>\n"
},
"$:/editions/tw5.com/style-guide-macros": {
"title": "$:/editions/tw5.com/style-guide-macros",
"tags": "$:/tags/Macro",
"text": "\\define style-guide(good,bad)\n<table>\n<tbody>\n<tr>\n<th>Good</th>\n<td>``$good$``</td>\n</tr>\n<tr>\n<th>Bad</th>\n<td>``$bad$``</td>\n</tr>\n</tbody>\n</table>\n\\end\n"
},
"$:/theme": {
"title": "$:/theme",
"text": "$:/themes/tiddlywiki/snowwhite"
},
"$:/_tw5.com-styles": {
"title": "$:/_tw5.com-styles",
"tags": "$:/tags/Stylesheet",
"text": ".tc-double-spaced-list li {\n\tpadding-bottom: .5em;\n\tpadding-top: .5em;\n}\n\n.tc-link-info-item {\n border: 1px solid #ebefcd;\n padding: 5px 10px;\n margin-bottom: 10px;\n background: #fcfdf3;\n font-size: 0.8em;\n line-height: 1.2;\n}\n\n.tc-link-info-item h1 {\n\tfont-weight: 500;\n\tfont-size: 16px;\t\n}\n\n.tc-scrollable-demo {\n\tborder: 1px solid <<colour message-border>>;\n\tbackground-color: <<colour message-background>>;\n\tpadding: 1em;\n\theight: 400px;\n\tposition: relative;\n\toverflow: auto;\n}\n\n.tc-improvement-banner {\n\tfont-size: 0.7em;\n\tbackground: #fcc;\n\tpadding-left: 5px;\n\tmargin-top: 6px;\n\tmargin-bottom: 12px;\n\t<<box-shadow \"2px 2px 2px rgba(0,0,0,0.4)\">>\n}\n\n@media (max-width: {{$:/themes/tiddlywiki/vanilla/metrics/sidebarbreakpoint}}) {\n\t\n\t.tc-improvement-banner {\n\t}\n\n}\n\n@media (min-width: {{$:/themes/tiddlywiki/vanilla/metrics/sidebarbreakpoint}}) {\n\n\t.tc-improvement-banner {\n\t\tmargin-right: -53px;\n\t\tmargin-left: -53px;\n\t}\n\n\t.tc-improvement-banner:before {\n\t\tdisplay: block;\n\t\tposition: absolute;\n\t\twidth: 0;\n\t\theight: 0;\n\t\tcontent: \" \";\n\t\tmargin-left: -5px;\n\t\tmargin-top: -10px;\n\t\tborder-top: 5px solid transparent;\n\t\tborder-left: 5px solid transparent;\n\t\tborder-right: 5px solid #C07E7E;\n\t\tborder-bottom: 5px solid #C07E7E;\n\t}\n\n}\n\n.tc-improvement-banner svg {\n\twidth: 1em;\n\theight: 1em;\n}\n"
},
"$:/editions/tw5.com/variable-macros": {
"title": "$:/editions/tw5.com/variable-macros",
"created": "20150228114241000",
"modified": "20150228141312000",
"tags": "$:/tags/Macro",
"text": "\\define .variable-examples(v,text:\"Examples\") <$link to=\"$v$ Variable (Examples)\">$text$</$link>\n\\define .macro-examples(m,text:\"Examples\") <$link to=\"$m$ Macro (Examples)\">$text$</$link>\n\\define .widget-examples(w,text:\"Examples\") <$link to=\"$w$ Widget (Examples)\">$text$</$link>\n\n\\define .js-macro-link(_) [[$_$|https://tiddlywiki.com/dev/index.html#JavaScript%20Macros]]\n\n\\define .this-is-static-link-variable() <<.tip \"This variable has no useful effect when ~TiddlyWiki is running in a browser, as the `href` attribute is ignored there -- links between tiddlers are performed by JavaScript instead. The variable comes into play when one is using the [[Node.js configuration|TiddlyWiki on Node.js]] to [[generate a static version|RenderTiddlersCommand]] of a wiki.\">>\n\n\\define .this-is-toolbar-config-variable(configTiddler)\n\nIt can be set to <<.value yes>> or <<.value no>> prior to transcluding such a button.\n\nThe standard page template sets it to the value found in [[$configTiddler$]], with the result that this becomes the default for the whole page. The user can adjust this default by using a tickbox on the <<.controlpanel-tab Settings>> tab of the [[Control Panel|$:/ControlPanel]].\n\\end\n"
},
"$:/editions/tw5.com/version-macros": {
"title": "$:/editions/tw5.com/version-macros",
"created": "20161008085627406",
"modified": "201804111739",
"tags": "$:/tags/Macro",
"type": "text/vnd.tiddlywiki",
"text": "\\define .from-version(version)\n<span class=\"doc-from-version\">{{$:/core/images/warning}} New in: $version$</span>\n\\end\n\n\\define .deprecated-since(version, superseeded:\"TODO-Link\")\n<$button to=\"Deprecated - What does it mean\" class=\"doc-deprecated-version tc-btn-invisible\">{{$:/core/images/warning}} Deprecated since: $version$ </$button> use [[$superseeded$]] instead!\n\\end\n\n<pre><$view field=\"text\"/></pre>"
},
"$:/editions/tw5.com/wikitext-macros": {
"title": "$:/editions/tw5.com/wikitext-macros",
"created": "20150117184156000",
"modified": "20150117184616000",
"tags": "$:/tags/Macro",
"text": "\\define wikitext-example(src)\n<div class=\"doc-example\">\n\n<$macrocall $name=\"copy-to-clipboard-above-right\" src=<<__src__>>/>\n\n```\n$src$\n```\n\nThat renders as:\n\n$src$\n\n... and the underlying HTML is:\n\n$$$text/vnd.tiddlywiki>text/html\n$src$\n$$$\n</div>\n\\end\n\n\\define wikitext-example-without-html(src)\n<div class=\"doc-example\">\n\n<$macrocall $name=\"copy-to-clipboard-above-right\" src=<<__src__>>/>\n\n```\n$src$\n```\n\nThat renders as:\n\n$src$\n</div>\n\\end\n\n\\define tw-code(tiddler)\n<$codeblock language={{$tiddler$!!type}} code={{$tiddler$}}/>\n\\end\n\n\\define tw-code-link(tiddler)\n[[$tiddler$]]:\n\n<<tw-code $tiddler$>>\n\\end"
},
"SystemTag: $:/tags/AboveStory": {
"title": "SystemTag: $:/tags/AboveStory",
"caption": "$:/tags/AboveStory",
"created": "20180926170345251",
"description": "marks elements to be placed at the top of the story river",
"modified": "20180926171456529",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/AboveStory` marks elements to be placed at the top of the story river"
},
"SystemTag: $:/tags/AdvancedSearch": {
"title": "SystemTag: $:/tags/AdvancedSearch",
"caption": "$:/tags/AdvancedSearch",
"created": "20180926170345251",
"description": "marks search elements",
"modified": "20180926171456527",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/AdvancedSearch` marks search elements"
},
"SystemTag: $:/tags/AdvancedSearch/FilterButton": {
"title": "SystemTag: $:/tags/AdvancedSearch/FilterButton",
"caption": "$:/tags/AdvancedSearch/FilterButton",
"created": "20180926170345251",
"description": "marks filter buttons",
"modified": "20180926171456526",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/AdvancedSearch/FilterButton` marks filter buttons"
},
"SystemTag: $:/tags/Alert": {
"title": "SystemTag: $:/tags/Alert",
"caption": "$:/tags/Alert",
"created": "20180926170345251",
"description": "marks alerts",
"modified": "20180926171456524",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/Alert` marks alerts"
},
"SystemTag: $:/tags/BelowStory": {
"title": "SystemTag: $:/tags/BelowStory",
"caption": "$:/tags/BelowStory",
"created": "20180926170345251",
"description": "marks elements to be placed at the bottom of the story river",
"modified": "20180926171456521",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/BelowStory` marks elements to be placed at the bottom of the story river"
},
"SystemTag: $:/tags/ControlPanel": {
"title": "SystemTag: $:/tags/ControlPanel",
"caption": "$:/tags/ControlPanel",
"created": "20180926170345251",
"description": "marks control panel tabs",
"modified": "20180926171456518",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/ControlPanel` marks control panel tabs"
},
"SystemTag: $:/tags/ControlPanel/Advanced": {
"title": "SystemTag: $:/tags/ControlPanel/Advanced",
"caption": "$:/tags/ControlPanel/Advanced",
"created": "20180926170345251",
"description": "marks control panel advanced tabs",
"modified": "20180926171456516",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/ControlPanel/Advanced` marks control panel advanced tabs"
},
"SystemTag: $:/tags/ControlPanel/Appearance": {
"title": "SystemTag: $:/tags/ControlPanel/Appearance",
"caption": "$:/tags/ControlPanel/Appearance",
"created": "20180926170345251",
"description": "marks control panel appearance tabs",
"modified": "20180926171456514",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/ControlPanel/Appearance` marks control panel appearance tabs"
},
"SystemTag: $:/tags/ControlPanel/Info": {
"title": "SystemTag: $:/tags/ControlPanel/Info",
"caption": "$:/tags/ControlPanel/Info",
"created": "20180926170345251",
"description": "marks control panel info tabs",
"modified": "20180926171456512",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/ControlPanel/Info` marks control panel info tabs"
},
"SystemTag: $:/tags/ControlPanel/Saving": {
"title": "SystemTag: $:/tags/ControlPanel/Saving",
"caption": "$:/tags/ControlPanel/Saving",
"created": "20180926170345251",
"description": "marks saving configurations",
"modified": "20180926171456510",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/ControlPanel/Saving` marks saving configurations"
},
"SystemTag: $:/tags/ControlPanel/Settings": {
"title": "SystemTag: $:/tags/ControlPanel/Settings",
"caption": "$:/tags/ControlPanel/Settings",
"created": "20180926170345251",
"description": "marks control panel settings tabs",
"modified": "20180926171456509",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/ControlPanel/Settings` marks control panel settings tabs"
},
"SystemTag: $:/tags/ControlPanel/Toolbars": {
"title": "SystemTag: $:/tags/ControlPanel/Toolbars",
"caption": "$:/tags/ControlPanel/Toolbars",
"created": "20180926170345251",
"description": "marks control panel toolbar customisation tabs",
"modified": "20180926171456507",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/ControlPanel/Toolbars` marks control panel toolbar customisation tabs"
},
"SystemTag: $:/tags/EditPreview": {
"title": "SystemTag: $:/tags/EditPreview",
"caption": "$:/tags/EditPreview",
"created": "20180926170345251",
"description": "marks custom preview panes",
"modified": "20180926171456503",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/EditPreview` marks custom preview panes"
},
"SystemTag: $:/tags/EditTemplate": {
"title": "SystemTag: $:/tags/EditTemplate",
"caption": "$:/tags/EditTemplate",
"created": "20180926170345251",
"description": "marks the edit template",
"modified": "20180926171456501",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/EditTemplate` marks the edit template"
},
"SystemTag: $:/tags/EditToolbar": {
"title": "SystemTag: $:/tags/EditToolbar",
"caption": "$:/tags/EditToolbar",
"created": "20180926170345251",
"description": "marks the edit mode tiddler toolbar",
"modified": "20180926171456499",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/EditToolbar` marks the edit mode tiddler toolbar"
},
"SystemTag: $:/tags/EditorToolbar": {
"title": "SystemTag: $:/tags/EditorToolbar",
"caption": "$:/tags/EditorToolbar",
"created": "20180926170345251",
"description": "marks the editor toolbar buttons",
"modified": "20180926171456505",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/EditorToolbar` marks the editor toolbar buttons"
},
"SystemTag: $:/tags/Exporter": {
"title": "SystemTag: $:/tags/Exporter",
"caption": "$:/tags/Exporter",
"created": "20180926170345251",
"description": "marks the exporters",
"modified": "20180926171456497",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/Exporter` marks the exporters"
},
"SystemTag: $:/tags/Filter": {
"title": "SystemTag: $:/tags/Filter",
"caption": "$:/tags/Filter",
"created": "20180926170345251",
"description": "marks filters in advanced seach sample filter dropdown",
"modified": "20180926171456495",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/Filter` marks filters in advanced seach sample filter dropdown"
},
"SystemTag: $:/tags/Image": {
"title": "SystemTag: $:/tags/Image",
"caption": "$:/tags/Image",
"created": "20180926170345251",
"description": "marks (core) images",
"modified": "20180926171456494",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/Image` marks (core) images"
},
"SystemTag: $:/tags/ImportPreview": {
"title": "SystemTag: $:/tags/ImportPreview",
"caption": "$:/tags/ImportPreview",
"created": "20180926170345251",
"description": "marks preview types for the import listing",
"modified": "20180926171456492",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/ImportPreview` marks preview types for the import listing"
},
"SystemTag: $:/tags/KeyboardShortcut": {
"title": "SystemTag: $:/tags/KeyboardShortcut",
"caption": "$:/tags/KeyboardShortcut",
"description": "uses the text of tagged tiddler as keyboard shortcut actions",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/KeyboardShortcut` defines the tagged Tiddler as a [[Keyboard Shortcut Tiddler]], a ''container for actions'' that get triggered when its corresponding [[Keyboard Shortcut Descriptor]] in its `key` field matches a keyboard combination executed by the User\n"
},
"SystemTag: $:/tags/Macro": {
"title": "SystemTag: $:/tags/Macro",
"caption": "$:/tags/Macro",
"created": "20180926170345251",
"description": "marks global macros",
"modified": "20180926171456486",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/Macro` marks global macros"
},
"SystemTag: $:/tags/Manager/ItemMain": {
"title": "SystemTag: $:/tags/Manager/ItemMain",
"caption": "$:/tags/Manager/ItemMain",
"created": "20180926170345251",
"description": "marks the tiddler manager. $:/Manager",
"modified": "20180926171456490",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/Manager/ItemMain` marks the tiddler manager. $:/Manager"
},
"SystemTag: $:/tags/Manager/ItemSidebar": {
"title": "SystemTag: $:/tags/Manager/ItemSidebar",
"caption": "$:/tags/Manager/ItemSidebar",
"created": "20180926170345251",
"description": "marks the tiddler manager",
"modified": "20180926171456488",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/Manager/ItemSidebar` marks the tiddler manager"
},
"SystemTag: $:/tags/MoreSideBar": {
"title": "SystemTag: $:/tags/MoreSideBar",
"caption": "$:/tags/MoreSideBar",
"created": "20180926170345251",
"description": "marks tabs in the 'more' sidebar",
"modified": "20180926171456484",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/MoreSideBar` marks tabs in the 'more' sidebar"
},
"SystemTag: $:/tags/MoreSideBar/Plugins": {
"title": "SystemTag: $:/tags/MoreSideBar/Plugins",
"caption": "$:/tags/MoreSideBar/Plugins",
"created": "20180926170345251",
"description": "marks Sidebar: More: Plugins tab",
"modified": "20180926171456483",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/MoreSideBar/Plugins` marks Sidebar: More: Plugins tab"
},
"SystemTag: $:/tags/PageControls": {
"title": "SystemTag: $:/tags/PageControls",
"caption": "$:/tags/PageControls",
"created": "20180926170345251",
"description": "marks the page control tools in the sidebar",
"modified": "20180926171456481",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/PageControls` marks the page control tools in the sidebar"
},
"SystemTag: $:/tags/PageTemplate": {
"title": "SystemTag: $:/tags/PageTemplate",
"caption": "$:/tags/PageTemplate",
"created": "20180926170345251",
"description": "marks the main page elements",
"modified": "20180926171456480",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/PageTemplate` marks the main page elements"
},
"SystemTag: $:/tags/Palette": {
"title": "SystemTag: $:/tags/Palette",
"caption": "$:/tags/Palette",
"created": "20180926170345251",
"description": "marks colour palettes",
"modified": "20180926171456478",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/Palette` marks colour palettes"
},
"SystemTag: $:/tags/PluginLibrary": {
"title": "SystemTag: $:/tags/PluginLibrary",
"caption": "$:/tags/PluginLibrary",
"created": "20180926170345251",
"description": "marks the plugin library",
"modified": "20180926171456474",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/PluginLibrary` marks the plugin library"
},
"SystemTag: $:/tags/RawMarkup": {
"title": "SystemTag: $:/tags/RawMarkup",
"caption": "$:/tags/RawMarkup",
"created": "20180926170345251",
"description": "marks tiddlers included as raw text at the bottom of `<head>`",
"modified": "20180927084346820",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/RawMarkup` marks plain text tiddlers to be included as raw markup at the bottom of the `<head>` section in the generated HTML file.\n\nNote that the wiki must be saved and reloaded in order for a raw markup tiddler to take effect."
},
"SystemTag: $:/tags/RawMarkupWikified": {
"title": "SystemTag: $:/tags/RawMarkupWikified",
"caption": "$:/tags/RawMarkupWikified",
"created": "20180926170345251",
"description": "marks tiddlers included as wikified text at the bottom of `<head>`",
"modified": "20180927084332243",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/RawMarkupWikified` marks wikified tiddlers to be included as raw markup at the bottom of the `<head>` section in the generated HTML file.\n\nNote that the wiki must be saved and reloaded in order for a raw markup tiddler to take effect. Also note that global macros are not available by default within raw markup tiddlers; you can use the ImportVariablesWidget to explicitly import them."
},
"SystemTag: $:/tags/RawMarkupWikified/BottomBody": {
"title": "SystemTag: $:/tags/RawMarkupWikified/BottomBody",
"caption": "$:/tags/RawMarkupWikified/BottomBody",
"created": "20180926170345251",
"description": "marks tiddlers included as wikified text at the bottom of `<body>`",
"modified": "20180928145806493",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.18\">> The [[system tag|SystemTags]] `$:/tags/RawMarkupWikified/BottomBody` marks wikified tiddlers to be included as raw markup at the bottom of the `<body>` section in the generated HTML file.\n\nNote that the wiki must be saved and reloaded in order for a raw markup tiddler to take effect. Also note that global macros are not available by default within raw markup tiddlers; you can use the ImportVariablesWidget to explicitly import them."
},
"SystemTag: $:/tags/RawMarkupWikified/TopBody": {
"title": "SystemTag: $:/tags/RawMarkupWikified/TopBody",
"caption": "$:/tags/RawMarkupWikified/TopBody",
"created": "20180926170345251",
"description": "marks tiddlers included as wikified text at the top of `<body>`",
"modified": "20180928145800288",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.18\">> The [[system tag|SystemTags]] `$:/tags/RawMarkupWikified/TopBody` marks wikified tiddlers to be included as raw markup at the top of the `<body>` section in the generated HTML file.\n\nNote that the wiki must be saved and reloaded in order for a raw markup tiddler to take effect. Also note that global macros are not available by default within raw markup tiddlers; you can use the ImportVariablesWidget to explicitly import them."
},
"SystemTag: $:/tags/RawMarkupWikified/TopHead": {
"title": "SystemTag: $:/tags/RawMarkupWikified/TopHead",
"caption": "$:/tags/RawMarkupWikified/TopHead",
"created": "20180926170345251",
"description": "marks tiddlers included as wikified text at the top of `<head>`",
"modified": "20180928145753616",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.18\">> The [[system tag|SystemTags]] `$:/tags/RawMarkupWikified/TopHead` marks wikified tiddlers to be included as raw markup at the top of the `<head>` section in the generated HTML file.\n\nNote that the wiki must be saved and reloaded in order for a raw markup tiddler to take effect. Also note that global macros are not available by default within raw markup tiddlers; you can use the ImportVariablesWidget to explicitly import them."
},
"SystemTag: $:/tags/RawStaticContent": {
"title": "SystemTag: $:/tags/RawStaticContent",
"caption": "$:/tags/RawStaticContent",
"created": "20180926170345251",
"description": "marks raw content to be saved into the TW code",
"modified": "20180926171456461",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/RawStaticContent` marks raw content to be saved into the TW code"
},
"SystemTag: $:/tags/RemoteAssetInfo": {
"title": "SystemTag: $:/tags/RemoteAssetInfo",
"caption": "$:/tags/RemoteAssetInfo",
"created": "20180926170345251",
"description": "marks plugin import handling",
"modified": "20180926171456460",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/RemoteAssetInfo` marks plugin import handling"
},
"SystemTag: $:/tags/SearchResults": {
"title": "SystemTag: $:/tags/SearchResults",
"caption": "$:/tags/SearchResults",
"created": "20180926170345251",
"description": "marks customised search results",
"modified": "20180926171456458",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/SearchResults` marks customised search results"
},
"SystemTag: $:/tags/ServerConnection": {
"title": "SystemTag: $:/tags/ServerConnection",
"caption": "$:/tags/ServerConnection",
"created": "20180926170345251",
"description": "marks plugin import handling",
"modified": "20180926171456456",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/ServerConnection` marks plugin import handling"
},
"SystemTag: $:/tags/SideBar": {
"title": "SystemTag: $:/tags/SideBar",
"caption": "$:/tags/SideBar",
"created": "20180926170345251",
"description": "marks sidebar tabs",
"modified": "20180926171456454",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/SideBar` marks sidebar tabs"
},
"SystemTag: $:/tags/SideBarSegment": {
"title": "SystemTag: $:/tags/SideBarSegment",
"caption": "$:/tags/SideBarSegment",
"created": "20180926170345251",
"description": "marks sidebar segments",
"modified": "20180926171456451",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/SideBarSegment` marks sidebar segments\n\nNote: You can rearrange the segments by drag-and-dropping the titles inside the tag pill <<tag $:/tags/SideBarSegment>>\n"
},
"SystemTag: $:/tags/StartupAction": {
"title": "SystemTag: $:/tags/StartupAction",
"caption": "$:/tags/StartupAction",
"created": "20180926170345251",
"description": "marks actions executed on all platforms",
"modified": "20180926171456449",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/StartupAction` marks actions executed on all platforms"
},
"SystemTag: $:/tags/StartupAction/Browser": {
"title": "SystemTag: $:/tags/StartupAction/Browser",
"caption": "$:/tags/StartupAction/Browser",
"created": "20180926170345251",
"description": "marks actions only executed when running in the browser",
"modified": "20180926171456447",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/StartupAction/Browser` marks actions only executed when running in the browser"
},
"SystemTag: $:/tags/StartupAction/Node": {
"title": "SystemTag: $:/tags/StartupAction/Node",
"caption": "$:/tags/StartupAction/Node",
"created": "20180926170345251",
"description": "marks actions only executed when running under Node.js",
"modified": "20180926171456445",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/StartupAction/Node` marks actions only executed when running under Node.js"
},
"SystemTag: $:/tags/Stylesheet": {
"title": "SystemTag: $:/tags/Stylesheet",
"caption": "$:/tags/Stylesheet",
"created": "20180926170345251",
"description": "marks that a tiddler should be applied as a CSS stylesheet",
"modified": "20180926171456442",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/Stylesheet` marks that a tiddler should be applied as a CSS stylesheet"
},
"SystemTag: $:/tags/TagDropdown": {
"title": "SystemTag: $:/tags/TagDropdown",
"caption": "$:/tags/TagDropdown",
"created": "20180926170345251",
"description": "marks tags dropdown sorting",
"modified": "20180926171456439",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/TagDropdown` marks tags dropdown sorting"
},
"SystemTag: $:/tags/Texteditor/Snippet": {
"title": "SystemTag: $:/tags/Texteditor/Snippet",
"caption": "$:/tags/Texteditor/Snippet",
"created": "20180926170345251",
"description": "marks text snippets",
"modified": "20180926171456546",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/Texteditor/Snippet` marks text snippets"
},
"SystemTag: $:/tags/TiddlerInfo": {
"title": "SystemTag: $:/tags/TiddlerInfo",
"caption": "$:/tags/TiddlerInfo",
"created": "20180926170345251",
"description": "marks tiddler info panel tabs",
"modified": "20180926171456544",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/TiddlerInfo` marks tiddler info panel tabs"
},
"SystemTag: $:/tags/TiddlerInfoSegment": {
"title": "SystemTag: $:/tags/TiddlerInfoSegment",
"caption": "$:/tags/TiddlerInfoSegment",
"created": "20180926170345251",
"description": "marks tiddler info panel segments",
"modified": "20180926171456541",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/TiddlerInfoSegment` marks tiddler info panel segments"
},
"SystemTag: $:/tags/TiddlerInfo/Advanced": {
"title": "SystemTag: $:/tags/TiddlerInfo/Advanced",
"caption": "$:/tags/TiddlerInfo/Advanced",
"created": "20180926170345251",
"description": "marks tabs under the advanced tiddler tab",
"modified": "20180926171456539",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/TiddlerInfo/Advanced` marks tabs under the advanced tiddler tab"
},
"SystemTag: $:/tags/ToolbarButtonStyle": {
"title": "SystemTag: $:/tags/ToolbarButtonStyle",
"caption": "$:/tags/ToolbarButtonStyle",
"created": "20180926170345251",
"description": "marks the style of the buttons",
"modified": "20180926171456537",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/ToolbarButtonStyle` marks the style of the buttons"
},
"SystemTag: $:/tags/TopLeftBar": {
"title": "SystemTag: $:/tags/TopLeftBar",
"caption": "$:/tags/TopLeftBar",
"created": "20180926170345251",
"description": "marks the top left bar",
"modified": "20180926171456536",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/TopLeftBar` marks the top left bar"
},
"SystemTag: $:/tags/TopRightBar": {
"title": "SystemTag: $:/tags/TopRightBar",
"caption": "$:/tags/TopRightBar",
"created": "20180926170345251",
"description": "marks the top right bar",
"modified": "20180926171456534",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/TopRightBar` marks the top right bar"
},
"SystemTag: $:/tags/ViewTemplate": {
"title": "SystemTag: $:/tags/ViewTemplate",
"caption": "$:/tags/ViewTemplate",
"created": "20180926170345251",
"description": "marks the view template",
"modified": "20180926171456532",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/ViewTemplate` marks the view template"
},
"SystemTag: $:/tags/ViewToolbar": {
"title": "SystemTag: $:/tags/ViewToolbar",
"caption": "$:/tags/ViewToolbar",
"created": "20180926170345251",
"description": "marks the view mode tiddler toolbar",
"modified": "20180926171456531",
"tags": "SystemTags",
"type": "text/vnd.tiddlywiki",
"text": "The [[system tag|SystemTags]] `$:/tags/ViewToolbar` marks the view mode tiddler toolbar"
},
"TiddlyDesktop Releases": {
"title": "TiddlyDesktop Releases",
"caption": "~TiddlyDesktop",
"created": "20150419144649101",
"modified": "20180924082438784",
"tags": "Releases",
"type": "text/vnd.tiddlywiki",
"text": "The latest release of TiddlyDesktop can be found at https://github.com/Jermolene/TiddlyDesktop/releases/latest, or you can see a [[list of all releases|https://github.com/Jermolene/TiddlyDesktop/releases]].\n"
},
"Core Variables": {
"title": "Core Variables",
"created": "20150220161908000",
"modified": "20150228134138000",
"type": "text/vnd.tiddlywiki",
"text": "The following [[variables|Variables]] are built into ~TiddlyWiki's core:\n\n<<list-links \"[tag[Core Variables]] -[tag[Configuration Variables]]\">>\n\nThe core will also use various configuration variables and macros if you define them:\n\n<<list-links \"[tag[Configuration Variables]]\">>\n"
},
"Variables": {
"title": "Variables",
"created": "20141002133113496",
"modified": "20150221215644000",
"tags": "Concepts Reference",
"type": "text/vnd.tiddlywiki",
"text": "A <<.def variable>> is a snippet of text that can be accessed by name within a particular branch of the [[widget tree|Widgets]]. The snippet is known as the variable's <<.def value>>.\n\nA new variable is defined using a <<.wlink SetWidget>> widget, and is then available to any of the children of that widget, including transcluded content. A <<.wid set>> widget can reuse an existing name, thus binding a different snippet to that name for the duration of the widget's children.\n\nThe <<.wlink ListWidget>> widget also sets a particular variable (<<.var currentTiddler>> by default) to each listed title in turn.\n\nFor an overview of how to use variables, see [[Variables in WikiText]].\n\nDespite the term <<.word variable>>, each snippet is a constant string. The apparent variability is actually the result of the presence of multiple variables with the same name in different parts of the widget tree.\n\n[[Macros]] are a special form of variable whose value can contain placeholders that get filled in with parameters whenever the macro is used.\n\nBy themselves, the snippets are <<.em not>> parsed as WikiText. However, a variable reference will transclude a snippet into a context where ~WikiText parsing <<.em may>> be occurring. Within a snippet, the only markup detected is `$name$` for a macro parameter transclusion and `$(name)$` for a variable transclusion.\n\nThe <<.mlink dumpvariables>> macro lists all variables (including macros) that are available at that position in the widget tree.\n\n~TiddlyWiki's core has [[several variables|Core Variables]] built in.\n"
},
"currentTiddler Variable": {
"title": "currentTiddler Variable",
"caption": "currentTiddler",
"created": "20141001232824187",
"modified": "20150221152029000",
"tags": "Variables [[Core Variables]]",
"type": "text/vnd.tiddlywiki",
"text": "The <<.def currentTiddler>> [[variable|Variables]] contains the title of the [[current tiddler|Current Tiddler]].\n\nSeveral aspects of WikiText use this tiddler as their context. As a result, within a <<.wlink ListWidget>> widget or a [[template tiddler|TemplateTiddlers]], there is often no need to explicitly specify a tiddler title.\n\nCompare <<.vlink storyTiddler>>.\n\n<<.variable-examples \"currentTiddler\">>\n"
},
"storyTiddler Variable": {
"title": "storyTiddler Variable",
"caption": "storyTiddler",
"created": "20141001232753952",
"modified": "20150221222522000",
"tags": "Variables [[Core Variables]]",
"type": "text/vnd.tiddlywiki",
"text": "When a tiddler is viewed or edited, then within its branch of the [[widget tree|Widgets]], the <<.def storyTiddler>> [[variable|Variables]] contains the title of that tiddler.\n\nThe default [[view template|$:/core/ui/ViewTemplate]] and [[edit template|$:/core/ui/EditTemplate]] initialise <<.var storyTiddler>> to the value of the <<.vlink currentTiddler>> variable. This in turn will have been set by a <<.wlink ListWidget>> widget in [[the relevant part of the page template|$:/core/ui/PageTemplate/story]].\n\n<<.var storyTiddler>> is undefined outside the story river, such as in the sidebar.\n\n<<.variable-examples \"storyTiddler\">>\n"
},
"transclusion Variable": {
"title": "transclusion Variable",
"caption": "transclusion",
"created": "20141002004621385",
"modified": "20150221225622000",
"tags": "Variables [[Core Variables]]",
"type": "text/vnd.tiddlywiki",
"text": "The <<.def transclusion>> [[variable|Variables]] is set by the <<.wlink TranscludeWidget>> widget to a string that identifies the position of that widget within the [[widget tree|Widgets]].\n\n~TiddlyWiki's core uses it to detect recursive [[transclusion|Transclusion]]. It is also used to implement the <<.mlink qualify>> macro.\n\nThe string has the following syntax:\n\n<$railroad text=\"\"\"\n\"{\" a \"|\" b \"|\" c \"|\" d \"|\" e \"|\" \"}\"\n\"\"\"/>\n\n<ol style=\"list-style-type: lower-alpha;\">\n<li>the title of the [[current tiddler|Current Tiddler]]</li>\n<li>the title of the tiddler being transcluded</li>\n<li>the name of the field being transcluded</li>\n<li>the name of the property name or index being transcluded</li>\n<li>the name of the subtiddler being transcluded from a plugin</li>\n</ol>\n\nMany of the five items are often blank.\n\nIn the sidebar, the value of <<.var transclusion>> is:\n\n> `{|$:/core/ui/PageTemplate/sidebar|||}`\n\nWhen the tiddler <<.tid HelloThere>> is displayed in the story river, <<.var transclusion>> is set to:\n\n> `{HelloThere|HelloThere|||}`\n\n<<.variable-examples \"transclusion\">>\n"
},
"actionTiddler Variable": {
"title": "actionTiddler Variable",
"created": "20170406083917224",
"modified": "20190118084621046",
"tags": "Variables [[Core Variables]]",
"type": "text/vnd.tiddlywiki",
"text": "The variable `actionTiddler` is used in subtly different ways by different widgets:\n\n* Within the ''actions'' string of the DroppableWidget, the <<.def actionTiddler>> [[variable|Variables]] contains the title of the tiddler being dropped.\n* Within the ''startactions'' and ''endactions'' string of the DroppableWidget, the <<.def actionTiddler>> [[variable|Variables]] contains a quoted [[Title List]] of all of the titles being dragged.\n"
},
"Sample Headings 1,2,3": {
"title": "Sample Headings 1,2,3",
"created": "20180609112450207",
"modified": "20180609112450207",
"text": "! This is a Level 1 Heading\n\nThis is a paragraph.\n\n<$vars tv-adjust-heading-level=\"-2\">\n\n{{Sample Headings 3,4,5}}\n\n</$vars>\n\n!! This is a Level 2 heading\n\n<$vars tv-adjust-heading-level=\"-1\">\n\n{{Sample Headings 4,5,6}}\n\n</$vars>\n\n"
},
"Sample Headings 3,4,5": {
"title": "Sample Headings 3,4,5",
"created": "20180609112450207",
"modified": "20180609112450207",
"text": "!!! This is written as a Level 3 heading\n\n!!!! This is written as a Level 4 heading\n\n!!!!! This is written as a Level 5 heading\n"
},
"Sample Headings 4,5,6": {
"title": "Sample Headings 4,5,6",
"created": "20180609112450207",
"modified": "20180609112450207",
"text": "!!!! This is written as a Level 4 heading\n\n!!!!! This is written as a Level 5 heading\n\n!!!!!! This is written as a Level 6 heading\n"
},
"currentTiddler Variable (Examples)": {
"title": "currentTiddler Variable (Examples)",
"created": "20150221140726000",
"modified": "20150221141342000",
"tags": "[[currentTiddler Variable]] [[Variable Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "The following two examples have the same meaning:\n\n<$macrocall $name=\".example\" n=\"1\" eg=\"\"\"<$view field=title/>\"\"\"/>\n<$macrocall $name=\".example\" n=\"2\" eg=\"\"\"<$view tiddler=<<currentTiddler>> field=title/>\"\"\"/>\n\nThis next example shows how the <<.wlink ListWidget>> widget changes the current tiddler:\n\n<$macrocall $name=\".example\" n=\"3\"\neg=\"\"\"<ol>\n<$list filter=\"[prefix[J]]\">\n<li><<currentTiddler>></li>\n</$list>\n</ol>\"\"\"/>\n"
},
"storyTiddler Variable (Examples)": {
"title": "storyTiddler Variable (Examples)",
"created": "20150221141258000",
"modified": "20150221141431000",
"tags": "[[storyTiddler Variable]] [[Variable Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<$macrocall $name=\".example\" n=\"1\"\neg=\"\"\"<ol>\n<$list filter=\"[prefix[J]]\">\n<li><<currentTiddler>>, <<storyTiddler>></li>\n</$list>\n</ol>\"\"\"/>\n"
},
"transclusion Variable (Examples)": {
"title": "transclusion Variable (Examples)",
"created": "20150221141507000",
"modified": "20150228103440000",
"tags": "[[transclusion Variable]] [[Variable Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "This example shows how to distinguish between the sidebar and other environments:\n\n<$macrocall $name=\".example\" n=\"1\"\neg=\"\"\"We are\n<$list\nfilter=\"[<transclusion>prefix[{|$:/core/ui/PageTemplate/sidebar|||}]]\"\nemptyMessage=\"in the story river.\">\nin the sidebar.\n</$list>\"\"\"/>\n\nIn the sidebar, this would show `We are in the sidebar` instead.\n"
},
"tv-adjust-heading-level Variable (Examples)": {
"title": "tv-adjust-heading-level Variable (Examples)",
"created": "20180609112450207",
"modified": "20180609112450207",
"tags": "[[tv-adjust-heading-level Variable]] [[Variable Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "\\define show-tiddler(title)\n!! $title$\n\n<$codeblock code={{$title$}}/>\n\\end\n\n! Tiddlers\n\n<<show-tiddler \"Sample Headings 1,2,3\">>\n\n<<show-tiddler \"Sample Headings 3,4,5\">>\n\n<<show-tiddler \"Sample Headings 4,5,6\">>\n\n! Example\n\n<$macrocall $name=\".example\" n=\"1\"\neg=\"\"\"<$transclude tiddler=\"Sample Headings 1,2,3\" mode=\"block\"/>\"\"\"/>\n\n"
},
"tv-config-toolbar-class Variable (Examples)": {
"title": "tv-config-toolbar-class Variable (Examples)",
"created": "20150228135051000",
"modified": "20150228135737000",
"tags": "[[tv-config-toolbar-class Variable]] [[Variable Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<style>\n.green-background {\n\tbackground-color: green;\n\tfill: white;\n}\n</style>\n\n<$macrocall $name=\".example\" n=\"1\"\neg=\"\"\"<$set name=\"tv-config-toolbar-class\" value=\"tc-btn-invisible\">\n{{$:/core/ui/Buttons/new-tiddler}}\n</$set>\n\"\"\"/>\n\n<$macrocall $name=\".example\" n=\"2\"\neg=\"\"\"<$set name=\"tv-config-toolbar-class\" value=\"green-background\">\n{{$:/core/ui/Buttons/new-tiddler}}\n</$set>\n\"\"\"/>\n\nThe `green-background` [[CSS|Cascading Style Sheets]] class is declared in a stylesheet within this tiddler.\n"
},
"tv-config-toolbar-icons Variable (Examples)": {
"title": "tv-config-toolbar-icons Variable (Examples)",
"created": "20150228140420000",
"modified": "20150228141418000",
"tags": "[[tv-config-toolbar-icons Variable]] [[Variable Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<$macrocall $name=\".example\" n=\"1\"\neg=\"\"\"<$set name=\"tv-config-toolbar-icons\" value=\"no\">\n<$set name=\"tv-config-toolbar-text\" value=\"yes\">\n{{$:/core/ui/Buttons/new-tiddler}}\n</$set>\n</$set>\n\"\"\"/>\n\n<$macrocall $name=\".example\" n=\"2\"\neg=\"\"\"<$set name=\"tv-config-toolbar-icons\" value=\"yes\">\n{{$:/core/ui/Buttons/new-tiddler}}\n</$set>\n\"\"\"/>\n"
},
"tv-config-toolbar-text Variable (Examples)": {
"title": "tv-config-toolbar-text Variable (Examples)",
"created": "20150228140420000",
"modified": "20150228140516000",
"tags": "[[tv-config-toolbar-text Variable]] [[Variable Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<$macrocall $name=\".example\" n=\"1\"\neg=\"\"\"<$set name=\"tv-config-toolbar-text\" value=\"no\">\n{{$:/core/ui/Buttons/new-tiddler}}\n</$set>\n\"\"\"/>\n\n<$macrocall $name=\".example\" n=\"2\"\neg=\"\"\"<$set name=\"tv-config-toolbar-text\" value=\"yes\">\n{{$:/core/ui/Buttons/new-tiddler}}\n</$set>\n\"\"\"/>\n"
},
"tv-get-export-image-link Variable (Examples)": {
"title": "tv-get-export-image-link Variable (Examples)",
"created": "20150228124038000",
"tags": "[[tv-get-export-image-link Variable]] [[Variable Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "This example fetches [[the TiddlyWiki icon|https://www.tiddlywiki.com/favicon.ico]]:\n\n<$importvariables filter=\"$:/editions/tw5.com/macro-examples/tv-get-export-image-link\">\n<$codeblock code={{$:/editions/tw5.com/macro-examples/tv-get-export-image-link}}/>\n<$macrocall $name=\".example\" n=\"1\" eg=\"\"\"[img[favicon.ico]]\"\"\"/>\n</$importvariables>\n"
},
"tv-wikilink-tooltip Variable (Examples)": {
"title": "tv-wikilink-tooltip Variable (Examples)",
"created": "20150228115959000",
"modified": "20150228120621000",
"tags": "[[tv-wikilink-tooltip Variable]] [[Variable Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "This example shows a way of giving links a tooltip derived from the target tiddler's <<.field caption>> field:\n\n<$importvariables filter=\"$:/editions/tw5.com/macro-examples/tv-wikilink-tooltip\">\n<$codeblock code={{$:/editions/tw5.com/macro-examples/tv-wikilink-tooltip}}/>\n<$macrocall $name=\".example\" n=\"1\" eg=\"\"\"Here is a link to [[backlinks Operator]] with a custom tooltip.\"\"\"/>\n</$importvariables>\n\nHere is [[a standard link|HelloThere]] for comparison.\n"
},
"tv-wikilinks Variable (Examples)": {
"title": "tv-wikilinks Variable (Examples)",
"created": "20150228103411000",
"modified": "20150228104438000",
"tags": "[[tv-wikilinks Variable]] [[Variable Examples]]",
"type": "text/vnd.tiddlywiki",
"text": "<$macrocall $name=\".example\" n=\"1\"\neg=\"\"\"HelloThere,\n[[HelloThere]],\n<$link to=\"HelloThere\">is //this// a link?</$link>\"\"\"/>\n\n<$macrocall $name=\".example\" n=\"2\"\neg=\"\"\"<$set name=\"tv-wikilinks\" value=\"no\">\nHelloThere,\n[[HelloThere]],\n<$link to=\"HelloThere\">is //this// a link?</$link>\n</$set>\"\"\"/>\n"
},
"modifier Variable": {
"title": "modifier Variable",
"tags": "Variables [[Core Variables]]",
"type": "text/vnd.tiddlywiki",
"text": "Within the ''action'' string of the DroppableWidget, the <<.def modifier>> [[variable|Variables]] contains the modifier key(s) held during the drag-process.\nThe possible keys are ''ctrl'', ''shift'' or both ''ctrl'' and ''shift''\n\nThe variable contains a string that identifies the keys:\n\n|Modifier Key |Variable Content |h\n|ctrl |ctrl |\n|shift |shift |\n|ctrl+shift |ctrl-shift |\n|no modifier (normal drag) |normal |\n"
},
"namespace Variable": {
"title": "namespace Variable",
"created": "20150228132024000",
"modified": "20150228133745000",
"tags": "Variables [[Core Variables]]",
"type": "text/vnd.tiddlywiki",
"caption": "namespace",
"text": "The <<.def namespace>> [[variable|Variables]] is used internally by [[HTML|HyperText Markup Language]] widgets to keep track of the correct namespace for the [[DOM|Document Object Model]] elements they generate.\n\nAn `svg` or `math` element supplies a distinct namespace for itself and any child elements it contains.\n"
},
"tv-adjust-heading-level Variable": {
"title": "tv-adjust-heading-level Variable",
"caption": "tv-adjust-heading-level",
"created": "20180609112450207",
"modified": "20180609112450207",
"tags": "Variables [[Core Variables]] [[Configuration Variables]]",
"type": "text/vnd.tiddlywiki",
"text": "The <<.def tv-adjust-heading-level>> [[variable|Variables]] allows the level of [[headings|Headings in WikiText]] to be adjusted. It is interpreted as a positive or negative number (e.g. \"2\" or \"-3\") that is added to the heading level for display.\n\nNote that if the resulting heading level is less than 1 then level 1 is used instead. This means that specfiying a large negative adjustment factor will reset all headings to display as level 1. Similarly, heading levels larger than 6 are clamped to the maximum HTML heading level of 6.\n\n<<.variable-examples \"tv-adjust-heading-level\">>\n"
},
"tv-auto-open-on-import Variable": {
"title": "tv-auto-open-on-import Variable",
"created": "20150228120919000",
"modified": "20150228130407000",
"tags": "Variables [[Core Variables]] [[Configuration Variables]]",
"type": "text/vnd.tiddlywiki",
"caption": "tv-auto-open-on-import",
"text": "The <<.def tv-auto-open-on-import>> [[variable|Variables]] controls whether the `tm-import-tiddlers` message causes the tiddler [[$:/Import]] (which lists the pending imports) to open in the story river.\n\nBy default, the tiddler is opened. But if this variable has the value <<.value no>>, it isn't.\n\nAn example of setting this variable to <<.value no>> can be found in the upgrade plugin within the [[TiddlyWiki Upgrade Wizard|https://www.tiddlywiki.com/upgrade.html]]. People can drag their wiki files onto the wizard without triggering the normal import display.\n"
},
"tv-config-toolbar-class Variable": {
"title": "tv-config-toolbar-class Variable",
"created": "20150228134732000",
"modified": "20150228135803000",
"tags": "Variables [[Core Variables]] [[Configuration Variables]]",
"type": "text/vnd.tiddlywiki",
"caption": "tv-config-toolbar-class",
"text": "The <<.def tv-config-toolbar-class>> [[variable|Variables]] controls the value of the [[CSS|Cascading Style Sheets]] `class` attribute on the HTML element for a toolbar button.\n\nIt can be set prior to transcluding such a button.\n\nIn most environments, it defaults to <<.value tc-btn-invisible>>, which removes the button's background colour and border.\n\n<<.variable-examples \"tv-config-toolbar-class\">>\n"
},
"tv-config-toolbar-icons Variable": {
"title": "tv-config-toolbar-icons Variable",
"created": "20150228135910000",
"modified": "20150228141357000",
"tags": "Variables [[Core Variables]] [[Configuration Variables]]",
"type": "text/vnd.tiddlywiki",
"caption": "tv-config-toolbar-icons",
"text": "The <<.def tv-config-toolbar-icons>> [[variable|Variables]] controls whether toolbar buttons display icons.\n\n<<.this-is-toolbar-config-variable $:/config/Toolbar/Icons>>\n\n<<.variable-examples \"tv-config-toolbar-icons\">>\n\nSee also <<.vlink tv-config-toolbar-text>>.\n"
},
"tv-config-toolbar-text Variable": {
"title": "tv-config-toolbar-text Variable",
"created": "20150228135910000",
"modified": "20150228141403000",
"tags": "Variables [[Core Variables]] [[Configuration Variables]]",
"type": "text/vnd.tiddlywiki",
"caption": "tv-config-toolbar-text",
"text": "The <<.def tv-config-toolbar-text>> [[variable|Variables]] controls whether toolbar buttons display text.\n\n<<.this-is-toolbar-config-variable $:/config/Toolbar/Text>>\n\n<<.variable-examples \"tv-config-toolbar-text\">>\n\nSee also <<.vlink tv-config-toolbar-icons>>.\n"
},
"tv-filter-export-link Variable": {
"title": "tv-filter-export-link Variable",
"caption": "tv-filter-export-link",
"created": "20170828095135984",
"modified": "20170828095757620",
"tags": "Variables [[Core Variables]] [[Configuration Variables]]",
"type": "text/vnd.tiddlywiki",
"text": "<<.from-version \"5.1.15\">> The <<.def tv-filter-export-link>> [[variable|Variables]] controls the value of the `href` attribute on the HTML `a` element generated by the <<.wlink LinkWidget>> widget. If defined, it takes precedence over the [[tv-wikilink-template Variable]].\n\n<<.this-is-static-link-variable>>\n\nThe variable is treated as a filter that is given the target tiddler title as input. The filter is evaluated and the first result is used as the `href` attribute.\n\nFor example:\n\n```\n\\define tv-filter-export-link() [encodeuricomponent[]encodeuricomponent[]addsuffix[.html]]\n```\n\nSee also the <<.vlink tv-get-export-link>> variable, which dominates over this one.\n"
},
"tv-get-export-image-link Variable": {
"title": "tv-get-export-image-link Variable",
"created": "20150228122257000",
"modified": "20150228130940000",
"tags": "Variables [[Core Variables]] [[Configuration Variables]]",
"type": "text/vnd.tiddlywiki",
"caption": "tv-get-export-image-link",
"text": "The <<.def tv-get-export-image-link>> [[variable|Variables]] controls the value of the `src` attribute on the HTML `img` element generated by the <<.wlink ImageWidget>> widget when the value of its `source` attribute is not the title of a tiddler.\n\nThe variable should be a [[macro|Macros]] with the following parameter:\n\n;src\n: The value of the `source` attribute -- equivalent to the image name specified in <$link to=\"Images in WikiText\">the shorthand syntax</$link> `[img[source]]`\n\nThe ability to override image URIs in this way can be useful when one is using the [[Node.js configuration|TiddlyWiki on Node.js]] to export a static version of a wiki.\n\n<<.variable-examples \"tv-get-export-image-link\">>\n"
},
"tv-get-export-link Variable": {
"title": "tv-get-export-link Variable",
"created": "20150228114004000",
"modified": "20150228130943000",
"tags": "Variables [[Core Variables]] [[Configuration Variables]]",
"type": "text/vnd.tiddlywiki",
"caption": "tv-get-export-link",
"text": "The <<.def tv-get-export-link>> [[variable|Variables]] controls the value of the `href` attribute on the HTML `a` element generated by the <<.wlink LinkWidget>> widget.\n\n<<.this-is-static-link-variable>>\n\nThe variable should be a [[macro|Macros]] with the following parameter:\n\n;to\n: The title of the target tiddler of the link, with no escaping\n\nSee also <<.vlink tv-wikilink-template>>. If both that variable and this one exist, this one dominates.\n"
},
"tv-get-export-path Variable": {
"title": "tv-get-export-path Variable",
"created": "20150228130131000",
"modified": "20150228131730000",
"tags": "Variables [[Core Variables]] [[Configuration Variables]]",
"type": "text/vnd.tiddlywiki",
"caption": "tv-get-export-path",
"text": "The <<.def tv-get-export-path>> [[variable|Variables]] specifies the full pathname to which the <<.clink rendertiddlers RenderTiddlersCommand>> [[Node.js|TiddlyWiki on Node.js]] command writes each tiddler.\n\nThe variable should be implemented as a <<.js-macro-link \"JavaScript macro\">> with the following parameter:\n\n;title\n: The title of the tiddler\n\nIf no such macro exists, the tiddlers are written to files whose names are [[percent-encoded|Percent Encoding]], in the command's output folder.\n"
},
"tv-history-list Variable": {
"title": "tv-history-list Variable",
"created": "20170629074522030",
"modified": "20170629074609739",
"tags": "Variables [[Core Variables]]",
"type": "text/vnd.tiddlywiki",
"text": "The <<.def tv-history-list>> [[variable|Variables]] is assigned by the [[NavigatorWidget]] to contain the title of the tiddler containing the current history list.\n\nCompare <<.vlink tv-story-list>>.\n"
},
"tv-show-missing-links Variable": {
"title": "tv-show-missing-links Variable",
"tags": "Variables [[Core Variables]]",
"type": "text/vnd.tiddlywiki",
"text": "The <<.def tv-show-missing-links>> [[variable|Variables]] defines if ''missing links'' within the ''scope'' of the variable are rendered as links or not.\n\nGlobally, the variable is set within the ~PageTemplate and can be changed in the $:/ControlPanel under Settings - Show missing links to tiddlers\n\nIf <<.def tv-show-missing-links>> is set to ''no'', missing links are rendered as plain text\n\nIf <<.def tv-show-missing-links>> is set to ''yes'', missing links are rendered as wiki-links\n"
},
"tv-story-list Variable": {
"title": "tv-story-list Variable",
"created": "20170629074200301",
"modified": "20170629074520393",
"tags": "Variables [[Core Variables]]",
"type": "text/vnd.tiddlywiki",
"text": "The <<.def tv-story-list>> [[variable|Variables]] is assigned by the [[NavigatorWidget]] to contain the title of the tiddler containing the current story list.\n\nCompare <<.vlink tv-history-list>>.\n"
},
"tv-tiddler-preview Variable": {
"title": "tv-tiddler-preview Variable",
"created": "20150620082727484",
"modified": "20150620082727484",
"tags": "Variables [[Core Variables]]",
"type": "text/vnd.tiddlywiki",
"caption": "tv-tiddler-preview",
"text": "The <<.def tv-tiddler-preview>> [[variable|Variables]] indicates whether content is being rendered in a tiddler preview panel.\n\nThe value is ''yes'' within the preview panel, and undefined elsewhere.\n\n"
},
"tv-wikilink-template Variable": {
"title": "tv-wikilink-template Variable",
"caption": "tv-wikilink-template",
"created": "20150228105954000",
"modified": "20170828095603911",
"tags": "Variables [[Core Variables]] [[Configuration Variables]]",
"type": "text/vnd.tiddlywiki",
"text": "The <<.def tv-wikilink-template>> [[variable|Variables]] controls the value of the `href` attribute on the HTML `a` element generated by the <<.wlink LinkWidget>> widget. The <<.vlink tv-filter-export-link>>, if defined, it takes precedence over the <<.vlink tv-wikilink-template>> variable.\n\n<<.this-is-static-link-variable>>\n\nThe variable is treated as if it was a [[macro|Macros]] with the following parameters:\n\n;uri_encoded\n: The title of the target tiddler of the link, but [[percent-encoded|Percent Encoding]]\n;uri_doubleencoded\n: The value of the <<.param uri_encoded>> parameter but percent-encoded again, i.e. with its `%` characters further converted to `%25`\n\n> `\\define tv-wikilink-template() ../tiddlers/$uri_encoded$.html`\n\nThe variable defaults to `#$uri_encoded$`.\n\nSee also the <<.vlink tv-get-export-link>> variable, which dominates over this one.\n"
},
"tv-wikilink-tooltip Variable": {
"title": "tv-wikilink-tooltip Variable",
"created": "20150228115540000",
"modified": "20150228130451000",
"tags": "Variables [[Core Variables]] [[Configuration Variables]]",
"type": "text/vnd.tiddlywiki",
"caption": "tv-wikilink-tooltip",
"text": "The <<.def tv-wikilink-tooltip>> [[variable|Variables]] specifies the default value for the <<.attr tooltip>> attribute of the <<.wlink LinkWidget>> widget.\n\nIt is often defined as a [[macro|Macros]], and its value parsed as inline WikiText.\n\n<<.variable-examples \"tv-wikilink-tooltip\">>\n"
},
"tv-wikilinks Variable": {
"title": "tv-wikilinks Variable",
"created": "20150228102737000",
"modified": "20150228130415000",
"tags": "Variables [[Core Variables]] [[Configuration Variables]]",
"type": "text/vnd.tiddlywiki",
"caption": "tv-wikilinks",
"text": "The <<.def tv-wikilinks>> [[variable|Variables]] controls the behaviour of the <<.wlink LinkWidget>> widget.\n\nThe widget normally produces a link to a tiddler. But if this variable has the value <<.value no>>, the widget suppresses the link and simply displays the text that would otherwise have served as the link.\n\nYou can suppress links for a whole tiddler by placing the following line at the start of the tiddler's text:\n\n> `\\define tv-wikilinks() no`\n\nThis variable has no effect on external links, as those do not involve the <<.wid link>> widget.\n\n<<.variable-examples \"tv-wikilinks\">>\n"
},
"Getting Started Video": {
"title": "Getting Started Video",
"created": "20140104134911101",
"modified": "20140919161039197",
"tags": "Videos [[Working with TiddlyWiki]]",
"type": "text/vnd.tiddlywiki",
"text": "This brief tutorial takes you through the basics of saving changes with a standalone TiddlyWiki file.\n\n//Note that the video is a bit out of date, and will be updated soon!//\n\n<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/1g66s7UbyuU\" frameborder=\"0\" allowfullscreen></iframe>"
},
"Introducing TiddlyDesktop Video": {
"title": "Introducing TiddlyDesktop Video",
"created": "20140126124827076",
"modified": "20140912150423506",
"tags": "Videos TiddlyDesktop",
"type": "text/vnd.tiddlywiki",
"text": "This brief introduction shows how to install and use TiddlyDesktop:\n\n<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/i3Bggkm7paA\" frameborder=\"0\" allowfullscreen></iframe>"
},
"Introduction Video": {
"title": "Introduction Video",
"created": "20141126153016142",
"modified": "20141126153016142",
"tags": "Videos [[Working with TiddlyWiki]]",
"type": "text/vnd.tiddlywiki",
"text": "This brief presentation explains the basic principles of TiddlyWiki.\n\n<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/KtCUr83XgyE\" frameborder=\"0\" allowfullscreen></iframe>\n\nThe TiddlyWiki used to produce the video can be found here:\n\nhttps://tiddlywiki.com/editions/introduction/\n"
},
"TiddlyWiki on Firefox for Android Video": {
"title": "TiddlyWiki on Firefox for Android Video",
"created": "20140104134947485",
"modified": "20140912150329611",
"tags": "Videos [[Saving with TiddlyFox]]",
"type": "text/vnd.tiddlywiki",
"text": "This brief screencast shows how to setup Firefox for Android so you can save changes to TiddlyWiki:\n\n<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/iikkv9orGGI\" frameborder=\"0\" allowfullscreen></iframe>\n"
},
"Videos": {
"title": "Videos",
"created": "20140912150153512",
"modified": "20140919161220608",
"tags": "Learning",
"type": "text/vnd.tiddlywiki",
"text": "The following TiddlyWiki videos are available.\n\n<<list-links \"[tag[Videos]]\">>\n\nThe aim is to curate a series of videos to guide people through getting up and running with TiddlyWiki. [[Contributions|Contributing]] are welcome."
},
"Working with the TiddlyWiki5 repository video": {
"title": "Working with the TiddlyWiki5 repository video",
"created": "20140920133836765",
"modified": "20140920134005568",
"tags": "[[Working with the TiddlyWiki5 repository]]",
"type": "text/vnd.tiddlywiki",
"text": "Mario Pietsch has created a short video tutorial on [[working with the TiddlyWiki5 GitHub repository|Working with the TiddlyWiki5 repository]].\n\n<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/6ElUruH92tc\" frameborder=\"0\" allowfullscreen></iframe>"
},
"TiddlyWeb JSON tiddler format": {
"title": "TiddlyWeb JSON tiddler format",
"created": "20181002130513206",
"modified": "20181002131123893",
"tags": "[[WebServer Guides]]",
"type": "text/vnd.tiddlywiki",
"text": "The web server API uses tiddlers in a special format originally designed for TiddlyWeb:\n\n* Field values are represented as strings. Lists (like the ''tags'' and ''list'' fields) use double square brackets to quote values that contain spaces\n* Tiddlers are represented as an object containing any of a fixed set of standard fields, with custom fields being relegated to a special property called ''fields''\n* The standard fields are: ''bag'', ''created'', ''creator'', ''modified'', ''modifier'', ''permissions'', ''recipe'', ''revision'', ''tags'', ''text'', ''title'', ''type'', ''uri''\n\nFor example, consider the following tiddler:\n\n```\n{\n\t\"title\": \"HelloThere\",\n\t\"tags\": \"FirstTag [[Second Tag]]\",\n\t\"my-custom-field\": \"Field value\"\n}\n```\n\nIn transit over the API, the tiddler would be converted to the following format:\n\n```\n{\n\t\"title\": \"HelloThere\",\n\t\"tags\": \"FirstTag [[Second Tag]]\",\n\t\"fields\": {\n\t\t\"my-custom-field\": \"Field value\"\t\t\n\t}\n}\n```\n"
},
"Using HTTPS": {
"title": "Using HTTPS",
"created": "20180702160923664",
"modified": "20180703100549667",
"tags": "[[WebServer Guides]]",
"type": "text/vnd.tiddlywiki",
"text": "By default, TiddlyWiki's WebServer serves resources over the insecure HTTP protocol. The risk is minimal if it is only being used within a private, trusted network but in many situations it is desirable to use a secure HTTPS connection.\n\nHTTPS requires the server to be configured with a certificate via a \"cert\" file and a \"key\" file, configured via the [[tls-cert|WebServer Parameter: tls-cert]] and [[tls-key|WebServer Parameter: tls-key]] parameters\n\nCertificates can be obtained from a certification authority such as https://letsencrypt.org/, or you can create a self-signed certificate for internal testing.\n\nTo create the required certificate files with the popular [[openssl|https://www.openssl.org/]] utility:\n\n```\nopenssl req -newkey rsa:2048 -new -nodes -keyout mywikifolder/key.pem -out mywikifolder/csr.pem\nopenssl x509 -req -days 365 -in mywikifolder/csr.pem -signkey mywikifolder/key.pem -out mywikifolder/server.crt\ntiddlywiki mywikifolder --listen username=joe password=bloggs tls-key=key.pem tls-cert=server.crt\n```\n"
},
"Using the external JavaScript template": {
"title": "Using the external JavaScript template",
"created": "20180905075846391",
"modified": "20180905080955513",
"tags": "[[WebServer Guides]]",
"type": "text/vnd.tiddlywiki",
"text": "Setting the [[root-tiddler|WebServer Parameter: root-tiddler]] parameter to `$:/core/save/all-external-js` switches to a special template that externalises TiddlyWiki's core JavaScript into a separate file. For example:\n\n```\ntiddlywiki editions/tw5.com-server/ --listen host=0.0.0.0 \"root-tiddler=$:/core/save/all-external-js\"\n```\n\n!! Background\n\nTiddlyWiki in the single file configuration ordinarily packs everything into a single file: your data, and the JavaScript, CSS and HTML comprising TiddlyWiki itself. This lack of dependencies is usually very convenient: it means that it is impossible for the parts of a TiddlyWiki to become separated, and enormously improves the chances of it still functioning in the future.\n\nHowever, there is some inefficiency in this arrangement because the core code is repeatedly loaded and saved every time the content of the wiki is saved. This inefficiency is partially ameliorated when working in the client server configuration because once the wiki is loaded by the browser the synchronisation process only transmits individual tiddlers back and forth to the server.\n\nThe remaining inefficiency when working in the client server configuration is that the single page wiki that is initially loaded will contain a copy of the entire core code of TiddlyWiki, making it impossible for the browser to cache it."
},
"Using the integrated static file server": {
"title": "Using the integrated static file server",
"created": "20180703095630828",
"modified": "20180703100445719",
"tags": "[[WebServer Guides]]",
"type": "text/vnd.tiddlywiki",
"text": "Any files in the subfolder `files` of the wiki folder will be available via the route `\\files\\<uri-encoded-filename>`. For example: http://127.0.0.1:8080/files/Motovun%20Jack.jpg\n\nThis can be useful for publishing large files that you don't want to incorporate into the main wiki (PDFs, videos, large images, etc.).\n\nStatic files can be referenced directly:\n\n* `[ext[./files/a-big-document.pdf]]` - to make a link to a PDF\n* `[img[./files/a-big-image.png]]` - to embed an image\n\nAlternatively, the ''_canonical_uri'' field can be used to reference the files as [[external tiddlers|ExternalImages]]."
},
"Using the read-only single tiddler view": {
"title": "Using the read-only single tiddler view",
"created": "20180703095435813",
"modified": "20180824073211367",
"tags": "[[WebServer Guides]]",
"type": "text/vnd.tiddlywiki",
"text": "TiddlyWiki's experimental single tiddler per page, read-only view uses a simplified page layout, and implements links between tiddlers, but there are no other interactive features. Compared to a full TiddlyWiki user interface, it is very lightweight and usable even over very slow connections.\n\nAlongside serving the full interactive wiki at the path `/` (e.g. http://127.0.0.1:8080/), TiddlyWiki serves each tiddler at the path `/<url-encoded-tiddler-title>`. For example:\n\n* http://127.0.0.1:8080/HelloThere\n* http://127.0.0.1:8080/Philosophy%20of%20Tiddlers\n\nOrdinary, non-system tiddlers are rendered through a special view template while system tiddlers are rendered through a template that returns the raw text of the rendered output. In this way ordinary tiddlers can be browsed by end users while system tiddlers can be included in their raw form to use them as JS, HTML or CSS templates. Additionally these defaults can be overwritten on a per tiddler basis by specifying the `_render_type` and `_render_template` fields accordingly.\n\nThe templates are controlled by these parameters:\n\n* [[system-tiddler-render-type|WebServer Parameter: system-tiddler-render-type]]\n* [[system-tiddler-template|WebServer Parameter: system-tiddler-render-template]]\n* [[tiddler-render-type|WebServer Parameter: tiddler-render-type]]\n* [[tiddler-template|WebServer Parameter: tiddler-render-template]]\n\n"
},
"WebServer API": {
"title": "WebServer API",
"created": "20180630194032981",
"modified": "20181002131850742",
"tags": "WebServer",
"type": "text/vnd.tiddlywiki",
"text": "The TiddlyWiki [[WebServer]] API supports the following routes:\n\n<<list-links \"[tag[WebServer API]sort[]]\">>"
},
"WebServer API: Delete Tiddler": {
"title": "WebServer API: Delete Tiddler",
"created": "20181002112106875",
"modified": "20181002124355314",
"tags": "[[WebServer API]]",
"type": "text/vnd.tiddlywiki",
"text": "Delete a tiddler\n\n```\nDELETE /bags/default/tiddlers/{title}\n```\n\nParameters:\n\n* ''title'' - URI encoded title of the tiddler to delete\n\nResponse:\n\n* 204 No Content"
},
"WebServer API: Force Basic Authentication Login": {
"title": "WebServer API: Force Basic Authentication Login",
"created": "20181002124825195",
"modified": "20181216181934282",
"tags": "[[WebServer API]]",
"type": "text/vnd.tiddlywiki",
"text": "Forces the server to request basic authentication login, and then redirects to the root\n\n```\nGET /login-basic\n```\n\nRequests an basic authentication from the browser, and redirects to the root if successful.\n\nParameters:\n\n* none\n\nResponse:\n\n* 302 Found\n*> `Location: /`\n* 401 Unauthorized\n*> `WWW-Authenticate: Basic realm=\"Please provide your username and password to login to <servername>\"\n\n"
},
"WebServer API: Get All Tiddlers": {
"title": "WebServer API: Get All Tiddlers",
"created": "20181002131215403",
"modified": "20181003174025431",
"tags": "[[WebServer API]]",
"type": "text/vnd.tiddlywiki",
"text": "Gets an array of all raw tiddlers, excluding the ''text'' field.\n\n```\nGET /recipes/default/tiddlers.json\n```\n\nParameters:\n\n* none\n\nResponse:\n\n\n* 200 OK\n*> `Content-Type: application/json`\n*> Body: array of tiddlers in [[TiddlyWeb JSON tiddler format]] \n"
},
"WebServer API: Get Favicon": {
"title": "WebServer API: Get Favicon",
"created": "20181002123308575",
"modified": "20181002124103586",
"tags": "[[WebServer API]]",
"type": "text/vnd.tiddlywiki",
"text": "Get the favicon for the wiki from the tiddler $:/favicon.ico\n\n```\nGET /favicon.ico\n```\n\nParameters:\n\n* none\n\nResponse:\n\n* 200 OK\n*> `Content-Type: image/x-icon`\n*> Body: image data from the tiddler $:/favicon.ico"
},
"WebServer API: Get File": {
"title": "WebServer API: Get File",
"created": "20181002123907518",
"modified": "20181002124345482",
"tags": "[[WebServer API]]",
"type": "text/vnd.tiddlywiki",
"text": "Get the content of a static file. See\n[[using the integrated static file server|Using the integrated static file server]]\n\n```\nGET /files/<pathname>\n```\n\nParameters:\n\n* ''pathname'' - URI encoded path to the file\n\nResponse:\n\n* 200 OK\n*> `Content-Type: <content-type>` (determined from file extension)\n*> Body: data retrieved from file\n* 403 Forbidden\n* 404 Not Found\n\n"
},
"WebServer API: Get Rendered Tiddler": {
"title": "WebServer API: Get Rendered Tiddler",
"created": "20181002125954409",
"modified": "20181002135401854",
"tags": "[[WebServer API]]",
"type": "text/vnd.tiddlywiki",
"text": "Gets a rendering of the specified tiddler. See [[using the read-only single tiddler view|Using the read-only single tiddler view]] for more details.\n\n```\nGET /{title}\n```\n\nParameters:\n\n* ''title'' - URI encoded title of the tiddler to render\n\nResponse:\n\n\n* 200 OK\n*> `Content-Type: <content-type>`\n*> Body: tiddler rendering\n* 404 Not Found\n"
},
"WebServer API: Get Server Status": {
"title": "WebServer API: Get Server Status",
"created": "20181002125229601",
"modified": "20181002125840235",
"tags": "[[WebServer API]]",
"type": "text/vnd.tiddlywiki",
"text": "Get server status information\n\n```\nGET /status\n```\n\nParameters:\n\n* none\n\nResponse:\n\n* 200 OK\n*> `Content-Type: application/json`\n*> Body: see below\n\nThe JSON data returned comprises the following properties:\n\n* ''username'' - the username of the currently authenticated user. If undefined, the [[WebServer Parameter: anon-username]] is returned instead\n* ''anonymous'' - true if the current user is anonymous\n* ''read_only'' - true if the current user is restricted to read only access to the server\n* ''space'' - always contains the object `{recipe: \"default\"}`\n* ''tiddlywiki_version'' - the current TiddlyWiki version\n\nFor example:\n\n```\n{\n \"username\": \"\",\n \"anonymous\": true,\n \"read_only\": false,\n \"space\": {\n \"recipe\": \"default\"\n },\n \"tiddlywiki_version\": \"5.1.18\"\n}\n```\n"
},
"WebServer API: Get Tiddler": {
"title": "WebServer API: Get Tiddler",
"created": "20181002130310180",
"modified": "20181002130457330",
"tags": "[[WebServer API]]",
"type": "text/vnd.tiddlywiki",
"text": "Gets the raw fields of a tiddler\n\n```\nGET /recipes/default/tiddlers/{title}\n```\n\nParameters:\n\n* ''title'' - URI encoded title of the tiddler to retrieve\n\nResponse:\n\n\n* 200 OK\n*> `Content-Type: application/json`\n*> Body: tiddler in [[TiddlyWeb JSON tiddler format]] \n* 404 Not Found\n"
},
"WebServer API: Get Wiki": {
"title": "WebServer API: Get Wiki",
"created": "20181002124430552",
"modified": "20181002124755134",
"tags": "[[WebServer API]]",
"type": "text/vnd.tiddlywiki",
"text": "Get the main wiki\n\n```\nGET /\n```\n\nThe wiki is composed by rendering the tiddler identified in the [[root-tiddler|WebServer Parameter: root-tiddler]] parameter with the render type in the [[root-render-type|WebServer Parameter: root-render-type]] parameter. This is then served with the content type from the [[root-serve-type|WebServer Parameter: root-serve-type]] parameter.\n\nParameters:\n\n* none\n\nResponse:\n\n* 200 OK\n*> `Content-Type: text/html`\n*> Body: data retrieved from file\n"
},
"WebServer API: Put Tiddler": {
"title": "WebServer API: Put Tiddler",
"created": "20181002131341062",
"modified": "20181002131556452",
"tags": "[[WebServer API]]",
"type": "text/vnd.tiddlywiki",
"text": "Saves the raw fields of a tiddler\n\n```\nPUT /recipes/default/tiddlers/{title}\n```\n\nThe body should be in [[TiddlyWeb JSON tiddler format]].\n\nParameters:\n\n* ''title'' - URI encoded title of the tiddler to save\n\nResponse:\n\n* 204 No Content\n*> `Content-Type: text/plain`\n*> `Etag: \"default/<title>/<changecount>:\"`\n"
},
"WebServer Anonymous Access": {
"title": "WebServer Anonymous Access",
"created": "20180701175139654",
"modified": "20180701202339421",
"tags": "[[WebServer Authentication]]",
"type": "text/vnd.tiddlywiki",
"text": "Anonymous access is only permitted if the special ''(anon)'' token is present in the [[readers|WebServer Parameter: readers]] (for reading) and optionally [[writers|WebServer Parameter: writers]] (for writing) authorization parameters.\n\n"
},
"WebServer Authentication": {
"title": "WebServer Authentication",
"created": "20180630193939007",
"modified": "20180701184519624",
"tags": "WebServer",
"type": "text/vnd.tiddlywiki",
"text": "''Authentication'' is the process of identifying the current user. TiddlyWiki supports three types of authentication:\n\n* [[Anonymous Access|WebServer Anonymous Access]] allows any user to access resources without requiring authentication. Optionally, a username can still be specified for signing edits\n* [[Basic Authentication|WebServer Basic Authentication]] requires the user to enter a username and password combination which TiddlyWiki validates against an internal database of credentials\n* [[Header Authentication|WebServer Header Authentication]] requires an external proxy to place the username of the current user in a trusted header of the request. It is often used as the basis of \"single sign-on\" features\n"
},
"WebServer Authorization": {
"title": "WebServer Authorization",
"created": "20180630194006239",
"modified": "20180904174030250",
"tags": "WebServer",
"type": "text/vnd.tiddlywiki",
"text": "''Authorization'' is the process of determining which resources may be accessed by a particular user. It occurs after [[authentication|WebServer Authentication]] has determined the identity of the user. TiddlyWiki's WebServer implements a simple authorization scheme which permits independent control of who has read and write access to a wiki.\n\nThe WebServer parameters [[readers|WebServer Parameter: readers]] and [[writers|WebServer Parameter: writers]] each contain a comma separated list of //principals// (which is to say, either usernames or certain special tokens) which should have read or write access respectively.\n\nThe available special tokens are:\n\n* ''(anon)'' - indicates all anonymous users\n* ''(authenticated)'' - indicates all authenticated users\n\n!! Read-only Mode\n\nRead-only mode is engaged when the current user is not authorized to write to the current wiki.\n\nUser interface features concerned with creating or editing content are disabled in read-only mode:\n\n* ''clone'', ''delete'', ''new-here'' and ''new-journal-here'' tiddler toolbar buttons\n* ''import'', ''manager'', ''new-tiddler'' ''new-image'' and ''new-journal'' page control buttons\n\nThe tiddler $:/status/IsReadOnly is set to `yes` when read-only mode is engaged.\n\n!! Examples\n\nThese example use the [[credentials|WebServer Parameter: credentials]] parameter to specify the location of a file containing usernames and passwords.\n\nIn the first example, read access is permitted for the users \"joe\" and \"mary\", with write access restricted to \"mary\":\n\n```\ntiddlywiki mywikifolder --listen credentials=myusers.csv readers=joe,mary writers=mary\n```\n\nIn the following example, read access is granted to all authenticated users, but only \"mary\" is granted write access:\n\n```\ntiddlywiki mywikifolder --listen credentials=myusers.csv \"readers=(authenticated)\" writers=mary\n```\n"
},
"WebServer Basic Authentication": {
"title": "WebServer Basic Authentication",
"created": "20180701175133376",
"modified": "20181216181934282",
"tags": "[[WebServer Authentication]]",
"type": "text/vnd.tiddlywiki",
"text": "[[Basic authentication|https://en.wikipedia.org/wiki/Basic_access_authentication]] is a standard [[mechanism|WebServer Authentication]] for servers to instruct browsers to prompt the user for credentials. It is recommended to use it in association with HTTPS due to the way that it passes unencrypted passwords over the network.\n\nBasic authentication is activated if credentials are specified via the [[username|WebServer Parameter: username]]/[[password|WebServer Parameter: password]] or [[credentials|WebServer Parameter: credentials]] parameters.\n\nIf [[WebServer Authorization]] is configured to allow access by both anonymous and authenticated users then by default users will not be prompted for credentials, and will be given anonymous access. To force a password prompt visit the route `/login-basic` (for example, http://127.0.0.1:8080/login-basic).\n"
},
"WebServer Guides": {
"title": "WebServer Guides",
"created": "20180703094704164",
"modified": "20180703094729900",
"tags": "WebServer",
"type": "text/vnd.tiddlywiki",
"text": "Further information on usage of the integrated [[WebServer]]:\n\n<<list-links filter:\"[tag[WebServer Guides]]\">>"
},
"WebServer Header Authentication": {
"title": "WebServer Header Authentication",
"created": "20180701175127987",
"modified": "20180702140238032",
"tags": "[[WebServer Authentication]]",
"type": "text/vnd.tiddlywiki",
"text": "Header authentication is a web integration technique enabling external entities to securely pass details of the authenticated user to an application. It is commonly used for \"single sign on\" in corporate environments.\n\nHeader authentication is activated if is configured via the [[authenticated-user-header|WebServer Parameter: authenticated-user-header]]\n"
},
"WebServer Parameter: anon-username": {
"title": "WebServer Parameter: anon-username",
"caption": "anon-username",
"created": "20180702124636124",
"modified": "20180702124836655",
"tags": "[[WebServer Parameters]]",
"type": "text/vnd.tiddlywiki",
"text": "The [[web server configuration parameter|WebServer Parameters]] ''anon-username'' provides an optional username for signing edits from anonymous users.\n\nWithout this parameter, anonymous users will be given a blank username."
},
"WebServer Parameter: authenticated-user-header": {
"title": "WebServer Parameter: authenticated-user-header",
"caption": "authenticated-user-header",
"created": "20180630180213047",
"modified": "20180702140416583",
"tags": "[[WebServer Parameters]]",
"type": "text/vnd.tiddlywiki",
"text": "The [[web server configuration parameter|WebServer Parameters]] ''authenticated-user-header'' activates [[header authentication|WebServer Header Authentication]] by specifying the name of the HTTP header that will be used to pass the username to TiddlyWiki."
},
"WebServer Parameter: credentials": {
"title": "WebServer Parameter: credentials",
"caption": "credentials",
"created": "20180630180156036",
"modified": "20180702154456353",
"tags": "[[WebServer Parameters]]",
"type": "text/vnd.tiddlywiki",
"text": "The [[web server configuration parameter|WebServer Parameters]] ''credentials'' contains the pathname of a [[CSV file|https://en.wikipedia.org/wiki/Comma-separated_values]] containing a list of username/password combinations. Using the ''credentials'' parameter activates [[WebServer Basic Authentication]].\n\nThe CSV file must contain a header row and columns labelled ''username'' and ''password''. For example:\n\n```\nusername,password\njane,do3\nandy,sm1th\nroger,m00re\n```\n\nNotes:\n\n* The optional [[username|WebServer Parameter: username]]/[[password|WebServer Parameter: password]] parameters may be used to provide an additional single set of credentials\n* The pathname is taken relative to the wiki folder\n* Passwords cannot contain the comma character `,`\n* The header row must be present\n\n"
},
"WebServer Parameter: csrf-disable": {
"title": "WebServer Parameter: csrf-disable",
"caption": "csrf-disable",
"created": "20180630180340448",
"modified": "20190419171355307",
"tags": "[[WebServer Parameters]]",
"type": "text/vnd.tiddlywiki",
"text": "The [[web server configuration parameter|WebServer Parameters]] ''csrf-disable'' causes the usual [[cross-site request forgery|https://en.wikipedia.org/wiki/Cross-site_request_forgery]] checks to be disabled. This might be necessary in unusual or experimental configurations.\n\nSetting ''csrf-disable'' to `yes` disables the CSRF checks; `no` (or any other value) enables them.\n\nThe only currently implemented check is the use of a [[custom header|https://www.owasp.org/index.php/Cross-Site_Request_Forgery_(CSRF)_Prevention_Cheat_Sheet#Protecting_REST_Services:_Use_of_Custom_Request_Headers]] called `x-requested-with` that must contain the string `TiddlyWiki` in order for write requests to succeed."
},
"WebServer Parameter: debug-level": {
"title": "WebServer Parameter: debug-level",
"caption": "debug-level",
"created": "20180630180535728",
"modified": "20180702142154308",
"tags": "[[WebServer Parameters]]",
"type": "text/vnd.tiddlywiki",
"text": "The [[web server configuration parameter|WebServer Parameters]] ''debug-level'' determines the level of debugging information printed to the console:\n\n* ''full'' - maximum logging\n* ''none'' - no logging\n"
},
"WebServer Parameter: host": {
"title": "WebServer Parameter: host",
"caption": "host",
"created": "20180630180123321",
"modified": "20181107183151913",
"tags": "[[WebServer Parameters]]",
"type": "text/vnd.tiddlywiki",
"text": "The [[web server configuration parameter|WebServer Parameters]] ''host'' is the IP address on which the server listens. The most common settings are:\n\n* ''127.0.0.1'' (default) - only listens for connections from browsers on the same computer \n* ''0.0.0.0'' - listens for connections on all network interfaces, and thus from any browser on a reachable network\n* ''n.n.n.n'' - listens for connections on the network interface with the specified IP address\n\n''Note:'' Using ''0.0.0.0'' or ''n.n.n.n'' in a public environment (e.g. coffee shop, library, airport) is inadvisable as it ''will'' expose your system to possible intrusion."
},
"WebServer Parameter: password": {
"title": "WebServer Parameter: password",
"caption": "password",
"created": "20180630170932602",
"modified": "20180630171122879",
"tags": "[[WebServer Parameters]]",
"type": "text/vnd.tiddlywiki",
"text": "The [[web server configuration parameter|WebServer Parameters]] ''password'', is used with its companion [[username|WebServer Parameter: username]] as a shortcut for setting user credentials for [[WebServer Basic Authentication]].\n"
},
"WebServer Parameter: path-prefix": {
"title": "WebServer Parameter: path-prefix",
"caption": "path-prefix",
"created": "20180630180514893",
"modified": "20180702154716090",
"tags": "[[WebServer Parameters]]",
"type": "text/vnd.tiddlywiki",
"text": "The [[web server configuration parameter|WebServer Parameters]] ''path-prefix'' can be used to set an optional prefix for all paths served.\n\nThis example causes the server to serve from http://127.0.0.1/MyApp instead of the default http://127.0.0.1/MyApp.\n\n```\ntiddlywiki mywikifolder --listen \"path-prefix=/MyApp\"\n```\n"
},
"WebServer Parameter: port": {
"title": "WebServer Parameter: port",
"caption": "port",
"created": "20180630180552254",
"modified": "20180702155017130",
"tags": "[[WebServer Parameters]]",
"type": "text/vnd.tiddlywiki",
"text": "The [[web server configuration parameter|WebServer Parameters]] ''port'' specifies the TCP port on which the server will listen for connections. The default value is `8080`.\n\nThe ''port'' parameter accepts two types of value:\n\n* Numerical values are interpreted as a decimal port number\n* Non-numeric values are interpreted as an environment variable from which the port should be read\n\nThis example configures the server to listen on port 8090:\n\n```\ntiddlywiki mywikifolder --listen port=8090\n```\n\nThis example configures the server to listen on the port specified in the environment variable `THE_PORT`:\n\n```\ntiddlywiki mywikifolder --listen port=THE_PORT\n```\n"
},
"WebServer Parameter: readers": {
"title": "WebServer Parameter: readers",
"caption": "readers",
"created": "20180630180405978",
"modified": "20180702155139006",
"tags": "[[WebServer Parameters]]",
"type": "text/vnd.tiddlywiki",
"text": "The [[web server configuration parameter|WebServer Parameters]] ''readers'' is used to specify the security principals with read access to the wiki. See [[WebServer Authorization]] for more details."
},
"WebServer Parameter: root-render-type": {
"title": "WebServer Parameter: root-render-type",
"caption": "root-render-type",
"created": "20180630180301861",
"modified": "20180702160458499",
"tags": "[[WebServer Parameters]]",
"type": "text/vnd.tiddlywiki",
"text": "The [[web server configuration parameter|WebServer Parameters]] ''root-render-type'' determines the way that the [[root wiki tiddler|WebServer Parameter: root-tiddler]] is rendered:\n\n* `text/plain` (default) -- the plain text content of the output is rendered (i.e. HTML elements are ignored)\n* `text/html` -- the full HTML content of the output is rendered (i.e. including HTML elements)\n\n"
},
"WebServer Parameter: root-serve-type": {
"title": "WebServer Parameter: root-serve-type",
"caption": "root-serve-type",
"created": "20180630180233285",
"modified": "20180702160557700",
"tags": "[[WebServer Parameters]]",
"type": "text/vnd.tiddlywiki",
"text": "The [[web server configuration parameter|WebServer Parameters]] ''root-serve-type'' determines the content type with which the root wiki tiddler is rendered. The default is `text/html`."
},
"WebServer Parameter: root-tiddler": {
"title": "WebServer Parameter: root-tiddler",
"caption": "root-tiddler",
"created": "20180630180320376",
"modified": "20180702160659310",
"tags": "[[WebServer Parameters]]",
"type": "text/vnd.tiddlywiki",
"text": "The [[web server configuration parameter|WebServer Parameters]] ''root-tiddler'' determines the title of the tiddler that is rendered as the root wiki. The default setting is `$:/core/save/all`.\n"
},
"WebServer Parameter: system-tiddler-render-template": {
"title": "WebServer Parameter: system-tiddler-render-template",
"caption": "system-tiddler-render-template",
"created": "20180808094408813",
"modified": "20180810053154669",
"tags": "[[WebServer Parameters]]",
"type": "text/vnd.tiddlywiki",
"text": "The [[web server configuration parameter|WebServer Parameters]] ''system-tiddler-render-template'' is used to specify the template for serving system tiddlers in the [[read-only single tiddler view|Using the read-only single tiddler view]]. The default value is `$:/core/templates/wikified-tiddler` which renders the tiddler raw, without any special viewing template.\n\n<<.tip \"This setting may be overwritten by specifying the `_render_template` field of a tiddler.\">>"
},
"WebServer Parameter: system-tiddler-render-type": {
"title": "WebServer Parameter: system-tiddler-render-type",
"caption": "system-tiddler-render-type",
"created": "20180808092758577",
"modified": "20180810053136312",
"tags": "[[WebServer Parameters]]",
"type": "text/vnd.tiddlywiki",
"text": "The [[web server configuration parameter|WebServer Parameters]] ''system-tiddler-render-type'' is used to specify the render type for serving system tiddlers in the [[read-only single tiddler view|Using the read-only single tiddler view]]. The default value is `text/plain`, causing the raw text of rendered system tiddlers to be returned. Alternatively, `text/html` can be used to cause the full HTML of the rendered tiddlers to be returned.\n\n<<.tip \"This setting may be overwritten by specifying the `_render_type` field of a tiddler.\">>"
},
"WebServer Parameter: tiddler-render-template": {
"title": "WebServer Parameter: tiddler-render-template",
"caption": "tiddler-render-template",
"created": "20180808094255388",
"modified": "20180810053232494",
"tags": "[[WebServer Parameters]]",
"type": "text/vnd.tiddlywiki",
"text": "The [[web server configuration parameter|WebServer Parameters]] ''tiddler-render-template'' is used to specify the template for serving ordinary, non-system tiddlers in the [[read-only single tiddler view|Using the read-only single tiddler view]]. The default value is `$:/core/templates/server/static.tiddler.html` which renders tiddlers in a lightweight page with a simple sidebar.\n\n<<.tip \"This setting may be overwritten by specifying the `_render_template` field of a tiddler.\">>"
},
"WebServer Parameter: tiddler-render-type": {
"title": "WebServer Parameter: tiddler-render-type",
"caption": "tiddler-render-type",
"created": "20180808093108099",
"modified": "20180810053128531",
"tags": "[[WebServer Parameters]]",
"type": "text/vnd.tiddlywiki",
"text": "The [[web server configuration parameter|WebServer Parameters]] ''tiddler-render-type'' is used to specify the render type for serving ordinary, non-system tiddlers in the [[read-only single tiddler view|Using the read-only single tiddler view]]. The default value is `text/html`, causing the full HTML of the rendered output to be returned. Alternatively, `text/html` can be used to cause the raw text of rendered system tiddlers to be returned.\n\n<<.tip \"This setting may be overwritten by specifying the `_render_type` field of a tiddler.\">>"
},
"WebServer Parameter: tls-cert": {
"title": "WebServer Parameter: tls-cert",
"caption": "tls-cert",
"created": "20180630180449581",
"modified": "20180703100612649",
"tags": "[[WebServer Parameters]]",
"type": "text/vnd.tiddlywiki",
"text": "The optional [[web server configuration parameter|WebServer Parameters]] ''tls-cert'' contains the pathname to the certificate file required when running the web server under HTTPS. The pathname is taken relative to the wiki folder.\n\nSee [[Using HTTPS]] for details."
},
"WebServer Parameter: tls-key": {
"title": "WebServer Parameter: tls-key",
"caption": "tls-key",
"created": "20180630180435405",
"modified": "20180703100619863",
"tags": "[[WebServer Parameters]]",
"type": "text/vnd.tiddlywiki",
"text": "The optional [[web server configuration parameter|WebServer Parameters]] ''tls-key'' contains the pathname to the key file required when running the web server under HTTPS. The pathname is taken relative to the wiki folder.\n\nSee [[Using HTTPS]] for details."
},
"WebServer Parameter: username": {
"title": "WebServer Parameter: username",
"caption": "username",
"created": "20180628130114210",
"modified": "20180702124624290",
"tags": "[[WebServer Parameters]]",
"type": "text/vnd.tiddlywiki",
"text": "The [[web server configuration parameter|WebServer Parameters]] ''username'', in conjunction with its companion [[password|WebServer Parameter: password]]:\n\n* Enables [[Basic Authentication|WebServer Basic Authentication]] with the specified username/password combination being added to any credentials specified with the [[credentials|WebServer Parameter: credentials]] parameter\n* The specified username is used as a default value for the [[readers|WebServer Parameter: readers]] and [[writers|WebServer Parameter: writers]] authorization parameters if they are not specified\n\n!! Examples\n\nServe anonymous users, setting the username to \"joe\":\n\n```\ntiddlywik mywikifolder --listen anon-username=joe\n```\n\nRestrict access to the user \"joe\" with a password of \"secret\":\n\n```\ntiddlywik mywikifolder --listen username=joe password=secret\n```\n\n"
},
"WebServer Parameter: writers": {
"title": "WebServer Parameter: writers",
"caption": "writers",
"created": "20180630180359439",
"modified": "20180702155133411",
"tags": "[[WebServer Parameters]]",
"type": "text/vnd.tiddlywiki",
"text": "The [[web server configuration parameter|WebServer Parameters]] ''writers'' is used to specify the security principals with write access to the wiki. See [[WebServer Authorization]] for more details."
},
"WebServer Parameters": {
"title": "WebServer Parameters",
"created": "20180628125910136",
"modified": "20180630170919859",
"tags": "WebServer",
"type": "text/vnd.tiddlywiki",
"text": "The following configuration parameters are supported by the integrated [[WebServer]]:\n\n<<list-links filter:\"[tag[WebServer Parameters]]\">>"
},
"WebServer": {
"title": "WebServer",
"created": "20180626150526207",
"modified": "20181216181934282",
"tags": "ListenCommand ServerCommand Features",
"type": "text/vnd.tiddlywiki",
"text": "When [[running under Node.js|TiddlyWiki on Node.js]], TiddlyWiki includes a simple HTTP/HTTPS web server that allows you to use it from any browser running on the same machine or over a network.\n\n<<.tip \"\"\"The web server includes a very simple mechanism allowing multiple users to log in with different credentials. The implementation is designed to be simple and easy to use, and would not generally be considered robust enough for use on the open internet. It is intended for use by individuals or small groups on a trusted network. It is recommended to use an external proxy before exposing it on the Internet.\"\"\">>\n\n! How It Works\n\nThe web server listens for requests coming over the network, and performs the following actions in turn:\n\n* [[Authentication|WebServer Authentication]] is the process of identifying the current user. TiddlyWiki supports three types of authentication: [[Anonymous|WebServer Anonymous Access]], [[Basic|WebServer Basic Authentication]] and [[Header|WebServer Header Authentication]]\n* [[Authorization|WebServer Authorization]] is the process of determining which resources may be accessed by a particular user. TiddlyWiki implements a simple scheme whereby read and write access to the wiki can be independently controlled.\n* Routing is the process of dispatching the request to the [[API handler|WebServer API]], and returning any required data.\n\n! Usage\n\n!! Anonymous Access \n\nThe web server is started with the ListenCommand (which supersedes the older ServerCommand). All \nthe NamedCommandParameters are optional, so the simplest form is:\n\n```\ntiddlywiki mywikifolder --listen\n```\n\nVisit http://127.0.0.1:8080/ to access the wiki. Access is anonymous, so anyone can read or write to the wiki.\n\nThis will typically be available only to users on the local machine. For information on how to open the instance to the local network see the Web Server [[host|WebServer Parameter: host]] parameter entry. \n\n!! Authenticated Access\n\nAdding [[username|WebServer Parameter: username]] and [[password|WebServer Parameter: password]] parameters enforces basic authentication for both reading and writing:\n\n```\ntiddlywiki mywikifolder --listen username=test password=tset\n```\n\nVisiting the wiki will prompt for a username and password, and access is denied if they do not match the provided credentials.\n\n!! Anonymous Read, Authenticated Write\n\nThis example adds the [[authorization|WebServer Authorization]] parameters [[readers|WebServer Parameter: readers]] and [[writers|WebServer Parameter: writers]] to grant read access to anonymous users, but require authentication as \"joe\" in order to gain write access.\n\n> Note that anonymous users can trigger a username/password prompt by visiting the route `\\login-basic` (eg http://127.0.0.1:8080/login-basic).\n\n```\ntiddlywiki mywikifolder --listen \"readers=(anon)\" writers=joe username=joe password=bloggs\n```\n\nNote the double quotes that are required for parameters containing special characters.\n\n! Arguments\n\nThe full list of available optional parameters is:\n\n<<list-links filter:\"[tag[WebServer Parameters]]\">>\n\n! Guides\n\nFurther information on usage of the integrated [[WebServer]]:\n\n<<list-links filter:\"[tag[WebServer Guides]]\">>\n"
},
"ActionCreateTiddlerWidget": {
"title": "ActionCreateTiddlerWidget",
"caption": "action-createtiddler",
"created": "20161020152745942",
"modified": "20190604113017742",
"tags": "Widgets ActionWidgets",
"type": "text/vnd.tiddlywiki",
"text": "! Introduction\n\nThe ''action-createtiddler'' widget is an [[action widget|ActionWidgets]] that creates new tiddlers. ActionWidgets are used within triggering widgets such as the ButtonWidget.\n\nThere are several differences from the [[tm-new-tiddler message|WidgetMessage: tm-new-tiddler]]:\n\n* The new tiddler is not automatically displayed in the [[story river|StoryRiver]]\n* The title of the new tiddler is made available for subsequent operations\n\n! Content and Attributes\n\nThe ''action-createtiddler'' widget is invisible. Any content within it is ignored.\n\n|!Attribute |!Description |\n|$basetitle |The initial title that will be attempted. If a tiddler with that title already exists, then a numerical counter is added to the title and incremented until it is unique|\n|$savetitle |A text reference identifying a field or index into which the title of the newly created tiddler will be stored after it is created |\n|$savedrafttitle |<<.from-version \"5.1.20\">> A text reference identifying a field or index into which the draft title associated with the newly created tiddler will be stored after it is created. This is useful when using a sequence of action widgets to create a new tiddler, put it into edit mode, and position it within the list of its parent tag |\n|$timestamp |Specifies whether the timestamp(s) of the target tiddler will be updated (''modified'' and ''modifier'', plus ''created'' and ''creator'' for newly created tiddlers). Can be \"yes\" (the default) or \"no\" |\n|//{any attributes not starting with $}// |Each attribute name specifies a field to be created in the new tiddler |\n\n! Examples\n\n<$macrocall $name='wikitext-example-without-html'\nsrc={{ActionCreateTiddlerWidget Example}}/>\n"
},
"ActionCreateTiddlerWidget Example": {
"title": "ActionCreateTiddlerWidget Example",
"created": "20161020153426686",
"modified": "20161020155142990",
"tags": "ActionCreateTiddlerWidget",
"type": "text/vnd.tiddlywiki",
"text": "New button caption: <$edit-text tiddler=\"$:/state/new-button-caption\" tag=\"input\" default=\"\"/>\n\n<$button>\n<$action-createtiddler $basetitle=\"Homemade Button\" tags=\"$:/tags/PageControls\" text={{$:/state/new-button-caption}}/>\nCreate non-functional page control button\n</$button>"
},
"ActionDeleteFieldWidget": {
"title": "ActionDeleteFieldWidget",
"caption": "action-deletefield",
"created": "20141025120850184",
"modified": "20150220162042000",
"tags": "Widgets ActionWidgets",
"type": "text/vnd.tiddlywiki",
"text": "! Introduction\n\nThe ''action-deletefield'' widget is an [[action widget|ActionWidgets]] that deletes specified fields of a tiddler. ActionWidgets are used within triggering widgets such as the ButtonWidget.\n\n! Content and Attributes\n\nThe ''action-deletefield'' widget is invisible. Any content within it is ignored.\n\n|!Attribute |!Description |\n|$tiddler |The title of the tiddler whose fields are to be modified (if not provided defaults to the [[current tiddler|Current Tiddler]]) |\n|$field |Optional name of a field to delete |\n|//{any attributes not starting with $}// |Each attribute name specifies a field to be deleted. The attribute value is ignored and need not be specified |\n\n! Examples\n\nHere is an example of a button that deletes the caption and tags fields of the current tiddler:\n\n<$macrocall $name='wikitext-example-without-html'\nsrc='<$button>\n<$action-deletefield caption tags/>\nDelete \"caption\" and \"tags\"\n</$button>'/>\n\nHere is an example of a button that deletes the modified date and tags fields of the tiddler HelloThere:\n\n<$macrocall $name='wikitext-example-without-html'\nsrc='<$button>\n<$action-deletefield $tiddler=\"HelloThere\" modified tags/>\nDelete \"modified\" and \"tags\" from ~HelloThere\n</$button>'/>\n\nHere is an example of a button that uses the optional $field attribute to delete the text field of the tiddler HelloThere:\n\n<$macrocall $name='wikitext-example-without-html'\nsrc='<$button>\n<$action-deletefield $tiddler=\"HelloThere\" $field=\"text\"/>\nDelete text from ~HelloThere\n</$button>'/>\n"
},
"ActionDeleteTiddlerWidget": {
"title": "ActionDeleteTiddlerWidget",
"caption": "action-deletetiddler",
"created": "20141025120850184",
"modified": "20141106173455527",
"tags": "Widgets ActionWidgets",
"type": "text/vnd.tiddlywiki",
"text": "! Introduction\n\nThe ''action-deletetiddler'' widget is an [[action widget|ActionWidgets]] that deletes tiddlers. ActionWidgets are used within triggering widgets such as the ButtonWidget.\n\nThere are several differences compared to the [[WidgetMessage: tm-delete-tiddler]]:\n\n* The user is not prompted to confirm the deletion\n* No automatic updating of the story list\n* No special handling of draft tiddlers\n\n! Content and Attributes\n\nThe ''action-deletetiddler'' widget is invisible. Any content within it is ignored.\n\n|!Attribute |!Description |\n|$tiddler |Optional title of the tiddler to be deleted |\n|$filter |Optional filter identifying tiddlers to be deleted |\n\n! Examples\n\nHere is an example of a button that deletes the tiddler HelloThere:\n\n<$macrocall $name='wikitext-example-without-html'\nsrc='<$button>\n<$action-deletetiddler $tiddler=\"HelloThere\"/>\nDelete \"~HelloThere\"\n</$button>'/>\n\nHere is an example of a button that deletes all tiddlers tagged [[TableOfContents]]:\n\n<$macrocall $name='wikitext-example-without-html'\nsrc='<$button>\n<$action-deletetiddler $filter=\"[tag[TableOfContents]]\"/>\nDelete tiddlers tagged \"~TableOfContents\"\n</$button>'/>\n"
},
"ActionListopsWidget": {
"title": "ActionListopsWidget",
"caption": "action-listops",
"created": "20141025120850184",
"list": "efg hlm pqr",
"modified": "20151228083329099",
"myfield": "",
"revision": "0",
"tags": "ActionWidgets Widgets",
"type": "text/vnd.tiddlywiki",
"text": "\\define .operator-rows(filter)\n<$list filter=\"$filter$\"><tr>\n<td><$link to={{!!title}}>{{!!caption}}</$link></td>\n<td>{{!!op-purpose}} <$list filter=\"[all[current]tag[Common Operators]]\">{{$:/core/images/done-button}}</$list></td>\n<td align=\"center\"><$list filter=\"[all[current]tag[Negatable Operators]]\">`!`</$list></td>\n</tr></$list>\n\\end\n\n\\define .group-heading(_)\n<tr class=\"doc-table-subheading\"><th colspan=\"3\" align=\"center\">$_$</th></tr>\n\\end\n\n! Introduction\n\nThe ''action-listops'' widget is an [[action widget|ActionWidgets]] that manipulates user lists in any field or data index. ActionWidgets are used within triggering widgets such as the ButtonWidget.\n\n! Content and Attributes\n\nThe ''action-listops'' widget is invisible. Any content within it is ignored.\n\n|!Attribute |!Description |\n|$tiddler |The title of the tiddler whose lists are to be modified (if not provided defaults to the [[current tiddler|Current Tiddler]] |\n|$field |The name of a field to be manipulated as a list (defaults to 'list') |\n|$index |Optional index of a property in a [[data tiddler|DataTiddlers]] index to be manipulated as a list |\n|$filter |An optional filter expression, the output of which will be saved to the field/index being manipulated |\n|$subfilter |An optional subfilter expression, which takes the list being manipulated as input, and saves the modified list back to the field/index being manipulated |\n|$tags |An optional subfilter expression, which takes the 'tags' field of the target tiddler as input, and saves the modified list of tags back to the 'tags' field |\n\n! Extended Filter Operators\n\nA number of [[extended filter operators|The Extended Listops Filters]] are necessary for the manipulation of lists. These operators have been designed primarily for use in subfilter expressions whereby the modified current list is returned in place of the current list.\n\n<table>\n<<.group-heading \"Listops Operators\">>\n<tr>\n<th align=\"left\">Operator</th>\n<th align=\"left\">Purpose</th>\n<th></th>\n</tr>\n<<.operator-rows \"[tag[Filter Operators]tag[Listops Operators]tag[Order Operators]!tag[String Operators]!tag[Tag Operators]!tag[Special Operators]sort[]]\">>\n</table>\n\n! Examples\n\nIn this example we shall populate and then clear a list in an ordinary field (myfield) of this tiddler (the default.)\n\n<$macrocall $name='wikitext-example-without-html'\nsrc=\"\"\"<$button>\n<$action-listops $field=\"myfield\" $subfilter=\"efg hlm pqr\"/>\nPopulate 'myfield'\n</$button>\n<$button>\n<$action-listops $field=\"myfield\" $subfilter=\"abc xyz\"/>\nAppend More Items\n</$button>\n<$button>\n<$action-listops $field=\"myfield\" $subfilter=\"-abc -hlm\"/>\nRemove Items\n</$button>\n<$button>\n<$action-listops $field=\"myfield\" $filter=\"[[]]\"/>\nClear 'myfield'\n</$button>\n\n<$list filter=\"[list[!!myfield]]\">\n\n</$list>\"\"\"/>\n\n---\nIn this example we shall append and remove items from a list in an ordinary field (myfield) of this tiddler (the default) and sort the resultant list. We shall then remove some of the appended items and sort the resulting list in reverse order.\n\n<$macrocall $name='wikitext-example-without-html'\nsrc=\"\"\"<$button>\n<$action-listops $field=\"myfield\" $subfilter=\"-efg ijk xyz [[this is a title]] +[sort[]]\"/>\nMangle List\n</$button>\n<$button>\n<$action-listops $field=\"myfield\" $subfilter=\"-xyz -[[this is a title]] +[!sort[]]\"/>\nUnmangle List\n</$button>\n\n<$list filter=\"[list[!!myfield]]\">\n\n</$list>\"\"\"/>\n\n---\nIn this example we shall append a few tags to the 'tags' field of this tiddler (the default.) We shall then remove some of the appended tags. \n\n<$macrocall $name='wikitext-example-without-html'\nsrc=\"\"\"<$button>\n<$action-listops $tags=\"+[append{Days of the Week!!short}] $:/tag1 $:/tag2 $:/tag3\"/>\nPopulate 'tags'\n</$button>\n<$button>\n<$action-listops $tags=\"+[!remove:2{!!tags}]\"/>\nRemove Last Two Tags\n</$button>\n<$button>\n<$action-listops $tags=\"+[!prefix[$:/]]\"/>\nRemove System Tags\n</$button>\n<$button>\n<$action-listops $tags=\"-Mon -Tue\"/>\nRemove Mon and Tue\n</$button>\n<$button>\n<$action-listops $tags=\"+[prefix[$:/]] ActionWidgets Widgets\"/>\nRemove User Tags\n</$button>\n<$button>\n<$action-listops $tags=\"+[[]] ActionWidgets Widgets\"/>\nClear Tags\n</$button>\n\n<$list filter=\"[list[!!tags]]\">\n\n</$list>\"\"\"/>\n"
},
"ActionNavigateWidget": {
"title": "ActionNavigateWidget",
"caption": "action-navigate",
"created": "20141008163514491",
"modified": "20150220162057000",
"tags": "Widgets ActionWidgets",
"type": "text/vnd.tiddlywiki",
"text": "! Introduction\n\nThe ''action-navigate'' widget is an [[action widget|ActionWidgets]] that sends a [[tm-navigate|WidgetMessage: tm-navigate]] message back up the widget tree. ActionWidgets are used within triggering widgets such as the ButtonWidget.\n\n! Content and Attributes\n\nThe ''action-navigate'' widget is invisible. Any content within it is ignored.\n\n|!Attribute |!Description |\n|$to |The title of the target tiddler for the navigation (if not provided defaults to the [[current tiddler|Current Tiddler]] |\n|$scroll |Optional parameter determining whether the navigation will also cause a scroll to the target tiddler (see below) |\n\n!! Scroll handling\n\nThe optional `$scroll` attribute can be set to \"yes\" to force scrolling to occur to bring the target tiddler into view. If set to \"no\" then scrolling does not occur. If the `$scroll` attribute is omitted then scrolling occurs unless either:\n\n* the control key is pressed\n* the action was initiated with the middle mouse button (if available)\n\nNote that if navigating to multiple tiddlers at once you should use the same `$scroll` setting for all of them.\n\n! Examples\n\nHere is an example of button that navigates to two different tiddlers at once:\n\n<$macrocall $name='wikitext-example-without-html'\nsrc='<$button>\n<$action-navigate $to=\"ButtonWidget\"/>\n<$action-navigate $to=\"ActionWidgets\"/>\nClick me!\n</$button>'/>\n"
},
"ActionSendMessageWidget": {
"title": "ActionSendMessageWidget",
"caption": "action-sendmessage",
"created": "20141008134309742",
"modified": "20150518210909583",
"tags": "Widgets ActionWidgets",
"type": "text/vnd.tiddlywiki",
"text": "! Introduction\n\nThe ''action-sendmessage'' widget is an [[action widget|ActionWidgets]] that sends a [[message|Messages]] back up the widget tree. ActionWidgets are used within triggering widgets such as the ButtonWidget.\n\n! Content and Attributes\n\nThe ''action-sendmessage'' widget is invisible. Any content within it is ignored.\n\n|!Attribute |!Description |\n|$message |The message to send (eg, [[WidgetMessage: tm-new-tiddler]]) |\n|$param |Optional parameter string whose meaning is dependent on the message being sent |\n|$name |Optional name of additional parameter |\n|$value |Value for optional parameter whose name is specified in `$name` |\n|//{any attributes not starting with $}// |Multiple additional, optional named parameters that are attached to the message |\n\n! Examples\n\nHere is an example of button that displays both a notification and a wizard, and creates a new tiddler with tags and text:\n\n<$macrocall $name='wikitext-example-without-html'\nsrc='<$button>\n<$action-sendmessage $message=\"tm-modal\" $param=\"SampleWizard\"/>\n<$action-sendmessage $message=\"tm-notify\" $param=\"SampleNotification\"/>\n<$action-sendmessage $message=\"tm-new-tiddler\" title=\"This is newly created tiddler\" tags=\"OneTag [[Another Tag]]\" text=<<now \"Today is DDth, MMM YYYY\">>/>\nClick me!\n</$button>'/>\n"
},
"ActionSetFieldWidget": {
"title": "ActionSetFieldWidget",
"caption": "action-setfield",
"created": "20141025120850184",
"modified": "20150806171403798",
"tags": "Widgets ActionWidgets",
"type": "text/vnd.tiddlywiki",
"text": "! Introduction\n\nThe ''action-setfield'' widget is an [[action widget|ActionWidgets]] that assigns values to the fields of a tiddler. ActionWidgets are used within triggering widgets such as the ButtonWidget.\n\n! Content and Attributes\n\nThe ''action-setfield'' widget is invisible. Any content within it is ignored.\n\n|!Attribute |!Description |\n|$tiddler |The title of the tiddler whose fields are to be modified (if not provided defaults to the [[current tiddler|Current Tiddler]]) |\n|$field |Optional name of a field to be assigned the $value attribute |\n|$index |Optional index of a property in a [[data tiddler|DataTiddlers]] to be assigned the $value attribute|\n|$value |The value to be assigned to the field or index identified by the $field or $index attribute. If neither is specified then the value is assigned to the text field. If no value is specified, $field or $index will be deleted.|\n|$timestamp |Specifies whether the timestamp(s) of the target tiddler will be updated (''modified'' and ''modifier'', plus ''created'' and ''creator'' for newly created tiddlers). Can be \"yes\" (the default) or \"no\" |\n|//{any attributes not starting with $}// |Each attribute name specifies a field to be modified with the attribute value providing the value to assign to the field |\n\n! Examples\n\nHere is an example of a pair of buttons that open the control panel directly to specified tabs. They work by using ''action-setfield'' to set the state tiddler for the control panel tabs.\n\n<$macrocall $name='wikitext-example-without-html'\nsrc='<$button>\n<$action-setfield $tiddler=\"$:/state/tab-1749438307\" text=\"$:/core/ui/ControlPanel/Appearance\"/>\n<$action-navigate $to=\"$:/ControlPanel\"/>\nGo to Control Panel \"Appearance\" tab\n</$button>\n\n<$button>\n<$action-setfield $tiddler=\"$:/state/tab-1749438307\" text=\"$:/core/ui/ControlPanel/Settings\"/>\n<$action-navigate $to=\"$:/ControlPanel\"/>\nGo to Control Panel \"Settings\" tab\n</$button>'/>\n\nHere is an example of a button that assigns tags and fields to the tiddler HelloThere, and then navigates to it and opens the tiddler info panel on the \"Fields\" tab:\n\n<$macrocall $name='wikitext-example-without-html'\nsrc='<$button>\n<$action-setfield $tiddler=\"HelloThere\" tags=\"NewTag [[Another New Tag]]\" color=\"red\"/>\n<$action-setfield $tiddler=\"$:/state/popup/tiddler-info--1779055697\" text=\"(568,1443,33,39)\"/>\n<$action-setfield $tiddler=\"$:/state/tab--1890574033\" text=\"$:/core/ui/TiddlerInfo/Fields\"/>\n<$action-navigate $to=\"HelloThere\"/>\nModify ~HelloThere\n</$button>'/>\n\nHere is an example of a button that assigns tags and fields to the tiddler HelloThere, and then initiates editing it:\n\n<$macrocall $name='wikitext-example-without-html'\nsrc='<$button>\n<$action-setfield $tiddler=\"HelloThere\" tags=\"MoreTag [[Further More Tags]]\" color=\"green\"/>\n<$action-sendmessage $message=\"tm-edit-tiddler\" $param=\"HelloThere\"/>\nEdit ~HelloThere\n</$button>'/>\n\nHere is an example of a button that opens the control panel directly to the \"Appearance\" tabs:\n\n<$macrocall $name='wikitext-example-without-html'\nsrc='<$button>\n<$action-setfield $tiddler=\"$:/state/tab-1749438307\" $field=\"text\" $value=\"$:/core/ui/ControlPanel/Appearance\"/>\n<$action-navigate $to=\"$:/ControlPanel\"/>\nGo to Control Panel \"Appearance\" tab\n</$button>'/>\n"
},
"ActionWidgets": {
"title": "ActionWidgets",
"created": "20141008134425548",
"modified": "20160429165240169",
"tags": "Widgets",
"type": "text/vnd.tiddlywiki",
"text": "Action widgets are a special type of widget that have no visual appearance but perform an action when triggered (such as sending a message, navigating to a tiddler, or changing the value of a tiddler). Action widgets are used in association with other widgets that trigger those actions (for example, the ButtonWidget).\n\nThe following action widgets are provided:\n\n<<list-links \"[tag[ActionWidgets]]\">>\n\nThere are two ways to use action widgets:\n\n* Using the `actions` attribute of the triggering widget (this is the preferred way)\n* Embedding the actions within the triggering widget (an older technique that is now deprecated)\n\n!! Assigning action widgets with the `actions` attribute\n\nThe action widgets are passed as a string to the `actions` attribute of the triggering widget. Usually, it is more convenient to use a macro to assign the action widgets to a variable. For example, here is a button that triggers two actions of sending different messages:\n\n```\n\\define my-actions()\n<$action-sendmessage $message=\"tm-home\"/>\n<$action-sendmessage $message=\"tm-full-screen\"/>\n\\end\n\n<$button actions=<<my-actions>>>\nClick me!\n</$button>\n```\n\n!! Assigning action widgets by embedding\n\nThe action widgets need not be immediate children of their triggering widget, but they must be descendents of it. The actions are performed in sequence. Here is the above example rewritten to use embedding:\n\n```\n<$button>\n<$action-sendmessage $message=\"tm-home\"/>\n<$action-sendmessage $message=\"tm-full-screen\"/>\nClick me!\n</$button>\n```\n\n"
},
"BrowseWidget": {
"title": "BrowseWidget",
"caption": "browse",
"created": "20131024141900000",
"modified": "20170718142410367",
"tags": "Widgets",
"type": "text/vnd.tiddlywiki",
"text": "! Introduction\n\nThe browse widget displays an HTML file browser button that allows the user to choose one or more files to import. It sends a [[WidgetMessage: tm-import-tiddlers]] carrying a JSON representation of the tiddlers imported from the files up through its parents. This message is usually handled by the NavigatorWidget which adds the tiddlers to the store and updates the story to display them.\n\n! Content and Attributes\n\nThe content of the `<$browse>` widget is ignored.\n\n|!Attribute |!Description |\n|multiple |Set to \"multiple\" to select multiple file upload |\n|deserializer |<<.from-version \"5.1.15\">> Optional name of deserializer to be used (by default the deserializer is derived from the file extension or type) |\n|tooltip |Optional tooltip text |\n|message |Optional override of widget message to be generated. The parameter for the message will be the JavaScript object `event.target.files` |\n\nOn iPhone/iPad choosing the multiple option will remove the ability to take photographs/videos directly into TiddlyWiki.\n\n''e.g.''\n\n```\n<$browse>\n```\n\nrenders as:\n\n<$browse>\n\n"
},
"ButtonWidget": {
"title": "ButtonWidget",
"caption": "button",
"created": "20131024141900000",
"modified": "20170406085706139",
"tags": "Widgets",
"type": "text/vnd.tiddlywiki",
"text": "! Introduction\n\nThe button widget displays an HTML `<button>` element that can perform a combination of optional actions when clicked:\n\n* Executing any ActionWidgets passed in the `actions` attribute\n* Executing any ActionWidgets that are immediate children of the button widget\n* Execute any integrated actions:\n** Navigate to a specified tiddler\n** Dispatch a user defined [[widget message|Messages]]\n** Trigger a user defined [[popup|PopupMechanism]]\n** Assign new text to a specified tiddler\n\nThe integrated actions are provided as a shortcut for invoking common actions. The same functionality is available via ActionWidgets, with the exception of the support for highlighting selected popups.\n\n! Content and Attributes\n\nThe content of the `<$button>` widget is displayed within the button.\n\n|!Attribute |!Description |\n|actions |A string containing ActionWidgets to be triggered when the key combination is detected |\n|to |The title of the tiddler to navigate to |\n|message |The name of the [[widget message|Messages]] to send when the button is clicked |\n|param |The optional parameter to the message |\n|set |A TextReference to which a new value will be assigned |\n|setTitle |A title to which a new value will be assigned, ''without'' TextReference. Gets preferred over <<.attr state>> |\n|setField |A ''field name'' to which the new value will be assigned, if the attribute <<.attr stateTitle>> is present. Defaults to the ''text'' field |\n|setIndex |An ''index'' to which the new value will be assigned, if the attribute <<.attr stateTitle>> is present |\n|setTo |The new value to assign to the TextReference identified in the `set` attribute or the text field / the field specified through `setField` / the index specified through `setIndex` of the title given through `setTitle` |\n|selectedClass |An optional additional CSS class to be assigned if the popup is triggered or the tiddler specified in `set` already has the value specified in `setTo` |\n|default |Default value if `set` tiddler is missing for testing against `setTo` to determine `selectedClass` |\n|popup |Title of a state tiddler for a popup that is toggled when the button is clicked. See PopupMechanism for details |\n|popupTitle |Title of a state tiddler for a popup that is toggled when the button is clicked. In difference to the <<.attr popup>> attribute, ''no'' TextReference is used. See PopupMechanism for details |\n|aria-label |Optional [[Accessibility]] label |\n|tooltip |Optional tooltip |\n|class |An optional CSS class name to be assigned to the HTML element|\n|style |An optional CSS style attribute to be assigned to the HTML element |\n|tag |An optional html tag to use instead of the default \"button\" |\n|dragTiddler |An optional tiddler title making the button draggable and identifying the payload tiddler. See DraggableWidget for details |\n|dragFilter |An optional filter making the button draggable and identifying the list of payload tiddlers. See DraggableWidget for details |\n\n''Note:'' In almost all other cases where a TextReference is used as a widget attribute, it will be placed between curly brackets, to [[transclude|Transclusion in WikiText]] the value currently stored there. However, when we use a TextReference as the value of a button widget's `set` attribute, we are referencing //the storage location itself//, rather than the value stored there, so we do ''not'' use curly brackets there. //Example:// we could code a button widget that sets the `caption` field of TiddlerA to be the same as that of TiddlerB as:\n\n<<.tip \"\"\"<$macrocall $name=\".from-version\" version=\"5.1.18\"/> <$macrocall $name=\".attr\" _=\"stateTitle\"/>, <$macrocall $name=\".attr\" _=\"stateField\"/> and <$macrocall $name=\".attr\" _=\"stateIndex\"/> attributes allow specifying Tiddler states ''directly'', without interpreting them as [[TextReferences|TextReference]].\nThis is useful for edge-cases where titles may contain characters that are used to denote Tiddler fields or indices (`!!`, `##`)\"\"\">>\n\n```\n<$button set=\"TiddlerA!!caption\" setTo={{TiddlerB!!caption}} >\n\nPress me!\n\n</$button>\n```\n\n''Tip:'' Set ''class'' to `tc-btn-invisible tc-tiddlylink` to have a button look like an internal link.\n"
},
"CheckboxWidget": {
"title": "CheckboxWidget",
"caption": "checkbox",
"created": "20131024141900000",
"modified": "20190714134002652",
"tags": "Widgets",
"type": "text/vnd.tiddlywiki",
"text": "! Introduction\n\nThe checkbox widget displays an HTML `<input type=\"checkbox\">` element that is dynamically bound to either:\n\n* the presence or absence of a specified tag on a specified tiddler\n* the value of a specified field of a specified tiddler\n\n! Content and Attributes\n\nThe content of the `<$checkbox>` widget is displayed within an HTML `<label>` element immediately after the checkbox itself. This means that clicking on the content will toggle the checkbox.\n\n|!Attribute |!Description |\n|tiddler |Title of the tiddler to manipulate (defaults to the [[current tiddler|Current Tiddler]]) |\n|tag |The name of the tag to which the checkbox is bound |\n|invertTag |When set to ''yes'', flips the tag binding logic so that the absence of the tag causes the checkbox to be checked |\n|field |The name of the field to which the checkbox is bound |\n|index|<<.from-version \"5.1.14\">> The index of the //tiddler//, a [[DataTiddler|DataTiddlers]], to which the checkbox is bound<<.tip \"be sure to set the //tiddler// correctly\">>|\n|checked |The value of the field corresponding to the checkbox being checked |\n|unchecked |The value of the field corresponding to the checkbox being unchecked |\n|default |The default value to use if the field is not defined |\n|class |The class that will be assigned to the label element |\n|actions |<<.from-version \"5.1.14\">> A string containing ActionWidgets to be triggered when the status of the checkbox changes (whether it is checked or unchecked) |\n|uncheckactions |<<.from-version \"5.1.16\">> A string containing ActionWidgets to be triggered when the checkbox is unchecked |\n|checkactions |<<.from-version \"5.1.20\">> A string containing ActionWidgets to be triggered when the checkbox is checked |\n\n!! Tag Mode\n\nUsing the checkbox widget in tag mode requires the ''tag'' attribute to specify the name of the tag. The ''tiddler'' attribute specifies the tiddler to target, defaulting to the current tiddler if not present.\n\nThis example creates a checkbox that flips the ''done'' tag on the current tiddler:\n\n<<wikitext-example-without-html \"\"\"<$checkbox tag=\"done\"> Is it done?</$checkbox>\"\"\">>\n\n!! Field Mode\n\nUsing the checkbox widget in field mode requires the ''field'' attribute to specify the name of the field. The ''checked'' and ''unchecked'' attributes specify the values to be assigned to the field to correspond to its checked and unchecked states respectively. The ''default'' attribute is used as a fallback value if the field is not defined.\n\nThis example creates a checkbox that is checked if the field ''status'' is equal to ''open'' and unchecked if the field is equal to ''closed''. If the field is undefined then it defaults to ''closed'', meaning that the checkbox will be unchecked if the ''status'' field is missing.\n\n<<wikitext-example-without-html \"\"\"<$checkbox field=\"status\" checked=\"open\" unchecked=\"closed\" default=\"closed\"> Is it open?</$checkbox><br>''status:'' {{!!status}}\"\"\">>\n\n!! Index Mode\n\nTo use the checkbox widget in index mode set the ''index'' attribute to the index of a [[DataTiddler|DataTiddlers]]. The ''checked'' and ''unchecked'' attributes specify the values to be assigned to the index and correspond to its checked and unchecked states respectively. The ''default'' attribute is used as a fallback value if the index is undefined.\n\nThe example below creates a checkbox that is checked if the index by the name of this tiddler in the tiddler ExampleData is equal to ''selected'' and unchecked if the index is an empty string. If the index is undefined then it defaults to an empty string, meaning the checkbox will be unchecked if the index is missing.\n\n<$macrocall $name=\"wikitext-example-without-html\" src=\"\"\"<$checkbox tiddler=\"ExampleData\" index=<<currentTiddler>> checked=\"selected\" unchecked=\"\" default=\"\"> Selected?</$checkbox>\"\"\"/>\n"
},
"CodeBlockWidget": {
"title": "CodeBlockWidget",
"caption": "codeblock",
"created": "20151103160200000",
"modified": "20160817175325205",
"tags": "Widgets",
"type": "text/vnd.tiddlywiki",
"text": "! Introduction\n\nThe ''codeblock'' widget renders text in `<pre>` and `<code>` blocks, causing it to be\ndisplayed monospace. A language may optionally be specified using the\n''language'' attribute, however syntax highlighting will only be used if the\n[[Highlight Plugin]] is installed.\n\n! Content and Attributes\n\nThe content of the `<$codeblock>` widget is ignored.\n\n|!Attribute |!Description |\n|code |Contents of the block to render as code |\n|language |Programming language for syntax highlighting |\n\nThe `language` attribute accepts either:\n\n* a Highlight.js language code (see https://highlightjs.org/static/demo/ for a list)\n* a MIME type (eg, `text/html` or `image/svg+xml`)\n\n! Examples\n\nHere is an example embedding the contents of a tiddler as a code block.\n\n<$macrocall $name='wikitext-example-without-html'\nsrc='<$codeblock code={{$:/editions/tw5.com/macro-examples/say-hi}} />' />\n\nA codeblock may also specify a language.\n\n<$macrocall $name='wikitext-example-without-html'\nsrc='<$codeblock code=\"SELECT * FROM users WHERE deleted = false\" language=\"sql\" />' />\n\n"
},
"CountWidget": {
"title": "CountWidget",
"created": "201310241419",
"modified": "20181231131",
"tags": "Widgets",
"caption": "count",
"text": "! Introduction\n\nThe count widget displays the number of unique items in the output of specified [[filter expressions|Filters]].\n\n! Content and Attributes\n\nThe content of the `<$count>` widget is ignored.\n\n|!Attribute |!Description |\n|filter |The filter expression to count |\n\n! Example\n<<wikitext-example-without-html \"\"\"There are <$count filter=\"[tag[Examples]]\"/> tiddlers tagged with Examples\"\"\">>\n"
},
"DiffTextWidget": {
"title": "DiffTextWidget",
"caption": "diff-text",
"created": "20180316162725329",
"modified": "20180316162725329",
"tags": "Widgets",
"type": "text/vnd.tiddlywiki",
"text": "! Introduction\n\n<<.from-version \"5.1.16\">> The diff text widget analyses the differences between a pair of source and destination text strings and displays the results as highlighted insertions and deletions (similar to the \"track changes\" function of a word processor). For example:\n\n<$diff-text source=\"Hey Jude, don't make it bad. Take a sad song and make it better. Remember to let her into your heart\nThen you can start to make it better.\" dest=\"Hey Jude, don't be afraid. You were made to go out and get her. The minute you let her under your skin. Then you begin to make it better.\"/>\n\n! Content and Attributes\n\n!! Content\n\nThe content of the `<$diff-text>` widget is rendered immediately before the diffs. Within it, the variable `diff-count` is available, containing the number of differences found. If the widget has no content then it automatically transcludes the tiddler [[$:/language/Diffs/CountMessage]].\n\n<<<\nIn other words, these three invocations are all equivalent:\n\n```\n<$diff-text source={{FirstTiddler}} dest={{SecondTiddler}}>\n{{$:/language/Diffs/CountMessage}}\n</$diff-text>\n\n<$diff-text source={{FirstTiddler}} dest={{SecondTiddler}}>\n</$diff-text>\n\n<$diff-text source={{FirstTiddler}} dest={{SecondTiddler}}/>\n\n```\n<<<\n\n!! Attributes\n\n|!Attribute |!Description |\n|source |The source text |\n|dest |The destination text |\n|cleanup |See below |\n\nThe ''cleanup'' attribute determines which optional post-processing should be applied to the diffs:\n\n* ''none'': no cleanup is performed\n* ''semantic'' (default): rewrites the diffs for human readability\n* ''efficient'': rewrites the diffs to minimise the number of operations for subsequent processing \n\n(Note that in many cases the results will be the same regardless of the cleanup option. See the [[docs|https://github.com/google/diff-match-patch/wiki/API]] of the underlying library for more details).\n\n! Examples\n\nIn this example we compare two texts:\n\n<$macrocall $name='wikitext-example-without-html'\nsrc=\"\"\"<$edit-text tiddler=\"SampleTiddlerFirst\"/>\n\n<$edit-text tiddler=\"SampleTiddlerSecond\"/>\n\n<$diff-text source={{SampleTiddlerFirst}} dest={{SampleTiddlerSecond}}/>\"\"\"/>\n"
},
"DraggableWidget": {
"title": "DraggableWidget",
"caption": "draggable",
"created": "20170406081938627",
"modified": "20190118084621046",
"tags": "Widgets",
"type": "text/vnd.tiddlywiki",
"text": "The DraggableWidget creates a DOM element that can be dragged by the user. It only works on browsers that support drag and drop, which typically means desktop browsers, but [[there are workarounds|Mobile Drag And Drop Shim Plugin]].\n\nThe draggable element can be assigned a list of tiddlers that are used as the payload.\nIf desired it can invoke actions when dragging starts and when it ends.\nSee DragAndDropMechanism for an overview.\n\n! Content and Attributes\n\n|!Attribute |!Description |\n|tiddler |Optional title of the payload tiddler for the drag |\n|filter |Optional filter defining the payload tiddlers for the drag |\n|class |Optional CSS classes to assign to the draggable element. The class `tc-draggable` is added automatically, and the class `tc-dragging` is applied while the element is being dragged |\n|tag |Optional tag to override the default \"div\" element |\n|startactions |Optional action string that gets invoked when dragging ''starts'' |\n|endactions |Optional action string that gets invoked when dragging ''ends'' |\n\nEither or both of the ''tiddler'' and ''filter'' attributes must be specified in order for there to be a payload to drag.\n\nThe [[actionTiddler Variable]] is accessible in both //startactions// and //endactions//. It holds the payload tiddler(s) specified through the //tiddler// and //filter// attributes as a [[Title List]] using double square brackets to quote titles that include whitespace.\n\n<<.tip \"\"\"Note that the [[actionTiddler Variable]] holds a [[Title List]] quoted with double square brackets. This is unlike the DroppableWidget which uses the same variable to pass a single unquoted title.\"\"\">>\n\n\nThe LinkWidget incorporates the functionality of the DraggableWidget via the ''draggable'' attribute.\n"
},
"DroppableWidget": {
"title": "DroppableWidget",
"caption": "droppable",
"created": "20170406082820317",
"modified": "20190118084621046",
"tags": "Widgets",
"type": "text/vnd.tiddlywiki",
"text": "\\define droppable-image-actions()\n<$action-setfield $tiddler=<<actionTiddler>> $field=\"icon\" $value=<<currentTiddler>>/>\n\\end\n\n\\define colour-demo-body()\n<$droppable actions=<<droppable-colour-actions>>>\n<span style=\"display: inline-block; width: 1em; height: 1em;background-color: $(currentTiddler)$;\">\n</span>\n</$droppable>\n\\end\n\n\\define droppable-colour-actions()\n<$action-setfield $tiddler=<<actionTiddler>> $field=\"color\" $value=<<currentTiddler>>/>\n\\end\n\nThe `droppable` widget creates a DOM element onto which dragged items can be dropped by the user, triggering the specified actions. It only works on browsers that support drag and drop, which typically means desktop browsers, but [[there are workarounds|Mobile Drag And Drop Shim Plugin]].\n\nSee DragAndDropMechanism for an overview.\n\n! Content and Attributes\n\n|!Attribute |!Description |\n|actions |Actions to be performed when items are dropped |\n|class |Optional CSS classes to assign to the draggable element. The class `tc-droppable` is added automatically, and the class `tc-dragover` is applied while an item is being dragged over the droppable element |\n|tag |Optional tag to override the default of a \"div\" element when the widget is rendered in block mode, or a \"span\" element when it is rendered in inline mode |\n\nWithin the action string, there are two Variables generated by the DroppableWidget:\n\n* The [[actionTiddler Variable]] contains the title of the item being dropped\n* The [[modifier Variable]] contains the Modifier Key held while dragging (can be normal, ctrl, shift or ctrl-shift)\n\nIf multiple items are dropped then the actions are performed repeatedly, once for each dropped item.\n\n<<.tip \"\"\"Note that the [[actionTiddler Variable]] holds a single, unquoted title. This is unlike the DraggableWidget which uses the same variable to pass a quoted [[Title List]].\"\"\">>\n\n! Examples\n\nThis example displays a palette of icons. Dragging a tiddler onto one of the icons assigns that icon to the tiddler.\n\n<$list filter=\"[all[tiddlers+shadows]tag[$:/tags/Image]sort[title]]\">\n<$droppable actions=<<droppable-image-actions>>>\n<$transclude/>\n</$droppable>\n</$list>\n\nSimilarly, this example shows a palette of colours. Dragging a tiddler onto one of the colours assigns that colour to be used for rendering the icon of the tiddler.\n\n<$list filter=\"LightPink Pink Crimson LavenderBlush PaleVioletRed HotPink DeepPink MediumVioletRed Orchid Thistle Plum Violet Magenta Fuchsia DarkMagenta Purple MediumOrchid DarkViolet DarkOrchid Indigo BlueViolet MediumPurple MediumSlateBlue SlateBlue DarkSlateBlue Lavender GhostWhite Blue MediumBlue MidnightBlue DarkBlue Navy RoyalBlue CornflowerBlue LightSteelBlue LightSlateGrey SlateGrey DodgerBlue AliceBlue SteelBlue LightSkyBlue SkyBlue DeepSkyBlue LightBlue PowderBlue CadetBlue Azure LightCyan PaleTurquoise Cyan Aqua DarkTurquoise DarkSlateGrey DarkCyan Teal MediumTurquoise LightSeaGreen Turquoise Aquamarine MediumAquamarine MediumSpringGreen MintCream SpringGreen MediumSeaGreen SeaGreen Honeydew LightGreen PaleGreen DarkSeaGreen LimeGreen Lime ForestGreen Green DarkGreen Chartreuse LawnGreen GreenYellow DarkOliveGreen YellowGreen OliveDrab Beige LightGoldenrodYellow Ivory LightYellow Yellow Olive DarkKhaki LemonChiffon PaleGoldenrod Khaki Gold Cornsilk Goldenrod DarkGoldenrod FloralWhite OldLace Wheat Moccasin Orange PapayaWhip BlanchedAlmond NavajoWhite AntiqueWhite Tan BurlyWood Bisque DarkOrange Linen Peru PeachPuff SandyBrown Chocolate SaddleBrown Seashell Sienna LightSalmon Coral OrangeRed DarkSalmon Tomato MistyRose Salmon Snow LightCoral RosyBrown IndianRed Red Brown FireBrick DarkRed Maroon White WhiteSmoke Gainsboro LightGrey Silver DarkGrey Grey DimGrey Black\">\n<<colour-demo-body>>\n</$list>\n\n"
},
"DropzoneWidget": {
"title": "DropzoneWidget",
"caption": "dropzone",
"created": "20131024141900000",
"modified": "20170712153850528",
"tags": "Widgets",
"type": "text/vnd.tiddlywiki",
"text": "! Introduction\n\nThe dropzone widget creates an area into which the user can drag files and other objects. It also supports pasting via the clipboard, although browser support is currently limited.\n\nIt sends a [[WidgetMessage: tm-import-tiddlers]] carrying a JSON representation of the tiddlers to be imported up through its parents. This message usually trapped by the NavigatorWidget which adds the tiddlers to the store and updates the story to display them.\n\n! Content and Attributes\n\n|!Attribute |!Description |\n|deserializer |<<.from-version \"5.1.15\">> Optional name of deserializer to be used (by default the deserializer is derived from the file extension) |\n\nThe list of available deserializers can be inspected by executing `Object.keys($tw.Wiki.tiddlerDeserializerModules).sort().join(\"\\n\")` in the browser JavaScript console.\n\nThe dropzone widget displays any contained content within the dropzone.\n\n! Display\n\nThe dropzone widget creates an HTML `<div class=\"tc-dropzone\">` to contain its content. During a drag operation the class `tc-dragover` is added. CSS is used to provide user feedback.\n\n! Data types supported\n\nThe following data transfer types are supported:\n\n* ''text/vnd.tiddler'' - a list of tiddlers in JSON format (this format is generated by the LinkWidget)\n* ''text/plain'' - plain text\n* ''text/uri-list'' - a list of URIs as a single tiddler\n"
},
"EditBitmapWidget": {
"title": "EditBitmapWidget",
"created": "20131024141900000",
"modified": "20150220162127000",
"tags": "Widgets",
"type": "text/vnd.tiddlywiki",
"caption": "edit-bitmap",
"text": "! Introduction\n\nThe edit bitmap widget provides a user interface in the browser for editing bitmap tiddlers.\n\n! Content and Attributes\n\nThe content of the `<$edit-bitmap>` widget is ignored.\n\n|!Attribute |!Description |\n|tiddler |The tiddler to edit (defaults to the [[current tiddler|Current Tiddler]]) |\n\n! Configuration\n\nThe edit bitmap widget can be configured with these system tiddlers:\n\n* [[$:/config/BitmapEditor/LineWidth]] determines the line width: <$edit-text tiddler=\"$:/config/BitmapEditor/LineWidth\" tag=\"input\"/>\n* [[$:/config/BitmapEditor/Colour]] determines the line color: <$edit-text tiddler=\"$:/config/BitmapEditor/Colour\" tag=\"input\" type=\"color\"/>\n"
},
"EditTextWidget": {
"title": "EditTextWidget",
"caption": "edit-text",
"created": "20131024141900000",
"modified": "20151224143914772",
"tags": "Widgets",
"type": "text/vnd.tiddlywiki",
"text": "! Introduction\n\nThe edit text widget provides a user interface in the browser for editing text tiddler fields. The editing element is dynamically bound to the underlying tiddler value: changes to the tiddler are instantly reflected, and any edits are instantly propogated.\n\nBy default, applying the EditTextWidget to the `text` field of a tiddler will generates an HTML `<textarea>` element, i.e. a multi-line editor. Applying the EditTextWidget to any other field generates an HTML `<input type=\"text\">` element, a single-line editor. This behaviour can be overridden with the `tag` and `type` attributes.\n\n! Content and Attributes\n\nThe content of the `<$edit-text>` widget is ignored.\n\n|!Attribute |!Description |\n|tiddler |The tiddler to edit (defaults to the [[current tiddler|Current Tiddler]]) |\n|field |The field to edit (defaults to `text`). Takes precedence over the `index` attribute |\n|index |The index to edit |\n|default |The default text to be provided when the target tiddler doesn't exist |\n|class |A CSS class to be assigned to the generated HTML editing element |\n|placeholder |Placeholder text to be displayed when the edit field is empty |\n|focusPopup |Title of a state tiddler for a popup that is displayed when the editing element has focus |\n|focus |Set to \"yes\" or \"true\" to automatically focus the editor after creation |\n|tabindex |Sets the `tabindex` attribute of the input or textarea to the given value |\n|tag |Overrides the generated HTML editing element tag. For a multi-line editor use `tag=textarea`. For a single-line editor use `tag=input` |\n|type |Overrides the generated HTML editing element `type` attribute |\n|size |The size of the input field (in characters) |\n|autoHeight |Either \"yes\" or \"no\" to specify whether to automatically resize `textarea` editors to fit their content (defaults to \"yes\") |\n|minHeight |Minimum height for automatically resized `textarea` editors, specified in CSS length units such as \"px\", \"em\" or \"%\" |\n|rows|Sets the rows attribute of a generated textarea |\n\n! Notes\n\nOne trap to be aware of is that the edit text widget //cannot be used// to edit a field of the tiddler that contains it. Each keypress results in the tiddler being re-rendered, which loses the cursor position within the text field.\n\nInstead, place the edit text widget in a [[template|TemplateTiddlers]] that references the tiddler you want to modify.\n\nFor example, if you wanted the tiddler GettingStarted to edit the value of the \"myconfig\" field of the tiddler \"AppSettings\", you might do so by creating a separate tiddler \"ChangeAppSettings\" that contains the following:\n\n```\n<$edit-text tiddler=\"AppSettings\" field=\"myconfig\"/>\n```\n\nAnd reference the template in any other tiddler (e.g. GettingStarted) with `{{ChangeAppSettings}}`.\n\nThis works when your use of the tiddler //is not// the AppSettings itself which would cause a recursion problem. In this latter case you have to save the fields to a temporary (or alternative) tiddler (sort of the reverse of above) like so:\n\n```\n<$edit-text tiddler=\"StoreAppSettings\" field=\"myconfig\"/>\n```\n\nIn short the EditTextWidget //can not// change properties of the tiddler it is embedded in or part of. It can only change fields of //other// tiddlers. One could use ShadowTiddlers to accomplish the field storage if needed.\n"
},
"EditWidget": {
"title": "EditWidget",
"created": "201310241419",
"modified": "20150220161220000",
"tags": "Widgets",
"caption": "edit",
"text": "! Introduction\n\nThe edit widget provides a general purpose interface for editing a tiddler. It dynamically chooses the appropriate widget depending on the type of the tiddler (currently either the EditTextWidget or the EditBitmapWidget).\n\n! Content and Attributes\n\nThe content of the `<$edit>` widget is ignored.\n\n|!Attribute |!Description |\n|tiddler |The tiddler to edit (defaults to the [[current tiddler|Current Tiddler]]) |\n|field |The field to edit (defaults to `text`). Takes precedence over the `index` attribute |\n|index |The index to edit |\n|class |A CSS class to be added the generated editing widget |\n|tabindex |Sets the `tabindex` attribute of the input or textarea to the given value |\n"
},
"EncryptWidget": {
"title": "EncryptWidget",
"created": "201310241419",
"modified": "201310300837",
"tags": "Widgets",
"caption": "encrypt",
"text": "! Introduction\n\nThe encrypt widget renders a filtered list of tiddlers to an encrypted block with the password currently held in the PasswordVault. The encrypted block can subsequently be decrypted by the TiddlyWiki5 BootMechanism. See the EncryptionMechanism for more details.\n\n! Content and Attributes\n\nThe content of the `<$encrypt>` widget is ignored.\n\n|!Attribute |!Description |\n|filter |Filter defining the tiddlers to be included in the encrypted block. If not specified then all non-system tiddlers are used |\n"
},
"EntityWidget": {
"title": "EntityWidget",
"caption": "entity",
"created": "20160314165608218",
"modified": "20160314165658703",
"tags": "Widgets",
"type": "text/vnd.tiddlywiki",
"text": "! Introduction\n\nThe entity widget displays a specified HTML character entity.\n\n! Content and Attributes\n\nThe content of the `<$entity>` widget is not used.\n\n|!Attribute |!Description |\n|entity |The entity to display (eg, `×`) |\n"
},
"FieldMangler Widget (Examples)": {
"title": "FieldMangler Widget (Examples)",
"created": "20150706160301163",
"modified": "20150706172915783",
"tags": "[[Widget Examples]] FieldManglerWidget",
"type": "text/vnd.tiddlywiki",
"text": "<$macrocall $name=\".example\" n=\"1\"\neg=\"\"\"\n<$fieldmangler>\nAdd tag ''example'' to this tiddler (current)<$button message=\"tm-add-tag\" param=\"example\">{{$:/core/images/new-button}}</$button>\n<br>\nRemove tag ''example'' to this tiddler (current)<$button message=\"tm-remove-tag\" param=\"example\">{{$:/core/images/delete-button}}</$button>\n</$fieldmangler>\n\"\"\"/>\n"
},
"FieldManglerWidget": {
"title": "FieldManglerWidget",
"created": "20131024141900000",
"modified": "20150220161229000",
"tags": "Widgets",
"type": "text/vnd.tiddlywiki",
"caption": "fieldmangler",
"text": "! Introduction\n\nThe field mangler widget manipulates the fields and tags of a tiddler. It does so in response to the following [[Messages]]:\n\n|!Message |!Description |\n|''tm-remove-field'' |Remove the field specified in `event.param` |\n|''tm-add-field'' |Add the field specified in `event.param` |\n|''tm-remove-tag'' |Remove the tag specified in `event.param` |\n|''tm-add-tag'' |Add the tag specified in `event.param` |\n\n! Content and Attributes\n\nThe field mangler widget displays any contained content, and responds to [[Messages]] dispatched within it.\n\n|!Attribute |!Description |\n|tiddler |Title of the tiddler to manipulate (defaults to the [[current tiddler|Current Tiddler]]) |\n\n<<.widget-examples \"FieldMangler\">>\n\n"
},
"FieldsWidget": {
"title": "FieldsWidget",
"created": "201310241419",
"modified": "20150220161240000",
"tags": "Widgets",
"caption": "fields",
"text": "! Introduction\n\nThe fields widget renders each field of a specified tiddler through a simple text template. A list of fields to exclude can be provided. It is used internally by TiddlyWiki5, notably by the FileSavingMechanism.\n\n!! Template Handling\n\nThe provided template is rendered with the following special substitutions:\n\n|!Symbol |!Substitution |\n|$name$ |Field name |\n|$value$ |Field value |\n|$encoded_value$ |HTML encoded form of field value |\n\n! Content and Attributes\n\nThe content of the `<$fields>` widget is ignored.\n\n|!Attribute |!Description |\n|tiddler |Title of the tiddler from which the fields are to be displayed (defaults to the [[current tiddler|Current Tiddler]]) |\n|template |Text of the template (see above) |\n|exclude |Lists of fields to be excluded (defaults to \"text\") |\n|stripTitlePrefix |If set to \"yes\" then curly bracketed prefixes are removed from titles (for example `{prefix}HelloThere` converts to `HelloThere`) |\n\nThe `stripTitlePrefix` attribute is used when building TiddlyWiki Classic; see `editions/tw2` in the TiddlyWiki5 repo.\n"
},
"ImageWidget": {
"title": "ImageWidget",
"created": "20140416160234142",
"modified": "20140820100234142",
"tags": "Widgets",
"caption": "image",
"text": "! Introduction\n\nThe image widget displays images that can be specified as a remote URL or the title of a local tiddler containing the image.\n\n! Content and Attributes\n\nAny content of the `<$image>` widget is ignored.\n\n|!Attribute |!Description |\n|source |The URL of the image, or the title of an image tiddler |\n|width |The width of the image |\n|height |The height of the image |\n|tooltip |The tooltip to be displayed over the image |\n|alt |The alternative text to be associated with the image |\n|class |CSS classes to be assigned to the `<img>` element |\n\nThe width and the height can be specified as pixel values (eg \"23\" or \"23px\") or percentages (eg \"23%\"). They are both optional; if not provided the browser will use CSS rules to size the image.\n\n! External Images and the ''_canonical_uri'' field\n\nWhen used to display tiddler-based images, the image widget operates in two distinct modes:\n\n* If the ''_canonical_uri'' field is present then it is used as the ''src'' attribute of the generated `<img>` element and the ''text'' field is ignored\n* Without the ''_canonical_uri'' field, the image widget generates an `<img>` element that embeds the image data directly using a `data:` URI.\n\nSee ExternalImages for more details.\n"
},
"ImportVariablesWidget": {
"title": "ImportVariablesWidget",
"caption": "importvariables",
"created": "20140612142500000",
"modified": "20180928150043777",
"tags": "Widgets",
"type": "text/vnd.tiddlywiki",
"text": "! Introduction\n\nThe ImportVariablesWidget imports macro and variable definitions from a list of other tiddlers and makes them available to its children. For example:\n\n```\n<$importvariables filter=\"[tag[mySpecialMacros]]\">\nAll the macros defined in tiddlers with the tag \"mySpecialMacros\" are available here\n</$importvariables>\n```\n\n! Attributes and Content\n\nThe content of the importvariables widget is the scope within which the imported variable definitions are available.\n\n|!Attribute |!Description |\n|filter |[[Tiddler filter|Filters]] defining the tiddlers from which macro definitions will be imported |\n\n! Global Macros\n\nSo-called global macros are implemented within the main page template ([[$:/core/ui/PageTemplate]]) by wrapping the page content in the following importvariables widget:\n\n```\n<$importvariables filter=\"[[$:/core/ui/PageMacros]] [all[shadows+tiddlers]tag[$:/tags/Macro]!has[draft.of]]\">\n...\n</$importvariables>\n```\n\n! `\\import` Pragma\n\n<<.from-version \"5.1.18\">> The `\\import` [[pragma|Pragma]] is an alternative syntax for using the ImportVariablesWidget. For example, the previous example could be expressed as:\n\n```\n\\import [[$:/core/ui/PageMacros]] [all[shadows+tiddlers]tag[$:/tags/Macro]!has[draft.of]\n```"
},
"KeyboardWidget": {
"title": "KeyboardWidget",
"caption": "keyboard",
"created": "20140302192136805",
"modified": "20161003114634019",
"tags": "Widgets",
"type": "text/vnd.tiddlywiki",
"text": "! Introduction\n\nThe keyboard widget allows ActionWidgets to be triggered by specific key combinations. There is also a shorthand for generating [[Messages]] via the `message` and `param` attributes.\n\n! Content and Attributes\n\nThe content of the `<$keyboard>` widget is rendered normally. The keyboard shortcuts only take effect when the focus is within the contained content.\n\n|!Attribute |!Description |\n|actions |A string containing ActionWidgets to be triggered when the key combination is detected |\n|message |The title of the [[WidgetMessage|Messages]] to generate |\n|param |The parameter to be passed with the [[WidgetMessage|Messages]] |\n|key |Key string identifying the key(s) to be trapped (see below) |\n|class |A CSS class to be assigned to the generated HTML DIV element |\n|tag|<<.from-version \"5.1.14\">> The html element the widget creates to capture the keyboard event, defaults to:<br>» `span` when parsed in inline-mode<br>» `div` when parsed in block-mode|\n\n! Key Strings\n\nKey strings are made up of one or more key specifiers separated by spaces. Each key specifier is zero or more of the modifiers <kbd>alt</kbd>, <kbd>shift</kbd>, <kbd>ctrl</kbd> or <kbd>meta</kbd> followed by the name of a key, all joined with \"+\" plus or \"-\" minus symbols. Key names are either the letter or digit printed on the key (eg \"a\" or \"1\"), or one of the special keys <kbd>backspace</kbd>, <kbd>tab</kbd>, <kbd>enter</kbd> or <kbd>escape</kbd>.\n\nFor example:\n\n```\nA\nshift+A\nshift+escape\nctrl+enter\nctrl+shift+alt+A\n```\n"
},
"LinkCatcherWidget": {
"title": "LinkCatcherWidget",
"caption": "linkcatcher",
"created": "20131024141900000",
"modified": "20170707111536556",
"tags": "Widgets",
"type": "text/vnd.tiddlywiki",
"text": "! Introduction\n\nThe link catcher widget traps [[WidgetMessage: tm-navigate]] dispatched within its child content by performing any or all of these actions:\n\n* sending a different widget message\n* setting a tiddler to the title of the navigated tiddler\n* setting a tiddler to a specified value\n* performing a series of ActionWidgets\n\n! Content and Attributes\n\nThe content of the `<$linkcatcher>` widget is displayed normally.\n\n|!Attribute |!Description |\n|to |Optional title of the tiddler to be set to the title of the navigated tiddler |\n|message |Optional identifier for a [[widget message|Messages]] to be sent when a navigation is caught |\n|set |Optional title of the tiddler to be set to a specified value when navigation occurs |\n|setTo |Value to be assigned by the `set` attribute |\n|actions |Actions to be performed when a link is caught. Within the action string, the variable \"navigateTo\" contains the title of the tiddler being navigated |\n\n"
},
"LinkWidget": {
"title": "LinkWidget",
"caption": "link",
"created": "20131024141900000",
"modified": "20190610195105615",
"tags": "Widgets",
"type": "text/vnd.tiddlywiki",
"text": "The `link` widget generates links to tiddlers. (Use the HTML `<a>` element to generate external links).\n\n! Content and Attributes\n\nThe content of the link widget is rendered within the `<a>` tag representing the link. If the content is empty then the title of the target tiddler is rendered as the default.\n\nFor example, `<$link to=\"HelloThere\"/>` is equivalent to `<$link to=\"HelloThere\">HelloThere</$link>` and `<$link/>` is equivalent to `<$link to=<<currentTiddler>>><$view field=\"title\"/></$link>`.\n\n|!Attribute |!Description |\n|to |The title of the target tiddler for the link (defaults to the [[current tiddler|Current Tiddler]]) |\n|aria-label |Optional accessibility label |\n|tooltip |Optional tooltip WikiText |\n|tabindex |Optional numeric [[tabindex|https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/tabIndex]] |\n|draggable |\"yes\" to enable the link to be draggable (defaults to \"yes\") |\n|tag |Optional tag to override the default \"a\" element |\n|class|Optional CSS classes //in addition to// the default classes (see below)|\n|overrideClass|<<.from-version \"5.1.16\">> Optional CSS classes //instead of// the default classes |\n\nThe draggable functionality is equivalent to using the DraggableWidget with the ''tiddler'' attribute set to the link target.\n\nThe default value of the tooltip attribute is supplied by the <<.vlink tv-wikilink-tooltip>> variable.\n\nThis means that you can control the text of a link tooltip in several ways:\n\n```\n<$link to=\"HelloThere\" tooltip=\"Custom tooltip\">Link 1</$link>\n\n<$set name=\"tv-wikilink-tooltip\" value=\"I'm a link to {{!!title}}\">\n<$link to=\"HelloThere\">Link 2</$link>\n</$set>\n\n```\n\nRenders as:\n\n<$link to=\"HelloThere\" tooltip=\"Custom tooltip\">Link 1</$link>\n\n<$set name=\"tv-wikilink-tooltip\" value=\"I'm a link to {{!!title}}\">\n<$link to=\"HelloThere\">Link 2</$link>\n</$set>\n\nNote that the tooltip is rendered with the current tiddler set to the target of the link.\n\nA useful convention is to set the tooltip like this:\n\n```\n\\define tv-wikilink-tooltip()\n<$transclude field=\"tooltip\"><$transclude field=\"title\"/></$transclude>\n\\end\n```\n\nThis causes the tooltip to be the ''tooltip'' field of the target tiddler. If the field isn't present, then the title is used instead.\n\n! CSS Classes\n\nThe link widget automatically determines and applies the following classes to links:\n\n* `tc-tiddlylink` - applied to all links\n* `tc-tiddlylink-external` - applied to external, non-tiddler links\n* `tc-tiddlylink-internal` - applied to tiddler links\n* `tc-tiddlylink-missing` - applied to tiddler links where the target tiddler doesn't exist\n* `tc-tiddlylink-resolves` - applied to tiddler links when the target tiddler does exist\n\nUse the `class` attribute to specify additional css classes, or `overrideClass` to apply only that but not the above defaults, e.g. when used in a LinkCatcherWidget:\n\n<<wikitext-example-without-html \"\"\"*<$link class=\"example\">Here</$link> the `example` class is added.\n*<$link overrideClass=\"example\">Here</$link> only the `example` class applies.\n*<$link overrideClass=\"\">Here</$link> no class is set.\"\"\">>\n\n! `href` generation\n\nThe following process is used to generate the `href` attribute of the generated HTML `<a>` element:\n\n# If <<.vlink tv-get-export-link>> is defined it is invoked to convert the target tiddler title to the `href` value\n#* In practice, only a [[JavaScript macro|Macros]] can be used\n# <<.from-version \"5.1.15\">> If <<.vlink tv-filter-export-link>> is defined it is interpreted as a filter that converts the target tiddler title to the `href` value\n# If <<.vlink tv-wikilink-template>> is defined it is treated as a specialised macro body that can perform limited conversion of the target tiddler title to the `href` value\n# Otherwise, the target tiddler title is URI encoded to create the `href`\n\n! Configuration variables\n\n* <<.vlink tv-wikilinks>>\n* <<.vlink tv-filter-export-link>>\n* <<.vlink tv-wikilink-template>>\n* <<.vlink tv-wikilink-tooltip>>\n* <<.vlink tv-get-export-link>>\n"
},
"ListWidget": {
"title": "ListWidget",
"caption": "list",
"created": "20131024141900000",
"modified": "20190608162410684",
"tags": "Widgets Lists",
"type": "text/vnd.tiddlywiki",
"text": "! Introduction\n\nThe list widget displays a sequence of tiddlers that match a [[tiddler filter|Filters]]. It can be used for many purposes:\n\n* Displaying custom lists of links, like in TiddlyWiki5's sidebar\n* Custom lists, such as \"all tiddlers tagged 'task' that are not tagged 'done'\"\n* Listing each of the tags applied to a tiddler\n* Handling the main story river\n\nThe tiddlers are displayed by transcluding each in turn through a template. There are several ways to specify the template and for controlling the behaviour of the list.\n\n! Examples\n\n''plain list''\n\n```\n<$list filter=\"[tag[ListWidget]sort[title]]\"/>\n```\n\nDisplays as:\n\n<<<\n<$list filter=\"[tag[ListWidget]sort[title]]\"/>\n\n<<<\n\n''custom item output''\n\n```\n<$list filter=\"[tag[ListWidget]sort[title]]\">\n<<currentTiddler>>\n{{||$:/core/ui/ViewTemplate/tags}}\n</$list>\n```\n\nDisplays as:\n\n<<<\n<$list filter=\"[tag[ListWidget]sort[title]]\">\n<<currentTiddler>>\n{{||$:/core/ui/ViewTemplate/tags}}\n</$list>\n<<<\n\n''custom item template''\n\n```\n<$list filter=\"[tag[ListWidget]sort[title]]\" template=\"$:/core/ui/ViewTemplate/subtitle\"/>\n```\n\nDisplays as:\n\n<<<\n<$list filter=\"[tag[ListWidget]sort[title]]\" template=\"$:/core/ui/ViewTemplate/subtitle\"/>\n\n<<<\n\n!! Grouped Lists\n\nSee GroupedLists for how to generate nested and grouped lists using the ListWidget.\n\n! Content and Attributes\n\nThe content of the `<$list>` widget is an optional template to use for rendering each tiddler in the list.\n\nThe action of the list widget depends on the results of the filter combined with several options for specifying the template:\n\n* If the filter evaluates to an empty list, the text of the ''emptyMessage'' attribute is rendered, and all other templates are ignored\n* Otherwise, if the ''template'' attribute is specified then it is taken as the title of a tiddler to use as a template for rendering each item of the list\n* Otherwise, if the list widget content is not blank, it is used as a template for rendering each item of the list\n* Otherwise, a default template is used consisting of a `<span>` or `<div>` element wrapped around a link to the item\n\n|!Attribute |!Description |\n|filter |The [[tiddler filter|Filters]] to display |\n|template |The title of a template tiddler for transcluding each tiddler in the list. When no template is specified, the body of the ListWidget serves as the item template. With no body, a simple link to the tiddler is returned. |\n|editTemplate |An alternative template to use for [[DraftTiddlers|DraftMechanism]] in edit mode |\n|variable |The name for a [[variable|Variables]] in which the title of each listed tiddler is stored. Defaults to ''currentTiddler'' |\n|emptyMessage |Message to be displayed when the list is empty |\n|storyview |Optional name of module responsible for animating/processing the list |\n|history |The title of the tiddler containing the navigation history |\n\n!! Edit mode\n\nThe `<$list>` widget can optionally render draft tiddlers through a different template to handle editing, see DraftMechanism.\n\n!! `storyview` attribute\n\nThe `storyview` attribute specifies the name of an optional module that can animate changes to the list (including navigation). The core ships with the following storyview modules:\n\n* `classic`: renders the list as an ordered sequence of tiddlers\n* `zoomin`: just renders the current tiddler from the list, with a zoom animation for navigating between tiddlers\n* `pop`: shrinks items in and out of place\n\nIn order for the storyviews to animate correctly each entry in the list should be a single block mode DOM element.\n\n!! History and navigation\n\nThe optional `history` attribute specifies the name of a tiddler that is used to track the current tiddler for navigation purposes. When the history tiddler changes the list view responds by telling the listview to handle navigating to the new tiddler. See HistoryMechanism for details.\n\n!! Additional Notes and Edge Cases\n\n* If the `filter` attribute is not present then a default of `[!is[system]sort[title]]` is used\n* If the list widget is completely empty (ie only whitespace between the opening and closing tags), then it behaves as if the content were a `DIV` or a `SPAN` containing a link to the current tiddler (it’s a `DIV` if the list widget is in block mode, or a SPAN if it is in inline mode)\n* If the `template` attribute is not present then the content of the list widget will be used as the template, unless the widget is completely empty in which case a default template is used"
},
"ListopsData": {
"title": "ListopsData",
"created": "20151017094630847",
"daysoftheweek": "four three Fri Thu Wed Tue Mon",
"modified": "20151108041839747",
"type": "application/x-tiddler-dictionary",
"text": "DataIndex: \n"
},
"MacroCallWidget": {
"title": "MacroCallWidget",
"created": "201310241419",
"modified": "201310300837",
"tags": "Widgets",
"caption": "macrocall",
"text": "! Introduction\n\nThe macro call widget provides an alternative syntax for invoking macros. The advantage of the widget form is that it allows macro parameters to be specified as widget attributes, thus allowing indirection and macro values to be set.\n\nFor example, a macro called `italicise` that takes a single parameter called `text` can be invoked in any of these ways:\n\n```\n<<italicise \"Text to be made into italics\">>\n<<italicise text:\"Text to be made into italics\">>\n<$macrocall $name=\"italicise\" text=\"Text to be made into italics\"/>\n<$macrocall $name=\"italicise\" text={{Title of tiddler containing text to be italicised}}/>\n<$macrocall $name=\"italicise\" text=<<textMaker \"Another macro to generate the text to be italicised\">>/>\n```\n\nYou can see several examples of the macro call widget within the core:\n\n* Listing module information: [[$:/snippets/modules]]\n* Listing field information: [[$:/snippets/allfields]]\n* Generating `data:` URIs: [[$:/themes/tiddlywiki/starlight/styles.tid]]\n\n! Content and Attributes\n\nThe content of the `<$macrocall>` widget is ignored.\n\n|!Attribute |!Description |\n|$name |Name of the macro to invoke |\n|$type |ContentType with which the macro text should be parsed (defaults to `text/vnd.tiddlywiki`) |\n|$output |ContentType for the output rendering (defaults to `text/html`, can also be `text/plain`) |\n|//parameters// |Macro parameters specified as attributes |\n"
},
"NavigatorWidget": {
"title": "NavigatorWidget",
"caption": "navigator",
"created": "20131024141900000",
"modified": "20170629074415261",
"tags": "Widgets",
"type": "text/vnd.tiddlywiki",
"text": "! Introduction\n\nThe navigator widget manipulates the current store, the story list and history lists in response to various [[Messages]].\n\n! Content and Attributes\n\nThe navigator widget displays any contained content, and responds to Messages dispatched within it.\n\n|!Attribute |!Description |\n|story |Name of the tiddler containing the story list to be manipulated |\n|history |Name of the tiddler containing the history list to be manipulated |\n|openLinkFromInsideRiver |Determines the location for opening new tiddlers from links within the story river: at the ''top'' or ''bottom'' of the story river, or ''above'' or ''below'' the current tiddler |\n|openLinkFromOutsideRiver|Determines the location for opening new tiddlers from linkes outside the story river: at the ''top'' or ''bottom'' of the story river|\n\n! Widget Messages\n\nThe following [[Messages]] are handled by the navigator widget:\n\n<ul>\n<$list filter=\"[tag[navigator-message]]\">\n<li>\n<$link to={{!!title}}>\n<$view field=\"title\"/>\n</$link>\n</li>\n</$list>\n</ul>\n\n! Variables\n\nThe following [[Variables]] are assigned by the navigator widget:\n\n* <<.vlink tv-story-list>>, giving the name of the tiddler containing the story list\n* <<.vlink tv-history-list>>, giving the name of the tiddler containing the history list\n\n"
},
"PasswordWidget": {
"title": "PasswordWidget",
"created": "201310241419",
"modified": "201310300837",
"tags": "Widgets",
"caption": "password",
"text": "! Introduction\n\nThe password widget displays a password input box that is bound to a named entry in the TiddlyWiki5 PasswordVault. Passwords are currently stored in the browsers local storage and are not themselves encrypted.\n\n! Content and Attributes\n\nThe content of the `<$password>` widget is ignored.\n\n|!Attribute |!Description |\n|name |Name of the password vault entry |\n"
},
"RadioWidget": {
"title": "RadioWidget",
"caption": "radio",
"created": "20131212195353929",
"modified": "20170115095809695",
"tags": "Widgets",
"type": "text/vnd.tiddlywiki",
"text": "! Introduction\n\nThe radio widget displays an HTML `<input type=\"radio\">` that reflects whether a given tiddler field has a specified value. Selecting the radio button sets to the tiddler field to the value.\n\n! Content and Attributes\n\nThe content of the `<$radio>` widget is displayed within an HTML `<label>` element also containing the radio button. This means that clicking on the content will have the same effect as clicking on the button itself.\n\n|!Attribute |!Description |\n|tiddler |Title of the tiddler to manipulate (defaults to the [[current tiddler|Current Tiddler]]) |\n|field |The field of the //tiddler// bound to the radio button|\n|index|<<.from-version \"5.1.14\">> The index of the //tiddler// being [[DataTiddler|DataTiddlers]] bound to the radio button<<.tip \"takes precedence over //field//\">>|\n|value |The value for the //field// or //index// of the //tiddler//|\n|class |The CSS classes assigned to the label around the radio button<$macrocall $name=\".tip\" _=\"\"\"<<.from-version \"5.1.14\">> `tc-radio` is always applied by default, as well as `tc-radio-selected` when selected\"\"\"/>|\n\n!! Field Mode\n\nThis example uses the radio widget to change the `modifier` field of this tiddler:\n\n<<wikitext-example-without-html \"\"\"<$radio field=\"modifier\" value=\"JoeBloggs\"> Joe Bloggs</$radio>\n<$radio field=\"modifier\" value=\"JaneBloggs\"> Jane Bloggs</$radio>\"\"\">>\n\n!! Index Mode\n\nUsing the radio widget in index mode requires the //index// attribute to specify the name of the index of a [[DataTiddler|DataTiddlers]] to which the specified //value// is assigned.\n\nThis example sets the `Tree Frog` index in the tiddler AnimalColours:\n\n<$macrocall $name=\"wikitext-example-without-html\" src=\"\"\"<$tiddler tiddler=\"AnimalColours\">\n<$radio index=\"Tree Frog\" value=\"green\"> green</$radio>\n<$radio index=\"Tree Frog\" value=\"brown\"> brown</$radio>\n</$tiddler>\"\"\"/>\n"
},
"RangeWidget": {
"title": "RangeWidget",
"caption": "range",
"created": "20171102134825376",
"modified": "20180425132848231",
"tags": "Widgets",
"type": "text/vnd.tiddlywiki",
"text": "! Introduction\n\nThe range widget displays an HTML `<input type=\"range\">` that reflects a given tiddler field numeric value. Adjusting the radio button sets the tiddler field to the value.\n\n! Content and Attributes\n\nThe content of the `<$range>` widget is ignored.\n\n|!Attribute |!Description |\n|tiddler |Title of the tiddler to manipulate (defaults to the [[current tiddler|Current Tiddler]]) |\n|field |The field of the //tiddler// bound to the radio button|\n|min |The minimum value to be able to be set by the `<$range>` widget.|\n|max |The maximum value to be able to be set by the `<$range>` widget.|\n|increment |The minimum amount by which a value may be changed. Defaults to 1.|\n|default |The default value displayed if the field is missing or empty.|\n|class |CSS classes to be assigned to the label around the radio button |\n\n! Examples\n\n!! Range -1 to 10\n\n<$macrocall $name='wikitext-example-without-html'\nsrc=\"\"\"<$range tiddler=\"$:/_RangeDemo/1\" min=\"-1\" max=\"10\" default=\"1\" increment=\"1\"/> {{$:/_RangeDemo/1}}\"\"\"/>\n\n!! Range 0 to 1\n\n<$macrocall $name='wikitext-example-without-html'\nsrc=\"\"\"<$range tiddler=\"$:/_RangeDemo/2\" min=\"0\" max=\"1\" default=\".01\" increment=\".01\"/> {{$:/_RangeDemo/2}}\"\"\"/>\n\n"
},
"RevealWidget": {
"title": "RevealWidget",
"caption": "reveal",
"created": "20131024141900000",
"jeremy": "tiddlywiki",
"modified": "20190704145627537",
"tags": "Widgets",
"type": "text/vnd.tiddlywiki",
"text": "! Introduction\n\nThe reveal widget hides or shows its content depending upon the value of a [[state tiddler|StateTiddlers]]. The type of the widget determines the condition for the content being displayed:\n\n* type=''match'': the content is displayed if the state tiddler matches a specified value\n* type=''nomatch'': the content is displayed if the state tiddler doesn't match a specified value\n* type=''popup'': the content is displayed as a popup as described in the PopupMechanism\n* type=''lt'': the content is displayed if the state tiddler contains an integer with a value ''less than'' a specified value\n* type=''gt'': the content is displayed if the state tiddler contains an integer with a value ''greater than'' a specified value\n* type=''lteq'': the content is displayed if the state tiddler contains an integer with a value ''less than or equal to'' a specified value\n* type=''gteq'': the content is displayed if the state tiddler contains an integer with a value ''greater than or equal to'' a specified value\n\n\n! Content and Attributes\n\nThe content of the `<$reveal>` widget is displayed according to the rules given above.\n\n|!Attribute |!Description |\n|state |A TextReference containing the state |\n|stateTitle |A title containing the state, ''without'' TextReference. Gets preferred over the <<.attr state>> attribute |\n|stateField |A ''field name'' which is used to look for the state, if the attribute <<.attr stateTitle>> is present |\n|stateIndex |An ''index'' which is used to look for the state, if the attribute <<.attr stateTitle>> is present |\n|tag |Overrides the default HTML element tag (`<div>` in block mode or `<span>` in inline mode) |\n|type |The type of matching performed: ''match'', ''nomatch'', ''popup'', ''lt'', ''gt'', ''lteq'' or ''gteq'' |\n|text |The text to match when the type is ''match'', ''nomatch'', ''lt'', ''gt'', ''lteq'' or ''gteq'' |\n|class |An optional CSS class name to be assigned to the HTML element<br/>» Set to `tc-popup-keep` to make a popup \"sticky\", so it won't close when you click inside of it|\n|style |An optional CSS style attribute to be assigned to the HTML element |\n|position |The position used for the popup when the type is ''popup''. Can be ''left'', ''above'', ''aboveright'', ''right'', ''belowleft'' or ''below'' |\n|positionAllowNegative |Set to \"yes\" to prevent computed popup positions from being clamped to be above zero |\n|default |Default value to use when the state tiddler is missing |\n|animate |Set to \"yes\" to animate opening and closure (defaults to \"no\") |\n|retain |Set to \"yes\" to force the content to be retained even when hidden (defaults to \"no\") |\n\n<<.tip \"\"\"<$macrocall $name=\".from-version\" version=\"5.1.18\"/> <$macrocall $name=\".attr\" _=\"stateTitle\"/>, <$macrocall $name=\".attr\" _=\"stateField\"/> and <$macrocall $name=\".attr\" _=\"stateIndex\"/> attributes allow specifying Tiddler states ''directly'', without interpreting them as [[TextReferences|TextReference]].\nThis is useful for edge-cases where titles may contain characters that are used to denote Tiddler fields or indices (`!!`, `##`)\"\"\">>\n\n<<.tip \"\"\"Retaining the content when hidden can give poor performance since the hidden content requires refresh processing even though it is not displayed. On the other hand, the content can be revealed much more quickly. Note that setting ''animate=\"yes\"'' will also force ''retain=\"yes\"''\"\"\">>\n\n! Examples\n\n!! Simple content reveal\n\nHere's a simple example of showing and hiding content with buttons:\n\n<<wikitext-example-without-html '<$button set=\"$:/state/SampleReveal1\" setTo=\"show\">Show me</$button>\n<$button set=\"$:/state/SampleReveal1\" setTo=\"hide\">Hide me</$button>\n\n<$reveal type=\"match\" state=\"$:/state/SampleReveal1\" text=\"show\">\n\n! This is the revealed content\nAnd this is some text\n\n</$reveal>'>>\n\n!! Accordion or Slider\n\nAn \"accordion\" or \"slider\" is a button that can be used to toggle the display of associated content.\n\n<<wikitext-example-without-html '<$reveal type=\"nomatch\" state=\"$:/state/SampleReveal2\" text=\"show\">\n\n<$button set=\"$:/state/SampleReveal2\" setTo=\"show\">Show me</$button>\n\n</$reveal>\n<$reveal type=\"match\" state=\"$:/state/SampleReveal2\" text=\"show\">\n\n<$button set=\"$:/state/SampleReveal2\" setTo=\"hide\">Hide me</$button>\n\n! This is the revealed content\nAnd this is some text\n\n</$reveal>'>>\n\n!! Popup\n\nHere is a simple example of a popup built with the RevealWidget:\n\n<<wikitext-example-without-html '<$button popup=\"$:/SamplePopupState\">Pop me up!</$button>\n\n<$reveal type=\"popup\" state=\"$:/SamplePopupState\">\n<div class=\"tc-drop-down\">\n\n! This is the popup\nAnd this is some text\n\n</div>\n</$reveal>'>>\n\n!! How to use text references with field content\n\nHere is a simple example how to use text references with field content to control the RevealWidget. If the field ``jeremy`` is populated with text ``tiddlywiki``, a message will be displayed.\n\n<<wikitext-example-without-html '<$reveal type=\"match\" state=\"!!jeremy\" text=\"tiddlywiki\">\n~TiddlyWiki!\n</$reveal>'>>\n"
},
"ScrollableWidget": {
"title": "ScrollableWidget",
"created": "20140324223413403",
"modified": "20150427123524945",
"tags": "Widgets",
"type": "text/vnd.tiddlywiki",
"caption": "scrollable",
"text": "! Introduction\n\nThe scrollable widget wraps its content in a scrollable frame. The user can scroll the contents with the mouse or with touch gestures. Code can use the [[WidgetMessage: tm-scroll]] to programmatically scroll specific DOM nodes into view.\n\n! Content and Attributes\n\nThe content of the `<$scrollable>` widget is displayed within a pair of wrapper DIVs. If the inner DIV is larger then it scrolls within the outer one. CSS is used to specify the size of the outer wrapper.\n\n|!Attribute |!Description |\n|class |The CSS class(es) to be applied to the outer DIV |\n|fallthrough |See below |\n\nIf a scrollable widget can't handle the `tm-scroll` message because the inner DIV fits within the outer DIV, then by default the message falls through to the parent widget. Setting the ''fallthrough'' attribute to `no` prevents this behaviour.\n\n! Examples\n\nThis example requires the following CSS definitions from [[$:/_tw5.com-styles]]:\n\n```\n.tc-scrollable-demo {\n\tborder: 1px solid <<colour message-border>>;\n\tbackground-color: <<colour message-background>>;\n\tpadding: 1em;\n\theight: 400px;\n\tposition: relative;\n}\n```\n\nThis wiki text shows how to display a list within the scrollable widget:\n\n<<wikitext-example-without-html \"<$scrollable class='tc-scrollable-demo'>\n<$list filter='[!is[system]]'>\n\n<$view field='title'/>: <$list filter='[all[current]links[]sort[title]]' storyview='pop'>\n<$link><$view field='title'/></$link>\n</$list>\n\n</$list>\n</$scrollable>\n\">>\n\n"
},
"SelectWidget": {
"title": "SelectWidget",
"caption": "select",
"created": "20131024141900000",
"modified": "20190304122040876",
"tags": "Widgets",
"type": "text/vnd.tiddlywiki",
"text": "! Introduction\n\nThe select widget displays a popup menu based on a [[HTML select element|https://developer.mozilla.org/en-US/docs/Web/HTML/Element/select]]. The popup (or dropdown) contains a list of items defined by `<option>` and `<optgroup>` elements. \nEvery time the user selects a new value in the menu, the selected value is written to the text of a specified tiddler field or index and any ActionWidgets within the `actions` attribute are triggered. Conversely, if the tiddler value is changed independently the select widget is automatically updated to reflect the new value.\n\nIn multiple selection mode, the list of selected values is bound to the specified tiddler field or index. Browsers generally use the <kbd>ctrl</kbd> or <kbd>cmd</kbd> keys for multiple selection.\n\nFor example, this select widget displays a list of the tags in this wiki:\n\n<$macrocall $name=\"wikitext-example-without-html\" src=\"<$select tiddler=<<qualify 'select-demo'>> default='HelloThere'>\n<$list filter='[all[shadows+tiddlers]tags[]sort[title]]'>\n<option value=<<currentTiddler>>><$view field='title'/></option>\n</$list>\n</$select>\"/>\n\nThe <$link to=<<qualify \"select-demo\">>>state tiddler</$link> currently contains:\n\n<$edit-text tiddler=<<qualify \"select-demo\">> tag=\"input\" default=\"\"/>\n\nSee the text change as you switch entries in the select widget. Try changing the value of the state tiddler and see the select widget change. Notice how the select widget only displays an entry if there is a precise match with the tiddler text.\n\n! Content and Attributes\n\nThe content of the `<$select>` widget should be one or more HTML `<option>` or `<optiongroup>` elements that provide the available values.\n\n|!Attribute |!Description |\n|tiddler |The title of the tiddler containing the value to be displayed/modified by the select widget (defaults to the current tiddler) |\n|field |The field name for the value in the current tiddler (defaults to \"text\") |\n|index |The index of a property in a [[DataTiddler|DataTiddlers]] (takes precedence over the field attribute) |\n|class |CSS classes to be assigned to the HTML select element |\n|tooltip |Optional tooltip |\n|default |Default value to be used if the tiddler, field or index specifies a missing value |\n|multiple |If present, switches to multiple selection mode |\n|size |The number of rows to display in multiple selection mode |\n|actions |A string containing ActionWidgets to be triggered when the key combination is detected |\n\n! Examples\n\n!! Simple Lists\n\nThis example sets the title of the current wiki [[$:/SiteTitle]] to one of a list of book titles:\n\n<$macrocall $name=\"wikitext-example-without-html\" src=\"<$select tiddler='$:/SiteTitle' tooltip='Choose a new site title'>\n<option>A Tale of Two Cities</option>\n<option>A New Kind of Science</option>\n<option>The Dice Man</option>\n</$select>\"/>\n\n!! Value lists\n\nIn this example the `value` attribute has been used to specify the text that should be used as the value of the entry instead of the display text.\n\n<$macrocall $name=\"wikitext-example-without-html\" src=\"<$select tiddler='$:/SiteTitle'>\n<option value='cities'>A Tale of Two Cities</option>\n<option value='science'>A New Kind of Science</option>\n<option value='dice'>The Dice Man</option>\n</$select>\"/>\n\n!! Option Groups\n\nEntries in the list can be grouped together with the `<optgroup>` element\n\n<$macrocall $name=\"wikitext-example-without-html\" src=\"<$select tiddler='$:/SiteTitle'>\n<optgroup label='Fiction'>\n<option value='cities'>A Tale of Two Cities</option>\n<option value='dice'>The Dice Man</option>\n</optgroup>\n<optgroup label='Non-fiction'>\n<option value='science'>A New Kind of Science</option>\n<option value='recursive'>The Recursive Universe</option>\n</optgroup>\n</$select>\"/>\n\n!! Generated Lists\n\nThe ListWidget can be used to generate the options for a select widget. For example, here we combine a select widget listing all the tiddlers tagged ''TableOfContents'' with a transclusion to display the text of the selected one.\n\n<$macrocall $name=\"wikitext-example-without-html\" src=\"<$select tiddler='$:/generated-list-demo-state'>\n<$list filter='[tag[TableOfContents]]'>\n<option><$view field='title'/></option>\n</$list>\n</$select>\n<$tiddler tiddler={{$:/generated-list-demo-state}}>\n<$transclude mode='block'/>\n</$tiddler>\"/>\n\n!! Nested Lists\n\nThis example uses a nested pair of list widgets. The outer one generates the `<optgroup>` elements, and the inner one generates `<option>` elements:\n\n<$macrocall $name=\"wikitext-example-without-html\" src=\"<$select tiddler='$:/generated-list-demo-nestedstate' field='type' default='text/vnd.tiddlywiki'>\n<$list filter='[all[shadows+tiddlers]prefix[$:/language/Docs/Types/]each[group]sort[group]]'>\n<optgroup label={{!!group}}>\n<$list filter='[all[shadows+tiddlers]prefix[$:/language/Docs/Types/]group{!!group}] +[sort[description]]'>\n<option value={{!!name}}><$view field='description'><$view field='title'/></$view> (<$view field='name'/>)</option>\n</$list>\n</optgroup>\n</$list>\n</$select>\"/>\n\n!! Multiple Selections\n\nThis example uses the `multiple` keyword to specify that we should be able to select multiple items.\n\n<$macrocall $name=\"wikitext-example-without-html\" src=\"<$select tiddler='$:/generated-list-demo-state' field='testing' multiple size='8'>\n<$list filter='[tag[TableOfContents]]'>\n<option><$view field='title'/></option>\n</$list>\n</$select><br />\n<$list filter='[list[$:/generated-list-demo-state!!testing]]'>\n<$view field='title' /><br />\n</$list>\n\"/>"
},
"SetVariableWidget": {
"title": "SetVariableWidget",
"created": "201310241419",
"modified": "20141025115603373",
"tags": "Widgets",
"caption": "setvariable",
"text": "The `<$setvariable>` widget is a synonym for `<$set/>`; see SetWidget for more details.\n"
},
"SetWidget": {
"title": "SetWidget",
"caption": "set",
"created": "20131115182700000",
"modified": "20180315165405442",
"tags": "Widgets",
"type": "text/vnd.tiddlywiki",
"text": "! Introduction\n\nThe set variable widget assigns a value to a specified [[variable|Variables]]. The new value of the variable is available to the content within the set variable widget.\n\n! Content and Attributes\n\nThe content of the `<$set>` widget is the scope for the value assigned to the variable.\n\n|!Attribute |!Description |\n|name |The name of the variable to assign (defaults to \"currentTiddler\") |\n|value |The value to assign to the variable if the filter is missing or not empty |\n|tiddler |<<.from-version \"5.1.15\">> Optional title of the tiddler from which to read the value |\n|subtiddler |<<.from-version \"5.1.16\">> Optionally specifies the title of a subtiddler within a plugin tiddler identified by the ''tiddler'' attribute |\n|field |<<.from-version \"5.1.15\">> Optional field of the tiddler from which to read the value (only used if ''tiddler'' is used) |\n|index |<<.from-version \"5.1.15\">> Optional index of the tiddler from which to read the value (only used if ''tiddler'' is used) |\n|filter |An optional filter to be evaluated and assigned to the variable (see below) |\n|select |<<.from-version \"5.1.14\">> An optional zero-based index of the item to return from the filter output (see below) |\n|emptyValue |The value to assign to the variable if the specified value is missing or empty (see below) |\n\n!! Simple Variable Assignment\n\nThe simplest way of using set variable widget assigns a string to a variable. The following example assigns a literal string\n\n```\n<$set name=\"myVariable\" value=\"Some text\">\n<$text text=<<myVariable>>/>\n</$set>\n```\n\nBoth the name and value attributes can be transcluded. For example:\n\n```\n<$set name=<<anotherVariable>> value={{template!!text}}>\n<$text text=<<myVariable>>/>\n</$set>\n```\n\n!! Conditional Variable Assignment\n\nThis form of the set variable widget chooses one of two specified values according to whether a filter evaluates to an empty list. Here's an example that sets a variable according to whether the current tiddler is called \"myMagicTitle\":\n\n```\n<$set name=\"myVariable\" filter=\"[all[current]field:title[myMagicTitle]]\" value=\"It's magic\" emptyValue=\"It's not magic\">\n<$text text=<<myVariable>>/>\n</$set>\n```\n\n!! Filtered List Variable Assignment\n\nThis form of the set variable widget evaluates the filter and assigns the result to the variable as a space-separated list (using double square brackets for titles containing spaces).\n\n```\n<$set name=\"myVariable\" filter=\"[tag[HelloThere]]\">\n<$text text=<<myVariable>>/>\n</$set>\n```\n\n!! Filtered Item Variable Assignment\n\n<<.from-version \"5.1.14\">> This form of the set variable widget evaluates the filter and assigns the specified result to the variable as a single item (ie, not using double square brackets for titles containing spaces).\n\n```\n<$set name=\"myVariable\" filter=\"[tag[HelloThere]]\" select=\"0\">\n<$text text=<<myVariable>>/>\n</$set>\n```\n\n!! Transcluded Variable Assignment\n\n<<.from-version \"5.1.15\">> This form of the set variable widget obtains the value to assign to the variable from a value in a tiddler field or index. For example:\n\n```\n<$set name=\"myVariable\" tiddler=\"HelloThere\" field=\"text\">\n<$text text=<<myVariable>>/>\n</$set>\n```\n\nThe example above could also be written as `<$set name=\"myVariable\" value={{HelloThere!!text}}>`. The advantage of using the ''tiddler'' attribute is that the tiddler title and field or index can themselves be computed. For example:\n\n```\n<$set name=\"myVariable\" tiddler=<<myTiddler>> field={{$:/currentField}}>\n<$text text=<<myVariable>>/>\n</$set>\n```\n"
},
"TextWidget": {
"title": "TextWidget",
"created": "201401191419",
"modified": "201901150000",
"tags": "Widgets",
"caption": "text",
"text-test": "e=mc^^2^^",
"text": "! Introduction\n\nThe text widget displays plain text without parsing it as [[WikiText]], opposite of [[WikifyWidget]].\n\n! Content and Attributes\n\nThe content of the `<$text>` widget is not used.\n\n|!Attribute |!Description |\n|text |The text to display |\n\n! Example\n\n<$macrocall $name='wikitext-example-without-html' src='<$vars string=\"//italic//\">\n\n* <<string>>\n* <$text text=<<string>>/>\n\n</$vars>\n' />\n\n<$macrocall $name='wikitext-example-without-html' src='\nThe text-test field of this tiddler has a field value: <$text text={{!!text-test}}/>\n\nIt displays in its normal WikiText format as: {{!!text-test}}\n' />\n"
},
"The Extended Listops Filters": {
"title": "The Extended Listops Filters",
"created": "20151014170727812",
"days": "Fri Wed Mon Tue",
"dofwks": "Mon Tue Wed Thu Fri Sat Sun",
"item1": "six",
"item2": "seven",
"item3": "eight",
"list": "Yesterday Today Tomorrow",
"marker": "Thursday",
"modified": "20151108054957921",
"myfield": "Monday Tuesday [[Middle of the Week]] Thursday Friday Saturday Sunday",
"numbers": "1 2 3 4 five 6 7 8 9",
"text": "! Introduction\n\nA number of extended filters are necessary to manipulate lists. \n\nThe first set of filters are designed to move items from the tail of the list and insert them at specified locations in the list. Items are often appended to the list before using these filters. In general, these filters accept a suffix specifying the number of items to move (default to 1.) \n\nA second set of filters are designed to either add or remove from the list, a selected range of items from an array. These filters are best used with a reference to an array, stored in a field or data index elsewhere in the wiki (they may be used with a simple list of items, provided the items do not include white space.) In general, these filters accept a suffix specifying the number of items to move (default to All.)\n\n! Examples\n\nIn this example we shall populate the '~DataIndex' index of the tiddler '~MyData' with the names of the days of the week, then clear this list. \n\n<$macrocall $name='wikitext-example-without-html'\nsrc=\"\"\"<$button>\n<$action-listops $tiddler=\"ListopsData\" $index=\"DataIndex\" $filter=\"[list[Days of the Week]]\"/>\nGet days-of-the-week\n</$button> \n<$button>\n<$action-listops $tiddler=\"ListopsData\" $index=\"DataIndex\" $filter=\"[[]]\"/>\nClear\n</$button>\n\n{{ListopsData}}\"\"\"/>\n\n---\nIn this example we shall slice the populated list from the 'DaysOfTheWeek' index of the tiddler '~MyData' in order to insert items before and after a marker item (Wednesday) that are first appended to the list.\n\n<$macrocall $name='wikitext-example-without-html'\nsrc=\"\"\"<$button>\n<$action-listops $tiddler=\"ListopsData\" $index=\"DataIndex\" $subfilter=\"one two +[putbefore:2[Wednesday]]\"/>\nPut 2 Items Before Wednesday\n</$button> \n<$button>\n<$action-listops $tiddler=\"ListopsData\" $index=\"DataIndex\" $subfilter=\"four five +[putafter:2[Wednesday]] three +[putbefore[Wednesday]]\"/>\nPut One Item Before & Two Items After Wednesday\n</$button>\n\n{{ListopsData}}\"\"\"/>\n\n---\nIn this example we shall slice the populated list from the 'DaysOfTheWeek' index of the tiddler '~MyData' in order to replace the marker item (Wednesday) with items which are first appended to the list. We shall then move 3 items to the head of the list which have first been appended to the list from referenced fields.\n\n<$macrocall $name='wikitext-example-without-html'\nsrc=\"\"\"<$button>\n<$action-listops $tiddler=\"ListopsData\" $index=\"DataIndex\" $subfilter=\"[[---o]] [[o---]] +[replace:2{!!marker}]\"/>\nReplace '!!marker' with 2 Items\n</$button>\n<$button>\n<$action-listops $tiddler=\"ListopsData\" $index=\"DataIndex\" $subfilter=\"[{!!item1}] [{!!item2}] [{!!item3}] +[putfirst:3[]]\"/>\nPut 3 Items First\n</$button>\n\n{{ListopsData}}\"\"\"/>\n\n---\nIn this example we shall slice the populated list from the 'DaysOfTheWeek' index of the tiddler '~MyData' in order to append to the truncated list, items from a referenced field. We shall then remove the first two of the items added.\n\n<$macrocall $name='wikitext-example-without-html'\nsrc=\"\"\"|list: |<$view field=\"list\"/> |\n\n<$button>\n<$action-listops $tiddler=\"ListopsData\" $index=\"DataIndex\" $subfilter=\"+[allbefore:include[Wednesday]] +[prepend{!!list}]\"/>\nPrepend '!!list' to items before 'Wednesday'\n</$button> \n<$button>\n<$action-listops $tiddler=\"ListopsData\" $index=\"DataIndex\" $subfilter=\"+[remove:2{!!list}]\"/>\nRemove first two items in '!!list' from current list\n</$button>\n<$button>\n<$action-listops $tiddler=\"ListopsData\" $index=\"DataIndex\" $subfilter=\"+[!remove:1{!!list}]\"/>\nRemove last item in '!!list' from current list\n</$button>\n\n{{ListopsData}}\"\"\"/>\n\n---\nIn this example we shall populate the list with numbers, then move items one by one from the head to the tail and from the tail to the head (best seen by clicking the lower buttons several times.) \n\nThis example illustrates that the append[] and prepend[] operators do not enforce unique instances of an item and that, with the next run, any duplicates are removed.\n\n<$macrocall $name='wikitext-example-without-html'\nsrc=\"\"\"<$button>\n<$action-listops $tiddler=\"ListopsData\" $index=\"DataIndex\" $filter=\"[[]]\" $subfilter=\"+[append:3{!!numbers}]\"/>\nSetup some numbers\n</$button>\n<$button>\n<$action-listops $tiddler=\"ListopsData\" $index=\"DataIndex\" $subfilter=\"+[!append:6{!!numbers}]\"/>\nAppend more numbers\n</$button>\n\n<$button>\n<$action-listops $tiddler=\"ListopsData\" $index=\"DataIndex\" $subfilter=\"+[putfirst:2[]]\"/>\nMove last 2 items to the head\n</$button>\n<$button>\n<$action-listops $tiddler=\"ListopsData\" $index=\"DataIndex\" $subfilter=\"+[putlast[]]\"/>\nMove the head to the last item\n</$button>\n\n{{ListopsData}}\"\"\"/>\n"
},
"TiddlerWidget": {
"title": "TiddlerWidget",
"created": "20130824154300000",
"modified": "20170901101236822",
"tags": "Widgets",
"type": "text/vnd.tiddlywiki",
"caption": "tiddler",
"text": "! Introduction\n\nThe TiddlerWidget is used to set a value for the [[current tiddler|Current Tiddler]] variable, valid within the scope of the TiddlerWidget.\n\n! Content and Attributes\n\n|!Attribute |!Description |\n|tiddler |The title of the tiddler to become the new [[current tiddler|Current Tiddler]] |\n\n! CSS Class Variables\n\nThe tiddler widget assigns several useful CSS classes to variables that it creates:\n\n; missingTiddlerClass\n: `tc-tiddler-exists` or...\n: `tc-tiddler-missing` depending on whether the tiddler exists\n;shadowTiddlerClass\n: `tc-tiddler-shadow` if the tiddler is a shadow tiddler\n;systemTiddlerClass\n:` tc-tiddler-system` if the tiddler is a system tiddler\n;tiddlerTagClasses\n: a space separated list of CSS classes named `tc-tagged-{tagname}`,<br>e.g. `tc-tagged-introduction`<br><br>''Note:'' tag names are URI encoded which means that the tag [[$:/tags/Macro]] appears as the CSS class `tc-tagged-%24%3A%2Ftags%2FMacro`. See [[How to apply custom styles by tag]] for more details\n\nYou can use these variables like this:\n\n```\n<$tiddler tiddler=\"MyOtherTiddler\">\n<div class=<<missingTiddlerClass>>>\n<$transclude/>\n</div>\n</$tiddler>\n```\n\nSee also [[$:/core/ui/ViewTemplate]].\n"
},
"TranscludeWidget": {
"title": "TranscludeWidget",
"created": "20130824142500000",
"modified": "20140717175900970",
"tags": "Widgets",
"type": "text/vnd.tiddlywiki",
"caption": "transclude",
"text": "! Introduction\n\nThe TranscludeWidget dynamically imports content from another tiddler.\n\n! Attributes\n\n|!Attribute |!Description |\n|tiddler |The title of the tiddler to transclude (defaults to the current tiddler) |\n|field |The field name of the current tiddler (defaults to \"text\"; if present takes precedence over the index attribute) |\n|index |The index of a property in a [[DataTiddler|DataTiddlers]] |\n|subtiddler |Optional SubTiddler title when the target tiddler is a [[plugin|Plugins]] (see below) |\n|mode |Override the default parsing mode for the transcluded text to \"block\" or \"inline\" |\n\nThe TranscludeWidget treats any contained content as a fallback if the target of the transclusion is not defined (ie a missing tiddler or a missing field).\n\n! Parsing modes\n\nTiddlyWiki parses text in two modes:\n\n* ''inline'' mode recognises character formatting such as emphasis, links\n* ''block'' mode recognises all the ''inline'' formatting, and adds block formatting such as tables, headings and lists\n\nUsually, the mode is determined by whether the transclude widget itself has been parsed in block or inline mode. This can be overridden with the `mode` attribute.\n\nFor example, consider tiddler \"A\" with this content:\n\n```\n# Item one\n#<$transclude tiddler=\"B\"/>\n# Item two\n```\n\nAnd a tiddler \"B\" with this content:\n\n```\n# Item one - a\n# Item one - b\n```\n\nThe result will be something like this:\n\n# Item one\n# # Item one - a # Item one - b\n# Item two\n\nThis can be fixed by amending tiddler \"A\":\n\n```\n# Item one\n#<$transclude tiddler=\"B\" mode=\"block\"/>\n# Item two\n```\n\n! ~SubTiddler Access\n\nThe transclude widget allows access to the individual tiddlers stored within a [[plugin|Plugins]].\n\nThe following example will transclude the core version of the tiddler [[$:/DefaultTiddlers]] even if it has been overridden:\n\n<<wikitext-example-without-html '\n<$transclude tiddler=\"$:/core\" subtiddler=\"$:/DefaultTiddlers\"/>\n\n'>>\n"
},
"VarsWidget": {
"title": "VarsWidget",
"created": "20150426115958020",
"modified": "20150426115958020",
"tags": "Widgets",
"caption": "vars",
"text": "! Introduction\n\nThe ''vars'' widget allows multiple variables to be set in one operation. In some situations it can result in simpler code than using the more flexible SetWidget.\n\n! Content and Attributes\n\nThe content of the `<$vars>` widget is the scope for the value assigned to the variable.\n\n|!Attribute |!Description |\n|//{attributes not starting with $}// |Each attribute name specifies a variable name. The attribute value is assigned to the variable |\n\n! Examples\n\nConsider a case where you need to set multiple variables.\n\nUsing the `<$vars>` widget, this situation may be handled in the following way:\n\n```\n\\define helloworld() Hello world!\n\n<$vars greeting=\"Hi\" me={{!!title}} sentence=<<helloworld>>>\n <<greeting>>! I am <<me>> and I say: <<sentence>>\n</$vars>\n```\n\nIn contrast, here is the same example using the `<$set>` widget:\n\n```\n<$set name=\"greeting\" value=\"Hi\" >\n<$set name=\"me\" value={{!!title}} >\n<$set name=\"sentence\" value=<<helloworld>> >\n <<greeting>>! I am <<me>> and I say: <<sentence>>\n</$set>\n</$set>\n</$set>\n```\n\n! Remarks\n\nIt should be noted that this widget differs from the set widget in the following ways:\n\n* A fallback (also known as \"emptyValue\") cannot be specified\n* Filters cannot be used to produce a conditional variable assignement\n* Variable names must be literal strings\n"
},
"ViewWidget": {
"title": "ViewWidget",
"caption": "view",
"created": "20131024141900000",
"modified": "20180730201626985",
"tags": "Widgets",
"type": "text/vnd.tiddlywiki",
"text": "! Introduction\n\nThe view widget displays the contents of a tiddler field in a specified format.\n\n! Content and Attributes\n\nThe content of the `<$view>` widget is displayed if the field or property is missing or empty.\n\n|!Attribute |!Description |\n|tiddler |The title of the tiddler (defaults to the [[current tiddler|Current Tiddler]]) |\n|field |The name of the field to view (defaults to \"text\") |\n|index |The name of the index to view |\n|format |The format for displaying the field (see below) |\n|template |Optional template string used when the `format` attribute is set to \"date\" |\n|subtiddler |Optional SubTiddler title when the target tiddler is a [[plugin|Plugins]] (see below) |\n|mode |<<.from-version \"5.1.15\">> Optional transclusion parsing mode for wikified formats. May be \"inline\" or \"block\" (the default) |\n\n!! Formats\n\nThe following formats can be specified in the `format` attribute:\n\n|!Format |!Description |\n|''text'' |Plain text |\n|''htmlencoded'' |The field is displayed with HTML encoding |\n|''urlencoded'' |The field is displayed with URL encoding |\n|''doubleurlencoded'' |The field is displayed with double URL encoding |\n|''htmlwikified'' |The field is wikified according to the mode attribute and the resulting HTML returned as plain text (ie HTML elements will appear in plain text) |\n|''plainwikified'' |The field is wikified according to the mode attribute and the text content of the resulting HTML returned as plain text (ie HTML elements will be removed) |\n|''htmlencodedplainwikified'' |The field is wikified according to the mode attribute and the text content of the resulting HTML returned as HTML encoded plain text (ie HTML elements will be removed) |\n|''date'' |The field is interpreted as a UTC date and displayed according to the DateFormat specified in the `template` attribute |\n|''relativedate'' |The field is interpreted as a UTC date and displayed as the interval from the present instant |\n|''stripcomments'' |The field is interpreted as JavaScript source code and any lines beginning `\\\\#` are stripped |\n|''jsencoded'' |The field is displayed as a JavaScript encoded string |\n\n! SubTiddler Access\n\nThe view widget allows access to the individual tiddlers stored within a [[plugin|Plugins]].\n\nThe following example will view the core version of the tiddler [[$:/DefaultTiddlers]] even if it has been overridden:\n\n<<wikitext-example-without-html '\n<$view tiddler=\"$:/core\" subtiddler=\"$:/DefaultTiddlers\"/>\n\n'>>\n"
},
"Widgets": {
"title": "Widgets",
"created": "20140908130500000",
"modified": "20150219182745000",
"tags": "Concepts Reference",
"type": "text/vnd.tiddlywiki",
"text": "~TiddlyWiki's display is driven by an underlying collection of <<.def widgets>>. These are organised into a tree structure: each widget has a parent widget and zero or more child widgets.\n\n~TiddlyWiki generates this <<.def \"widget tree\">> by parsing the WikiText of tiddlers. Each component of the WikiText syntax, including even the trivial case of ordinary text, generates a corresponding widget. The widget tree is an intermediate representation that is subsequently rendered into the actual display.\n\nWidgets are analogous to elements in an HTML document. Indeed, HTML tags in WikiText generate dedicated <<.def \"element widgets\">>.\n\nEach class of widget contributes a specific ability to the overall functionality, such as the ability to <<.wlink2 \"display an image\" ImageWidget>> or <<.wlink2 \"a button\" ButtonWidget>>, to <<.wlink2 \"call a macro\" MacroCallWidget>> or <<.wlink2 \"transclude text from elsewhere\" TranscludeWidget>>, or to [[mark a piece of text as a heading|HTML in WikiText]].\n\nThe more specialised widgets use a general-purpose [[widget syntax|Widgets in WikiText]] as their only possible WikiText representation.\n\nThe following classes of widget are built into the core:\n\n<<list-links \"[tag[Widgets]]\">>\n"
},
"WikifyWidget": {
"title": "WikifyWidget",
"caption": "wikify",
"created": "20160321144949700",
"modified": "20161017122117062",
"tags": "Widgets",
"type": "text/vnd.tiddlywiki",
"text": "! Introduction\n\nThe wikify widget parses and renders a string of text and assigns the result to a specified [[variable|Variables]]. The new value of the variable is available to the content within the wikify widget.\n\n! Content and Attributes\n\nThe content of the `<$wikify>` widget is the scope for the value assigned to the variable.\n\n|!Attribute |!Description |\n|name |The name of the variable to assign |\n|text |The text to parse and render |\n|type |The ContentType of the text (defaults to `text/vnd.tiddlywiki`) |\n|mode |The parse mode: `block` (the default) or `inline` |\n|output |Keyword indicating the desired output type, defaulting to `text` (see below) |\n\nThe available output types are:\n\n|!Keyword |!Description |\n|text |Return the plain text of the rendered output (ie HTML tags are omitted) |\n|formattedtext |Return the plain text with simple text formatting of the rendered output (ie HTML tags are omitted) |\n|html |Return the rendered HTML of the output |\n|parsetree |Return a formatted JSON representation of the parse tree |\n|widgettree |Return a formatted JSON representation of the widget tree |\n"
},
"Block Quotes in WikiText": {
"title": "Block Quotes in WikiText",
"caption": "Block Quotes",
"created": "20131206154636572",
"modified": "20170417165145317",
"tags": "WikiText",
"type": "text/vnd.tiddlywiki",
"text": "There are two ways to produce HTML block quotes in TiddlyWiki5, one for content spread across multiple lines, and one for single line content.\n\n! Multi-line Block Quotes\n\nThe syntax for multi-line block quotes ({{$:/core/images/quote}}) is:\n\n<<wikitext-example src:\"<<<\nThis is a block quoted paragraph\nwritten in English\n<<<\n\">>\n\n!! Citation\n\nA citation can be added to the quote like this:\n\n<<wikitext-example src:\"<<<\nComputers are like a bicycle for our minds\n<<< Steve Jobs\n\">>\n\n!! CSS Classes\n\nCSS classes can be added to a block quote:\n\n<<wikitext-example src:\"<<<.myClass.another-class\nOperating systems are like a brick wall for our minds\n<<< Nobody\n\">>\n\nThe core includes the class `tc-big-quote` that renders block quotes with outsize double quotes:\n\n<<wikitext-example src:\"<<<.tc-big-quote\nA dramatic quote\n<<< Somebody Important\n\">>\n\n! Single-line Block Quotes\n\nThe single-line syntax for block quotes is actually an extension of the syntax for [[Lists in WikiText]]. For example:\n\n<<wikitext-example src:\"> Quoted text\n> Another line of quoted text\n\">>\n\nYou can also nest quotes like this:\n\n```\n> A top quote\n>> A subquote\n> Another top quote\n```\n\nWhich renders as:\n\n> A top quote\n>> A subquote\n> Another top quote\n\nYou can also mix block quotes with other list items. For example:\n\n<<wikitext-example src:\"* List One\n** List Two\n**> A quote\n**> Another quote\n* List Three\n\">>\n"
},
"Code Blocks in WikiText": {
"title": "Code Blocks in WikiText",
"caption": "Code Blocks",
"created": "20131205160047557",
"modified": "20160606140326254",
"tags": "WikiText",
"type": "text/vnd.tiddlywiki",
"text": "You can use triple backticks <code>```</code> to mark code blocks ({{$:/core/images/mono-block}}):\n\n<pre>\n```\nThis will be monospaced\n```\n</pre>\n\nRenders as:\n\n```\nThis will be monospaced\n```\n\nTo be interpreted correctly, the three backticks need to be at the start of the line and immediately followed by a line-break.\n\nBe aware that any preceding paragraph content should be properly terminated with a double line break, too. So, this example is wrong:\n\n<pre>\nThis is an ordinary paragraph\n```\nThis will be monospaced\n```\n</pre>\n\nThe correct version is:\n\n<pre>\nThis is an ordinary paragraph\n\n```\nThis will be monospaced\n```\n</pre>\n\nNote that some keyboard layouts treat the backtick as a [[dead key|http://en.wikipedia.org/wiki/Dead_key]], making it hard to type. The trick is to type three backticks followed by a space. Alternatively, type all six backticks in one go, then a space, and then move the cursor back three characters to type or paste the content.\n\n"
},
"Dashes in WikiText": {
"title": "Dashes in WikiText",
"created": "20131205160641986",
"modified": "20131205160653909",
"tags": "WikiText",
"type": "text/vnd.tiddlywiki",
"caption": "Dashes",
"text": "You can create an n-dash with a double hyphen `--` and an m-dash with a triple hyphen `---`. For example -- this is an example --- and so is this\n"
},
"Definitions in WikiText": {
"title": "Definitions in WikiText",
"created": "20131205160424246",
"modified": "20131205160450910",
"tags": "WikiText",
"type": "text/vnd.tiddlywiki",
"caption": "Definitions",
"text": "HTML definition lists are created with this syntax:\n\n<<wikitext-example src:\"; Term being defined\n: Definition of that term\n; Another term\n: Another definition\n\">>\n"
},
"Formatting in WikiText": {
"title": "Formatting in WikiText",
"caption": "Formatting",
"created": "20131205155959399",
"modified": "20160606135946509",
"tags": "WikiText",
"type": "text/vnd.tiddlywiki",
"text": "Available character formatting includes:\n\n* <code>`backticks`</code> for `code` ({{$:/core/images/mono-line}})\n** Alternatively, <code>``double backticks allows `embedded` backticks``</code>\n* `''bold''` for ''bold text'' ({{$:/core/images/bold}})\n* `//italic//` for //italic text// ({{$:/core/images/italic}})\n* `__underscore__` for __underscored text__ ({{$:/core/images/underline}})\n* `^^superscript^^` for ^^superscripted^^ text ({{$:/core/images/superscript}})\n* `,,subscript,,` for ,,subscripted,, text ({{$:/core/images/subscript}})\n* `~~strikethrough~~` for ~~strikethrough~~ text ({{$:/core/images/strikethrough}})\n\nSee also: [[Code Blocks in WikiText]]\n"
},
"HTML in WikiText": {
"title": "HTML in WikiText",
"caption": "HTML",
"created": "20131205160816081",
"modified": "20161021102422842",
"tags": "WikiText",
"type": "text/vnd.tiddlywiki",
"text": "HTML tags and comments can be used directly in WikiText. For example:\n\n```\n<article class=\"hello\">\nThis is my nice and simple block of text. HelloThere\n<!-- This comment will not appear in the wikified output -->\n</article>\n```\n\n[[Widgets share the same syntax as HTML tags|Widgets in WikiText]], and so the following information applies to them, too.\n\n! Block mode versus Inline mode\n\nTo get the content of an HTML element to be parsed in block mode, the opening tag must be followed by two linebreaks.\n\nWithout the two linebreaks, the tag content will be parsed in inline mode which means that block mode formatting such as wikitext tables, lists and headings is not recognised.\n\n! Attributes\n\nIn an extension of conventional HTML syntax, attributes of elements/widgets can be specified in several different ways: \n\n* a literal string\n* a transclusion of a TextReference\n* a transclusion of a [[macro/variable|Macros in WikiText]]\n* as the result of a [[Filter Expression]]\n\n!! Literal Attribute Values\n\nLiteral attribute values can use several different styles of quoting:\n\n* Single quotes (eg `attr='value'`)\n* Double quotes (eg `attr=\"value\"`)\n* Tripe double quotes (eg `attr=\"\"\"value\"\"\"`)\n* No quoting is necessary for values that do not contain spaces (eg `attr=value`)\n\nLiteral attribute values can include line breaks. For example:\n\n```\n<div data-address=\"Mouse House,\nMouse Lane,\nRodentville,\nRatland.\"/>\n```\n\nBy using triple-double quotes you can specify attribute values that contain single double quotes. For example:\n\n```\n<div data-address=\"\"\"Mouse House,\n\"Mouse\" Lane,\nRodentville,\nRatland.\"\"\"/>\n```\n\n!! Transcluded Attribute Values\n\nTranscluded attribute values are indicated with double curly braces around a TextReference. For example:\n\n```\nattr={{tiddler}}\nattr={{!!field}}\nattr={{tiddler!!field}}\n```\n\n!! Variable Attribute Values\n\nVariable attribute values are indicated with double angle brackets around a [[macro invocation|Macro Calls in WikiText]]. For example:\n\n```\n<div title=<<MyMacro \"Brian\">>>\n...\n</div>\n```\n\n!! Filtered Attribute Values\n\nFiltered attribute values are indicated with triple curly braces around a [[Filter Expression]]. The value will be the first item in the resulting list, or the empty string if the list is empty.\n\nThis example shows how to add a prefix to a value:\n\n```\n<$text text={{{ [<currentTiddler>]addPrefix[$:/myprefix/]] }}}>\n```\n\n"
},
"HTML Links in WikiText": {
"title": "HTML Links in WikiText",
"created": "20161021101834041",
"modified": "20161021102041147",
"tags": "[[HTML in WikiText]]",
"type": "text/vnd.tiddlywiki",
"text": "It is often useful to be able to create HTML links to external resources. For example, here the value of the `href` attribute will be set to the value of the tiddler MyLinkDestination:\n\n```\n<a href={{MyLinkDestination}}>link</a>\n```\n\nHowever, there is an unexpected security issue that means that most of the time the link should have the `rel` attribute set to `noopener noreferrer` to maintain privacy of the URLs of private TiddlyWiki's (eg on Dropbox). See https://mathiasbynens.github.io/rel-noopener/ for more information.\n\n```\n<a href={{MyLinkDestination}} rel=\"noopener noreferrer\">link</a>\n```\n"
},
"Hard Linebreaks in WikiText": {
"title": "Hard Linebreaks in WikiText",
"created": "20131214165710101",
"modified": "20131214170106553",
"tags": "WikiText",
"type": "text/vnd.tiddlywiki",
"caption": "Hard Linebreaks",
"text": "The usual handling of [[paragraphs in wikitext|Paragraphs in WikiText]] causes single line breaks to be ignored, and double linebreaks to be interpreted as the end of a paragraph.\n\nThis behaviour isn't convenient when dealing with material that incorporates hard linebreaks - for instance, poetry. You can mark a block of content as containing hard line breaks like this:\n\n<<wikitext-example src:'\"\"\"\nThis is a line\nand this is a new line\nwhile this is yet another line\nand this is the final one\napart from this one\n\"\"\"'>>\n"
},
"Headings in WikiText": {
"title": "Headings in WikiText",
"created": "20131205161234909",
"modified": "20190412000000000",
"tags": "WikiText",
"type": "text/vnd.tiddlywiki",
"caption": "Headings",
"text": "Headings are specified with one up to six leading `!` characters:\n\n```\n! This is a level 1 heading\n\n!! This is a level 2 heading\n\n!!! This is a level 3 heading\n```\n\nCSS classes can be assigned to individual headings like this:\n\n<<wikitext-example src:\"\" \"!!.myStyle This heading has the class `myStyle`\">>\n"
},
"Horizontal Rules in WikiText": {
"title": "Horizontal Rules in WikiText",
"created": "20131205160706975",
"modified": "20131205160719633",
"tags": "WikiText",
"type": "text/vnd.tiddlywiki",
"caption": "Horizontal Rules",
"text": "You can include a horizontal rule with three or more dashes on their own on a line:\n\n<<wikitext-example src:\"\n---\n\">>\n"
},
"Images in WikiText": {
"title": "Images in WikiText",
"caption": "Images",
"created": "20131205160221762",
"modified": "20160617100358365",
"tags": "WikiText [[Working with TiddlyWiki]]",
"type": "text/vnd.tiddlywiki",
"text": "! Image Formatting\n\nImages can be included in WikiText with the following syntax:\n\n```\n[img[Motovun Jack.jpg]]\n[img[https://tiddlywiki.com/favicon.ico]]\n```\n\nYou can also insert images from the editor toolbar. Click ''picture'' ({{$:/core/images/picture}}) and select a picture file.\n\nIf the image source is the title of an image tiddler then that tiddler is directly displayed. Otherwise it is interpreted as a URL and an HTML `<img>` tag is generated with the `src` attribute containing the URL.\n\nA tooltip can also be specified:\n\n```\n[img[An explanatory tooltip|Motovun Jack.jpg]]\n```\n\nAttributes can be provided to specify CSS classes and the image width and height:\n\n```\n[img width=32 [Motovun Jack.jpg]]\n[img width=32 class=\"tc-image\" [Motovun Jack.jpg]]\n```\n\nNote that attributes can be specified as transclusions or variable references:\n\n```\n[img width={{!!mywidth}} class=<<image-classes>> [Motovun Jack.jpg]]\n```\n\nThe image syntax is a shorthand for invoking the ImageWidget.\n\n! Displaying Images via Transclusion\n\nYou can also display an image stored in a tiddler by transcluding that tiddler. The disadvantage of this approach is that there is no direct way to control the size of the image.\n\n```\n{{Motovun Jack.jpg}}\n```\n\nRenders as:\n\n{{Motovun Jack.jpg}}\n\n"
},
"Linking in WikiText": {
"title": "Linking in WikiText",
"caption": "Linking",
"created": "20131205155230596",
"modified": "20160607095245257",
"tags": "WikiText",
"type": "text/vnd.tiddlywiki",
"text": "A key capability of WikiText is the ability to make links to other tiddlers or to external websites.\n\n! Manual Links\n\nLink to a tiddler by title:\n\n```\n[[Tiddler Title]]\n```\n\nTo link to a tiddler and specify the text of the link:\n\n```\n[[Displayed Link Title|Tiddler Title]]\n```\n\nYou can also create a link from the editor toolbar. Click ''link'' ({{$:/core/images/link}}), and search and select a tiddler.\n\n! ~CamelCase Links\n\nFor tiddler titles that match the CamelCase rules, just typing the title without double square brackets will automatically create a link.\n\nYou can suppress a link from being recognised by preceding it with `~`. For example:\n\n<<wikitext-example src:\"* ~HelloThere is not a link\n* ~http://google.com/ is not a link\">>\n\n! External Links\n\nTo link to an external [[resource|https://en.wikipedia.org/wiki/Web_resource]] such as a website or a file, type its //full// [[URL|https://en.wikipedia.org/wiki/URL]], including the [[URI scheme|https://en.wikipedia.org/wiki/URI_scheme]] such as a protocol (e.g. `http://`, `file://`) or `mailto`:\n\n```\nhttps://tiddlywiki.com/\n\n[[TW5|https://tiddlywiki.com/]]\n\n[[Mail me|mailto:me@where.net]]\n\n[[Open file|file:///c:/users/me/index.html]]\n```\n\nFor this syntax to work, the URL has to be recognisable as a URL. Otherwise, it is treated as a tiddler title. As a result, in case you want to link to a resource locatable using a relative path, use the extended syntax:\n\n```\n[ext[Open file|index.html]]\n\n[ext[Open file|./index.html]]\n\n[ext[Open file|../README.md]]\n\n[ext[Open file|c:\\users\\me\\index.html]]\n```\n\nThe extended syntax still works with full URLs, although in that case it is not necessary:\n\n```\n[ext[https://tiddlywiki.com]]\n\n[ext[TW5|https://tiddlywiki.com]]\n\n[ext[Mail me|mailto:me@where.net]]\n\n[ext[Open file|file:///c:/users/me/index.html]]\n```\n\nYou can also use the extended syntax to force an external link:\n\n```\n[ext[Donate|bitcoin:1aabbdd....?amount=0.001]]\n```\n\n! Customising Tiddler Links\n\nSee the LinkWidget for details of the underlying widget used to implement tiddler links, including macros that can be used to customise its behaviour.\n\n"
},
"Lists in WikiText": {
"title": "Lists in WikiText",
"caption": "Lists",
"created": "20131205160257619",
"modified": "20160607093103220",
"tags": "WikiText Lists",
"type": "text/vnd.tiddlywiki",
"text": "! Bulleted Lists\n\nYou can create bulleted (unordered) lists with `*` characters ({{$:/core/images/list-bullet}}):\n\n<<wikitext-example src:\"* First list item\n* Second list item\n** A subitem\n* Third list item\n\">>\n\n! Numbered Lists\n\nNumbered (ordered) lists use `#` instead of `*` ({{$:/core/images/list-number}}):\n\n# First item\n# Second item\n# Third item\n\nYou can also mix ordered and unordered list items:\n\n<<wikitext-example src:\"* To do today\n*# Eat\n* To get someone else to do\n*# This\n*# That\n*## And the other\n\">>\n\nHere's an example the other way around, with numbers as the first level:\n\n<<wikitext-example src:\"# To do today\n#* Eat\n# To get someone else to do\n#* This\n#* That\n#** And the other\n\">>\n\n! CSS Classes\n\nYou can also assign a CSS class to an individual member of a list with this notation:\n\n<<wikitext-example src:\"* List One\n*.MyClass List Two\n* List Three\n\">>\n\n! Mixing Lists and Block Quotes\n\nNote that [[Block Quotes in WikiText]] can be mixed with lists. For example:\n\n<<wikitext-example src:\"* List One\n** List Two\n**> A quote\n**> Another quote\n* List Three\n\">>\n\n! Paragraphs in Lists\n\nEntries in the list are delimited with a linebreak, making it impossible to include linebreaks within a list entry. There are a couple of workarounds.\n\nFirst, you can transclude paragraph content from another tiddler. For example:\n\n```\n* First entry\n* <$transclude tiddler=\"MyTiddler\" mode=\"block\"/>\n* Third entry\n```\n\nSecondly, you can use an HTML \"div\" element to contain the multiline content. For example:\n\n```\n# Step 1\n# Step 2\n# Step 3<div>\n\nHere is the first of several paragraphs. Note that the double linebreak preceding this paragraph is significant.\n\nAnd here is the second of several paragraphs.\n</div>\n# Step 4\n# Step 5\n# Step 6\n```\n"
},
"Macro Calls in WikiText": {
"title": "Macro Calls in WikiText",
"created": "20150220182252000",
"modified": "20150221221340000",
"tags": "WikiText",
"type": "text/vnd.tiddlywiki",
"caption": "Macro Calls",
"text": "To call a [[macro|Macros]], place `<<`double angle brackets`>>` around the name and any parameter values.\n\nBy default, parameters are listed in the same order as in the macro's definition. A parameter can be labelled with its name, either for clarity or to modify the order.\n\nIf no value is specified for a parameter, the default value given for that parameter in the macro's definition is used instead. (If no default value was defined, the parameter is simply blank.)\n\nEach parameter value can be enclosed in `'`single quotes`'`, `\"`double quotes`\"`, `\"\"\"`triple double quotes`\"\"\"` or `[[`double square brackets`]]`. Triple double quotes allow a value to contain almost anything. If a value contains no spaces or single or double quotes, it requires no delimiters.\n\nA more formal [[presentation|Macro Call Syntax]] of this syntax is also available.\n\nThe syntax is actually a shorthand for a <<.wlink MacroCallWidget>> widget. The widget itself offers greater flexibility, including the ability to [[transclude|Transclusion]] parameter values or generate them via additional macros.\n\nAs macros are simply parameterised [[variables|Variables]], a variable's value can be inserted using the same techniques.\n\n[[Examples|Macro Calls in WikiText (Examples)]]\n\n!! Named vs.unnamed parameters\n\nIn the wikitext notation, using named parameters is always the safer choice compared to defining values only. Not naming parameters may have confusing side effects. For example, imagine the first parameter of some macro specifies a [[state tiddler|StateMechanism]] while the second one is intended for a [[template|Transclusion with Templates]] tiddler. Should you accidentally forget to define the first parameter or are confused about the order, the next time your macro is run, which might even be triggered using the preview, your template tiddler may inadvertently be overriden with what was intended to be the state.\n"
},
"Macro Definitions in WikiText": {
"title": "Macro Definitions in WikiText",
"caption": "Macro Definitions",
"created": "20150220181617000",
"modified": "20180820165115455",
"tags": "WikiText",
"type": "text/vnd.tiddlywiki",
"text": "A [[macro|Macros]] is defined using a `\\define` [[pragma|Pragma]]. Like any pragma, this can only appear at the start of a tiddler.\n\nThe first line of the definition specifies the macro name and any parameters. Each parameter has a name and, optionally, a default value that is used if no value is supplied on a particular call to the macro. The lines that follow contain the text of the macro text (i.e. the snippet represented by the macro name), until `\\end` appears on a line by itself:\n\n<$codeblock code={{$:/editions/tw5.com/macro-examples/say-hi}}/>\n\nAlternatively, the entire definition can be presented on a single line without an `\\end` marker:\n\n```\n\\define sayhi(name:\"Bugs Bunny\") Hi, I'm $name$.\n```\n\nA more formal [[presentation|Macro Definition Syntax]] of this syntax is also available.\n\n!! Accessing variables and parameters\n\nInside the macro there are several methods for accessing variables defined outside of the macro or parameters from the macro parameter list. \n\n|syntax|description|h\n|`$...$`|Text substitution of a parameter defined in the macro parameters list |\n|`<<__...__>>`|Parameter-as-variable access to a parameter defined in the macro parameters list |\n|`$(...)$`|Text substitution of a variable defined outside of the macro |\n|`<<...>>`|Access to a variable (or other macro) defined outside of the macro |\n<br>\n\n!!! Placeholders `$(...)$`\n\nThe macro can contain placeholders for parameters. These consist of a parameter name between dollar signs, like `$this$`.\n\nThe macro can also contain placeholders for [[variables|Variables]]. These consist of a variable name (or macro name) between dollar signs and round brackets, like `$(this)$`.\n\nThe actual value of the parameter or variable is substituted for the placeholder whenever the macro is called:\n\n<$importvariables filter=\"$:/editions/tw5.com/macro-examples/say-hi-using-variables\">\n<$codeblock code={{$:/editions/tw5.com/macro-examples/say-hi-using-variables}}/>\n<$macrocall $name=\".example\" n=\"1\"\neg=\"\"\"<$set name=\"address\" value=\"Rabbit Hole Hill\">\n<<say-hi-using-variables>>\n</$set>\"\"\"/>\n</$importvariables>\n\n!!! Parameters as Variables `<<__...__>>`\n\nParameters in a wikitext macro can be accessed as variables by using the syntax `<<__...__>>`, i.e the parameter name surrounded by double underscores. For example, the example above could also be expressed as:\n\n```\n\\define sayhi(name:\"Bugs Bunny\") Hi, I'm <$text text=<<__name__>>/>.\n```\n\nAccessing parameters as variables only works in macros that are wikified and not, for example, when a macro is used as an attribute value. The advantage of the technique is that it avoids the parameter value being substituted into the macro as a literal string, which in turn can help avoid issues with parameters that contain quotes.\n\nFor example, consider this macro. It invokes another macro using the single parameter as an argument for it:\n\n```\n\\define film-quote(line) <$macrocall $name=\"anothermacro\" actor=\"Bugs Bunny\" line=\"\"\"$line$\"\"\"/>\n```\n\nThe code above will fail if the macro is invoked with the argument containing triple double quotes (for example `<<film-quote 'I quote thrice \"\"\" - see!?'>>`). Using parameter variables offers a workaround:\n\n```\n\\define film-quote(line) <$macrocall $name=\"anothermacro\" actor=\"Bugs Bunny\" line=<<__line__>>/>\n```\n\n!! Scope\n\nMacros are available to the tiddler that defines them, plus any tiddlers that it transcludes.\n\nTo make a macro available to all tiddlers, define it in a tiddler that has the tag <<.tag $:/tags/Macro>>.\n\nIt is also possible to write a macro as a [[JavaScript module|https://tiddlywiki.com/dev/index.html#JavaScript%20Macros]]. ~JavaScript macros are available to all tiddlers, and offer the maximum flexibility.\n\nA tiddler can manually import macro definitions from a [[selection|Title Selection]] of other tiddlers by using the <<.wlink ImportVariablesWidget>> widget.\n"
},
"Macros in WikiText": {
"title": "Macros in WikiText",
"created": "20131205160746466",
"modified": "20150221094003000",
"tags": "WikiText",
"type": "text/vnd.tiddlywiki",
"caption": "Macros",
"text": "The use of [[macros|Macros]] in WikiText has two distinct aspects:\n\n* [[Defining macros|Macro Definitions in WikiText]]\n* [[Calling macros|Macro Calls in WikiText]]\n"
},
"Paragraphs in WikiText": {
"title": "Paragraphs in WikiText",
"created": "20131205155836435",
"modified": "20131214170445345",
"tags": "WikiText",
"type": "text/vnd.tiddlywiki",
"caption": "Paragraphs",
"text": "To mark the end of a paragraph in TiddlyWiki you need to type `enter` twice to create a double line break:\n\n```\nThis is the first paragraph.\n\nAnd this is the second paragraph.\n```\n\nSingle line breaks are ignored within paragraphs. For example:\n\n<<wikitext-example src:\"This is a\nparagraph made\nup of\nshort lines\">>\n\nFor situations where this behaviour isn't convenient, you can also use [[Hard Linebreaks in WikiText]].\n"
},
"Styles and Classes in WikiText": {
"title": "Styles and Classes in WikiText",
"created": "20131205160532119",
"modified": "20131205160549129",
"tags": "WikiText",
"type": "text/vnd.tiddlywiki",
"caption": "Styles and Classes",
"text": "You can use this construction to cause the wrapped content to be assigned specified CSS classes or styles:\n\n<<wikitext-example src:\"@@.myStyle\n* List One\n* List Two\n@@\n\">>\n\nSimilar syntax is used to assign styles. For example:\n\n<<wikitext-example src:\"@@background-color:red;\n* List One\n* List Two\n@@\n\">>\n\nMultiple styles and classes can be mixed. For example:\n\n<<wikitext-example src:\"@@.tc-tiddler-frame\n@@width:400px;\nSome text\n@@\n\">>\n"
},
"Tables in WikiText": {
"title": "Tables in WikiText",
"created": "20130914132100000",
"modified": "20140125144616046",
"tags": "WikiText",
"type": "text/vnd.tiddlywiki",
"caption": "Tables",
"text": "! Basics\n\nTiddlyWiki5 formats tables using vertical bar characters like so:\n\n```\n|!Cell1 |!Cell2 |\n|Cell3 |Cell3 |\n```\n\nExclamation marks are used to indicate header cells. The example renders as:\n\n|!Cell1 |!Cell2 |\n|Cell3 |Cell3 |\n\n! Cell Alignment\n\nTable cell alignment is controlled by inserting space characters before and/or after the cell content. For example:\n\n```\n|Left aligned content |\n| Right aligned content|\n| Centred content |\n|+++ a very wide column so we can see the alignment +++|\n```\n\nThe example renders as:\n\n|Left aligned content |\n| Right aligned content|\n| Centred content |\n|+++ a very wide column so we can see the alignment +++|\n\n! Cell vertical Alignment\n\nVertical alignment of cells is done by inserting either a `^` for top alignment or a `,` for bottom alignment as the first character of a cell. The normal horizontal alignment is still possible. For example:\n\n```\n|^top left |^ top center |^ top right|\n|middle left | middle center | middle right|\n|,bottom left |, bottom center |, bottom right|\n```\n\nThe example renders as:\n\n| :: | ::::::::::::::::::::::::::: | ::::::::::::::::::::::::::: | ::::::::::::::::::::::::::: | :: |\n| ::<br>:: |^top left |^ top center |^ top right| ::<br>:: |\n| ::<br>:: |middle left | middle center | middle right| ::<br>:: |\n| ::<br>:: |,bottom left |, bottom center |, bottom right| ::<br>:: |\n| :: | ::::::::::::::::::::::::::: | ::::::::::::::::::::::::::: | ::::::::::::::::::::::::::: | :: |\n\nIf you need to have a `^`or a `,` as the first character of a left aligned cell, you can use HTML escaping:\n\n| `^` | &#94; |\n| `,` | &#44; |\n\n! Cell Merging\n\nTo merge a table cell with the one above, use the special cell text `~`. To merge a cell with the one to its left use the text `<`. To merge one to its right use `>`. For example:\n\n```\n|Cell1 |Cell2 |Cell3 |Cell4 |\n|Cell5 |Cell6 |Cell7 |<|\n|Cell5 |~|Cell7 |Cell8 |\n|>|Cell9 |Cell10 |Cell11 |\n```\n\nRenders as:\n\n|Cell1 |Cell2 |Cell3 |Cell4 |\n|Cell5 |Cell6 |Cell7 |<|\n|Cell5 |~|Cell7 |Cell8 |\n|>|Cell9 |Cell10 |Cell11 |\n\n! Table Classes, Captions, Headers and Footers\n\nTable CSS classes, captions, headers and footers can be specified as special pseudo-rows. The following example:\n\n* assigns the CSS classes \"myclass\" and \"anotherClass\" to the table\n* gives the table the caption \"This is a caption\"\n* adds a header row of cells with the text \"Header\"\n* adds a footer row of cells with the text \"Footer\"\n\n```\n|myclass anotherClass|k\n|This is a caption |c\n|Cell1 |Cell2 |\n|Cell3 |Cell3 |\n|Header|Header|h\n|Footer|Footer|f\n```\n\nRenders as:\n\n|myclass anotherClass|k\n|This is a caption |c\n|Cell1 |Cell2 |\n|Cell3 |Cell3 |\n|Header|Header|h\n|Footer|Footer|f\n"
},
"Transclusion Basic Usage": {
"title": "Transclusion Basic Usage",
"created": "20141129201509859",
"modified": "20141130194810119",
"tags": "[[Transclusion in WikiText]]",
"caption": "Basic Usage",
"text": "! Simple Transclusion\n\nTo include some content from [[TiddlerA]] into [[TiddlerB]], edit the latter to include the following text: \n\n```\nThis is the content of TiddlerA: {{TiddlerA}}\n```\n\nThe result is that the content of the ''text'' field (i.e. the main content) of [[TiddlerA]] is rendered within [[TiddlerB]]. \n\n! Usage\n\nThe notation ``{{TiddlerA}}`` is a shortcut for ``{{TiddlerA!!text}}``. This is because the default field for transclusion is ''text'', but any other [[field|TiddlerFields]] can be used explicitly. For example, you can print the last time TiddlerA was modified using:\n\n```\nTiddlerA was modified on {{TiddlerA!!modified}}\n```\n\nBy omitting the tiddler title, the transclusion notation can also be used to display the content of a field from the current tiddler, for example:\n\n```\nThe current tiddler was modified on {{!!modified}}\n```\n\n! Recursion Errors\n\nNotice that using ``{{!!text}}`` or ``{{}}`` causes an error (//Recursive transclusion error in transclude widget//), because it does not make sense to include the content of the current tiddler into the content of the current tiddler (that is, into itself). Whenever you encouter this error message, it means that you are trying to include something into itself, directly or indirectly (for example if tiddler A transcludes tiddler B which transcludes tiddler C which, in turn, transcludes tiddler A).\n\n! Learning More\n\nIn TiddlyWiki, transclusions are not limited to including raw content like the above. To learn about more advanced uses of transclusion, see [[Transclusion with Templates]].\n\nSee also:\n\n* [[Transclusion]]\n* [[Transclusion with Templates]]\n* [[Transclusion in WikiText]]\n* TextReference\n* TiddlerFields.\n"
},
"Transclusion and Substitution": {
"title": "Transclusion and Substitution",
"created": "20141018090608643",
"modified": "20150220190346000",
"type": "text/vnd.tiddlywiki",
"text": "The power of WikiText comes from the ability to use the content of one tiddler inside another one. This ability takes several different forms that can easily be confused.\n\nThe main distinction is between a transclusion and a textual substitution:\n\n* A transclusion is replaced dynamically with the value of either:\n** a tiddler field\n** a variable\n* Textual substitutions are performed on the text of macro definitions before they are used\n\n! Tiddler Field Transclusion\n\n[[Transclusion in WikiText]] describes the basics of transclusion. For example:\n\n```\n{{MyTiddler}}\n```\n\nAs described in [[HTML in WikiText]], you can also transclude tiddler field values as attributes of HTML elements and widgets. For example:\n\n```\n<$text text={{MyTiddler}}/>\n```\n\nAs described in [[Introduction to filter notation]], you can also transclude tiddler field values as filter operands. For example:\n\n```\n{{{ [tag{TiddlerContainingMyTag}] }}}\n```\n\n! Variable/Macro Transclusion\n\nVariables that were defined with parameter or variable substitution are referred to as \"macros\". The value of a variable/macro can be transcluded with the syntax:\n\n```\n<<myMacro param:\"Value of parameter\">>\n```\n\nAs described in [[HTML in WikiText]], you can also transclude a variable as the value of an attribute of HTML elements and widgets. For example:\n\n```\n<$text text=<<myMacro>>/>\n```\n\nAs described in [[Introduction to filter notation]], you can also transclude a variable as the value of a filter operand. For example:\n\n```\n{{{ [tag<myMacro>] }}}\n```\n\n! Textual Substitution\n\nTextual substitution occurs when the value of a macro/variable is used. It is described in [[Macros in WikiText]].\n\nThe key difference between substitution and transclusion is that substitution occurs before WikiText parsing. This means that you can use substitution to build WikiText constructions. Transclusions are processed independently, and cannot be combined with adjacent text to define WikiText constructions.\n"
},
"Transclusion in WikiText": {
"title": "Transclusion in WikiText",
"caption": "Transclusion",
"created": "20131205160146648",
"modified": "20150220161347000",
"tags": "WikiText",
"type": "text/vnd.tiddlywiki",
"text": "! Introduction\n\nYou can incorporate the content of one tiddler within another using the [[Transclusion]] notation:\n\n* `{{MyTiddler}}` transcludes a single tiddler\n* `{{MyTiddler||TemplateTitle}}` displays the tiddler through a specified [[TemplateTiddler|TemplateTiddlers]]\n* `{{||TemplateTitle}}` displays the specified template tiddler without altering the [[current tiddler|Current Tiddler]]\n\n!! Transcluding Text References\n\nYou can also use a TextReference instead of a tiddler title:\n\n* `{{MyTiddler!!field}}` transcludes a specified field of a tiddler\n* `{{!!field}}` transcludes a specified field of the current tiddler\n* `{{MyTiddler##index}}` transcludes a specified indexed property of a [[DataTiddler|DataTiddlers]]\n* `{{##index}}` transcludes a specified indexed property of the current [[DataTiddler|DataTiddlers]]\n\n!! Filtered Transclusion\n\nA similar syntax can be used to transclude a list of tiddlers matching a specified [[filter|Filters]]:\n\n```\n{{{ [tag[mechanism]] }}}\n{{{ [tag[mechanism]] ||TemplateTitle}}}\n```\n\n! Generated Widgets\n\nThe WikiText transclusion syntax generates a TiddlerWidget wrapped around a TranscludeWidget. For example, `{{MyTiddler||MyTemplate!!myField}}` generates the following pair of widgets:\n\n```\n<$tiddler tiddler=\"MyTiddler\">\n<$transclude tiddler=\"MyTemplate\" field=\"myField\"/>\n</$tiddler>\n```\n\nSee also:\n\n* [[Transclusion Basic Usage]]\n* [[Transclusion with Templates]]\n* TemplateTiddlers\n* TranscludeWidget\n* [[Transclusion and Substitution]]\n"
},
"Transclusion with Templates": {
"title": "Transclusion with Templates",
"created": "20141129210304238",
"modified": "20150220161405000",
"tags": "[[Transclusion in WikiText]]",
"caption": "With Templates",
"text": "! Introduction\n\nIn [[Transclusion Basic Usage]] we have seen how to include the content of a tiddler A into a tiddler B. Now suppose that tiddler A contains:\n\n```\n@@background-color:yellow;\nHello, my title is {{!!title}}\n@@\n```\n\nThis makes tiddler A display its title with a yellow background (see [[Styles and Classes in WikiText]] to learn about CSS style). Imagine that you want to display the title in the same way in tiddler B. But you don't want to copy/paste the style instructions, because you might want to change the background colour later and you want to keep it consistent among tiddlers. This looks like a typical case of transclusion, so let's try to transclude tiddler A in tiddler B the usual way with ``{{A}}``. You should see the following content in tiddler B:\n\n<<<\n@@background-color:yellow;\nHello, my title is A\n@@\n<<<\n\nThe style is applied as expected, but the title is wrong: we want ``{{!!title}}`` to refer to the target tiddler B, and not the source tiddler A.\n\nThe solution is to use a //template//. In this case, the source tiddler A is called the [[TemplateTiddler|TemplateTiddlers]], and it is //applied// to tiddler B using the notation ``{{||A}}``. The difference is that any TextReference which does not refer explicitly to a specific tiddler is applied to the [[current tiddler|Current Tiddler]], that is, the target tiddler. As a result, tiddler B now looks as expected:\n\n<<<\n@@background-color:yellow;\nHello, my title is B\n@@\n<<<\n\n! Usage\n\nTranscluding via a template is like applying a mask: assuming that the source tiddler contains generic references (like eye holes in a mask), these will be replaced with the target tiddlers values (like the eyes of the person who wears the mask).\n\nA template can be applied to any tiddler, not necessarily the current one. This is achieved using the full notation ``{{<target>||<template>}}``. The default ``<target>`` is the [[current tiddler|Current Tiddler]] (this is what we used in the above example).\n\n! Examples\n\n!! A predefined template to render tags nicely\n\nYou can apply the system template ``$:/core/ui/TagTemplate`` to a tag in order to see it as a tag pill with a drop-down menu:\n\n```\n{{Transclusion||$:/core/ui/TagTemplate}}\n```\n\nis rendered as {{Transclusion||$:/core/ui/TagTemplate}}\n\nSee also:\n\n* [[Transclusion in WikiText]]\n* [[Transclusion Basic Usage]]\n* TextReference\n* TemplateTiddlers\n* TranscludeWidget\n* [[Current Tiddler]]\n"
},
"Typed Blocks in WikiText": {
"title": "Typed Blocks in WikiText",
"created": "20131205161051792",
"modified": "20140120171407764",
"tags": "WikiText",
"type": "text/vnd.tiddlywiki",
"caption": "Typed Blocks",
"text": "WikiText can include blocks of text that are rendered with an explicit ContentType like this:\n\n```\n$$$image/svg+xml\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"150\" height=\"100\">\n <circle cx=\"100\" cy=\"50\" r=\"40\" stroke=\"black\" stroke-width=\"2\" fill=\"green\" />\n</svg>\n$$$\n```\n\nThis renders as:\n\n$$$image/svg+xml\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"150\" height=\"100\">\n <circle cx=\"100\" cy=\"50\" r=\"40\" stroke=\"black\" stroke-width=\"2\" fill=\"green\" />\n</svg>\n$$$\n\nIt is also possible to abbreviate the ContentType to a file extension. For example:\n\n```\n$$$.svg\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"150\" height=\"100\">\n <circle cx=\"100\" cy=\"50\" r=\"40\" stroke=\"black\" stroke-width=\"2\" fill=\"red\" />\n</svg>\n$$$\n```\n\nThis renders as:\n\n$$$.svg\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"150\" height=\"100\">\n <circle cx=\"100\" cy=\"50\" r=\"40\" stroke=\"black\" stroke-width=\"2\" fill=\"red\" />\n</svg>\n$$$\n\nUnknown types render as plain text:\n\n```\n$$$text/unknown\nSome plain text, which will not be //formatted//.\n$$$\n```\n\nWhich renders as:\n\n$$$text/unknown\nSome plain text, which will not be //formatted//.\n$$$\n\nA render type can also be specified, causing a particular text rendering to be displayed. For example:\n\n```\n$$$text/vnd.tiddlywiki>text/html\nThis is ''some'' wikitext\n$$$\n\n$$$text/vnd.tiddlywiki>text/plain\nThis is ''some'' wikitext\n$$$\n```\n\nRenders as:\n\n$$$text/vnd.tiddlywiki>text/html\nThis is ''some'' wikitext\n$$$\n\n$$$text/vnd.tiddlywiki>text/plain\nThis is ''some'' wikitext\n$$$\n"
},
"Variables in WikiText": {
"title": "Variables in WikiText",
"caption": "Variables",
"created": "20141002141231992",
"modified": "20150221221850000",
"tags": "WikiText",
"type": "text/vnd.tiddlywiki",
"text": "See also the [[introduction to the concept of variables|Variables]].\n\nTo transclude the value of a variable, use the [[macro call syntax|Macro Calls in WikiText]] with no parameters. You can also use a <<.wlink MacroCallWidget>> widget.\n\nA [[macro|Macros]] snippet can contain `$(name)$` as a [[placeholder|Macro Definitions in WikiText]] for which the value of the variable of that name will be substituted.\n\nA variable's value can be used as a [[filter parameter|Filter Parameter]], or as a [[widget attribute|Widgets in WikiText]]. The latter supports macro parameters.\n\n!! Example: defining a variable\n\n<$macrocall $name=\".example\" n=\"1\"\neg=\"\"\"<$set name=animal value=zebra>\n<<animal>>\n</$set>\"\"\"/>\n\n!! Example: defining a macro\n\nThe `\\define` pragma below [[defines a macro|Macros in WikiText]] called <<.var tags-of-current-tiddler>>. The macro returns the value of the tiddler's <<.field tags>> field, and can be accessed from anywhere else in the same tiddler (or in any tiddler that [[imports|ImportVariablesWidget]] it).\n\n<$importvariables filter=\"$:/editions/tw5.com/macro-examples/tags-of-current-tiddler\">\n<$codeblock code={{$:/editions/tw5.com/macro-examples/tags-of-current-tiddler}}/>\n<$macrocall $name=\".example\" n=\"2\" eg=\"\"\"The tags are: <<tags-of-current-tiddler>>\"\"\"/>\n</$importvariables>\n\n!! Example: using a variable as a filter parameter\n\nThis example uses the <<.olink backlinks>> [[operator|Filter Operators]] to list all tiddlers that link to this one.\n\n<$macrocall $name=\".example\" n=\"3\" eg=\"\"\"<<list-links filter:\"[<currentTiddler>backlinks[]]\">>\"\"\"/>\n"
},
"Widgets in WikiText": {
"title": "Widgets in WikiText",
"caption": "Widgets",
"created": "20131205160840915",
"modified": "20161020210726813",
"tags": "WikiText",
"type": "text/vnd.tiddlywiki",
"text": "Widgets provide rich functionality within WikiText. They have the same syntax as [[HTML elements|HTML in WikiText]], but the tag name always starts with `$`. For example:\n\n```\n<$button message=\"tm-close-tiddler\">Close Me!</$button>\n```\n\nNote that widgets inherit all the features of [[HTML in WikiText]]:\n\n* Widget attributes can be specified as:\n** Unquoted strings (that cannot contain spaces)\n** Strings quoted with single or double quotes\n** Strings quoted with triple-double quotes\n** Macro invocations (eg `attr=<<myMacro>>`)\n** Transclusions (eg, `attr={{MyTiddler!!field}}`)\n** Filtered transclusions (eg, `attr={{{ [filter[op]] }}}`)\n* The content of a widget is parsed in inline mode unless the opening tag is followed by two linebreaks, which forces block mode\n** 'Inline mode' means that 'block mode' parse rules like headings, tables and lists are not recognised\n\nSee [[HTML in WikiText]] for more details.\n\nThe available widgets include:\n\n<<list-links \"[tag[Widgets]]\">>\n"
},
"Audio": {
"title": "Audio",
"created": "20141018131647392",
"modified": "20141019200654436",
"tags": "[[Working with TiddlyWiki]] Features",
"type": "text/vnd.tiddlywiki",
"text": "Audio files can be incorporated into TiddlyWiki in a very similar way to [[images|Images in WikiText]].\n\n! Embedded Audio\n\nSmall audio files can be embedded directly within TiddlyWiki. Embedding isn't suitable for large files (over a few hundred kilobytes) because it increases the size of the TiddlyWiki file.\n\nFor example, the tiddler [[TiddlyWiki.mp3]] contains an MP3 recording of the word \"TiddlyWiki\". If you visit that tiddler, you should see an audio player that will play back the recording.\n\nYou can also transclude audio files. For example:\n\n<<wikitext-example-without-html '{{TiddlyWiki.mp3}}'>>\n\n! External Audio\n\nExternal audio tiddlers use the ''_canonical_uri'' field to point to an external audio file/stream, and have their ''text'' field blocked. This reduces their size considerably, but still allows for playback.\n\nFor example, the tiddler [[Caruso - Ave Maria]] points to an online audio recording hosted on http://archive.org:\n\n<<wikitext-example-without-html '{{Caruso - Ave Maria}}'>>\n"
},
"BrowserCompatibility": {
"title": "BrowserCompatibility",
"tags": "[[Working with TiddlyWiki]]",
"text": "TiddlyWiki is designed to work with HTML5-compatible browsers.\n\nThe following table summarises the browser versions that are known to work with TiddlyWiki\n\n|!Browser |!Status |\n|Internet Explorer |Version 10 and above |\n|Chrome |All recent versions |\n|Firefox |All recent versions |\n|Firefox for Android |All recent versions |\n|Safari |Version 6 and above |\n"
},
"Creating and editing tiddlers": {
"title": "Creating and editing tiddlers",
"created": "20140904140300000",
"modified": "20160607153747195",
"tags": "[[Working with TiddlyWiki]]",
"type": "text/vnd.tiddlywiki",
"text": "! Creating tiddlers\n\nYou create a tiddler either by clicking the {{$:/core/images/new-button}} button in the sidebar, or by clicking on a link to a missing tiddler. Links to missing tiddlers are shown in [[blue italics]].\n\nSee also:\n\n* [[Creating journal tiddlers]]\n\n! Editing tiddlers\n\nTo edit an existing tiddler, click the {{$:/core/images/edit-button}} button at the top right of the tiddler.\n\n!! Draft mode\n\nWhen you create a new tiddler or edit an existing one, the tiddler will go into draft mode. This presents a control panel for modifying the tiddler in various ways. It has several parts, from top to bottom:\n\n*''The title field'' - Use this to change the title of the tiddler\n*''The tag selector'' - Use this to add or remove tags. As you type a tag name in the box, a dropdown list will show you any existing tags that match. You can pick from this list or create a completely new tag. Then click the ''add'' button or hit the <kbd>Enter</kbd> key to add the tag to the tiddler. Each tag is shown as a coloured pill. Click the \"×\" on a pill to remove that tag\n*''The text area'' - Use this to edit the main content of the tiddler. Click the ''preview'' button ({{$:/core/images/preview-closed}} / {{$:/core/images/preview-open}}) to see what your changes will look like\n*''The type selector'' - Use this when a tiddler needs to be displayed in a special way, such as an image. See ContentType for a list of the options. The default is `text/vnd.tiddlywiki`, which means the tiddler contains WikiText\n*''The field selector'' - Use this to add or remove fields on the tiddler. For example, if you are editing a tiddler that's being used to tag other tiddlers, you can add a [[''list'' field|ListField]] to change the order in which those tiddlers will be listed\n\n! Save, cancel or delete\n\nWhen you have finished editing, click a button at the top right of the tiddler:\n\n*The ''ok'' button ({{$:/core/images/done-button}}) stores your changes to this one tiddler and leaves draft mode. If your wiki is configured to [[AutoSave]], your changes will be permanently saved. Otherwise they will only be stored temporarily in your web browser, and you will lose them if you close your ~TiddlyWiki page without first clicking the master ''save changes'' button ({{$:/core/images/save-button}}) in the sidebar.\n*The ''cancel'' button ({{$:/core/images/cancel-button}}) discards your changes (after asking you to confirm) and leaves draft mode.\n*The ''delete'' button ({{$:/core/images/delete-button}}) deletes the entire tiddler (after asking you to confirm).\n"
},
"Creating journal tiddlers": {
"title": "Creating journal tiddlers",
"created": "20141010093214683",
"modified": "20181218180042029",
"tags": "[[Working with TiddlyWiki]]",
"type": "text/vnd.tiddlywiki",
"text": "! Introduction\n\nJournal tiddlers are tiddlers that use a date and/or time as their title. They are typically used as a quick way to record time-stamped information.\n\nYou can use additional tags on a journal tiddler to link it to other tiddlers, helping to establish the relationships between items of information.\n\nFor example, you might use a journal tiddler called ''10th October 2014'' to record thoughts and information captured on that particular day. The tags ''Shopping'' and ''London'' might be used to indicate that the entry concerns shopping in London.\n\n! Creating a journal tiddler\n\nThe easiest way to create a journal tiddler is to use the ''new journal'' button {{$:/core/images/new-journal-button}} in the ''Tools'' tab of the sidebar. If you find yourself often using the button, click the checkbox next to it to make the button available just above the search box.\n\nThe ''new journal'' button creates a journal entry as a blank tiddler with the tag ''Journal'' and a title derived from today's date. If a journal tiddler with that title already exists, then this is opened for editing.\n\n! Creating a tagged journal tiddler\n\nA common sequence of actions is to create (or reopen) today's journal entry and tag it with the title of another tiddler. This can be done with the ''new journal here'' button {{$:/core/images/new-journal-button}} in the other tiddler's toolbar. You can find this button in the ''Tools'' tab of the tiddler's InfoPanel.\n\nFor example, you might be reviewing a tiddler called ''Oxford Street'' and realise that it's relevant for planning your shopping trip. Click the ''new journal here'' button on the ''Oxford Street'' tiddler to bring up a journal entry tagged with ''Oxford Street''.\n\n! Customising journal tiddlers\n\nTo configure how new journal entries are created, visit the ''Basics'' tab under ''Info'' in the [[control panel|$:/ControlPanel]] {{$:/core/images/options-button}}:\n\n* \"Title of new journal tiddlers\" specifies how these tiddlers should be named, as a [[date format string|DateFormat]]. The default setting of `DDth MMM YYYY` causes new entries to have titles of the form \"10th October 2014\"\n* \"Tags for new journal tiddlers\" [specifies|Title List] tags that will automatically appear on new journal entries. For example: `Journal [[Summer vacation]]`\n\nHint: if you want to create a separate journal tiddler whenever you click ''new journal'' (even if you do this several times in the same day), you can include the clock time in the title format. Specify something like `YYYY-0MM-0DD at 0hhh0mm'0ss''` as the date format.\n\nAnother useful trick is to include `<<currentTiddler>>` somewhere in the title format. This means that if you click ''new journal here'' on several different tiddlers, the title of each of those tiddlers will form part of the name of the resulting journal entries.\n\n! Making a custom new journal button\n\nVisit the [[Making a custom journal button]] tiddler for instructions on how to make your own custom New Journal button"
},
"Formatting text in TiddlyWiki": {
"title": "Formatting text in TiddlyWiki",
"created": "20140908131500000",
"modified": "20140919214820549",
"tags": "[[Working with TiddlyWiki]]",
"type": "text/vnd.tiddlywiki",
"text": "Within the text of a tiddler you can use special formatting called WikiText to control how the text is displayed.\n\nWikiText can be typed by using the [[Editor toolbar]] or by typing by hand. While the first is convenient the later can be faster when you know the WikiText markup code.\n\n! Simple Formatting\n\nAt its simplest, WikiText lets you use familiar word-processing features like bold, italic, lists and tables. For example:\n\n```\nThe ''quick'' brown ~~flea~~ fox //jumps// over the `lazy` dog\n```\n\n… displays as:\n\nThe ''quick'' brown ~~flea~~ fox //jumps// over the `lazy` dog\n\n! Working with Tiddlers\n\nIn WikiText, you can link to tiddlers using double square brackets, or by taking advantage of the automatic linking of CamelCase words:\n\n```\nThis is a link to HelloThere, and one to [[History of TiddlyWiki]]\n```\n\n… displays as:\n\nThis is a link to HelloThere, and one to [[History of TiddlyWiki]]\n\n! Macros\n\nMacros let you package repetitive fragments of WikiText so that you can easily reuse them.\n\nFor example, here is the definition of a macro that generates a ~YouTube video URL from its unique identifier:\n\n```\n\\define youtube(video)\nhttps://www.youtube.com/watch?v=$video$\n\\end\n```\n\nWith that definition in place, `<<youtube 1g66s7UbyuU>>` generates the URL https://www.youtube.com/watch?v=1g66s7UbyuU\n\n! Advanced WikiText\n\nAdvanced WikiText features allow you to produce automated lists and interactive features like dropdown menus. In fact, the entire user interface of TiddlyWiki itself is written in WikiText, so any feature that you see in TiddlyWiki can be adapted for use in your own wikis.\n\nSome of the advanced features require complex coding. TiddlyWiki includes several built-in macros that simplify common user interface tasks, like tabs, tables of content, and lists of tiddlers.\n\n! Find out more\n\nSee [[WikiText]] for a detailed introduction to writing WikiText.\n"
},
"Navigating between open tiddlers": {
"title": "Navigating between open tiddlers",
"created": "20140908092600000",
"modified": "20160607145200048",
"tags": "[[Working with TiddlyWiki]]",
"type": "text/vnd.tiddlywiki",
"text": "In the default \"classic\" storyview mode, open tiddlers are displayed in a vertical column called the \"story river\". There are a number of ways you can navigate the story river - that is, how you can jump back and forth between the open tiddlers.\n\n* The best approach is to ''use the Open tab'' in the sidebar to click on the open tiddler to which you wish to navigate.\n\n** The ''Open'' tab contains a list of all the open tiddlers. You can click on any tiddler in the list to jump to it, or click the \"×\" next to a tiddler link to close it. There is also a handy {{$:/core/images/close-all-button}} ''close all'' button at the bottom of the list of open tiddlers.\n\n* Another way is to simply ''scroll the page up and down'' using the story river scrollbar to the right.\n\n** Note that when both the story river and the sidebar extend below the visible screen, there will be //two// scrollbars. The outer or far-right scrollbar controls the story river. The inner scrollbar controls the sidebar.\n\n* A clunky approach that many new users try is to ''close tiddlers one by one'' until they get to the tiddler they are looking for. \n** Closing any tiddler at the top or in the middle of the story river will cause all the tiddlers below it to slide up the river. The tiddler immediately below the tiddler you closed will slide up to take its place.\n\n** Closing the bottom tiddler will close it and the bottom of the tiddler above it will come into view.\n"
},
"Performance": {
"title": "Performance",
"created": "20150330155120127",
"modified": "20190609154450433",
"tags": "[[Working with TiddlyWiki]]",
"type": "text/vnd.tiddlywiki",
"text": "TiddlyWiki ships with defaults that are designed to get the best out of modern devices from smartphones to desktop computers. If you need to work on older, less powerful devices, or work with large amounts of content, there are a few steps you can take to improve performance.\n\n* ''Avoid the \"Recent\" tab''. It is computationally slow to generate and update in response to tiddler changes.\n* ''Use the \"Vanilla\" theme''. The default \"Snow White\" theme includes visual effects like shadows, transparency and blurring that can be slow to render on older devices\n* ''Avoid large tiddlers''. Large bitmaps can significantly slow TiddlyWiki's performance. For example, an image taken with a modern smartphone will often be 5MB or more. Use ExternalImages whenever possible\n* ''Don't have too many tiddlers open at once''. Every tiddler you have open will require processing to keep it up to date as the store changes (for example, while you type into a draft tiddler). It is particularly easy when using zoomin story view to end up with dozens of tiddlers listed in the ''Open'' tab in the sidebar. Get into the habit of periodically closing all open tiddlers with the {{$:/core/images/close-all-button}} ''close all'' button\n* ''Use the built-in performance instrumentation''. Studying the [[performance instrumentation|Performance Instrumentation]] results can help highlight performance problems\n* Take advantage of indexed filter operators. The following constructions at the start of a filter run will be optimised to run many times faster than otherwise:\n** `[all[tiddlers]tag[x]...`\n** `[all[shadows]tag[x]...`\n** `[all[tiddlers+shadows]tag[x]...`\n** `[all[shadows+tiddlers]tag[x]...`\n** `[all[tiddlers]field:y[x]...`\n** `[all[shadows]field:y[x]...`\n** `[all[tiddlers+shadows]field:y[x]...`\n** `[all[shadows+tiddlers]field:y[x]...`\n** Note that the field indexer currently defaults to indexing field values of less than 128 characters; longer values can still be searched for, but no index will be constructed\n** Also note that the “field” operator is also used when the operator name is a fieldname, so, for example, `[all[shadows+tiddlers]caption[x]...` is optimised.\n\n"
},
"Sharing your tiddlers with others": {
"title": "Sharing your tiddlers with others",
"created": "20140908163900000",
"modified": "20170328142732658",
"tags": "Learning",
"type": "text/vnd.tiddlywiki",
"text": "There are a number of ways that you can share [[tiddlers|Tiddlers]] or your whole TiddlyWiki:\n\n*You can attach a ~TiddlyWiki to an e-mail\n*You can publish your ~TiddlyWiki online and grab a link to send or message to others:\n**A link to the web address of the whole ~TiddlyWiki file\n**A [[permalink|PermaLinks]] ({{$:/core/images/permalink-button}}) to a specific tiddler\n**A [[permaview|PermaViews]] ({{$:/core/images/permaview-button}}) link of all the currently open tiddlers\n* You can [[share a Dropbox link to your TiddlyWiki|Sharing a TiddlyWiki on Dropbox]]\n* You can [[export tiddlers|How to export tiddlers]] ({{$:/core/images/export-button}}) in a variety of formats including text, static HTML and comma separated values (ie spreadsheet compatible)\n*You can also share tiddlers merely by making your ~TiddlyWiki accessible to others, for example by publishing it online, so that they can [[import tiddlers|Importing Tiddlers]] from it\n"
},
"Using links to navigate between tiddlers": {
"title": "Using links to navigate between tiddlers",
"created": "20140908093600000",
"modified": "20171219170302268",
"tags": "[[Working with TiddlyWiki]]",
"type": "text/vnd.tiddlywiki",
"text": "You can use links (normally displayed as blue text) to navigate from one tiddler to another. Clicking on a link to any tiddler will take you to that tiddler. If the tiddler is closed, it will be opened. The wonderful thing about ~TiddlyWiki is that it makes links to tiddlers as accessible as possible. There are links everywhere! Here are the key places where you can find links to tiddlers in ~TiddlyWiki:\n\n* You can ''create a link'' to a tiddler, whether it exists yet or not, in the body of any tiddler. See [[Linking in WikiText]] to see the various easy ways to create links between tiddlers.\n\n* Each ''tag pill'' in your tiddler (such as the ''Working with ~TiddlyWiki'' tag pill below the title of this tiddler) contains a link to that tag's tiddler, as well as lists of all the tiddlers that carry that tag. This lets you go to any of those tiddlers.\n\n* The ''InfoPanel'' of each tiddler gives you access to four tabs containing additional lists of related tiddlers:\n\n** The ''References'' tab lists all the tiddlers that link //to// the current tiddler.\n\n** The ''Tagging'' tab lists all the tiddlers that have been tagged with the current tiddler's title.\n\n** The ''List'' tab lists all the tiddlers (or potential tiddlers) mentioned in the [[list field|ListField]] of the current tiddler.\n\n** The ''Listed'' tab lists all the tiddlers that mention the current tiddler in //their// list fields.\n\n* The ''sidebar tabs'' contain numerous lists of links to tiddlers:\n\n** The ''Open'' tab lists all the tiddlers that are currently open, i.e. visible somewhere on the page.\n\n** The ''Recent'' tab lists the 100 most recently modified tiddlers, beginning with the most recently modified.\n\n** The ''More'' tab offers eight additional lists of tiddlers:\n\n*** ''All'' lists all tiddlers in alphabetical order.\n\n*** ''Tags'' lists all the tags. You can click on the pill for any tag to access a list of the tiddlers tagged with that tag.\n\n*** ''Missing'' lists any tiddlers that don't yet exist, but have been linked to from other tiddlers. This is helpful for finding tiddlers you planned to create, but never got around to.\n\n*** ''Drafts'' lists any tiddlers that are currently in draft mode. ~TiddlyWiki considers a tiddler's draft to be a separate tiddler for as long as you are editing it, so while you're editing a tiddler entitled ''Australia'', there will be two tiddlers, ''Australia'' and ''Draft of 'Australia'''. When you close the draft by saving your changes to it, those changes will be applied to the ''Australia'' tiddler. So treat the ''Drafts'' tab as a way of finding any unfinished drafts you started.\n\n*** ''Orphans'' lists all the tiddlers that are not directly linked from another tiddler. This is a helpful aid to editing your file - it shows you which tiddlers need to be integrated more carefully with the others.\n\n*** ''Types'' lists any tiddlers with special content, such as images or audio.\n\n*** ''System'' lists all of the SystemTiddlers.\n\n*** ''Shadows'' lists all of the ShadowTiddlers.\n\n* ''Search results'' are a list of the tiddlers that contain the text you type in the search box.\n\n* Finally, you can create your own custom lists of tiddlers by various methods:\n\n** You can transclude a [[filter|Filters]] (see [[Transclusion in WikiText]]). For example, adding `{{{ [tag[mountain]] }}}` to a tiddler will insert a list of all tiddlers tagged with ''mountain''.\n\n** You can use the ListWidget. This is more complicated than transcluding a [[filter|Filters]], but in return it allows you more flexibility in designing and displaying the list exactly as you want it to appear.\n"
},
"Working with TiddlyWiki": {
"title": "Working with TiddlyWiki",
"created": "20140904101100000",
"list": "[[The First Rule of Using TiddlyWiki]] GettingStarted [[Getting Started Video]] Upgrading [[Navigating between open tiddlers]] [[Using links to navigate between tiddlers]] [[Searching in TiddlyWiki]] [[Creating and editing tiddlers]] [[Creating journal tiddlers]] Saving [[Formatting text in TiddlyWiki]] [[Structuring TiddlyWiki]] Tagging [[Images in WikiText]] KeyboardShortcuts Encryption",
"modified": "20140919191122898",
"tags": "TableOfContents",
"type": "text/vnd.tiddlywiki",
"text": "Information to help you get started using TiddlyWiki:\n\n<<list-links \"[tag[Working with TiddlyWiki]]\">>\n\n"
}
}
}
{
"tiddlers": {
"$:/plugins/tiddlywiki/twitter/macros": {
"title": "$:/plugins/tiddlywiki/twitter/macros",
"tags": "$:/tags/Macro",
"text": "\\define twitter-usage(text)\nFor example:\n\n<$codeblock code=\"\"\"$text$\"\"\"/>\n\nRenders as:\n\n$text$\n\\end\n\n"
},
"$:/plugins/tiddlywiki/twitter/rawmarkup": {
"title": "$:/plugins/tiddlywiki/twitter/rawmarkup",
"tags": "$:/tags/RawMarkup",
"text": "<script>window.twttr = (function(d, s, id) {\n var js, fjs = d.getElementsByTagName(s)[0],\n t = window.twttr || {};\n if (d.getElementById(id)) return t;\n js = d.createElement(s);\n js.id = id;\n js.src = \"https://platform.twitter.com/widgets.js\";\n fjs.parentNode.insertBefore(js, fjs);\n\n t._e = [];\n t.ready = function(f) {\n t._e.push(f);\n };\n\n return t;\n}(document, \"script\", \"twitter-wjs\"));</script>"
},
"$:/plugins/tiddlywiki/twitter/readme": {
"title": "$:/plugins/tiddlywiki/twitter/readme",
"text": "This plugin provides a `<$twitter>` widget that can embed various entities from Twitter's service:\n\n* Individual tweets and conversations\n* Buttons for tweeting/mentioning, sharing, following\n* Various types of timeline: profile, likes, list, collection, url and widget\n\nThe widget only works in the browser, and not in generated static HTML pages.\n"
},
"$:/plugins/tiddlywiki/twitter/widget.js": {
"title": "$:/plugins/tiddlywiki/twitter/widget.js",
"text": "/*\\\ntitle: $:/plugins/tiddlywiki/twitter/widget.js\ntype: application/javascript\nmodule-type: widget\n\nTwitter widget\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true */\n/*global $tw: false */\n\"use strict\";\n\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\n\nvar TwitterWidget = function(parseTreeNode,options) {\n\tthis.initialise(parseTreeNode,options);\n};\n\n/*\nInherit from the base widget class\n*/\nTwitterWidget.prototype = new Widget();\n\nvar optionAttributes = \"align ariaPolite borderColor cards chrome conversation count dnt hashtags height height lang linkColor related size text theme tweetLimit via width\".split(\" \"),\n\totherAttributes = \"hashtag id ownerScreenName screenName slug tweetID type url userId widgetId\".split(\" \"),\n\tallAttributes = Array.prototype.slice.call(optionAttributes,0).concat(otherAttributes);\n\n/*\nRender this widget into the DOM\n*/\nTwitterWidget.prototype.render = function(parent,nextSibling) {\n\tvar self = this;\n\t// Housekeeping\n\tthis.parentDomNode = parent;\n\tthis.computeAttributes();\n\t// Compose the arguments for the tweet call\n\tvar method,\n\t\targ,\n\t\toptions = {};\n\t\t$tw.utils.each(optionAttributes,function(attr) {\n\t\t\toptions[attr] = self.getAttribute(attr);\n\t\t});\n\tswitch(this.getAttribute(\"type\")) {\n\t\tcase \"shareButton\":\n\t\t\tmethod = \"createShareButton\";\n\t\t\targ = this.getAttribute(\"url\");\n\t\t\tbreak;\n\t\tcase \"followButton\":\n\t\t\tmethod = \"createFollowButton\";\n\t\t\targ = this.getAttribute(\"screenName\");\n\t\t\tbreak;\n\t\tcase \"hashtagButton\":\n\t\t\tmethod = \"createHashtagButton\";\n\t\t\targ = this.getAttribute(\"hashtag\");\n\t\t\tbreak;\n\t\tcase \"mentionButton\":\n\t\t\tmethod = \"createMentionButton\";\n\t\t\targ = this.getAttribute(\"screenName\");\n\t\t\tbreak;\n\t\tcase \"tweet\":\n\t\t\tmethod = \"createTweet\";\n\t\t\targ = this.getAttribute(\"tweetID\");\n\t\t\tbreak;\n\t\tcase \"timelineProfile\":\n\t\t\tmethod = \"createTimeline\";\n\t\t\targ = {\n\t\t\t\tsourceType: \"profile\",\n\t\t\t\tscreenName: this.getAttribute(\"screenName\"),\n\t\t\t\tuserId: this.getAttribute(\"userId\")\n\t\t\t};\n\t\t\tbreak;\n\t\tcase \"timelineLikes\":\n\t\t\tmethod = \"createTimeline\";\n\t\t\targ = {\n\t\t\t\tsourceType: \"likes\",\n\t\t\t\tscreenName: this.getAttribute(\"screenName\"),\n\t\t\t\tuserId: this.getAttribute(\"userId\")\n\t\t\t};\n\t\t\tbreak;\n\t\tcase \"timelineList\":\n\t\t\tmethod = \"createTimeline\";\n\t\t\targ = {\n\t\t\t\tsourceType: \"list\",\n\t\t\t\townerScreenName: this.getAttribute(\"ownerScreenName\"),\n\t\t\t\tslug: this.getAttribute(\"slug\"),\n\t\t\t\tid: this.getAttribute(\"id\")\n\t\t\t};\n\t\t\tbreak;\n\t\tcase \"timelineCollection\":\n\t\t\tmethod = \"createTimeline\";\n\t\t\targ = {\n\t\t\t\tsourceType: \"collection\",\n\t\t\t\tid: this.getAttribute(\"id\")\n\t\t\t};\n\t\t\tbreak;\n\t\tcase \"timelineUrl\":\n\t\t\tmethod = \"createTimeline\";\n\t\t\targ = {\n\t\t\t\tsourceType: \"url\",\n\t\t\t\turl: this.getAttribute(\"url\")\n\t\t\t};\n\t\t\tbreak;\n\t\tcase \"timelineWidget\":\n\t\t\tmethod = \"createTimeline\";\n\t\t\targ = {\n\t\t\t\tsourceType: \"widget\",\n\t\t\t\twidgetId: this.getAttribute(\"widgetId\")\n\t\t\t};\n\t\t\tbreak;\n\t}\n\t// Render the tweet into a div\n\tvar div = this.document.createElement(\"div\");\n\tif(!this.document.isTiddlyWikiFakeDom && window.twttr && method) {\n\t\ttwttr.ready(function(twttr) {\n\t\t\twindow.twttr.widgets[method](arg,div,options);\n\t\t});\n\t} else {\n\t\tdiv.appendChild(this.document.createTextNode(\"Can't render tweet\"));\n\t}\n\t// Insert it into the DOM\n\tparent.insertBefore(div,nextSibling);\n\tthis.domNodes.push(div);\n};\n\n/*\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\n*/\nTwitterWidget.prototype.refresh = function(changedTiddlers) {\n\tvar changedAttributes = this.computeAttributes();\n\tif(allAttributes.find(function(attr) {\n\t\treturn $tw.utils.hop(changedAttributes,attr);\n\t})) {\n\t\tthis.refreshSelf();\n\t\treturn true;\n\t} else {\n\t\treturn false;\t\n\t}\n};\n\nexports.twitter = TwitterWidget;\n\n})();\n",
"type": "application/javascript",
"module-type": "widget"
},
"$:/plugins/tiddlywiki/twitter/usage/collectiontimeline": {
"title": "$:/plugins/tiddlywiki/twitter/usage/collectiontimeline",
"tags": "$:/tags/TwitterUsage",
"caption": "Collection Timeline",
"text": "!! Embedding Collection Timelines\n\n|!Attribute |!Values |!Default |!Notes |\n|''type'' |\"timelineCollection\" |none |\"timelineCollection\" |\n|''id'' |ID of the collection |none | |\n|''chrome'' |\"noheader\", \"nofooter\", \"noborders\", \"transparent\", \"noscrollbar\" |none |Toggle the display of design elements in the widget. This parameter is a space-separated list of values |\n|''height'' |Positive integer |600 |Set a fixed height of the embedded widget |\n|''tweetLimit'' |Range: 1-20 |none |Render a timeline statically, displaying only n number of Tweets |\n|''borderColor'' |Hexadecimal color |Varies by theme |Adjust the color of borders inside the widget |\n|''ariaPolite'' |\"polite\", \"assertive\", \"rude\" |\"polite\" |Apply the specified aria-polite behavior to the rendered timeline. New Tweets may be added to the top of a timeline, affecting screen readers |\n|''conversation'' |\"none\", \"all\" |\"all\" |Tweets in response to another Tweet will display a compact version of the previous Tweet by default. Use \"none\" to hide the parent Tweet in the conversation |\n|''cards'' |\"hidden\", \"visible\"|visible |Hide photos, videos, and link previews powered by Twitter Cards |\n|''width'' |Positive integer |\"auto\", derived from container size |Set the maximum width of the embedded Tweet |\n|''align''\t|\"left\", \"right\", \"center\"\t|none |Float the embedded Tweet to the left or right so that text wraps around it, or align center so it floats in the middle of a paragraph |\n|''theme'' |\"dark\", \"light\" |\"light\"\t|Toggle the default color scheme of the embedded Tweet |\n|''linkColor'' |Hexadecimal color |\"#2b7bb9\" |Adjust the color of links, including hashtags and @mentions, inside the widget |\n|''lang'' |An ISO 639-1 language code |en |The language in which to render a widget, if supported |\n|''dnt'' |\"true\", \"false\" |false |Enable Do Not Track for this widget |\n|''related'' |Any comma-separated list of valid Twitter screen names |none |A list of Twitter screen names to be suggested for following after a Tweet or Tweet action is posted |\n|''via'' |Any valid Twitter screen name |none |A Twitter user mentioned in the default Tweet text as via @user where appropriate |\n\n<<twitter-usage \"\"\"<$twitter type=\"timelineCollection\" id=\"393773266801659904\"/>\n\"\"\">>\n"
},
"$:/plugins/tiddlywiki/twitter/usage/followbutton": {
"title": "$:/plugins/tiddlywiki/twitter/usage/followbutton",
"tags": "$:/tags/TwitterUsage",
"caption": "Follow Button",
"text": "!! Embedding Follow Buttons\n\n|!Attribute |!Values |!Default |!Notes |\n|''type'' |\"followButton\" |none |\"followButton\" |\n|''screenName'' |Screen name of the account to be followed |none | |\n|''count'' |\"none\", \"horizontal\" |\"horizontal\" | |\n|''text'' |Any string |none |The default, highlighted text a user sees in the Tweet web intent |\n|''hashtags'' |A comma-separated list of hashtags |none |A list of hashtags to be appended to default Tweet text where appropriate |\n|''align'' |\"left\", \"right\" |locale dependent (left or right, depending on the text direction of the language) |The alignment of the button within an iframe; use this to ensure flush layout when aligning buttons |\n|''size'' |\"medium\", \"large\" |medium |Size of button |\n|''lang'' |An ISO 639-1 language code |en |The language in which to render a widget, if supported |\n|''dnt'' |\"true\", \"false\" |false |Enable Do Not Track for this widget |\n|''related'' |Any comma-separated list of valid Twitter screen names |none |A list of Twitter screen names to be suggested for following after a Tweet or Tweet action is posted |\n|''via'' |Any valid Twitter screen name |none |A Twitter user mentioned in the default Tweet text as via @user where appropriate |\n\n<<twitter-usage \"\"\"<$twitter type=\"followButton\" screenName=\"TiddlyWiki\"/>\n\"\"\">>\n"
},
"$:/plugins/tiddlywiki/twitter/usage/hashtagbutton": {
"title": "$:/plugins/tiddlywiki/twitter/usage/hashtagbutton",
"tags": "$:/tags/TwitterUsage",
"caption": "Hashtag Button",
"text": "!! Embedding Hashtag Buttons\n\n|!Attribute |!Values |!Default |!Notes |\n|''type'' |\"hashtagButton\" |none |\"hashtagButton\" |\n|''hashtag'' |Hashtag to be tweeted and displayed on the button |none | |\n|''text'' |Any string |none |The default, highlighted text a user sees in the Tweet web intent |\n|''align'' |\"left\", \"right\" |locale dependent (left or right, depending on the text direction of the language) |The alignment of the button within an iframe; use this to ensure flush layout when aligning buttons |\n|''size'' |\"medium\", \"large\" |medium |Size of button |\n|''lang'' |An ISO 639-1 language code |en |The language in which to render a widget, if supported |\n|''dnt'' |\"true\", \"false\" |false |Enable Do Not Track for this widget |\n|''related'' |Any comma-separated list of valid Twitter screen names |none |A list of Twitter screen names to be suggested for following after a Tweet or Tweet action is posted |\n|''via'' |Any valid Twitter screen name |none |A Twitter user mentioned in the default Tweet text as via @user where appropriate |\n\n<<twitter-usage \"\"\"<$twitter type=\"hashtagButton\" hashtag=\"TiddlyWiki\"/>\n\"\"\">>\n"
},
"$:/plugins/tiddlywiki/twitter/usage/likestimeline": {
"title": "$:/plugins/tiddlywiki/twitter/usage/likestimeline",
"tags": "$:/tags/TwitterUsage",
"caption": "Likes Timeline",
"text": "!! Embedding Likes Timelines\n\n|!Attribute |!Values |!Default |!Notes |\n|''type'' |\"timelineLikes\" |none |\"timelineLikes\" |\n|''screenName'' |Screen name of the account |none |Either ''screenName'' or ''userId'' must be provided |\n|''userId'' |User ID of the account |none |~|\n|''chrome'' |\"noheader\", \"nofooter\", \"noborders\", \"transparent\", \"noscrollbar\" |none |Toggle the display of design elements in the widget. This parameter is a space-separated list of values |\n|''height'' |Positive integer |600 |Set a fixed height of the embedded widget |\n|''tweetLimit'' |Range: 1-20 |none |Render a timeline statically, displaying only n number of Tweets |\n|''borderColor'' |Hexadecimal color |Varies by theme |Adjust the color of borders inside the widget |\n|''ariaPolite'' |\"polite\", \"assertive\", \"rude\" |\"polite\" |Apply the specified aria-polite behavior to the rendered timeline. New Tweets may be added to the top of a timeline, affecting screen readers |\n|''conversation'' |\"none\", \"all\" |\"all\" |Tweets in response to another Tweet will display a compact version of the previous Tweet by default. Use \"none\" to hide the parent Tweet in the conversation |\n|''cards'' |\"hidden\", \"visible\"|visible |Hide photos, videos, and link previews powered by Twitter Cards |\n|''width'' |Positive integer |\"auto\", derived from container size |Set the maximum width of the embedded Tweet |\n|''align''\t|\"left\", \"right\", \"center\"\t|none |Float the embedded Tweet to the left or right so that text wraps around it, or align center so it floats in the middle of a paragraph |\n|''theme'' |\"dark\", \"light\" |\"light\"\t|Toggle the default color scheme of the embedded Tweet |\n|''linkColor'' |Hexadecimal color |\"#2b7bb9\" |Adjust the color of links, including hashtags and @mentions, inside the widget |\n|''lang'' |An ISO 639-1 language code |en |The language in which to render a widget, if supported |\n|''dnt'' |\"true\", \"false\" |false |Enable Do Not Track for this widget |\n|''related'' |Any comma-separated list of valid Twitter screen names |none |A list of Twitter screen names to be suggested for following after a Tweet or Tweet action is posted |\n|''via'' |Any valid Twitter screen name |none |A Twitter user mentioned in the default Tweet text as via @user where appropriate |\n\n<<twitter-usage \"\"\"<$twitter type=\"timelineLikes\" screenName=\"tiddlywiki\"/>\n\"\"\">>\n"
},
"$:/plugins/tiddlywiki/twitter/usage/listtimeline": {
"title": "$:/plugins/tiddlywiki/twitter/usage/listtimeline",
"tags": "$:/tags/TwitterUsage",
"caption": "List Timeline",
"text": "!! Embedding List Timelines\n\n|!Attribute |!Values |!Default |!Notes |\n|''type'' |\"timelineList\" |none |\"timelineList\" |\n|''ownerScreenName'' |Screen name of the account |none |Either both ''ownerScreenName'' and ''slug'' must be provided, or just ''id'' |\n|''slug'' |The string identifier for a list |none |~|\n|''id'' |ID of the list |none |~|\n|''chrome'' |\"noheader\", \"nofooter\", \"noborders\", \"transparent\", \"noscrollbar\" |none |Toggle the display of design elements in the widget. This parameter is a space-separated list of values |\n|''height'' |Positive integer |600 |Set a fixed height of the embedded widget |\n|''tweetLimit'' |Range: 1-20 |none |Render a timeline statically, displaying only n number of Tweets |\n|''borderColor'' |Hexadecimal color |Varies by theme |Adjust the color of borders inside the widget |\n|''ariaPolite'' |\"polite\", \"assertive\", \"rude\" |\"polite\" |Apply the specified aria-polite behavior to the rendered timeline. New Tweets may be added to the top of a timeline, affecting screen readers |\n|''conversation'' |\"none\", \"all\" |\"all\" |Tweets in response to another Tweet will display a compact version of the previous Tweet by default. Use \"none\" to hide the parent Tweet in the conversation |\n|''cards'' |\"hidden\", \"visible\"|visible |Hide photos, videos, and link previews powered by Twitter Cards |\n|''width'' |Positive integer |\"auto\", derived from container size |Set the maximum width of the embedded Tweet |\n|''align''\t|\"left\", \"right\", \"center\"\t|none |Float the embedded Tweet to the left or right so that text wraps around it, or align center so it floats in the middle of a paragraph |\n|''theme'' |\"dark\", \"light\" |\"light\"\t|Toggle the default color scheme of the embedded Tweet |\n|''linkColor'' |Hexadecimal color |\"#2b7bb9\" |Adjust the color of links, including hashtags and @mentions, inside the widget |\n|''lang'' |An ISO 639-1 language code |en |The language in which to render a widget, if supported |\n|''dnt'' |\"true\", \"false\" |false |Enable Do Not Track for this widget |\n|''related'' |Any comma-separated list of valid Twitter screen names |none |A list of Twitter screen names to be suggested for following after a Tweet or Tweet action is posted |\n|''via'' |Any valid Twitter screen name |none |A Twitter user mentioned in the default Tweet text as via @user where appropriate |\n\n<<twitter-usage \"\"\"<$twitter type=\"timelineList\" ownerScreenName=\"isaach\" slug=\"home-timeline\"/>\n\"\"\">>\n"
},
"$:/plugins/tiddlywiki/twitter/usage/mentionbutton": {
"title": "$:/plugins/tiddlywiki/twitter/usage/mentionbutton",
"tags": "$:/tags/TwitterUsage",
"caption": "Mention Button",
"text": "!! Embedding Mention Buttons\n\n|!Attribute |!Values |!Default |!Notes |\n|''type'' |\"mentionButton\" |none |\"mentionButton\" |\n|''screenName'' |Screen name of the account to be mentioned |none | |\n|''text'' |Any string |none |The default, highlighted text a user sees in the Tweet web intent |\n|''hashtags'' |A comma-separated list of hashtags |none |A list of hashtags to be appended to default Tweet text where appropriate |\n|''align'' |\"left\", \"right\" |locale dependent (left or right, depending on the text direction of the language) |The alignment of the button within an iframe; use this to ensure flush layout when aligning buttons |\n|''size'' |\"medium\", \"large\" |medium |Size of button |\n|''lang'' |An ISO 639-1 language code |en |The language in which to render a widget, if supported |\n|''dnt'' |\"true\", \"false\" |false |Enable Do Not Track for this widget |\n|''related'' |Any comma-separated list of valid Twitter screen names |none |A list of Twitter screen names to be suggested for following after a Tweet or Tweet action is posted |\n|''via'' |Any valid Twitter screen name |none |A Twitter user mentioned in the default Tweet text as via @user where appropriate |\n\n<<twitter-usage \"\"\"<$twitter type=\"mentionButton\" screenName=\"TiddlyWiki\"/>\n\"\"\">>"
},
"$:/plugins/tiddlywiki/twitter/usage/profiletimeline": {
"title": "$:/plugins/tiddlywiki/twitter/usage/profiletimeline",
"tags": "$:/tags/TwitterUsage",
"caption": "Profile Timeline",
"text": "!! Embedding Profile Timelines\n\n|!Attribute |!Values |!Default |!Notes |\n|''type'' |\"timelineProfile\" |none |\"timelineProfile\" |\n|''screenName'' |Screen name of the account |none |Either ''screenName'' or ''userId'' must be provided |\n|''userId'' |User ID of the account |none |~|\n|''chrome'' |\"noheader\", \"nofooter\", \"noborders\", \"transparent\", \"noscrollbar\" |none |Toggle the display of design elements in the widget. This parameter is a space-separated list of values |\n|''height'' |Positive integer |600 |Set a fixed height of the embedded widget |\n|''tweetLimit'' |Range: 1-20 |none |Render a timeline statically, displaying only n number of Tweets |\n|''borderColor'' |Hexadecimal color |Varies by theme |Adjust the color of borders inside the widget |\n|''ariaPolite'' |\"polite\", \"assertive\", \"rude\" |\"polite\" |Apply the specified aria-polite behavior to the rendered timeline. New Tweets may be added to the top of a timeline, affecting screen readers |\n|''conversation'' |\"none\", \"all\" |\"all\" |Tweets in response to another Tweet will display a compact version of the previous Tweet by default. Use \"none\" to hide the parent Tweet in the conversation |\n|''cards'' |\"hidden\", \"visible\"|visible |Hide photos, videos, and link previews powered by Twitter Cards |\n|''width'' |Positive integer |\"auto\", derived from container size |Set the maximum width of the embedded Tweet |\n|''align''\t|\"left\", \"right\", \"center\"\t|none |Float the embedded Tweet to the left or right so that text wraps around it, or align center so it floats in the middle of a paragraph |\n|''theme'' |\"dark\", \"light\" |\"light\"\t|Toggle the default color scheme of the embedded Tweet |\n|''linkColor'' |Hexadecimal color |\"#2b7bb9\" |Adjust the color of links, including hashtags and @mentions, inside the widget |\n|''lang'' |An ISO 639-1 language code |en |The language in which to render a widget, if supported |\n|''dnt'' |\"true\", \"false\" |false |Enable Do Not Track for this widget |\n|''related'' |Any comma-separated list of valid Twitter screen names |none |A list of Twitter screen names to be suggested for following after a Tweet or Tweet action is posted |\n|''via'' |Any valid Twitter screen name |none |A Twitter user mentioned in the default Tweet text as via @user where appropriate |\n\n<<twitter-usage \"\"\"<$twitter type=\"timelineProfile\" screenName=\"tiddlywiki\"/>\n\"\"\">>\n\n"
},
"$:/plugins/tiddlywiki/twitter/usage/sharebutton": {
"title": "$:/plugins/tiddlywiki/twitter/usage/sharebutton",
"tags": "$:/tags/TwitterUsage",
"caption": "Share Button",
"text": "!! Embedding Share Buttons\n\n|!Attribute |!Values |!Default |!Notes |\n|''type'' |\"shareButton\" |none |\"shareButton\" |\n|''url'' |The URL to be shared |none | |\n|''text'' |Any string |none |The default, highlighted text a user sees in the Tweet web intent |\n|''hashtags'' |A comma-separated list of hashtags |none |A list of hashtags to be appended to default Tweet text where appropriate |\n|''align'' |\"left\", \"right\" |locale dependent (left or right, depending on the text direction of the language) |The alignment of the button within an iframe; use this to ensure flush layout when aligning buttons |\n|''size'' |\"medium\", \"large\" |medium |Size of button |\n|''lang'' |An ISO 639-1 language code |en |The language in which to render a widget, if supported |\n|''dnt'' |\"true\", \"false\" |false |Enable Do Not Track for this widget |\n|''related'' |Any comma-separated list of valid Twitter screen names |none |A list of Twitter screen names to be suggested for following after a Tweet or Tweet action is posted |\n|''via'' |Any valid Twitter screen name |none |A Twitter user mentioned in the default Tweet text as via @user where appropriate |\n\n<<twitter-usage \"\"\"<$twitter type=\"shareButton\" url=\"https://tiddlywiki.com/\" text=\"Mind blown!\"/>\n\"\"\">>\n"
},
"$:/plugins/tiddlywiki/twitter/usage/tweet": {
"title": "$:/plugins/tiddlywiki/twitter/usage/tweet",
"tags": "$:/tags/TwitterUsage",
"caption": "Tweet",
"text": "!! Embedding Tweets\n\n|!Attribute |!Values |!Default |!Notes |\n|''type'' |\"tweet\" |none |\"tweet\" |\n|''tweetID'' |ID of the tweet to render |none | |\n|''conversation'' |\"none\", \"all\" |\"all\" |Tweets in response to another Tweet will display a compact version of the previous Tweet by default. Use \"none\" to hide the parent Tweet in the conversation |\n|''cards'' |\"hidden\", \"visible\"|visible |Hide photos, videos, and link previews powered by Twitter Cards |\n|''width'' |Positive integer |\"auto\", derived from container size |Set the maximum width of the embedded Tweet |\n|''align''\t|\"left\", \"right\", \"center\"\t|none |Float the embedded Tweet to the left or right so that text wraps around it, or align center so it floats in the middle of a paragraph |\n|''theme'' |\"dark\", \"light\" |\"light\"\t|Toggle the default color scheme of the embedded Tweet |\n|''linkColor'' |Hexadecimal color |\"#2b7bb9\" |Adjust the color of links, including hashtags and @mentions, inside the widget |\n|''lang'' |An ISO 639-1 language code |en |The language in which to render a widget, if supported |\n|''dnt'' |true, false |false |Enable Do Not Track for this widget |\n|''related'' |Any comma-separated list of valid Twitter screen names |none |A list of Twitter screen names to be suggested for following after a Tweet or Tweet action is posted |\n|''via'' |Any valid Twitter screen name |none |A Twitter user mentioned in the default Tweet text as via @user where appropriate |\n\n<<twitter-usage \"\"\"<$twitter type=\"tweet\" tweetID=\"750677030589587456\"/>\n\"\"\">>\n"
},
"$:/plugins/tiddlywiki/twitter/usage/urltimeline": {
"title": "$:/plugins/tiddlywiki/twitter/usage/urltimeline",
"tags": "$:/tags/TwitterUsage",
"caption": "Url Timeline",
"text": "!! Embedding Profile Timelines\n\n|!Attribute |!Values |!Default |!Notes |\n|''type'' |\"timelineUrl\" |none |\"timelineUrl\" |\n|''url'' |Absolute URL of a Twitter profile, likes, list, or collection |none | |\n|''chrome'' |\"noheader\", \"nofooter\", \"noborders\", \"transparent\", \"noscrollbar\" |none |Toggle the display of design elements in the widget. This parameter is a space-separated list of values |\n|''height'' |Positive integer |600 |Set a fixed height of the embedded widget |\n|''tweetLimit'' |Range: 1-20 |none |Render a timeline statically, displaying only n number of Tweets |\n|''borderColor'' |Hexadecimal color |Varies by theme |Adjust the color of borders inside the widget |\n|''ariaPolite'' |\"polite\", \"assertive\", \"rude\" |\"polite\" |Apply the specified aria-polite behavior to the rendered timeline. New Tweets may be added to the top of a timeline, affecting screen readers |\n|''conversation'' |\"none\", \"all\" |\"all\" |Tweets in response to another Tweet will display a compact version of the previous Tweet by default. Use \"none\" to hide the parent Tweet in the conversation |\n|''cards'' |\"hidden\", \"visible\"|visible |Hide photos, videos, and link previews powered by Twitter Cards |\n|''width'' |Positive integer |\"auto\", derived from container size |Set the maximum width of the embedded Tweet |\n|''align''\t|\"left\", \"right\", \"center\"\t|none |Float the embedded Tweet to the left or right so that text wraps around it, or align center so it floats in the middle of a paragraph |\n|''theme'' |\"dark\", \"light\" |\"light\"\t|Toggle the default color scheme of the embedded Tweet |\n|''linkColor'' |Hexadecimal color |\"#2b7bb9\" |Adjust the color of links, including hashtags and @mentions, inside the widget |\n|''lang'' |An ISO 639-1 language code |en |The language in which to render a widget, if supported |\n|''dnt'' |\"true\", \"false\" |false |Enable Do Not Track for this widget |\n|''related'' |Any comma-separated list of valid Twitter screen names |none |A list of Twitter screen names to be suggested for following after a Tweet or Tweet action is posted |\n|''via'' |Any valid Twitter screen name |none |A Twitter user mentioned in the default Tweet text as via @user where appropriate |\n\n<<twitter-usage \"\"\"<$twitter type=\"timelineUrl\" url=\"https://twitter.com/TiddlyWiki\"/>\n\"\"\">>\n"
},
"$:/plugins/tiddlywiki/twitter/usage/widgettimeline": {
"title": "$:/plugins/tiddlywiki/twitter/usage/widgettimeline",
"tags": "$:/tags/TwitterUsage",
"caption": "Widget Timeline",
"text": "!! Embedding Widget Timelines\n\nTo power an embedded timeline with a widget configuration generated at https://twitter.com/settings/widgets.\n\n|!Attribute |!Values |!Default |!Notes |\n|''type'' |\"timelineWidget\" |none |\"timelineWidget\" |\n|''widgetId'' |ID of the widget |none |~|\n|''chrome'' |\"noheader\", \"nofooter\", \"noborders\", \"transparent\", \"noscrollbar\" |none |Toggle the display of design elements in the widget. This parameter is a space-separated list of values |\n|''height'' |Positive integer |600 |Set a fixed height of the embedded widget |\n|''tweetLimit'' |Range: 1-20 |none |Render a timeline statically, displaying only n number of Tweets |\n|''borderColor'' |Hexadecimal color |Varies by theme |Adjust the color of borders inside the widget |\n|''ariaPolite'' |\"polite\", \"assertive\", \"rude\" |\"polite\" |Apply the specified aria-polite behavior to the rendered timeline. New Tweets may be added to the top of a timeline, affecting screen readers |\n|''conversation'' |\"none\", \"all\" |\"all\" |Tweets in response to another Tweet will display a compact version of the previous Tweet by default. Use \"none\" to hide the parent Tweet in the conversation |\n|''cards'' |\"hidden\", \"visible\"|visible |Hide photos, videos, and link previews powered by Twitter Cards |\n|''width'' |Positive integer |\"auto\", derived from container size |Set the maximum width of the embedded Tweet |\n|''align''\t|\"left\", \"right\", \"center\"\t|none |Float the embedded Tweet to the left or right so that text wraps around it, or align center so it floats in the middle of a paragraph |\n|''theme'' |\"dark\", \"light\" |\"light\"\t|Toggle the default color scheme of the embedded Tweet |\n|''linkColor'' |Hexadecimal color |\"#2b7bb9\" |Adjust the color of links, including hashtags and @mentions, inside the widget |\n|''lang'' |An ISO 639-1 language code |en |The language in which to render a widget, if supported |\n|''dnt'' |\"true\", \"false\" |false |Enable Do Not Track for this widget |\n|''related'' |Any comma-separated list of valid Twitter screen names |none |A list of Twitter screen names to be suggested for following after a Tweet or Tweet action is posted |\n|''via'' |Any valid Twitter screen name |none |A Twitter user mentioned in the default Tweet text as via @user where appropriate |\n\n<<twitter-usage \"\"\"<$twitter type=\"timelineWidget\" widgetId=\"570670821065379840\"/>\n\"\"\">>\n"
},
"$:/plugins/tiddlywiki/twitter/usage": {
"title": "$:/plugins/tiddlywiki/twitter/usage",
"text": "The `<$twitter>` widget can be used to embed several different entities:\n\n<$macrocall $name=\"tabs\" state=<<qualify \"$:/state/twitter/usage\">> tabsList=\"[all[tiddlers+shadows]tag[$:/tags/TwitterUsage]]\" default=\"$:/plugins/tiddlywiki/twitter/usage/tweet\" class=\"tc-vertical\"/>\n"
}
}
}
{
"tiddlers": {
"$:/config/AnimationDuration": {
"text": "600",
"type": "text/vnd.tiddlywiki",
"title": "$:/config/AnimationDuration",
"tags": "$:/irreverent-mudblood/ghostwriter",
"revision": "0",
"modifier": "venomspinner",
"modified": "20161031174446166",
"creator": "venomspinner",
"created": "20161028170329291",
"bag": "default"
},
"$:/core/ui/PageTemplate/sidebar": {
"text": "<$scrollable fallthrough=\"no\" class=\"tc-sidebar-scrollable\">\n\n<div class=\"tc-sidebar-header\">\n\n<$reveal state=\"$:/state/sidebar\" type=\"match\" text=\"yes\" default=\"no\" retain=\"yes\" animate=\"yes\">\n\n{{||$:/core/ui/PageTemplate/pagecontrols}}\n\n<$transclude tiddler=\"$:/core/ui/SideBarLists\" mode=\"inline\"/>\n\n</$reveal>\n\n</div>\n\n</$scrollable>",
"type": "text/vnd.tiddlywiki",
"title": "$:/core/ui/PageTemplate/sidebar",
"tags": "$:/tags/PageTemplate $:/irreverent-mudblood/ghostwriter",
"revision": "0",
"modified": "20161031174446017",
"created": "20161030145349771",
"bag": "default"
},
"$:/core/ui/TopBar/menu": {
"text": "<$reveal state=\"$:/state/sidebar\" type=\"nomatch\" text=\"no\" default=\"no\">\n<$button set=\"$:/state/sidebar\" setTo=\"no\" tooltip={{$:/language/Buttons/HideSideBar/Hint}} aria-label={{$:/language/Buttons/HideSideBar/Caption}} class=\"roundbtn\">\n<span>{{$:/core/images/right-arrow}}</span>\n{{$:/irreverent-mudblood/overlay-sidebar/backgroundstyle}}\n</$button>\n</$reveal>\n<$reveal state=\"$:/state/sidebar\" type=\"match\" text=\"no\" default=\"no\">\n<$button set=\"$:/state/sidebar\" setTo=\"yes\" tooltip={{$:/language/Buttons/ShowSideBar/Hint}} aria-label={{$:/language/Buttons/ShowSideBar/Caption}} class=\"roundbtn\"><span>{{$:/core/images/left-arrow}}</span>\n{{$:/irreverent-mudblood/overlay-sidebar/backgroundstyle2}}\n</$button>\n</$reveal>\n",
"type": "text/vnd.tiddlywiki",
"title": "$:/core/ui/TopBar/menu",
"tags": "$:/tags/TopRightBar $:/irreverent-mudblood/ghostwriter",
"revision": "0",
"modifier": "Dr. Rizwan Ishak",
"modified": "20161031174446206",
"creator": "Dr. Rizwan Ishak",
"created": "20161002082547234",
"bag": "default"
},
"$:/DefaultTiddlers": {
"text": "[!is[system]![TableOfContents]!sort[modified]limit[3]]\n",
"type": "text/vnd.tiddlywiki",
"title": "$:/DefaultTiddlers",
"modified": "20161111182143694",
"created": "20131127215321439"
},
"$:/irreverent-mudblood/overlay-sidebar/backgroundstyle": {
"created": "20161030153934135",
"text": "<style>\n@media only screen and (min-width: {{$:/themes/tiddlywiki/vanilla/metrics/sidebarbreakpoint}}) {\n.tc-sidebar-scrollable { \nbackground-color: #FEFEFE; \nz-index: 1000 !important;\npadding: 42px 0 28px 42px;\nborder-left: 1px solid #e1e1e1;\n}\n}\n\n@media only screen and (max-width: {{$:/themes/tiddlywiki/vanilla/metrics/sidebarbreakpoint}}) {\n.tc-sidebar-scrollable { \nposition:fixed !important;\nbackground-color:#FEFEFE; \npadding: 42px 0 28px 42px;\nz-index: 1000 !important; \nwidth:100% !important ; \nborder-left: 1px solid #e1e1e1;\nleft:0% !important;\ntop: 0px !important;\nbottom: 0 !important;\nright: 0 !important;\nmargin: 0 0 0 -20px !important;\n}\n}\n</style>",
"type": "text/vnd.tiddlywiki",
"title": "$:/irreverent-mudblood/overlay-sidebar/backgroundstyle",
"tags": "$:/OverlaySidebar $:/irreverent-mudblood/ghostwriter",
"revision": "0",
"modified": "20161109105829329",
"bag": "default"
},
"$:/irreverent-mudblood/overlay-sidebar/backgroundstyle2": {
"text": "<style>.tc-sidebar-scrollable { background-color: rgba(0,0,0,0.0); z-index: -1; }</style>",
"type": "text/vnd.tiddlywiki",
"title": "$:/irreverent-mudblood/overlay-sidebar/backgroundstyle2",
"tags": "$:/OverlaySidebar $:/irreverent-mudblood/ghostwriter",
"revision": "0",
"modifier": "Dr. Rizwan Ishak",
"modified": "20161031174446321",
"creator": "Dr. Rizwan Ishak",
"created": "20160829073842702",
"bag": "default"
},
"$:/irreverent-mudblood/overlay-sidebar/stylesheet": {
"created": "20161030153009897",
"text": ".roundbtn {\nbackground-color:{{!!roundbtnbg}};\nfont-size: 25px; \nposition: relative;\ndisplay: inline-block;\nwidth: 35px;\nheight: 35px;\ncursor: pointer; \nborder: none; \nborder-radius:100px; \nbox-shadow: 0 2px 5px 0 rgba(0, 0, 0, .26);\n\n}\n\n.roundbtn span svg{\nfont-size:15px; \nposition: absolute; \ntop: 0; right: 0; \nbottom: 0; \nleft: 0; \noverflow: auto; \nwidth: 50%; \nheight: 50%; \nmargin: auto; \nopacity: 0.8;\nfill: {{!!roundbtnspan}};\n\n}\n.roundbtn:hover span svg{\nfont-size:15px; \nposition: absolute; \ntop: 0; right: 0; \nbottom: 0; \nleft: 0; \noverflow: auto; \nmargin: auto; \nopacity:1;\nfill: {{!!roundbtnspan}} !important;\n}",
"type": "text/vnd.tiddlywiki",
"title": "$:/irreverent-mudblood/overlay-sidebar/stylesheet",
"tags": "$:/tags/Stylesheet $:/OverlaySidebar $:/irreverent-mudblood/ghostwriter",
"revision": "0",
"modified": "20161111175422374",
"bag": "default",
"roundbtnbg": "#ee4056",
"roundbtnspan": "#fff"
},
"$:/themes/ghostwriter/stylesheet/main": {
"text": " \n---\n/* System */\n\n .tc-control-panel table .autowidthinput input {width:auto;}\n\n.tc-sidebar-lists .tc-tab-set > .tc-tab-content .tc-image-button img { margin: 0 !important; display:inline-block } \n\n---\n/*Base*/\n\n---\n\nhtml, body {\n height: 100%;\n }\n\nbody {\n background: #fefefe;\n color: #424242;\n font-family: \"Open Sans\", arial, sans-serif !important;\n font-size: 15px;\n }\n\n\n\nh1, h2, h3, h4, h5, h6 {\n margin-bottom: 33px;\n text-transform: none; \n}\n\nh1 {\n font-size: 26px; }\n\nh2 {\n font-size: 24px; }\n\nh3 {\n font-size: 20px;\n margin-bottom: 20px; }\n\nh4 {\n font-size: 18px;\n margin-bottom: 18px; }\n\nh5 {\n font-size: 16px;\n margin-bottom: 15px; }\n\nh6 {\n font-size: 14px;\n margin-bottom: 12px; }\n\np {\n line-height: 1.8;\n margin: 0 0 30px; }\n\na {\n text-decoration: none; !important}\n\nul, ol {\n list-style-position: inside ;\n line-height: 1.8 ;\n margin: 0 0 40px;\n padding: 0 }\n ul ul, ul ol, ol ul, ol ol {\n margin: 10px 0 0 20px }\n ul li, ol li {\n margin: 0 0 10px }\n ul li:last-of-type, ol li:last-of-type {\n margin-bottom: 0 }\n\nblockquote {\n border-left: 1px dotted #303030;\n margin: 40px 0;\n padding: 5px 30px; }\n blockquote p {\n color: #AEADAD;\n display: block;\n font-style: italic;\n margin: 0;\n width: 100%; }\n\nimg {\n display: block;\n margin: 40px 0;\n width: auto ;\n max-width: 100%}\n\npre {\n background: #F1F0EA !important;\n border: 1px solid #DDDBCC !important;\n border-radius: 3px !important;\n margin: 0 0 40px !important;\n padding: 15px 20px !important; }\n\nhr {\n border: none !important;\n border-bottom: 1px dotted #303030 !important;\n margin: 45px 0 !important; }\n\ntable {\n margin-bottom: 40px !important;\n width: 100% !important;\n}\ntable tbody > tr:nth-child(odd) > td,\ntable tbody > tr:nth-child(odd) > th {\n background-color: #f7f7f3 !important;\n}\ntable th {\n padding: 0 10px 10px !important;\n text-align: left !important;\n}\ntable td {\n padding: 10px !important;\n}\ntable tr {\n border-bottom: 1px dotted #AEADAD !important;\n}\n\n::selection {\n background: #FFF5B8 !important;\n color: #000 !important;\n display: block !important; }\n\n::-moz-selection {\n background: #FFF5B8 !important;\n color: #000 !important;\n display: block !important; }\n\n\n.hidden {\n text-indent: -9999px !important;\n visibility: hidden !important;\n display: none !important; }\n\n.clearfix:after {\n content: \"\" !important;\n display: table !important;\n clear: both !important; }\n\ncode {\nbackground:transparent !important;\nborder:none !important;\n}\n\n\n\n\n---\n/*Title*/\n\n---\n.tc-titlebar h2.tc-title {\n\tfont-size: 52px;\n\tdisplay: block;\n\tfont-weight: 700;\n\tmargin: 15px 0;\n\ttext-align: center;\n\ttext-transform: uppercase;\n\tcolor: #424242;\n\tfill: #424242 !important;\n\tword-wrap: break-word;\n\tfont-family: \"Open Sans\", arial, sans-serif;\n\tmargin-block-start: 1em;\n\tmargin-block-end: 1em;\n\tline-height: 1.2;\n\tmargin-bottom: 10px;\n}\n.titleclass {\n\tfont-size: 52px;\n\tdisplay: block;\n\tfont-weight: 700;\n\tmargin: 15px 0;\n\ttext-align: center;\n\ttext-transform: uppercase;\n\tcolor: #424242;\n\tfill: #424242 !important;\n\tword-wrap: break-word;\n\tfont-family: \"Open Sans\", arial, sans-serif;\n\tmargin-block-start: 1em;\n\tmargin-block-end: 1em;\n\tline-height: 1.2;\n\tmargin-bottom: 10px;\n}\n\n.tc-tiddler-title::after {\n\tborder-bottom: 1px dotted #303030;\n\tcontent: \"\";\n\tdisplay: block;\n\tmargin: 30px auto 0;\n\twidth: 100px;\n}\n\ndiv.tc-tagged-interface h2.tc-title, div.tc-tagged-interface div.tc-subtitle, div.tc-tagged-interface div.tc-tags-wrapper {display:none;}\n\n@media only screen and (max-width: 768px) {\n.tc-titlebar h2.tc-title {font-size: 28px;font-size:{{$:/themes/ghostwriter/user/mobile!!titlesize}}; margin-top: 40px !important;}\n.tc-site-title, .tc-titlebar{font-size:2em !important;}\n.titleclass {font-size: 28px !important; margin-top: 40px !important;}\n}\n\ntc-tagged-Interface .tc-title {display:none;}\n\n\n/* Subtitle */\n\ndiv.tc-tiddler-frame .tc-subtitle {\n\tcolor: #AEADAD;\n\tfont-size: 14px;\n\tfont-weight: 600;\n\tline-height: 1;\n\tmargin: 25px auto 0;\n\ttext-align: center;\n\ttext-transform: uppercase;\n\tdisplay: block;\n\tmargin-block-start: 1em;\n\tmargin-block-end: 1em;\n\tpadding-bottom: 25px;\n}\n.tc-subtitle>a{\ndisplay:none !important;\n}\n\n<$reveal type=nomatch state=\"$:/status/UserName\" text=\"\">\n.tc-subtitle:after{\ncontent: \"BY: {{$:/status/UserName}}\";\nfont-weight:700;\n}\n</$reveal>\n\n\n/* Body */\n\ndiv.tc-tiddler-frame > .tc-tiddler-body {\n\tmargin: 0 auto;\n\tposition: relative;\n\twidth: 100%;\n\tmax-width: 810px;\n\tborder-top: 6px solid #303030;\n\tpadding-top: 50px;\n}\n@media only screen and (max-width: {{$:/themes/tiddlywiki/vanilla/metrics/sidebarbreakpoint}}) {\ndiv.tc-tiddler-frame > .tc-tiddler-body {\n font-size: {{$:/themes/ghostwriter/user/mobile!!fontsize}};\n }\n}\n\n/* Tags */\n\nbutton.tc-tag-label, span.tc-tag-label {\nfont-size:14px !important;\nline-height: normal !important;\nbackground: transparent !important;\ntext-decoration: none !important;\ncolor:#666 !important;\n}\n\n/* The tags in the viewTemplate has inbuilt style. Hence the use to 'important' to overcome that*/\ndiv.tc-tiddler-frame > div.tc-reveal >div.tc-tags-wrapper >span.tc-tag-list-item> button {\ncolor: {{!!theme_color}} !important;\n}\n\n\n.tc-edit-tags .tc-tiddlylink.tc-tiddlylink-missing:hover, .tc-edit-tags .tc-tiddlylink.tc-tiddlylink-resolves:hover, .tc-edit-tags .tc-tiddlylink.tc-tiddlylink-shadow:hover {\n border-bottom: none !important;\npadding: 4px 14px 4px 14px !important;\n}\n\n/* Links */\n\n.tc-body a:hover {\n border-bottom: 1px dotted {{!!theme_color}};\n }\n\n.tc-body a.tc-tiddlylink-missing {\n\tfont-style: normal !important;\n\tcolor: #237095 !important;\n}\na.tc-tiddlylink-missing:hover, button.tc-tiddlylink:hover, a.tc-tiddlylink:hover {\n text-decoration: none !important;\n border-bottom: 1px dotted {{!!theme_color}} !important;\n}\na.tc-tiddlylink-external {\n\ttext-decoration: none !important;\n\tcolor: #3C2BB1 !important;\n\tbackground-color: inherit !important;\n}\na.tc-tiddlylink-external:hover {\n border-bottom: 1px dotted {{!!theme_color}} !important;\n}\n\n.tc-tag-list-item > span > div.tc-menu-list-item > a:hover {\nborder-bottom: none !important;\npadding: 0 14px 0 14px !important;\n}\n\ntc-block-dropdown tc-search-drop-down tc-popup-handle {\nborder-bottom: none !important;\npadding:initial !important;\n}\n\ndiv.tc-menu-list-item > a:hover {\nborder-bottom:none !important;\n}\n\n\n/* Tag Drop Down */\n\n.tc-edit-tags .tc-block-dropdown{\n position: absolute !important;\n min-width: 220px !important;\n background-color: #FEFEFE !important;\n white-space: nowrap !important;\n z-index: 1000 !important;\n text-shadow: none !important;\n color: #606060 !important;\n font-family: gotham, helvetica, arial, sans-serif !important;\n font-size: 13px ;\n font-weight: 500 !important;\n right: 70% !important;\n padding: 15px 7px !important;\n border: 3px solid rgba(217, 217, 217, .4) !important;\n border-top: 1px solid rgba(217, 217, 217, .4) !important;\n border-left: 1px solid rgba(217, 217, 217, .4) !important;\n margin: 1rem !important;\n margin-top: 4px !important;\n text-overflow: ellipsis !important;\n box-shadow: 0 6px 20px rgba(0, 0, 0, .04), -6px 8px 15px rgba(0, 0, 0, .04), 6px 8px 15px rgba(0, 0, 0, .04) !important;\n}\n\n---\n/* Site Header */\n\n---\n\n.site-header {\n padding: 60px 0 0 !important;\n overflow: auto !important;\n text-align: center !important;\n text-transform: uppercase !important;\n}\n.site-title-wrapper {\n display: table !important;\n margin: 0 auto !important;\n}\n.site-title {\n float: left !important;\n font-size: 14px !important;\n font-weight: 600 !important;\n margin: 0 !important;\n text-transform: uppercase !important;\n}\n.site-title a {\n\tfloat: left !important;\n\tbackground: #f03838 !important;\n\tcolor: #FEFEFE !important;\n\tpadding: 8px 10px 8px !important;\n\tfont-weight: normal;\n\t-webkit-user-select: inherit;\n}\n.site-title a:hover {\n background: #303030 !important;\n border-bottom: none !important;\n}\n.site-logo {\n display: block !important;\n}\n.site-logo img {\n margin: 0 !important;\n}\n.site-nav {\n list-style: none !important;\n margin: 28px 0 10px !important;\n}\n\n.site-nav-item {\n display: inline-block !important;\n font-size: 14px !important;\n font-weight: 700 !important;\n margin: 0 10px !important;\n text-transform: uppercase !important;\n color: {{!!theme_color}} !important;\n text-decoration: none !important;\n padding-right: 15px !important;\n font-family: \"Open Sans\", arial, sans-serif !important;\n line-height: 1.8 !important;\n text-align: center !important;\n}\n.site-nav-item:hover {\n color: #424242 !important;\n}\n\n---\n/* Site Subtitle */\n\n---\n\n.subtitleclass {\nfont-family:{{!!sitesubtitlefont}};\ncolor:#f03838;\ntext-transform: none;\nfont-size:{{!!sitesubtitlefontsize}};\n}\n\n\n\n---\n/* Table of Contents */\n\n---\n\n\n.post-stub-title {\ndisplay: inline-block;\nmargin: 0 !important;\ntext-transform: none !important;\nfont-size: 16px !important;\n}\n\n.post-index{\nmargin: 0 auto !important;\nposition: relative !important;\nwidth: 100% !important;\nmax-width: 889px !important;\n}\n\n.post-index ol {\nlist-style: none !important;\ndisplay: block !important;\nmargin-block-start: 1em !important;\nmargin-block-end: 1em !important;\n\n}\n.post-index li li a {\nfont-weight: 900 !important;\npadding-inline-start: 5px !important;\nmargin: 0 0 0 !important;\npadding: 0 0 0 25px !important;\ntransition: all 0.2s ease-in-out !important;\n}\n\n.post-index li li a:hover{\npadding: 20px 12px !important;\n}\n\n@media only screen and (max-width: {{$:/themes/tiddlywiki/vanilla/metrics/sidebarbreakpoint}}) {\n.post-index li li a {padding: 0 !important;}\n.post-index li li a:hover {padding: 0 !important;}\n}\n.post-stub {\ncolor: #424242 !important;\nfont-family: \"Open Sans\", arial, sans-serif !important;\nfont-size: 18px !important;\nline-height: 1.8 !important;\ndisplay: list-item !important;\ntext-align: match-parent !important;\nborder-bottom: 1px dotted #303030 !important;\nmargin: 0 !important;\nposition: relative !important;\npadding: 20px 5px !important;\n}\n\n@media only screen and (max-width: {{$:/themes/tiddlywiki/vanilla/metrics/sidebarbreakpoint}}) {\n.post-stub {font-size: 15px !important;line-height: 1.5 !important;}\n.post-stub .tc-btn-invisible {padding: 0 25px 0 0;}\n.post-stub-date {display:none;}\n.post-stub-title {display: inline;}\n.post-stub button svg.tc-image-right-arrow {\n\theight: 1.5em;\n\twidth: 1.5em;\n\tbackground: #fea;\n\tborder-radius: 50%;\n\tpadding: 3px;}\n}\n\n.post-stub a {\n color: #424242 !important;\npadding-inline-start: 10px !important;\nmargin: 80px 40px 0 !important;\npadding: 35px 0 0 !important;\n}\n\n@media only screen and (max-width: {{$:/themes/tiddlywiki/vanilla/metrics/sidebarbreakpoint}}) {\n.post-stub a {margin: 0 !important;}\n}\n.post-stub a:hover{\ncolor:{{!!theme_color}} !important;\noutline: 0 !important;\nborder-bottom:none !important;\n}\n\n\n---\n/*Theme Sake */\n\n---\n\n.tc-tiddler-frame {\n padding: 0 42px 42px 42px !important;\n}\n\n@media only screen and (max-width: 768px) {\n.tc-tiddler-frame {\n padding: 0 10px 10px 10px !important;\n}\n.tc-story-river {\npadding: 20px !important;\nwidth: 100% !important;\n}\n}\n\n@media (max-width: 960px) {\n.tc-story-river {position:fixed}\n}\n\n---\n/*GENERIC*/\n\n---\n\n.tc-control-panel textarea,\n .tc-control-panel input[type=\"text\"],\n .tc-control-panel input[type=\"search\"],\n .tc-control-panel input[type=\"\"],\n .tc-control-panel input:not([type]),\n .tc-edit-field-value input[type=\"text\"],\n .tc-type-selector input[type=\"text\"] {\n border: 1px solid #c4c4c4 !important;\n }\n\n\n .tc-block-dropdown {\n border-radius: 4px !important;\n }\n\n\n .tc-block-dropdown a:hover {\n background-color: #f0e68c !important;\n }\n\n\n .tc-drop-down {\n color: #606060 !important;\n font-family: gotham, helvetica, arial, sans-serif !important;\n font-size: 13px;\n font-weight: 500 !important;\n position: relative;\n right: 70% !important;\n padding: 15px 7px !important;\n border-radius: 2px !important;\n border: 3px solid rgba(217, 217, 217, .4) !important;\n border-top: 1px solid rgba(217, 217, 217, .4) !important;\n border-left: 1px solid rgba(217, 217, 217, .4) !important;\n margin: 1rem !important;\n margin-top: 4px !important;\n min-width: calc(100% + 100px) !important;\n width: -moz-fit-content !important;\n overflow: visible !important;\n text-overflow: ellipsis !important;\n box-shadow: 0 6px 20px rgba(0, 0, 0, .04), -6px 8px 15px rgba(0, 0, 0, .04), 6px 8px 15px rgba(0, 0, 0, .04) !important;\n }\n\n\n .tc-drop-down a:hover,\n .tc-drop-down button:hover,\n .tc-drop-down .tc-file-input-wrapper:hover button {\n color: #444 !important;\n background-color: #f0e68c !important;\n text-decoration: none !important;\n }\n\n\n .tc-titlebar .tc-drop-down {\n min-width: calc(100% + 30px) !important;\n }\n\n\n .tc-password-wrapper {\n text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) !important;\n background-color: #fbfcFe !important;\n border: 1px solid rgb(225, 225, 225) !important;\n box-shadow: 0 6px 20px rgba(0, 0, 0, .04), -6px 8px 15px rgba(0, 0, 0, .04), 6px 8px 15px rgba(0, 0, 0, .04) !important;\n height: 300px !important;\n width: 300px !important;\n }\n\n\n .tc-password-wrapper input {\n width: 100% !important;\n color: #000 !important;\n border: 1px solid rgb(225, 225, 225) !important;\n padding: 5px !important;\n margin-bottom: 5px !important;\n }\n\n .tc-password-wrapper button {\n width: 100% !important;\n border-radius: 5px !important;\n text-decoration: none !important;\n color: #fff !important;\n background-color: #26a69a !important;\n text-align: center !important;\n letter-spacing: .5px !important;\n transition: .2s ease-out !important;\n cursor: pointer !important;\n border: none !important;\n padding: 5px !important;\n margin-bottom: 5px !important;\n }\n\n .tc-password-wrapper h1 {\n color: #666 !important;\n font-size: 13px;\n text-transform: uppercase !important;\n text-align: center !important;\n }\n\n hr {\n color: #ececec;\n }\n\n .tg td {\n font-size: 13.5px !important;\n overflow: hidden !important;\n padding: .3em !important;\n word-break: normal !important;\n border-width: 0 !important;\n }\n\n tr:nth-child(even) {\n width: 100% !important;\n background-color: #f6f3f6 !important;\n }\n\n\n---\n /* TIDDLER TOOLBAR */\n\n---\n<$reveal type=\"nomatch\" state=\"$:/themes/ghostwriter/transparencystate\" text=\"none\">\n\n @media only screen and (min-width: {{$:/themes/tiddlywiki/vanilla/metrics/sidebarbreakpoint}}) {\n .tc-tiddler-view-frame .tc-tiddler-controls svg {\n fill: transparent;\n }\n</$reveal>\n<$reveal type=\"match\" state=\"$:/themes/ghostwriter/transparencystate\" text=\"close\">\n .tc-tiddler-view-frame .tc-tiddler-controls svg.tc-image-close-button {fill: #cccccc;}\n</$reveal>\n .tc-tiddler-view-frame .tc-tiddler-controls:hover svg,\n .tc-tiddler-view-frame .tc-tiddler-controls .tc-popup svg {\n fill: #cccccc;\n }\n}\n\n---\n /* BUTTON ANIMATION */\n\n---\n \n .tc-page-controls svg,\n .tc-tiddler-controls svg,\n .tc-topbar button svg,\n .tc-sidebar-scrollable {\n -webkit-transition: fill 200ms ease-in-out;\n -moz-transition: fill 200ms ease-in-out;\n transition: fill 200ms ease-in-out;\n }\n\n---\n /** * Notification */\n\n---\n \n .tc-notification {\n position: fixed !important;\n top: 35px !important;\n right: 50px !important;\n z-index: 1300 !important;\n width: 300px !important;\n height: 50px !important;\n background-color: #FABF67 !important;\n border: none !important;\n color: black !important;\n text-align: center !important;\n line-height: normal !important;\n padding-top: 10px !important;\n }\n\n---\n /** Search **/\n\n---\n \n input[type='search'] {\n -webkit-transition: border .1s;\n transition: border .1s;\n position: relative;\n background-color: transparent;\n border: 1px solid;\n border-radius: 2px;\n border-color: #e1e1e1;\n padding: 10px 40px 9px 8px;\n margin: 0;\n outline: none;\n box-sizing: border-box;\n width: 100%;\n }\n\n input[type='search']:focus,\n input[type='search'].focus {\n border-color: #c1c1c1;\n }\n\n\n---\n/*Sidebar*/\n\n--- \n\n.tc-sidebar-lists button {\n color: {{!!theme_color}};\n fill: {{!!theme_color}};\n}\n.tc-sidebar-lists .tc-tab-buttons button {\n display: inline-block !important;\n font-size: 14px !important;\n font-weight: 700 !important;\n margin: 0 10px !important;\n text-transform: uppercase;\n color: {{!!theme_color}} !important ;\n text-decoration: none !important;\n padding-right: 15px !important;\n font-family: \"Open Sans\", arial, sans-serif !important;\n line-height: 1.8 !important;\n text-align: center !important;\n padding: 0 !important;\n background: none !important;\n border: none !important;\n}\n.tc-sidebar-lists .tc-tab-buttons button.tc-tab-selected {\n background-color: transparent !important;\n border-left: none !important;\n border-top: none !important;\n border-right: none !important;\n color: #666 !important;\n}\n\n.tc-sidebar-lists .tc-search .tc-popup-handle {\n width: 60%;\n}\n.tc-sidebar-lists .tc-tab-set .tc-tab-content .tc-reveal button {\n border: none;\n outline: none;\n background: transparent;\n color: #666;\n fill: #666;\n}\n.tc-sidebar-lists .tc-tab-set .tc-tab-content .tc-reveal .tc-more-sidebar .tc-tab-set .tc-tab-buttons button.tc-tab-selected {\n color: blue;\n fill: blue;\n}\n.tc-sidebar-lists .tc-tab-content i.tc-muted {\n display: none;\n}\n\n/* Search drop down of Sidebar */\n\n.tc-sidebar-lists .tc-search-drop-down a.tc-tiddlylink:hover{\npadding: 0px 10px 0px 10px;\n}\n\n\n---\n/* Media Queries */\n\n---\n\n\n\n@media only screen and (max-width: 600px) {\n h1, h2 {\n margin-bottom: 20px; }\n\n p {\n margin-bottom: 20px; }\n\n ul, ol {\n margin-bottom: 20px; }\n\n img {\n margin: 30px 0; }\n\n blockquote {\n margin: 30px 0; }\n\n pre {\n margin: 30px 0; }\n\n hr {\n margin: 35px 0; }\n\n .site-header {\n padding-top: 60px; }\n\n .site-nav-item {\n display: block;\n margin: 15px 0; }\n\n}\n",
"type": "text/vnd.tiddlywiki",
"title": "$:/themes/ghostwriter/stylesheet/main",
"theme_color": "#f03838",
"tags": "$:/tags/Stylesheet $:/irreverent-mudblood/ghostwriter",
"sitesubtitlefontsize": "16px",
"sitesubtitlefont": "Parisienne, monospace",
"revision": "0",
"modifier": "Riz",
"modified": "20161202041846264",
"creator": "venomspinner",
"created": "20161028105046905",
"bag": "default"
},
"$:/themes/ghostwriter/Topbar": {
"text": "<$reveal state=\"$:/themes/ghostwriter/user/topbarhide\" type=\"nomatch\" text=\"hide\">\n <header class=\"site-header\" style=\"text-align:center;\">\n <div class=\"container\">\n <div class=\"site-title-wrapper\">\n <h1 class=\"site-title\"><a href=\"#\">{{$:/SiteTitle}}</a></h1>\n </div>\n\n <div class=\"site-nav\">\n<$reveal state=\"$:/themes/ghostwriter/user/homehide\" type=\"nomatch\" text=\"hide\"><$button class=\"site-nav-item tc-btn-invisible\" message=\"tm-home\">HOME</$button></$reveal>\n<$reveal state=\"$:/themes/ghostwriter/user/contenthide\" type=\"nomatch\" text=\"hide\"><$button to=\"$:/TableOfContents\" class=\"site-nav-item tc-btn-invisible\">Contents</$button></$reveal>\n<$reveal state=\"$:/themes/ghostwriter/user/abouthide\" type=\"nomatch\" text=\"hide\"><$button to=\"$:/About\" class=\"site-nav-item tc-btn-invisible\">About</$button></$reveal>\n<$list filter=\"[![$:/themes/ghostwriter/topbarbtntemplate]tag[$:/themes/ghostwriter/user/topbarbutton]]\"><$transclude/></$list>\n </div>\n </div>\n </header></$reveal>",
"type": "text/vnd.tiddlywiki",
"title": "$:/themes/ghostwriter/Topbar",
"tags": "$:/tags/AboveStory $:/irreverent-mudblood/ghostwriter",
"revision": "0",
"modifier": "venomspinner",
"modified": "20161110053524450",
"creator": "venomspinner",
"created": "20161028092007386",
"bag": "default"
},
"$:/TableOfContents": {
"text": "<div class=\"titleclass\"> Table of Contents </div>\n\n<div class=\"post-index\">\n<<tocghost-selective-expandable \"TableOfContents\"\"!sort[modified]\">>\n</div>",
"title": "$:/TableOfContents",
"tags": "$:/irreverent-mudblood/ghostwriter interface",
"modified": "20161110070238232",
"list": "",
"created": "20161109082528301"
},
"$:/themes/ghostwriter/options": {
"created": "20161101103541902",
"creator": "Riz",
"text": "!!Palette\n|Color theme|<$edit-text tiddler=\"$:/themes/ghostwriter/stylesheet/main\" type=\"color\" tag=\"input\" field=\"theme_color\"/><br><$edit-text tiddler=\"$:/themes/ghostwriter/stylesheet/main\" field=\"theme_color\"/>|\n|Color of the Sidebar Show/Hide Button|<$edit-text tiddler=\"$:/irreverent-mudblood/overlay-sidebar/stylesheet\" field=\"roundbtnbg\" type=\"color\" tag=\"input\"/><br><$edit-text tiddler=\"$:/irreverent-mudblood/overlay-sidebar/stylesheet\" field=\"roundbtnbg\"/>|\n\n!!Edit Toolbar\n|Transparency of Edit Toolbar Buttons |<$select tiddler='$:/themes/ghostwriter/transparencystate'><option value='all'>''All'' </option><option value='close'>All ''except close button''</option><option value='none'>None</option></$select>|\n\n!!Topbar and Pagination\n|Show/Hide Topbar | <span style=\"float:left;\"> <$reveal state=\"$:/themes/ghostwriter/user/topbarhide\" type=\"nomatch\" text=\"hide\"><$button>Hide Topbar<$action-setfield $tiddler=\"$:/themes/ghostwriter/user/topbarhide\" text=\"hide\"/></$button></$reveal><$reveal state=\"$:/themes/ghostwriter/user/topbarhide\" type=\"match\" text=\"hide\"><$button>Show Topbar<$action-setfield $tiddler=\"$:/themes/ghostwriter/user/topbarhide\" text=\"show\"/></$button></$reveal></span>|\n|Add a Top-bar Button|<$button><$action-sendmessage $message=\"tm-new-tiddler\" title=\"New Site Nav Item\" tags=\"$:/themes/ghostwriter/user/topbarbutton\" text={{$:/themes/ghostwriter/topbarbtntemplate}}/>New Top Bar Button</$button>|\n|Show / Hide Default Top-bar Button |<span style=\"float:left;\"> <$checkbox class=\"autowidthinput\" tiddler=\"$:/themes/ghostwriter/user/homehide\" field=\"text\" checked=\"show\" unchecked=\"hide\" default=\"show\"> Home</$checkbox> <$checkbox class=\"autowidthinput\" tiddler=\"$:/themes/ghostwriter/user/contenthide\" field=\"text\" checked=\"show\" unchecked=\"hide\" default=\"show\"> Content</$checkbox> <$checkbox class=\"autowidthinput\" tiddler=\"$:/themes/ghostwriter/user/abouthide\" field=\"text\" checked=\"show\" unchecked=\"hide\" default=\"show\"> About</$checkbox></span>|\n|Pagination|<$checkbox class=\"autowidthinput\" tiddler=\"$:/themes/ghostwriter/pagination\" tag=\"$:/tags/BelowStory\"> Display</$checkbox>|\n\n!!Mobile\n|Font Size|^<$edit-text tiddler=\"$:/themes/ghostwriter/user/mobile\" field=\"fontsize\" default=\"\" tag=\"input\"/> |\n|Title Size|^<$edit-text tiddler=\"$:/themes/ghostwriter/user/mobile\" field=\"titlesize\" default=\"28px\" tag=\"input\"/> |\n\n<$button class=\"tc-btn-big-green\" style=\"background-color:#e52d27;width:100%;font-size:14px;\">Remove Ghostwriter\n<$action-deletetiddler $filter=\"[prefix[$:/themes/ghostwriter/user/]]\"/>\n<$action-sendmessage $message=\"tm-delete-tiddler\" $param=\"$:/plugins/venomspinner/ghostwriter\"/>\n</$button>",
"title": "$:/themes/ghostwriter/options",
"tags": "$:/tags/ControlPanel/Appearance $:/irreverent-mudblood/ghostwriter",
"modified": "20161202053044155",
"caption": "Ghostwriter",
"modifier": "Riz"
},
"$:/themes/ghostwriter/transparencystate": {
"text": "close",
"title": "$:/themes/ghostwriter/transparencystate",
"tags": "$:/irreverent-mudblood/ghostwriter",
"modified": "20161110021504405",
"created": "20161109115418648"
},
"$:/palettes/Vanilla": {
"text": "alert-background: #ffe476\nalert-border: #b99e2f\nalert-highlight: #881122\nalert-muted-foreground: #b99e2f\nbackground: #FEFEFE\nblockquote-bar: <<colour muted-foreground>>\nbutton-background: \nbutton-foreground: \nbutton-border: \ncode-background: #f7f7f9\ncode-border: #e1e1e8\ncode-foreground: #dd1144\ndirty-indicator: #ff0000\ndownload-background: #34c734\ndownload-foreground: <<colour background>>\ndragger-background: <<colour foreground>>\ndragger-foreground: <<colour background>>\ndropdown-background: <<colour background>>\ndropdown-border: <<colour muted-foreground>>\ndropdown-tab-background-selected: #fff\ndropdown-tab-background: #ececec\ndropzone-background: rgba(0,200,0,0.7)\nexternal-link-background-hover: inherit\nexternal-link-background-visited: inherit\nexternal-link-background: inherit\nexternal-link-foreground-hover: inherit\nexternal-link-foreground-visited: #0000aa\nexternal-link-foreground: #0000ee\nforeground: #333333\nmessage-background: #ecf2ff\nmessage-border: #cfd6e6\nmessage-foreground: #547599\nmodal-backdrop: <<colour foreground>>\nmodal-background: <<colour background>>\nmodal-border: #999999\nmodal-footer-background: #f5f5f5\nmodal-footer-border: #dddddd\nmodal-header-border: #eeeeee\nmuted-foreground: #bbb\nnotification-background: #ffffdd\nnotification-border: #999999\npage-background: #fefefe\npre-background: #f5f5f5\npre-border: #cccccc\nprimary: #5778d8\nsidebar-button-foreground: <<colour foreground>>\nsidebar-controls-foreground-hover: #000000\nsidebar-controls-foreground: #aaaaaa\nsidebar-foreground-shadow: rgba(255,255,255, 0.8)\nsidebar-foreground: #acacac\nsidebar-muted-foreground-hover: #444444\nsidebar-muted-foreground: #c0c0c0\nsidebar-tab-background-selected: #f4f4f4\nsidebar-tab-background: #e0e0e0\nsidebar-tab-border-selected: <<colour tab-border-selected>>\nsidebar-tab-border: <<colour tab-border>>\nsidebar-tab-divider: #e4e4e4\nsidebar-tab-foreground-selected: \nsidebar-tab-foreground: <<colour tab-foreground>>\nsidebar-tiddler-link-foreground-hover: #444444\nsidebar-tiddler-link-foreground: #999999\nsite-title-foreground: <<colour tiddler-title-foreground>>\nstatic-alert-foreground: #aaaaaa\ntab-background-selected: #ffffff\ntab-background: #d8d8d8\ntab-border-selected: #d8d8d8\ntab-border: #cccccc\ntab-divider: #d8d8d8\ntab-foreground-selected: <<colour tab-foreground>>\ntab-foreground: #666666\ntable-border: #dddddd\ntable-footer-background: #a8a8a8\ntable-header-background: #f0f0f0\ntag-background: \ntag-foreground: #f03838\ntiddler-background: <<colour background>>\ntiddler-border: <<colour background>>\ntiddler-controls-foreground-hover: #888888\ntiddler-controls-foreground-selected: #444444\ntiddler-controls-foreground: #cccccc\ntiddler-editor-background: #f8f8f8\ntiddler-editor-border-image: #ffffff\ntiddler-editor-border: #cccccc\ntiddler-editor-fields-even: #e0e8e0\ntiddler-editor-fields-odd: #f0f4f0\ntiddler-info-background: #f8f8f8\ntiddler-info-border: #dddddd\ntiddler-info-tab-background: #f8f8f8\ntiddler-link-background: <<colour background>>\ntiddler-link-foreground: <<colour primary>>\ntiddler-subtitle-foreground: #c0c0c0\ntiddler-title-foreground: #182955\ntoolbar-new-button: \ntoolbar-options-button: \ntoolbar-save-button: \ntoolbar-info-button: \ntoolbar-edit-button: \ntoolbar-close-button: \ntoolbar-delete-button: \ntoolbar-cancel-button: \ntoolbar-done-button: \nuntagged-background: #999999\nvery-muted-foreground: #888888",
"type": "application/x-tiddler-dictionary",
"title": "$:/palettes/Vanilla",
"tags": "$:/tags/Palette $:/irreverent-mudblood/ghostwriter",
"revision": "0",
"name": "Vanilla",
"modifier": "venomspinner",
"modified": "20161031174446260",
"description": "Pale and unobtrusive",
"creator": "venomspinner",
"created": "20161028065018599",
"bag": "default"
},
"$:/themes/ghostwriter/tocghostMacro": {
"text": "\\define tocghost-caption()\n<$set name=\"tv-wikilinks\" value=\"no\">\n<$transclude field=\"caption\">\n<span class=\"post-stub-title\"><$view field=\"title\"/></span>\n</$transclude>\n<$transclude field=\"caption\">\n <span class=\"post-stub-date\">/ Published <$view field=\"created\" format=\"date\" template=\"DDth MMM YYYY\"/></span>\n</$transclude>\n</$set>\n\\end\n\n\\define tocghost-body(rootTag,tag,sort:\"\")\n<ol class=\"post-list\">\n<$list filter=\"\"\"[all[shadows+tiddlers]tag[$tag$]!has[draft.of]$sort$]\"\"\">\n<li class=\"post-stub\">\n<$list filter=\"[all[current]tocghost-link[no]]\" emptyMessage=\"<$link><$view field='caption'><$view field='title'/></$view></$link>\">\n<<tocghost-caption>>\n</$list>\n<$list filter=\"\"\"[all[current]] -[[$rootTag$]]\"\"\">\n<$macrocall $name=\"tocghost-body\" rootTag=\"\"\"$rootTag$\"\"\" tag=<<currentTiddler>> sort=\"\"\"$sort$\"\"\" itemClassFilter=\"\"\"$itemClassFilter$\"\"\"/>\n</$list>\n</li>\n</$set>\n</$list>\n</ol>\n\\end\n\n\n\\define tocghost-linked-selective-expandable-body(tag,sort:\"\",itemClassFilter)\n<$set name=\"tocghost-state\" value=<<qualify \"\"\"$:/state/tocghost/$tag$-$(currentTiddler)$\"\"\">>>\n<$set name=\"tocghost-item-class\" filter=\"\"\"$itemClassFilter$\"\"\" value=\"tocghost-item-selected\" emptyValue=\"tocghost-item\">\n<li class=\"post-stub\">\n<$link>\n<$list filter=\"[all[current]tagging[]limit[1]]\" variable=\"ignore\" emptyMessage=\"<$button class='tc-btn-invisible'>{{$:/core/images/blank}}</$button>\">\n<$reveal type=\"nomatch\" state=<<tocghost-state>> text=\"open\">\n<$button set=<<tocghost-state>> setTo=\"open\" class=\"tc-btn-invisible\">\n{{$:/core/images/right-arrow}}\n</$button>\n</$reveal>\n<$reveal type=\"match\" state=<<tocghost-state>> text=\"open\">\n<$button set=<<tocghost-state>> setTo=\"close\" class=\"tc-btn-invisible\">\n{{$:/core/images/down-arrow}}\n</$button>\n</$reveal>\n</$list>\n<<tocghost-caption>>\n</$link>\n<$reveal type=\"match\" state=<<tocghost-state>> text=\"open\">\n<$macrocall $name=\"tocghost-selective-expandable\" tag=<<currentTiddler>> sort=\"\"\"$sort$\"\"\" itemClassFilter=\"\"\"$itemClassFilter$\"\"\"/>\n</$reveal>\n</li>\n</$set>\n</$set>\n\\end\n\n\\define tocghost-unlinked-selective-expandable-body(tag,sort:\"\",itemClassFilter)\n<$set name=\"tocghost-state\" value=<<qualify \"\"\"$:/state/tocghost/$tag$-$(currentTiddler)$\"\"\">>>\n<$set name=\"tocghost-item-class\" filter=\"\"\"$itemClassFilter$\"\"\" value=\"tocghost-item-selected\" emptyValue=\"tocghost-item\">\n<li class=\"post-stub\">\n<$list filter=\"[all[current]tagging[]limit[1]]\" variable=\"ignore\" emptyMessage=\"<$button class='tc-btn-invisible'>{{$:/core/images/blank}}</$button> <$view field='caption'><$view field='title'/></$view>\">\n<$reveal type=\"nomatch\" state=<<tocghost-state>> text=\"open\">\n<$button set=<<tocghost-state>> setTo=\"open\" class=\"tc-btn-invisible\">\n{{$:/core/images/right-arrow}}\n<<tocghost-caption>>\n</$button>\n</$reveal>\n<$reveal type=\"match\" state=<<tocghost-state>> text=\"open\">\n<$button set=<<tocghost-state>> setTo=\"close\" class=\"tc-btn-invisible\">\n{{$:/core/images/down-arrow}}\n<<tocghost-caption>>\n</$button>\n</$reveal>\n</$list>\n<$reveal type=\"match\" state=<<tocghost-state>> text=\"open\">\n<$macrocall $name=\"\"\"tocghost-selective-expandable\"\"\" tag=<<currentTiddler>> sort=\"\"\"$sort$\"\"\" itemClassFilter=\"\"\"$itemClassFilter$\"\"\"/>\n</$reveal>\n</li>\n</$set>\n</$set>\n\\end\n\n\\define tocghost-selective-expandable-empty-message()\n<<tocghost-linked-selective-expandable-body tag:\"\"\"$(tag)$\"\"\" sort:\"\"\"$(sort)$\"\"\" itemClassFilter:\"\"\"$(itemClassFilter)$\"\"\">>\n\\end\n\n\\define tocghost-selective-expandable(tag,sort:\"\",itemClassFilter)\n<$vars tag=\"\"\"$tag$\"\"\" sort=\"\"\"$sort$\"\"\" itemClassFilter=\"\"\"$itemClassFilter$\"\"\">\n<ol class=\"post-list\">\n<$list filter=\"[all[shadows+tiddlers]tag[$tag$]!has[draft.of]$sort$]\">\n<$list filter=\"[all[current]tocghost-link[no]]\" variable=\"ignore\" emptyMessage=<<tocghost-selective-expandable-empty-message>>>\n<<tocghost-unlinked-selective-expandable-body tag:\"\"\"$tag$\"\"\" sort:\"\"\"$sort$\"\"\" itemClassFilter:\"\"\"$itemClassFilter$\"\"\">>\n</$list>\n</$list>\n</ol>\n</$vars>\n\\end\n",
"type": "text/vnd.tiddlywiki",
"title": "$:/themes/ghostwriter/tocghostMacro",
"tags": "$:/tags/Macro $:/irreverent-mudblood/ghostwriter",
"revision": "0",
"modified": "20161110084617042",
"created": "20161031140339462",
"bag": "default"
},
"$:/themes/ghostwriter/Acknowledgements": {
"created": "20161109145142879",
"text": "This is an adaptation of the ''Ghostwriter'' Blog Theme by ''Rory Gibson'' at https://github.com/roryg/ghostwriter for the TW5 platform. All the creative and design credits belong to him. It is a heavily popular and free theme for the ghost blogging platform. \n\nThis is a ''mobile responsive'', minimalist theme. The stylesheets are seperated out so that you can tweak to your likes. Some of the classes are redundant, I will get around to them //as and when possible//. \n\nThe other person I must furnish credits to is ''Zaphod Beeblebrox ''for the tip that enabled custom backgrounds for sidebar. Later I injected z-index to the same and found that it can be made to overlay the storyriver, which I found a neater alternative to pushing the content to a side. The stylesheet for displaying tiddler controls should be credited to ''Tobias Beer''. \n\nKudos to the group, especially Jan and Josiah, for their inputs and encouragement. I have tried to include most of the suggestions that came by. Be not shy to tell me about yours\n\nFinally, the obligatory note of thanks to'' Jeremy Ruston''",
"title": "$:/themes/ghostwriter/Acknowledgements",
"tags": "$:/irreverent-mudblood/ghostwriter",
"modified": "20161110105943157"
},
"$:/themes/ghostwriter/topbarbtntemplate": {
"created": "20161110024930642",
"text": "<$button class=\"site-nav-item tc-btn-invisible\">\n\n</$button>",
"title": "$:/themes/ghostwriter/topbarbtntemplate",
"modified": "20161110031122949",
"tags": "$:/irreverent-mudblood/ghostwriter"
},
"$:/themes/ghostwriter/pagination": {
"created": "20161202043138190",
"creator": "Riz",
"text": "\\define paginate(discard:3)\n<a><$button class=\"tc-btn-invisible pages\">\n<$action-listops $tiddler=\"$:/StoryList\" $field=\"list\" $filter=\"[!is[system]!is[missing]!sort[modified]rest[$discard$]limit[3]]\"/>\n<$list variable='Target' filter=\"[!is[system]!is[missing]!sort[modified]rest[$discard$]limit[3]first[]]\"><$action-navigate $to=<<Target>>/></$list></$button></a>\n\\end\n<style>\n.emm-paginate {\ncounter-reset: paginate;\ntext-align: center;\n}\n.emm-paginate a:hover {\nborder-bottom:none;\ncolor:#fff;\n\n}\n.tc-btn-invisible.pages {\n\tborder: 1px solid #c1c1c1;\n\tpadding: 4px 8px;\n}\n.tc-btn-invisible.pages:hover {\nbackground:#a1a1a1;\n}\nbutton.pages::after {\n counter-increment: paginate;\n content: counter(paginate) ;\n}\n</style>\n\n<div class=\"emm-paginate\">\n<a><$button class=\"tc-btn-invisible pages\">\n<$action-listops $tiddler=\"$:/StoryList\" $field=\"list\" $filter=\"[!is[system]!is[missing]!sort[modified]limit[3]]\"/>\n<$list variable='Target' filter=\"[!is[system]!is[missing]!sort[modified]limit[3]first[]]\"><$action-navigate $to=<<Target>>/></$list></$button></a>\n<<paginate 3>>\n<<paginate 6>>\n<<paginate 9>>\n<<paginate 12>>\n</div>",
"title": "$:/themes/ghostwriter/pagination",
"tags": "$:/tags/BelowStory",
"modified": "20161202050759321",
"modifier": "Riz"
}
}
}
{
"tiddlers": {
"$:/plugins/welford/twpin/caption": {
"title": "$:/plugins/welford/twpin/caption",
"text": "<$fieldmangler tiddler=\"$:/DefaultTiddlers\"><$list filter=\"[all[current]]-[list[$:/DefaultTiddlers]]\">pin tiddler</$list><$list filter=\"[list[$:/DefaultTiddlers]is[current]]\">unpin tiddler</$list></$fieldmangler>"
},
"$:/plugins/welford/twpin/settings/position": {
"title": "$:/plugins/welford/twpin/settings/position",
"tags": "",
"text": "<$link to=\"$:/config/twpin/position\">Pinned Tiddlers Display Position</$link>\n\n<$radio tiddler=\"$:/config/twpin/position\" value=\"before\"> Before [[$:/DefaultTiddlers]] </$radio>\n\n<$radio tiddler=\"$:/config/twpin/position\" value=\"after\"> After [[$:/DefaultTiddlers]] </$radio>\r\n"
},
"$:/plugins/welford/twpin/fidget.js": {
"text": "/*\\\r\ntitle: $:/plugins/welford/twpin/fidget.js\r\ntype: application/javascript\r\nmodule-type: widget\r\n\r\nWidget which picks up messages to append values to list fields\r\n\r\n\\*/\r\n(function(){\r\n\r\n/*jslint node: true, browser: true */\r\n/*global $tw: false */\r\n\"use strict\";\r\n\r\nvar Widget = require(\"$:/core/modules/widgets/widget.js\").widget;\r\n\r\nvar Fidget = function(parseTreeNode,options) {\r\n\tthis.initialise(parseTreeNode,options);\r\n\tthis.addEventListeners([\r\n\t\t{type: \"tm-append-to-list\", handler: \"handleAppendToList\"},\t\r\n\t\t{type: \"tm-remove-from-list\", handler: \"handleRemoveFromList\"},\t\r\n\t]);\r\n};\r\n\r\n/*\r\nInherit from the base widget class\r\n*/\r\nFidget.prototype = new Widget();\r\n/*\r\nRender this widget into the DOM\r\n*/\r\nFidget.prototype.render = function(parent,nextSibling) {\r\n\tthis.parentDomNode = parent;\r\n\tthis.computeAttributes();\r\n\tthis.execute();\r\n\tthis.renderChildren(parent,nextSibling);\r\n};\r\n/*\r\nCompute the internal state of the widget\r\n*/\r\nFidget.prototype.execute = function() {\r\n\t// Get our parameters\r\n\tthis.field = this.getAttribute(\"field\");\r\n\tthis.value = this.getAttribute(\"value\");\r\n\t// Construct the child widgets\r\n\tthis.makeChildWidgets();\r\n};\r\n\r\n/*\r\nSelectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering\r\n*/\r\nFidget.prototype.refresh = function(changedTiddlers) {\r\n\tvar changedAttributes = this.computeAttributes();\r\n\tif(changedAttributes.field || changedAttributes.value) {\r\n\t\tthis.refreshSelf();\r\n\t\treturn true;\r\n\t}\r\n\treturn this.refreshChildren(changedTiddlers);\r\n};\r\n\r\nFidget.prototype.GetParameters = function(event) {\t\r\n\tif(typeof event.paramObject === \"object\") {\r\n\t\t// If we got a hashmap use it as the template\r\n\t\tvar additionalFields = event.paramObject;\r\n\t\tif(additionalFields && additionalFields.field) {\r\n\t\t\tthis.field = additionalFields.field;\r\n\t\t}\r\n\t\tif(additionalFields && additionalFields.value) {\r\n\t\t\tthis.value = additionalFields.value;\r\n\t\t}\r\n\t}\r\n}\r\n\r\nFidget.prototype.handleAppendToList = function(event) {\t\r\n\tthis.GetParameters(event);\r\n\t//get field, add value to front and set it\r\n\tvar tr = $tw.utils.parseTextReference(this.field),\r\n\t\ttitle = tr.title || currTiddlerTitle;\r\n\tvar tiddler = this.wiki.getTiddler(title);\r\n\tif(tiddler) {\r\n\t\tvar original = tiddler.fields[\"list\"];\r\n\t\tvar updatedField;\r\n\t\tif(original){\r\n\t\t\tif(original.indexOf(this.value) == -1){\r\n\t\t\t\tupdatedField = original.slice(0);\r\n\t\t\t\tupdatedField.unshift(this.value);\r\n\t\t\t}\r\n\t\t}\r\n\t\telse{\r\n\t\t\tupdatedField = [this.value];\r\n\t\t}\r\n\t\tthis.wiki.setTextReference(this.field,updatedField,this.getVariable(\"currentTiddler\"));\t\t\t\t\t\t\t\r\n\t}\r\n\treturn false;\r\n};\r\n\r\nFidget.prototype.handleRemoveFromList = function(event) {\r\n\tthis.GetParameters(event);\r\n\tif(this.field && this.value){\r\n\t\t//get field, add value to front and set it\r\n\t\tvar tr = $tw.utils.parseTextReference(this.field),\r\n\t\t\ttitle = tr.title || currTiddlerTitle;\r\n\t\tvar tiddler = this.wiki.getTiddler(title);\r\n\t\tif(tiddler){\t\t\r\n\t\t\tvar original = tiddler.fields[\"list\"];\r\n\t\t\tvar updatedField;\r\n\t\t\tif(original){\r\n\t\t\t\tvar index = original.indexOf(this.value);\r\n\t\t\t\tupdatedField = original.slice(0);\r\n\t\t\t\tif(index > -1){\r\n\t\t\t\t\tupdatedField.splice(index, 1);\r\n\t\t\t\t\tthis.wiki.setTextReference(this.field,updatedField,this.getVariable(\"currentTiddler\"));\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\treturn false;\r\n};\r\n\r\nexports.fidget = Fidget;\r\n\r\n})();\r\n",
"title": "$:/plugins/welford/twpin/fidget.js",
"type": "application/javascript",
"module-type": "widget"
},
"$:/plugins/welford/twpin/pin.js": {
"text": "/*\\\r\ntitle: $:/plugins/welford/twpin/pin.js\r\ntype: application/javascript\r\nmodule-type: startup\r\n\r\nAppends hooks so that i can change the default tiddlers\r\n\r\n\\*/\r\n(function(){\r\n\r\n/*jslint node: true, browser: true */\r\n/*global $tw: false */\r\n\"use strict\";\r\n\r\n// Export name and synchronous status\r\nexports.name = \"addpinnedtiddlers\";\r\nexports.platforms = [\"browser\"];\r\nexports.after = [\"startup\"];\r\nexports.before = [\"story\"];\r\nexports.synchronous = true;\r\n\r\n// Default tiddlers\r\nvar DEFAULT_TIDDLERS_TITLE = \"$:/DefaultTiddlers\";\r\nvar POSITION_TIDDLER_TITLE = \"$:/config/twpin/position\";\r\n\r\nexports.startup = function() {\r\n\t$tw.hooks.addHook(\"th-opening-default-tiddlers-list\",function(list) {\r\n\t\t//default to before DEFAULT_TIDDLERS_TITLE \r\n\t\tvar position_before = true;\r\n\t\tif($tw.wiki.getTiddlerText(POSITION_TIDDLER_TITLE,\"before\") !== \"before\") {\r\n\t\t\tposition_before = false;\r\n\t\t}\r\n\t\t// Add pinned tiddlers to the end of the list if they aren't already in it\r\n\t\tvar taggedList = $tw.wiki.getTiddler(DEFAULT_TIDDLERS_TITLE).fields[\"list\"];\r\n\t\tif(taggedList){\r\n\t\t\tvar new_list = [];\r\n\t\t\tfor (var i = 0; i < taggedList.length; i++) {\r\n\t\t\t\tif(list.indexOf(taggedList[i]) === -1 && new_list.indexOf(taggedList[i]) === -1) {\r\n\t\t\t\t\tnew_list.push(taggedList[i]);\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t\tif(new_list.length == 0)\r\n\t\t\t\treturn list;\r\n\r\n\t\t\tif(position_before){\r\n\t\t\t\tlist = new_list.concat(list);\r\n\t\t\t}else{\r\n\t\t\t\tlist = list.concat(new_list);\r\n\t\t\t}\r\n\t\t}\r\n\t\treturn list;\r\n\t});\r\n};\r\n\r\n})();",
"title": "$:/plugins/welford/twpin/pin.js",
"type": "application/javascript",
"module-type": "startup"
},
"$:/plugins/welford/twpin/button": {
"title": "$:/plugins/welford/twpin/button",
"tags": "$:/tags/ViewToolbar",
"caption": "{{$:/plugins/welford/twpin/images/unpinned}} {{$:/plugins/welford/twpin/caption}}",
"list-after": "$:/core/ui/Buttons/info",
"description": "Pin a tiddler to the default page",
"text": "<$fieldmangler tiddler=\"$:/DefaultTiddlers\"><$fidget><$list filter=\"[all[current]]-[list[$:/DefaultTiddlers]]\"><$button class=<<tv-config-toolbar-class>> tooltip=\"Pin this tiddler\"><$action-sendmessage $message=\"tm-add-field\" $param=\"list\"/><$action-sendmessage $message=\"tm-append-to-list\" field=\"$:/DefaultTiddlers!!list\" value=<<currentTiddler>>/><$action-sendmessage $message=\"tm-save-wiki\"/>{{$:/plugins/welford/twpin/images/unpinned}}<$list filter=\"[<tv-config-toolbar-text>prefix[yes]]\"><span class=\"tc-btn-text\"><$text text={{$:/plugins/welford/twpin/pincaption}}/></span></$list></$button></$list><$list filter=\"[list[$:/DefaultTiddlers]is[current]]\"><$button class=<<tv-config-toolbar-class>> tooltip=\"Unpin this tiddler\"><$action-sendmessage $message=\"tm-add-field\" $param=\"list\"/><$action-sendmessage $message=\"tm-remove-from-list\" field=\"$:/DefaultTiddlers!!list\" value=<<currentTiddler>>/><$action-sendmessage $message=\"tm-save-wiki\"/>{{$:/plugins/welford/twpin/images/pinned}}<$list filter=\"[<tv-config-toolbar-text>prefix[yes]]\"><span class=\"tc-btn-text\"><$text text={{$:/plugins/welford/twpin/unpincaption}}/></span></$list></$button></$list></$fidget></$fieldmangler>"
},
"$:/plugins/welford/twpin/pincaption": {
"title": "$:/plugins/welford/twpin/pincaption",
"text": "pin tiddler"
},
"$:/plugins/welford/twpin/images/pinned": {
"title": "$:/plugins/welford/twpin/images/pinned",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-pinned-button tc-image-button\" viewBox=\"83 81 50 50\" width=\"22pt\" height=\"22pt\">\r\n<path d=\"m 83,112.60511 c 0,1.385 1.100795,2.4858 2.485795,2.4858 l 17.968755,0 0,15.90909 9.0909,0 0,-15.90909 17.96876,0 c 1.385,0 2.48579,-1.1008 2.48579,-2.4858 l 0,-4.11931 C 133,107.1008 131.89921,106 130.51421,106 l -6.60512,0 0,-20.099432 C 123.90909,83.185968 121.72312,81 119.00852,81 l -22.017043,0 c -2.7146,0 -4.900568,2.185968 -4.900568,4.900568 l 0,20.099432 -6.605114,0 C 84.100795,106 83,107.1008 83,108.4858 l 0,4.11931 z m 13.636364,-9.36168 0,-14.941405 c 0,-1.526895 1.229675,-2.75657 2.756569,-2.75657 l 7.013497,0 c 1.52689,0 2.75657,1.229675 2.75657,2.75657 l 0,14.941405 c 0,1.5269 -1.22968,2.75657 -2.75657,2.75657 l -7.013497,0 c -1.526894,0 -2.756569,-1.22967 -2.756569,-2.75657 z\"/>\r\n</svg>"
},
"$:/plugins/welford/twpin/unpincaption": {
"title": "$:/plugins/welford/twpin/unpincaption",
"text": "unpin tiddler"
},
"$:/plugins/welford/twpin/images/unpinned": {
"title": "$:/plugins/welford/twpin/images/unpinned",
"tags": "$:/tags/Image",
"text": "<svg class=\"tc-image-unpinned-button tc-image-button\" viewBox=\"83 81 50 50\" width=\"22pt\" height=\"22pt\">\r\n<path d=\"m 101.39489,81 c -1.385,0 -2.4858,1.100795 -2.4858,2.485795 l 0,17.968755 -15.90909,0 0,9.0909 15.90909,0 0,17.96876 c 0,1.385 1.1008,2.48579 2.4858,2.48579 l 4.11931,0 c 1.385,0 2.4858,-1.10079 2.4858,-2.48579 l 0,-6.60512 20.09943,0 c 2.7146,0 4.90057,-2.18597 4.90057,-4.90057 l 0,-22.017043 c 0,-2.7146 -2.18597,-4.900568 -4.90057,-4.900568 l -20.09943,0 0,-6.605114 C 108,82.100795 106.8992,81 105.5142,81 l -4.11931,0 z m 9.36168,13.636364 14.94141,0 c 1.52689,0 2.75656,1.229675 2.75656,2.756569 l 0,7.013497 c 0,1.52689 -1.22967,2.75657 -2.75656,2.75657 l -14.94141,0 c -1.5269,0 -2.75657,-1.22968 -2.75657,-2.75657 l 0,-7.013497 c 0,-1.526894 1.22967,-2.756569 2.75657,-2.756569 z\" />\r\n</svg>"
}
}
}
{
"tiddlers": {
"$:/macros/welford/macros/spimg.js": {
"text": "/*\\\r\ntitle: $:/macros/welford/macros/spimg.js\r\ntype: application/javascript\r\nmodule-type: macro\r\n\r\nCreates a background image which can show only part of an image\r\n\\*/\r\n\r\n(function(){\r\n\r\n\"use strict\";\r\n\r\nexports.name = \"spimg\";\r\n\r\nexports.params = [\r\n\t{ name: \"src\" },\r\n\t{ name: \"position\" },\r\n\t{ name: \"size\" },\r\n\t{ name: \"height\" },\r\n\t{ name: \"width\" }\r\n];\r\n\r\nexports.run = function(src, position, size, height, width) {\t\r\n\t//this.imageSource = src;\r\n\tthis.imageSource = src;\r\n\tthis.imageSource = this.getVariable(\"tv-get-export-image-link\",{params: [{name: \"src\",value: src}],defaultValue: src});\r\n\tthis.imageWidth = width || \"100%\";\r\n\tthis.imageHeight = height || \"200px\";\r\n\tthis.imagePosition= position || \"0px 0px\";\r\n\tthis.imageSize = size || \"cover\";\r\n\tvar output = [\r\n\t\t\"<a href=\\\"\"+this.imageSource+\"\\\">\",\r\n\t\t\"<span style=\\\"\",\r\n\t\t\"display:block;\",\r\n\t\t\"background-image: url('\"+this.imageSource+\"');\",\r\n\t\t\"background-size:\"+this.imageSize+\";\",\r\n\t\t\"background-repeat:no-repeat;\",\r\n\t\t\"width:\"+this.imageWidth+\";\",\r\n\t\t\"height:\"+this.imageHeight+\";\",\r\n\t\t\"background-position:\"+this.imagePosition+\";\",\r\n\t\t\"\\\">\",\r\n\t\t\"</span></a>\"];\r\n\treturn output.join(\"\");\r\n};\r\n\r\n})();",
"title": "$:/macros/welford/macros/spimg.js",
"type": "application/javascript",
"module-type": "macro"
}
}
}
$:/core/ui/ImportPreviews/TextRaw
$:/core/ui/AdvancedSearch/Filter
$:/core/ui/ControlPanel/Basics
$:/core/ui/ControlPanel/Plugins/Installed/Plugins
$:/core/ui/ControlPanel/Plugins/Add/Plugins
$:/core/ui/ControlPanel/Plugins
$:/core/ui/ControlPanel/Saving/GitHub
{
"tiddlers": {
"$:/info/browser": {
"title": "$:/info/browser",
"text": "yes"
},
"$:/info/node": {
"title": "$:/info/node",
"text": "no"
},
"$:/info/url/full": {
"title": "$:/info/url/full",
"text": "https://lucasa.github.io/wiki/"
},
"$:/info/url/host": {
"title": "$:/info/url/host",
"text": "lucasa.github.io"
},
"$:/info/url/hostname": {
"title": "$:/info/url/hostname",
"text": "lucasa.github.io"
},
"$:/info/url/protocol": {
"title": "$:/info/url/protocol",
"text": "https:"
},
"$:/info/url/port": {
"title": "$:/info/url/port",
"text": ""
},
"$:/info/url/pathname": {
"title": "$:/info/url/pathname",
"text": "/wiki/"
},
"$:/info/url/search": {
"title": "$:/info/url/search",
"text": ""
},
"$:/info/url/origin": {
"title": "$:/info/url/origin",
"text": "https://lucasa.github.io"
},
"$:/info/browser/screen/width": {
"title": "$:/info/browser/screen/width",
"text": "1440"
},
"$:/info/browser/screen/height": {
"title": "$:/info/browser/screen/height",
"text": "900"
},
"$:/info/browser/language": {
"title": "$:/info/browser/language",
"text": "pt-BR"
}
}
}
$:/plugins/venomspinner/ghostwriter
{
"tiddlers": {
"$:/themes/tiddlywiki/punch/base": {
"title": "$:/themes/tiddlywiki/punch/base",
"tags": "[[$:/tags/Stylesheet]]",
"text": "\\rules only filteredtranscludeinline transcludeinline macrodef macrocallinline\n\n@media screen {\n\n@media (min-width: {{$:/themes/tiddlywiki/vanilla/metrics/sidebarbreakpoint}}) {\n\n\tbody.tc-body .tc-story-river {\n\t\tpadding: 0;\n\t}\n\n}\n\nbody.tc-body .tc-tiddler-frame {\n\tborder: 0;\n\tmargin-bottom: 0;\n\tmin-height: 1000px;\n}\n\nbody.tc-body .tc-tiddler-frame > a {\n\ttext-decoration: none;\n\tcolor: <<color foreground>>;\n}\n\nbody.tc-body .tc-tiddler-frame .tc-tiddler-body {\n\ttext-align: center;\n\tmax-width: 850px;\n\tmargin-left: auto;\n\tmargin-right: auto;\n\tmargin-top: -70px;\n}\n\nbody.tc-body .tc-tiddler-frame .tc-tiddler-body ul,\nbody.tc-body .tc-tiddler-frame .tc-tiddler-body ol,\nbody.tc-body .tc-tiddler-frame .tc-tiddler-body p {\n\tfont-size: 27px;\n\tline-height: 1.5;\n}\n\nbody.tc-body .tc-tiddler-frame .tc-tiddler-body ul,\nbody.tc-body .tc-tiddler-frame .tc-tiddler-body ol {\n\ttext-align: left;\n}\n\nbody.tc-body .tc-tiddler-frame .tc-tiddler-body pre, body.tc-body .tc-tiddler-frame .tc-tiddler-body code {\n\tfont-size: 18px;\n\ttext-align: left;\n\tbackground: #121;\n\tcolor: #fff;\n}\n\nbody.tc-body .tc-tiddler-controls button svg {\n\twidth: 20px;\n\theight: 20px;\n}\n\nbody.tc-body .tc-tiddler-view-frame .tc-titlebar, body.tc-body .tc-tiddler-view-frame .tc-topbar {\n\t<<transition \"opacity 200ms ease-in-out\">>\n\topacity: 0;\n}\n\nbody.tc-body .tc-tiddler-view-frame .tc-titlebar:hover, body.tc-body .tc-tiddler-view-frame .tc-topbar:hover {\n\topacity: 1;\n}\n\nbody.tc-body .tc-tiddler-view-frame .tc-titlebar {\n\tfont-size: 20px;\n}\n\nbody.tc-body .tc-tiddler-view-frame .tc-titlebar h2 {\n\tfont-size: 10px;\n}\n\nbody.tc-body .tc-tiddler-view-frame .tc-subtitle, body.tc-body .tc-tiddler-view-frame .tc-tags-wrapper {\n\tdisplay: none;\n}\n\nbody.tc-body h1 {\n\tfont-weight: 700;\n\tfont-size: 60px;\n}\n\nbody.tc-body h2, body.tc-body h3, body.tc-body h4 {\n\tfont-weight: 400;\n}\n\nbody.tc-body h2 {\n\tfont-size: 35px;\n}\n\nbody.tc-body h3 {\n\tfont-size: 24px;\n}\n\nbody.tc-body .tc-tiddler-frame .tc-tiddler-body .tc-diatribe {\n\tmax-height:85vh;\n\t-moz-columns:3;\n\t-webkit-columns:3;\n\tcolumns:3;\n\tfont-size: 10px;\n}\n\n\nbody.tc-body .tc-tiddler-frame .tc-tiddler-body .tc-diatribe p {\n\tmargin: 0 0 0.5em 0;\n}\n\nbody.tc-body .tc-tiddler-frame .tc-tiddler-body .tc-diatribe ul,\nbody.tc-body .tc-tiddler-frame .tc-tiddler-body .tc-diatribe ol,\nbody.tc-body .tc-tiddler-frame .tc-tiddler-body .tc-diatribe p {\n\tfont-size: 10px;\n\ttext-align: left;\n}\n\n} /* @media screen */\n\n"
}
}
}
{
"tiddlers": {
"$:/themes/tiddlywiki/seamless/base": {
"title": "$:/themes/tiddlywiki/seamless/base",
"tags": "[[$:/tags/Stylesheet]]",
"list-after": "$:/themes/tiddlywiki/vanilla/base",
"text": "\\rules only filteredtranscludeinline transcludeinline macrodef macrocallinline\n\n/*\nRules copied from Snow White\n*/\n\n.tc-page-controls button svg, .tc-tiddler-controls button svg, .tc-topbar button svg {\n\t<<transition \"fill 150ms ease-in-out\">>\n}\n\n.tc-tiddler-controls button.tc-selected svg {\n\t<<filter \"drop-shadow(0px -1px 2px rgba(0,0,0,0.25))\">>\n}\n\n.tc-drop-down {\n\tborder-radius: 4px;\n\t<<box-shadow \"2px 2px 10px rgba(0, 0, 0, 0.5)\">>\n}\n\n.tc-block-dropdown {\n\tborder-radius: 4px;\n\t<<box-shadow \"2px 2px 10px rgba(0, 0, 0, 0.5)\">>\n}\n\n.tc-modal-displayed {\n\t<<filter \"blur(4px)\">>\n}\n\n.tc-modal {\n\tborder-radius: 6px;\n\t<<box-shadow \"0 3px 7px rgba(0,0,0,0.3)\">>\n}\n\n.tc-modal-footer {\n\tborder-radius: 0 0 6px 6px;\n\t<<box-shadow \"inset 0 1px 0 #fff\">>;\n}\n\n.tc-alert {\n\tborder-radius: 6px;\n\t<<box-shadow \"0 3px 7px rgba(0,0,0,0.6)\">>\n}\n\n.tc-notification {\n\tborder-radius: 6px;\n\t<<box-shadow \"0 3px 7px rgba(0,0,0,0.3)\">>\n\ttext-shadow: 0 1px 0 rgba(255,255,255, 0.8);\n}\n\n.tc-message-box img {\n\t<<box-shadow \"1px 1px 3px rgba(0,0,0,0.5)\">>\n}\n\n/*\nSeamless modifications\n*/\n\n@media (min-width: {{$:/themes/tiddlywiki/vanilla/metrics/sidebarbreakpoint}}) {\n\n\t/* Drop the tiddler frame padding */\n\tbody.tc-body .tc-tiddler-frame {\n\t\tpadding: 0;\n\t}\n\n\t/* Move the sidebar up so that the title lines up */\n\tbody.tc-body .tc-sidebar-scrollable {\n\t\tpadding: 43px 0 28px 42px;\n\t}\n\n\t/* Stop the tiddler info panel from bleeding into the tiddler frame padding */\n\tbody.tc-body .tc-tiddler-info {\n\t\tmargin: 0;\n\t}\n\n\t/* Stop message boxes from bleeding into the tiddler frame padding */\n\tbody.tc-body .tc-message-box {\n\t\tmargin: 21px 0 21px 0;\n\t}\n\n}\n\n/* Use the tiddler background colour for the page background */\nhtml body.tc-body {\n\tbackground-color: <<colour background>>;\n}\n\nhtml:-webkit-full-screen {\n\tbackground-color: <<colour background>>;\n}\n\n/* Adjust the colour of the page controls */\nbody.tc-body .tc-page-controls svg {\n\tfill: <<colour muted-foreground>>;\n}\n\n/* Adjust the colour of the sidebar selected tabs */\nbody.tc-body .tc-sidebar-lists .tc-tab-buttons button.tc-tab-selected {\n\tbackground-color: <<colour background>>;\n}\n"
}
}
}
{
"tiddlers": {
"$:/themes/tiddlywiki/snowwhite/base": {
"title": "$:/themes/tiddlywiki/snowwhite/base",
"tags": "[[$:/tags/Stylesheet]]",
"text": "\\rules only filteredtranscludeinline transcludeinline macrodef macrocallinline\n\n.tc-sidebar-header {\n\ttext-shadow: 0 1px 0 <<colour sidebar-foreground-shadow>>;\n}\n\n.tc-tiddler-info {\n\t<<box-shadow \"inset 1px 2px 3px rgba(0,0,0,0.1)\">>\n}\n\n@media screen {\n\t.tc-tiddler-frame {\n\t\t<<box-shadow \"1px 1px 5px rgba(0, 0, 0, 0.3)\">>\n\t}\n}\n\n@media (max-width: {{$:/themes/tiddlywiki/vanilla/metrics/sidebarbreakpoint}}) {\n\t.tc-tiddler-frame {\n\t\t<<box-shadow none>>\n\t}\n}\n\n.tc-page-controls button svg, .tc-tiddler-controls button svg, .tc-topbar button svg {\n\t<<transition \"fill 150ms ease-in-out\">>\n}\n\n.tc-tiddler-controls button.tc-selected,\n.tc-page-controls button.tc-selected {\n\t<<filter \"drop-shadow(0px -1px 2px rgba(0,0,0,0.25))\">>\n}\n\n.tc-tiddler-frame input.tc-edit-texteditor {\n\t<<box-shadow \"inset 0 1px 8px rgba(0, 0, 0, 0.15)\">>\n}\n\n.tc-edit-tags {\n\t<<box-shadow \"inset 0 1px 8px rgba(0, 0, 0, 0.15)\">>\n}\n\n.tc-tiddler-frame .tc-edit-tags input.tc-edit-texteditor {\n\t<<box-shadow \"none\">>\n\tborder: none;\n\toutline: none;\n}\n\ntextarea.tc-edit-texteditor {\n\tfont-family: {{$:/themes/tiddlywiki/vanilla/settings/editorfontfamily}};\n}\n\ncanvas.tc-edit-bitmapeditor {\n\t<<box-shadow \"2px 2px 5px rgba(0, 0, 0, 0.5)\">>\n}\n\n.tc-drop-down {\n\tborder-radius: 4px;\n\t<<box-shadow \"2px 2px 10px rgba(0, 0, 0, 0.5)\">>\n}\n\n.tc-block-dropdown {\n\tborder-radius: 4px;\n\t<<box-shadow \"2px 2px 10px rgba(0, 0, 0, 0.5)\">>\n}\n\n.tc-modal {\n\tborder-radius: 6px;\n\t<<box-shadow \"0 3px 7px rgba(0,0,0,0.3)\">>\n}\n\n.tc-modal-footer {\n\tborder-radius: 0 0 6px 6px;\n\t<<box-shadow \"inset 0 1px 0 #fff\">>;\n}\n\n\n.tc-alert {\n\tborder-radius: 6px;\n\t<<box-shadow \"0 3px 7px rgba(0,0,0,0.6)\">>\n}\n\n.tc-notification {\n\tborder-radius: 6px;\n\t<<box-shadow \"0 3px 7px rgba(0,0,0,0.3)\">>\n\ttext-shadow: 0 1px 0 rgba(255,255,255, 0.8);\n}\n\n.tc-sidebar-lists .tc-tab-set .tc-tab-divider {\n\tborder-top: none;\n\theight: 1px;\n\t<<background-linear-gradient \"left, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.0) 100%\">>\n}\n\n.tc-more-sidebar > .tc-tab-set > .tc-tab-buttons > button {\n\t<<background-linear-gradient \"left, rgba(0,0,0,0.01) 0%, rgba(0,0,0,0.1) 100%\">>\n}\n\n.tc-more-sidebar > .tc-tab-set > .tc-tab-buttons > button.tc-tab-selected {\n\t<<background-linear-gradient \"left, rgba(0,0,0,0.05) 0%, rgba(255,255,255,0.05) 100%\">>\n}\n\n.tc-message-box img {\n\t<<box-shadow \"1px 1px 3px rgba(0,0,0,0.5)\">>\n}\n\n.tc-plugin-info {\n\t<<box-shadow \"1px 1px 3px rgba(0,0,0,0.5)\">>\n}\n"
}
}
}
{
"tiddlers": {
"$:/themes/tiddlywiki/starlight/arvo.woff": {
"title": "$:/themes/tiddlywiki/starlight/arvo.woff",
"text": "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",
"type": "application/font-woff"
},
"$:/themes/tiddlywiki/starlight/ltbg.jpg": {
"title": "$:/themes/tiddlywiki/starlight/ltbg.jpg",
"text": "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PSIxLjAiIGVuY29kaW5nPSJVVEYtOCI/Pgo8IURPQ1RZUEUgcGxpc3QgUFVCTElDICItLy9BcHBsZS8vRFREIFBMSVNUIDEuMC8vRU4iICJodHRwOi8vd3d3LmFwcGxlLmNvbS9EVERzL1Byb3BlcnR5TGlzdC0xLjAuZHRkIj4KPHBsaXN0IHZlcnNpb249IjEuMCI+CjxkaWN0PgoJPGtleT5jb20uYXBwbGUucHJpbnQuUGFnZUZvcm1hdC5QTUhvcml6b250YWxSZXM8L2tleT4KCTxkaWN0PgoJCTxrZXk+Y29tLmFwcGxlLnByaW50LnRpY2tldC5jcmVhdG9yPC9rZXk+CgkJPHN0cmluZz5jb20uYXBwbGUuam9idGlja2V0PC9zdHJpbmc+CgkJPGtleT5jb20uYXBwbGUucHJpbnQudGlja2V0Lml0ZW1BcnJheTwva2V5PgoJCTxhcnJheT4KCQkJPGRpY3Q+CgkJCQk8a2V5PmNvbS5hcHBsZS5wcmludC5QYWdlRm9ybWF0LlBNSG9yaXpvbnRhbFJlczwva2V5PgoJCQkJPHJlYWw+NzI8L3JlYWw+CgkJCQk8a2V5PmNvbS5hcHBsZS5wcmludC50aWNrZXQuc3RhdGVGbGFnPC9rZXk+CgkJCQk8aW50ZWdlcj4wPC9pbnRlZ2VyPgoJCQk8L2RpY3Q+CgkJPC9hcnJheT4KCTwvZGljdD4KCTxrZXk+Y29tLmFwcGxlLnByaW50LlBhZ2VGb3JtYXQuUE1PcmllbnRhdGlvbjwva2V5PgoJPGRpY3Q+CgkJPGtleT5jb20uYXBwbGUucHJpbnQudGlja2V0LmNyZWF0b3I8L2tleT4KCQk8c3RyaW5nPmNvbS5hcHBsZS5qb2J0aWNrZXQ8L3N0cmluZz4KCQk8a2V5PmNvbS5hcHBsZS5wcmludC50aWNrZXQuaXRlbUFycmF5PC9rZXk+CgkJPGFycmF5PgoJCQk8ZGljdD4KCQkJCTxrZXk+Y29tLmFwcGxlLnByaW50LlBhZ2VGb3JtYXQuUE1PcmllbnRhdGlvbjwva2V5PgoJCQkJPGludGVnZXI+MTwvaW50ZWdlcj4KCQkJCTxrZXk+Y29tLmFwcGxlLnByaW50LnRpY2tldC5zdGF0ZUZsYWc8L2tleT4KCQkJCTxpbnRlZ2VyPjA8L2ludGVnZXI+CgkJCTwvZGljdD4KCQk8L2FycmF5PgoJPC9kaWN0PgoJPGtleT5jb20uYXBwbGUucHJpbnQuUGFnZUZvcm1hdC5QTVNjYWxpbmc8L2tleT4KCTxkaWN0PgoJCTxrZXk+Y29tLmFwcGxlLnByaW50LnRpY2tldC5jcmVhdG9yPC9rZXk+CgkJPHN0cmluZz5jb20uYXBwbGUuam9idGlja2V0PC9zdHJpbmc+CgkJPGtleT5jb20uYXBwbGUucHJpbnQudGlja2V0Lml0ZW1BcnJheTwva2V5PgoJCTxhcnJheT4KCQkJPGRpY3Q+CgkJCQk8a2V5PmNvbS5hcHBsZS5wcmludC5QYWdlRm9ybWF0LlBNU2NhbGluZzwva2V5PgoJCQkJPHJlYWw+MTwvcmVhbD4KCQkJCTxrZXk+Y29tLmFwcGxlLnByaW50LnRpY2tldC5zdGF0ZUZsYWc8L2tleT4KCQkJCTxpbnRlZ2VyPjA8L2ludGVnZXI+CgkJCTwvZGljdD4KCQk8L2FycmF5PgoJPC9kaWN0PgoJPGtleT5jb20uYXBwbGUucHJpbnQuUGFnZUZvcm1hdC5QTVZlcnRpY2FsUmVzPC9rZXk+Cgk8ZGljdD4KCQk8a2V5PmNvbS5hcHBsZS5wcmludC50aWNrZXQuY3JlYXRvcjwva2V5PgoJCTxzdHJpbmc+Y29tLmFwcGxlLmpvYnRpY2tldDwvc3RyaW5nPgoJCTxrZXk+Y29tLmFwcGxlLnByaW50LnRpY2tldC5pdGVtQXJyYXk8L2tleT4KCQk8YXJyYXk+CgkJCTxkaWN0PgoJCQkJPGtleT5jb20uYXBwbGUucHJpbnQuUGFnZUZvcm1hdC5QTVZlcnRpY2FsUmVzPC9rZXk+CgkJCQk8cmVhbD43MjwvcmVhbD4KCQkJCTxrZXk+Y29tLmFwcGxlLnByaW50LnRpY2tldC5zdGF0ZUZsYWc8L2tleT4KCQkJCTxpbnRlZ2VyPjA8L2ludGVnZXI+CgkJCTwvZGljdD4KCQk8L2FycmF5PgoJPC9kaWN0PgoJPGtleT5jb20uYXBwbGUucHJpbnQuUGFnZUZvcm1hdC5QTVZlcnRpY2FsU2NhbGluZzwva2V5PgoJPGRpY3Q+CgkJPGtleT5jb20uYXBwbGUucHJpbnQudGlja2V0LmNyZWF0b3I8L2tleT4KCQk8c3RyaW5nPmNvbS5hcHBsZS5qb2J0aWNrZXQ8L3N0cmluZz4KCQk8a2V5PmNvbS5hcHBsZS5wcmludC50aWNrZXQuaXRlbUFycmF5PC9rZXk+CgkJPGFycmF5PgoJCQk8ZGljdD4KCQkJCTxrZXk+Y29tLmFwcGxlLnByaW50LlBhZ2VGb3JtYXQuUE1WZXJ0aWNhbFNjYWxpbmc8L2tleT4KCQkJCTxyZWFsPjE8L3JlYWw+CgkJCQk8a2V5PmNvbS5hcHBsZS5wcmludC50aWNrZXQuc3RhdGVGbGFnPC9rZXk+CgkJCQk8aW50ZWdlcj4wPC9pbnRlZ2VyPgoJCQk8L2RpY3Q+CgkJPC9hcnJheT4KCTwvZGljdD4KCTxrZXk+Y29tLmFwcGxlLnByaW50LnN1YlRpY2tldC5wYXBlcl9pbmZvX3RpY2tldDwva2V5PgoJPGRpY3Q+CgkJPGtleT5QTVBQRFBhcGVyQ29kZU5hbWU8L2tleT4KCQk8ZGljdD4KCQkJPGtleT5jb20uYXBwbGUucHJpbnQudGlja2V0LmNyZWF0b3I8L2tleT4KCQkJPHN0cmluZz5jb20uYXBwbGUuam9idGlja2V0PC9zdHJpbmc+CgkJCTxrZXk+Y29tLmFwcGxlLnByaW50LnRpY2tldC5pdGVtQXJyYXk8L2tleT4KCQkJPGFycmF5PgoJCQkJPGRpY3Q+CgkJCQkJPGtleT5QTVBQRFBhcGVyQ29kZU5hbWU8L2tleT4KCQkJCQk8c3RyaW5nPkxldHRlcjwvc3RyaW5nPgoJCQkJCTxrZXk+Y29tLmFwcGxlLnByaW50LnRpY2tldC5zdGF0ZUZsYWc8L2tleT4KCQkJCQk8aW50ZWdlcj4wPC9pbnRlZ2VyPgoJCQkJPC9kaWN0PgoJCQk8L2FycmF5PgoJCTwvZGljdD4KCQk8a2V5PlBNVGlvZ2FQYXBlck5hbWU8L2tleT4KCQk8ZGljdD4KCQkJPGtleT5jb20uYXBwbGUucHJpbnQudGlja2V0LmNyZWF0b3I8L2tleT4KCQkJPHN0cmluZz5jb20uYXBwbGUuam9idGlja2V0PC9zdHJpbmc+CgkJCTxrZXk+Y29tLmFwcGxlLnByaW50LnRpY2tldC5pdGVtQXJyYXk8L2tleT4KCQkJPGFycmF5PgoJCQkJPGRpY3Q+CgkJCQkJPGtleT5QTVRpb2dhUGFwZXJOYW1lPC9rZXk+CgkJCQkJPHN0cmluZz5uYS1sZXR0ZXI8L3N0cmluZz4KCQkJCQk8a2V5PmNvbS5hcHBsZS5wcmludC50aWNrZXQuc3RhdGVGbGFnPC9rZXk+CgkJCQkJPGludGVnZXI+MDwvaW50ZWdlcj4KCQkJCTwvZGljdD4KCQkJPC9hcnJheT4KCQk8L2RpY3Q+CgkJPGtleT5jb20uYXBwbGUucHJpbnQuUGFnZUZvcm1hdC5QTUFkanVzdGVkUGFnZVJlY3Q8L2tleT4KCQk8ZGljdD4KCQkJPGtleT5jb20uYXBwbGUucHJpbnQudGlja2V0LmNyZWF0b3I8L2tleT4KCQkJPHN0cmluZz5jb20uYXBwbGUuam9idGlja2V0PC9zdHJpbmc+CgkJCTxrZXk+Y29tLmFwcGxlLnByaW50LnRpY2tldC5pdGVtQXJyYXk8L2tleT4KCQkJPGFycmF5PgoJCQkJPGRpY3Q+CgkJCQkJPGtleT5jb20uYXBwbGUucHJpbnQuUGFnZUZvcm1hdC5QTUFkanVzdGVkUGFnZVJlY3Q8L2tleT4KCQkJCQk8YXJyYXk+CgkJCQkJCTxyZWFsPjAuMDwvcmVhbD4KCQkJCQkJPHJlYWw+MC4wPC9yZWFsPgoJCQkJCQk8cmVhbD43MzQ8L3JlYWw+CgkJCQkJCTxyZWFsPjU3NjwvcmVhbD4KCQkJCQk8L2FycmF5PgoJCQkJCTxrZXk+Y29tLmFwcGxlLnByaW50LnRpY2tldC5zdGF0ZUZsYWc8L2tleT4KCQkJCQk8aW50ZWdlcj4wPC9pbnRlZ2VyPgoJCQkJPC9kaWN0PgoJCQk8L2FycmF5PgoJCTwvZGljdD4KCQk8a2V5PmNvbS5hcHBsZS5wcmludC5QYWdlRm9ybWF0LlBNQWRqdXN0ZWRQYXBlclJlY3Q8L2tleT4KCQk8ZGljdD4KCQkJPGtleT5jb20uYXBwbGUucHJpbnQudGlja2V0LmNyZWF0b3I8L2tleT4KCQkJPHN0cmluZz5jb20uYXBwbGUuam9idGlja2V0PC9zdHJpbmc+CgkJCTxrZXk+Y29tLmFwcGxlLnByaW50LnRpY2tldC5pdGVtQXJyYXk8L2tleT4KCQkJPGFycmF5PgoJCQkJPGRpY3Q+CgkJCQkJPGtleT5jb20uYXBwbGUucHJpbnQuUGFnZUZvcm1hdC5QTUFkanVzdGVkUGFwZXJSZWN0PC9rZXk+CgkJCQkJPGFycmF5PgoJCQkJCQk8cmVhbD4tMTg8L3JlYWw+CgkJCQkJCTxyZWFsPi0xODwvcmVhbD4KCQkJCQkJPHJlYWw+Nzc0PC9yZWFsPgoJCQkJCQk8cmVhbD41OTQ8L3JlYWw+CgkJCQkJPC9hcnJheT4KCQkJCQk8a2V5PmNvbS5hcHBsZS5wcmludC50aWNrZXQuc3RhdGVGbGFnPC9rZXk+CgkJCQkJPGludGVnZXI+MDwvaW50ZWdlcj4KCQkJCTwvZGljdD4KCQkJPC9hcnJheT4KCQk8L2RpY3Q+CgkJPGtleT5jb20uYXBwbGUucHJpbnQuUGFwZXJJbmZvLlBNUGFwZXJOYW1lPC9rZXk+CgkJPGRpY3Q+CgkJCTxrZXk+Y29tLmFwcGxlLnByaW50LnRpY2tldC5jcmVhdG9yPC9rZXk+CgkJCTxzdHJpbmc+Y29tLmFwcGxlLmpvYnRpY2tldDwvc3RyaW5nPgoJCQk8a2V5PmNvbS5hcHBsZS5wcmludC50aWNrZXQuaXRlbUFycmF5PC9rZXk+CgkJCTxhcnJheT4KCQkJCTxkaWN0PgoJCQkJCTxrZXk+Y29tLmFwcGxlLnByaW50LlBhcGVySW5mby5QTVBhcGVyTmFtZTwva2V5PgoJCQkJCTxzdHJpbmc+bmEtbGV0dGVyPC9zdHJpbmc+CgkJCQkJPGtleT5jb20uYXBwbGUucHJpbnQudGlja2V0LnN0YXRlRmxhZzwva2V5PgoJCQkJCTxpbnRlZ2VyPjA8L2ludGVnZXI+CgkJCQk8L2RpY3Q+CgkJCTwvYXJyYXk+CgkJPC9kaWN0PgoJCTxrZXk+Y29tLmFwcGxlLnByaW50LlBhcGVySW5mby5QTVVuYWRqdXN0ZWRQYWdlUmVjdDwva2V5PgoJCTxkaWN0PgoJCQk8a2V5PmNvbS5hcHBsZS5wcmludC50aWNrZXQuY3JlYXRvcjwva2V5PgoJCQk8c3RyaW5nPmNvbS5hcHBsZS5qb2J0aWNrZXQ8L3N0cmluZz4KCQkJPGtleT5jb20uYXBwbGUucHJpbnQudGlja2V0Lml0ZW1BcnJheTwva2V5PgoJCQk8YXJyYXk+CgkJCQk8ZGljdD4KCQkJCQk8a2V5PmNvbS5hcHBsZS5wcmludC5QYXBlckluZm8uUE1VbmFkanVzdGVkUGFnZVJlY3Q8L2tleT4KCQkJCQk8YXJyYXk+CgkJCQkJCTxyZWFsPjAuMDwvcmVhbD4KCQkJCQkJPHJlYWw+MC4wPC9yZWFsPgoJCQkJCQk8cmVhbD43MzQ8L3JlYWw+CgkJCQkJCTxyZWFsPjU3NjwvcmVhbD4KCQkJCQk8L2FycmF5PgoJCQkJCTxrZXk+Y29tLmFwcGxlLnByaW50LnRpY2tldC5zdGF0ZUZsYWc8L2tleT4KCQkJCQk8aW50ZWdlcj4wPC9pbnRlZ2VyPgoJCQkJPC9kaWN0PgoJCQk8L2FycmF5PgoJCTwvZGljdD4KCQk8a2V5PmNvbS5hcHBsZS5wcmludC5QYXBlckluZm8uUE1VbmFkanVzdGVkUGFwZXJSZWN0PC9rZXk+CgkJPGRpY3Q+CgkJCTxrZXk+Y29tLmFwcGxlLnByaW50LnRpY2tldC5jcmVhdG9yPC9rZXk+CgkJCTxzdHJpbmc+Y29tLmFwcGxlLmpvYnRpY2tldDwvc3RyaW5nPgoJCQk8a2V5PmNvbS5hcHBsZS5wcmludC50aWNrZXQuaXRlbUFycmF5PC9rZXk+CgkJCTxhcnJheT4KCQkJCTxkaWN0PgoJCQkJCTxrZXk+Y29tLmFwcGxlLnByaW50LlBhcGVySW5mby5QTVVuYWRqdXN0ZWRQYXBlclJlY3Q8L2tleT4KCQkJCQk8YXJyYXk+CgkJCQkJCTxyZWFsPi0xODwvcmVhbD4KCQkJCQkJPHJlYWw+LTE4PC9yZWFsPgoJCQkJCQk8cmVhbD43NzQ8L3JlYWw+CgkJCQkJCTxyZWFsPjU5NDwvcmVhbD4KCQkJCQk8L2FycmF5PgoJCQkJCTxrZXk+Y29tLmFwcGxlLnByaW50LnRpY2tldC5zdGF0ZUZsYWc8L2tleT4KCQkJCQk8aW50ZWdlcj4wPC9pbnRlZ2VyPgoJCQkJPC9kaWN0PgoJCQk8L2FycmF5PgoJCTwvZGljdD4KCQk8a2V5PmNvbS5hcHBsZS5wcmludC5QYXBlckluZm8ucHBkLlBNUGFwZXJOYW1lPC9rZXk+CgkJPGRpY3Q+CgkJCTxrZXk+Y29tLmFwcGxlLnByaW50LnRpY2tldC5jcmVhdG9yPC9rZXk+CgkJCTxzdHJpbmc+Y29tLmFwcGxlLmpvYnRpY2tldDwvc3RyaW5nPgoJCQk8a2V5PmNvbS5hcHBsZS5wcmludC50aWNrZXQuaXRlbUFycmF5PC9rZXk+CgkJCTxhcnJheT4KCQkJCTxkaWN0PgoJCQkJCTxrZXk+Y29tLmFwcGxlLnByaW50LlBhcGVySW5mby5wcGQuUE1QYXBlck5hbWU8L2tleT4KCQkJCQk8c3RyaW5nPlVTIExldHRlcjwvc3RyaW5nPgoJCQkJCTxrZXk+Y29tLmFwcGxlLnByaW50LnRpY2tldC5zdGF0ZUZsYWc8L2tleT4KCQkJCQk8aW50ZWdlcj4wPC9pbnRlZ2VyPgoJCQkJPC9kaWN0PgoJCQk8L2FycmF5PgoJCTwvZGljdD4KCQk8a2V5PmNvbS5hcHBsZS5wcmludC50aWNrZXQuQVBJVmVyc2lvbjwva2V5PgoJCTxzdHJpbmc+MDAuMjA8L3N0cmluZz4KCQk8a2V5PmNvbS5hcHBsZS5wcmludC50aWNrZXQudHlwZTwva2V5PgoJCTxzdHJpbmc+Y29tLmFwcGxlLnByaW50LlBhcGVySW5mb1RpY2tldDwvc3RyaW5nPgoJPC9kaWN0PgoJPGtleT5jb20uYXBwbGUucHJpbnQudGlja2V0LkFQSVZlcnNpb248L2tleT4KCTxzdHJpbmc+MDAuMjA8L3N0cmluZz4KCTxrZXk+Y29tLmFwcGxlLnByaW50LnRpY2tldC50eXBlPC9rZXk+Cgk8c3RyaW5nPmNvbS5hcHBsZS5wcmludC5QYWdlRm9ybWF0VGlja2V0PC9zdHJpbmc+CjwvZGljdD4KPC9wbGlzdD4KOEJJTQPtAAAAAAAQAEgCTgABAAEASAJOAAEAAThCSU0EJgAAAAAADgAAAAAAAAAAAAA/gAAAOEJJTQQNAAAAAAAEAAAAHjhCSU0EGQAAAAAABAAAAB44QklNA/MAAAAAAAkAAAAAAAAAAAEAOEJJTQQKAAAAAAABAAA4QklNJxAAAAAAAAoAAQAAAAAAAAABOEJJTQP1AAAAAABIAC9mZgABAGxmZgAGAAAAAAABAC9mZgABAKGZmgAGAAAAAAABADIAAAABAFoAAAAGAAAAAAABADUAAAABAC0AAAAGAAAAAAABOEJJTQP4AAAAAABwAAD/////////////////////////////A+gAAAAA/////////////////////////////wPoAAAAAP////////////////////////////8D6AAAAAD/////////////////////////////A+gAADhCSU0ECAAAAAAAEAAAAAEAAAJAAAACQAAAAAA4QklNBB4AAAAAAAQAAAAAOEJJTQQaAAAAAANHAAAABgAAAAAAAAAAAAABVAAAAVQAAAAJAFAAaQBjAHQAdQByAGUAIAAyAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAFUAAABVAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAABAAAAABAAAAAAAAbnVsbAAAAAIAAAAGYm91bmRzT2JqYwAAAAEAAAAAAABSY3QxAAAABAAAAABUb3AgbG9uZwAAAAAAAAAATGVmdGxvbmcAAAAAAAAAAEJ0b21sb25nAAABVAAAAABSZ2h0bG9uZwAAAVQAAAAGc2xpY2VzVmxMcwAAAAFPYmpjAAAAAQAAAAAABXNsaWNlAAAAEgAAAAdzbGljZUlEbG9uZwAAAAAAAAAHZ3JvdXBJRGxvbmcAAAAAAAAABm9yaWdpbmVudW0AAAAMRVNsaWNlT3JpZ2luAAAADWF1dG9HZW5lcmF0ZWQAAAAAVHlwZWVudW0AAAAKRVNsaWNlVHlwZQAAAABJbWcgAAAABmJvdW5kc09iamMAAAABAAAAAAAAUmN0MQAAAAQAAAAAVG9wIGxvbmcAAAAAAAAAAExlZnRsb25nAAAAAAAAAABCdG9tbG9uZwAAAVQAAAAAUmdodGxvbmcAAAFUAAAAA3VybFRFWFQAAAABAAAAAAAAbnVsbFRFWFQAAAABAAAAAAAATXNnZVRFWFQAAAABAAAAAAAGYWx0VGFnVEVYVAAAAAEAAAAAAA5jZWxsVGV4dElzSFRNTGJvb2wBAAAACGNlbGxUZXh0VEVYVAAAAAEAAAAAAAlob3J6QWxpZ25lbnVtAAAAD0VTbGljZUhvcnpBbGlnbgAA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Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8APD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNC4xLWMwMzYgNDYuMjc2NzIwLCBNb24gRmViIDE5IDIwMDcgMjI6MTM6NDMgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhhcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIiB4bWxuczpwaG90b3Nob3A9Imh0dHA6Ly9ucy5hZG9iZS5jb20vcGhvdG9zaG9wLzEuMC8iIHhtbG5zOnhhcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczp0aWZmPSJodHRwOi8vbnMuYWRvYmUuY29tL3RpZmYvMS4wLyIgeG1sbnM6ZXhpZj0iaHR0cDovL25zLmFkb2JlLmNvbS9leGlmLzEuMC8iIHhhcDpDcmVhdGVEYXRlPSIyMDEwLTA4LTMwVDIzOjQ5OjE0LTA1OjAwIiB4YXA6TW9kaWZ5RGF0ZT0iMjAxMC0wOC0zMFQyMzo0OToxNC0wNTowMCIgeGFwOk1ldGFkYXRhRGF0ZT0iMjAxMC0wOC0zMFQyMzo0OToxNC0wNTowMCIgeGFwOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1MzIE1hY2ludG9zaCIgZGM6Zm9ybWF0PSJpbWFnZS9qcGVnIiBwaG90b3Nob3A6Q29sb3JNb2RlPSIzIiBwaG90b3Nob3A6SUNDUHJvZmlsZT0iaU1hYyIgcGhvdG9zaG9wOkhpc3Rvcnk9IiIgeGFwTU06SW5zdGFuY2VJRD0idXVpZDpFQjAwQjU5NDA4QjVERjExODdBNTlCQzExMkI0QjA2RSIgeGFwTU06RG9jdW1lbnRJRD0idXVpZDpFQTAwQjU5NDA4QjVERjExODdBNTlCQzExMkI0QjA2RSIgdGlmZjpPcmllbnRhdGlvbj0iMSIgdGlmZjpYUmVzb2x1dGlvbj0iNzIwMDkwLzEwMDAwIiB0aWZmOllSZXNvbHV0aW9uPSI3MjAwOTAvMTAwMDAiIHRpZmY6UmVzb2x1dGlvblVuaXQ9IjIiIHRpZmY6TmF0aXZlRGlnZXN0PSIyNTYsMjU3LDI1OCwyNTksMjYyLDI3NCwyNzcsMjg0LDUzMCw1MzEsMjgyLDI4MywyOTYsMzAxLDMxOCwzMTksNTI5LDUzMiwzMDYsMjcwLDI3MSwyNzIsMzA1LDMxNSwzMzQzMjs3RUY4RDFBOTcwMjlCOUNFOTAwNkUzRDcxRjgwNDdFNSIgZXhpZjpQaXhlbFhEaW1lbnNpb249IjM0MCIgZXhpZjpQaXhlbFlEaW1lbnNpb249IjM0MCIgZXhpZjpDb2xvclNwYWNlPSItMSIgZXhpZjpOYXRpdmVEaWdlc3Q9IjM2ODY0LDQwOTYwLDQwOTYxLDM3MTIxLDM3MTIyLDQwOTYyLDQwOTYzLDM3NTEwLDQwOTY0LDM2ODY3LDM2ODY4LDMzNDM0LDMzNDM3LDM0ODUwLDM0ODUyLDM0ODU1LDM0ODU2LDM3Mzc3LDM3Mzc4LDM3Mzc5LDM3MzgwLDM3MzgxLDM3MzgyLDM3MzgzLDM3Mzg0LDM3Mzg1LDM3Mzg2LDM3Mzk2LDQxNDgzLDQxNDg0LDQxNDg2LDQxNDg3LDQxNDg4LDQxNDkyLDQxNDkzLDQxNDk1LDQxNzI4LDQxNzI5LDQxNzMwLDQxOTg1LDQxOTg2LDQxOTg3LDQxOTg4LDQxOTg5LDQxOTkwLDQxOTkxLDQxOTkyLDQxOTkzLDQxOTk0LDQxOTk1LDQxOTk2LDQyMDE2LDAsMiw0LDUsNiw3LDgsOSwxMCwxMSwxMiwxMywxNCwxNSwxNiwxNywxOCwyMCwyMiwyMywyNCwyNSwyNiwyNywyOCwzMDtGRTM2RkQ0MzU0NEI0ODUyODY3OEVERkZGOTk0MkMwRiI+IDx4YXBNTTpEZXJpdmVkRnJvbSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8P3hwYWNrZXQgZW5kPSJ3Ij8+/+IPJElDQ19QUk9GSUxFAAEBAAAPFGFwcGwCAAAAbW50clJHQiBYWVogB9oAAQAEAA8AMwADYWNzcEFQUEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPbWAAEAAAAA0y1hcHBsWM2pk1LRLUWykThyCK1QdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOclhZWgAAASwAAAAUZ1hZWgAAAUAAAAAUYlhZWgAAAVQAAAAUd3RwdAAAAWgAAAAUY2hhZAAAAXwAAAAsclRSQwAAAagAAAAOZ1RSQwAAAbgAAAAOYlRSQwAAAcgAAAAOdmNndAAAAdgAAAYSbmRpbgAAB+wAAAY+ZGVzYwAADiwAAABfZHNjbQAADowAAAA8bW1vZAAADsgAAAAoY3BydAAADvAAAAAkWFlaIAAAAAAAAHeaAABAmQAAAxlYWVogAAAAAAAAWO0AAKuMAAAXrVhZWiAAAAAAAAAmTgAAE/UAALheWFlaIAAAAAAAAPNSAAEAAAABFs9zZjMyAAAAAAABDEIAAAXe///zJgAAB5IAAP2R///7ov///aMAAAPcAADAbGN1cnYAAAAAAAAAAQHNAABjdXJ2AAAAAAAAAAEBzQAAY3VydgAAAAAAAAABAc0AAHZjZ3QAAAAAAAAAAAADAQAAAgAAAUUCyAQ5BZsHIQi8ClsL+w2ZDzsQ6hKXFEYWAhe5GVYa4xxxHfkfdSDyImcj0iU1JpAn5ikyKnkrvi0BLkEvgTC9MfkzNTRrNaE21DgHOTg6ZjuTPLw95D8MQDNBV0J5Q5pEuEXWRvJIDEklSjpL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",
"type": "image/jpeg"
},
"$:/themes/tiddlywiki/starlight/styles.tid": {
"title": "$:/themes/tiddlywiki/starlight/styles.tid",
"tags": "[[$:/tags/Stylesheet]]",
"text": "\\rules only filteredtranscludeinline transcludeinline macrodef macrocallinline\n\n/*\nPlaceholder for a more thorough refinement of Snow White\n*/\n\n@font-face {\n font-family: \"Arvo\";\n font-style: normal;\n font-weight: 400;\n src: local(\"Arvo\"), url(<<datauri \"$:/themes/tiddlywiki/starlight/arvo.woff\">>) format(\"woff\");\n}\n\nhtml body, .tc-sidebar-scrollable-backdrop {\n\tfont-family: \"Arvo\", \"Times\";\n background: url(<<datauri \"$:/themes/tiddlywiki/starlight/ltbg.jpg\">>);\n}\n\n.tc-page-controls svg {\n <<filter \"drop-shadow(1px 1px 2px rgba(255,255,255,0.9))\">>\n}\n"
},
"$:/themes/tiddlywiki/starlight/themetweaks": {
"title": "$:/themes/tiddlywiki/starlight/themetweaks",
"tags": "$:/tags/ControlPanel/Appearance",
"caption": "Star Tweaks",
"text": "Demo of a control panel tab dynamically loaded with a theme.\n"
}
}
}
{
"tiddlers": {
"$:/themes/tiddlywiki/vanilla/themetweaks": {
"title": "$:/themes/tiddlywiki/vanilla/themetweaks",
"tags": "$:/tags/ControlPanel/Appearance",
"caption": "{{$:/language/ThemeTweaks/ThemeTweaks}}",
"text": "\\define lingo-base() $:/language/ThemeTweaks/\n\n\\define replacement-text()\n[img[$(imageTitle)$]]\n\\end\n\n\\define backgroundimage-dropdown()\n<div class=\"tc-drop-down-wrapper\">\n<$button popup=<<qualify \"$:/state/popup/themetweaks/backgroundimage\">> class=\"tc-btn-invisible tc-btn-dropdown\">{{$:/core/images/down-arrow}}</$button>\n<$reveal state=<<qualify \"$:/state/popup/themetweaks/backgroundimage\">> type=\"popup\" position=\"belowleft\" text=\"\" default=\"\">\n<div class=\"tc-drop-down\">\n<$macrocall $name=\"image-picker\" actions=\"\"\"\n\n<$action-setfield\n\t$tiddler=\"$:/themes/tiddlywiki/vanilla/settings/backgroundimage\"\n\t$value=<<imageTitle>>\n/>\n\n\"\"\"/>\n</div>\n</$reveal>\n</div>\n\\end\n\n\\define backgroundimageattachment-dropdown()\n<$select tiddler=\"$:/themes/tiddlywiki/vanilla/settings/backgroundimageattachment\" default=\"scroll\">\n<option value=\"scroll\"><<lingo Settings/BackgroundImageAttachment/Scroll>></option>\n<option value=\"fixed\"><<lingo Settings/BackgroundImageAttachment/Fixed>></option>\n</$select>\n\\end\n\n\\define backgroundimagesize-dropdown()\n<$select tiddler=\"$:/themes/tiddlywiki/vanilla/settings/backgroundimagesize\" default=\"scroll\">\n<option value=\"auto\"><<lingo Settings/BackgroundImageSize/Auto>></option>\n<option value=\"cover\"><<lingo Settings/BackgroundImageSize/Cover>></option>\n<option value=\"contain\"><<lingo Settings/BackgroundImageSize/Contain>></option>\n</$select>\n\\end\n\n<<lingo ThemeTweaks/Hint>>\n\n! <<lingo Options>>\n\n|<$link to=\"$:/themes/tiddlywiki/vanilla/options/sidebarlayout\"><<lingo Options/SidebarLayout>></$link> |<$select tiddler=\"$:/themes/tiddlywiki/vanilla/options/sidebarlayout\"><option value=\"fixed-fluid\"><<lingo Options/SidebarLayout/Fixed-Fluid>></option><option value=\"fluid-fixed\"><<lingo Options/SidebarLayout/Fluid-Fixed>></option></$select> |\n|<$link to=\"$:/themes/tiddlywiki/vanilla/options/stickytitles\"><<lingo Options/StickyTitles>></$link><br>//<<lingo Options/StickyTitles/Hint>>// |<$select tiddler=\"$:/themes/tiddlywiki/vanilla/options/stickytitles\"><option value=\"no\">{{$:/language/No}}</option><option value=\"yes\">{{$:/language/Yes}}</option></$select> |\n|<$link to=\"$:/themes/tiddlywiki/vanilla/options/codewrapping\"><<lingo Options/CodeWrapping>></$link> |<$select tiddler=\"$:/themes/tiddlywiki/vanilla/options/codewrapping\"><option value=\"pre\">{{$:/language/No}}</option><option value=\"pre-wrap\">{{$:/language/Yes}}</option></$select> |\n\n! <<lingo Settings>>\n\n|<$link to=\"$:/themes/tiddlywiki/vanilla/settings/fontfamily\"><<lingo Settings/FontFamily>></$link> |<$edit-text tiddler=\"$:/themes/tiddlywiki/vanilla/settings/fontfamily\" default=\"\" tag=\"input\"/> | |\n|<$link to=\"$:/themes/tiddlywiki/vanilla/settings/codefontfamily\"><<lingo Settings/CodeFontFamily>></$link> |<$edit-text tiddler=\"$:/themes/tiddlywiki/vanilla/settings/codefontfamily\" default=\"\" tag=\"input\"/> | |\n|<$link to=\"$:/themes/tiddlywiki/vanilla/settings/editorfontfamily\"><<lingo Settings/EditorFontFamily>></$link> |<$edit-text tiddler=\"$:/themes/tiddlywiki/vanilla/settings/editorfontfamily\" default=\"\" tag=\"input\"/> | |\n|<$link to=\"$:/themes/tiddlywiki/vanilla/settings/backgroundimage\"><<lingo Settings/BackgroundImage>></$link> |<$edit-text tiddler=\"$:/themes/tiddlywiki/vanilla/settings/backgroundimage\" default=\"\" tag=\"input\"/> |<<backgroundimage-dropdown>> |\n|<$link to=\"$:/themes/tiddlywiki/vanilla/settings/backgroundimageattachment\"><<lingo Settings/BackgroundImageAttachment>></$link> |<<backgroundimageattachment-dropdown>> | |\n|<$link to=\"$:/themes/tiddlywiki/vanilla/settings/backgroundimagesize\"><<lingo Settings/BackgroundImageSize>></$link> |<<backgroundimagesize-dropdown>> | |\n\n! <<lingo Metrics>>\n\n|<$link to=\"$:/themes/tiddlywiki/vanilla/metrics/fontsize\"><<lingo Metrics/FontSize>></$link> |<$edit-text tiddler=\"$:/themes/tiddlywiki/vanilla/metrics/fontsize\" default=\"\" tag=\"input\"/> |\n|<$link to=\"$:/themes/tiddlywiki/vanilla/metrics/lineheight\"><<lingo Metrics/LineHeight>></$link> |<$edit-text tiddler=\"$:/themes/tiddlywiki/vanilla/metrics/lineheight\" default=\"\" tag=\"input\"/> |\n|<$link to=\"$:/themes/tiddlywiki/vanilla/metrics/bodyfontsize\"><<lingo Metrics/BodyFontSize>></$link> |<$edit-text tiddler=\"$:/themes/tiddlywiki/vanilla/metrics/bodyfontsize\" default=\"\" tag=\"input\"/> |\n|<$link to=\"$:/themes/tiddlywiki/vanilla/metrics/bodylineheight\"><<lingo Metrics/BodyLineHeight>></$link> |<$edit-text tiddler=\"$:/themes/tiddlywiki/vanilla/metrics/bodylineheight\" default=\"\" tag=\"input\"/> |\n|<$link to=\"$:/themes/tiddlywiki/vanilla/metrics/storyleft\"><<lingo Metrics/StoryLeft>></$link><br>//<<lingo Metrics/StoryLeft/Hint>>// |^<$edit-text tiddler=\"$:/themes/tiddlywiki/vanilla/metrics/storyleft\" default=\"\" tag=\"input\"/> |\n|<$link to=\"$:/themes/tiddlywiki/vanilla/metrics/storytop\"><<lingo Metrics/StoryTop>></$link><br>//<<lingo Metrics/StoryTop/Hint>>// |^<$edit-text tiddler=\"$:/themes/tiddlywiki/vanilla/metrics/storytop\" default=\"\" tag=\"input\"/> |\n|<$link to=\"$:/themes/tiddlywiki/vanilla/metrics/storyright\"><<lingo Metrics/StoryRight>></$link><br>//<<lingo Metrics/StoryRight/Hint>>// |^<$edit-text tiddler=\"$:/themes/tiddlywiki/vanilla/metrics/storyright\" default=\"\" tag=\"input\"/> |\n|<$link to=\"$:/themes/tiddlywiki/vanilla/metrics/storywidth\"><<lingo Metrics/StoryWidth>></$link><br>//<<lingo Metrics/StoryWidth/Hint>>// |^<$edit-text tiddler=\"$:/themes/tiddlywiki/vanilla/metrics/storywidth\" default=\"\" tag=\"input\"/> |\n|<$link to=\"$:/themes/tiddlywiki/vanilla/metrics/tiddlerwidth\"><<lingo Metrics/TiddlerWidth>></$link><br>//<<lingo Metrics/TiddlerWidth/Hint>>//<br> |^<$edit-text tiddler=\"$:/themes/tiddlywiki/vanilla/metrics/tiddlerwidth\" default=\"\" tag=\"input\"/> |\n|<$link to=\"$:/themes/tiddlywiki/vanilla/metrics/sidebarbreakpoint\"><<lingo Metrics/SidebarBreakpoint>></$link><br>//<<lingo Metrics/SidebarBreakpoint/Hint>>// |^<$edit-text tiddler=\"$:/themes/tiddlywiki/vanilla/metrics/sidebarbreakpoint\" default=\"\" tag=\"input\"/> |\n|<$link to=\"$:/themes/tiddlywiki/vanilla/metrics/sidebarwidth\"><<lingo Metrics/SidebarWidth>></$link><br>//<<lingo Metrics/SidebarWidth/Hint>>// |^<$edit-text tiddler=\"$:/themes/tiddlywiki/vanilla/metrics/sidebarwidth\" default=\"\" tag=\"input\"/> |\n"
},
"$:/themes/tiddlywiki/vanilla/base": {
"title": "$:/themes/tiddlywiki/vanilla/base",
"tags": "[[$:/tags/Stylesheet]]",
"text": "\\define custom-background-datauri()\n<$set name=\"background\" value={{$:/themes/tiddlywiki/vanilla/settings/backgroundimage}}>\n<$list filter=\"[<background>is[image]]\">\n`background: url(`\n<$list filter=\"[<background>!has[_canonical_uri]]\">\n`\"`<$macrocall $name=\"datauri\" title={{$:/themes/tiddlywiki/vanilla/settings/backgroundimage}}/>`\"`\n</$list>\n<$list filter=\"[<background>has[_canonical_uri]]\">\n`\"`<$view tiddler={{$:/themes/tiddlywiki/vanilla/settings/backgroundimage}} field=\"_canonical_uri\"/>`\"`\n</$list>\n`) center center;`\n`background-attachment: `{{$:/themes/tiddlywiki/vanilla/settings/backgroundimageattachment}}`;\n-webkit-background-size:` {{$:/themes/tiddlywiki/vanilla/settings/backgroundimagesize}}`;\n-moz-background-size:` {{$:/themes/tiddlywiki/vanilla/settings/backgroundimagesize}}`;\n-o-background-size:` {{$:/themes/tiddlywiki/vanilla/settings/backgroundimagesize}}`;\nbackground-size:` {{$:/themes/tiddlywiki/vanilla/settings/backgroundimagesize}}`;`\n</$list>\n</$set>\n\\end\n\n\\define if-fluid-fixed(text,hiddenSidebarText)\n<$reveal state=\"$:/themes/tiddlywiki/vanilla/options/sidebarlayout\" type=\"match\" text=\"fluid-fixed\">\n$text$\n<$reveal state=\"$:/state/sidebar\" type=\"nomatch\" text=\"yes\" default=\"yes\">\n$hiddenSidebarText$\n</$reveal>\n</$reveal>\n\\end\n\n\\define if-editor-height-fixed(then,else)\n<$reveal state=\"$:/config/TextEditor/EditorHeight/Mode\" type=\"match\" text=\"fixed\">\n$then$\n</$reveal>\n<$reveal state=\"$:/config/TextEditor/EditorHeight/Mode\" type=\"match\" text=\"auto\">\n$else$\n</$reveal>\n\\end\n\n\\rules only filteredtranscludeinline transcludeinline macrodef macrocallinline macrocallblock\n\n/*\n** Start with the normalize CSS reset, and then belay some of its effects\n*/\n\n{{$:/themes/tiddlywiki/vanilla/reset}}\n\n*, input[type=\"search\"] {\n\tbox-sizing: border-box;\n\t-moz-box-sizing: border-box;\n\t-webkit-box-sizing: border-box;\n}\n\nhtml button {\n\tline-height: 1.2;\n\tcolor: <<colour button-foreground>>;\n\tbackground: <<colour button-background>>;\n\tborder-color: <<colour button-border>>;\n}\n\n/*\n** Basic element styles\n*/\n\nhtml {\n\tfont-family: {{$:/themes/tiddlywiki/vanilla/settings/fontfamily}};\n\ttext-rendering: optimizeLegibility; /* Enables kerning and ligatures etc. */\n\t-webkit-font-smoothing: antialiased;\n\t-moz-osx-font-smoothing: grayscale;\n}\n\nhtml:-webkit-full-screen {\n\tbackground-color: <<colour page-background>>;\n}\n\nbody.tc-body {\n\tfont-size: {{$:/themes/tiddlywiki/vanilla/metrics/fontsize}};\n\tline-height: {{$:/themes/tiddlywiki/vanilla/metrics/lineheight}};\n\tword-wrap: break-word;\n\t<<custom-background-datauri>>\n\tcolor: <<colour foreground>>;\n\tbackground-color: <<colour page-background>>;\n\tfill: <<colour foreground>>;\n}\n\n<<if-background-attachment \"\"\"\n\nbody.tc-body {\n background-color: transparent;\n}\n\n\"\"\">>\n\nh1, h2, h3, h4, h5, h6 {\n\tline-height: 1.2;\n\tfont-weight: 300;\n}\n\npre {\n\tdisplay: block;\n\tpadding: 14px;\n\tmargin-top: 1em;\n\tmargin-bottom: 1em;\n\tword-break: normal;\n\tword-wrap: break-word;\n\twhite-space: {{$:/themes/tiddlywiki/vanilla/options/codewrapping}};\n\tbackground-color: <<colour pre-background>>;\n\tborder: 1px solid <<colour pre-border>>;\n\tpadding: 0 3px 2px;\n\tborder-radius: 3px;\n\tfont-family: {{$:/themes/tiddlywiki/vanilla/settings/codefontfamily}};\n}\n\ncode {\n\tcolor: <<colour code-foreground>>;\n\tbackground-color: <<colour code-background>>;\n\tborder: 1px solid <<colour code-border>>;\n\twhite-space: {{$:/themes/tiddlywiki/vanilla/options/codewrapping}};\n\tpadding: 0 3px 2px;\n\tborder-radius: 3px;\n\tfont-family: {{$:/themes/tiddlywiki/vanilla/settings/codefontfamily}};\n}\n\nblockquote {\n\tborder-left: 5px solid <<colour blockquote-bar>>;\n\tmargin-left: 25px;\n\tpadding-left: 10px;\n\tquotes: \"\\201C\"\"\\201D\"\"\\2018\"\"\\2019\";\n}\n\nblockquote.tc-big-quote {\n\tfont-family: Georgia, serif;\n\tposition: relative;\n\tbackground: <<colour pre-background>>;\n\tborder-left: none;\n\tmargin-left: 50px;\n\tmargin-right: 50px;\n\tpadding: 10px;\n border-radius: 8px;\n}\n\nblockquote.tc-big-quote cite:before {\n\tcontent: \"\\2014 \\2009\";\n}\n\nblockquote.tc-big-quote:before {\n\tfont-family: Georgia, serif;\n\tcolor: <<colour blockquote-bar>>;\n\tcontent: open-quote;\n\tfont-size: 8em;\n\tline-height: 0.1em;\n\tmargin-right: 0.25em;\n\tvertical-align: -0.4em;\n\tposition: absolute;\n left: -50px;\n top: 42px;\n}\n\nblockquote.tc-big-quote:after {\n\tfont-family: Georgia, serif;\n\tcolor: <<colour blockquote-bar>>;\n\tcontent: close-quote;\n\tfont-size: 8em;\n\tline-height: 0.1em;\n\tmargin-right: 0.25em;\n\tvertical-align: -0.4em;\n\tposition: absolute;\n right: -80px;\n bottom: -20px;\n}\n\ndl dt {\n\tfont-weight: bold;\n\tmargin-top: 6px;\n}\n\nbutton, textarea, input, select {\n\toutline-color: <<colour primary>>;\n}\n\ntextarea,\ninput[type=text],\ninput[type=search],\ninput[type=\"\"],\ninput:not([type]) {\n\tcolor: <<colour foreground>>;\n\tbackground: <<colour background>>;\n}\n\ninput[type=\"checkbox\"] {\n vertical-align: middle;\n}\n\n.tc-muted {\n\tcolor: <<colour muted-foreground>>;\n}\n\nsvg.tc-image-button {\n\tpadding: 0px 1px 1px 0px;\n}\n\n.tc-icon-wrapper > svg {\n\twidth: 1em;\n\theight: 1em;\n}\n\nkbd {\n\tdisplay: inline-block;\n\tpadding: 3px 5px;\n\tfont-size: 0.8em;\n\tline-height: 1.2;\n\tcolor: <<colour foreground>>;\n\tvertical-align: middle;\n\tbackground-color: <<colour background>>;\n\tborder: solid 1px <<colour muted-foreground>>;\n\tborder-bottom-color: <<colour muted-foreground>>;\n\tborder-radius: 3px;\n\tbox-shadow: inset 0 -1px 0 <<colour muted-foreground>>;\n}\n\n/*\nMarkdown likes putting code elements inside pre elements\n*/\npre > code {\n\tpadding: 0;\n\tborder: none;\n\tbackground-color: inherit;\n\tcolor: inherit;\n}\n\ntable {\n\tborder: 1px solid <<colour table-border>>;\n\twidth: auto;\n\tmax-width: 100%;\n\tcaption-side: bottom;\n\tmargin-top: 1em;\n\tmargin-bottom: 1em;\n}\n\ntable th, table td {\n\tpadding: 0 7px 0 7px;\n\tborder-top: 1px solid <<colour table-border>>;\n\tborder-left: 1px solid <<colour table-border>>;\n}\n\ntable thead tr td, table th {\n\tbackground-color: <<colour table-header-background>>;\n\tfont-weight: bold;\n}\n\ntable tfoot tr td {\n\tbackground-color: <<colour table-footer-background>>;\n}\n\n.tc-csv-table {\n\twhite-space: nowrap;\n}\n\n.tc-tiddler-frame img,\n.tc-tiddler-frame svg,\n.tc-tiddler-frame canvas,\n.tc-tiddler-frame embed,\n.tc-tiddler-frame iframe {\n\tmax-width: 100%;\n}\n\n.tc-tiddler-body > embed,\n.tc-tiddler-body > iframe {\n\twidth: 100%;\n\theight: 600px;\n}\n\n/*\n** Links\n*/\n\nbutton.tc-tiddlylink,\na.tc-tiddlylink {\n\ttext-decoration: none;\n\tfont-weight: 500;\n\tcolor: <<colour tiddler-link-foreground>>;\n\t-webkit-user-select: inherit; /* Otherwise the draggable attribute makes links impossible to select */\n}\n\n.tc-sidebar-lists a.tc-tiddlylink {\n\tcolor: <<colour sidebar-tiddler-link-foreground>>;\n}\n\n.tc-sidebar-lists a.tc-tiddlylink:hover {\n\tcolor: <<colour sidebar-tiddler-link-foreground-hover>>;\n}\n\nbutton.tc-tiddlylink:hover,\na.tc-tiddlylink:hover {\n\ttext-decoration: underline;\n}\n\na.tc-tiddlylink-resolves {\n}\n\na.tc-tiddlylink-shadow {\n\tfont-weight: bold;\n}\n\na.tc-tiddlylink-shadow.tc-tiddlylink-resolves {\n\tfont-weight: normal;\n}\n\na.tc-tiddlylink-missing {\n\tfont-style: italic;\n}\n\na.tc-tiddlylink-external {\n\ttext-decoration: underline;\n\tcolor: <<colour external-link-foreground>>;\n\tbackground-color: <<colour external-link-background>>;\n}\n\na.tc-tiddlylink-external:visited {\n\tcolor: <<colour external-link-foreground-visited>>;\n\tbackground-color: <<colour external-link-background-visited>>;\n}\n\na.tc-tiddlylink-external:hover {\n\tcolor: <<colour external-link-foreground-hover>>;\n\tbackground-color: <<colour external-link-background-hover>>;\n}\n\n/*\n** Drag and drop styles\n*/\n\n.tc-tiddler-dragger {\n\tposition: relative;\n\tz-index: -10000;\n}\n\n.tc-tiddler-dragger-inner {\n\tposition: absolute;\n\ttop: -1000px;\n\tleft: -1000px;\n\tdisplay: inline-block;\n\tpadding: 8px 20px;\n\tfont-size: 16.9px;\n\tfont-weight: bold;\n\tline-height: 20px;\n\tcolor: <<colour dragger-foreground>>;\n\ttext-shadow: 0 1px 0 rgba(0, 0, 0, 1);\n\twhite-space: nowrap;\n\tvertical-align: baseline;\n\tbackground-color: <<colour dragger-background>>;\n\tborder-radius: 20px;\n}\n\n.tc-tiddler-dragger-cover {\n\tposition: absolute;\n\tbackground-color: <<colour page-background>>;\n}\n\n.tc-dropzone {\n\tposition: relative;\n}\n\n.tc-dropzone.tc-dragover:before {\n\tz-index: 10000;\n\tdisplay: block;\n\tposition: fixed;\n\ttop: 0;\n\tleft: 0;\n\tright: 0;\n\tbackground: <<colour dropzone-background>>;\n\ttext-align: center;\n\tcontent: \"<<lingo DropMessage>>\";\n}\n\n.tc-droppable > .tc-droppable-placeholder {\n\tdisplay: none;\n}\n\n.tc-droppable.tc-dragover > .tc-droppable-placeholder {\n\tdisplay: block;\n\tborder: 2px dashed <<colour dropzone-background>>;\n}\n\n.tc-draggable {\n\tcursor: move;\n}\n\n.tc-sidebar-tab-open .tc-droppable-placeholder, .tc-tagged-draggable-list .tc-droppable-placeholder,\n.tc-links-draggable-list .tc-droppable-placeholder {\n\tline-height: 2em;\n\theight: 2em;\n}\n\n.tc-sidebar-tab-open-item {\n\tposition: relative;\n}\n\n.tc-sidebar-tab-open .tc-btn-invisible.tc-btn-mini svg {\n\tfont-size: 0.7em;\n\tfill: <<colour muted-foreground>>;\n}\n\n/*\n** Plugin reload warning\n*/\n\n.tc-plugin-reload-warning {\n\tz-index: 1000;\n\tdisplay: block;\n\tposition: fixed;\n\ttop: 0;\n\tleft: 0;\n\tright: 0;\n\tbackground: <<colour alert-background>>;\n\ttext-align: center;\n}\n\n/*\n** Buttons\n*/\n\nbutton svg, button img, label svg, label img {\n\tvertical-align: middle;\n}\n\n.tc-btn-invisible {\n\tpadding: 0;\n\tmargin: 0;\n\tbackground: none;\n\tborder: none;\n cursor: pointer;\n}\n\n.tc-btn-boxed {\n\tfont-size: 0.6em;\n\tpadding: 0.2em;\n\tmargin: 1px;\n\tbackground: none;\n\tborder: 1px solid <<colour tiddler-controls-foreground>>;\n\tborder-radius: 0.25em;\n}\n\nhtml body.tc-body .tc-btn-boxed svg {\n\tfont-size: 1.6666em;\n}\n\n.tc-btn-boxed:hover {\n\tbackground: <<colour muted-foreground>>;\n\tcolor: <<colour background>>;\n}\n\nhtml body.tc-body .tc-btn-boxed:hover svg {\n\tfill: <<colour background>>;\n}\n\n.tc-btn-rounded {\n\tfont-size: 0.5em;\n\tline-height: 2;\n\tpadding: 0em 0.3em 0.2em 0.4em;\n\tmargin: 1px;\n\tborder: 1px solid <<colour muted-foreground>>;\n\tbackground: <<colour muted-foreground>>;\n\tcolor: <<colour background>>;\n\tborder-radius: 2em;\n}\n\nhtml body.tc-body .tc-btn-rounded svg {\n\tfont-size: 1.6666em;\n\tfill: <<colour background>>;\n}\n\n.tc-btn-rounded:hover {\n\tborder: 1px solid <<colour muted-foreground>>;\n\tbackground: <<colour background>>;\n\tcolor: <<colour muted-foreground>>;\n}\n\nhtml body.tc-body .tc-btn-rounded:hover svg {\n\tfill: <<colour muted-foreground>>;\n}\n\n.tc-btn-icon svg {\n\theight: 1em;\n\twidth: 1em;\n\tfill: <<colour muted-foreground>>;\n}\n\n.tc-btn-text {\n\tpadding: 0;\n\tmargin: 0;\n}\n\n/* used for documentation \"fake\" buttons */\n.tc-btn-standard {\n\tline-height: 1.8;\n\tcolor: #667;\n\tbackground-color: #e0e0e0;\n\tborder: 1px solid #888;\n\tpadding: 2px 1px 2px 1px;\n\tmargin: 1px 4px 1px 4px;\n}\n\n.tc-btn-big-green {\n\tdisplay: inline-block;\n\tpadding: 8px;\n\tmargin: 4px 8px 4px 8px;\n\tbackground: <<colour download-background>>;\n\tcolor: <<colour download-foreground>>;\n\tfill: <<colour download-foreground>>;\n\tborder: none;\n\tborder-radius: 2px;\n\tfont-size: 1.2em;\n\tline-height: 1.4em;\n\ttext-decoration: none;\n}\n\n.tc-btn-big-green svg,\n.tc-btn-big-green img {\n\theight: 2em;\n\twidth: 2em;\n\tvertical-align: middle;\n\tfill: <<colour download-foreground>>;\n}\n\n.tc-primary-btn {\n \tbackground: <<colour primary>>;\n}\n\n.tc-sidebar-lists input {\n\tcolor: <<colour foreground>>;\n}\n\n.tc-sidebar-lists button {\n\tcolor: <<colour sidebar-button-foreground>>;\n\tfill: <<colour sidebar-button-foreground>>;\n}\n\n.tc-sidebar-lists button.tc-btn-mini {\n\tcolor: <<colour sidebar-muted-foreground>>;\n}\n\n.tc-sidebar-lists button.tc-btn-mini:hover {\n\tcolor: <<colour sidebar-muted-foreground-hover>>;\n}\n\nbutton svg.tc-image-button, button .tc-image-button img {\n\theight: 1em;\n\twidth: 1em;\n}\n\n.tc-unfold-banner {\n\tposition: absolute;\n\tpadding: 0;\n\tmargin: 0;\n\tbackground: none;\n\tborder: none;\n\twidth: 100%;\n\twidth: calc(100% + 2px);\n\tmargin-left: -43px;\n\ttext-align: center;\n\tborder-top: 2px solid <<colour tiddler-info-background>>;\n\tmargin-top: 4px;\n}\n\n.tc-unfold-banner:hover {\n\tbackground: <<colour tiddler-info-background>>;\n\tborder-top: 2px solid <<colour tiddler-info-border>>;\n}\n\n.tc-unfold-banner svg, .tc-fold-banner svg {\n\theight: 0.75em;\n\tfill: <<colour tiddler-controls-foreground>>;\n}\n\n.tc-unfold-banner:hover svg, .tc-fold-banner:hover svg {\n\tfill: <<colour tiddler-controls-foreground-hover>>;\n}\n\n.tc-fold-banner {\n\tposition: absolute;\n\tpadding: 0;\n\tmargin: 0;\n\tbackground: none;\n\tborder: none;\n\twidth: 23px;\n\ttext-align: center;\n\tmargin-left: -35px;\n\ttop: 6px;\n\tbottom: 6px;\n}\n\n.tc-fold-banner:hover {\n\tbackground: <<colour tiddler-info-background>>;\n}\n\n@media (max-width: {{$:/themes/tiddlywiki/vanilla/metrics/sidebarbreakpoint}}) {\n\n\t.tc-unfold-banner {\n\t\tposition: static;\n\t\twidth: calc(100% + 59px);\n\t}\n\n\t.tc-fold-banner {\n\t\twidth: 16px;\n\t\tmargin-left: -16px;\n\t\tfont-size: 0.75em;\n\t}\n\n}\n\n/*\n** Tags and missing tiddlers\n*/\n\n.tc-tag-list-item {\n\tposition: relative;\n\tdisplay: inline-block;\n\tmargin-right: 7px;\n}\n\n.tc-tags-wrapper {\n\tmargin: 4px 0 14px 0;\n}\n\n.tc-missing-tiddler-label {\n\tfont-style: italic;\n\tfont-weight: normal;\n\tdisplay: inline-block;\n\tfont-size: 11.844px;\n\tline-height: 14px;\n\twhite-space: nowrap;\n\tvertical-align: baseline;\n}\n\nbutton.tc-tag-label, span.tc-tag-label {\n\tdisplay: inline-block;\n\tpadding: 0.16em 0.7em;\n\tfont-size: 0.9em;\n\tfont-weight: 400;\n\tline-height: 1.2em;\n\tcolor: <<colour tag-foreground>>;\n\twhite-space: nowrap;\n\tvertical-align: baseline;\n\tbackground-color: <<colour tag-background>>;\n\tborder-radius: 1em;\n}\n\n.tc-untagged-separator {\n\twidth: 10em;\n\tleft: 0;\n\tmargin-left: 0;\n\tborder: 0;\n\theight: 1px;\n\tbackground: <<colour tab-divider>>;\n}\n\nbutton.tc-untagged-label {\n\tbackground-color: <<colour untagged-background>>;\n}\n\n.tc-tag-label svg, .tc-tag-label img {\n\theight: 1em;\n\twidth: 1em;\n\tvertical-align: text-bottom;\n}\n\n.tc-edit-tags button.tc-remove-tag-button svg {\n\tfont-size: 0.7em;\n\tvertical-align: middle;\n}\n\n.tc-tag-manager-table .tc-tag-label {\n\twhite-space: normal;\n}\n\n.tc-tag-manager-tag {\n\twidth: 100%;\n}\n\nbutton.tc-btn-invisible.tc-remove-tag-button {\n\toutline: none;\n}\n\n/*\n** Page layout\n*/\n\n.tc-topbar {\n\tposition: fixed;\n\tz-index: 1200;\n}\n\n.tc-topbar-left {\n\tleft: 29px;\n\ttop: 5px;\n}\n\n.tc-topbar-right {\n\ttop: 5px;\n\tright: 29px;\n}\n\n.tc-topbar button {\n\tpadding: 8px;\n}\n\n.tc-topbar svg {\n\tfill: <<colour muted-foreground>>;\n}\n\n.tc-topbar button:hover svg {\n\tfill: <<colour foreground>>;\n}\n\n.tc-sidebar-header {\n\tcolor: <<colour sidebar-foreground>>;\n\tfill: <<colour sidebar-foreground>>;\n}\n\n.tc-sidebar-header .tc-title a.tc-tiddlylink-resolves {\n\tfont-weight: 300;\n}\n\n.tc-sidebar-header .tc-sidebar-lists p {\n\tmargin-top: 3px;\n\tmargin-bottom: 3px;\n}\n\n.tc-sidebar-header .tc-missing-tiddler-label {\n\tcolor: <<colour sidebar-foreground>>;\n}\n\n.tc-advanced-search input {\n\twidth: 60%;\n}\n\n.tc-search a svg {\n\twidth: 1.2em;\n\theight: 1.2em;\n\tvertical-align: middle;\n}\n\n.tc-page-controls {\n\tmargin-top: 14px;\n\tfont-size: 1.5em;\n}\n\n.tc-page-controls .tc-drop-down {\n font-size: 1rem;\n}\n\n.tc-page-controls button {\n\tmargin-right: 0.5em;\n}\n\n.tc-page-controls a.tc-tiddlylink:hover {\n\ttext-decoration: none;\n}\n\n.tc-page-controls img {\n\twidth: 1em;\n}\n\n.tc-page-controls svg {\n\tfill: <<colour sidebar-controls-foreground>>;\n}\n\n.tc-page-controls button:hover svg, .tc-page-controls a:hover svg {\n\tfill: <<colour sidebar-controls-foreground-hover>>;\n}\n\n.tc-menu-list-item {\n\twhite-space: nowrap;\n}\n\n.tc-menu-list-count {\n\tfont-weight: bold;\n}\n\n.tc-menu-list-subitem {\n\tpadding-left: 7px;\n}\n\n.tc-story-river {\n\tposition: relative;\n}\n\n@media (max-width: {{$:/themes/tiddlywiki/vanilla/metrics/sidebarbreakpoint}}) {\n\n\t.tc-sidebar-header {\n\t\tpadding: 14px;\n\t\tmin-height: 32px;\n\t\tmargin-top: {{$:/themes/tiddlywiki/vanilla/metrics/storytop}};\n\t}\n\n\t.tc-story-river {\n\t\tposition: relative;\n\t\tpadding: 0;\n\t}\n}\n\n@media (min-width: {{$:/themes/tiddlywiki/vanilla/metrics/sidebarbreakpoint}}) {\n\n\t.tc-message-box {\n\t\tmargin: 21px -21px 21px -21px;\n\t}\n\n\t.tc-sidebar-scrollable {\n\t\tposition: fixed;\n\t\ttop: {{$:/themes/tiddlywiki/vanilla/metrics/storytop}};\n\t\tleft: {{$:/themes/tiddlywiki/vanilla/metrics/storyright}};\n\t\tbottom: 0;\n\t\tright: 0;\n\t\toverflow-y: auto;\n\t\toverflow-x: auto;\n\t\t-webkit-overflow-scrolling: touch;\n\t\tmargin: 0 0 0 -42px;\n\t\tpadding: 71px 0 28px 42px;\n\t}\n\n\thtml[dir=\"rtl\"] .tc-sidebar-scrollable {\n\t\tleft: auto;\n\t\tright: {{$:/themes/tiddlywiki/vanilla/metrics/storyright}};\n\t}\n\n\t.tc-story-river {\n\t\tposition: relative;\n\t\tleft: {{$:/themes/tiddlywiki/vanilla/metrics/storyleft}};\n\t\ttop: {{$:/themes/tiddlywiki/vanilla/metrics/storytop}};\n\t\twidth: {{$:/themes/tiddlywiki/vanilla/metrics/storywidth}};\n\t\tpadding: 42px 42px 42px 42px;\n\t}\n\n<<if-no-sidebar \"\n\n\t.tc-story-river {\n\t\twidth: calc(100% - {{$:/themes/tiddlywiki/vanilla/metrics/storyleft}});\n\t}\n\n\">>\n\n}\n\n@media print {\n\n\tbody.tc-body {\n\t\tbackground-color: transparent;\n\t}\n\n\t.tc-sidebar-header, .tc-topbar {\n\t\tdisplay: none;\n\t}\n\n\t.tc-story-river {\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t}\n\n\t.tc-story-river .tc-tiddler-frame {\n\t\tmargin: 0;\n\t\tborder: none;\n\t\tpadding: 0;\n\t}\n}\n\n/*\n** Tiddler styles\n*/\n\n.tc-tiddler-frame {\n\tposition: relative;\n\tmargin-bottom: 28px;\n\tbackground-color: <<colour tiddler-background>>;\n\tborder: 1px solid <<colour tiddler-border>>;\n}\n\n{{$:/themes/tiddlywiki/vanilla/sticky}}\n\n.tc-tiddler-info {\n\tpadding: 14px 42px 14px 42px;\n\tbackground-color: <<colour tiddler-info-background>>;\n\tborder-top: 1px solid <<colour tiddler-info-border>>;\n\tborder-bottom: 1px solid <<colour tiddler-info-border>>;\n}\n\n.tc-tiddler-info p {\n\tmargin-top: 3px;\n\tmargin-bottom: 3px;\n}\n\n.tc-tiddler-info .tc-tab-buttons button.tc-tab-selected {\n\tbackground-color: <<colour tiddler-info-tab-background>>;\n\tborder-bottom: 1px solid <<colour tiddler-info-tab-background>>;\n}\n\n.tc-view-field-table {\n\twidth: 100%;\n}\n\n.tc-view-field-name {\n\twidth: 1%; /* Makes this column be as narrow as possible */\n\ttext-align: right;\n\tfont-style: italic;\n\tfont-weight: 200;\n}\n\n.tc-view-field-value {\n}\n\n@media (max-width: {{$:/themes/tiddlywiki/vanilla/metrics/sidebarbreakpoint}}) {\n\t.tc-tiddler-frame {\n\t\tpadding: 14px 14px 14px 14px;\n\t}\n\n\t.tc-tiddler-info {\n\t\tmargin: 0 -14px 0 -14px;\n\t}\n}\n\n@media (min-width: {{$:/themes/tiddlywiki/vanilla/metrics/sidebarbreakpoint}}) {\n\t.tc-tiddler-frame {\n\t\tpadding: 28px 42px 42px 42px;\n\t\twidth: {{$:/themes/tiddlywiki/vanilla/metrics/tiddlerwidth}};\n\t\tborder-radius: 2px;\n\t}\n\n<<if-no-sidebar \"\n\n\t.tc-tiddler-frame {\n\t\twidth: 100%;\n\t}\n\n\">>\n\n\t.tc-tiddler-info {\n\t\tmargin: 0 -42px 0 -42px;\n\t}\n}\n\n.tc-site-title,\n.tc-titlebar {\n\tfont-weight: 300;\n\tfont-size: 2.35em;\n\tline-height: 1.2em;\n\tcolor: <<colour tiddler-title-foreground>>;\n\tmargin: 0;\n}\n\n.tc-site-title {\n\tcolor: <<colour site-title-foreground>>;\n}\n\n.tc-tiddler-title-icon {\n\tvertical-align: middle;\n}\n\n.tc-system-title-prefix {\n\tcolor: <<colour muted-foreground>>;\n}\n\n.tc-titlebar h2 {\n\tfont-size: 1em;\n\tdisplay: inline;\n}\n\n.tc-titlebar img {\n\theight: 1em;\n}\n\n.tc-subtitle {\n\tfont-size: 0.9em;\n\tcolor: <<colour tiddler-subtitle-foreground>>;\n\tfont-weight: 300;\n}\n\n.tc-tiddler-missing .tc-title {\n font-style: italic;\n font-weight: normal;\n}\n\n.tc-tiddler-frame .tc-tiddler-controls {\n\tfloat: right;\n}\n\n.tc-tiddler-controls .tc-drop-down {\n\tfont-size: 0.6em;\n}\n\n.tc-tiddler-controls .tc-drop-down .tc-drop-down {\n\tfont-size: 1em;\n}\n\n.tc-tiddler-controls > span > button,\n.tc-tiddler-controls > span > span > button,\n.tc-tiddler-controls > span > span > span > button {\n\tvertical-align: baseline;\n\tmargin-left:5px;\n}\n\n.tc-tiddler-controls button svg, .tc-tiddler-controls button img,\n.tc-search button svg, .tc-search a svg {\n\tfill: <<colour tiddler-controls-foreground>>;\n}\n\n.tc-tiddler-controls button svg, .tc-tiddler-controls button img {\n\theight: 0.75em;\n}\n\n.tc-search button svg, .tc-search a svg {\n height: 1.2em;\n width: 1.2em;\n margin: 0 0.25em;\n}\n\n.tc-tiddler-controls button.tc-selected svg,\n.tc-page-controls button.tc-selected svg {\n\tfill: <<colour tiddler-controls-foreground-selected>>;\n}\n\n.tc-tiddler-controls button.tc-btn-invisible:hover svg,\n.tc-search button:hover svg, .tc-search a:hover svg {\n\tfill: <<colour tiddler-controls-foreground-hover>>;\n}\n\n@media print {\n\t.tc-tiddler-controls {\n\t\tdisplay: none;\n\t}\n}\n\n.tc-tiddler-help { /* Help prompts within tiddler template */\n\tcolor: <<colour muted-foreground>>;\n\tmargin-top: 14px;\n}\n\n.tc-tiddler-help a.tc-tiddlylink {\n\tcolor: <<colour very-muted-foreground>>;\n}\n\n.tc-tiddler-frame .tc-edit-texteditor {\n\twidth: 100%;\n\tmargin: 4px 0 4px 0;\n}\n\n.tc-tiddler-frame input.tc-edit-texteditor,\n.tc-tiddler-frame textarea.tc-edit-texteditor,\n.tc-tiddler-frame iframe.tc-edit-texteditor {\n\tpadding: 3px 3px 3px 3px;\n\tborder: 1px solid <<colour tiddler-editor-border>>;\n\tbackground-color: <<colour tiddler-editor-background>>;\n\tline-height: 1.3em;\n\t-webkit-appearance: none;\n\tfont-family: {{$:/themes/tiddlywiki/vanilla/settings/editorfontfamily}};\n}\n\n.tc-tiddler-frame .tc-binary-warning {\n\twidth: 100%;\n\theight: 5em;\n\ttext-align: center;\n\tpadding: 3em 3em 6em 3em;\n\tbackground: <<colour alert-background>>;\n\tborder: 1px solid <<colour alert-border>>;\n}\n\ncanvas.tc-edit-bitmapeditor {\n\tborder: 6px solid <<colour tiddler-editor-border-image>>;\n\tcursor: crosshair;\n\t-moz-user-select: none;\n\t-webkit-user-select: none;\n\t-ms-user-select: none;\n\tmargin-top: 6px;\n\tmargin-bottom: 6px;\n}\n\n.tc-edit-bitmapeditor-width {\n\tdisplay: block;\n}\n\n.tc-edit-bitmapeditor-height {\n\tdisplay: block;\n}\n\n.tc-tiddler-body {\n\tclear: both;\n}\n\n.tc-tiddler-frame .tc-tiddler-body {\n\tfont-size: {{$:/themes/tiddlywiki/vanilla/metrics/bodyfontsize}};\n\tline-height: {{$:/themes/tiddlywiki/vanilla/metrics/bodylineheight}};\n}\n\n.tc-titlebar, .tc-tiddler-edit-title {\n\toverflow: hidden; /* https://github.com/Jermolene/TiddlyWiki5/issues/282 */\n}\n\nhtml body.tc-body.tc-single-tiddler-window {\n\tmargin: 1em;\n\tbackground: <<colour tiddler-background>>;\n}\n\n.tc-single-tiddler-window img,\n.tc-single-tiddler-window svg,\n.tc-single-tiddler-window canvas,\n.tc-single-tiddler-window embed,\n.tc-single-tiddler-window iframe {\n\tmax-width: 100%;\n}\n\n/*\n** Editor\n*/\n\n.tc-editor-toolbar {\n\tmargin-top: 8px;\n}\n\n.tc-editor-toolbar button {\n\tvertical-align: middle;\n\tbackground-color: <<colour tiddler-controls-foreground>>;\n\tcolor: <<colour tiddler-controls-foreground-selected>>;\n\tfill: <<colour tiddler-controls-foreground-selected>>;\n\tborder-radius: 4px;\n\tpadding: 3px;\n\tmargin: 2px 0 2px 4px;\n}\n\n.tc-editor-toolbar button.tc-text-editor-toolbar-item-adjunct {\n\tmargin-left: 1px;\n\twidth: 1em;\n\tborder-radius: 8px;\n}\n\n.tc-editor-toolbar button.tc-text-editor-toolbar-item-start-group {\n\tmargin-left: 11px;\n}\n\n.tc-editor-toolbar button.tc-selected {\n\tbackground-color: <<colour primary>>;\n}\n\n.tc-editor-toolbar button svg {\n\twidth: 1.6em;\n\theight: 1.2em;\n}\n\n.tc-editor-toolbar button:hover {\n\tbackground-color: <<colour tiddler-controls-foreground-selected>>;\n\tfill: <<colour background>>;\n\tcolor: <<colour background>>;\n}\n\n.tc-editor-toolbar .tc-text-editor-toolbar-more {\n\twhite-space: normal;\n}\n\n.tc-editor-toolbar .tc-text-editor-toolbar-more button {\n\tdisplay: inline-block;\n\tpadding: 3px;\n\twidth: auto;\n}\n\n.tc-editor-toolbar .tc-search-results {\n\tpadding: 0;\n}\n\n/*\n** Adjustments for fluid-fixed mode\n*/\n\n@media (min-width: {{$:/themes/tiddlywiki/vanilla/metrics/sidebarbreakpoint}}) {\n\n<<if-fluid-fixed text:\"\"\"\n\n\t.tc-story-river {\n\t\tpadding-right: 0;\n\t\tposition: relative;\n\t\twidth: auto;\n\t\tleft: 0;\n\t\tmargin-left: {{$:/themes/tiddlywiki/vanilla/metrics/storyleft}};\n\t\tmargin-right: {{$:/themes/tiddlywiki/vanilla/metrics/sidebarwidth}};\n\t}\n\n\t.tc-tiddler-frame {\n\t\twidth: 100%;\n\t}\n\n\t.tc-sidebar-scrollable {\n\t\tleft: auto;\n\t\tbottom: 0;\n\t\tright: 0;\n\t\twidth: {{$:/themes/tiddlywiki/vanilla/metrics/sidebarwidth}};\n\t}\n\n\tbody.tc-body .tc-storyview-zoomin-tiddler {\n\t\twidth: 100%;\n\t\twidth: calc(100% - 42px);\n\t}\n\n\"\"\" hiddenSidebarText:\"\"\"\n\n\t.tc-story-river {\n\t\tpadding-right: 3em;\n\t\tmargin-right: 0;\n\t}\n\n\tbody.tc-body .tc-storyview-zoomin-tiddler {\n\t\twidth: 100%;\n\t\twidth: calc(100% - 84px);\n\t}\n\n\"\"\">>\n\n}\n\n/*\n** Toolbar buttons\n*/\n\n.tc-page-controls svg.tc-image-new-button {\n fill: <<colour toolbar-new-button>>;\n}\n\n.tc-page-controls svg.tc-image-options-button {\n fill: <<colour toolbar-options-button>>;\n}\n\n.tc-page-controls svg.tc-image-save-button {\n fill: <<colour toolbar-save-button>>;\n}\n\n.tc-tiddler-controls button svg.tc-image-info-button {\n fill: <<colour toolbar-info-button>>;\n}\n\n.tc-tiddler-controls button svg.tc-image-edit-button {\n fill: <<colour toolbar-edit-button>>;\n}\n\n.tc-tiddler-controls button svg.tc-image-close-button {\n fill: <<colour toolbar-close-button>>;\n}\n\n.tc-tiddler-controls button svg.tc-image-delete-button {\n fill: <<colour toolbar-delete-button>>;\n}\n\n.tc-tiddler-controls button svg.tc-image-cancel-button {\n fill: <<colour toolbar-cancel-button>>;\n}\n\n.tc-tiddler-controls button svg.tc-image-done-button {\n fill: <<colour toolbar-done-button>>;\n}\n\n/*\n** Tiddler edit mode\n*/\n\n.tc-tiddler-edit-frame em.tc-edit {\n\tcolor: <<colour muted-foreground>>;\n\tfont-style: normal;\n}\n\n.tc-edit-type-dropdown a.tc-tiddlylink-missing {\n\tfont-style: normal;\n}\n\n.tc-edit-tags {\n\tborder: 1px solid <<colour tiddler-editor-border>>;\n\tpadding: 4px 8px 4px 8px;\n}\n\n.tc-edit-add-tag {\n\tdisplay: inline-block;\n}\n\n.tc-edit-add-tag .tc-add-tag-name input {\n\twidth: 50%;\n}\n\n.tc-edit-add-tag .tc-keyboard {\n\tdisplay:inline;\n}\n\n.tc-edit-tags .tc-tag-label {\n\tdisplay: inline-block;\n}\n\n.tc-edit-tags-list {\n\tmargin: 14px 0 14px 0;\n}\n\n.tc-remove-tag-button {\n\tpadding-left: 4px;\n}\n\n.tc-tiddler-preview {\n\toverflow: auto;\n}\n\n.tc-tiddler-preview-preview {\n\tfloat: right;\n\twidth: 49%;\n\tborder: 1px solid <<colour tiddler-editor-border>>;\n\tmargin: 4px 0 3px 3px;\n\tpadding: 3px 3px 3px 3px;\n}\n\n<<if-editor-height-fixed then:\"\"\"\n\n.tc-tiddler-preview-preview {\n\toverflow-y: scroll;\n\theight: {{$:/config/TextEditor/EditorHeight/Height}};\n}\n\n\"\"\">>\n\n.tc-tiddler-frame .tc-tiddler-preview .tc-edit-texteditor {\n\twidth: 49%;\n}\n\n.tc-tiddler-frame .tc-tiddler-preview canvas.tc-edit-bitmapeditor {\n\tmax-width: 49%;\n}\n\n.tc-edit-fields {\n\twidth: 100%;\n}\n\n\n.tc-edit-fields table, .tc-edit-fields tr, .tc-edit-fields td {\n\tborder: none;\n\tpadding: 4px;\n}\n\n.tc-edit-fields > tbody > .tc-edit-field:nth-child(odd) {\n\tbackground-color: <<colour tiddler-editor-fields-odd>>;\n}\n\n.tc-edit-fields > tbody > .tc-edit-field:nth-child(even) {\n\tbackground-color: <<colour tiddler-editor-fields-even>>;\n}\n\n.tc-edit-field-name {\n\ttext-align: right;\n}\n\n.tc-edit-field-value input {\n\twidth: 100%;\n}\n\n.tc-edit-field-remove {\n}\n\n.tc-edit-field-remove svg {\n\theight: 1em;\n\twidth: 1em;\n\tfill: <<colour muted-foreground>>;\n\tvertical-align: middle;\n}\n\n.tc-edit-field-add-name {\n\tdisplay: inline-block;\n\twidth: 15%;\n}\n\n.tc-edit-field-add-value {\n\tdisplay: inline-block;\n\twidth: 40%;\n}\n\n.tc-edit-field-add-button {\n\tdisplay: inline-block;\n\twidth: 10%;\n}\n\n/*\n** Storyview Classes\n*/\n\n.tc-storyview-zoomin-tiddler {\n\tposition: absolute;\n\tdisplay: block;\n\twidth: 100%;\n}\n\n@media (min-width: {{$:/themes/tiddlywiki/vanilla/metrics/sidebarbreakpoint}}) {\n\n\t.tc-storyview-zoomin-tiddler {\n\t\twidth: calc(100% - 84px);\n\t}\n\n}\n\n/*\n** Dropdowns\n*/\n\n.tc-btn-dropdown {\n\ttext-align: left;\n}\n\n.tc-btn-dropdown svg, .tc-btn-dropdown img {\n\theight: 1em;\n\twidth: 1em;\n\tfill: <<colour muted-foreground>>;\n}\n\n.tc-drop-down-wrapper {\n\tposition: relative;\n}\n\n.tc-drop-down {\n\tmin-width: 380px;\n\tborder: 1px solid <<colour dropdown-border>>;\n\tbackground-color: <<colour dropdown-background>>;\n\tpadding: 7px 0 7px 0;\n\tmargin: 4px 0 0 0;\n\twhite-space: nowrap;\n\ttext-shadow: none;\n\tline-height: 1.4;\n}\n\n.tc-drop-down .tc-drop-down {\n\tmargin-left: 14px;\n}\n\n.tc-drop-down button svg, .tc-drop-down a svg {\n\tfill: <<colour foreground>>;\n}\n\n.tc-drop-down button.tc-btn-invisible:hover svg {\n\tfill: <<colour foreground>>;\n}\n\n.tc-drop-down p {\n\tpadding: 0 14px 0 14px;\n}\n\n.tc-drop-down svg {\n\twidth: 1em;\n\theight: 1em;\n}\n\n.tc-drop-down img {\n\twidth: 1em;\n}\n\n.tc-drop-down a, .tc-drop-down button {\n\tdisplay: block;\n\tpadding: 0 14px 0 14px;\n\twidth: 100%;\n\ttext-align: left;\n\tcolor: <<colour foreground>>;\n\tline-height: 1.4;\n}\n\n.tc-drop-down .tc-tab-set .tc-tab-buttons button {\n\tdisplay: inline-block;\n width: auto;\n margin-bottom: 0px;\n border-bottom-left-radius: 0;\n border-bottom-right-radius: 0;\n}\n\n.tc-drop-down .tc-prompt {\n\tpadding: 0 14px;\n}\n\n.tc-drop-down .tc-chooser {\n\tborder: none;\n}\n\n.tc-drop-down .tc-chooser .tc-swatches-horiz {\n\tfont-size: 0.4em;\n\tpadding-left: 1.2em;\n}\n\n.tc-drop-down .tc-file-input-wrapper {\n\twidth: 100%;\n}\n\n.tc-drop-down .tc-file-input-wrapper button {\n\tcolor: <<colour foreground>>;\n}\n\n.tc-drop-down a:hover, .tc-drop-down button:hover, .tc-drop-down .tc-file-input-wrapper:hover button {\n\tcolor: <<colour tiddler-link-background>>;\n\tbackground-color: <<colour tiddler-link-foreground>>;\n\ttext-decoration: none;\n}\n\n.tc-drop-down .tc-tab-buttons button {\n\tbackground-color: <<colour dropdown-tab-background>>;\n}\n\n.tc-drop-down .tc-tab-buttons button.tc-tab-selected {\n\tbackground-color: <<colour dropdown-tab-background-selected>>;\n\tborder-bottom: 1px solid <<colour dropdown-tab-background-selected>>;\n}\n\n.tc-drop-down-bullet {\n\tdisplay: inline-block;\n\twidth: 0.5em;\n}\n\n.tc-drop-down .tc-tab-contents a {\n\tpadding: 0 0.5em 0 0.5em;\n}\n\n.tc-block-dropdown-wrapper {\n\tposition: relative;\n}\n\n.tc-block-dropdown {\n\tposition: absolute;\n\tmin-width: 220px;\n\tborder: 1px solid <<colour dropdown-border>>;\n\tbackground-color: <<colour dropdown-background>>;\n\tpadding: 7px 0;\n\tmargin: 4px 0 0 0;\n\twhite-space: nowrap;\n\tz-index: 1000;\n\ttext-shadow: none;\n}\n\n.tc-block-dropdown.tc-search-drop-down {\n\tmargin-left: -12px;\n}\n\n.tc-block-dropdown a {\n\tdisplay: block;\n\tpadding: 4px 14px 4px 14px;\n}\n\n.tc-block-dropdown.tc-search-drop-down a {\n\tdisplay: block;\n\tpadding: 0px 10px 0px 10px;\n}\n\n.tc-drop-down .tc-dropdown-item-plain,\n.tc-block-dropdown .tc-dropdown-item-plain {\n\tpadding: 4px 14px 4px 7px;\n}\n\n.tc-drop-down .tc-dropdown-item,\n.tc-block-dropdown .tc-dropdown-item {\n\tpadding: 4px 14px 4px 7px;\n\tcolor: <<colour muted-foreground>>;\n}\n\n.tc-block-dropdown a:hover {\n\tcolor: <<colour tiddler-link-background>>;\n\tbackground-color: <<colour tiddler-link-foreground>>;\n\ttext-decoration: none;\n}\n\n.tc-search-results {\n\tpadding: 0 7px 0 7px;\n}\n\n.tc-image-chooser, .tc-colour-chooser {\n\twhite-space: normal;\n}\n\n.tc-image-chooser a,\n.tc-colour-chooser a {\n\tdisplay: inline-block;\n\tvertical-align: top;\n\ttext-align: center;\n\tposition: relative;\n}\n\n.tc-image-chooser a {\n\tborder: 1px solid <<colour muted-foreground>>;\n\tpadding: 2px;\n\tmargin: 2px;\n\twidth: 4em;\n\theight: 4em;\n}\n\n.tc-colour-chooser a {\n\tpadding: 3px;\n\twidth: 2em;\n\theight: 2em;\n\tvertical-align: middle;\n}\n\n.tc-image-chooser a:hover,\n.tc-colour-chooser a:hover {\n\tbackground: <<colour primary>>;\n\tpadding: 0px;\n\tborder: 3px solid <<colour primary>>;\n}\n\n.tc-image-chooser a svg,\n.tc-image-chooser a img {\n\tdisplay: inline-block;\n\twidth: auto;\n\theight: auto;\n\tmax-width: 3.5em;\n\tmax-height: 3.5em;\n\tposition: absolute;\n\ttop: 0;\n\tbottom: 0;\n\tleft: 0;\n\tright: 0;\n\tmargin: auto;\n}\n\n/*\n** Modals\n*/\n\n.tc-modal-wrapper {\n\tposition: fixed;\n\toverflow: auto;\n\toverflow-y: scroll;\n\ttop: 0;\n\tright: 0;\n\tbottom: 0;\n\tleft: 0;\n\tz-index: 900;\n}\n\n.tc-modal-backdrop {\n\tposition: fixed;\n\ttop: 0;\n\tright: 0;\n\tbottom: 0;\n\tleft: 0;\n\tz-index: 1000;\n\tbackground-color: <<colour modal-backdrop>>;\n}\n\n.tc-modal {\n\tz-index: 1100;\n\tbackground-color: <<colour modal-background>>;\n\tborder: 1px solid <<colour modal-border>>;\n}\n\n@media (max-width: 55em) {\n\t.tc-modal {\n\t\tposition: fixed;\n\t\ttop: 1em;\n\t\tleft: 1em;\n\t\tright: 1em;\n\t}\n\n\t.tc-modal-body {\n\t\toverflow-y: auto;\n\t\tmax-height: 400px;\n\t\tmax-height: 60vh;\n\t}\n}\n\n@media (min-width: 55em) {\n\t.tc-modal {\n\t\tposition: fixed;\n\t\ttop: 2em;\n\t\tleft: 25%;\n\t\twidth: 50%;\n\t}\n\n\t.tc-modal-body {\n\t\toverflow-y: auto;\n\t\tmax-height: 400px;\n\t\tmax-height: 60vh;\n\t}\n}\n\n.tc-modal-header {\n\tpadding: 9px 15px;\n\tborder-bottom: 1px solid <<colour modal-header-border>>;\n}\n\n.tc-modal-header h3 {\n\tmargin: 0;\n\tline-height: 30px;\n}\n\n.tc-modal-header img, .tc-modal-header svg {\n\twidth: 1em;\n\theight: 1em;\n}\n\n.tc-modal-body {\n\tpadding: 15px;\n}\n\n.tc-modal-footer {\n\tpadding: 14px 15px 15px;\n\tmargin-bottom: 0;\n\ttext-align: right;\n\tbackground-color: <<colour modal-footer-background>>;\n\tborder-top: 1px solid <<colour modal-footer-border>>;\n}\n\n/*\n** Notifications\n*/\n\n.tc-notification {\n\tposition: fixed;\n\ttop: 14px;\n\tright: 42px;\n\tz-index: 1300;\n\tmax-width: 280px;\n\tpadding: 0 14px 0 14px;\n\tbackground-color: <<colour notification-background>>;\n\tborder: 1px solid <<colour notification-border>>;\n}\n\n/*\n** Tabs\n*/\n\n.tc-tab-set.tc-vertical {\n\tdisplay: -webkit-flex;\n\tdisplay: flex;\n}\n\n.tc-tab-buttons {\n\tfont-size: 0.85em;\n\tpadding-top: 1em;\n\tmargin-bottom: -2px;\n}\n\n.tc-tab-buttons.tc-vertical {\n\tz-index: 100;\n\tdisplay: block;\n\tpadding-top: 14px;\n\tvertical-align: top;\n\ttext-align: right;\n\tmargin-bottom: inherit;\n\tmargin-right: -1px;\n\tmax-width: 33%;\n\t-webkit-flex: 0 0 auto;\n\tflex: 0 0 auto;\n}\n\n.tc-tab-buttons button.tc-tab-selected {\n\tcolor: <<colour tab-foreground-selected>>;\n\tbackground-color: <<colour tab-background-selected>>;\n\tborder-left: 1px solid <<colour tab-border-selected>>;\n\tborder-top: 1px solid <<colour tab-border-selected>>;\n\tborder-right: 1px solid <<colour tab-border-selected>>;\n}\n\n.tc-tab-buttons button {\n\tcolor: <<colour tab-foreground>>;\n\tpadding: 3px 5px 3px 5px;\n\tmargin-right: 0.3em;\n\tfont-weight: 300;\n\tborder: none;\n\tbackground: inherit;\n\tbackground-color: <<colour tab-background>>;\n\tborder-left: 1px solid <<colour tab-border>>;\n\tborder-top: 1px solid <<colour tab-border>>;\n\tborder-right: 1px solid <<colour tab-border>>;\n\tborder-top-left-radius: 2px;\n\tborder-top-right-radius: 2px;\n\tborder-bottom-left-radius: 0;\n\tborder-bottom-right-radius: 0;\n}\n\n.tc-tab-buttons.tc-vertical button {\n\tdisplay: block;\n\twidth: 100%;\n\tmargin-top: 3px;\n\tmargin-right: 0;\n\ttext-align: right;\n\tbackground-color: <<colour tab-background>>;\n\tborder-left: 1px solid <<colour tab-border>>;\n\tborder-bottom: 1px solid <<colour tab-border>>;\n\tborder-right: none;\n\tborder-top-left-radius: 2px;\n\tborder-bottom-left-radius: 2px;\n\tborder-top-right-radius: 0;\n\tborder-bottom-right-radius: 0;\n}\n\n.tc-tab-buttons.tc-vertical button.tc-tab-selected {\n\tbackground-color: <<colour tab-background-selected>>;\n\tborder-right: 1px solid <<colour tab-background-selected>>;\n}\n\n.tc-tab-divider {\n\tborder-top: 1px solid <<colour tab-divider>>;\n}\n\n.tc-tab-divider.tc-vertical {\n\tdisplay: none;\n}\n\n.tc-tab-content {\n\tmargin-top: 14px;\n}\n\n.tc-tab-content.tc-vertical {\n word-break: break-word;\n\tdisplay: inline-block;\n\tvertical-align: top;\n\tpadding-top: 0;\n\tpadding-left: 14px;\n\tborder-left: 1px solid <<colour tab-border>>;\n\t-webkit-flex: 1 0 70%;\n\tflex: 1 0 70%;\n}\n\n.tc-sidebar-lists .tc-tab-buttons {\n\tmargin-bottom: -1px;\n}\n\n.tc-sidebar-lists .tc-tab-buttons button.tc-tab-selected {\n\tbackground-color: <<colour sidebar-tab-background-selected>>;\n\tcolor: <<colour sidebar-tab-foreground-selected>>;\n\tborder-left: 1px solid <<colour sidebar-tab-border-selected>>;\n\tborder-top: 1px solid <<colour sidebar-tab-border-selected>>;\n\tborder-right: 1px solid <<colour sidebar-tab-border-selected>>;\n}\n\n.tc-sidebar-lists .tc-tab-buttons button {\n\tbackground-color: <<colour sidebar-tab-background>>;\n\tcolor: <<colour sidebar-tab-foreground>>;\n\tborder-left: 1px solid <<colour sidebar-tab-border>>;\n\tborder-top: 1px solid <<colour sidebar-tab-border>>;\n\tborder-right: 1px solid <<colour sidebar-tab-border>>;\n}\n\n.tc-sidebar-lists .tc-tab-divider {\n\tborder-top: 1px solid <<colour sidebar-tab-divider>>;\n}\n\n.tc-more-sidebar > .tc-tab-set > .tc-tab-buttons > button {\n\tdisplay: block;\n\twidth: 100%;\n\tbackground-color: <<colour sidebar-tab-background>>;\n\tborder-top: none;\n\tborder-left: none;\n\tborder-bottom: none;\n\tborder-right: 1px solid #ccc;\n\tmargin-bottom: inherit;\n}\n\n.tc-more-sidebar > .tc-tab-set > .tc-tab-buttons > button.tc-tab-selected {\n\tbackground-color: <<colour sidebar-tab-background-selected>>;\n\tborder: none;\n}\n\n/*\n** Manager\n*/\n\n.tc-manager-wrapper {\n\t\n}\n\n.tc-manager-controls {\n\t\n}\n\n.tc-manager-control {\n\tmargin: 0.5em 0;\n}\n\n.tc-manager-list {\n\twidth: 100%;\n\tborder-top: 1px solid <<colour muted-foreground>>;\n\tborder-left: 1px solid <<colour muted-foreground>>;\n\tborder-right: 1px solid <<colour muted-foreground>>;\n}\n\n.tc-manager-list-item {\n\n}\n\n.tc-manager-list-item-heading {\n display: block;\n width: 100%;\n text-align: left;\t\n\tborder-bottom: 1px solid <<colour muted-foreground>>;\n\tpadding: 3px;\n}\n\n.tc-manager-list-item-heading-selected {\n\tfont-weight: bold;\n\tcolor: <<colour background>>;\n\tfill: <<colour background>>;\n\tbackground-color: <<colour foreground>>;\n}\n\n.tc-manager-list-item-heading:hover {\n\tbackground: <<colour primary>>;\n\tcolor: <<colour background>>;\n}\n\n.tc-manager-list-item-content {\n\tdisplay: flex;\n}\n\n.tc-manager-list-item-content-sidebar {\n flex: 1 0;\n background: <<colour tiddler-editor-background>>;\n border-right: 0.5em solid <<colour muted-foreground>>;\n border-bottom: 0.5em solid <<colour muted-foreground>>;\n white-space: nowrap;\n}\n\n.tc-manager-list-item-content-item-heading {\n\tdisplay: block;\n\twidth: 100%;\n\ttext-align: left;\n background: <<colour muted-foreground>>;\n\ttext-transform: uppercase;\n\tfont-size: 0.6em;\n\tfont-weight: bold;\n padding: 0.5em 0 0.5em 0;\n}\n\n.tc-manager-list-item-content-item-body {\n\tpadding: 0 0.5em 0 0.5em;\n}\n\n.tc-manager-list-item-content-item-body > pre {\n\tmargin: 0.5em 0 0.5em 0;\n\tborder: none;\n\tbackground: inherit;\n}\n\n.tc-manager-list-item-content-tiddler {\n flex: 3 1;\n border-left: 0.5em solid <<colour muted-foreground>>;\n border-right: 0.5em solid <<colour muted-foreground>>;\n border-bottom: 0.5em solid <<colour muted-foreground>>;\n}\n\n.tc-manager-list-item-content-item-body > table {\n\tborder: none;\n\tpadding: 0;\n\tmargin: 0;\n}\n\n.tc-manager-list-item-content-item-body > table td {\n\tborder: none;\n}\n\n.tc-manager-icon-editor > button {\n\twidth: 100%;\n}\n\n.tc-manager-icon-editor > button > svg,\n.tc-manager-icon-editor > button > button {\n\twidth: 100%;\n\theight: auto;\n}\n\n/*\n** Alerts\n*/\n\n.tc-alerts {\n\tposition: fixed;\n\ttop: 0;\n\tleft: 0;\n\tmax-width: 500px;\n\tz-index: 20000;\n}\n\n.tc-alert {\n\tposition: relative;\n\tmargin: 28px;\n\tpadding: 14px 14px 14px 14px;\n\tborder: 2px solid <<colour alert-border>>;\n\tbackground-color: <<colour alert-background>>;\n}\n\n.tc-alert-toolbar {\n\tposition: absolute;\n\ttop: 14px;\n\tright: 14px;\n}\n\n.tc-alert-toolbar svg {\n\tfill: <<colour alert-muted-foreground>>;\n}\n\n.tc-alert-subtitle {\n\tcolor: <<colour alert-muted-foreground>>;\n\tfont-weight: bold;\n}\n\n.tc-alert-highlight {\n\tcolor: <<colour alert-highlight>>;\n}\n\n@media (min-width: {{$:/themes/tiddlywiki/vanilla/metrics/sidebarbreakpoint}}) {\n\n\t.tc-static-alert {\n\t\tposition: relative;\n\t}\n\n\t.tc-static-alert-inner {\n\t\tposition: absolute;\n\t\tz-index: 100;\n\t}\n\n}\n\n.tc-static-alert-inner {\n\tpadding: 0 2px 2px 42px;\n\tcolor: <<colour static-alert-foreground>>;\n}\n\n/*\n** Floating drafts list\n*/\n\n.tc-drafts-list {\n\tz-index: 2000;\n\tposition: fixed;\n\tfont-size: 0.8em;\n\tleft: 0;\n\tbottom: 0;\n}\n\n.tc-drafts-list a {\n\tmargin: 0 0.5em;\n\tpadding: 4px 4px;\n\tborder-top-left-radius: 4px;\n\tborder-top-right-radius: 4px;\n\tborder: 1px solid <<colour background>>;\n\tborder-bottom-none;\n\tbackground: <<colour dirty-indicator>>;\n\tcolor: <<colour background>>;\n\tfill: <<colour background>>;\n}\n\n.tc-drafts-list a:hover {\n\ttext-decoration: none;\n\tbackground: <<colour foreground>>;\n\tcolor: <<colour background>>;\n\tfill: <<colour background>>;\n}\n\n.tc-drafts-list a svg {\n\twidth: 1em;\n\theight: 1em;\n\tvertical-align: text-bottom;\n}\n\n/*\n** Control panel\n*/\n\n.tc-control-panel td {\n\tpadding: 4px;\n}\n\n.tc-control-panel table, .tc-control-panel table input, .tc-control-panel table textarea {\n\twidth: 100%;\n}\n\n.tc-plugin-info {\n\tdisplay: block;\n\tborder: 1px solid <<colour muted-foreground>>;\n\tbackground-colour: <<colour background>>;\n\tmargin: 0.5em 0 0.5em 0;\n\tpadding: 4px;\n}\n\n.tc-plugin-info-disabled {\n\tbackground: -webkit-repeating-linear-gradient(45deg, #ff0, #ff0 10px, #eee 10px, #eee 20px);\n\tbackground: repeating-linear-gradient(45deg, #ff0, #ff0 10px, #eee 10px, #eee 20px);\n}\n\n.tc-plugin-info-disabled:hover {\n\tbackground: -webkit-repeating-linear-gradient(45deg, #aa0, #aa0 10px, #888 10px, #888 20px);\n\tbackground: repeating-linear-gradient(45deg, #aa0, #aa0 10px, #888 10px, #888 20px);\n}\n\na.tc-tiddlylink.tc-plugin-info:hover {\n\ttext-decoration: none;\n\tbackground-color: <<colour primary>>;\n\tcolor: <<colour background>>;\n\tfill: <<colour foreground>>;\n}\n\na.tc-tiddlylink.tc-plugin-info:hover .tc-plugin-info > .tc-plugin-info-chunk > svg {\n\tfill: <<colour foreground>>;\n}\n\n.tc-plugin-info-chunk {\n\tdisplay: inline-block;\n\tvertical-align: middle;\n}\n\n.tc-plugin-info-chunk h1 {\n\tfont-size: 1em;\n\tmargin: 2px 0 2px 0;\n}\n\n.tc-plugin-info-chunk h2 {\n\tfont-size: 0.8em;\n\tmargin: 2px 0 2px 0;\n}\n\n.tc-plugin-info-chunk div {\n\tfont-size: 0.7em;\n\tmargin: 2px 0 2px 0;\n}\n\n.tc-plugin-info:hover > .tc-plugin-info-chunk > img, .tc-plugin-info:hover > .tc-plugin-info-chunk > svg {\n\twidth: 2em;\n\theight: 2em;\n\tfill: <<colour foreground>>;\n}\n\n.tc-plugin-info > .tc-plugin-info-chunk > img, .tc-plugin-info > .tc-plugin-info-chunk > svg {\n\twidth: 2em;\n\theight: 2em;\n\tfill: <<colour muted-foreground>>;\n}\n\n.tc-plugin-info.tc-small-icon > .tc-plugin-info-chunk > img, .tc-plugin-info.tc-small-icon > .tc-plugin-info-chunk > svg {\n\twidth: 1em;\n\theight: 1em;\n}\n\n.tc-plugin-info-dropdown {\n\tborder: 1px solid <<colour muted-foreground>>;\n\tmargin-top: -8px;\n}\n\n.tc-plugin-info-dropdown-message {\n\tbackground: <<colour message-background>>;\n\tpadding: 0.5em 1em 0.5em 1em;\n\tfont-weight: bold;\n\tfont-size: 0.8em;\n}\n\n.tc-plugin-info-dropdown-body {\n\tpadding: 1em 1em 1em 1em;\n}\n\n.tc-check-list {\n\tline-height: 2em;\n}\n\n.tc-check-list .tc-image-button {\n\theight: 1.5em;\n}\n\n/*\n** Message boxes\n*/\n\n.tc-message-box {\n\tborder: 1px solid <<colour message-border>>;\n\tbackground: <<colour message-background>>;\n\tpadding: 0px 21px 0px 21px;\n\tfont-size: 12px;\n\tline-height: 18px;\n\tcolor: <<colour message-foreground>>;\n}\n\n.tc-message-box svg {\n\twidth: 1em;\n\theight: 1em;\n vertical-align: text-bottom;\n}\n\n/*\n** Pictures\n*/\n\n.tc-bordered-image {\n\tborder: 1px solid <<colour muted-foreground>>;\n\tpadding: 5px;\n\tmargin: 5px;\n}\n\n/*\n** Floats\n*/\n\n.tc-float-right {\n\tfloat: right;\n}\n\n/*\n** Chooser\n*/\n\n.tc-chooser {\n\tborder-right: 1px solid <<colour table-header-background>>;\n\tborder-left: 1px solid <<colour table-header-background>>;\n}\n\n\n.tc-chooser-item {\n\tborder-bottom: 1px solid <<colour table-header-background>>;\n\tborder-top: 1px solid <<colour table-header-background>>;\n\tpadding: 2px 4px 2px 14px;\n}\n\n.tc-drop-down .tc-chooser-item {\n\tpadding: 2px;\n}\n\n.tc-chosen,\n.tc-chooser-item:hover {\n\tbackground-color: <<colour table-header-background>>;\n\tborder-color: <<colour table-footer-background>>;\n}\n\n.tc-chosen .tc-tiddlylink {\n\tcursor:default;\n}\n\n.tc-chooser-item .tc-tiddlylink {\n\tdisplay: block;\n\ttext-decoration: none;\n\tbackground-color: transparent;\n}\n\n.tc-chooser-item:hover .tc-tiddlylink:hover {\n\ttext-decoration: none;\n}\n\n.tc-drop-down .tc-chosen .tc-tiddlylink,\n.tc-drop-down .tc-chooser-item .tc-tiddlylink:hover {\n\tcolor: <<colour foreground>>;\n}\n\n.tc-chosen > .tc-tiddlylink:before {\n\tmargin-left: -10px;\n\tposition: relative;\n\tcontent: \"» \";\n}\n\n.tc-chooser-item svg,\n.tc-chooser-item img{\n\twidth: 1em;\n\theight: 1em;\n\tvertical-align: middle;\n}\n\n.tc-language-chooser .tc-image-button img {\n\twidth: 2em;\n\tvertical-align: -0.15em;\n}\n\n/*\n** Palette swatches\n*/\n\n.tc-swatches-horiz {\n}\n\n.tc-swatches-horiz .tc-swatch {\n\tdisplay: inline-block;\n}\n\n.tc-swatch {\n\twidth: 2em;\n\theight: 2em;\n\tmargin: 0.4em;\n\tborder: 1px solid #888;\n}\n\ninput.tc-palette-manager-colour-input {\n\twidth: 100%;\n\tpadding: 0;\n}\n\n/*\n** Table of contents\n*/\n\n.tc-sidebar-lists .tc-table-of-contents {\n\twhite-space: nowrap;\n}\n\n.tc-table-of-contents button {\n\tcolor: <<colour sidebar-foreground>>;\n}\n\n.tc-table-of-contents svg {\n\twidth: 0.7em;\n\theight: 0.7em;\n\tvertical-align: middle;\n\tfill: <<colour sidebar-foreground>>;\n}\n\n.tc-table-of-contents ol {\n\tlist-style-type: none;\n\tpadding-left: 0;\n}\n\n.tc-table-of-contents ol ol {\n\tpadding-left: 1em;\n}\n\n.tc-table-of-contents li {\n\tfont-size: 1.0em;\n\tfont-weight: bold;\n}\n\n.tc-table-of-contents li a {\n\tfont-weight: bold;\n}\n\n.tc-table-of-contents li li {\n\tfont-size: 0.95em;\n\tfont-weight: normal;\n\tline-height: 1.4;\n}\n\n.tc-table-of-contents li li a {\n\tfont-weight: normal;\n}\n\n.tc-table-of-contents li li li {\n\tfont-size: 0.95em;\n\tfont-weight: 200;\n\tline-height: 1.5;\n}\n\n.tc-table-of-contents li li li li {\n\tfont-size: 0.95em;\n\tfont-weight: 200;\n}\n\n.tc-tabbed-table-of-contents {\n\tdisplay: -webkit-flex;\n\tdisplay: flex;\n}\n\n.tc-tabbed-table-of-contents .tc-table-of-contents {\n\tz-index: 100;\n\tdisplay: inline-block;\n\tpadding-left: 1em;\n\tmax-width: 50%;\n\t-webkit-flex: 0 0 auto;\n\tflex: 0 0 auto;\n\tbackground: <<colour tab-background>>;\n\tborder-left: 1px solid <<colour tab-border>>;\n\tborder-top: 1px solid <<colour tab-border>>;\n\tborder-bottom: 1px solid <<colour tab-border>>;\n}\n\n.tc-tabbed-table-of-contents .tc-table-of-contents .toc-item > a,\n.tc-tabbed-table-of-contents .tc-table-of-contents .toc-item-selected > a {\n\tdisplay: block;\n\tpadding: 0.12em 1em 0.12em 0.25em;\n}\n\n.tc-tabbed-table-of-contents .tc-table-of-contents .toc-item > a {\n\tborder-top: 1px solid <<colour tab-background>>;\n\tborder-left: 1px solid <<colour tab-background>>;\n\tborder-bottom: 1px solid <<colour tab-background>>;\n}\n\n.tc-tabbed-table-of-contents .tc-table-of-contents .toc-item > a:hover {\n\ttext-decoration: none;\n\tborder-top: 1px solid <<colour tab-border>>;\n\tborder-left: 1px solid <<colour tab-border>>;\n\tborder-bottom: 1px solid <<colour tab-border>>;\n\tbackground: <<colour tab-border>>;\n}\n\n.tc-tabbed-table-of-contents .tc-table-of-contents .toc-item-selected > a {\n\tborder-top: 1px solid <<colour tab-border>>;\n\tborder-left: 1px solid <<colour tab-border>>;\n\tborder-bottom: 1px solid <<colour tab-border>>;\n\tbackground: <<colour background>>;\n\tmargin-right: -1px;\n}\n\n.tc-tabbed-table-of-contents .tc-table-of-contents .toc-item-selected > a:hover {\n\ttext-decoration: none;\n}\n\n.tc-tabbed-table-of-contents .tc-tabbed-table-of-contents-content {\n\tdisplay: inline-block;\n\tvertical-align: top;\n\tpadding-left: 1.5em;\n\tpadding-right: 1.5em;\n\tborder: 1px solid <<colour tab-border>>;\n\t-webkit-flex: 1 0 50%;\n\tflex: 1 0 50%;\n}\n\n/*\n** Dirty indicator\n*/\n\nbody.tc-dirty span.tc-dirty-indicator, body.tc-dirty span.tc-dirty-indicator svg {\n\tfill: <<colour dirty-indicator>>;\n\tcolor: <<colour dirty-indicator>>;\n}\n\n/*\n** File inputs\n*/\n\n.tc-file-input-wrapper {\n\tposition: relative;\n\toverflow: hidden;\n\tdisplay: inline-block;\n\tvertical-align: middle;\n}\n\n.tc-file-input-wrapper input[type=file] {\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\tright: 0;\n\tbottom: 0;\n\tfont-size: 999px;\n\tmax-width: 100%;\n\tmax-height: 100%;\n\tfilter: alpha(opacity=0);\n\topacity: 0;\n\toutline: none;\n\tbackground: white;\n\tcursor: pointer;\n\tdisplay: inline-block;\n}\n\n/*\n** Thumbnail macros\n*/\n\n.tc-thumbnail-wrapper {\n\tposition: relative;\n\tdisplay: inline-block;\n\tmargin: 6px;\n\tvertical-align: top;\n}\n\n.tc-thumbnail-right-wrapper {\n\tfloat:right;\n\tmargin: 0.5em 0 0.5em 0.5em;\n}\n\n.tc-thumbnail-image {\n\ttext-align: center;\n\toverflow: hidden;\n\tborder-radius: 3px;\n}\n\n.tc-thumbnail-image svg,\n.tc-thumbnail-image img {\n\tfilter: alpha(opacity=1);\n\topacity: 1;\n\tmin-width: 100%;\n\tmin-height: 100%;\n\tmax-width: 100%;\n}\n\n.tc-thumbnail-wrapper:hover .tc-thumbnail-image svg,\n.tc-thumbnail-wrapper:hover .tc-thumbnail-image img {\n\tfilter: alpha(opacity=0.8);\n\topacity: 0.8;\n}\n\n.tc-thumbnail-background {\n\tposition: absolute;\n\tborder-radius: 3px;\n}\n\n.tc-thumbnail-icon svg,\n.tc-thumbnail-icon img {\n\twidth: 3em;\n\theight: 3em;\n\t<<filter \"drop-shadow(2px 2px 4px rgba(0,0,0,0.3))\">>\n}\n\n.tc-thumbnail-wrapper:hover .tc-thumbnail-icon svg,\n.tc-thumbnail-wrapper:hover .tc-thumbnail-icon img {\n\tfill: #fff;\n\t<<filter \"drop-shadow(3px 3px 4px rgba(0,0,0,0.6))\">>\n}\n\n.tc-thumbnail-icon {\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\tright: 0;\n\tbottom: 0;\n\tdisplay: -webkit-flex;\n\t-webkit-align-items: center;\n\t-webkit-justify-content: center;\n\tdisplay: flex;\n\talign-items: center;\n\tjustify-content: center;\n}\n\n.tc-thumbnail-caption {\n\tposition: absolute;\n\tbackground-color: #777;\n\tcolor: #fff;\n\ttext-align: center;\n\tbottom: 0;\n\twidth: 100%;\n\tfilter: alpha(opacity=0.9);\n\topacity: 0.9;\n\tline-height: 1.4;\n\tborder-bottom-left-radius: 3px;\n\tborder-bottom-right-radius: 3px;\n}\n\n.tc-thumbnail-wrapper:hover .tc-thumbnail-caption {\n\tfilter: alpha(opacity=1);\n\topacity: 1;\n}\n\n/*\n** Diffs\n*/\n\n.tc-diff-equal {\n\tbackground-color: <<colour diff-equal-background>>;\n\tcolor: <<colour diff-equal-foreground>>;\n}\n\n.tc-diff-insert {\n\tbackground-color: <<colour diff-insert-background>>;\n\tcolor: <<colour diff-insert-foreground>>;\n}\n\n.tc-diff-delete {\n\tbackground-color: <<colour diff-delete-background>>;\n\tcolor: <<colour diff-delete-foreground>>;\n}\n\n.tc-diff-invisible {\n\tbackground-color: <<colour diff-invisible-background>>;\n\tcolor: <<colour diff-invisible-foreground>>;\n}\n\n.tc-diff-tiddlers th {\n\ttext-align: right;\n\tbackground: <<colour background>>;\n\tfont-weight: normal;\n\tfont-style: italic;\n}\n\n.tc-diff-tiddlers pre {\n margin: 0;\n padding: 0;\n border: none;\n background: none;\n}\n\n/*\n** Errors\n*/\n\n.tc-error {\n\tbackground: #f00;\n\tcolor: #fff;\n}\n\n/*\n** Tree macro\n*/\n\n.tc-tree div {\n \tpadding-left: 14px;\n}\n\n.tc-tree ol {\n \tlist-style-type: none;\n \tpadding-left: 0;\n \tmargin-top: 0;\n}\n\n.tc-tree ol ol {\n \tpadding-left: 1em; \n}\n\n.tc-tree button { \n \tcolor: #acacac;\n}\n\n.tc-tree svg {\n \tfill: #acacac;\n}\n\n.tc-tree span svg {\n \twidth: 1em;\n \theight: 1em;\n \tvertical-align: baseline;\n}\n\n.tc-tree li span {\n \tcolor: lightgray;\n}\n\nselect {\n color: <<colour select-tag-foreground>>;\n background: <<colour select-tag-background>>;\n}\n\n"
},
"$:/themes/tiddlywiki/vanilla/metrics/bodyfontsize": {
"title": "$:/themes/tiddlywiki/vanilla/metrics/bodyfontsize",
"text": "15px"
},
"$:/themes/tiddlywiki/vanilla/metrics/bodylineheight": {
"title": "$:/themes/tiddlywiki/vanilla/metrics/bodylineheight",
"text": "22px"
},
"$:/themes/tiddlywiki/vanilla/metrics/fontsize": {
"title": "$:/themes/tiddlywiki/vanilla/metrics/fontsize",
"text": "14px"
},
"$:/themes/tiddlywiki/vanilla/metrics/lineheight": {
"title": "$:/themes/tiddlywiki/vanilla/metrics/lineheight",
"text": "20px"
},
"$:/themes/tiddlywiki/vanilla/metrics/storyleft": {
"title": "$:/themes/tiddlywiki/vanilla/metrics/storyleft",
"text": "0px"
},
"$:/themes/tiddlywiki/vanilla/metrics/storytop": {
"title": "$:/themes/tiddlywiki/vanilla/metrics/storytop",
"text": "0px"
},
"$:/themes/tiddlywiki/vanilla/metrics/storyright": {
"title": "$:/themes/tiddlywiki/vanilla/metrics/storyright",
"text": "770px"
},
"$:/themes/tiddlywiki/vanilla/metrics/storywidth": {
"title": "$:/themes/tiddlywiki/vanilla/metrics/storywidth",
"text": "770px"
},
"$:/themes/tiddlywiki/vanilla/metrics/tiddlerwidth": {
"title": "$:/themes/tiddlywiki/vanilla/metrics/tiddlerwidth",
"text": "686px"
},
"$:/themes/tiddlywiki/vanilla/metrics/sidebarbreakpoint": {
"title": "$:/themes/tiddlywiki/vanilla/metrics/sidebarbreakpoint",
"text": "960px"
},
"$:/themes/tiddlywiki/vanilla/metrics/sidebarwidth": {
"title": "$:/themes/tiddlywiki/vanilla/metrics/sidebarwidth",
"text": "350px"
},
"$:/themes/tiddlywiki/vanilla/options/stickytitles": {
"title": "$:/themes/tiddlywiki/vanilla/options/stickytitles",
"text": "no"
},
"$:/themes/tiddlywiki/vanilla/options/sidebarlayout": {
"title": "$:/themes/tiddlywiki/vanilla/options/sidebarlayout",
"text": "fixed-fluid"
},
"$:/themes/tiddlywiki/vanilla/options/codewrapping": {
"title": "$:/themes/tiddlywiki/vanilla/options/codewrapping",
"text": "pre-wrap"
},
"$:/themes/tiddlywiki/vanilla/reset": {
"title": "$:/themes/tiddlywiki/vanilla/reset",
"type": "text/plain",
"text": "/*! normalize.css v3.0.0 | MIT License | git.io/normalize */\n\n/**\n * 1. Set default font family to sans-serif.\n * 2. Prevent iOS text size adjust after orientation change, without disabling\n * user zoom.\n */\n\nhtml {\n font-family: sans-serif; /* 1 */\n -ms-text-size-adjust: 100%; /* 2 */\n -webkit-text-size-adjust: 100%; /* 2 */\n}\n\n/**\n * Remove default margin.\n */\n\nbody {\n margin: 0;\n}\n\n/* HTML5 display definitions\n ========================================================================== */\n\n/**\n * Correct `block` display not defined in IE 8/9.\n */\n\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nnav,\nsection,\nsummary {\n display: block;\n}\n\n/**\n * 1. Correct `inline-block` display not defined in IE 8/9.\n * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.\n */\n\naudio,\ncanvas,\nprogress,\nvideo {\n display: inline-block; /* 1 */\n vertical-align: baseline; /* 2 */\n}\n\n/**\n * Prevent modern browsers from displaying `audio` without controls.\n * Remove excess height in iOS 5 devices.\n */\n\naudio:not([controls]) {\n display: none;\n height: 0;\n}\n\n/**\n * Address `[hidden]` styling not present in IE 8/9.\n * Hide the `template` element in IE, Safari, and Firefox < 22.\n */\n\n[hidden],\ntemplate {\n display: none;\n}\n\n/* Links\n ========================================================================== */\n\n/**\n * Remove the gray background color from active links in IE 10.\n */\n\na {\n background: transparent;\n}\n\n/**\n * Improve readability when focused and also mouse hovered in all browsers.\n */\n\na:active,\na:hover {\n outline: 0;\n}\n\n/* Text-level semantics\n ========================================================================== */\n\n/**\n * Address styling not present in IE 8/9, Safari 5, and Chrome.\n */\n\nabbr[title] {\n border-bottom: 1px dotted;\n}\n\n/**\n * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.\n */\n\nb,\nstrong {\n font-weight: bold;\n}\n\n/**\n * Address styling not present in Safari 5 and Chrome.\n */\n\ndfn {\n font-style: italic;\n}\n\n/**\n * Address variable `h1` font-size and margin within `section` and `article`\n * contexts in Firefox 4+, Safari 5, and Chrome.\n */\n\nh1 {\n font-size: 2em;\n margin: 0.67em 0;\n}\n\n/**\n * Address styling not present in IE 8/9.\n */\n\nmark {\n background: #ff0;\n color: #000;\n}\n\n/**\n * Address inconsistent and variable font size in all browsers.\n */\n\nsmall {\n font-size: 80%;\n}\n\n/**\n * Prevent `sub` and `sup` affecting `line-height` in all browsers.\n */\n\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\n\nsup {\n top: -0.5em;\n}\n\nsub {\n bottom: -0.25em;\n}\n\n/* Embedded content\n ========================================================================== */\n\n/**\n * Remove border when inside `a` element in IE 8/9.\n */\n\nimg {\n border: 0;\n}\n\n/**\n * Correct overflow displayed oddly in IE 9.\n */\n\nsvg:not(:root) {\n overflow: hidden;\n}\n\n/* Grouping content\n ========================================================================== */\n\n/**\n * Address margin not present in IE 8/9 and Safari 5.\n */\n\nfigure {\n margin: 1em 40px;\n}\n\n/**\n * Address differences between Firefox and other browsers.\n */\n\nhr {\n -moz-box-sizing: content-box;\n box-sizing: content-box;\n height: 0;\n}\n\n/**\n * Contain overflow in all browsers.\n */\n\npre {\n overflow: auto;\n}\n\n/**\n * Address odd `em`-unit font size rendering in all browsers.\n */\n\ncode,\nkbd,\npre,\nsamp {\n font-family: monospace, monospace;\n font-size: 1em;\n}\n\n/* Forms\n ========================================================================== */\n\n/**\n * Known limitation: by default, Chrome and Safari on OS X allow very limited\n * styling of `select`, unless a `border` property is set.\n */\n\n/**\n * 1. Correct color not being inherited.\n * Known issue: affects color of disabled elements.\n * 2. Correct font properties not being inherited.\n * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.\n */\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n color: inherit; /* 1 */\n font: inherit; /* 2 */\n margin: 0; /* 3 */\n}\n\n/**\n * Address `overflow` set to `hidden` in IE 8/9/10.\n */\n\nbutton {\n overflow: visible;\n}\n\n/**\n * Address inconsistent `text-transform` inheritance for `button` and `select`.\n * All other form control elements do not inherit `text-transform` values.\n * Correct `button` style inheritance in Firefox, IE 8+, and Opera\n * Correct `select` style inheritance in Firefox.\n */\n\nbutton,\nselect {\n text-transform: none;\n}\n\n/**\n * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`\n * and `video` controls.\n * 2. Correct inability to style clickable `input` types in iOS.\n * 3. Improve usability and consistency of cursor style between image-type\n * `input` and others.\n */\n\nbutton,\nhtml input[type=\"button\"], /* 1 */\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n -webkit-appearance: button; /* 2 */\n cursor: pointer; /* 3 */\n}\n\n/**\n * Re-set default cursor for disabled elements.\n */\n\nbutton[disabled],\nhtml input[disabled] {\n cursor: default;\n}\n\n/**\n * Remove inner padding and border in Firefox 4+.\n */\n\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n border: 0;\n padding: 0;\n}\n\n/**\n * Address Firefox 4+ setting `line-height` on `input` using `!important` in\n * the UA stylesheet.\n */\n\ninput {\n line-height: normal;\n}\n\n/**\n * It's recommended that you don't attempt to style these elements.\n * Firefox's implementation doesn't respect box-sizing, padding, or width.\n *\n * 1. Address box sizing set to `content-box` in IE 8/9/10.\n * 2. Remove excess padding in IE 8/9/10.\n */\n\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n box-sizing: border-box; /* 1 */\n padding: 0; /* 2 */\n}\n\n/**\n * Fix the cursor style for Chrome's increment/decrement buttons. For certain\n * `font-size` values of the `input`, it causes the cursor style of the\n * decrement button to change from `default` to `text`.\n */\n\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n/**\n * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.\n * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome\n * (include `-moz` to future-proof).\n */\n\ninput[type=\"search\"] {\n -webkit-appearance: textfield; /* 1 */\n -moz-box-sizing: content-box;\n -webkit-box-sizing: content-box; /* 2 */\n box-sizing: content-box;\n}\n\n/**\n * Remove inner padding and search cancel button in Safari and Chrome on OS X.\n * Safari (but not Chrome) clips the cancel button when the search input has\n * padding (and `textfield` appearance).\n */\n\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n/**\n * Define consistent border, margin, and padding.\n */\n\nfieldset {\n border: 1px solid #c0c0c0;\n margin: 0 2px;\n padding: 0.35em 0.625em 0.75em;\n}\n\n/**\n * 1. Correct `color` not being inherited in IE 8/9.\n * 2. Remove padding so people aren't caught out if they zero out fieldsets.\n */\n\nlegend {\n border: 0; /* 1 */\n padding: 0; /* 2 */\n}\n\n/**\n * Remove default vertical scrollbar in IE 8/9.\n */\n\ntextarea {\n overflow: auto;\n}\n\n/**\n * Don't inherit the `font-weight` (applied by a rule above).\n * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.\n */\n\noptgroup {\n font-weight: bold;\n}\n\n/* Tables\n ========================================================================== */\n\n/**\n * Remove most spacing between table cells.\n */\n\ntable {\n border-collapse: collapse;\n border-spacing: 0;\n}\n\ntd,\nth {\n padding: 0;\n}\n"
},
"$:/themes/tiddlywiki/vanilla/settings/fontfamily": {
"title": "$:/themes/tiddlywiki/vanilla/settings/fontfamily",
"text": "-apple-system, BlinkMacSystemFont, \"Segoe UI\", Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\""
},
"$:/themes/tiddlywiki/vanilla/settings/codefontfamily": {
"title": "$:/themes/tiddlywiki/vanilla/settings/codefontfamily",
"text": "\"SFMono-Regular\",Consolas,\"Liberation Mono\",Menlo,Courier,monospace"
},
"$:/themes/tiddlywiki/vanilla/settings/backgroundimageattachment": {
"title": "$:/themes/tiddlywiki/vanilla/settings/backgroundimageattachment",
"text": "fixed"
},
"$:/themes/tiddlywiki/vanilla/settings/backgroundimagesize": {
"title": "$:/themes/tiddlywiki/vanilla/settings/backgroundimagesize",
"text": "auto"
},
"$:/themes/tiddlywiki/vanilla/sticky": {
"title": "$:/themes/tiddlywiki/vanilla/sticky",
"text": "<$reveal state=\"$:/themes/tiddlywiki/vanilla/options/stickytitles\" type=\"match\" text=\"yes\">\n``\n.tc-tiddler-title {\n\tposition: -webkit-sticky;\n\tposition: -moz-sticky;\n\tposition: -o-sticky;\n\tposition: -ms-sticky;\n\tposition: sticky;\n\ttop: 0px;\n\tbackground: ``<<colour tiddler-background>>``;\n\tz-index: 500;\n}\n\n``\n<$list filter=\"[range[100]]\">\n`.tc-story-river .tc-tiddler-frame:nth-child(100n+`<$text text=<<currentTiddler>>/>`) {\nz-index: `<$text text={{{ [[200]subtract<currentTiddler>] }}}/>`;\n}\n`\n</$list>\n</$reveal>\n"
}
}
}
This is a demo of TiddlyWiki5 incorporating a plugin for the [[D3.js]] visualization library.
! Word Cloud
<$d3cloud data="CloudData" spiral={{$:/spiral}}/>
//[[Raw data|CloudData]]//
! Bar Chart
<$d3bar grouped={{$:/grouped}} data="GraphData"/>
<$button set="$:/grouped" setTo="yes">grouped</$button> <$button set="$:/grouped" setTo="no">stacked</$button>
//[[Raw data|GraphData]]//
http://tw5magick.tiddlyspot.com/
{{$:/plugins/danielo/encryptTiddler/Encrypt-Tiddler}}
This is an external tiddler. It can be imported into a vue.js tiddler.
This is a date contained in this tiddler: {{!!date}}
<<fa-lbadge glyph:"fa-font-awesome-flag" fam:"fab">>
! About
This tiny [[TiddlyWiki 5|https://tiddlywiki.com]] brings you support for [[Font Awesome|http://fontawesome.io/Font-Awesome/]] 5.x. Normally, all you need to do to use this font in your own projects is to drag the plugin [[$:/plugins/TheDiveO/FontAwesome]] from this wiki into your own ~TiddlyWiki 5 instances.
Yes, you ''don't need to install'' the font(s) in your operating system. The Font Awesome is already embedded into this ~TiddlyWiki itself and is then automatically detected by your web browser (assuming a recent major browser).
<<fa-lbadge glyph:"fa-question">>
! Icon Cheatsheet
See our awesome [[Cheatsheet]].
<<fa-lbadge glyph:"fa-sliders-h">>
! Tweaks
Enable or disable [[link decoration|$:/plugins/TheDiveO/FontAwesome/ui/ControlPanel/FontAwesome]].
<<fa-lbadge glyph:"fa-tachometer-alt">>
! Lies & Statistics
|!Font Awesome fonts version |<code><$view tiddler="$:/plugins/TheDiveO/FontAwesome" field="fa-version" /></code> |
|!# of free icons |<$count filter="[prefix[$:/fontawesome/glyph/]]"/> |
|!# of icon categories |<$count filter="[prefix[$:/fontawesome/class/]]"/> |
<<fa-lbadge glyph:"fa-info">>
! Information
You don't need to install the //Font Awesome// font itself in your operating system in order to use it in your ~TiddlyWikis. Instead, //Font Awesome// is already embedded into the TW5FontAwesome plugin itself and is automatically loaded by your web browser -- assuming a modestly recent major browser.
Further plugin information:
* [[Plugin readme|$:/plugins/TheDiveO/FontAwesome/readme]]
* [[Plugin history|$:/plugins/TheDiveO/FontAwesome/history]]
* [[Plugin license|$:/plugins/TheDiveO/FontAwesome/license]]
* [[User macro documentation|$:/plugins/TheDiveO/FontAwesome/macros/fa/doc]]
If everything here works correctly, then you should see the waving flag (<i class="fas fa-flag"></i> ) that is the symbol of Font Awesome.
<<fa-lbadge glyph:"fa-hand-point-right">>
! Notable Notes
Your browser needs to support so-called [[WOFF web fonts|http://en.wikipedia.org/wiki/Web_Open_Font_Format]] (Wikipedia). All recent major browsers do so.
<<fa-lbadge glyph:"fa-cog">>
! Plugin Version
This is the //~FontAwesome// plugin version "<$view tiddler="$:/plugins/TheDiveO/FontAwesome" field="version" />" (<$list filter="[[$:/plugins/TheDiveO/FontAwesome/readme]is[shadow]]" emptyMessage="<span style='color: #c00; font-weight: bold'>development</span>">release</$list> wiki).
Unlike the normal wikitext macros, javascript macros can be used in any tiddler.
To show an example, I implemented the [[mysamplemacro in JavaScript|$:/macros/skeeve/mysamplemacro.js]].
I won't explain too much about it as I think, anyone who is able to write JavaScript code can read the macro and use it as a pattern for homebrewing ;)
The macro is used the same way a wikitext macro is used:
```
<<mysamplemacro>>
<<mysamplemacro "Donald Duck">>
<<mysamplemacro "Mickey Mouse" "Mouse House">>
```
Resulting in:
```
Hi I'm Bugs Bunny and I live in Rabbit Hole Hill
Hi I'm Donald Duck and I live in Rabbit Hole Hill
Hi I'm Mickey Mouse and I live in Mouse House
```
Please note that there is now an experimental [[Macro to Javascript Bookmarklet]] which can convert your wikitext macro into Javascript code.
Mal gave me on the [[groups|https://groups.google.com/d/msg/tiddlywiki/BaTqzrk2xho/vMEsCqktavsJ]] a good idea for some more "Journal Buttons". Feel free to reuse:
{{New Phone Call button}}
{{New Staff Meeting button}}
They are created like this:
Using the [[letWidget|$:/plugins/skeeve/let.js]]
{{New Phone Call button||code}}
Using the standard setWidget
{{New Staff Meeting button||code}}
Projeto interessante de Kanban com TW5:
https://ibnishak.github.io/Tekkan/
\define someMacro()
|Variable |Value |h
|a |$(a)$ |
|b |$(b)$ |
|c |$(c)$ |
|d |$(d)$ |
\end
The [[LetWidget|$:/plugins/skeeve/let.js]] is an enhancement of the [[SetWidget|http://tiddlywiki.com/static/SetWidget.html]].
If it comes to defining more than one variable I find it more than cumbersome to do something like this:
```
<$set name="a" value="1">
<$set name="b" value="2">
<$set name="c" value="3">
<$set name="d" value="4">
<<someMacro>>
</$set>
</$set>
</$set>
</$set>
```
I felt that this level of complexity is not required and so I created the [[LetWidget|$:/plugins/skeeve/let.js]]:
```
<$let a="1" b="2" c="3" d="4">
<<someMacro>>
</$let>
```
Here the test:
<$let a="1" b="2" c="3" d="4">
<<someMacro>>
</$let>
{{$:/help/skeeve/ListselectWidget}}
{{$:/help/skeeve/NewtiddlerWidget}}
It has been discussed in the TW google group how to footnotes should be implemented<<footnote "note1" "https://groups.google.com/forum/#!searchin/tiddlywiki/footnotes%7Csort:date/tiddlywiki/u5A6qK7CmrY/DekPDREpQJgJ">>. This is just my vision of how footnotes should be in a modern browser environment. If you click in the footnote label you will see a popup with the footnote. Try it out in the previous one.
This implementation has several advantages:
* It is built with TW5 native elements. You need nothing but TW5 to make it work.
* It doesn't interrupt the reading flow.
* In case you want to read the plain text it is perfectly readable.
If you want it you have two ways to make it work:
! Install
!! Style
To prevent the very long notes going out of the screen grab this style sheet tiddler to your wiki:
[[popupStyle]]
,,Thanks to UBi,,
!! For a global scope
Copy the following code into any tiddler and tag it as $:/tags/Macro or grab this tiddler to your TW: [[$:/macros/danielo/footNote]]
{{$:/macros/danielo/footNote||code}}
!!For a local scope
Copy the same code into any tiddler you want to use the macro.
!Usage
!!Single reference
It's fairy simple
```
<<footnote "label" "text of the footnote">>
```
Wich renders as <<footnote "label" "text of the footnote">>
!!Multiple reference
Once defined you can use the same annotation multiple times. Use the `ref` macro and the same label of the note you want to reference again.
```
<<ref "label">>
```
Wich renders as <<ref "label">>
!! Botom definition.
Maybe you want to stick to classic footnotes but you like the popup thing. This means that you want to have all your definitions at the bottom of the page and reference them later like this <<ref "Note2">>. In that case use the same `ref` notation than in multiple reference but make your footnotes definitions at the bottom of the page. This way you cold maintain a page-wise formatting <<ref "Note3">> as Eric Shulman suggested.
```
---
<<footnotes "2" "You can see this footnote at the bottom of the page or inside a popup">>
```
Wich will render as:
---
<<footnotes "Note2" "You can see this footnote at the bottom of the page or inside a popup">>
<<footnotes "Note3" "although popup footnotes are useful for onscreen display, printed documents would need to have footnotes placed at the bottom of the page on which the footnote occurs.">>
.tc-drop-down dd
{
max-width:300px;
word-break: break;
white-space:normal;
padding :0;
padding-left: 5px;}
.tc-drop-down dl
{
padding: 5px;
}
tc-drop-down a {display:inline;padding:0}
Estou começando, finalmente, a anotar tudo que vejo por aí.
Então aguardem uma enxurrada de links, histórias, poemas e idéias mal acabadas.
Vamos que vamos!
This great trick was shown to the tiddlywiki google group by [[Alberto Molina|https://groups.google.com/forum/#!topic/tiddlywiki/OCntQ79DuwM]]. I enhanced it a bit.
|!Search tag: | <$edit-text tiddler="$:/temp/RenameTags/search" tag="input" type="text"/> |
|!Replace by: | <$edit-text tiddler="$:/temp/RenameTags/replace" tag="input" type="text"/> |
---
<$reveal type="nomatch" text="" state="$:/temp/RenameTags/replace">
!First step
!!//Apply the tag <$tiddler tiddler={{$:/temp/RenameTags/replace}}><$transclude tiddler="$:/core/ui/TagTemplate"/></$tiddler> to the following tiddlers//
<$list filter="[!has[draft.of]tag{$:/temp/RenameTags/search}!tag{$:/temp/RenameTags/replace}sort[created]]">
<$checkbox tag={{$:/temp/RenameTags/replace}}> <$link to={{!!title}}><$view field="title"/></$link></$checkbox><br/>
</$list>
</$reveal>
<$reveal type="nomatch" text="" state="$:/temp/RenameTags/search">
!Second step
!!//Remove the tag <$tiddler tiddler={{$:/temp/RenameTags/search}}><$transclude tiddler="$:/core/ui/TagTemplate"/></$tiddler> from the following tiddlers//
<$list filter="[!has[draft.of]tag{$:/temp/RenameTags/search}tag{$:/temp/RenameTags/replace}sort[created]]">
<$checkbox tag={{$:/temp/RenameTags/search}}> ~~<$link to={{!!title}}><$view field="title"/></$link>~~</$checkbox><br/>
</$list>
</$reveal>
<div>
<btn @click="self.showtitle = !self.showtitle" :type=" self.showtitle ? 'primary':'' ">
<span :class="'glyphicon ' + (self.showtitle? ' glyphicon-eye-open': ' glyphicon-eye-close') " aria-hidden="true"></span>
Show title</btn> <hr>
<h1 v-if="self.showtitle">Title shown when self.showtitle is true.</h1>
This is a list of the days of the week rendered using v-for.
<ol>
<li v-for="day in self.daysofweek"> {{day}} </li>
</ol>
<btn @click="arrayPush('self.daysofweek', '', 'Geekday')" type=" primary">
<span class="glyphicon glyphicon-plus-sign" aria-hidden="true"></span>
Add a geekday to the week.</btn>
<hr>
This is a dictionary:
<table class="table table-stripped">
<tr v-for="(value, key, index) in self.dictionary"><th class="col-sm-4 text-right">{{key}}</th> <td> {{value}} </td></tr>
</table>
<form class="form-inline">
<div class="form-group">
<input type="text" class="form-control" placeholder="key" v-model="self.temp_key">
</div>
<div class="form-group">
<input type="text" class="form-control" placeholder ="value" v-model="self.temp_value">
</div>
<btn @click="objectSet('self.dictionary', self.temp_key, self.temp_value)">
<span class="glyphicon glyphicon-pencil" aria-hidden="true"></span>
Add new value</btn>
</form>
<hr>
<h3> Lets import a tiddler </h3>
<table class="table">
<tr v-for="(value, key, index) in imports.external"><th>{{key}}</th> <td> {{value}} </td></tr>
</table>
(This html table was built using vue.js v-for to iterate over the object properties. Try editing the external tiddler to see if this table is updated ;) )
<span class="glyphicon glyphicon-calendar" aria-hidden="true"></span> Uiv includes a date picker widget . Let's use it with the external tiddler date field:
<date-picker v-model="imports.external.date"/>
</div>
! Introduction
The scrollable widget wraps its content in a scrollable frame. The user can scroll the contents with the mouse or with touch gestures. Code can use the [[WidgetMessage: tm-scroll]] to programmatically scroll specific DOM nodes into view.
! Content and Attributes
The content of the `<$scrollable>` widget is displayed within a pair of wrapper DIVs. If the inner DIV is larger then it scrolls within the outer one. CSS is used to specify the size of the outer wrapper.
|!Attribute |!Description |
|class |The CSS class(es) to be applied to the outer DIV |
|fallthrough |See below |
If a scrollable widget can't handle the `tm-scroll` message because the inner DIV fits within the outer DIV, then by default the message falls through to the parent widget. Setting the ''fallthrough'' attribute to `no` prevents this behaviour.
! Examples
This example requires the following CSS definitions from [[$:/_tw5.com-styles]]:
```
.tc-scrollable-demo {
border: 1px solid <<colour message-border>>;
background-color: <<colour message-background>>;
padding: 1em;
height: 400px;
position: relative;
}
```
This wiki text shows how to display a list within the scrollable widget:
<<wikitext-example-without-html "<$scrollable class='tc-scrollable-demo'>
<$list filter='[!is[system]]'>
<$view field='title'/>: <$list filter='[all[current]links[]sort[title]]' storyview='pop'>
<$link><$view field='title'/></$link>
</$list>
</$list>
</$scrollable>
">>
Instalei um plugin de suporte a VueJs, vamos ver que tipo de coisa dá pra ser feita...
Uma demonstração pode ser vista aqui: [[Sample Vue Tiddler]]
<$set name="tag" value="minutes">
<$newtiddler title=<<dateTime "Staff Meeting on YYYY-0MM-0DD">> skeleton="base_skeleton" edit="yes">New Staff Meeting</$newtiddler>
</$set>
! Introduction
The TranscludeWidget dynamically imports content from another tiddler.
! Attributes
|!Attribute |!Description |
|tiddler |The title of the tiddler to transclude (defaults to the current tiddler) |
|field |The field name of the current tiddler (defaults to "text"; if present takes precedence over the index attribute) |
|index |The index of a property in a [[DataTiddler|DataTiddlers]] |
|subtiddler |Optional SubTiddler title when the target tiddler is a [[plugin|Plugins]] (see below) |
|mode |Override the default parsing mode for the transcluded text to "block" or "inline" |
The TranscludeWidget treats any contained content as a fallback if the target of the transclusion is not defined (ie a missing tiddler or a missing field).
! Parsing modes
TiddlyWiki parses text in two modes:
* ''inline'' mode recognises character formatting such as emphasis, links
* ''block'' mode recognises all the ''inline'' formatting, and adds block formatting such as tables, headings and lists
Usually, the mode is determined by whether the transclude widget itself has been parsed in block or inline mode. This can be overridden with the `mode` attribute.
For example, consider tiddler "A" with this content:
```
# Item one
#<$transclude tiddler="B"/>
# Item two
```
And a tiddler "B" with this content:
```
# Item one - a
# Item one - b
```
The result will be something like this:
# Item one
# # Item one - a # Item one - b
# Item two
This can be fixed by amending tiddler "A":
```
# Item one
#<$transclude tiddler="B" mode="block"/>
# Item two
```
! ~SubTiddler Access
The transclude widget allows access to the individual tiddlers stored within a [[plugin|Plugins]].
The following example will transclude the core version of the tiddler [[$:/DefaultTiddlers]] even if it has been overridden:
<<wikitext-example-without-html '
<$transclude tiddler="$:/core" subtiddler="$:/DefaultTiddlers"/>
'>>
$:/plugins/Guitlle/vuewiki
$:/plugins/Guitlle/vuewiki
$:/plugins/TheDiveO/FontAwesome
$:/plugins/TheDiveO/FontAwesome
https://thediveo.github.io/TwTube/output/twtube.tid
[[$:/plugins/felixhayashi/vis]]
$:/plugins/felixhayashi/tiddlymap
$:/plugins/felixhayashi/vis
$:/plugins/felixhayashi/vis
$:/plugins/Guitlle/vuewiki
$:/plugins/Guitlle/vuewiki
http://thediveo.github.io/TW5FontAwesome/output/fontawesome.tid
$:/plugins/TheDiveO/FontAwesome
$:/plugins/TheDiveO/FontAwesome
This macro can generate [[UUIDs|http://en.wikipedia.org/wiki/UUID]] and is based on Erik Giberti's [[JavaScript UUID Generator v.0.3||http://af-design.com/blog/2008/09/05/updated-javascript-uuid-generator-v03]].
This is an example UUID: <<uuid>>